/* ==========================================================================
   Alexandr.ia — landing
   Palette: deep teal night + ember gold, painted-epic imagery
   ========================================================================== */

@font-face {
  font-family: "Cinzel";
  src: url("assets/Cinzel/Cinzel-VariableFont_wght.ttf") format("truetype");
  font-weight: 400 900;
  font-display: swap;
}

:root {
  --bg: #020f11;
  --bg-2: #041a1d;
  --bg-3: #072528;
  --teal: #14b8a6;
  --teal-bright: #2dd4bf;
  --teal-dim: #0f766e;
  --ember: #ff9a3d;
  --gold: #e7c277;
  --ink: #eaf6f4;
  --ink-dim: #9fc1bd;
  --ink-faint: #5e837f;
  --serif: "Bebas Neue", "Playfair Display", Georgia, serif;
  --sans: "Outfit", -apple-system, sans-serif;
  --logo: "Cinzel", "Bebas Neue", Georgia, serif;
  --radius: 18px;
  --nav-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body[data-loading] { overflow: hidden; }

::selection { background: var(--teal); color: var(--bg); }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ==========================================================================
   Preloader
   ========================================================================== */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
}
.preloader__inner { text-align: center; position: relative; z-index: 2; }
.preloader__word {
  font-family: var(--logo);
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  display: flex;
}
.preloader__word span {
  display: inline-block;
  transform: translateY(120%);
  opacity: 0;
}
.preloader__dot { color: var(--teal-bright); }
.preloader__count {
  margin-top: 1.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
}
.preloader__veil {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(20, 184, 166, 0.18), transparent 60%);
}

/* ==========================================================================
   Custom cursor
   ========================================================================== */
.cursor { position: fixed; top: 0; left: 0; z-index: 999; pointer-events: none; }
.cursor__dot {
  position: absolute; top: -3px; left: -3px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal-bright);
}
.cursor__ring {
  position: absolute; top: -18px; left: -18px;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(45, 212, 191, 0.55);
  transition: transform 0.25s ease, opacity 0.25s ease, border-color 0.25s ease;
}
.cursor__label {
  position: absolute; top: -10px; left: -50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bg); font-weight: 600;
  transition: transform 0.25s ease;
  white-space: nowrap;
}
.cursor.is-link .cursor__ring { transform: scale(1.6); border-color: var(--teal-bright); }
.cursor.is-drag .cursor__ring {
  transform: scale(2.4);
  background: var(--teal-bright);
  border-color: var(--teal-bright);
}
.cursor.is-drag .cursor__label { transform: translate(-50%, -50%) scale(1); }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ==========================================================================
   Buttons / forms
   ========================================================================== */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2rem;
  border-radius: 999px;
  background: var(--teal);
  color: #032422;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  overflow: hidden;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  border: 0;
}
.btn::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.35), transparent 45%);
  opacity: 0; transition: opacity 0.3s ease;
}
.btn:hover { background: var(--teal-bright); box-shadow: 0 8px 40px rgba(45, 212, 191, 0.35); }
.btn:hover::after { opacity: 1; }
.btn__text { position: relative; z-index: 1; }
.btn--small { padding: 0.65rem 1.4rem; font-size: 0.85rem; }
.btn--gold {
  background: linear-gradient(120deg, var(--gold), #f5dca4 50%, var(--gold));
  color: #2a1c05;
}
.btn--gold:hover { box-shadow: 0 8px 44px rgba(231, 194, 119, 0.4); background: #f1d391; }

.waitlist { display: grid; grid-template-columns: 1fr auto; gap: 0.7rem; max-width: 480px; }
.waitlist__input {
  padding: 1rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(159, 193, 189, 0.25);
  background: rgba(2, 15, 17, 0.6);
  color: var(--ink);
  font: inherit;
  outline: none;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.waitlist__input:focus {
  border-color: var(--teal-bright);
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.12);
}
.waitlist__input::placeholder { color: var(--ink-faint); }
.waitlist__note {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
}
.waitlist.is-done .waitlist__input,
.waitlist.is-done .waitlist__btn { pointer-events: none; }
@media (max-width: 560px) {
  .waitlist { grid-template-columns: 1fr; }
  .waitlist__btn { width: 100%; }
}

/* ==========================================================================
   Nav
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.2rem, 4vw, 3rem);
  background: linear-gradient(rgba(2, 15, 17, 0.85), rgba(2, 15, 17, 0));
  backdrop-filter: blur(2px);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav.is-hidden { transform: translateY(-110%); }
.nav__logo {
  display: inline-flex; align-items: center; gap: 0.55rem;
}
.nav__logo-text {
  font-family: var(--logo);
  font-size: 1.3rem; font-weight: 700; letter-spacing: 0.04em;
}
.nav__logo-laurel {
  height: 1.7rem; width: auto; display: block;
  filter: drop-shadow(0 0 6px rgba(45, 212, 191, 0.25));
}
.nav__logo-dot { color: var(--teal-bright); }
.nav__links { display: flex; gap: 2rem; }
.nav__links a {
  font-size: 0.85rem; letter-spacing: 0.06em; color: var(--ink-dim);
  position: relative; padding: 0.3rem 0;
  transition: color 0.25s ease;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--teal-bright);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
@media (max-width: 880px) { .nav__links { display: none; } }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 2rem) clamp(1.2rem, 6vw, 6rem) 6rem;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__img {
  width: 100%; height: 112%;
  object-fit: cover; object-position: center 20%;
  transform-origin: center;
}
.hero__vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(2, 15, 17, 0.92) 18%, rgba(2, 15, 17, 0.45) 52%, rgba(2, 15, 17, 0.15) 75%),
    linear-gradient(rgba(2, 15, 17, 0.35), transparent 30%, transparent 60%, var(--bg) 98%);
}
.hero__particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

/* drifting teal/ember mist under the particles */
.hero__aurora { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero__aurora-blob {
  position: absolute;
  width: 55vw; aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(90px);
  mix-blend-mode: screen;
  opacity: 0.4;
  will-change: transform;
}
.hero__aurora-blob--teal {
  left: -12%; top: 30%;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.5), transparent 65%);
  animation: aurora-a 21s ease-in-out infinite alternate;
}
.hero__aurora-blob--ember {
  right: -18%; bottom: -25%;
  width: 44vw;
  background: radial-gradient(circle, rgba(255, 154, 61, 0.34), transparent 65%);
  animation: aurora-b 27s ease-in-out infinite alternate;
}
.hero__aurora-blob--deep {
  left: 35%; top: -35%;
  width: 48vw;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.3), transparent 65%);
  animation: aurora-c 33s ease-in-out infinite alternate;
}
@keyframes aurora-a { to { transform: translate(14vw, -10vh) scale(1.25); } }
@keyframes aurora-b { to { transform: translate(-12vw, -14vh) scale(0.85); } }
@keyframes aurora-c { to { transform: translate(-10vw, 12vh) scale(1.2); } }
html.no-motion .hero__aurora-blob { animation: none; }

.hero__historia {
  position: absolute;
  bottom: -1.5vw; left: -1vw; z-index: 1;
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(6rem, 17vw, 19rem);
  letter-spacing: 0.04em;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(45, 212, 191, 0.16);
  user-select: none;
  white-space: nowrap;
}

.hero__content { position: relative; z-index: 2; max-width: 720px; }
.hero__kicker {
  display: flex; align-items: center; gap: 0.9rem;
  font-size: 0.75rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 2rem;
}
.hero__kicker-line { width: 48px; height: 1px; background: var(--teal-bright); display: inline-block; }

.hero__stores {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin: -0.8rem 0 1.6rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(231, 194, 119, 0.35);
  background: rgba(2, 15, 17, 0.55);
  backdrop-filter: blur(8px);
  font-size: 0.82rem;
  color: var(--ink-dim);
  letter-spacing: 0.04em;
}
.hero__stores b { color: var(--gold); font-weight: 600; }
.hero__stores-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(231, 194, 119, 0.6);
  animation: storepulse 2.2s ease-out infinite;
}
@keyframes storepulse {
  0% { box-shadow: 0 0 0 0 rgba(231, 194, 119, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(231, 194, 119, 0); }
  100% { box-shadow: 0 0 0 0 rgba(231, 194, 119, 0); }
}

.hero__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2.8rem, 7.2vw, 6.4rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
}
.hero__title-line { display: block; overflow: hidden; }
.hero__title-line > span { display: inline-block; will-change: transform; }
.hero__title em { font-style: italic; font-weight: 600; }
.hero__title-accent {
  background: linear-gradient(100deg, var(--teal-bright), #8ef0e2 55%, var(--gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__sub {
  margin: 1.8rem 0 2.6rem;
  max-width: 520px;
  color: var(--ink-dim);
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
}

.hero__scrollcue {
  position: absolute; bottom: 2.2rem; right: clamp(1.2rem, 5vw, 4rem); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
}
.hero__scrollcue-text {
  writing-mode: vertical-rl;
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-faint);
}
.hero__scrollcue-line {
  width: 1px; height: 64px;
  background: linear-gradient(var(--teal-bright), transparent);
  overflow: hidden; position: relative;
}
.hero__scrollcue-line::after {
  content: ""; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(transparent, var(--ink));
  animation: scrollcue 2s ease-in-out infinite;
}
@keyframes scrollcue { 60% { top: 100%; } 100% { top: 100%; } }

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee {
  border-top: 1px solid rgba(45, 212, 191, 0.14);
  border-bottom: 1px solid rgba(45, 212, 191, 0.14);
  padding: 1.1rem 0;
  overflow: hidden;
  background: var(--bg-2);
}
.marquee__track {
  display: flex; width: max-content;
  font-family: var(--serif);
  font-size: 1.1rem; font-style: italic;
  color: var(--ink-dim);
  will-change: transform;
}
.marquee__track span { padding-right: 0.5rem; white-space: nowrap; }

/* ==========================================================================
   Sections shared
   ========================================================================== */
.section-kicker {
  font-size: 0.72rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 1.1rem;
}
.section-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  line-height: 1.08;
}
.section-title em { color: var(--teal-bright); font-style: normal; }
.section-title .word { display: inline-block; overflow: hidden; vertical-align: top; }
.section-title .word > span { display: inline-block; will-change: transform; }

[data-reveal] { opacity: 0; transform: translateY(34px); }
html.no-motion [data-reveal] { opacity: 1; transform: none; }

/* ==========================================================================
   Stats
   ========================================================================== */
.stats { position: relative; padding: clamp(4rem, 9vw, 8rem) clamp(1.2rem, 6vw, 6rem); overflow: hidden; }
.stats__deco { position: absolute; inset: 0; pointer-events: none; }
.stats__deco-img {
  position: absolute;
  width: clamp(130px, 13vw, 200px);
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(45, 212, 191, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  opacity: 0.55;
}
.stats__deco-img--l { left: clamp(0.5rem, 3vw, 3rem); top: -12%; transform: rotate(-8deg); }
.stats__deco-img--r { right: clamp(0.5rem, 3vw, 3rem); bottom: -14%; transform: rotate(7deg); }
@media (max-width: 1100px) { .stats__deco { display: none; } }
.stats__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  max-width: 1100px; margin: 0 auto; text-align: center;
}
.stat__num {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat__num sup { font-size: 0.45em; color: var(--teal-bright); }
.stat__num--infinity { color: var(--teal-bright); }
.stat__label {
  margin-top: 0.8rem;
  font-size: 0.78rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ink-faint);
}
@media (max-width: 640px) { .stats__grid { grid-template-columns: 1fr; gap: 3rem; } }

/* ==========================================================================
   Leaders — horizontal scroll
   ========================================================================== */
.leaders { background: var(--bg-2); position: relative; }
.leaders__pin {
  height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.leaders__head {
  padding: 0 clamp(1.2rem, 6vw, 6rem) clamp(1.2rem, 3svh, 2.5rem);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
}
.leaders__hint {
  font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-faint); white-space: nowrap;
  animation: hintpulse 2.4s ease-in-out infinite;
}
@keyframes hintpulse { 50% { opacity: 0.35; transform: translateX(6px); } }

.leaders__track {
  display: flex; gap: clamp(1.5rem, 3vw, 3rem);
  padding: 0 clamp(1.2rem, 6vw, 6rem);
  width: max-content;
  will-change: transform;
}
.leader {
  position: relative;
  width: clamp(240px, min(30vw, 40svh), 420px);
  flex-shrink: 0;
}
.leader__frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--bg-3);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  transform-style: preserve-3d;
}
.leader__frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(rgba(6, 34, 38, 0) 55%, rgba(6, 34, 38, 0.55));
  pointer-events: none;
}
.leader__frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s ease;
  filter: saturate(0.92);
}
.leader:hover .leader__frame img { transform: scale(1.06); filter: saturate(1.08); }
.leader__meta { padding: 1.4rem 0.4rem 0; }
.leader__era {
  font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--teal-bright);
}
.leader__name {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  font-weight: 700; line-height: 1.06;
  margin: 0.5rem 0 0.7rem;
}
.leader__quote {
  font-size: 0.9rem; color: var(--ink-dim); font-style: italic;
  max-width: 32ch;
}
.leader__index {
  position: absolute; top: 0.9rem; right: 0.9rem; z-index: 2;
  font-family: var(--serif); font-style: italic;
  font-size: 1rem; color: rgba(234, 246, 244, 0.85);
  background: rgba(2, 15, 17, 0.55);
  border: 1px solid rgba(45, 212, 191, 0.3);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  backdrop-filter: blur(6px);
}
.leader--last { display: flex; align-items: center; }
.leader__more { max-width: 30ch; }
.leader__more-num {
  font-family: var(--serif);
  font-size: clamp(3.4rem, 6vw, 5.4rem); font-weight: 700;
  color: var(--teal-bright); line-height: 1;
}
.leader__more p { margin: 1rem 0 1.8rem; color: var(--ink-dim); }

/* ==========================================================================
   Journey — inside the app (pinned chapters)
   ========================================================================== */
.journey { background: var(--bg-2); position: relative; }
.journey__pin {
  height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 1rem) clamp(1.2rem, 6vw, 6rem) 2rem;
}
.journey__head { margin-bottom: clamp(1.6rem, 3svh, 3rem); max-width: 820px; }
.journey__stage { position: relative; height: min(58svh, 600px); }
.journey__step {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(36px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.55s;
  pointer-events: none;
}
.journey__step.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.55s ease 0.15s, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.15s, visibility 0s;
  pointer-events: auto;
}
.journey__num {
  display: inline-block;
  font-size: 0.7rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 1rem;
}
.journey__copy h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  font-weight: 700; line-height: 1.1;
  margin-bottom: 1rem;
}
.journey__copy p { color: var(--ink-dim); max-width: 44ch; font-size: clamp(0.95rem, 1.2vw, 1.05rem); }
.journey__visual { position: relative; height: 100%; min-height: 300px; }

/* static fallback (mobile / reduced motion) */
.journey--static .journey__pin { height: auto; padding-top: clamp(4rem, 9vw, 7rem); padding-bottom: 4rem; }
.journey--static .journey__stage { height: auto; display: flex; flex-direction: column; gap: 4.5rem; }
.journey--static .journey__step {
  position: static;
  opacity: 1; visibility: visible; transform: none;
  pointer-events: auto;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.journey--static .journey__visual { min-height: 340px; }
@media (max-width: 880px) {
  .journey__step { grid-template-columns: 1fr; }
}

/* visual 1 — leader icon fan (5 cards) */
.jfan { position: relative; height: 100%; }
.jfan img {
  position: absolute; top: 50%; left: 50%;
  width: clamp(96px, 24%, 165px); aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(45, 212, 191, 0.25);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  background: var(--bg-3);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.jfan img:nth-child(1) { transform: translate(-50%, -50%) translateX(-168%) rotate(-13deg) scale(0.9); z-index: 0; }
.jfan img:nth-child(2) { transform: translate(-50%, -50%) translateX(-86%) rotate(-7deg) scale(0.97); z-index: 1; }
.jfan img:nth-child(3) { transform: translate(-50%, -50%) scale(1.12); z-index: 2; }
.jfan img:nth-child(4) { transform: translate(-50%, -50%) translateX(86%) rotate(7deg) scale(0.97); z-index: 1; }
.jfan img:nth-child(5) { transform: translate(-50%, -50%) translateX(168%) rotate(13deg) scale(0.9); z-index: 0; }
.jfan:hover img:nth-child(1) { transform: translate(-50%, -50%) translateX(-188%) rotate(-16deg) scale(0.9); }
.jfan:hover img:nth-child(2) { transform: translate(-50%, -50%) translateX(-98%) rotate(-9deg) scale(0.99); }
.jfan:hover img:nth-child(3) { transform: translate(-50%, -50%) translateY(-5%) scale(1.18); }
.jfan:hover img:nth-child(4) { transform: translate(-50%, -50%) translateX(98%) rotate(9deg) scale(0.99); }
.jfan:hover img:nth-child(5) { transform: translate(-50%, -50%) translateX(188%) rotate(16deg) scale(0.9); }

/* visual 2 — quiz mock */
.jquiz {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(100%, 420px);
  padding: 1.6rem;
  border-radius: var(--radius);
  background: linear-gradient(165deg, var(--bg-3), var(--bg));
  border: 1px solid rgba(45, 212, 191, 0.25);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.jquiz__q {
  font-family: var(--serif);
  font-size: 1.2rem; font-weight: 700; line-height: 1.3;
  margin-bottom: 1.1rem;
}
.jquiz__opt {
  padding: 0.75rem 1rem;
  margin-bottom: 0.6rem;
  border-radius: 12px;
  border: 1px solid rgba(159, 193, 189, 0.2);
  background: rgba(2, 15, 17, 0.45);
  font-size: 0.92rem;
  color: var(--ink-dim);
}
.jquiz__opt--correct { animation: jquizpick 4.5s ease-in-out infinite; }
@keyframes jquizpick {
  0%, 38% { border-color: rgba(159, 193, 189, 0.2); background: rgba(2, 15, 17, 0.45); color: var(--ink-dim); }
  48%, 86% { border-color: var(--teal-bright); background: rgba(20, 184, 166, 0.18); color: var(--ink); }
  100% { border-color: rgba(159, 193, 189, 0.2); background: rgba(2, 15, 17, 0.45); color: var(--ink-dim); }
}
.jquiz__xp {
  position: absolute; right: 1.2rem; top: -0.9rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: var(--teal);
  color: #032422;
  font-size: 0.78rem; font-weight: 700;
  opacity: 0;
  animation: jquizxp 4.5s ease-out infinite;
}
@keyframes jquizxp {
  0%, 45% { opacity: 0; transform: translateY(8px); }
  52%, 80% { opacity: 1; transform: translateY(0); }
  95%, 100% { opacity: 0; transform: translateY(-12px); }
}
html.no-motion .jquiz__opt--correct { border-color: var(--teal-bright); background: rgba(20, 184, 166, 0.18); }
html.no-motion .jquiz__xp { opacity: 1; animation: none; }

/* visual 3 — curated video stories */
.jvideos {
  position: absolute; inset: 0;
  display: flex; gap: 1.2rem;
  align-items: center; justify-content: center;
}
.jvideo {
  position: relative;
  width: clamp(150px, 36%, 220px); aspect-ratio: 9 / 15;
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(45, 212, 191, 0.25);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.jvideo:nth-child(2) { transform: translateY(9%); }
.jvideo img { width: 100%; height: 100%; object-fit: cover; }
.jvideo__play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: rgba(2, 15, 17, 0.65);
  border: 1px solid rgba(45, 212, 191, 0.6);
  backdrop-filter: blur(4px);
  animation: jplay 2.6s ease-in-out infinite;
}
.jvideo__play::after {
  content: "";
  position: absolute; top: 50%; left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent var(--teal-bright);
}
@keyframes jplay { 50% { box-shadow: 0 0 0 12px rgba(45, 212, 191, 0.12); } }
.jvideo__bar {
  position: absolute; left: 0.8rem; right: 0.8rem; bottom: 0.8rem;
  height: 3px; border-radius: 999px;
  background: rgba(234, 246, 244, 0.25);
  overflow: hidden;
}
.jvideo__bar span {
  display: block; height: 100%; width: 0%;
  background: var(--teal-bright);
  animation: jbar 6s linear infinite;
}
.jvideo:nth-child(2) .jvideo__bar span { animation-delay: 1.6s; }
@keyframes jbar { to { width: 100%; } }

/* visual 4 — live room leaderboard */
.jroom {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(100%, 440px);
  padding: 1.4rem;
  border-radius: var(--radius);
  background: linear-gradient(165deg, var(--bg-3), var(--bg));
  border: 1px solid rgba(45, 212, 191, 0.25);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.jroom__head {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1.1rem;
}
.jroom__live {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ff5e5e;
  animation: storepulse 1.6s ease-out infinite;
}
.jroom__row {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.55rem 0.7rem;
  border-radius: 12px;
  margin-bottom: 0.45rem;
  background: rgba(2, 15, 17, 0.4);
}
.jroom__row--first {
  background: rgba(231, 194, 119, 0.08);
  border: 1px solid rgba(231, 194, 119, 0.35);
}
.jroom__crown { animation: jcrown 2.2s ease-in-out infinite; }
@keyframes jcrown { 50% { transform: translateY(-3px) rotate(-8deg); } }
.jroom__rank {
  width: 1.2rem; text-align: center;
  font-family: var(--serif); font-style: italic;
  color: var(--ink-faint); font-size: 0.9rem;
}
.jroom__row img {
  width: 2rem; height: 2rem;
  border-radius: 50%;
  object-fit: cover; object-position: top center;
  border: 1px solid rgba(45, 212, 191, 0.4);
}
.jroom__name { font-size: 0.88rem; min-width: 3.4rem; }
.jroom__fill {
  flex: 1; height: 5px; border-radius: 999px;
  background: rgba(159, 193, 189, 0.14);
  overflow: hidden;
}
.jroom__fill span {
  display: block; height: 100%; width: var(--w, 50%);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--teal-bright));
  transform-origin: left;
  animation: jfill 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.jroom__row--first .jroom__fill span { background: linear-gradient(90deg, var(--teal), var(--gold)); }
@keyframes jfill { from { transform: scaleX(0); } }
.jroom__row b { font-size: 0.82rem; color: var(--gold); font-variant-numeric: tabular-nums; }

/* ==========================================================================
   Era explorer
   ========================================================================== */
.eras {
  position: relative;
  min-height: 92svh;
  display: flex; align-items: center;
  overflow: hidden;
}
.eras__bg { position: absolute; inset: 0; }
.eras__bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.9s ease, transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.eras__bg img.is-active { opacity: 1; transform: scale(1); }
.eras__shade {
  position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(2, 15, 17, 0.94) 30%, rgba(2, 15, 17, 0.55) 60%, rgba(2, 15, 17, 0.25));
}
.eras__content {
  position: relative; z-index: 1;
  padding: clamp(4rem, 9vw, 7rem) clamp(1.2rem, 6vw, 6rem);
  width: 100%;
}
.eras__list {
  list-style: none;
  margin-top: clamp(2rem, 4vw, 3.4rem);
  max-width: 560px;
}
.eras__item {
  width: 100%;
  display: flex; align-items: baseline; gap: 1.1rem;
  padding: 1.05rem 0.4rem;
  border-bottom: 1px solid rgba(159, 193, 189, 0.16);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  font-weight: 600;
  color: var(--ink-dim);
  text-align: left;
  transition: color 0.3s ease, padding-left 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.eras__item em {
  margin-left: auto;
  font-family: var(--sans); font-style: normal;
  font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-faint);
  transition: color 0.3s ease;
}
.eras__num {
  font-size: 0.8em; color: var(--ink-faint);
  font-style: italic; min-width: 1.6em;
  transition: color 0.3s ease;
}
.eras__item:hover, .eras__item.is-active { color: var(--ink); padding-left: 1rem; }
.eras__item:hover .eras__num, .eras__item.is-active .eras__num { color: var(--teal-bright); }
.eras__item.is-active em { color: var(--teal-bright); }

/* ==========================================================================
   How it works
   ========================================================================== */
.how { padding: clamp(5rem, 11vw, 10rem) clamp(1.2rem, 6vw, 6rem); background: var(--bg-2); }
.how__head { max-width: 760px; margin-bottom: clamp(3rem, 6vw, 5rem); }
.how__steps {
  position: relative;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  max-width: 1200px;
}
.how__line {
  position: absolute; top: 1.5rem; left: 4%; right: 4%;
  height: 1px; background: rgba(159, 193, 189, 0.18);
}
.how__line span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--teal), var(--teal-bright));
  box-shadow: 0 0 12px rgba(45, 212, 191, 0.7);
}
.how__step { position: relative; padding-top: 3.4rem; }
.how__num {
  position: absolute; top: 0; left: 0;
  display: flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid rgba(45, 212, 191, 0.5);
  font-family: var(--serif); font-style: italic;
  color: var(--teal-bright);
}
.how__step h3 {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700;
  margin-bottom: 0.6rem;
}
.how__step p { color: var(--ink-dim); font-size: 0.95rem; max-width: 34ch; }
@media (max-width: 760px) {
  .how__steps { grid-template-columns: 1fr; }
  .how__line { display: none; }
}

/* ==========================================================================
   Stories
   ========================================================================== */
.stories { padding: clamp(5rem, 11vw, 10rem) 0 clamp(8rem, 16vw, 14rem); overflow: hidden; }
.stories__head {
  padding: 0 clamp(1.2rem, 6vw, 6rem);
  max-width: 880px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.stories__sub { margin-top: 1.1rem; color: var(--ink-dim); max-width: 52ch; }
.stories__rows { display: flex; flex-direction: column; gap: 1.6rem; }
.stories__row { display: flex; width: max-content; will-change: transform; }
.stories__set { display: flex; gap: 1.6rem; padding-right: 1.6rem; }
.story {
  position: relative;
  width: clamp(200px, 22vw, 290px);
  aspect-ratio: 9 / 14;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-3);
}
.story img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.story:hover img { transform: scale(1.07); }
.story figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.4rem 1.1rem 1rem;
  background: linear-gradient(transparent, rgba(2, 15, 17, 0.92));
  font-family: var(--serif);
  font-size: 1.05rem; font-weight: 600; line-height: 1.25;
}
.story figcaption span {
  display: block;
  font-family: var(--sans);
  font-size: 0.64rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 0.3rem;
}

/* ==========================================================================
   Quiz
   ========================================================================== */
.quiz {
  position: relative;
  padding: clamp(5rem, 11vw, 10rem) clamp(1.2rem, 6vw, 6rem);
  background:
    radial-gradient(ellipse at 70% 0%, rgba(20, 184, 166, 0.1), transparent 55%),
    var(--bg-2);
  overflow: hidden;
}
.quiz__bg { position: absolute; inset: 0; pointer-events: none; }
.quiz__bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  opacity: 0.12;
  mask-image: linear-gradient(rgba(0, 0, 0, 1), transparent 85%);
  -webkit-mask-image: linear-gradient(rgba(0, 0, 0, 1), transparent 85%);
}
.quiz__inner { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; }
.quiz__head { text-align: center; margin-bottom: 2.8rem; }
.quiz__sub { color: var(--ink-dim); margin-top: 1rem; }
.quiz__card {
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(170deg, var(--bg-3), var(--bg));
  border: 1px solid rgba(45, 212, 191, 0.2);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
  padding: clamp(1.4rem, 4vw, 2.6rem);
}
.quiz__hud {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.8rem; gap: 1.5rem;
}
.quiz__progress {
  font-family: var(--serif); font-style: italic;
  font-size: 1.1rem; color: var(--ink-dim);
}
.quiz__progress span { color: var(--teal-bright); font-size: 1.4rem; }
.quiz__xp { display: flex; align-items: center; gap: 0.8rem; flex: 1; max-width: 320px; }
.quiz__xp-bar {
  flex: 1; height: 6px; border-radius: 999px;
  background: rgba(159, 193, 189, 0.15);
  overflow: hidden;
}
.quiz__xp-bar span {
  display: block; height: 100%; width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--teal-bright));
  box-shadow: 0 0 10px rgba(45, 212, 191, 0.8);
  transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.quiz__xp-label { font-size: 0.78rem; letter-spacing: 0.12em; color: var(--ink-faint); white-space: nowrap; }
.quiz__xp-label b { color: var(--gold); font-variant-numeric: tabular-nums; }

.quiz__q {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 700; line-height: 1.25;
  margin-bottom: 1.6rem;
}
.quiz__opts { display: grid; gap: 0.7rem; }
.quiz__opt {
  display: flex; align-items: center; gap: 1rem;
  text-align: left;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(159, 193, 189, 0.2);
  background: rgba(2, 15, 17, 0.45);
  font-size: 1rem;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.quiz__opt:hover { border-color: var(--teal-bright); background: rgba(20, 184, 166, 0.1); transform: translateX(4px); }
.quiz__opt-key {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.8rem; height: 1.8rem; border-radius: 8px;
  border: 1px solid rgba(159, 193, 189, 0.3);
  font-size: 0.75rem; color: var(--ink-faint);
  flex-shrink: 0;
}
.quiz__opt.is-correct {
  border-color: var(--teal-bright);
  background: rgba(20, 184, 166, 0.18);
  animation: optpop 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.quiz__opt.is-wrong {
  border-color: #e2654f;
  background: rgba(226, 101, 79, 0.12);
  animation: optshake 0.4s ease;
}
.quiz__opt:disabled { cursor: default; }
@keyframes optpop { 40% { transform: scale(1.025); } }
@keyframes optshake {
  25% { transform: translateX(-6px); } 50% { transform: translateX(5px); } 75% { transform: translateX(-3px); }
}
.quiz__fact {
  margin-top: 1.3rem;
  padding: 1rem 1.2rem;
  border-left: 2px solid var(--teal-bright);
  background: rgba(20, 184, 166, 0.07);
  border-radius: 0 12px 12px 0;
  color: var(--ink-dim);
  font-size: 0.92rem;
}
.quiz__fact b { color: var(--ink); }
.quiz__result { text-align: center; padding: 1.5rem 0 0.5rem; }
.quiz__result-rank {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800;
  background: linear-gradient(100deg, var(--teal-bright), var(--gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0.4rem 0 0.8rem;
}
.quiz__result p { color: var(--ink-dim); max-width: 44ch; margin: 0 auto 1.8rem; }
.quiz__stage > * { animation: stagein 0.5s cubic-bezier(0.22, 1, 0.36, 1) both; }
@keyframes stagein { from { opacity: 0; transform: translateY(18px); } }

/* ==========================================================================
   Founder offer
   ========================================================================== */
.founder {
  position: relative;
  padding: clamp(5rem, 11vw, 10rem) clamp(1.2rem, 6vw, 6rem);
  overflow: hidden;
}
.founder__glow {
  position: absolute; inset: -20% -10%;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(231, 194, 119, 0.08), transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(20, 184, 166, 0.12), transparent 55%);
  pointer-events: none;
}
.founder__inner { position: relative; max-width: 880px; margin: 0 auto; }
.founder__head { text-align: center; margin-bottom: 2.6rem; }
.founder__badge {
  display: inline-block;
  font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(231, 194, 119, 0.4);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  margin-bottom: 1.4rem;
}
.founder__card {
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(165deg, var(--bg-3), var(--bg-2) 60%, #0b2a24);
  border: 1px solid rgba(231, 194, 119, 0.25);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.5);
  padding: clamp(1.8rem, 5vw, 3.2rem);
}
.founder__price-row {
  display: flex; align-items: baseline; gap: 2rem; flex-wrap: wrap;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(159, 193, 189, 0.14);
}
.founder__price { display: flex; align-items: baseline; gap: 0.4rem; }
.founder__currency { font-size: 1.2rem; color: var(--ink-dim); }
.founder__amount {
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 6.5rem); font-weight: 800; line-height: 1;
  background: linear-gradient(160deg, #fff, var(--gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.founder__forever {
  font-family: var(--serif); font-style: italic;
  font-size: 1.3rem; color: var(--teal-bright);
}
.founder__anchor { flex: 1; min-width: 240px; color: var(--ink-dim); font-size: 0.95rem; }

.founder__perks {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.85rem 2rem;
  padding: 1.8rem 0;
}
.founder__perks li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 0.95rem; color: var(--ink-dim);
}
.founder__perks li::before {
  content: "✦";
  position: absolute; left: 0; top: 0;
  color: var(--teal-bright);
  font-size: 0.85rem;
}
.founder__perk-hero { grid-column: 1 / -1; color: var(--ink); }
.founder__perk-hero::before { color: var(--gold); }
.founder__perk-hero b { color: var(--gold); }
@media (max-width: 640px) { .founder__perks { grid-template-columns: 1fr; } }

.founder__scarcity { padding-bottom: 2rem; }
.founder__urgency {
  font-size: 0.95rem; color: var(--ink-dim);
  padding: 1rem 1.2rem;
  border: 1px solid rgba(231, 194, 119, 0.3);
  border-radius: 14px;
  background: rgba(231, 194, 119, 0.05);
}
.founder__urgency b { color: var(--gold); }
.founder__urgency-mark { color: var(--gold); margin-right: 0.3rem; }
.founder__cta { width: 100%; padding: 1.2rem; font-size: 1.05rem; }

/* ==========================================================================
   Final CTA
   ========================================================================== */
.cta {
  position: relative;
  min-height: 96svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 8rem) clamp(1.2rem, 6vw, 6rem);
}
.cta__bg { position: absolute; inset: 0; }
.cta__bg img { width: 100%; height: 118%; object-fit: cover; }
.cta__shade {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(2, 15, 17, 0.25), rgba(2, 15, 17, 0.9) 85%),
    linear-gradient(var(--bg) 0%, rgba(2, 15, 17, 0.55) 22%, rgba(2, 15, 17, 0.6) 78%, var(--bg) 100%);
}
.cta__inner { position: relative; z-index: 1; max-width: 760px; display: flex; flex-direction: column; align-items: center; }
.cta__quote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 500; line-height: 1.4;
  color: var(--ink-dim);
}
.cta__quote .word { display: inline-block; }
.cta__cite {
  display: block;
  margin: 1.1rem 0 3.2rem;
  font-size: 0.8rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ink-faint); font-style: normal;
}
.cta__title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 800; line-height: 1.05;
  margin-bottom: 2.4rem;
}
.cta__title em { color: var(--teal-bright); font-style: normal; }
.cta__title .word { display: inline-block; overflow: hidden; vertical-align: top; }
.cta__title .word > span { display: inline-block; }
.cta__waitlist { margin: 0 auto; }
.cta__waitlist .waitlist__note { text-align: center; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  padding: 3.5rem clamp(1.2rem, 6vw, 6rem);
  text-align: center;
  border-top: 1px solid rgba(45, 212, 191, 0.12);
}
.footer__brand {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--logo); font-size: 1.5rem; font-weight: 700; letter-spacing: 0.04em;
}
.footer__brand span span { color: var(--teal-bright); }
.footer__laurel {
  height: 2rem; width: auto; display: block;
  filter: drop-shadow(0 0 7px rgba(45, 212, 191, 0.25));
}
.footer__line { color: var(--ink-dim); font-style: italic; font-family: var(--serif); margin: 0.5rem 0 1rem; }
.footer__legal { font-size: 0.75rem; letter-spacing: 0.12em; color: var(--ink-faint); }


/* ==========================================================================
   Inline icons & link-CTA rows
   ========================================================================== */
.icon { width: 1.1em; height: 1.1em; vertical-align: -0.18em; }

.jquiz__tag {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.64rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--teal-bright);
  border: 1px solid rgba(45, 212, 191, 0.4);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  margin-bottom: 1rem;
}

.quiz__swords { color: var(--teal-bright); margin-bottom: 1.1rem; }
.quiz__swords .icon { width: 2.4rem; height: 2.4rem; filter: drop-shadow(0 0 14px rgba(45, 212, 191, 0.45)); }

.jroom__crown { color: var(--gold); display: inline-flex; }
.jroom__crown .icon { width: 1.15rem; height: 1.15rem; }

.founder__badge .icon { margin-right: 0.4rem; vertical-align: -0.22em; }
.founder__appnote {
  margin-top: 0.9rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-faint);
  letter-spacing: 0.05em;
}

.hero__actions { display: flex; flex-direction: column; gap: 0.9rem; align-items: flex-start; }
.cta__actions { display: flex; flex-direction: column; gap: 0.9rem; align-items: center; }

.leader__more-num em { font-size: 0.32em; font-style: italic; color: var(--ink-dim); margin-left: 0.25rem; }

/* ==========================================================================
   Language toggle & section toolbar
   ========================================================================== */
.nav__right { display: flex; align-items: center; gap: 0.9rem; }
.lang {
  display: inline-flex;
  border: 1px solid rgba(45, 212, 191, 0.35);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(2, 15, 17, 0.5);
  backdrop-filter: blur(6px);
}
.lang__opt {
  padding: 0.45rem 0.8rem;
  font-size: 0.72rem; letter-spacing: 0.12em;
  color: var(--ink-faint);
  transition: background 0.25s ease, color 0.25s ease;
}
.lang__opt.is-active { background: var(--teal); color: #032422; font-weight: 600; }

.secnav {
  position: fixed; right: clamp(0.7rem, 1.8vw, 1.5rem); top: 50%;
  transform: translateY(-50%);
  z-index: 95;
  display: flex; flex-direction: column; gap: 1rem;
}
.secnav a {
  display: flex; align-items: center; justify-content: flex-end; gap: 0.55rem;
  color: var(--ink-faint);
  font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase;
  transition: color 0.3s ease;
}
.secnav a span {
  opacity: 0; transform: translateX(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}
.secnav a i {
  width: 9px; height: 9px; border-radius: 50%;
  border: 1px solid rgba(159, 193, 189, 0.6);
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.secnav a:hover { color: var(--ink-dim); }
.secnav a:hover span, .secnav a.is-active span { opacity: 1; transform: none; }
.secnav a.is-active { color: var(--teal-bright); }
.secnav a.is-active i {
  background: var(--teal-bright); border-color: var(--teal-bright);
  box-shadow: 0 0 10px rgba(45, 212, 191, 0.8);
}
@media (max-width: 880px) {
  .secnav {
    top: auto; bottom: 0; left: 0; right: 0; transform: none;
    flex-direction: row; gap: 0.2rem;
    overflow-x: auto;
    padding: 0.55rem 0.7rem;
    background: rgba(2, 15, 17, 0.88);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(45, 212, 191, 0.15);
    -webkit-overflow-scrolling: touch;
  }
  .secnav a { padding: 0.25rem 0.6rem; }
  .secnav a span { opacity: 1; transform: none; font-size: 0.6rem; }
  .secnav a i { display: none; }
  .footer { padding-bottom: 6rem; }
}

/* ==========================================================================
   Motion preferences
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
