:root {
  --gold: #f0b90b;
  --gold-2: #ffe7a3;
  --gold-deep: #c4890a;
  --ink: #07080b;
  --ink-2: #101218;
  --text: #f6f3ea;
  --muted: #b7b0a1;
  --line: rgba(240, 185, 11, 0.22);
  --pancake: #1fc7d4;
  --nav: 76px;
  --wrap: 1120px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--ink);
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
  color: inherit;
}

code {
  font-family: "Outfit", "Segoe UI", sans-serif;
}

::selection {
  background: var(--gold);
  color: #1a1203;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.wrap {
  width: min(var(--wrap), calc(100% - 48px));
  margin-inline: auto;
}

@media (min-width: 1101px) {
  .wrap {
    width: min(1080px, calc(100% - 200px));
  }
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 8;
  opacity: 0.14;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

#dust {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 7;
}

.kicker {
  margin: 0 0 10px;
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
}

h1,
h2,
h3 {
  font-weight: 400;
}

h2 {
  margin: 0 0 16px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.prose {
  margin: 0 0 14px;
  font-size: 1.05rem;
  max-width: 46ch;
}

.prose.dim {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s;
}

.btn img {
  width: auto;
}

.btn-sm {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.92rem;
}

.btn-gold {
  position: relative;
  overflow: hidden;
  color: #1a1203;
  background: linear-gradient(180deg, #ffe7a3 0%, #f0b90b 46%, #d39a08 100%);
  box-shadow: 0 10px 30px rgba(240, 185, 11, 0.22);
}

.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 70%
  );
  transform: translateX(-130%);
}

.btn-gold:hover::after {
  transform: translateX(130%);
  transition: transform 0.7s var(--ease);
}

.btn-gold:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(8, 9, 12, 0.45);
  border-color: rgba(246, 243, 234, 0.16);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-2);
}

.tape {
  height: 18px;
  background: repeating-linear-gradient(
    -45deg,
    #f0b90b 0 12px,
    #12130f 12px 24px
  );
  animation: tape 7s linear infinite;
}

@keyframes tape {
  to {
    background-position: 34px 0;
  }
}

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  height: var(--nav);
  display: flex;
  align-items: center;
  transition:
    background 0.3s,
    border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.nav.is-stuck {
  background: rgba(7, 8, 11, 0.82);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(240, 185, 11, 0.14);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.brand img,
.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  border: 1px solid var(--gold);
}

.menu {
  display: flex;
  gap: 22px;
  margin-left: auto;
}

.menu a {
  color: var(--muted);
  font-size: 0.95rem;
}

.menu a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(246, 243, 234, 0.16);
  background: transparent;
  padding: 0;
  position: relative;
}

.burger span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 1.5px;
  background: var(--text);
}

.burger span:first-child {
  top: 16px;
}

.burger span:last-child {
  bottom: 16px;
}

.floors {
  position: fixed;
  z-index: 25;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.floors a {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 8px;
  color: rgba(246, 243, 234, 0.35);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

.floors i {
  font-style: normal;
  width: 22px;
}

.floors span {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 0.35s var(--ease);
}

.floors a:hover span,
.floors a.is-active span {
  max-width: 90px;
}

.floors a.is-active {
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(
      90deg,
      rgba(7, 8, 11, 0.88) 0%,
      rgba(7, 8, 11, 0.55) 46%,
      rgba(7, 8, 11, 0.2) 100%
    ),
    url("../assets/bg-skyline.png") center right / cover no-repeat;
  display: flex;
  flex-direction: column;
}

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  padding: calc(var(--nav) + 28px) 0 72px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--gold-2);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 600;
}

.eyebrow .sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  margin-inline: 4px;
}

h1 {
  margin: 0;
  line-height: 0.82;
}

.cz {
  display: block;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  letter-spacing: 0.62em;
  padding-left: 4px;
}

.builder {
  display: block;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(5.4rem, 12vw, 9.4rem);
  letter-spacing: 0.015em;
  background: linear-gradient(180deg, #fff8df 0%, #f0b90b 42%, #a86d00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 18px 30px rgba(240, 185, 11, 0.18));
}

.ticker {
  display: inline-flex;
  margin: 18px 0 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--gold);
  color: #1a1203;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 0.86rem;
}

.lede {
  max-width: 46ch;
  margin: 18px 0 0;
  font-size: 1.12rem;
  color: #ebe6da;
}

.lede em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-2);
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.ca {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(680px, 100%);
  padding: 10px 10px 10px 16px;
  border: 1px solid var(--line);
  background: rgba(7, 8, 11, 0.55);
  border-radius: 999px;
}

.ca-label {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 650;
}

.ca code {
  color: var(--text);
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}

.ca-link {
  margin-left: auto;
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(240, 185, 11, 0.12);
  color: var(--gold-2);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
}

.spec a {
  color: var(--gold-2);
  overflow-wrap: anywhere;
}

.spec a:hover {
  color: var(--gold);
}

.ca-link:hover {
  background: var(--gold);
  color: #1a1203;
}

.stats {
  display: flex;
  gap: 22px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.stats strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.stats span {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.badge {
  position: relative;
  width: min(420px, 100%);
  margin-left: auto;
  padding: 12px;
  background: linear-gradient(
    180deg,
    rgba(28, 30, 36, 0.95),
    rgba(10, 11, 14, 0.95)
  );
  border: 1px solid rgba(240, 185, 11, 0.4);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  animation: floaty 7s ease-in-out infinite;
}

.badge img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 12%;
}

.badge figcaption {
  display: flex;
  justify-content: space-between;
  padding: 12px 4px 4px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold-2);
}

.badge::before,
.badge::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--gold);
  border-style: solid;
}

.badge::before {
  top: 6px;
  left: 6px;
  border-width: 2px 0 0 2px;
}

.badge::after {
  bottom: 6px;
  right: 6px;
  border-width: 0 2px 2px 0;
  animation: none;
}

@keyframes floaty {
  50% {
    transform: translateY(-12px);
  }
}

.cube {
  position: absolute;
  width: 28px;
  height: 28px;
  background: linear-gradient(145deg, #fff1c2, #f0b90b 45%, #8a5a00);
  transform: rotate(18deg);
  box-shadow: 8px 10px 0 rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.c1 {
  top: 8%;
  left: 6%;
  width: 34px;
  height: 34px;
  animation: bob 5.5s ease-in-out infinite;
}

.c2 {
  top: 22%;
  right: -6px;
  width: 18px;
  height: 18px;
  animation: bob 6.5s ease-in-out infinite reverse;
}

.c3 {
  bottom: 18%;
  left: 0;
  width: 22px;
  height: 22px;
  animation: bob 7s ease-in-out infinite 0.4s;
}

.c4 {
  bottom: 8%;
  right: 18%;
  width: 14px;
  height: 14px;
  animation: bob 4.8s ease-in-out infinite 0.2s;
}

@keyframes bob {
  50% {
    transform: rotate(28deg) translateY(-14px);
  }
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.scroll-hint i {
  width: 1px;
  height: 36px;
  background: linear-gradient(var(--gold), transparent);
  animation: drip 1.6s ease-in-out infinite;
}

@keyframes drip {
  50% {
    transform: scaleY(0.55);
    transform-origin: top;
    opacity: 0.4;
  }
}

.marquee {
  overflow: hidden;
  border-bottom: 1px solid rgba(240, 185, 11, 0.16);
  background: #0b0c10;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: slide 32s linear infinite;
}

.marquee p {
  margin: 0;
  padding: 14px 0;
  white-space: nowrap;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold-2);
}

@keyframes slide {
  to {
    transform: translateX(-50%);
  }
}

.blueprint {
  padding: 100px 0 80px;
  background: #090a0d;
}

.section-head {
  max-width: 640px;
  margin-bottom: 36px;
}

.section-head p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.poster {
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(240, 185, 11, 0.08), transparent 30%), #0c0d11;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
}

.poster img {
  width: 100%;
  height: auto;
}

.poster figcaption {
  padding: 14px 6px 4px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--gold);
}

.blocks {
  position: relative;
  padding: 110px 0;
  background:
    linear-gradient(
      90deg,
      rgba(7, 8, 11, 0.94) 0%,
      rgba(7, 8, 11, 0.82) 42%,
      rgba(7, 8, 11, 0.72) 100%
    ),
    url("../assets/bg-blocks.png") center / cover no-repeat;
}

.blocks-layout {
  display: grid;
  gap: 42px;
}

.about-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 32px;
  align-items: start;
}

.tweet-card {
  min-width: 0;
}

.tweet-card blockquote {
  margin: 0;
  padding: 18px 18px 14px;
  border: 1px solid var(--line);
  background: rgba(8, 9, 12, 0.82);
}

.tweet-card blockquote p {
  margin: 0 0 12px;
}

.tweet-card blockquote a {
  color: var(--gold-2);
}

.tweet-card iframe {
  max-width: 100% !important;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pillar {
  padding: 22px 18px 24px;
  background: rgba(8, 9, 12, 0.72);
  border: 1px solid rgba(240, 185, 11, 0.16);
  backdrop-filter: blur(8px);
  min-height: 210px;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s;
}

.pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 185, 11, 0.55);
}

.pillar span {
  color: var(--gold);
  letter-spacing: 0.16em;
  font-size: 0.75rem;
}

.pillar h3 {
  margin: 18px 0 8px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
}

.pillar p {
  margin: 0;
  color: var(--muted);
}

.supply {
  padding: 110px 0;
  background:
    radial-gradient(ellipse at top, rgba(240, 185, 11, 0.08), transparent 55%),
    #08090c;
}

.supply-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.spec {
  margin: 28px 0 0;
}

.spec div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid rgba(246, 243, 234, 0.08);
}

.spec dt {
  color: var(--muted);
}

.spec dd {
  margin: 0;
  font-weight: 600;
}

.tower {
  position: relative;
  padding-top: 54px;
}

.hook {
  position: absolute;
  top: 0;
  left: 18%;
  width: 46%;
  height: 8px;
  background: linear-gradient(90deg, var(--gold), #6a5010);
}

.hook i {
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  height: 46px;
  background: var(--gold);
}

.hook i::after {
  content: "";
  position: absolute;
  left: -6px;
  bottom: -8px;
  width: 14px;
  height: 10px;
  border: 2px solid var(--gold);
  border-top: 0;
  border-radius: 0 0 8px 8px;
}

.level {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 8px auto;
  width: 86%;
  min-height: 64px;
  padding: 0 18px;
  background: linear-gradient(
    90deg,
    rgba(240, 185, 11, 0.16),
    rgba(240, 185, 11, 0.04)
  );
  border: 1px solid rgba(240, 185, 11, 0.28);
  border-left: 4px solid var(--gold);
}

.level b {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 0.06em;
}

.level.base {
  width: 100%;
  background: linear-gradient(90deg, #f0b90b, #a87408);
  color: #1a1203;
  border-color: transparent;
}

.level.base b {
  color: #1a1203;
}

.ground {
  text-align: center;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--muted);
  padding-top: 8px;
}

.buy {
  padding: 100px 0 110px;
  background: #0b0c10;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: none;
}

.steps li {
  position: relative;
  padding: 22px 18px 8px;
  border-top: 1px solid var(--gold);
}

.steps li::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}

.steps span {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2.4rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.steps h3 {
  margin: 8px 0;
  font-size: 1.15rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.buy-bar {
  margin-top: 36px;
  padding: 18px 18px 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  background: rgba(240, 185, 11, 0.05);
}

.buy-bar div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.buy-bar p {
  margin: 0;
}

.buy-bar strong {
  display: block;
}

.buy-bar span {
  color: var(--muted);
  font-size: 0.92rem;
}

.skyline {
  padding: 110px 0;
  background:
    linear-gradient(180deg, rgba(7, 8, 11, 0.78), rgba(7, 8, 11, 0.88)),
    url("../assets/bg-blueprint.png") center / cover no-repeat;
}

.phases {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.phases li {
  padding: 22px 18px 20px;
  min-height: 250px;
  background: rgba(7, 8, 11, 0.72);
  border: 1px solid rgba(240, 185, 11, 0.16);
  display: flex;
  flex-direction: column;
}

.phases li.is-now {
  border-color: rgba(240, 185, 11, 0.7);
  box-shadow: inset 0 0 0 1px rgba(240, 185, 11, 0.25);
}

.phase-no {
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.phases h3 {
  margin: 16px 0 8px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2.1rem;
  letter-spacing: 0.04em;
}

.phases p {
  margin: 0;
  color: var(--muted);
}

.phases em {
  margin-top: auto;
  padding-top: 18px;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--gold-2);
}

.crew {
  padding: 40px 0 100px;
  background: #08090c;
}

.crew-box {
  padding: 56px 48px;
  background:
    radial-gradient(
      ellipse at 10% 0%,
      rgba(240, 185, 11, 0.16),
      transparent 46%
    ),
    #101218;
  border: 1px solid var(--line);
}

.quote {
  margin: 8px 0 28px;
  max-width: 18em;
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.25;
}

.crew-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.social {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(246, 243, 234, 0.1);
  background: rgba(7, 8, 11, 0.45);
  transition:
    border-color 0.25s,
    transform 0.25s var(--ease);
}

.social:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.social strong {
  display: block;
}

.social small {
  color: var(--muted);
}

.footer {
  background: #07080b;
}

.footer-inner {
  padding: 36px 0 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand strong {
  display: block;
}

.footer-brand span {
  color: var(--gold);
  letter-spacing: 0.12em;
  font-size: 0.85rem;
}

.disclaimer {
  margin: 18px 0;
  max-width: 78ch;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.88rem;
  border-top: 1px solid rgba(246, 243, 234, 0.08);
  padding-top: 16px;
}

.footer-row a:hover {
  color: var(--gold);
}

.dock {
  display: none;
  position: fixed;
  z-index: 35;
  left: 12px;
  right: 12px;
  bottom: 12px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffe7a3, #f0b90b 50%, #c4890a);
  color: #1a1203;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.hero-copy > * {
  animation: rise 0.85s var(--ease) both;
}

.hero-copy > *:nth-child(2) {
  animation-delay: 0.08s;
}

.hero-copy > *:nth-child(3) {
  animation-delay: 0.14s;
}

.hero-copy > *:nth-child(4) {
  animation-delay: 0.2s;
}

.hero-copy > *:nth-child(5) {
  animation-delay: 0.26s;
}

.hero-copy > *:nth-child(6) {
  animation-delay: 0.32s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}

.js .reveal.in {
  opacity: 1;
  transform: none;
}

.js .pillar-grid .reveal:nth-child(2),
.js .steps .reveal:nth-child(2),
.js .phases .reveal:nth-child(2),
.js .crew-actions .reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.js .pillar-grid .reveal:nth-child(3),
.js .steps .reveal:nth-child(3),
.js .phases .reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.js .pillar-grid .reveal:nth-child(4),
.js .steps .reveal:nth-child(4),
.js .phases .reveal:nth-child(4) {
  transition-delay: 0.24s;
}

@media (max-width: 1100px) {
  .floors {
    display: none;
  }

  .hero-grid,
  .supply-grid,
  .pillar-grid,
  .steps,
  .phases,
  .crew-actions {
    grid-template-columns: 1fr 1fr;
  }

  .pillar-grid,
  .steps,
  .phases {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .menu {
    position: fixed;
    inset: calc(var(--nav) + 8px) 16px auto;
    z-index: 40;
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 8px;
    background: #0e1016;
    border: 1px solid var(--line);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    padding: 12px;
  }

  .burger {
    display: inline-block;
  }

  .nav-actions .btn-ghost {
    display: none;
  }

  .hero-grid,
  .supply-grid,
  .pillar-grid,
  .steps,
  .phases,
  .crew-actions,
  .about-top {
    grid-template-columns: 1fr;
  }

  .eyebrow {
    letter-spacing: 0.08em;
    flex-wrap: wrap;
    row-gap: 6px;
    font-size: 0.68rem;
  }

  .hero-visual {
    min-height: 0;
    margin-top: 36px;
  }

  .badge {
    margin: 0 auto;
    width: min(340px, 100%);
  }

  .hero {
    background-position: center;
  }

  .ca {
    border-radius: 16px;
    flex-wrap: wrap;
  }

  .ca-link {
    margin-left: 0;
  }

  .buy-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .crew-box {
    padding: 32px 20px;
  }

  .dock {
    display: flex;
  }

  body {
    padding-bottom: 76px;
  }

  .scroll-hint {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}
