:root {
  color-scheme: dark;
  --ink: oklch(13% 0.014 262);
  --ink-2: oklch(10% 0.014 262);
  --panel: oklch(20% 0.02 262);
  --panel-2: oklch(24% 0.022 262);
  --text: oklch(96% 0.012 90);
  --muted: oklch(72% 0.02 258);
  --gold: oklch(78% 0.14 85);
  --gold-bright: oklch(88% 0.1 92);
  --ember: oklch(70% 0.16 27);
  --ember-bright: oklch(80% 0.14 35);
  --line: oklch(78% 0.14 85 / 0.28);
  --danger: oklch(72% 0.15 25);
  --radius: 5px;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
  --font-display: "Cinzel", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* Early-access campaign and signed-in account */
.hero-alpha-badge,
.campaign-count {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border: 1px solid rgba(220, 174, 78, .48);
  background: rgba(5, 8, 13, .72);
  color: #f3d58d;
  padding: .55rem .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.campaign-count {
  margin: 1rem 0 0;
  color: var(--text, #f7f3e8);
  text-transform: none;
  letter-spacing: 0;
}

.campaign-count strong {
  color: #f0bd55;
  font-family: "Cinzel", serif;
  font-size: 1.35em;
}

.early-access-hero,
.account-hero {
  min-height: 58vh;
}

.early-access-section,
.account-section {
  padding-top: clamp(3rem, 7vw, 6rem);
}

.campaign-layout,
.account-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .85fr);
  gap: 1.4rem;
  align-items: start;
}

.panel-card {
  border: 1px solid rgba(212, 168, 78, .24);
  background: linear-gradient(145deg, rgba(22, 27, 36, .94), rgba(7, 10, 15, .96));
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
  padding: clamp(1.4rem, 3vw, 2.35rem);
}

.panel-card h2 {
  margin-top: .25rem;
}

.provider-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin: 1.4rem 0;
}

.provider-button:disabled {
  cursor: not-allowed;
  opacity: .48;
}

.legal-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .7rem;
  align-items: start;
  line-height: 1.55;
}

.legal-consent input {
  margin-top: .3rem;
  inline-size: 1.15rem;
  block-size: 1.15rem;
}

.turnstile-container {
  min-height: 70px;
  margin: 1.25rem 0 .5rem;
}

.campaign-message {
  min-height: 1.5rem;
  margin: .8rem 0;
  color: #cfe8d3;
}

.campaign-message.is-error {
  color: #ffb3a7;
}

.campaign-steps {
  display: grid;
  gap: .9rem;
  padding-left: 1.25rem;
}

.milestone-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.milestone-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  border: 1px solid rgba(212, 168, 78, .22);
  background: radial-gradient(circle at 50% 0, rgba(184, 135, 45, .13), transparent 62%), rgba(8, 11, 17, .9);
  padding: 1.5rem;
}

.milestone-card::after {
  content: "?";
  position: absolute;
  right: .7rem;
  bottom: -1.2rem;
  color: rgba(255, 255, 255, .035);
  font: 900 9rem/1 "Cinzel", serif;
}

.milestone-card > span {
  color: #efc66e;
  font: 700 1.4rem/1 "Cinzel", serif;
}

.milestone-card.is-unlocked {
  border-color: rgba(239, 198, 110, .72);
  box-shadow: 0 0 34px rgba(220, 162, 49, .13);
}

.milestone-card.is-unlocked p {
  color: #aee5b8;
}

.build-panel {
  max-width: 900px;
}

.account-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.account-facts {
  display: grid;
  gap: .8rem;
  margin: 1.2rem 0 0;
}

.account-facts div {
  display: grid;
  grid-template-columns: minmax(120px, .6fr) 1fr;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: .8rem;
}

.account-facts dt {
  color: var(--muted, #aaa);
}

.account-facts dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.account-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .campaign-layout,
  .account-grid {
    grid-template-columns: 1fr;
  }

  .milestone-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .milestone-grid {
    grid-template-columns: 1fr;
  }

  .provider-actions,
  .account-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .provider-actions .button {
    justify-content: center;
    text-align: center;
  }
}

@property --angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, oklch(9% 0.012 262 / .58), oklch(9% 0.012 262 / .86) 42%, var(--ink) 88%),
    url("hero-bg.webp") center 30% / cover fixed no-repeat;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a { color: var(--gold-bright); text-decoration-thickness: 1px; }
a:hover { color: var(--ember-bright); }

.skip-link {
  position: absolute; left: 1rem; top: -5rem; z-index: 100;
  padding: .7rem 1rem; background: var(--gold); color: #14100a; border-radius: 4px; font-weight: 700;
}
.skip-link:focus { top: 1rem; }

/* header + nav */
.site-header {
  position: sticky; top: 0; z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: oklch(13% 0.014 262 / 0.82);
  backdrop-filter: blur(18px);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.is-scrolled { box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35); background: oklch(10% 0.014 262 / 0.95); }

.nav-shell, .shell { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.shell-wide { width: min(1320px, calc(100% - 40px)); margin-inline: auto; }

.nav-shell { position: relative; min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--text); text-decoration: none; font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; letter-spacing: .03em; }
.brand img { width: 38px; height: 38px; border-radius: 6px; transition: filter .3s ease, transform .3s ease; }
.brand:hover img { filter: drop-shadow(0 0 10px oklch(78% 0.14 85 / 0.65)); transform: rotate(-4deg); }
.brand span span { color: var(--gold-bright); }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0; border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px; background: rgba(255, 255, 255, 0.03); cursor: pointer;
}
.nav-toggle span { display: block; margin-inline: auto; width: 20px; height: 2px; border-radius: 2px; background: var(--text); transition: transform .3s ease, opacity .3s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 4px; }
.site-nav a { position: relative; padding: .55rem .7rem; border-radius: 4px; color: var(--muted); text-decoration: none; font-size: .84rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; transition: color .2s ease, background .2s ease; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--text); background: oklch(78% 0.14 85 / 0.12); }
.site-nav a[aria-current="page"]::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 5px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--ember)); }

main { min-height: 62vh; }

/* ornamental divider */
.rule-orn { display: flex; align-items: center; gap: 14px; width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.rule-orn::before, .rule-orn::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.rule-orn::after { background: linear-gradient(90deg, var(--gold), transparent); }
.rule-orn span { width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); flex: 0 0 auto; box-shadow: 0 0 12px oklch(78% 0.14 85 / .7); }

/* hero */
.hero {
  position: relative; overflow: hidden; min-height: 92vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: 150px 20px 40px; text-align: center;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 50% 38%, transparent 30%, oklch(9% 0.012 262 / .78) 100%),
    linear-gradient(180deg, oklch(9% 0.012 262 / .35), oklch(9% 0.012 262 / .55) 60%, var(--ink) 100%);
}
.hero .shell { position: relative; z-index: 1; }
.hero-content-center { display: flex; flex-direction: column; align-items: center; max-width: 760px; margin-inline: auto; position: relative; z-index: 1; }
.hero-content-center > * { opacity: 0; transform: translateY(18px); animation: rise .8s cubic-bezier(.16, 1, .3, 1) forwards; }
.hero-content-center > *:nth-child(1) { animation-delay: .05s; }
.hero-content-center > *:nth-child(2) { animation-delay: .16s; }
.hero-content-center > *:nth-child(3) { animation-delay: .28s; }
.hero-content-center > *:nth-child(4) { animation-delay: .4s; }
.hero-content-center > *:nth-child(5) { animation-delay: .52s; }
.hero-content-center .lead { text-align: center; }

/* HUD corner frame, game-menu style */
.hero-frame { position: absolute; inset: 18px; z-index: 2; pointer-events: none; }.hf-corner { position: absolute; width: 46px; height: 46px; }
.hf-corner.tl { top: 0; left: 0; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.hf-corner.tr { top: 0; right: 0; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.hf-corner.bl { bottom: 0; left: 0; border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.hf-corner.br { bottom: 0; right: 0; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }

.hero-hud {
  position: relative; z-index: 1; display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px 26px; margin-top: 56px; padding: 16px 26px; border: 1px solid var(--line); border-radius: var(--radius);
  background: oklch(10% 0.014 262 / .55); backdrop-filter: blur(6px);
  opacity: 0; animation: rise .8s cubic-bezier(.16, 1, .3, 1) forwards; animation-delay: .64s;
}
.hud-stat { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.hud-stat .shield { width: 16px; height: 19px; border: 1px solid rgba(255, 255, 255, .35); clip-path: polygon(50% 0%, 100% 20%, 100% 72%, 50% 100%, 0% 72%, 0% 20%); }
.hud-stat.status { margin-left: 4px; }
@media (max-width: 640px) { .hero-hud { gap: 10px 16px; } .hero { min-height: auto; padding-top: 120px; } .hero-frame { inset: 10px; } .hf-corner { width: 30px; height: 30px; } }

.hero-brand-row { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.hero-crest-ring {
  position: relative; width: 40px; height: 40px; flex: 0 0 auto; border-radius: 50%;
  display: grid; place-items: center;
}
.hero-crest-ring::before {
  content: ""; position: absolute; inset: -1px; border-radius: 50%;
  background: conic-gradient(from var(--angle), transparent 0 55%, var(--gold) 75%, var(--ember-bright) 88%, transparent 100%);
  animation: spin 6s linear infinite;
}
.hero-crest-ring img { position: relative; width: 32px; height: 32px; border-radius: 50%; }
.hero-brand-row .eyebrow { margin: 0; }

.eyebrow { margin: 0 0 16px; color: var(--gold-bright); font-size: .78rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }

h1, h2, h3 { margin-top: 0; font-family: var(--font-display); line-height: 1.14; text-wrap: balance; }
h1 { margin-bottom: 22px; font-size: clamp(2.65rem, 6.6vw, 5.2rem); letter-spacing: -.01em; font-weight: 700; }
.hero h1 em {
  display: block; font-style: normal; font-weight: 500;
  background: linear-gradient(100deg, var(--gold-bright), var(--ember-bright) 60%, var(--gold-bright));
  background-size: 220% auto; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: sheen 7s linear infinite;
}
h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); font-weight: 600; }
h3 { font-size: 1.3rem; font-weight: 600; }

.lead { max-width: 640px; margin: 0 0 30px; color: #d3d7de; font-size: clamp(1.05rem, 2vw, 1.22rem); }
.hero .lead { color: #e3e6ea; }

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

.button {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: .72rem 1.4rem .72rem 1.2rem;
  border: 1px solid var(--gold);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  background: linear-gradient(135deg, var(--gold-bright), var(--ember));
  color: #17110a; text-decoration: none; font-weight: 800; letter-spacing: .02em;
  overflow: hidden; isolation: isolate;
  box-shadow: 0 12px 28px oklch(60% 0.14 60 / 0.3);
  transition: transform .25s ease, filter .25s ease, box-shadow .25s ease;
}
.button::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, .55) 46%, transparent 62%);
  transform: translateX(-120%); transition: transform .55s ease;
}
.button:hover::before { transform: translateX(120%); }
.button:hover { color: #000; filter: brightness(1.05); transform: translateY(-2px); box-shadow: 0 16px 36px oklch(60% 0.14 60 / 0.4); }
.button:active { transform: translateY(0); }
.button.secondary { border-color: rgba(255, 255, 255, 0.2); background: rgba(255, 255, 255, 0.05); color: var(--text); box-shadow: none; }
.button.secondary:hover { color: var(--text); background: rgba(255, 255, 255, 0.09); box-shadow: 0 10px 24px rgba(0, 0, 0, .3); }

.shield-trio { display: flex; align-items: center; gap: 10px; }
.shield-trio .shield {
  width: 24px; height: 28px; border: 1px solid rgba(255, 255, 255, .3);
  clip-path: polygon(50% 0%, 100% 20%, 100% 72%, 50% 100%, 0% 72%, 0% 20%);
}
.shield-trio .shield.blue { background: linear-gradient(160deg, oklch(58% 0.13 255), oklch(28% 0.09 255)); }
.shield-trio .shield.green { background: linear-gradient(160deg, oklch(58% 0.12 150), oklch(28% 0.08 150)); }
.shield-trio .shield.crimson { background: linear-gradient(160deg, var(--ember-bright), oklch(32% 0.12 20)); }
.shield-trio span { color: var(--muted); font-size: .82rem; letter-spacing: .05em; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  animation: bob 2.4s ease-in-out infinite;
}
.scroll-cue::after { content: ""; width: 1px; height: 26px; background: linear-gradient(180deg, var(--gold), transparent); }

/* ember particles */
.ember-field { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.ember-field span { position: absolute; bottom: -12px; border-radius: 50%; background: radial-gradient(circle, var(--gold-bright), var(--ember) 65%, transparent); box-shadow: 0 0 8px oklch(78% 0.14 85 / .8); opacity: 0; animation: ember-rise linear infinite; }

.section { padding: 82px 0; position: relative; }
.section.tight { padding-top: 28px; padding-bottom: 28px; }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head p:last-child { color: var(--muted); }

/* gallery */
.gallery-section { padding: 66px 0 20px; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.gallery-frame { position: relative; margin: 0; padding: 0; overflow: hidden; background: var(--panel); box-shadow: var(--shadow); border-radius: var(--radius); aspect-ratio: 16/9; }
.gallery-frame img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.16, 1, .3, 1); }
.gallery-frame:hover img { transform: scale(1.045); }
.gallery-frame-wide { aspect-ratio: 1672/941; }
.gallery-frame figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 20px 14px;
  background: linear-gradient(180deg, transparent, oklch(8% 0.01 262 / .92));
  color: var(--gold-bright); font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}

/* bracket-corner panels: cards, gallery frames, notices, contact/status panels */
.card, .gallery-frame, .contact-card, .status-strip, .pillar {
  position: relative;
}
.card::before, .gallery-frame::before, .contact-card::before, .status-strip::before, .pillar::before,
.card::after, .gallery-frame::after, .contact-card::after, .status-strip::after, .pillar::after {
  content: ""; position: absolute; width: 14px; height: 14px; pointer-events: none;
  transition: width .3s ease, height .3s ease, opacity .3s ease; opacity: .85;
}
.card::before, .gallery-frame::before, .contact-card::before, .status-strip::before, .pillar::before { top: -1px; left: -1px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.card::after, .gallery-frame::after, .contact-card::after, .status-strip::after, .pillar::after { bottom: -1px; right: -1px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.card:hover::before, .card:hover::after, .gallery-frame:hover::before, .gallery-frame:hover::after,
.pillar:hover::before, .pillar:hover::after { width: 20px; height: 20px; opacity: 1; }

.grid-3, .grid-2 { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card {
  padding: 28px; border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(255, 255, 255, .04), transparent 55%), var(--panel);
  --tiltX: 0deg; --tiltY: 0deg;
  transform: perspective(1000px) rotateX(var(--tiltX)) rotateY(var(--tiltY));
  transition: transform .2s ease;
}
.card:hover { transform: perspective(1000px) rotateX(var(--tiltX)) rotateY(var(--tiltY)) translateY(-4px); }
.card p:last-child { margin-bottom: 0; color: var(--muted); }
.card-number {
  display: inline-grid; width: 34px; height: 34px; place-items: center; margin-bottom: 18px;
  border: 1px solid var(--line); border-radius: 50%; color: var(--gold-bright); font-weight: 800;
  font-family: var(--font-display); transition: box-shadow .3s ease;
}
.card:hover .card-number { box-shadow: 0 0 0 4px oklch(78% 0.14 85 / .14); }

/* feature pillars */
.pillar-row { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.pillar {
  padding: 22px 14px 20px; text-align: center; border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius); background: var(--panel);
}
.pillar .pillar-mark {
  width: 46px; height: 46px; margin: 0 auto 14px; display: grid; place-items: center;
  border: 1px solid var(--gold); clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  color: var(--gold-bright); font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  background: oklch(78% 0.14 85 / .08);
}
.pillar h3 { font-size: .98rem; text-transform: uppercase; letter-spacing: .04em; }
.pillar p { margin: 0; color: var(--muted); font-size: .86rem; }

.status-strip {
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
  padding: 22px 26px; border: 1px solid rgba(217, 169, 78, .3); border-radius: var(--radius);
  background: linear-gradient(120deg, oklch(78% 0.14 85 / .12), transparent 55%), oklch(12% 0.015 262 / .7);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .3);
}
.status-strip p { margin: 0; color: #d8d3c8; }
.status-pill {
  position: relative; flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px;
  padding: .38rem .8rem .38rem .6rem; border: 1px solid oklch(78% 0.14 85 / .4); border-radius: 99px;
  color: var(--gold-bright); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.status-pill::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold-bright);
  box-shadow: 0 0 0 0 oklch(78% 0.14 85 / .6); animation: pulse-dot 2s ease-out infinite;
}

.page-hero {
  position: relative; overflow: hidden; padding: 108px 0 54px;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(100deg, oklch(9% 0.012 262 / .82) 0%, oklch(9% 0.012 262 / .55) 45%, transparent 85%),
    linear-gradient(180deg, transparent 55%, var(--ink) 100%),
    url("hero-bg.webp") center 25% / cover no-repeat;
}
.page-hero .hero-frame { inset: 12px; }
.page-hero .shell { position: relative; z-index: 1; }
.page-hero h1 { max-width: 900px; font-size: clamp(2.5rem, 6vw, 4.8rem); }
.page-hero .lead { margin-bottom: 0; }
.page-hero .shell > * { opacity: 0; transform: translateY(18px); animation: rise .8s cubic-bezier(.16, 1, .3, 1) forwards; }
.page-hero .shell > *:nth-child(1) { animation-delay: .04s; }
.page-hero .shell > *:nth-child(2) { animation-delay: .14s; }
.page-hero .shell > *:nth-child(3) { animation-delay: .26s; }

.policy-layout { display: grid; grid-template-columns: 230px minmax(0, 760px); align-items: start; gap: 58px; padding-bottom: 100px; }
.policy-nav { position: sticky; top: 100px; padding: 18px; border: 1px solid rgba(255, 255, 255, .08); border-radius: var(--radius); background: var(--panel); }
.policy-nav strong { display: block; margin-bottom: 8px; color: var(--gold-bright); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.policy-nav a { display: block; padding: .38rem .5rem; margin: 0 -.5rem; border-radius: 4px; color: var(--muted); text-decoration: none; font-size: .9rem; transition: color .2s ease, background .2s ease; }
.policy-nav a:hover { color: var(--text); }
.policy-nav a.is-active { color: var(--gold-bright); background: oklch(78% 0.14 85 / .1); }

.policy-content section { padding: 0 0 34px; margin: 0 0 34px; border-bottom: 1px solid rgba(255, 255, 255, .08); scroll-margin-top: 100px; }
.policy-content section:last-child { border-bottom: 0; }
.policy-content h2 { font-size: clamp(1.55rem, 3vw, 2.15rem); }
.policy-content h3 { margin-top: 28px; }
.policy-content p, .policy-content li { color: #c2c9d2; }
.policy-content li + li { margin-top: .48rem; }
.policy-content strong { color: var(--text); }

.notice { margin: 0 0 34px; padding: 22px 24px; border-left: 3px solid var(--gold); border-radius: 0 4px 4px 0; background: oklch(78% 0.14 85 / .09); color: #ddd8cc; }

.steps { counter-reset: steps; padding: 0; list-style: none; }
.steps li { position: relative; min-height: 56px; padding: 0 0 26px 66px; }
.steps li::before {
  counter-increment: steps; content: counter(steps); position: absolute; left: 0; top: -4px;
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid var(--gold); clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  color: var(--gold-bright); font-weight: 800; font-family: var(--font-display);
}

.data-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: .94rem; }
.data-table th, .data-table td { padding: 14px; border: 1px solid rgba(255, 255, 255, .09); text-align: left; vertical-align: top; }
.data-table th { color: var(--gold-bright); background: oklch(78% 0.14 85 / .07); }
.data-table td { color: #c2c9d2; }

.contact-card { padding: clamp(26px, 5vw, 46px); border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, oklch(78% 0.14 85 / .12), transparent 45%), var(--panel); }
.contact-card .button { margin-top: 8px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.site-footer {
  position: relative; padding: 42px 0; border-top: 1px solid rgba(255, 255, 255, .08);
  color: var(--muted); font-size: .88rem;
  background: oklch(10% 0.014 262 / .88);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.site-footer::before { content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: .5; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr; align-items: end; gap: 32px; }
.footer-grid p { margin: 10px 0 0; max-width: 580px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 18px; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--text); }
.fine-print { color: #8e97a4; font-size: .86rem; }

@keyframes rise { to { opacity: 1; transform: translateY(0); } }
@keyframes spin { to { --angle: 360deg; } }
@keyframes sheen { to { background-position: -220% center; } }
@keyframes bob { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@keyframes pulse-dot { 0% { box-shadow: 0 0 0 0 oklch(78% 0.14 85 / .55); } 70% { box-shadow: 0 0 0 8px oklch(78% 0.14 85 / 0); } 100% { box-shadow: 0 0 0 0 oklch(78% 0.14 85 / 0); } }
@keyframes ember-rise { 0% { transform: translateY(0) translateX(0); opacity: 0; } 8% { opacity: .9; } 85% { opacity: .35; } 100% { transform: translateY(-340px) translateX(14px); opacity: 0; } }

@media (max-width: 980px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .pillar-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 2px;
    max-height: 0; overflow: hidden; opacity: 0; padding: 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .08); background: oklch(10% 0.014 262 / .97); backdrop-filter: blur(18px);
    transition: max-height .35s ease, opacity .3s ease, padding .35s ease;
  }
  .site-nav.is-open { max-height: 70vh; opacity: 1; padding: 14px 20px 20px; }
  .site-nav a { width: 100%; padding: .8rem .7rem; }
  .nav-shell { align-items: center; padding-block: 12px; }
  .grid-3 { grid-template-columns: 1fr; }
  .policy-layout { grid-template-columns: 1fr; gap: 26px; }
  .policy-nav { position: static; display: none; }
  .hero { min-height: auto; padding-top: 120px; }
}

@media (max-width: 640px) {
  body { background-attachment: scroll; }
  .nav-shell, .shell, .shell-wide { width: min(100% - 28px, 1120px); }
  .grid-2 { grid-template-columns: 1fr; }
  .pillar-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .status-strip { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .data-table, .data-table tbody, .data-table tr, .data-table th, .data-table td { display: block; }
  .data-table tr { margin-bottom: 14px; }
  .data-table th { border-bottom: 0; }
  .scroll-cue { display: none; }
}

@media (hover: none) { .card:hover, .gallery-frame:hover { transform: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .hero-content > *, .page-hero .shell > * { opacity: 1; transform: none; }
}

/* alpha section (no form: the pre-registration flow was removed) */
.auth-section { padding: 8px 0 90px; }
.auth-section .status-strip { margin-bottom: clamp(20px, 3.5vh, 34px); }
.auth-card {
  width: 100%; margin: 0; padding: clamp(24px, 3.4vw, 36px);
  background: linear-gradient(160deg, oklch(78% 0.14 85 / .07), transparent 45%), oklch(12% 0.015 262 / .82);
  border-color: rgba(217, 169, 78, .26);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}
@media (max-width: 940px) { .prereg-duo { grid-template-columns: 1fr; gap: 26px; } }
.auth-card h2 { margin-bottom: 6px; }
.auth-intro { margin: 0 0 24px; color: var(--muted); font-size: .92rem; }
.form-field { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field label { display: block; margin: 0 0 6px; font-size: .82rem; font-weight: 700; letter-spacing: .02em; color: var(--text); }
.form-field input,
.form-field select {
  width: 100%; padding: .7rem .8rem; border-radius: 4px; font: inherit; color: var(--text);
  background: oklch(10% 0.014 262 / .6); border: 1px solid rgba(255, 255, 255, .14);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field select option { background: #14161c; color: var(--text); }
.form-field input:focus,
.form-field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px oklch(78% 0.14 85 / .18); }
.form-hint { margin: 4px 0 0; font-size: .74rem; color: var(--muted); }
.form-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.auth-card .button { width: 100%; margin-top: 8px; }
.form-msg { margin-top: 18px; padding: 12px 14px; border-radius: 4px; font-size: .9rem; display: none; }
.form-msg.show { display: block; }
.form-msg.ok { background: oklch(72% 0.14 150 / .14); border: 1px solid oklch(72% 0.14 150 / .4); color: oklch(90% 0.08 150); }
.form-msg.info { background: oklch(78% 0.14 85 / .1); border: 1px solid oklch(78% 0.14 85 / .35); color: var(--gold-bright); }
.form-msg.bad { background: oklch(70% 0.16 27 / .14); border: 1px solid oklch(70% 0.16 27 / .4); color: oklch(85% 0.12 35); }
.auth-foot { margin-top: 22px; text-align: center; font-size: .82rem; color: var(--muted); }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

/* roadmap timeline */
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.timeline::before {
  content: ""; position: absolute; left: 3%; right: 3%; top: 44px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 12%, var(--line) 88%, transparent);
}
.tl-step {
  position: relative; padding: 24px 20px;
  background: oklch(12% 0.015 262 / .7);
  border: 1px solid rgba(255, 255, 255, .12); border-top: 2px solid rgba(217, 169, 78, .35);
  border-radius: 10px;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.tl-step.reveal {
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1),
    border-color .3s ease, box-shadow .3s ease;
}
.tl-step:hover { border-color: rgba(217, 169, 78, .5); box-shadow: 0 18px 40px rgba(0, 0, 0, .4); }
.tl-step.is-active {
  border-color: rgba(217, 169, 78, .5); border-top-color: var(--gold);
  background: linear-gradient(170deg, oklch(78% 0.14 85 / .1), transparent 45%), oklch(12% 0.015 262 / .76);
  box-shadow: 0 0 0 1px oklch(78% 0.14 85 / .22), 0 20px 48px rgba(0, 0, 0, .45);
}
.tl-step.is-active::after {
  content: "Current"; position: absolute; top: 16px; right: 16px;
  padding: .18rem .55rem; border: 1px solid oklch(78% 0.14 85 / .4); border-radius: 99px;
  color: var(--gold-bright); font-size: .62rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
}
.tl-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; margin-bottom: 12px;
  font-family: var(--font-display); font-weight: 700; color: var(--gold-bright);
  background: oklch(78% 0.14 85 / .1); border: 1px solid var(--line); border-radius: 50%;
}
.tl-step.is-active .tl-num { color: #14100a; background: var(--gold); box-shadow: 0 0 18px oklch(78% 0.14 85 / .5); }
.tl-step h3 { margin: 0 0 4px; font-family: var(--font-display); letter-spacing: .04em; text-transform: uppercase; font-size: 1rem; }
.tl-date { margin: 0 0 10px; font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-bright); }
.tl-step ul { margin: 0; padding-left: 18px; color: var(--muted); font-size: .88rem; }
.tl-step ul li::marker { color: var(--gold); }
.tl-step ul li + li { margin-top: 4px; }
@media (max-width: 860px) { .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); } .timeline::before { display: none; } }
@media (max-width: 480px) { .timeline { grid-template-columns: 1fr; } }

/* meet the team */
/* flex rather than grid so an incomplete last row centres itself instead of
   hugging the left edge (5 people = 3 + 2) */
.team-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 18px;
}
.team-card { flex: 0 1 calc((100% - 18px) / 2); }
/* zero-height full-width spacers force the 1 / 2 / 2 pyramid while every card
   keeps the same width */
.team-row-break { flex-basis: 100%; height: 0; margin: 0; }
.team-card {
  /* portrait beside the text, not stacked above it: keeps five people to a
     short page instead of three tall rows */
  display: grid; grid-template-columns: auto minmax(0, 1fr);
  column-gap: 18px; align-items: center;
  position: relative; padding: 20px 22px; text-align: left;
  background: linear-gradient(160deg, oklch(78% 0.14 85 / .06), transparent 45%), oklch(14% 0.016 262 / .92);
  border: 1px solid rgba(255, 255, 255, .1); border-top: 2px solid rgba(217, 169, 78, .35);
  border-radius: 10px; box-shadow: 0 18px 44px rgba(0, 0, 0, .34);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.team-card.reveal {
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1),
    border-color .25s ease, box-shadow .25s ease;
}
.team-card:hover {
  transform: translateY(-4px); border-color: rgba(217, 169, 78, .5);
  box-shadow: 0 24px 54px rgba(0, 0, 0, .45);
}
/* avatar: gold-ringed monogram now, drop an <img> inside to use a real photo */
.team-avatar {
  grid-row: 1 / span 3; align-self: center;
  position: relative; width: 84px; height: 84px; margin: 0;
  display: grid; place-items: center; overflow: hidden; border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, oklch(26% 0.03 262), oklch(16% 0.02 262));
  border: 1px solid var(--line);
  box-shadow: 0 0 0 4px oklch(78% 0.14 85 / .1), inset 0 2px 14px rgba(0, 0, 0, .5);
}
.team-avatar span {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  letter-spacing: .06em; color: var(--gold-bright); opacity: .92;
}
.team-avatar img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block; /* covers the monogram when present */
}
.team-card:hover .team-avatar { box-shadow: 0 0 0 5px oklch(78% 0.14 85 / .18), inset 0 2px 14px rgba(0, 0, 0, .5); }
/* the founder's card leads the page on purpose: brighter gold edge and a
   larger portrait, so the hierarchy reads as intent rather than accident */
.team-card.is-lead {
  border-top-color: var(--gold);
  background: linear-gradient(160deg, oklch(78% 0.14 85 / .11), transparent 46%), oklch(14% 0.016 262 / .94);
  box-shadow: 0 0 0 1px oklch(78% 0.14 85 / .22), 0 22px 52px rgba(0, 0, 0, .44);
}
.team-card.is-lead .team-avatar {
  width: 98px; height: 98px;
  border-color: oklch(78% 0.14 85 / .5);
  box-shadow: 0 0 0 5px oklch(78% 0.14 85 / .16), inset 0 2px 14px rgba(0, 0, 0, .5);
}
.team-card.is-lead h2 { font-size: 1.2rem; }
@media (max-width: 560px) { .team-card.is-lead .team-avatar { width: 76px; height: 76px; } }
.team-card h2 {
  margin: 0 0 3px; font-family: var(--font-display); font-size: 1.08rem;
  letter-spacing: .03em; line-height: 1.25;
}
.team-role {
  margin: 0 0 7px; color: var(--gold-bright);
  font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
}
.team-card p:last-child { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.5; }
@media (max-width: 860px) { .team-card { flex-basis: 100%; } }
@media (max-width: 560px) {
  /* stay side-by-side on phones - stacking made the page twice as long */
  .team-card { column-gap: 14px; padding: 16px 16px; }
  .team-avatar { width: 66px; height: 66px; }
  .team-avatar span { font-size: 1.2rem; }
  .team-role { font-size: .62rem; letter-spacing: .06em; }
}
@media (max-width: 340px) {
  .team-card { grid-template-columns: 1fr; row-gap: 12px; text-align: center; }
  .team-avatar { grid-row: auto; margin: 0 auto; }
}

/* community / social links */
.social-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.social-card {
  position: relative; display: block; padding: 22px 20px 22px 24px; text-decoration: none;
  overflow: hidden;
  background: oklch(12% 0.015 262 / .7);
  border: 1px solid rgba(255, 255, 255, .12); border-radius: 10px;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.social-card.reveal {
  transition: opacity .7s ease, transform .7s ease,
    border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.social-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--ember));
  opacity: 0; transition: opacity .25s ease;
}
.social-card::after {
  content: "\2192"; position: absolute; right: 18px; top: 18px;
  color: var(--gold-bright); font-weight: 800;
  opacity: 0; transform: translateX(-8px); transition: opacity .25s ease, transform .25s ease;
}
.social-card:hover {
  border-color: rgba(217, 169, 78, .5);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .4);
  background: linear-gradient(160deg, oklch(78% 0.14 85 / .08), transparent 50%), oklch(12% 0.015 262 / .74);
}
.social-card:hover::before { opacity: 1; }
.social-card:hover::after { opacity: 1; transform: none; }
.social-card strong { display: block; color: var(--text); font-family: var(--font-display); letter-spacing: .04em; margin-bottom: 4px; }
.social-card span { color: var(--muted); font-size: .88rem; }
.footer-socials { display: flex; gap: 14px; margin-top: 10px; flex-wrap: wrap; }
@media (max-width: 720px) { .social-row { grid-template-columns: 1fr; } }

/* pre-registration counter */
.prereg-count { margin-top: 14px; font-size: .9rem; color: var(--muted); }
.prereg-count strong { color: var(--gold-bright); }

/* cinematic intro overlay */
body.intro-lock { overflow: hidden; }
.intro {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink-2);
  animation: intro-bg 1s ease both;
  transition: opacity .6s ease;
}
.intro.is-leaving { animation: none; opacity: 0; pointer-events: none; }
.intro[hidden] { display: none; }
.intro-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #000; }
.intro-mute {
  position: absolute; top: 18px; right: 132px; z-index: 1;
  padding: .55rem 1rem; font: inherit; font-size: .8rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; cursor: pointer;
  color: var(--text); background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .22); border-radius: 4px;
}
.intro-mute:hover { border-color: var(--gold); color: var(--gold-bright); }
.intro-once { z-index: 1; }
.intro-skip { z-index: 2; }
.intro-inner { text-align: center; padding: 0 20px; }
.intro-crest img {
  display: block; margin: 0 auto 18px; border-radius: 50%;
  animation: intro-crest 1.4s cubic-bezier(.2, .8, .3, 1) both;
  box-shadow: 0 0 60px oklch(78% 0.14 85 / .35);
}
.intro-eyebrow {
  margin: 0 0 8px; font-size: .8rem; font-weight: 700; letter-spacing: .34em;
  text-transform: uppercase; color: var(--muted);
  animation: intro-rise 1s .5s ease both;
}
.intro-title {
  margin: 0; font-family: var(--font-display); font-weight: 900;
  font-size: clamp(3.4rem, 10vw, 6.5rem); line-height: 1; color: var(--text);
  animation: intro-rise 1s .7s ease both;
}
.intro-sub {
  margin: 10px 0 0; font-family: var(--font-display); letter-spacing: .3em;
  text-transform: uppercase; font-size: clamp(.9rem, 2.4vw, 1.3rem); color: var(--gold-bright);
  animation: intro-rise 1s .95s ease both;
}
.intro-line {
  display: block; height: 2px; width: 0; margin: 22px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: intro-line 1.2s 1.2s ease both;
}
.intro-skip {
  position: absolute; top: 18px; right: 18px; z-index: 1;
  padding: .55rem 1rem; font: inherit; font-size: .8rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; cursor: pointer;
  color: var(--text); background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .22); border-radius: 4px;
}
.intro-skip:hover { border-color: var(--gold); color: var(--gold-bright); }
.intro-once {
  position: absolute; bottom: 20px; left: 0; right: 0;
  text-align: center; font-size: .8rem; color: var(--muted);
  display: flex; gap: 8px; align-items: center; justify-content: center;
}
@keyframes intro-bg { from { opacity: 0; } to { opacity: 1; } }
@keyframes intro-crest { from { opacity: 0; transform: scale(.6); } to { opacity: 1; transform: scale(1); } }
@keyframes intro-rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes intro-line { from { width: 0; } to { width: min(360px, 70vw); } }

/* full-viewport animated hero */
.hero-full {
  position: relative; overflow: hidden;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-media {
  position: absolute; inset: -4%; z-index: -1;
  background:
    linear-gradient(180deg, oklch(9% 0.012 262 / .5), oklch(9% 0.012 262 / .72) 55%, var(--ink) 96%),
    url("hero-bg.webp") center 28% / cover no-repeat;
  animation: kenburns 26s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.1) translate(-1.2%, -1.6%); }
}
/* the classic login world: one FIXED 3D backdrop behind every section.
   Fades in over the body image; the login character only shows in the hero. */
.world-3d {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  opacity: 0; transition: opacity 1.4s ease;
}
.world-3d.is-on { opacity: 1; }
.world-3d canvas { width: 100%; height: 100%; display: block; }
.world-3d::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  /* light vignette only: the client's login scene is bright — keep it so,
     just steady the very top (nav) and bottom (section seams) */
  background: linear-gradient(180deg,
    oklch(9% 0.012 262 / .35), transparent 22%,
    transparent 62%, oklch(9% 0.012 262 / .5) 100%);
}
/* once the live world is up, the hero image + its heavy scrim go away */
body.world-3d-on .hero-media {
  background: none;
  animation: none;
}
/* 1-by-1 focus: the roster heading yields the stage to the character */
#roster .section-head {
  transition: opacity .45s ease, transform .45s ease;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .85), 0 1px 4px rgba(0, 0, 0, .7);
}
.stage-hint { text-shadow: 0 1px 8px rgba(0, 0, 0, .9); }
#roster.roster-focus .section-head {
  /* !important outranks the reveal animation's forwards fill */
  opacity: 0 !important; transform: translateY(-14px) !important;
  visibility: hidden; pointer-events: none;
  transition: opacity .45s ease, transform .45s ease, visibility 0s .45s;
}
.scroll-cue {
  position: absolute; bottom: 76px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
}
.scroll-cue:hover { color: var(--gold-bright); }
.scroll-cue span {
  width: 1px; height: 34px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: cue-drop 1.8s ease-in-out infinite;
}
@keyframes cue-drop {
  0% { transform: scaleY(0); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@media (max-width: 640px) { .scroll-cue { display: none; } }

/* class roster carousel */
.roster-carousel { position: relative; display: flex; align-items: stretch; gap: 10px; }
.car-track {
  flex: 1; display: flex; overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory; scrollbar-width: none; border-radius: var(--radius);
}
.car-track::-webkit-scrollbar { display: none; }
.car-slide {
  flex: 0 0 100%; min-width: 100%; scroll-snap-align: center;
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 0;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid rgba(255, 255, 255, 0.09); border-radius: var(--radius);
  overflow: hidden;
}
.car-art { position: relative; min-height: 380px; overflow: hidden; }
.car-art img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 22% 20%;
  transform: scale(1.02);
  transition: transform .6s ease;
}
.car-slide:hover .car-art img { transform: scale(1.08); }
.car-art::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 55%, oklch(20% 0.02 262 / .96)),
              linear-gradient(0deg, oklch(20% 0.02 262 / .55), transparent 40%);
}
.car-info { padding: 34px 32px; display: flex; flex-direction: column; justify-content: center; }
.car-info h3 {
  margin: 0 0 10px; font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem); letter-spacing: .05em; text-transform: uppercase;
}
.car-info q { display: block; margin: 0 0 14px; font-style: italic; color: var(--gold-bright); font-size: 1.02rem; }
.car-info > p:not(.roster-role) { margin: 0 0 18px; color: var(--muted); }
.car-traits { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.car-traits li {
  padding: .35rem .8rem; font-size: .74rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold-bright);
  border: 1px solid var(--line); border-radius: 999px; background: oklch(13% 0.014 262 / .5);
}
.car-arrow {
  align-self: center; flex: 0 0 auto; width: 46px; height: 46px;
  display: grid; place-items: center; cursor: pointer;
  font-size: 1.1rem; color: var(--text);
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%; transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.car-arrow:hover { border-color: var(--gold); color: var(--gold-bright); background: rgba(255, 255, 255, .09); }
.car-dots { display: flex; justify-content: center; gap: 12px; margin-top: 20px; }
.car-dots button {
  width: 34px; height: 5px; padding: 0; cursor: pointer; border: 0; border-radius: 999px;
  background: rgba(255, 255, 255, .18); transition: background .25s ease;
}
.car-dots button.is-active { background: var(--gold); }
@media (max-width: 860px) {
  .car-slide { grid-template-columns: 1fr; }
  .car-art { min-height: 220px; }
  .car-art::after {
    background: linear-gradient(0deg, oklch(20% 0.02 262 / .96) 8%, transparent 60%);
  }
  .car-info { padding: 22px 20px 26px; }
  .car-arrow { display: none; }
}

.roster-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.roster-card {
  overflow: hidden; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.roster-card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow); }
.roster-art { position: relative; aspect-ratio: 400 / 160; overflow: hidden; }
.roster-art img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.roster-card:hover .roster-art img { transform: scale(1.08); }
.roster-art::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, oklch(20% 0.02 262 / .95));
}
.roster-body { padding: 16px 16px 20px; }
.roster-role {
  margin: 0 0 4px; font-size: .72rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold-bright);
}
.roster-body h3 {
  margin: 0 0 8px; font-family: var(--font-display); font-size: 1.35rem;
  letter-spacing: .04em; text-transform: uppercase;
}
.roster-body q {
  display: block; margin: 0 0 10px; font-style: italic; color: var(--gold-bright);
  font-size: .92rem;
}
.roster-body p:last-child { margin: 0; color: var(--muted); font-size: .9rem; }
@media (max-width: 980px) { .roster-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .roster-grid { grid-template-columns: 1fr; } }

/* 2D roster carousel (fallback + pre-3D) */
.roster-carousel { position: relative; display: flex; align-items: stretch; gap: 10px; }
.car-track {
  flex: 1; display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; border-radius: var(--radius);
}
.car-track::-webkit-scrollbar { display: none; }
.car-slide {
  flex: 0 0 100%; scroll-snap-align: center;
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 26px; align-items: center;
  padding: 18px;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid rgba(255, 255, 255, 0.09); border-radius: var(--radius);
}
.car-art { position: relative; overflow: hidden; border-radius: var(--radius); }
.car-art img { width: 100%; display: block; }
.car-info h3 { margin: 0 0 8px; font-family: var(--font-display); font-size: 1.7rem; letter-spacing: .04em; text-transform: uppercase; }
.car-info q { display: block; margin: 0 0 12px; font-style: italic; color: var(--gold-bright); }
.car-info p:last-of-type { color: var(--muted); }
.car-traits { margin: 14px 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.car-traits li {
  padding: .3rem .7rem; font-size: .74rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold-bright);
  border: 1px solid var(--line); border-radius: 999px;
}
.car-arrow {
  align-self: center; width: 44px; height: 44px; cursor: pointer;
  font: inherit; font-size: 1.1rem; color: var(--text);
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
}
.car-arrow:hover { border-color: var(--gold); color: var(--gold-bright); }
.car-dots { display: flex; justify-content: center; gap: 12px; margin-top: 18px; }
.car-dots button {
  width: 10px; height: 10px; padding: 0; cursor: pointer; border-radius: 50%;
  background: rgba(255, 255, 255, .18); border: 1px solid rgba(255, 255, 255, .38);
}
.car-dots button.is-active { background: var(--gold); box-shadow: 0 0 0 4px oklch(78% 0.14 85 / .22); }
@media (max-width: 760px) {
  .car-slide { grid-template-columns: 1fr; }
  .car-arrow { display: none; }
}

/* full-page 3D class stage (progressive upgrade over the carousel) */
.stage-on .roster-carousel, .stage-on .car-dots { display: none; }
.stage-root { position: static; }
.stage-canvas {
  position: absolute; inset: 0; z-index: 0;
  cursor: grab; touch-action: pan-y;
}
.stage-canvas:active { cursor: grabbing; }
.stage-canvas canvas { width: 100%; height: 100%; display: block; }
#roster.stage-on { position: relative; overflow: hidden; justify-content: flex-start; }
#roster.stage-on .shell { position: static; }
#roster.stage-on .section-head { position: relative; z-index: 2; pointer-events: none; }
.stage-info {
  position: absolute; z-index: 2; right: max(4vw, 24px); top: 50%;
  transform: translateY(-40%); width: min(420px, 44vw);
  opacity: 0; transition: opacity .5s ease, transform .5s ease;
  pointer-events: none;
  /* glass panel: readable over the bright login-world backdrop */
  padding: 22px 24px;
  background: oklch(11% 0.014 262 / .78);
  border: 1px solid rgba(217, 169, 78, .28);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .35);
}
.stage-info.stage-info-in { opacity: 1; transform: translateY(-50%); }
.stage-info h3 { margin: 0 0 8px; font-family: var(--font-display); font-size: clamp(1.8rem, 3.4vw, 2.6rem); letter-spacing: .05em; text-transform: uppercase; }
.stage-info q { display: block; margin: 0 0 12px; font-style: italic; color: var(--gold-bright); }
.stage-info p:last-of-type { color: var(--muted); }
.stage-tabs {
  /* anchored to both edges (never left:50% shrink-to-fit - that lays the row
     out in half the viewport and stacks the buttons on phones) */
  position: absolute; z-index: 2; left: 12px; right: 12px;
  bottom: max(26px, 4svh); display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
}
.stage-tabs button {
  padding: .6rem 1.2rem; cursor: pointer; font: inherit; font-size: .8rem;
  font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text); background: oklch(13% 0.014 262 / .72);
  border: 1px solid rgba(255, 255, 255, .2); border-radius: 4px;
  backdrop-filter: blur(8px);
}
.stage-tabs button:hover { border-color: var(--gold); color: var(--gold-bright); }
.stage-tabs button.is-active { border-color: var(--gold); color: #14100a; background: var(--gold); }
.stage-skill {
  position: absolute; z-index: 2; left: 50%; transform: translateX(-50%);
  bottom: max(84px, calc(4svh + 58px));
  padding: .65rem 1.4rem; cursor: pointer; font: inherit; font-size: .82rem;
  font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-bright); background: oklch(13% 0.014 262 / .78);
  border: 1px solid var(--gold); border-radius: 4px; backdrop-filter: blur(8px);
}
.stage-skill:hover, .stage-skill.is-open { background: var(--gold); color: #14100a; }
.stage-skills {
  position: absolute; z-index: 2; left: max(4vw, 24px); top: 50%;
  transform: translateY(-50%); width: min(316px, 40vw);
  max-height: min(470px, 62svh); padding: 12px;
  display: flex; flex-direction: column; gap: 10px;
  background: oklch(13% 0.014 262 / .82); border: 1px solid var(--line);
  border-radius: var(--radius); backdrop-filter: blur(10px);
}
.stage-skills-tabs { display: flex; gap: 6px; }
.stage-skills-tabs button {
  flex: 1; padding: .45rem 0; cursor: pointer; font: inherit; font-size: .74rem;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .14); border-radius: 4px;
}
.stage-skills-tabs button:hover { color: var(--gold-bright); border-color: var(--gold); }
.stage-skills-tabs button.is-active {
  color: #14100a; background: var(--gold); border-color: var(--gold);
}
.stage-skills-grid {
  overflow-y: auto; scrollbar-width: thin;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px;
}
.stage-skills-grid button {
  aspect-ratio: 1; padding: 0; cursor: pointer; overflow: hidden;
  font: inherit; font-size: .9rem; font-weight: 700; color: var(--gold-bright);
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 4px;
}
.stage-skills-grid button:hover { border-color: var(--gold); transform: scale(1.06); }
.stage-skills-grid img { width: 100%; height: 100%; object-fit: cover; display: block; }
.stage-castname {
  position: absolute; z-index: 2; left: 50%; top: 16%; transform: translateX(-50%);
  margin: 0; font-family: var(--font-display); font-size: clamp(1.1rem, 2.6vw, 1.8rem);
  letter-spacing: .12em; text-transform: uppercase; color: var(--gold-bright);
  text-shadow: 0 2px 18px oklch(78% 0.14 85 / .55);
  opacity: 0; transition: opacity .25s ease; pointer-events: none;
}
.stage-castname.is-on { opacity: 1; }
@media (max-width: 760px) {
  .stage-skills { left: 4vw; right: 4vw; width: auto; top: auto; bottom: 150px;
    transform: none; max-height: 36svh; }
  .stage-skills-grid { grid-template-columns: repeat(8, 1fr); }
}
/* roster preloader: visible progress instead of a silently missing class */
.stage-preload {
  position: absolute; z-index: 3; left: 50%; transform: translateX(-50%);
  bottom: max(84px, calc(4svh + 58px)); width: min(280px, 74vw);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 14px 18px; pointer-events: none;
  background: oklch(11% 0.014 262 / .74);
  border: 1px solid rgba(217, 169, 78, .22); border-radius: 10px;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: opacity .5s ease;
}
.stage-loaded .stage-preload { opacity: 0; }
.stage-preload-label {
  margin: 0; font-size: .7rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold-bright);
}
.stage-preload-bar {
  width: 100%; height: 3px; border-radius: 999px; overflow: hidden;
  background: rgba(255, 255, 255, .12);
}
.stage-preload-bar > div {
  height: 100%; width: 0%; border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--ember));
  transition: width .35s ease;
}
.stage-preload-count {
  margin: 0; font-size: .66rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted);
}

.stage-hint {
  position: absolute; z-index: 2; left: 16px; right: 16px; text-align: center;
  bottom: max(132px, calc(4svh + 104px)); margin: 0;
  font-size: .7rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted); opacity: 0; transition: opacity .6s ease;
}
.stage-ready .stage-hint { opacity: .8; }
@media (max-width: 560px) {
  .stage-tabs { gap: 6px; }
  .stage-tabs button { padding: .5rem .65rem; font-size: .68rem; letter-spacing: .08em; }
  .stage-hint { font-size: .6rem; letter-spacing: .18em; bottom: max(120px, calc(4svh + 92px)); }
  .stage-info { bottom: 150px; }
  .fp .section-head { padding: 14px 16px 12px; }
}
@media (max-width: 760px) {
  .stage-info { right: 5vw; left: 5vw; width: auto; top: auto; bottom: 130px; transform: none; }
  .stage-info.stage-info-in { transform: none; }
  .stage-info p:last-of-type, .stage-info .car-traits { display: none; }
}

/* campus tour */
.tour-enter, .cta-strip {
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
  width: fit-content; padding: 16px 18px;
  background: oklch(11% 0.014 262 / .66);
  border: 1px solid rgba(217, 169, 78, .18); border-radius: 10px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.tour-hint { flex-basis: 100%; margin: 2px 0 0; }
.tour-hint { width: 100%; margin-top: 4px; }
#tour.tour-on { position: relative; overflow: hidden; }
#tour.tour-on .shell { position: static; }
#tour.tour-on .section-head { display: none !important; }
#tour.tour-on .tour-enter { position: relative; z-index: 2; }
#tour.tour-on .tour-enter.tour-entered { display: none; }
.tour-stage { position: absolute; inset: 0; z-index: 0; cursor: grab; }
.tour-stage:active { cursor: grabbing; }
.tour-stage canvas { width: 100%; height: 100%; display: block; }
.tour-hud {
  position: absolute; z-index: 2; left: 0; right: 0; bottom: max(24px, 4svh);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  pointer-events: none;
}
.tour-title {
  position: absolute; z-index: 2; left: 16px; right: 16px;
  top: max(96px, 10svh); pointer-events: none;
  margin: 0; font-family: var(--font-display); letter-spacing: .1em;
  text-transform: uppercase; color: var(--text); text-align: center;
  font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 700; line-height: 1.1;
  text-shadow: 0 2px 22px rgba(0, 0, 0, .85), 0 1px 4px rgba(0, 0, 0, .7);
}
.tour-title::after {
  content: ""; display: block; width: 130px; height: 2px; margin: 10px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.tour-tabs { display: flex; gap: 10px; pointer-events: auto; flex-wrap: wrap; justify-content: center; }
.tour-tabs button {
  padding: .55rem 1.1rem; cursor: pointer; font: inherit; font-size: .78rem;
  font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text); background: oklch(13% 0.014 262 / .72);
  border: 1px solid rgba(255, 255, 255, .2); border-radius: 4px;
  backdrop-filter: blur(8px);
}
.tour-tabs button:hover { border-color: var(--gold); color: var(--gold-bright); }
.tour-tabs button.is-active { border-color: var(--gold); color: #14100a; background: var(--gold); }
.tour-status { margin: 0; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.tour-mode {
  pointer-events: auto; cursor: pointer; font: inherit; font-size: .74rem;
  font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  padding: .5rem 1.1rem; color: #14100a; background: var(--gold);
  border: 1px solid var(--gold); border-radius: 4px;
}
.tour-mode:hover { filter: brightness(1.08); }
.tour-joy {
  position: absolute; z-index: 3; left: 26px; bottom: 26px;
  width: 108px; height: 108px; border-radius: 50%;
  background: oklch(13% 0.014 262 / .45); border: 1px solid rgba(255, 255, 255, .25);
  display: none; align-items: center; justify-content: center;
  touch-action: none; backdrop-filter: blur(6px);
}
.tour-joy > div {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); opacity: .85; pointer-events: none;
  transition: transform .05s linear;
}
#tour.tour-free .tour-joy { display: flex; }
@media (min-width: 1024px) { #tour.tour-free .tour-joy { opacity: .55; } }

/* campus loading transition */
.tour-loading {
  position: absolute; inset: 0; z-index: 4;
  display: none; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; text-align: center; padding: 0 8vw;
  background: oklch(11% 0.014 262 / .96);
  opacity: 1; transition: opacity .6s ease;
}
.tour-loading.is-on { display: flex; }
.tour-loading.is-out { opacity: 0; pointer-events: none; }
.tl-eyebrow {
  margin: 0; font-size: .74rem; font-weight: 700; letter-spacing: .34em;
  text-transform: uppercase; color: var(--muted);
}
.tour-loading h3 {
  margin: 0; font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.6rem);
  letter-spacing: .06em; text-transform: uppercase; color: var(--gold-bright);
}
.tl-bar {
  width: min(420px, 70vw); height: 6px; border-radius: 999px; overflow: hidden;
  background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .16);
}
.tl-bar > div {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transition: width .25s ease;
}
.tl-pct { margin: 0; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }

/* full-page sections + gentle snap */
html { scroll-snap-type: y proximity; }
.fp {
  box-sizing: border-box;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  scroll-snap-align: start;
  padding-top: 96px; padding-bottom: 56px;
}
.hero-full { scroll-snap-align: start; }
/* glass plaque behind every full-page section heading - readable over the
   bright login-world backdrop, styled like an academy notice board */
.fp .section-head {
  margin-bottom: 28px;
  position: relative; width: fit-content; max-width: min(760px, 100%);
  padding: 18px 26px 16px;
  background: linear-gradient(135deg, oklch(78% 0.14 85 / .08), transparent 40%), oklch(11% 0.014 262 / .72);
  border: 1px solid rgba(217, 169, 78, .2); border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .32);
}
.fp .section-head .eyebrow { margin: 0 0 4px; }
.fp .section-head h2 { margin: 0 0 8px; }
.fp .section-head > p:last-child { margin-bottom: 0; }
.gallery-frame-wide img { max-height: 62svh; width: 100%; object-fit: cover; }
@media (max-width: 860px) { .fp { padding-top: 84px; } }
@media (max-height: 700px) { html { scroll-snap-type: none; } }

/* right-edge section dots */
.page-dots {
  position: fixed; right: 22px; top: 50%; transform: translateY(-50%);
  z-index: 40; display: flex; flex-direction: column; gap: 16px;
}
.page-dots a {
  position: relative; width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255, 255, 255, .18); border: 1px solid rgba(255, 255, 255, .38);
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}
.page-dots a:hover { background: var(--gold-bright); transform: scale(1.2); }
.page-dots a.is-active {
  background: var(--gold);
  box-shadow: 0 0 0 4px oklch(78% 0.14 85 / .22);
}
.page-dots a span {
  position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
  padding: .3rem .65rem; white-space: nowrap;
  font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text); background: oklch(13% 0.014 262 / .92);
  border: 1px solid var(--line); border-radius: 4px;
  opacity: 0; pointer-events: none; transition: opacity .2s ease;
}
.page-dots a:hover span, .page-dots a:focus-visible span { opacity: 1; }
@media (max-width: 1100px) { .page-dots { display: none; } }

@media (prefers-reduced-motion: reduce) {
  .hero-media, .scroll-cue span, .intro-crest img, .intro-eyebrow,
  .intro-title, .intro-sub, .intro-line { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-snap-type: none; }
}
