/* ============================================================
   Fancoins landing page — page-specific styles
   Foundations come from colors_and_type.css
   ============================================================ */

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  overflow-x: hidden;
}

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

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

input {
  font-family: inherit;
}

/* ============================================================
   Layout helpers
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

@media (max-width: 720px) {
  .container { padding: 0 var(--space-4); }
}

.section {
  padding: var(--space-12) 0;
  position: relative;
}
.section--tight { padding: var(--space-10) 0; }
@media (max-width: 720px) {
  .section { padding: var(--space-10) 0; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  height: 52px;
  padding: 0 var(--space-6);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-base);
  letter-spacing: -0.01em;
  transition: transform var(--dur-fast) var(--ease-spring),
              background var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out);
  white-space: nowrap;
  user-select: none;
}
.btn:active { transform: translateY(1px) scale(0.98); }

.btn--primary {
  background: linear-gradient(180deg, var(--gold-200) 0%, var(--gold-400) 100%);
  color: var(--ink-900);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18),
    0 6px 18px rgba(232, 190, 77, 0.28),
    0 1px 2px rgba(0, 0, 0, 0.4);
}
.btn--primary:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18),
    0 10px 28px rgba(232, 190, 77, 0.4),
    0 2px 4px rgba(0, 0, 0, 0.4);
  transform: translateY(-1px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
  color: var(--fg);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-300);
  color: var(--gold-200);
}

.btn--lg { height: 56px; padding: 0 var(--space-8); font-size: var(--text-md); }

/* ============================================================
   Header
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(10, 13, 23, 0.6);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header__logo {
  display: flex;
  align-items: center;
}
.header__logo img { height: 42px; width: auto; display: block; }
.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.header__nav a {
  color: var(--fg-muted);
  font-size: var(--text-sm);
  font-weight: 500;
}
.header__nav a:hover { color: var(--fg); text-decoration: none; }
@media (max-width: 720px) {
  .header__nav { display: none; }
}
.header .btn {
  height: 40px;
  padding: 0 var(--space-4);
  font-size: var(--text-sm);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 70% 20%, rgba(232, 190, 77, 0.18), transparent 70%),
    radial-gradient(40% 35% at 20% 60%, rgba(59, 130, 246, 0.08), transparent 70%),
    linear-gradient(180deg, var(--ink-950) 0%, var(--ink-900) 100%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: center top;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent 80%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--space-12); }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px var(--space-3);
  border-radius: var(--radius-full);
  background: var(--accent-soft);
  border: 1px solid var(--border-gold);
  color: var(--gold-200);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}
.hero__eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-300);
  box-shadow: 0 0 8px var(--gold-300);
  animation: pulse 1.6s var(--ease-out) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero__headline {
  font-size: clamp(40px, 6.4vw, 80px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: var(--space-6);
}
.hero__headline .accent {
  background: linear-gradient(135deg, var(--gold-200) 0%, var(--gold-400) 60%, var(--gold-600) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.represent__merch {
  width: 160px;
  height: 110px;
  flex-shrink: 0;
  align-self: flex-end;
  border-radius: 14px;
  object-fit: cover;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  color: var(--gold-200);
  margin: -8px 0 var(--space-5);
  letter-spacing: -0.01em;
}
.hero__sub {
  font-size: var(--text-lg);
  color: var(--fg-muted);
  max-width: 540px;
  margin-bottom: var(--space-8);
  line-height: 1.5;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.hero__meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  color: var(--fg-faint);
  font-size: var(--text-sm);
}
.hero__meta .avatars {
  display: flex;
}
.hero__meta .avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--ink-900);
  margin-left: -8px;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-900);
}
.hero__meta .avatar:first-child { margin-left: 0; }

/* Hero visual right side */
.hero__visual {
  position: relative;
  height: 540px;
}
@media (max-width: 960px) {
  .hero__visual { height: 420px; }
}

/* ============================================================
   Coin (hero centerpiece)
   ============================================================ */
.coin-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}
.coin {
  width: 320px;
  height: 320px;
  position: relative;
  transform-style: preserve-3d;
  animation: coinSpin 6s linear infinite;
  filter: drop-shadow(0 30px 60px rgba(232, 190, 77, 0.35))
          drop-shadow(0 0 80px rgba(232, 190, 77, 0.25));
}
@media (max-width: 960px) {
  .coin { width: 240px; height: 240px; }
}
@keyframes coinSpin {
  0%   { transform: rotateY(0deg) rotateX(8deg); }
  100% { transform: rotateY(360deg) rotateX(8deg); }
}
.coin__face {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, #FCEAA0 0%, #F0C75A 25%, #D4A537 55%, #A87618 100%);
  box-shadow:
    inset 0 0 0 6px rgba(168, 118, 24, 0.4),
    inset 0 -20px 40px rgba(85, 58, 11, 0.6),
    inset 0 20px 40px rgba(252, 234, 160, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.coin__face--front { transform: translateZ(16px); }
.coin__face--back  { transform: translateZ(-16px) rotateY(180deg); }
.coin__circuit {
  position: absolute;
  inset: 8%;
  pointer-events: none;
  opacity: 0.55;
  mix-blend-mode: multiply;
}
.coin__glyph {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 180px;
  font-weight: 800;
  font-style: italic;
  color: rgba(85, 58, 11, 0.85);
  text-shadow:
    1px 1px 0 rgba(252, 234, 160, 0.4),
    -1px -1px 0 rgba(85, 58, 11, 0.6);
  letter-spacing: -0.05em;
  line-height: 1;
}
/* Stacked disc slices form the cylindrical edge between faces.
   Reeded rim via repeating-conic-gradient on each slice. */
.coin__slice {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-conic-gradient(
    from 0deg,
    #B58820 0deg 1.5deg,
    #7E5710 1.5deg 3deg
  );
  box-shadow: inset 0 0 0 1px rgba(85, 58, 11, 0.3);
}

/* Floating mini-cards around coin */
.float-card {
  position: absolute;
  background: linear-gradient(180deg, rgba(22, 26, 38, 0.9), rgba(15, 19, 32, 0.95));
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  animation: float 5s var(--ease-in-out) infinite;
}
.float-card.fc-1 { top: 8%; left: -2%; animation-delay: 0s; }
.float-card.fc-2 { bottom: 12%; left: 6%; animation-delay: -1.6s; }
.float-card.fc-3 { top: 30%; right: -4%; animation-delay: -3.2s; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
.float-card__icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
  color: var(--ink-900);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.float-card__icon--blue {
  background: linear-gradient(135deg, #6BA3F7, #2563EB);
  color: white;
}
.float-card__icon--green {
  background: linear-gradient(135deg, #5BD49A, #169B5A);
  color: white;
}
.float-card__label {
  font-size: var(--text-xs);
  color: var(--fg-faint);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.float-card__value {
  font-family: var(--font-numeric);
  font-feature-settings: 'tnum' 1, 'lnum' 1;
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.float-card__delta { color: var(--positive); font-size: var(--text-xs); margin-left: var(--space-1); font-weight: 600; }

/* ============================================================
   Ticker
   ============================================================ */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--ink-950);
  overflow: hidden;
  padding: var(--space-4) 0;
  position: relative;
}
.ticker::before, .ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--ink-950), transparent); }
.ticker::after { right: 0; background: linear-gradient(270deg, var(--ink-950), transparent); }
.ticker__track {
  display: flex;
  gap: var(--space-12);
  animation: tickerScroll 40s linear infinite;
  width: max-content;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--fg-muted);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}
.ticker__item .pill {
  font-family: var(--font-numeric);
  font-feature-settings: 'tnum' 1;
  text-transform: none;
  background: rgba(232, 190, 77, 0.08);
  border: 1px solid var(--border-gold);
  color: var(--gold-200);
  padding: 2px var(--space-2);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0;
}
.ticker__item .pill--up { color: var(--positive); background: rgba(43, 168, 100, 0.1); border-color: rgba(43, 168, 100, 0.32); }
.ticker__item .pill--down { color: var(--negative); background: rgba(225, 75, 75, 0.1); border-color: rgba(225, 75, 75, 0.32); }
.ticker__item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--fg-faint); }

/* ============================================================
   Section heads
   ============================================================ */
.section__head {
  text-align: center;
  margin-bottom: var(--space-10);
}
.section__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-3);
}
.section__title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  max-width: 780px;
  margin: 0 auto var(--space-4);
}
.section__sub {
  font-size: var(--text-lg);
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================================
   How it works — bento
   ============================================================ */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-4);
}
@media (max-width: 960px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
}
.bento__card {
  background: linear-gradient(180deg, var(--ink-700), var(--ink-800));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.bento__card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-glow);
}
.bento__card--w3 { grid-column: span 3; }
.bento__card--w4 { grid-column: span 4; }
.bento__card--w2 { grid-column: span 2; }
.bento__card--w6 { grid-column: span 6; }
@media (max-width: 960px) {
  .bento__card--w3, .bento__card--w4, .bento__card--w6 { grid-column: span 2; }
}

.bento__num {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  color: var(--accent);
  margin-bottom: var(--space-3);
}
.bento__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: var(--space-3);
}
.bento__body {
  font-size: var(--text-base);
  color: var(--fg-muted);
  line-height: 1.5;
  margin-bottom: var(--space-6);
}
.bento__visual {
  margin-top: auto;
  position: relative;
  flex: 1;
  min-height: 100px;
  display: flex;
  align-items: flex-end;
}

/* ============================================================
   Why now — stat counters
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }

.stat {
  padding: var(--space-8) var(--space-6);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  opacity: 0.4;
}
.stat__num {
  font-family: var(--font-display);
  font-feature-settings: 'tnum' 1;
  font-variant-numeric: tabular-nums;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-100), var(--gold-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: var(--space-2);
}
.stat__label {
  font-size: var(--text-sm);
  color: var(--fg-muted);
  line-height: 1.4;
}

/* ============================================================
   Who it's for — Layout A "Spotlight"
   ============================================================ */
.who-spot {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-8);
  align-items: stretch;
}
@media (max-width: 960px) { .who-spot { grid-template-columns: 1fr; } }

.who-spot__card {
  background: linear-gradient(180deg, var(--ink-700), var(--ink-800));
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.who-spot__card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(232, 190, 77, 0.18), transparent 70%);
  pointer-events: none;
}
.who-spot__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-5);
  border: 1px solid var(--border-gold);
  background: var(--ink-900);
}
.who-spot__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.who-spot__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 13, 23, 0.55) 100%);
  pointer-events: none;
}
.who-spot__name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-1);
}
.who-spot__role {
  font-size: var(--text-sm);
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

.who-spot__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  align-content: start;
}
.who-spot__stat {
  padding: var(--space-5) var(--space-6);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: border-color var(--dur-base) var(--ease-out);
}
.who-spot__stat:hover { border-color: var(--border-gold); }

.who-spot__big {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-100), var(--gold-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-feature-settings: 'tnum' 1;
  font-variant-numeric: tabular-nums;
  margin-bottom: var(--space-2);
}
.who-spot__big span {
  font-size: 0.42em;
  margin-left: 4px;
  color: var(--gold-200);
  -webkit-text-fill-color: var(--gold-200);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.who-spot__label {
  font-size: var(--text-sm);
  color: var(--fg-muted);
  line-height: 1.4;
}
.who-spot__quote {
  grid-column: 1 / -1;
  position: relative;
  padding: var(--space-6) var(--space-6) var(--space-6) var(--space-12);
  background: rgba(232, 190, 77, 0.05);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  line-height: 1.4;
  color: var(--fg);
}
.who-spot__qmark {
  position: absolute;
  top: 0;
  left: var(--space-4);
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: var(--gold-300);
  font-style: italic;
}

/* ============================================================
   Who it's for — Layout B "Archetypes"
   ============================================================ */
.who-arch {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
@media (max-width: 880px) { .who-arch { grid-template-columns: 1fr; } }

.who-arch__card {
  background: linear-gradient(180deg, var(--ink-700), var(--ink-800));
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
  display: flex;
  flex-direction: column;
  min-height: 260px;
}
.who-arch__card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
}
.who-arch__badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: white;
  margin-bottom: var(--space-5);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.who-arch__tag {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-2);
}
.who-arch__line {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--fg);
  margin: 0 0 auto;
  text-wrap: pretty;
}
.who-arch__meta {
  font-size: var(--text-sm);
  color: var(--fg-faint);
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
}

/* ============================================================
   Who it's for — Corey card
   ============================================================ */
.who {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-12);
  align-items: center;
}
@media (max-width: 960px) { .who { grid-template-columns: 1fr; } }

.who__profile {
  background: linear-gradient(180deg, var(--ink-700), var(--ink-800));
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
}
.who__profile::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(232, 190, 77, 0.18), transparent 70%);
}
.who__photo {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4 / 5;
  margin-bottom: var(--space-5);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  background: var(--ink-900);
  position: relative;
}
.who__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.who__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 13, 23, 0.5) 100%);
  pointer-events: none;
}

.who__avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6BA3F7, #2563EB);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  color: white;
  margin-bottom: var(--space-4);
  border: 2px solid var(--border-strong);
}
.who__name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-1);
}
.who__role {
  font-size: var(--text-sm);
  color: var(--fg-muted);
  margin-bottom: var(--space-6);
}
.who__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.who__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px var(--space-3);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--fg-muted);
}
.who__tag .icon {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--gold-300);
}

.who__points h3 {
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: var(--space-6);
}
.who__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  list-style: none;
  padding: 0;
  margin: 0;
}
.who__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-md);
  color: var(--fg);
  line-height: 1.5;
}
.who__list .check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-200);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   Waitlist
   ============================================================ */
.waitlist {
  position: relative;
  padding: var(--space-24) var(--space-12);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(80% 100% at 50% 0%, rgba(232, 190, 77, 0.18), transparent 60%),
    linear-gradient(180deg, var(--ink-800), var(--ink-900));
  border: 1px solid var(--border-gold);
}
@media (max-width: 720px) { .waitlist { padding: var(--space-16) var(--space-6); } }

.waitlist__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 190, 77, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 190, 77, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
  pointer-events: none;
}
.waitlist > * { position: relative; }

.waitlist--split {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  gap: var(--space-10);
  text-align: left;
  padding: var(--space-12) !important;
}
.waitlist__media {
  position: relative;
  flex: 0 0 360px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-gold);
}
.waitlist__content {
  flex: 1 1 auto;
  min-width: 0;
}
.waitlist__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.waitlist--split .waitlist__title,
.waitlist--split .waitlist__sub,
.waitlist--split .waitlist__form,
.waitlist--split .waitlist__chips {
  margin-left: 0;
  margin-right: 0;
}
.waitlist--split .waitlist__sub { max-width: none; }
.waitlist--split .waitlist__form { margin: 0; }
.waitlist--split .waitlist__chips { justify-content: flex-start; }

@media (max-width: 900px) {
  .waitlist--split {
    flex-direction: column;
    text-align: center;
    padding: var(--space-10) var(--space-6) !important;
    gap: var(--space-8);
  }
  .waitlist__media { flex: 0 0 auto; width: 100%; aspect-ratio: 16 / 10; max-height: 280px; }
  .waitlist--split .waitlist__chips { justify-content: center; }
  .waitlist--split .waitlist__form { margin: 0 auto; }
}

.waitlist__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: var(--space-4);
}
.waitlist__sub {
  font-size: var(--text-lg);
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 auto var(--space-8);
}

.waitlist__form {
  display: flex;
  gap: var(--space-2);
  max-width: 520px;
  margin: 0 auto;
  background: var(--ink-950);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-full);
  padding: 6px;
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.waitlist__form:focus-within {
  border-color: var(--gold-400);
  box-shadow: 0 0 0 4px rgba(232, 190, 77, 0.15);
}
.waitlist__form input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--fg);
  font-size: var(--text-base);
  padding: 0 var(--space-4);
  outline: none;
  min-width: 0;
}
.waitlist__form input::placeholder { color: var(--fg-faint); }
.waitlist__form .btn { height: 44px; padding: 0 var(--space-5); font-size: var(--text-sm); }

.waitlist__success {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  background: rgba(43, 168, 100, 0.1);
  border: 1px solid rgba(43, 168, 100, 0.32);
  border-radius: var(--radius-full);
  color: var(--positive);
  font-weight: 500;
}

.waitlist__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
}
.waitlist__chip {
  font-size: var(--text-xs);
  font-family: var(--font-display);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--fg-faint);
  padding: 4px var(--space-3);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: var(--space-12) 0 var(--space-8);
  background: var(--ink-950);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-6);
}
.footer__legal {
  font-size: var(--text-xs);
  color: var(--fg-faint);
  max-width: 600px;
  line-height: 1.5;
}
.footer__brand {
  display: flex;
  align-items: center;
}
.footer__brand img { height: 36px; width: auto; display: block; }

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 80ms; }
.reveal.delay-2 { transition-delay: 160ms; }
.reveal.delay-3 { transition-delay: 240ms; }
.reveal.delay-4 { transition-delay: 320ms; }
