:root {
  --bg: #040a1e;
  --ink: #f3f7ff;
  --muted: #c5d6ee;
  --soft: #9eb4d4;
  --line: rgba(176, 208, 255, 0.32);
  --blue: #2f78ff;
  --blue-2: #7eb6ff;
  --glass: rgba(10, 28, 78, 0.55);
  --serif: "Bodoni Moda", "Times New Roman", serif;
  --sans: "Outfit", system-ui, sans-serif;
  --nav: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(900px 520px at 12% -10%, rgba(46, 112, 255, 0.45), transparent 60%),
    radial-gradient(700px 480px at 100% 8%, rgba(18, 78, 210, 0.4), transparent 55%),
    radial-gradient(800px 500px at 50% 110%, rgba(20, 60, 160, 0.35), transparent 50%),
    var(--bg);
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: rgba(70, 140, 255, 0.45); color: white; }

.scene, .grain, .pointer { pointer-events: none; }
.scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.grain {
  position: fixed;
  inset: -20%;
  z-index: 1;
  opacity: 0.16;
  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' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.pointer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  width: 540px;
  height: 540px;
  margin: -270px 0 0 -270px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 150, 255, 0.22), transparent 68%);
  mix-blend-mode: screen;
  transition: opacity 0.4s ease;
}
#dust { position: absolute; inset: 0; width: 100%; height: 100%; }

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.7;
}
.glow-a {
  width: 420px; height: 420px;
  left: -80px; top: 12%;
  background: radial-gradient(circle, rgba(70, 140, 255, 0.55), transparent 70%);
  animation: floaty 14s ease-in-out infinite;
}
.glow-b {
  width: 360px; height: 360px;
  right: -40px; top: 38%;
  background: radial-gradient(circle, rgba(40, 100, 255, 0.4), transparent 70%);
  animation: floaty 18s ease-in-out infinite reverse;
}
.glow-c {
  width: 280px; height: 280px;
  left: 40%; bottom: 6%;
  background: radial-gradient(circle, rgba(140, 190, 255, 0.28), transparent 70%);
  animation: floaty 16s ease-in-out infinite 1s;
}

.shard {
  position: absolute;
  border-radius: 36px;
  border: 1px solid rgba(186, 216, 255, 0.38);
  background:
    linear-gradient(160deg, rgba(190, 220, 255, 0.16), rgba(40, 90, 200, 0.05) 42%, rgba(255, 255, 255, 0.04));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 20px 50px rgba(4, 16, 60, 0.25);
}
.shard-a { width: 280px; height: 190px; left: -70px; top: 70px; transform: rotate(-14deg); animation: drift 16s ease-in-out infinite; }
.shard-b { width: 220px; height: 320px; right: -60px; top: 120px; border-radius: 48px; transform: rotate(12deg); animation: drift 20s ease-in-out infinite reverse; }
.shard-c { width: 180px; height: 140px; left: 18%; bottom: 12%; transform: rotate(8deg); animation: drift 13s ease-in-out infinite 0.4s; }
.shard-d { width: 340px; height: 120px; right: 8%; bottom: -30px; transform: rotate(-8deg); animation: drift 17s ease-in-out infinite 0.8s; }
.shard-e { width: 120px; height: 180px; left: 46%; top: -40px; border-radius: 28px; transform: rotate(18deg); animation: drift 15s ease-in-out infinite 0.2s; }

main, .footer { position: relative; z-index: 2; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(4, 10, 30, 0.55);
  border-bottom: 1px solid rgba(160, 196, 255, 0.14);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav);
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: 0.01em;
}
.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(170, 206, 255, 0.45), 0 0 18px rgba(50, 120, 255, 0.55);
}
.nav-links {
  display: flex;
  gap: 22px;
  margin-left: auto;
  color: var(--muted);
  font-size: 0.95rem;
}
.nav-links a { position: relative; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-2), transparent);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.nav-links a:hover { color: white; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; gap: 10px; }
.burger {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(12, 32, 84, 0.45);
  position: relative;
}
.burger span {
  position: absolute;
  left: 12px; right: 12px;
  height: 1.5px;
  background: white;
  transition: transform 0.3s ease, top 0.3s ease;
}
.burger span:first-child { top: 17px; }
.burger span:last-child { top: 25px; }
.nav.open .burger span:first-child { top: 21px; transform: rotate(40deg); }
.nav.open .burger span:last-child { top: 21px; transform: rotate(-40deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  color: white;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: 999px;
  padding: 11px 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn img { width: 18px; height: 18px; object-fit: contain; }
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid #9ec4ff; outline-offset: 3px; }
.btn-lg { padding: 14px 18px; font-size: 1rem; }
.btn-buy {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #5aa2ff 0%, #1f62f0 55%, #184ed0 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 10px 30px rgba(30, 90, 230, 0.45);
}
.btn-buy::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
  transform: translateX(-130%);
  animation: sheen 3.8s ease-in-out infinite;
}
.btn-buy > * { position: relative; z-index: 1; }
.chip {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: white;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 10px rgba(0, 20, 80, 0.25);
}
.chip img { width: 16px; height: 16px; }
.btn-glass {
  background: rgba(8, 24, 68, 0.45);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}
.btn-glass:hover { background: rgba(24, 58, 130, 0.55); }
.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 16px;
  background: rgba(8, 24, 68, 0.5);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-icon img { width: 18px; height: 18px; }

.hero {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px 24px 28px;
}
.hero-copy { min-width: 0; }
.scan {
  position: absolute;
  left: 0; right: 0;
  height: 140px;
  background: linear-gradient(transparent, rgba(130, 180, 255, 0.09), transparent);
  animation: scan 8.5s linear infinite;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: 36px;
  align-items: center;
  width: 100%;
}
.hero-grid > * { min-width: 0; }
.mark-stage {
  position: relative;
  width: min(380px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
}
.hero-logo {
  position: relative;
  z-index: 2;
  width: 78%;
  height: 78%;
  margin: 11%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 0 0 1px rgba(180, 214, 255, 0.4),
    0 0 80px rgba(40, 110, 255, 0.5),
    0 30px 70px rgba(2, 8, 30, 0.45);
  animation: logoPulse 5.6s ease-in-out infinite;
}
.halo {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(60, 130, 255, 0.45), transparent 68%);
  filter: blur(8px);
  animation: logoPulse 5.6s ease-in-out infinite;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(170, 206, 255, 0.28);
}
.ring i, .ring b {
  position: absolute;
  border-radius: 50%;
  background: #8ec4ff;
  box-shadow: 0 0 12px #3d8cff;
}
.ring-a { inset: 0; animation: spin 28s linear infinite; }
.ring-a i { width: 10px; height: 10px; top: -5px; left: calc(50% - 5px); }
.ring-b { inset: 7%; animation: spin 18s linear infinite reverse; }
.ring-b i { width: 7px; height: 7px; bottom: 8%; left: -3px; }
.ring-b b { width: 12px; height: 12px; top: 18%; right: -6px; background: #d7ecff; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-2);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
}
.live {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #7ec4ff;
  box-shadow: 0 0 0 0 rgba(126, 196, 255, 0.7);
  animation: ping 1.8s ease-out infinite;
}
.hero-copy h1 {
  margin: 12px 0 8px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(4.2rem, 8vw, 7.4rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
}
.hero-copy h1 em {
  font-style: italic;
  font-weight: 500;
  color: #d7e8ff;
  font-size: 0.62em;
}
.lede {
  max-width: 560px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 1.12rem;
  font-weight: 300;
  line-height: 1.6;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.ca {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(6, 18, 48, 0.55);
  color: var(--muted);
  font-family: var(--sans);
  cursor: pointer;
}
.ca-k { letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.68rem; color: var(--blue-2); }
.ca-v { color: white; font-size: 0.92rem; }
.ca-go {
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 0.8rem;
}
.ca.shake { animation: shake 0.4s linear; }

.marquee {
  border-block: 1px solid rgba(160, 196, 255, 0.16);
  background: rgba(6, 16, 48, 0.35);
  overflow: hidden;
  margin-top: 18px;
}
.marquee-track {
  display: flex;
  gap: 42px;
  width: max-content;
  padding: 14px 0;
  animation: ticker 28s linear infinite;
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: #d5e6ff;
}
.marquee-track span::before {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  margin-right: 42px;
  border-radius: 50%;
  background: #6eafff;
  box-shadow: 0 0 10px #3d8cff;
  transform: translateY(-2px);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 88px 24px 10px;
}
.section-head { max-width: 720px; margin-bottom: 28px; }
.eyebrow {
  margin: 0 0 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-2);
  font-size: 0.75rem;
  font-weight: 600;
}
.section-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.sub { color: var(--muted); font-size: 1.08rem; line-height: 1.6; max-width: 720px; }
.inline { color: #d7e8ff; border-bottom: 1px solid rgba(180, 214, 255, 0.45); }
.inline:hover { color: white; }

.sheet {
  overflow-x: auto;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(28, 68, 160, 0.38), rgba(6, 16, 48, 0.78));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
table { width: 100%; border-collapse: collapse; min-width: 640px; }
th, td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(160, 196, 255, 0.14);
  font-size: 0.92rem;
  font-weight: 400;
  vertical-align: top;
}
th {
  color: var(--blue-2);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
td { color: var(--muted); }
td:first-child { color: white; font-weight: 500; }
tr:last-child td { border-bottom: 0; }

.code {
  margin: 16px 0 0;
  padding: 22px 22px;
  overflow-x: auto;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(4, 12, 36, 0.72);
  color: #d7e8ff;
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.86rem;
  line-height: 1.65;
}
.code code { font-family: inherit; }

.facts-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.facts-row a { color: inherit; }
.facts-row .note h3 { margin-top: 8px; }

.panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 30%),
    linear-gradient(165deg, rgba(28, 68, 160, 0.38), rgba(6, 16, 48, 0.78));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 24px 50px rgba(2, 8, 30, 0.28);
}
.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(380px circle at var(--mx, 20%) var(--my, 0%), rgba(150, 196, 255, 0.18), transparent 42%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.panel:hover::before { opacity: 1; }
.panel > * { position: relative; z-index: 1; }

.signal-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
}
.quote {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}
.quote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.15;
  font-weight: 500;
}
.quote footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  color: var(--soft);
}
.quote footer img {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover;
}
.quote footer strong { display: block; color: white; font-weight: 600; }
.notes { display: grid; gap: 16px; }
.note { padding: 22px 24px 20px; }
.idx {
  font-family: var(--serif);
  color: var(--blue-2);
  font-size: 1.2rem;
}
.note h3, .piece h3, .steps h3 {
  margin: 6px 0 8px;
  font-size: 1.25rem;
  font-weight: 600;
}
.note p, .piece p, .steps p, .footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

.mark-grid, .steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.piece { padding: 26px 24px 28px; }
.glyph {
  width: 84px;
  height: 84px;
  margin-bottom: 18px;
}
.crescent {
  border-radius: 50%;
  background: conic-gradient(from 200deg, #d7ecff, #3c86ff 62%, transparent 63%);
  -webkit-mask: radial-gradient(circle, transparent 46%, #000 50%);
  mask: radial-gradient(circle, transparent 46%, #000 50%);
  filter: drop-shadow(0 10px 16px rgba(40, 110, 255, 0.45));
  animation: spin 16s linear infinite;
}
.spiral { position: relative; }
.spiral i {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, #5aa2ff 45%, #1d5fe8);
  box-shadow: 0 6px 10px rgba(20, 60, 160, 0.35);
  animation: bob 3.4s ease-in-out infinite;
}
.spiral i:nth-child(1) { width: 8px; height: 8px; left: 38px; top: 34px; }
.spiral i:nth-child(2) { width: 11px; height: 11px; left: 48px; top: 22px; animation-delay: 0.2s; }
.spiral i:nth-child(3) { width: 14px; height: 14px; left: 60px; top: 18px; animation-delay: 0.35s; }
.spiral i:nth-child(4) { width: 16px; height: 16px; left: 66px; top: 34px; animation-delay: 0.5s; }
.spiral i:nth-child(5) { width: 18px; height: 18px; left: 58px; top: 52px; animation-delay: 0.15s; }
.spiral i:nth-child(6) { width: 12px; height: 12px; left: 28px; top: 22px; animation-delay: 0.45s; }
.spiral i:nth-child(7) { width: 9px; height: 9px; left: 24px; top: 40px; animation-delay: 0.6s; }
.pane {
  position: relative;
  width: 76px;
  height: 56px;
  margin-top: 14px;
  border-radius: 18px;
  border: 1px solid rgba(210, 230, 255, 0.75);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.55), rgba(120, 175, 255, 0.18) 38%, rgba(18, 60, 170, 0.35));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -12px 20px rgba(20, 70, 180, 0.25),
    0 12px 24px rgba(20, 60, 160, 0.35);
  animation: drift 7s ease-in-out infinite;
}
.pane::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 9px;
  height: 10px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.05));
}

.supply { position: relative; overflow: hidden; }
.watermark {
  position: absolute;
  left: 50%;
  top: 80px;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 18vw;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(160, 196, 255, 0.16);
  user-select: none;
  white-space: nowrap;
}
.supply-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  position: relative;
}
.supply-hero { padding: 32px; }
.supply-k, .facts span {
  color: var(--blue-2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
}
.supply-hero strong {
  display: block;
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.95;
}
.ticker { color: var(--soft); letter-spacing: 0.18em; }
.meters { display: grid; gap: 12px; margin-top: 26px; }
.meters div { display: grid; grid-template-columns: 1fr auto; gap: 8px 12px; align-items: center; }
.meters span {
  grid-column: 1 / -1;
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
}
.meters span::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--p);
  border-radius: inherit;
  background: linear-gradient(90deg, #1d5fe8, #9fd0ff);
  box-shadow: 0 0 16px rgba(80, 150, 255, 0.7);
  transform: scaleX(0);
  transform-origin: left;
  animation: fill 1.4s cubic-bezier(.2,.7,.2,1) forwards;
}
.meters em { grid-column: 1; color: var(--muted); font-style: normal; font-size: 0.9rem; }
.facts { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.facts li { padding: 20px 18px; }
.facts strong { display: block; margin-top: 8px; font-size: 1.35rem; font-weight: 600; }
.with-icon { display: flex !important; align-items: center; gap: 8px; }
.with-icon img { height: 16px; width: auto; }

.steps { grid-template-columns: repeat(4, 1fr); list-style: none; margin: 0; padding: 0; }
.steps li { padding: 22px 20px 20px; display: flex; flex-direction: column; gap: 8px; }
.steps li > span {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: #d5e7ff;
}
.steps .btn { margin-top: auto; align-self: flex-start; }

.join .banner {
  margin: 8px 0 22px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(190, 220, 255, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 30px 80px rgba(10, 40, 140, 0.4);
  background: #06215f;
}
.banner img {
  width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: cover;
  transform: scale(1.03);
  animation: ken 18s ease-in-out infinite alternate;
}
.join-row { display: flex; flex-wrap: wrap; gap: 10px; }

.footer { padding: 72px 24px 110px; }
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.footer p { max-width: 640px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; color: var(--blue-2); }

.dock {
  display: none;
  position: fixed;
  z-index: 30;
  left: 12px; right: 12px; bottom: 12px;
  gap: 8px;
}
.dock .btn { flex: 1; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: rise 0.9s cubic-bezier(.2,.7,.2,1) forwards;
  animation-play-state: paused;
}
.reveal.in { animation-play-state: running; }

.hero-copy > * { animation: rise 0.9s cubic-bezier(.2,.7,.2,1) both; }
.hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.14s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.24s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.34s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.44s; }
.mark-stage { animation: rise 1s cubic-bezier(.2,.7,.2,1) both; }

@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes floaty {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(20px, -24px, 0); }
}
@keyframes drift {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -16px; }
}
@keyframes logoPulse {
  0%, 100% { filter: saturate(1); }
  50% { filter: saturate(1.15) brightness(1.06); }
}
@keyframes sheen {
  0%, 58% { transform: translateX(-130%); }
  100% { transform: translateX(130%); }
}
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes scan {
  from { top: -20%; }
  to { top: 110%; }
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(126, 196, 255, 0.65); }
  100% { box-shadow: 0 0 0 12px rgba(126, 196, 255, 0); }
}
@keyframes ken {
  from { transform: scale(1.03) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.2%, 0, 0); }
}
@keyframes fill { to { transform: scaleX(1); } }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

@media (max-width: 980px) {
  .hero-grid, .signal-grid, .supply-layout { grid-template-columns: 1fr; }
  .mark-grid, .facts-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: 28px; }
}
@media (max-width: 860px) {
  .burger { display: block; order: 2; }
  .brand { order: 1; }
  .nav-links, .nav-actions { display: none; order: 3; }
  .nav.open .nav-inner { height: auto; flex-wrap: wrap; padding-bottom: 16px; }
  .nav.open .nav-links,
  .nav.open .nav-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 1 0 100%;
    margin: 8px 0 0;
    margin-left: 0;
    gap: 12px;
  }
  .dock.show { display: flex; }
  body.dock-on { padding-bottom: 84px; }
}
@media (max-width: 640px) {
  .steps, .facts { grid-template-columns: 1fr; }
  .mark-stage { width: min(250px, 70vw); }
  .hero-copy h1 { font-size: 3.4rem; }
  .hero-copy h1 em { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-actions .btn-lg { flex: 1 1 100%; width: auto; max-width: 100%; }
  .hero-actions .btn-icon { width: 48px; flex: 0 0 48px; }
  .join-row .btn { flex: 1 1 calc(50% - 10px); min-width: 140px; }
}

@media (hover: none) {
  .pointer { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
