:root {
  --bg: #07040c;
  --bg-2: #0c0814;
  --ink: #f6f1ff;
  --muted: #b7adc6;
  --dim: #8b819c;
  --line: rgba(196, 168, 255, 0.18);
  --violet: #c084fc;
  --ultra: #7c3aed;
  --mag: #e879f9;
  --lavender: #e9d5ff;
  --display: "Source Serif 4", "Iowan Old Style", Palatino, Georgia, serif;
  --text: "Inter", "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", "Cascadia Mono", ui-monospace, monospace;
  --gutter: clamp(20px, 4vw, 72px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { color-scheme: dark; }

html.lenis,
html.lenis body { height: auto; }

.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  margin: 0;
  background:
    radial-gradient(1100px 640px at 85% -10%, rgba(92, 28, 170, 0.28), transparent 58%),
    radial-gradient(800px 520px at -10% 30%, rgba(54, 16, 110, 0.2), transparent 55%),
    var(--bg);
  color: var(--ink);
  font-family: var(--text);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: 140;
  opacity: 0.14;
  mix-blend-mode: overlay;
  background-image: url("../images/grain.png");
  background-size: 180px 180px;
}

body::after {
  z-index: 139;
  opacity: 0.045;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 2px,
    rgba(0, 0, 0, 0.55) 2px 3px
  );
}

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

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

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: rgba(168, 85, 247, 0.45); color: white; }

:focus-visible {
  outline: 1px solid var(--lavender);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 16px;
  top: -40px;
  z-index: 200;
  background: white;
  color: black;
  padding: 8px 12px;
}

.skip:focus { top: 12px; }

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

h1, h2, h3, p { margin: 0; }

h1, h2, h3, .logo {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.eyebrow,
.kicker,
.btn,
.nav-links a,
.nav-x,
.scroll-cue,
.rail,
.readout,
figcaption,
.utility span,
.portal-body > span,
.copy-note {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow,
.kicker {
  color: var(--violet);
  font-size: 11px;
}

.lede,
.quiet,
.prose,
.support {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.quiet { font-size: 15px; max-width: 38ch; }

.progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--ultra), var(--mag));
  z-index: 120;
}

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px var(--gutter);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.nav.is-on {
  background: rgba(8, 5, 14, 0.72);
  backdrop-filter: blur(18px) saturate(1.3);
  box-shadow: 0 1px 0 rgba(192, 132, 252, 0.28);
}

.logo {
  justify-self: start;
  max-width: 100%;
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: none;
}

.nav-links {
  display: flex;
  gap: 26px;
}

.nav-links a,
.nav-x {
  font-size: 11px;
  color: rgba(236, 228, 255, 0.72);
}

.nav-links a:hover,
.nav-x:hover,
.nav-links a.is-active { color: white; }

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(214, 186, 255, 0.32);
  font-size: 11px;
  color: var(--ink);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.btn svg,
.portal svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.btn-fill {
  background: #f4efff;
  color: #140c1c;
  border-color: #f4efff;
}

.btn-fill:hover,
.btn:hover {
  background: #c084fc;
  border-color: #c084fc;
  color: #140c1c;
  box-shadow: 0 0 28px rgba(168, 85, 247, 0.4);
}

.btn-sm { min-height: 36px; padding: 0 14px; }

.burger {
  display: none;
  width: 42px;
  height: 42px;
  position: relative;
}

.burger span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.35s var(--ease);
}

.burger span:first-child { top: 17px; }
.burger span:last-child { top: 24px; }

.burger.is-open span:first-child { transform: translateY(3.5px) rotate(40deg); }
.burger.is-open span:last-child { transform: translateY(-3.5px) rotate(-40deg); }

.overlay {
  position: fixed;
  inset: 0;
  z-index: 95;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(96, 32, 170, 0.42), transparent 52%),
    #07040c;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 36px;
  padding: 96px var(--gutter) 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.overlay-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.overlay-links a {
  font-family: var(--display);
  font-size: clamp(44px, 12vw, 76px);
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.overlay-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  font-family: var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
}

.rail { display: none; }

.rail b {
  font-weight: 500;
  color: var(--lavender);
}

body.locked { overflow: hidden; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: end;
  gap: 12px;
  padding: 96px var(--gutter) 28px;
  overflow: hidden;
}

.hero-copy { min-width: 0; }

.hero h1 {
  font-size: clamp(46px, 5.5vw, 92px);
  text-transform: uppercase;
}

.mask { display: block; overflow: hidden; }

.js .line {
  display: block;
  transform: translateY(110%);
  animation: lift 1.15s var(--ease) forwards;
}

.js .mask:nth-child(2) .line { animation-delay: 0.1s; }
.js .mask:nth-child(3) .line { animation-delay: 0.2s; }

@keyframes lift {
  to { transform: none; }
}

.hero .lede { margin-top: 20px; max-width: 38ch; }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-figure {
  position: relative;
  height: min(64svh, 680px);
  min-height: 0;
}

.particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.aura {
  position: absolute;
  left: 12%;
  top: 16%;
  width: 70%;
  height: 62%;
  background: radial-gradient(circle, rgba(156, 72, 255, 0.48), rgba(80, 10, 150, 0.08) 46%, transparent 70%);
  filter: blur(8px);
  z-index: 0;
}

.scan {
  position: absolute;
  left: 8%;
  right: 8%;
  height: 1px;
  z-index: 4;
  background: linear-gradient(90deg, transparent, rgba(226, 196, 255, 0.7), transparent);
  animation: scan 9s linear infinite;
  opacity: 0.45;
  pointer-events: none;
}

@keyframes scan {
  from { top: 34%; }
  to { top: 88%; }
}

.holo {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.holo span {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(210, 176, 255, 0.72);
  z-index: 3;
  pointer-events: none;
}

.holo span:nth-child(1) { top: 8%; left: 10%; border-right: 0; border-bottom: 0; }
.holo span:nth-child(2) { top: 8%; right: 6%; border-left: 0; border-bottom: 0; }
.holo span:nth-child(3) { bottom: 8%; left: 10%; border-right: 0; border-top: 0; }
.holo span:nth-child(4) { bottom: 8%; right: 6%; border-left: 0; border-top: 0; }

.hero-figure video,
.chapter-media video {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  background: #09070f;
}

.finale-figure img.scene {
  object-fit: cover;
  object-position: center 18%;
}

.hero-figure img,
.diag-stage img,
.finale-figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 40px rgba(40, 0, 80, 0.45));
}

.float { animation: float 7.5s ease-in-out infinite; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.readout {
  position: absolute;
  left: 0;
  top: 6%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 10px;
  color: rgba(233, 213, 255, 0.8);
}

.readout b { font-weight: 500; color: white; }

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  font-size: 10px;
  color: rgba(233, 220, 255, 0.7);
}

.scroll-cue i {
  width: 1px;
  height: 46px;
  background: linear-gradient(var(--lavender), transparent);
  transform-origin: top;
  animation: drip 2s ease-in-out infinite;
}

@keyframes drip {
  0% { transform: scaleY(0.35); opacity: 0.35; }
  55% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0.35); opacity: 0.35; }
}

.edgeword { display: none; }

.system-head,
.evo-head,
.meet-head,
.eco-head {
  padding-top: clamp(88px, 12vh, 140px);
}

.system-head h2,
.evo-head h2,
.meet-head h2,
.eco-head h2,
.community h2 {
  font-size: clamp(52px, 7.4vw, 108px);
  text-transform: uppercase;
  margin-top: 16px;
}

.genesis h2,
.lore h2,
.token h2 {
  font-size: clamp(42px, 5vw, 80px);
  text-transform: uppercase;
  margin-top: 16px;
  max-width: none;
}

.system-head .lede,
.token .lede { margin-top: 22px; max-width: 36ch; }

.command-stage {
  overflow-anchor: none;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(340px, 1fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: stretch;
  padding: 6vh 0 32px;
}
.x-gap {
  height: 560px;
  transition: height 0.45s ease;
}

.command-box {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--line);
  background:
    radial-gradient(420px 220px at 0% 0%, rgba(124, 58, 237, 0.18), transparent 60%),
    rgba(8, 5, 14, 0.72);
  padding: clamp(28px, 3vw, 44px);
}

.command-steps {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  flex: 1;
  display: grid;
  align-content: space-evenly;
  gap: 16px;
}

.command-steps li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.command-steps span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet);
}

.command-steps strong {
  font-family: var(--text);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.command-line {
  margin: 26px 0 0;
  font-family: var(--mono);
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.55;
  color: var(--ink);
}

.command-attach {
  margin: 18px 0 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.command-attach img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #120c18;
}

.command-attach figcaption {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}

.mbp { width: min(100%, 520px); margin-inline: auto; }
.mbp-lid {
  position: relative;
  padding: 14px 12px 0;
  border-radius: 18px 18px 4px 4px;
  background: linear-gradient(180deg, #4a4a4e 0%, #2a2a2e 18%, #1a1a1c 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}
.mbp-cam {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0c0c0e;
  box-shadow: 0 0 0 2px #2c2c30;
  transform: translateX(-50%);
}
.mbp-screen {
  position: relative;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: #fff;
}
.mbp-base {
  height: 16px;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(180deg, #d5d5d8, #a7a7ad 42%, #8d8d93);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
  position: relative;
}
.mbp-base::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 22%;
  height: 7px;
  transform: translateX(-50%);
  border-radius: 0 0 8px 8px;
  background: #6d6d72;
}
.safari {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 38px;
  padding: 0 12px;
  background: #1c1c1e;
  border-bottom: 1px solid #2f3336;
}
.safari-lights { display: flex; gap: 6px; }
.safari-lights i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: block;
}
.safari-lights i:nth-child(1) { background: #ff5f57; }
.safari-lights i:nth-child(2) { background: #febc2e; }
.safari-lights i:nth-child(3) { background: #28c840; }
.safari-url {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  padding: 4px 10px;
  border-radius: 6px;
  background: #2c2c2e;
  color: #f2f2f7;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
}
.xpost {
  background: #fff;
  color: #0f1419;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.xpost-bar {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 53px;
  padding: 0 16px;
  border-bottom: 1px solid #eff3f4;
}
.xpost-bar svg { width: 20px; height: 20px; fill: #0f1419; }
.xpost-bar h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
  font-family: inherit;
}
.xpost-author {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 16px 0;
}
.xpost-author > img,
.xreply > img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.xpost-name,
.xreply-name {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
}
.x-badge { width: 18px; height: 18px; }
.xpost-handle { margin: 0; color: #536471; font-size: 15px; line-height: 20px; }
.xpost-text {
  margin: 12px 0 0;
  padding: 0 16px;
  font-size: 17px;
  line-height: 24px;
  font-weight: 400;
}
.xpost-time {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 16px 0 0;
  padding: 0 16px 16px;
  color: #536471;
  font-size: 15px;
  line-height: 20px;
  border-bottom: 1px solid #eff3f4;
}
.xpost-views { display: inline-flex; gap: 4px; }
.xpost-views::before { content: "·"; }
.xpost-views b { color: #0f1419; font-weight: 700; }
.xpost-counts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  list-style: none;
  margin: 0;
  padding: 16px;
  border-bottom: 1px solid #eff3f4;
  color: #536471;
  font-size: 14px;
}
.xpost-counts b { color: #0f1419; font-weight: 700; margin-right: 4px; }
.xpost-actions {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 48px;
  padding: 0 8px;
  border-bottom: 1px solid #eff3f4;
}
.xpost-actions svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #536471;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.xreply {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding: 12px 16px 16px;
}
.xreply-name span { color: #536471; font-weight: 400; }
.xreply-text {
  margin: 2px 0 0;
  min-height: 20px;
  font-size: 15px;
  line-height: 20px;
  white-space: pre-wrap;
}
.xreply-text .xmention { color: #1d9bf0; }
.xcaret {
  display: inline-block;
  width: 1px;
  height: 1.05em;
  margin-left: 1px;
  vertical-align: text-bottom;
  background: #1d9bf0;
  animation: xblink 1s steps(1) infinite;
}
.xreply.is-done .xcaret { display: none; }
@keyframes xblink { 50% { opacity: 0; } }
.xreply-slot {
  height: 0;
  margin-top: 0;
  overflow: hidden;
}
.xreply-slot.is-in {
  height: var(--shot, 0px);
  margin-top: 12px;
  transition: height 0.45s ease, margin-top 0.45s ease;
}
.xreply-slot > .xreply-img {
  display: block;
  width: 100%;
  height: calc(var(--shot, 0px) - 12px);
  border-radius: 16px;
  border: 1px solid transparent;
  object-fit: contain;
  object-position: center;
  background: #f7f9f9;
  opacity: 0;
}
.xreply-slot.is-in > .xreply-img {
  opacity: 1;
  border-color: #cfd9de;
  transition: opacity 0.35s ease;
}
.xbar {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 53px;
  padding: 0 16px;
  border-bottom: 1px solid #eff3f4;
}
.xbar svg { width: 20px; height: 20px; fill: #0f1419; }
.xbar h3 {
  margin: 0;
  font-family: inherit;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}
.xauthor, .xcompose, .xitem {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 16px 0;
}
.xauthor, .xcompose { grid-template-columns: 40px 1fr auto; }
.xauthor { align-items: center; }
.xauthor > img, .xcompose > img, .xitem > img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.xname, .xitem-top b {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 20px;
}
.xname { display: flex; align-items: center; gap: 2px; }
.xbadge { width: 18px; height: 18px; flex: none; }
.xhandle, .xitem-top span { color: #536471; font-size: 15px; font-weight: 400; }
.xhandle { margin: 0; line-height: 20px; }
.xtools { display: flex; gap: 14px; color: #0f1419; }
.xtools svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.xbody {
  margin: 12px 0 0;
  padding: 0 16px;
  font-size: 17px;
  line-height: 24px;
}
.xtime {
  margin: 16px 0 0;
  padding: 0 16px 12px;
  border-bottom: 1px solid #eff3f4;
  color: #536471;
  font-size: 15px;
  line-height: 20px;
}
.xtime b { color: #0f1419; }
.xactions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 48px;
  padding: 0 12px;
  border-bottom: 1px solid #eff3f4;
  color: #536471;
  font-size: 13px;
}
.xactions span { display: inline-flex; align-items: center; gap: 6px; min-width: 36px; }
.xactions svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #536471;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.xfilter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 44px;
  padding: 0 16px;
  border-bottom: 1px solid #eff3f4;
  color: #536471;
  font-size: 14px;
  font-weight: 700;
}
.xfilter i { font-style: normal; font-weight: 400; }
.xcompose {
  align-items: flex-start;
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eff3f4;
}
.xcompose-line {
  margin: 8px 0 0;
  min-height: 24px;
  font-size: 17px;
  line-height: 24px;
}
.xreplying {
  display: none;
  grid-column: 1 / -1;
  margin: 0 0 8px 52px;
  color: #536471;
  font-size: 13px;
  line-height: 16px;
}
.xreplying b { color: #1d9bf0; font-weight: 400; }
.xcompose.is-on .xreplying { display: block; }
.xmedia {
  display: none;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
  color: #1d9bf0;
}
.xcompose.is-on .xmedia { display: flex; }
.xmedia svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.xgif {
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  padding: 2px 3px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
}
.xph { color: #536471; }
.xcompose.is-on .xph { display: none; }
.xcompose .xcaret { display: none; }
.xcompose.is-on .xcaret { display: inline-block; }
.xcompose.is-done .xcaret { display: none; }
.xmention { color: #1d9bf0; }
.xsend {
  justify-self: end;
  align-self: start;
  margin-top: 4px;
  min-width: 72px;
  height: 34px;
  border-radius: 999px;
  background: #eff3f4;
  color: #8b98a5;
  font-size: 15px;
  font-weight: 700;
}
.xcompose.is-on .xsend { background: #0f1419; color: #fff; }
.xcompose.is-on { align-items: start; }
.xitem { padding: 10px 16px 2px; }
.xitem-top {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  min-width: 0;
}
.xitem-top span { font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.xitem-text { margin: 2px 0 0; font-size: 15px; line-height: 20px; }
.xitem-acts {
  display: flex;
  justify-content: space-between;
  max-width: 320px;
  margin: 8px 0 4px;
  color: #536471;
  font-size: 13px;
}
.xthread { padding-bottom: 8px; }
.finder {
  position: absolute;
  z-index: 4;
  left: 7%;
  right: 7%;
  top: 22%;
  border-radius: 12px;
  background: #f5f5f7;
  color: #1d1d1f;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  pointer-events: none;
}
.finder.is-open {
  opacity: 1;
  transform: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.finder-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 36px;
  padding: 0 12px;
  background: #e8e8ed;
  border-bottom: 1px solid #d2d2d7;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 600;
}
.finder-bar b { flex: 1; text-align: center; margin-right: 42px; }
.finder-body {
  display: flex;
  gap: 18px;
  padding: 16px 18px 18px;
}
.finder-file {
  width: 92px;
  margin: 0;
  text-align: center;
}
.finder-file img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
  border: 1px solid #d2d2d7;
  background: #fff;
}
.finder-file figcaption {
  margin-top: 6px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 11px;
  line-height: 1.3;
  color: #1d1d1f;
}
.drag-ghost {
  position: absolute;
  z-index: 6;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
  pointer-events: none;
  transition: left 0.85s cubic-bezier(0.2, 0.7, 0.2, 1), top 0.85s cubic-bezier(0.2, 0.7, 0.2, 1), width 0.85s cubic-bezier(0.2, 0.7, 0.2, 1), height 0.85s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.drag-ghost img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.layer {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 72px);
  align-items: center;
  padding: 8vh var(--gutter);
  border-top: 1px solid var(--line);
}

.layer:nth-child(even) .layer-visual { order: 2; }

.layer-visual {
  position: relative;
  height: min(68vh, 720px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(124, 58, 237, 0.22), transparent 58%),
    #09070f;
}

.layer-visual img,
.chapter-media img,
.film img,
.portal-media img,
.lore-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 1.1s var(--ease);
}

.layer:hover .layer-visual img { transform: scale(1.04); }

.layer-visual.is-cut img,
.chapter-media.is-cut img,
.film .is-sil img,
.portal-media.is-sil img {
  object-fit: contain;
  object-position: center;
  padding: 4%;
}

.layer-line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lavender), transparent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.8s var(--ease);
}

.layer:hover .layer-line { transform: scaleX(1); }

.layer-copy { position: relative; padding-top: 72px; overflow: hidden; min-width: 0; }

.layer-num {
  position: absolute;
  top: -0.15em;
  left: -0.04em;
  font-family: var(--display);
  font-size: clamp(120px, 14vw, 220px);
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(192, 132, 252, 0.38);
  pointer-events: none;
}

.layer:hover .layer-num { -webkit-text-stroke-color: rgba(232, 121, 249, 0.85); }

.layer-copy h3 {
  font-size: clamp(40px, 4vw, 64px);
  text-transform: uppercase;
  margin: 12px 0 18px;
}

.layer-copy .kicker,
.layer-copy h3,
.layer-copy p { position: relative; z-index: 1; }

.genesis-stage {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) 1.18fr;
  align-items: center;
  gap: 28px;
  padding: 12vh 0 12vh var(--gutter);
}

.prose { display: grid; gap: 18px; margin-top: 28px; max-width: 34ch; }

.prose .emph {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.board { padding: 24px 0 10vh; }
.board-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
}
.board-head { max-width: none; margin: 0; }
.board h2 {
  margin: 0;
  font-size: clamp(28px, 2.6vw, 42px);
  white-space: nowrap;
  letter-spacing: -0.03em;
}
.board-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin: 0;
  flex: 1;
}
.board-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.board-tabs button {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--dim);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--text);
  font-size: 14px;
}
.board-tabs button b {
  margin-left: 6px;
  color: var(--violet);
  font-weight: 500;
}
.board-tabs button.is-on {
  background: var(--ink);
  color: #100818;
  border-color: var(--ink);
}
.board-tabs button.is-on b { color: #5b21b6; }
.board-note {
  margin: 0;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.board-grid[hidden] { display: none; }
.coin-card {
  border: 1px solid rgba(167, 139, 250, 0.22);
  border-radius: 16px;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(124, 58, 237, 0.16), transparent 46%),
    #100c16;
  padding: 10px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.coin-card:hover {
  border-color: rgba(196, 167, 255, 0.55);
  transform: translateY(-3px);
}
.coin-art {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1.15;
  overflow: hidden;
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(124, 58, 237, 0.18), transparent 42%),
    #120d1a;
  color: rgba(196, 167, 255, 0.62);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}
.coin-art::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 18%;
  background: linear-gradient(180deg, transparent, rgba(167, 139, 250, 0.18), transparent);
  animation: codescan 3.2s linear infinite;
  pointer-events: none;
}
.wait-word {
  position: relative;
  z-index: 1;
  width: 100%;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
  color: rgba(196, 167, 255, 0.62);
}
@keyframes codescan {
  from { top: -20%; }
  to { top: 100%; }
}
.coin-card a { color: inherit; text-decoration: none; }
.coin-card a:hover { text-decoration: underline; }
.coin-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
}
.coin-name { margin: 12px 4px 0; font-size: 15px; font-weight: 500; }
.coin-sub, .coin-price, .coin-foot {
  margin: 4px 4px 0;
  color: var(--dim);
  font-size: 13px;
}
.coin-foot { margin-bottom: 6px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.film-window { overflow: hidden; min-width: 0; }

.film {
  display: flex;
  gap: 16px;
  width: max-content;
  padding-right: 8vw;
}

.film figure {
  width: min(38vw, 440px);
  height: min(68vh, 640px);
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #09070f;
  border: 1px solid var(--line);
}

.film figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 239, 255, 0.82);
}
.launch-card figcaption b {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-transform: none;
  line-height: 1;
}

.evo-head { padding-bottom: 4vh; }

.chapter {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
  padding: 10vh var(--gutter);
  overflow: hidden;
}

.chapter:nth-child(even) .chapter-media { order: 2; }

.chapter-media {
  height: min(72vh, 760px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 40%, rgba(124, 58, 237, 0.2), transparent 60%),
    #09070f;
}

.chapter-copy h3 {
  font-size: clamp(42px, 5vw, 76px);
  text-transform: uppercase;
  margin: 14px 0 18px;
}

.watermark {
  position: absolute;
  left: -0.08em;
  bottom: -0.18em;
  font-family: var(--display);
  font-size: clamp(180px, 26vw, 420px);
  line-height: 0.8;
  letter-spacing: -0.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(192, 132, 252, 0.2);
  pointer-events: none;
  user-select: none;
}

.creed {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 12vh 0;
}

.creed h2 {
  margin-top: 22px;
  font-size: clamp(30px, 3.6vw, 54px);
  letter-spacing: -0.05em;
  line-height: 1.02;
  text-transform: none;
  font-weight: 500;
  max-width: 18em;
}

.creed h2 span { display: block; }

.creed h2 span:last-child { color: var(--lavender); }

.support { margin-top: 28px; max-width: 36ch; }

.meet { padding-bottom: 10vh; }

.diag {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 180px;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 12px 20px;
}

.diag-stage {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  height: min(54vh, 600px);
}

.readouts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 28px;
}

.readouts.left { grid-column: 1; grid-row: 1; }
.readouts.right { grid-column: 3; grid-row: 1; text-align: right; }

.readouts span,
.diag-status span,
.ca .kicker,
.utility span,
.portal-body > span {
  display: block;
  color: var(--dim);
  font-size: 10px;
}

.readouts span,
.diag-status span {
  font-family: var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.readouts strong,
.diag-status strong {
  display: block;
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.diag-status {
  grid-column: 2;
  grid-row: 2;
  z-index: 4;
  align-self: start;
  justify-self: center;
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: baseline;
  margin: 16px 0 0;
  font-family: var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 2px 16px #07040c;
}

.diag-status strong { font-size: 13px; letter-spacing: 0.18em; }

.lore {
  position: relative;
  padding: 12vh 0 8vh;
  overflow: hidden;
}

.lore-wash {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 45%, rgba(124, 40, 200, 0.28), transparent 58%);
  opacity: 0;
  pointer-events: none;
}

.lore-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.7fr);
  gap: 48px;
  align-items: start;
}

.lore h2 { max-width: 11ch; }

.timeline {
  position: relative;
  margin-top: 64px;
  padding-left: 36px;
}

.spine {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(196, 168, 255, 0.2);
}

.spine i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(var(--violet), var(--mag));
  transform: scaleY(0);
  transform-origin: top;
}

.beat {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 0 0 16vh;
}

.beat p:last-child {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.lore-visual {
  position: sticky;
  top: 18vh;
  height: min(64vh, 680px);
  overflow: hidden;
  background: #09070f;
  border: 1px solid var(--line);
}

.token { padding: 14vh 0; }

.token-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: end;
}

.token h2 { max-width: 10ch; }

.ca { margin-top: 36px; }

.ca-value {
  margin-top: 8px;
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.utility {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.utility li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.copy-note {
  min-height: 1.2em;
  margin-top: 12px;
  font-size: 10px;
  color: var(--lavender);
}

.eco-head { padding-bottom: 36px; }

.portals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-bottom: 12vh;
}

.portal {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: #0a0710;
  overflow: hidden;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.portal:hover {
  border-color: rgba(216, 180, 254, 0.7);
  box-shadow: inset 0 0 80px rgba(120, 40, 220, 0.18), 0 24px 60px rgba(40, 0, 80, 0.28);
}

.portal-media {
  height: 210px;
  overflow: hidden;
  background: #09070f;
}

.portal:hover .portal-media img { transform: scale(1.04); }

.portal-body {
  position: relative;
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.portal h3 {
  font-size: 28px;
  text-transform: uppercase;
}

.portal p { color: var(--muted); font-size: 14px; line-height: 1.5; }

.portal svg {
  margin-top: auto;
  align-self: flex-end;
}

.community {
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 12vh var(--gutter);
}

.community .wrap { display: grid; justify-items: center; }

.community h2 { max-width: 12ch; }

.community blockquote {
  margin: 36px 0 0;
  padding: 0;
  font-family: var(--display);
  font-size: clamp(26px, 3.3vw, 48px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.community blockquote span { display: block; }
.community blockquote span:last-child { margin-top: 0.75em; }

.community .actions { justify-content: center; }

.finale {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(110, 30, 190, 0.38), transparent 55%),
    #050308;
}

.finale .particles { z-index: 1; }

.finale-glow {
  position: absolute;
  width: min(70vw, 760px);
  height: min(70vw, 760px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140, 60, 230, 0.35), transparent 68%);
  filter: blur(10px);
}

.finale-inner {
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100% - var(--gutter) * 2));
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: end;
}

.finale-figure { height: min(70vh, 680px); }

.finale h2 {
  font-size: clamp(64px, 8vw, 120px);
  text-transform: uppercase;
}

.finale-copy p {
  margin: 18px 0 28px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--mono);
  font-size: 12px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.7fr 1fr;
  gap: 28px;
}

.footer .logo { display: inline-block; margin-bottom: 12px; }

.footer-grid > div:first-child p,
.footer-grid > div:last-child p {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer p,
.footer a { color: var(--muted); font-size: 14px; }

.footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer a:hover { color: white; }

.footer .kicker { margin-bottom: 10px; }

.legal {
  margin-top: 48px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .portals { grid-template-columns: 1fr 1fr; }
  .rail { display: none; }
  .diag { grid-template-columns: 1fr 1fr; }
  .diag-stage { grid-column: 1 / -1; grid-row: 1; height: 62vh; }
  .readouts.left { grid-column: 1; grid-row: 2; }
  .readouts.right { grid-column: 2; grid-row: 2; text-align: right; }
  .diag-status {
    grid-column: 1 / -1;
    grid-row: 3;
    align-self: start;
    margin: 18px 0 0;
  }
}

@media (max-width: 960px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav-links,
  .nav-x,
  .nav-actions .btn { display: none; }
  .burger { display: block; }

  .hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 92px;
    gap: 8px;
  }

  .hero-figure { order: -1; width: 100%; height: 42svh; min-height: 240px; }
  .hero { padding-top: 78px; }
  .hero h1 { font-size: clamp(40px, 11vw, 64px); }
  .hero .lede { margin-top: 12px; font-size: 15px; }
  .hero .actions { margin-top: 16px; }
  .hero .scroll-cue { margin-top: 14px; }
  .diag-stage { height: 48vh; }
  .edgeword { display: none; }
  .scroll-cue { margin-top: 28px; }

  .layer,
  .chapter,
  .command-stage,
  .command-box,
  .genesis-stage,
  .lore-grid,
  .token-grid,
  .finale-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .command-box { height: auto; }
  .command-steps { flex: none; }
  .board-grid { grid-template-columns: 1fr; }
  .board-top, .board-bar { align-items: flex-start; flex-direction: column; }
  .board h2 { white-space: normal; }

  .layer,
  .chapter { min-height: 0; padding-top: 48px; padding-bottom: 56px; }

  .layer:nth-child(even) .layer-visual,
  .chapter:nth-child(even) .chapter-media { order: 0; }

  .layer-visual,
  .chapter-media { height: 62vw; min-height: 280px; }

  .genesis-stage { min-height: 0; padding-right: var(--gutter); }
  .film { width: auto; flex-direction: column; padding-right: 0; }
  .film figure { width: 100%; height: 78vw; }

  .lore-visual { position: relative; top: 0; height: 70vw; order: -1; }
  .beat { grid-template-columns: 1fr; gap: 8px; padding-bottom: 48px; }

  .finale-figure { height: 48svh; }
  .creed h2 { max-width: 16em; }
}

@media (max-width: 640px) {
  .portals { grid-template-columns: 1fr; }
  .portal { min-height: 0; }
  .actions .btn { width: 100%; }
  .hero .actions .btn,
  .token .actions .btn,
  .community .actions .btn,
  .finale .actions .btn,
  .finale-copy .btn { width: auto; }
  .footer-grid { gap: 32px; }
}

.chapter:nth-child(even) .watermark { left: auto; right: -0.08em; }

.js [data-reveal].wait {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);
}

.js [data-reveal].in {
  opacity: 1;
  transform: none;
  filter: none;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
}

.hero {
  display: block;
  padding: 0;
  min-height: 100svh;
}
.hero-stage {
  position: relative;
  min-height: 100svh;
  padding: 118px var(--gutter) 72px;
}
.hero-birth {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 239, 255, 0.62);
}
.hero-video {
  position: absolute;
  right: 50%;
  top: 48%;
  transform: translate(72%, -50%);
  width: min(1030px, 88vw);
  z-index: 0;
  pointer-events: none;
}
.hero-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1030 / 786;
  overflow: hidden;
  background: #07040c;
}
.hero-video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  opacity: 0.94;
}
.hero-halftone {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: block;
  opacity: 0.72;
  pointer-events: none;
  mix-blend-mode: screen;
}
.hero-video-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.28;
  background-image: url("../images/grain.png");
  background-size: 160px;
  mix-blend-mode: overlay;
}
.hero-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: radial-gradient(ellipse at 62% 46%, transparent 28%, rgba(7, 4, 12, 0.25) 52%, #07040c 76%);
}
.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 680px;
  margin-top: clamp(36px, 8vh, 110px);
}
.hero .h-hero,
.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(52px, 7vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: none;
  max-width: 9em;
}
.hero .lead,
.hero-story-line {
  max-width: 46ch;
  margin-top: 22px;
  color: rgba(232, 224, 244, 0.72);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: 0.01em;
}
.hero-rule {
  width: min(420px, 70%);
  height: 1px;
  margin-top: 22px;
  background: rgba(196, 168, 255, 0.28);
}
.hero .actions { position: relative; z-index: 5; }
.hero .scroll-cue {
  position: absolute;
  left: var(--gutter);
  bottom: 28px;
  z-index: 5;
}
.scramble {
  font-variant-ligatures: none;
  white-space: pre-wrap;
}
.scramble-title { font-family: var(--display); }
.scramble-body { font-family: var(--mono); }
h1, h2, h3 { font-family: var(--display); font-weight: 400; text-transform: none; letter-spacing: -0.03em; }

@media (max-width: 960px) {
  .hero { display: block; padding: 0; }
  .hero-stage { padding: 92px 20px 36px; }
  .hero-video {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    margin: 8px 0 22px;
  }
  .hero-copy { margin-top: 0; }
  .hero .h-hero, .hero h1 { font-size: clamp(40px, 12vw, 64px); }
  .hero .scroll-cue { position: static; margin-top: 22px; }
}

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

  .js .line { transform: none; }
  .spine i { transform: none; }
}
