/* ═══════════════════════════════════════════════════════════════
   fair. — pre-launch marketing site
   Shared styles for landing + product pages. Tokens in tokens.css.
   ═══════════════════════════════════════════════════════════════ */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.fair-site {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.6;
  color: var(--content-primary);
  background: var(--surface-canvas);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection { background: var(--brand-gold-pale); color: var(--content-primary); }

a { color: var(--content-link); text-decoration: none; }
a:hover { color: var(--brand-gold-deep); text-decoration: underline; }

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

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ── Wordmark ─────────────────────────────────────────────── */
.wordmark { display: inline-flex; align-items: baseline; text-decoration: none; }
.wordmark:hover { text-decoration: none; }
.wordmark .wm-t { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.04em; color: var(--content-primary); }
.wordmark .wm-d { font-family: var(--font-display); font-weight: 800; color: var(--brand-gold); }
.wordmark.on-dark .wm-t { color: #FAF7F0; }

/* ── Sticky glass nav ─────────────────────────────────────── */
.nav-wrap { position: fixed; top: 16px; left: 0; right: 0; z-index: 60; margin: 0 auto; max-width: 1120px; padding: 0 24px; }
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 10px 12px 10px 22px; border-radius: 999px;
  background: var(--material-glass-regular-bg);
  backdrop-filter: var(--material-glass-regular-blur);
  -webkit-backdrop-filter: var(--material-glass-regular-blur);
  border: 1px solid var(--material-glass-regular-border);
  box-shadow: var(--elevation-1);
}
.nav-links { display: flex; gap: 2px; }
.nav-links a {
  padding: 8px 14px; border-radius: 999px; font-size: 14px; font-weight: 500;
  color: var(--content-primary); text-decoration: none;
  transition: background var(--duration-fast) var(--ease-standard);
}
.nav-links a:hover { background: rgba(17,17,17,0.04); color: var(--content-primary); text-decoration: none; }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-badge {
  display: inline-flex; align-items: center; gap: 7px; padding: 6px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em; color: var(--content-secondary);
  border: 1px solid var(--border-default); background: rgba(255,255,255,0.5);
  white-space: nowrap;
}
.nav-badge .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--brand-gold); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 22px; border-radius: 12px; border: none; cursor: pointer;
  font-family: var(--font-ui); font-weight: 600; font-size: 15px; text-decoration: none;
  transition: background var(--duration-fast) var(--ease-standard), transform 120ms var(--ease-standard);
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: scale(0.98); }
.btn:focus-visible { outline: 2px solid var(--border-focus); outline-offset: 2px; }
.btn-gold { background: var(--interactive-primary); color: var(--content-on-interactive); }
.btn-gold:hover { background: var(--interactive-primary-hover); color: var(--content-on-interactive); }
.btn-secondary { background: #FFFFFF; color: #111111; border: 1px solid var(--interactive-secondary-border); }
.btn-secondary:hover { background: var(--surface-secondary); color: #111111; }
.btn-ghost-dark { background: transparent; color: #FAF7F0; border: 1px solid rgba(250,247,240,0.25); }
.btn-ghost-dark:hover { background: rgba(250,247,240,0.06); color: #FAF7F0; }
.btn-sm { height: 38px; padding: 0 16px; font-size: 13.5px; border-radius: 999px; }

/* ── Type helpers ─────────────────────────────────────────── */
.display-hero {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(52px, 7.4vw, 92px); line-height: 1.0; letter-spacing: -0.04em;
  margin: 0; text-wrap: balance; color: var(--content-primary);
}
.display-xl { font-family: var(--font-display); font-weight: 800; font-size: clamp(40px, 5vw, 64px); line-height: 1.04; letter-spacing: -0.035em; margin: 0; text-wrap: balance; color: var(--content-primary); }
.display-l2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(34px, 4vw, 48px); line-height: 1.08; letter-spacing: -0.03em; margin: 0; text-wrap: balance; color: var(--content-primary); }
.display-m2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 3vw, 36px); line-height: 1.12; letter-spacing: -0.025em; margin: 0; text-wrap: balance; color: var(--content-primary); }
.gold-dot { color: var(--brand-gold); }
.on-dark { color: #FAF7F0; }
.lead2 { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.55; color: var(--content-secondary); text-wrap: pretty; }
.eyebrow-gold {
  font-family: var(--font-ui); font-weight: 700; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--brand-gold-deep);
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow-gold.on-dark { color: var(--brand-gold); }
.eyebrow-gold .tick { width: 18px; height: 1.5px; background: currentColor; opacity: 0.7; }

/* ── Sections ─────────────────────────────────────────────── */
.section { padding: 104px 24px; }
.section-dark { background: var(--surface-hero); color: var(--content-on-hero); }
.section-warm {
  background:
    radial-gradient(90% 70% at 85% -10%, rgba(212,160,67,0.16) 0%, transparent 55%),
    linear-gradient(160deg, #241C12 0%, #17110B 60%, #141009 100%);
  color: var(--content-on-hero);
}
.section-quiet { background: var(--surface-secondary); }

/* ── HERO (shared) ────────────────────────────────────────── */
.hero { position: relative; overflow: clip; }
.hero-inner { position: relative; max-width: 1120px; margin: 0 auto; padding: 150px 24px 88px; }

/* variant switching */
body[data-hero] .hero-variant { display: none; }
body[data-hero="ambient"] #hero-ambient { display: block; }
body[data-hero="cream"] #hero-cream { display: block; }
body[data-hero="type"] #hero-type { display: block; }

/* ambient (dark, full-bleed) — richer gradient + drifting gold glows */
.hero-ambient {
  background:
    radial-gradient(70% 90% at 82% -8%, rgba(212,160,67,0.38) 0%, transparent 58%),
    radial-gradient(55% 65% at 8% 108%, rgba(212,160,67,0.16) 0%, transparent 60%),
    linear-gradient(135deg, #2A2218 0%, #4A3A1E 42%, #1F1915 100%);
  color: var(--content-on-hero);
}
.hero-ambient::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 96px; align-items: center; }
.hero-copy .lead2.on-dark { color: rgba(250,247,240,0.75); }

/* cream editorial */
.hero-cream { background: var(--surface-canvas); }
.hero-cream::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(55% 45% at 82% 8%, rgba(212,160,67,0.14) 0%, transparent 60%);
}

/* type-led */
.hero-type-inner { text-align: center; max-width: 880px; margin: 0 auto; }
.hero-type-inner .display-hero { font-size: clamp(56px, 9vw, 116px); }

/* launch pill */
.launch-pill {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
}
.launch-pill .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--brand-gold); }
.launch-pill.glass {
  color: rgba(250,247,240,0.9);
  background: rgba(255,255,255,0.07); border: 0.5px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(14px) saturate(180%); -webkit-backdrop-filter: blur(14px) saturate(180%);
}
.launch-pill.light { color: var(--content-secondary); background: #FFFFFF; border: 1px solid var(--border-default); box-shadow: var(--elevation-1); }

/* ── Waitlist form ────────────────────────────────────────── */
.wl { max-width: 460px; }
.wl-form { display: flex; gap: 10px; }
.wl-input {
  flex: 1; height: 52px; padding: 0 18px; border-radius: 12px; min-width: 0;
  font-family: var(--font-ui); font-size: 15px; color: var(--content-primary);
  background: #FFFFFF; border: 1px solid var(--border-default);
  transition: border-color var(--duration-fast) var(--ease-standard);
}
.wl-input::placeholder { color: var(--content-tertiary); }
.wl-input:focus { outline: 2px solid var(--border-focus); outline-offset: 2px; border-color: var(--border-focus); }
.on-dark-form .wl-input {
  background: rgba(255,255,255,0.08); border: 0.5px solid rgba(255,255,255,0.2); color: #FAF7F0;
}
.on-dark-form .wl-input::placeholder { color: rgba(250,247,240,0.5); }
.wl-btn { height: 52px; }
.wl-note { font-size: 13px; color: var(--content-tertiary); margin-top: 12px; }
.on-dark-form .wl-note { color: rgba(250,247,240,0.55); }

/* joined state */
.wl-joined { display: none; }
.wl.joined .wl-form, .wl.joined .wl-note { display: none; }
.wl.joined .wl-joined { display: block; }
.wl-card {
  border-radius: 16px; padding: 20px 22px;
  background: #FFFFFF; border: 1px solid var(--border-default); box-shadow: var(--elevation-1);
}
.on-dark-form .wl-card {
  background: rgba(255,255,255,0.07); border: 0.5px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(14px) saturate(180%); -webkit-backdrop-filter: blur(14px) saturate(180%);
}
.wl-pos-label { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand-gold-deep); }
.on-dark-form .wl-pos-label { color: var(--brand-gold); }
.wl-pos {
  font-family: var(--font-display); font-weight: 800; font-size: 40px; letter-spacing: -0.03em;
  line-height: 1.05; margin-top: 4px; font-variant-numeric: tabular-nums lining-nums;
}
.wl-pos-sub { font-size: 14px; color: var(--content-secondary); margin-top: 6px; }
.on-dark-form .wl-pos-sub { color: rgba(250,247,240,0.7); }
.wl-ref {
  display: flex; align-items: center; gap: 10px; margin-top: 14px; padding: 10px 12px;
  border-radius: 10px; background: rgba(17,17,17,0.04); border: 1px dashed var(--border-strong);
}
.on-dark-form .wl-ref { background: rgba(255,255,255,0.06); border: 1px dashed rgba(250,247,240,0.25); }
.wl-ref-link { flex: 1; font-family: var(--font-mono); font-size: 13px; color: inherit; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.wl-copy {
  height: 32px; padding: 0 12px; border-radius: 999px; border: none; cursor: pointer;
  background: var(--interactive-primary); color: #111; font-family: var(--font-ui);
  font-weight: 600; font-size: 12.5px; flex-shrink: 0;
  transition: background var(--duration-fast) var(--ease-standard), transform 120ms var(--ease-standard);
}
.wl-copy:hover { background: var(--interactive-primary-hover); }
.wl-copy:active { transform: scale(0.98); }

/* ── Countdown ────────────────────────────────────────────── */
body[data-countdown="off"] .countdown-wrap { display: none; }
.countdown { display: flex; gap: 8px; }
.cd-cell {
  min-width: 64px; padding: 11px 8px 9px; border-radius: 12px; text-align: center;
}
.cd-cell .cd-num {
  font-family: var(--font-display); font-weight: 800; font-size: 22px; line-height: 1;
  letter-spacing: -0.02em; font-variant-numeric: tabular-nums lining-nums;
}
.cd-cell .cd-lab { font-size: 9px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 5px; opacity: 0.6; }
.countdown.glass .cd-cell {
  background: rgba(255,255,255,0.07); border: 0.5px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(14px) saturate(180%); -webkit-backdrop-filter: blur(14px) saturate(180%);
  color: #FAF7F0;
}
.countdown.light .cd-cell { background: #FFFFFF; border: 1px solid var(--border-default); box-shadow: var(--elevation-1); color: var(--content-primary); }
.cd-caption { font-size: 12.5px; margin-top: 12px; opacity: 0.6; letter-spacing: 0.02em; }

/* ── Trust strip ──────────────────────────────────────────── */
.trust { border-top: 1px solid var(--border-divider); border-bottom: 1px solid var(--border-divider); background: var(--surface-canvas); }
.trust-inner {
  max-width: 1120px; margin: 0 auto; padding: 26px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.trust-lead { font-size: 14px; font-weight: 600; color: var(--content-secondary); display: inline-flex; align-items: center; gap: 10px; }
.trust-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.trust-stat { display: flex; align-items: baseline; gap: 8px; }
.trust-stat .n { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; font-variant-numeric: tabular-nums lining-nums; }
.trust-stat .l { font-size: 12.5px; color: var(--content-tertiary); }

/* ── Bento product grid ───────────────────────────────────── */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.tile {
  position: relative; border-radius: 24px; padding: 32px; overflow: hidden;
  background: var(--surface-primary); box-shadow: var(--elevation-1);
  display: flex; flex-direction: column; gap: 10px;
  text-decoration: none; color: var(--content-primary);
  transition: box-shadow var(--duration-base) var(--ease-standard), transform var(--duration-base) var(--ease-standard);
}
.tile:hover { box-shadow: var(--elevation-2); text-decoration: none; color: var(--content-primary); transform: translateY(-2px); }
.tile:active { transform: scale(0.99); }
.tile-7 { grid-column: span 7; } .tile-5 { grid-column: span 5; } .tile-4 { grid-column: span 4; }
.tile h3 { font-family: var(--font-display); font-weight: 800; font-size: 26px; letter-spacing: -0.02em; margin: 0; }
.tile p { font-size: 15px; line-height: 1.55; color: var(--content-secondary); margin: 0; max-width: 42ch; }
.tile .tile-go {
  margin-top: auto; padding-top: 18px; display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 600; color: var(--brand-gold-deep);
}
.tile:hover .tile-go { text-decoration: underline; }
.tile-dark { background: linear-gradient(150deg, #241C12 0%, #17110B 55%, #141009 100%); color: #FAF7F0; }
.tile-dark h3 { color: #FAF7F0; }
.tile-dark p { color: rgba(250,247,240,0.7); }
.tile-dark .tile-go { color: var(--brand-gold); }
.tile-dark:hover { color: #FAF7F0; }
.tile-goldline::before {
  content: ""; position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-gold), transparent); opacity: 0.55;
}
.tile-icon {
  width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: var(--brand-gold-pale); color: var(--brand-gold-deep); margin-bottom: 8px;
}
.tile-dark .tile-icon { background: rgba(212,160,67,0.16); color: var(--brand-gold); }
.tile-new {
  position: absolute; top: 24px; right: 24px; padding: 5px 11px; border-radius: 999px;
  background: var(--brand-gold); color: #111; font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
}

/* ── Credit-card render (CSS) ─────────────────────────────── */
.cc {
  position: relative; width: 340px; aspect-ratio: 1.586; border-radius: 18px;
  background: linear-gradient(135deg, #F6CE7A 0%, #D4A043 38%, #8B6914 100%);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.45);
  color: #2A1F08; padding: 20px 22px; overflow: hidden;
}
.cc::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}
.cc .cc-chip { width: 40px; height: 30px; border-radius: 6px; background: linear-gradient(135deg, #FFE9B8, #C48A1F); box-shadow: inset 0 0 0 1px rgba(122,84,10,0.4); }
.cc .cc-wm { position: absolute; top: 18px; right: 22px; font-family: var(--font-display); font-weight: 800; font-size: 24px; letter-spacing: -0.04em; }
.cc .cc-num { position: absolute; left: 22px; bottom: 52px; font-family: var(--font-display); font-weight: 600; font-size: 17px; letter-spacing: 0.14em; font-variant-numeric: tabular-nums; }
.cc .cc-name { position: absolute; left: 22px; bottom: 22px; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.75; }
.cc .cc-net { position: absolute; right: 22px; bottom: 20px; display: flex; }
.cc .cc-net i { width: 26px; height: 26px; border-radius: 999px; background: rgba(42,31,8,0.35); }
.cc .cc-net i + i { margin-left: -10px; background: rgba(42,31,8,0.2); }
.cc.cc-dark {
  background: linear-gradient(135deg, #2E2E30 0%, #111113 55%, #050506 100%);
  color: #FAF7F0; box-shadow: 0 24px 60px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.14);
}
.cc.cc-dark .cc-wm .wm-d, .cc .cc-wm .wm-d { color: var(--brand-gold); }
.cc.cc-dark .cc-chip { background: linear-gradient(135deg, #F6CE7A, #B8862D); }
.cc.cc-dark .cc-net i { background: rgba(250,247,240,0.28); }
.cc.cc-dark .cc-net i + i { background: rgba(250,247,240,0.14); }

/* ── Phone mock (marketing bezel) ─────────────────────────── */
.phone {
  width: 300px; height: 614px; border-radius: 46px; background: #000; padding: 5px;
  box-shadow: 0 48px 100px rgba(17,17,17,0.34), 0 0 0 1px rgba(0,0,0,0.2);
  flex-shrink: 0;
}
.phone-screen {
  position: relative; width: 100%; height: 100%; border-radius: 41px; overflow: hidden;
  background: radial-gradient(60% 50% at 15% 0%, #F5E6C8 0%, transparent 55%), linear-gradient(180deg, #FAF7F0 0%, #F1EDE3 100%);
}
.phone-notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 86px; height: 26px; border-radius: 999px; background: #000; z-index: 40;
}
.phone-sm { transform: scale(0.88); transform-origin: top center; }

/* in-phone: top bar */
.m-top { position: absolute; top: 0; left: 0; right: 0; z-index: 10; display: flex; align-items: center; gap: 9px; padding: 52px 16px 10px; background: linear-gradient(180deg, #FAF7F0 55%, transparent); }
.m-search { flex: 1; height: 34px; border-radius: 999px; display: flex; align-items: center; gap: 8px; padding: 0 13px; background: rgba(17,17,17,0.05); border: 0.5px solid rgba(17,17,17,0.08); color: var(--content-tertiary); font-size: 13px; }
.m-avatar { width: 34px; height: 34px; border-radius: 999px; background: #111; color: #FAF7F0; display: flex; align-items: center; justify-content: center; }

/* in-phone: hero card */
.m-scroll { position: absolute; inset: 0; padding: 100px 15px 96px; overflow: hidden; }
.m-hero {
  position: relative; border-radius: 22px; overflow: hidden; padding: 17px 18px 15px;
  background: var(--hero-tone-darkambient); box-shadow: var(--elevation-hero); color: var(--content-on-hero);
}
.m-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 90% at 88% 6%, rgba(212,160,67,0.34) 0%, transparent 58%); pointer-events: none; }
.m-hero-top { position: relative; display: flex; align-items: center; justify-content: space-between; }
.m-flag { width: 24px; height: 24px; border-radius: 999px; background: var(--flag-ngn-bg); color: var(--flag-ngn-fg); display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 12px; }
.m-cur { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; }
.m-curlab { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(250,247,240,0.5); }
.m-nuban { display: inline-flex; align-items: center; gap: 7px; padding: 4px 10px; border-radius: 999px; background: rgba(255,255,255,0.08); border: 0.5px solid rgba(255,255,255,0.18); font-family: var(--font-mono); font-size: 10.5px; color: var(--content-on-hero); }
.m-bal { position: relative; margin-top: 13px; font-family: var(--font-display); font-weight: 800; font-size: 37px; line-height: 1; letter-spacing: -0.03em; font-variant-numeric: tabular-nums lining-nums; white-space: nowrap; }
.m-bal .sym { font-family: var(--font-ui); font-weight: 700; font-size: 26px; opacity: 0.75; display: inline-block; transform: translateY(-3px); }
.m-bal .tail { font-size: 19px; font-weight: 600; opacity: 0.6; }
.m-dots { position: relative; display: flex; gap: 5px; margin-top: 12px; }
.m-dots i { width: 5px; height: 5px; border-radius: 999px; background: rgba(250,247,240,0.28); }
.m-dots i.on { width: 15px; background: var(--brand-gold); }
.m-actions { position: relative; display: flex; gap: 6px; margin-top: 15px; }
.m-act { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 10.5px; font-weight: 600; color: var(--content-on-hero); }
.m-act .c {
  width: 45px; height: 45px; border-radius: 999px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.13); border: 0.5px solid rgba(255,255,255,0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 6px 18px rgba(0,0,0,0.3);
}

/* in-phone: promo strip */
.m-promo {
  position: relative; margin-top: 14px; border-radius: 15px; overflow: hidden; padding: 11px 13px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0e0e0e 100%);
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  box-shadow: 0 6px 16px rgba(17,17,17,0.14); color: var(--content-on-hero);
}
.m-promo::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 90% at 86% 0%, rgba(212,160,67,0.26) 0%, transparent 55%); pointer-events: none; }
.m-promo::after { content: ""; position: absolute; top: 0; left: 8%; right: 8%; height: 0.5px; background: linear-gradient(90deg, transparent, var(--brand-gold), transparent); opacity: 0.55; }
.m-promo-eyebrow { display: inline-flex; align-items: center; gap: 5px; font-weight: 700; font-size: 8.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand-gold); margin-bottom: 3px; }
.m-promo-eyebrow i { width: 4px; height: 4px; border-radius: 999px; background: var(--brand-gold); }
.m-promo-t { font-family: var(--font-display); font-weight: 800; font-size: 13.5px; letter-spacing: -0.02em; }
.m-promo-s { font-size: 10px; color: rgba(250,247,240,0.6); margin-top: 2px; }
.m-minicard { position: relative; width: 50px; height: 31px; border-radius: 6px; background: linear-gradient(135deg, #F6CE7A 0%, #D4A043 38%, #8B6914 100%); box-shadow: 0 3px 8px rgba(0,0,0,0.4); flex-shrink: 0; transform: rotate(-8deg); }
.m-minicard::before { content: ""; position: absolute; top: 5px; left: 5px; width: 8px; height: 6px; border-radius: 1.5px; background: linear-gradient(135deg, #FFE9B8, #C48A1F); }

/* in-phone: transactions */
.m-txns { position: relative; margin-top: 14px; border-radius: 18px; padding: 14px 16px 6px; background: rgba(255,255,255,0.9); border: 0.5px solid rgba(255,255,255,0.9); box-shadow: 0 1px 2px rgba(17,17,17,0.04), 0 8px 22px rgba(17,17,17,0.06); }
.m-txns-glow { position: absolute; top: -12px; left: 18%; right: 18%; height: 24px; background: radial-gradient(60% 100% at 50% 100%, rgba(212,160,67,0.3) 0%, transparent 70%); pointer-events: none; }
.m-txns-lab { font-weight: 700; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--content-tertiary); }
.m-row { display: flex; align-items: center; gap: 11px; padding: 9px 0; }
.m-row + .m-row { border-top: 1px solid rgba(17,17,17,0.05); }
.m-ava { position: relative; width: 36px; height: 36px; flex-shrink: 0; }
.m-ava .i { width: 36px; height: 36px; border-radius: 999px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 12px; color: rgba(255,255,255,0.95); opacity: 0.9; }
.m-ava .b { position: absolute; right: -3px; bottom: -3px; width: 16px; height: 16px; border-radius: 999px; background: #fff; border: 1.5px solid rgba(17,17,17,0.06); display: flex; align-items: center; justify-content: center; box-shadow: 0 1px 3px rgba(17,17,17,0.15); }
.m-row-main { flex: 1; min-width: 0; }
.m-row-n { font-weight: 600; font-size: 12px; color: var(--content-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.m-row-s { font-size: 10px; color: var(--content-tertiary); margin-top: 1px; font-variant-numeric: tabular-nums; }
.m-row-a { font-family: var(--font-display); font-weight: 800; font-size: 13px; color: var(--content-primary); font-variant-numeric: tabular-nums lining-nums; white-space: nowrap; }

/* in-phone: glass tab bar */
.m-tabbar {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); z-index: 20;
  display: flex; gap: 2px; padding: 6px; border-radius: 999px;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(16px) saturate(180%); -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 0.5px solid rgba(255,255,255,0.7);
  box-shadow: 0 18px 50px rgba(0,0,0,0.30), 0 6px 16px rgba(0,0,0,0.16);
}
.m-tab { min-width: 50px; display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 7px 7px; border-radius: 999px; font-size: 9.5px; font-weight: 600; color: #595248; }
.m-tab.on { background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.78)); box-shadow: 0 2px 8px rgba(17,17,17,0.1), inset 0 1px 0 rgba(255,255,255,1); color: #111; }

/* ── Manifesto grid (minmax(0,…) prevents image-slot min-content blowout) ── */
.manifesto-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); gap: 72px; align-items: start; }
.manifesto-grid > * { min-width: 0; }
@media (max-width: 1020px) { .manifesto-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ── Steps ────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { border-radius: 20px; padding: 28px; background: var(--surface-primary); box-shadow: var(--elevation-1); }
.step .n { font-family: var(--font-display); font-weight: 800; font-size: 44px; letter-spacing: -0.03em; color: var(--brand-gold); line-height: 1; font-variant-numeric: tabular-nums lining-nums; }
.step h3 { font-family: var(--font-display); font-weight: 800; font-size: 21px; letter-spacing: -0.018em; margin: 14px 0 0; }
.step p { font-size: 14.5px; line-height: 1.55; color: var(--content-secondary); margin: 6px 0 0; }

/* ── Security ─────────────────────────────────────────────── */
.sec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.sec-item { padding: 4px 0; }
.sec-item .tile-icon { margin-bottom: 14px; }
.sec-item h4 { font-family: var(--font-ui); font-weight: 700; font-size: 16px; margin: 0; }
.sec-item p { font-size: 14px; line-height: 1.55; color: var(--content-secondary); margin: 5px 0 0; }

/* ── Feature rows (product pages) ─────────────────────────── */
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.frow.flip > .frow-visual { order: -1; }
.flist { padding: 0; margin: 28px 0 0; list-style: none; display: flex; flex-direction: column; gap: 13px; }
.flist li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.5; }
.flist li .fi { flex-shrink: 0; width: 22px; height: 22px; border-radius: 999px; background: var(--brand-gold-pale); color: var(--brand-gold-deep); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.on-dark-list .flist li { color: rgba(250,247,240,0.85); }
.on-dark-list .flist li .fi { background: rgba(212,160,67,0.18); color: var(--brand-gold); }

/* stat chips (product pages) */
.stat-row { display: flex; gap: 36px; margin-top: 36px; flex-wrap: wrap; }
.stat .sn { font-family: var(--font-display); font-weight: 800; font-size: 34px; letter-spacing: -0.025em; line-height: 1; font-variant-numeric: tabular-nums lining-nums; }
.stat .sl { font-size: 13px; color: var(--content-tertiary); margin-top: 6px; }
.on-dark .stat .sl, .section-warm .stat .sl { color: rgba(250,247,240,0.55); }

/* ── CTA card ─────────────────────────────────────────────── */
.cta-card {
  position: relative; overflow: hidden; border-radius: 32px; padding: 76px 48px; text-align: center;
  background:
    radial-gradient(70% 100% at 80% -20%, rgba(212,160,67,0.28) 0%, transparent 60%),
    linear-gradient(150deg, #241C12 0%, #17110B 55%, #141009 100%);
  color: var(--content-on-hero); box-shadow: var(--elevation-hero);
}
.cta-card::before { content: ""; position: absolute; top: 0; left: 12%; right: 12%; height: 1px; background: linear-gradient(90deg, transparent, var(--brand-gold), transparent); opacity: 0.55; }

/* ── Footer ───────────────────────────────────────────────── */
.footer { background: var(--surface-hero); color: var(--content-on-hero); padding: 72px 24px 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer p { font-size: 14px; line-height: 1.6; color: rgba(250,247,240,0.65); max-width: 320px; margin: 12px 0 0; }
.footer-col-t { font-weight: 600; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(250,247,240,0.5); }
.footer-col ul { padding: 0; margin: 14px 0 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(250,247,240,0.85); text-decoration: none; }
.footer-col a:hover { color: var(--brand-gold); text-decoration: underline; }
.footer-hr { height: 1px; background: rgba(250,247,240,0.08); margin: 48px 0 24px; }
.footer-fine { font-size: 12px; line-height: 1.65; color: rgba(250,247,240,0.45); max-width: 720px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 20px; font-size: 13px; color: rgba(250,247,240,0.5); flex-wrap: wrap; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 999px; display: flex; align-items: center; justify-content: center;
  color: rgba(250,247,240,0.75); border: 1px solid rgba(250,247,240,0.16);
  transition: border-color var(--duration-fast) var(--ease-standard), color var(--duration-fast) var(--ease-standard);
}
.footer-social a:hover { color: var(--brand-gold); border-color: var(--brand-gold); text-decoration: none; }

/* ── Reveal on scroll ─────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  body.anim .rv { opacity: 0; transform: translateY(14px); }
  body.anim .rv.in { opacity: 1; transform: none; transition: opacity var(--duration-slow) var(--ease-enter), transform var(--duration-slow) var(--ease-enter); }
  body.anim .rv-d1.in { transition-delay: 70ms; } body.anim .rv-d2.in { transition-delay: 140ms; } body.anim .rv-d3.in { transition-delay: 210ms; }
}

/* ── Hero entrance choreography ───────────────────────────────
   Hidden state applies ONLY while body.anim (set by JS) and not
   yet .loaded — so no-JS, reduced-motion, and frozen iframes all
   render the hero visible. ── */
@media (prefers-reduced-motion: no-preference) {
  body.anim .he { opacity: 0; transform: translateY(18px); }
  body.anim.loaded .he {
    opacity: 1; transform: none;
    transition: opacity var(--duration-hero) var(--ease-enter), transform var(--duration-hero) var(--ease-enter);
  }
  body.anim.loaded .he-1 { transition-delay: 40ms; }
  body.anim.loaded .he-2 { transition-delay: 140ms; }
  body.anim.loaded .he-3 { transition-delay: 560ms; }
  body.anim.loaded .he-4 { transition-delay: 680ms; }
  body.anim.loaded .he-5 { transition-delay: 800ms; }
  body.anim .he-phone { opacity: 0; transform: translateY(36px) scale(0.97); }
  body.anim.loaded .he-phone {
    opacity: 1; transform: none;
    transition: opacity 760ms var(--ease-enter) 480ms, transform 760ms var(--ease-enter) 480ms;
  }
}

/* ── Headline word reveal + gold gleam ──────────────────────
   JS splits [data-headline] into .hw word masks; words rise out of
   their masks, the gold dot lands last, then a text-clipped gold
   gleam sweeps through the glyphs (app ShimmerStreak, 900ms curve). ── */
.hl { position: relative; }
.hw { display: inline-block; overflow: hidden; vertical-align: bottom; padding: 0.05em 0.02em 0.09em; margin: -0.05em -0.02em -0.09em; }
.hw > span { display: inline-block; }
.hl .gold-dot { display: inline-block; }
.hw > span.gleam {
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-repeat: no-repeat;
}
@media (prefers-reduced-motion: no-preference) {
  body.anim .hw > span { transform: translateY(115%); opacity: 0.25; filter: blur(6px); }
  body.anim.loaded .hw > span {
    transform: none; opacity: 1; filter: blur(0);
    transition: transform 820ms var(--ease-emphasised), opacity 520ms linear, filter 640ms var(--ease-standard);
  }
  body.anim .hl .gold-dot { opacity: 0; transform: translateY(0.14em) scale(0.4); }
  body.anim.loaded .hl .gold-dot { opacity: 1; transform: none; transition: opacity 420ms var(--ease-enter), transform 480ms var(--ease-enter); }
  body.noanim .hw > span, body.noanim .he, body.noanim .he-phone, body.noanim .hl .gold-dot,
  body.replay .hw > span, body.replay .he, body.replay .he-phone, body.replay .hl .gold-dot { transition: none !important; }
}
.scroll-cue {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 44px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.45;
}
@media (prefers-reduced-motion: no-preference) {
  .scroll-cue { animation: cue 2.6s var(--ease-standard) infinite; }
  @keyframes cue { 0%, 100% { opacity: 0.45; } 50% { opacity: 0.2; } }
}

/* ── Parallax layers ──────────────────────────────────────── */
[data-plx] { will-change: transform; }
.hero-glow {
  position: absolute; pointer-events: none; border-radius: 999px; filter: blur(60px);
  background: radial-gradient(closest-side, rgba(212,160,67,0.32), transparent 70%);
}

/* ── Marquee ticker ───────────────────────────────────────── */
body[data-ticker="off"] .marquee { display: none; }
.marquee {
  position: relative; overflow: hidden; background: #111111; color: rgba(250,247,240,0.85);
  padding: 15px 0; white-space: nowrap;
}
.marquee::before { content: ""; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--brand-gold), transparent); opacity: 0.5; }
.marquee-track { display: inline-flex; align-items: center; width: max-content; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 40px; padding-right: 40px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
}
.marquee-item .gd { width: 6px; height: 6px; border-radius: 999px; background: var(--brand-gold); flex-shrink: 0; }
@media (prefers-reduced-motion: no-preference) {
  .marquee-track { animation: mq 46s linear infinite; }
  @keyframes mq { to { transform: translateX(-50%); } }
}

/* ── Nav scrolled state ───────────────────────────────────── */
.nav-wrap.scrolled .nav { box-shadow: var(--elevation-2); }

/* ── Sticky app showcase ──────────────────────────────────── */
.showcase { position: relative; height: 330vh; }
.showcase-sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; align-items: center;
}
.showcase-grid {
  display: grid; grid-template-columns: 1fr auto; gap: 72px; align-items: center;
  max-width: 1120px; margin: 0 auto; padding: 0 24px; width: 100%;
}
.sc-captions { position: relative; min-height: 320px; }
.sc-cap {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center;
  opacity: 0; transform: translateY(18px); pointer-events: none;
  transition: opacity var(--duration-slow) var(--ease-enter), transform var(--duration-slow) var(--ease-enter);
}
.sc-cap.on { opacity: 1; transform: none; pointer-events: auto; }
.sc-dots { display: flex; gap: 8px; margin-top: 40px; }
.sc-dots i { width: 26px; height: 3px; border-radius: 999px; background: rgba(212,160,67,0.22); transition: background var(--duration-base) var(--ease-standard); }
.sc-dots i.on { background: var(--brand-gold); }
.sc-phone-wrap { position: relative; }
.m-screen { position: absolute; inset: 0; opacity: 0; transition: opacity var(--duration-slow) var(--ease-standard); }
.m-screen.on { opacity: 1; }

/* ── In-phone: transfers chat mock ────────────────────────── */
.t-head { position: absolute; top: 0; left: 0; right: 0; z-index: 10; display: flex; align-items: center; gap: 10px; padding: 52px 16px 12px; background: linear-gradient(180deg, #FAF7F0 62%, transparent); }
.t-ava { width: 34px; height: 34px; border-radius: 999px; background: var(--cat-transport); color: rgba(255,255,255,0.95); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 12px; }
.t-name { font-weight: 600; font-size: 13.5px; color: var(--content-primary); line-height: 1.2; }
.t-sub { font-size: 10.5px; color: var(--brand-gold-deep); font-weight: 600; }
.t-body { position: absolute; inset: 0; padding: 108px 16px 86px; display: flex; flex-direction: column; gap: 8px; overflow: hidden; }
.t-sep { align-self: center; font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--content-tertiary); margin: 6px 0; }
.t-bub { align-self: flex-end; max-width: 78%; border-radius: 16px 16px 4px 16px; padding: 10px 13px; background: #FFFFFF; box-shadow: var(--elevation-1); text-align: right; }
.t-bub.in { align-self: flex-start; border-radius: 16px 16px 16px 4px; background: var(--surface-brand-subtle); text-align: left; }
.t-bub .ta { font-family: var(--font-display); font-weight: 800; font-size: 16px; letter-spacing: -0.02em; color: var(--content-primary); font-variant-numeric: tabular-nums lining-nums; }
.t-bub .tn { font-size: 11px; color: var(--content-secondary); margin-top: 2px; }
.t-bub .tt { font-size: 9.5px; color: var(--content-tertiary); margin-top: 3px; font-variant-numeric: tabular-nums; }
.t-send { position: absolute; left: 16px; right: 16px; bottom: 22px; height: 46px; border-radius: 999px; background: var(--interactive-primary); color: #111; display: flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; font-size: 14px; box-shadow: var(--elevation-2); }

/* ── In-phone: savings mock ───────────────────────────────── */
.g-body { position: absolute; inset: 0; padding: 104px 15px 96px; display: flex; flex-direction: column; gap: 12px; overflow: hidden; }
.g-title { font-family: var(--font-display); font-weight: 800; font-size: 21px; letter-spacing: -0.02em; color: var(--content-primary); }
.g-total {
  position: relative; border-radius: 18px; padding: 15px 16px; overflow: hidden;
  background: var(--material-glass-gold-bg); border: 1px solid var(--material-glass-gold-border);
}
.g-total .gl { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand-gold-deep); }
.g-total .gn { font-family: var(--font-display); font-weight: 800; font-size: 28px; letter-spacing: -0.03em; color: var(--content-primary); margin-top: 4px; font-variant-numeric: tabular-nums lining-nums; }
.g-total .gs { font-size: 11px; color: var(--money-positive); font-weight: 600; margin-top: 3px; font-variant-numeric: tabular-nums; }
.g-vault { border-radius: 16px; padding: 13px 14px; background: rgba(255,255,255,0.9); border: 0.5px solid rgba(255,255,255,0.9); box-shadow: 0 1px 2px rgba(17,17,17,0.04), 0 8px 22px rgba(17,17,17,0.06); display: flex; align-items: center; gap: 12px; }
.g-ic { width: 36px; height: 36px; border-radius: 11px; background: var(--brand-gold-pale); color: var(--brand-gold-deep); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.g-main { flex: 1; min-width: 0; }
.g-n { font-weight: 600; font-size: 12.5px; color: var(--content-primary); }
.g-s { font-size: 10.5px; color: var(--content-tertiary); margin-top: 1px; font-variant-numeric: tabular-nums; }
.g-a { font-family: var(--font-display); font-weight: 800; font-size: 13.5px; color: var(--content-primary); font-variant-numeric: tabular-nums lining-nums; white-space: nowrap; }
.g-rate { display: inline-flex; padding: 3px 8px; border-radius: 999px; background: var(--brand-gold-pale); color: var(--brand-gold-deep); font-size: 9.5px; font-weight: 700; letter-spacing: 0.06em; }
.g-bar { height: 4px; border-radius: 999px; background: rgba(17,17,17,0.07); margin-top: 7px; overflow: hidden; }
.g-bar i { display: block; height: 100%; width: 64%; border-radius: 999px; background: var(--brand-gold); }

/* ── Tilt (interactive card) ──────────────────────────────── */
.tilt-wrap { perspective: 1000px; }
.tilt { transition: transform 480ms var(--ease-standard); transform-style: preserve-3d; }
.tilt.tilting { transition: transform 80ms linear; }

/* ── Screenshot placeholder frame (product pages) ─────────── */
.ph-frame {
  border-radius: 28px; border: 1.5px dashed var(--border-strong);
  background: repeating-linear-gradient(45deg, rgba(17,17,17,0.02) 0 14px, transparent 14px 28px), var(--surface-secondary);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  color: var(--content-tertiary); text-align: center; padding: 24px; min-height: 320px;
}
.ph-frame .ph-t { font-weight: 600; font-size: 14px; color: var(--content-secondary); }
.ph-frame .ph-s { font-size: 12.5px; max-width: 30ch; }
.ph-frame.on-dark-ph { border-color: rgba(250,247,240,0.25); background: repeating-linear-gradient(45deg, rgba(250,247,240,0.03) 0 14px, transparent 14px 28px), rgba(255,255,255,0.04); color: rgba(250,247,240,0.55); }
.ph-frame.on-dark-ph .ph-t { color: rgba(250,247,240,0.8); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-grid .hero-visual { justify-content: flex-start; }
  .showcase { height: auto; }
  .showcase-sticky { position: static; height: auto; padding: 72px 0; }
  .showcase-grid { grid-template-columns: 1fr; gap: 48px; }
  .sc-captions { min-height: 0; display: flex; flex-direction: column; gap: 40px; }
  .sc-cap { position: static; opacity: 1; transform: none; pointer-events: auto; }
  .sc-dots { display: none; }
  .sc-phone-wrap .m-screen { position: absolute; }
  .tile-7, .tile-5, .tile-4 { grid-column: span 12; }
  .frow { grid-template-columns: 1fr; gap: 40px; }
  .frow.flip > .frow-visual { order: 0; }
  .steps { grid-template-columns: 1fr; }
  .sec-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-badge { display: none; }
  .section { padding: 72px 24px; }
  .cd-cell { min-width: 0; flex: 1; }
  .countdown { width: 100%; }
  .cd-cell .cd-num { font-size: 28px; }
  .wl-form { flex-direction: column; }
  .sec-grid { grid-template-columns: 1fr; }
  .trust-inner { justify-content: flex-start; }
  .phone { width: 272px; height: 557px; }
  .cta-card { padding: 56px 24px; }
}
