/* ===== Omega International Trust - landing facade =====
   Vanilla CSS, zero deps. Primexbt-inspired premium dark theme,
   Omega brand navy (#262841) + emerald/rose trading accents. */

/* ===== Self-hosted fonts (no CDN, works file:// and prod) =====
   Roboto = body/UI, Roboto Condensed = display/headings.
   Matches PrimeXBT reference. Latin subset, Apache 2.0. */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/roboto-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/roboto-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/roboto-latin-700-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("assets/fonts/roboto-latin-900-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/roboto-condensed-latin-700-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/roboto-condensed-latin-800-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("assets/fonts/roboto-condensed-latin-900-normal.woff2") format("woff2");
}

:root {
  /* type system */
  --font-body: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Roboto Condensed", "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* brand palette: #131420 base / #262840 surface / #bd9a5f gold accent */
  --navy-900: #161826;
  --navy-800: #1a1b2c;
  --navy-700: #262840;   /* Omega surface */
  --navy-600: #30324f;
  --ink: #1b1d2e;        /* base background */

  --text: #f1ede4;       /* warm off-white */
  --text-dim: #b3b1c0;
  --text-mute: #7e7d90;

  --gold: #bd9a5f;       /* brand accent */
  --gold-2: #d8b87e;     /* lighter gold (gradient hi) */
  --gold-3: #9c7c44;     /* darker gold */

  --up: #4fb98a;         /* muted green - data only */
  --down: #e0586c;       /* muted rose - data only */
  --accent: var(--gold);
  --accent-2: var(--gold-2);

  --line: rgba(189,154,95,.16);
  --line-strong: rgba(189,154,95,.28);
  --glass: rgba(255,255,255,.035);
  --glass-2: rgba(255,255,255,.055);

  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --header-h: 72px;

  --shadow: 0 20px 60px rgba(0,0,0,.45);
}

* { box-sizing: border-box; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
html { margin: 0; padding: 0; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0; padding: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 82% -12%, rgba(189,154,95,.16), transparent 60%),
    radial-gradient(900px 520px at -5% 2%, rgba(38,40,64,.65), transparent 55%),
    var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--font-display); margin: 0 0 .4em; line-height: 1.1; font-weight: 800; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.5rem); }
p { margin: 0 0 1rem; color: var(--text-dim); }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }
.narrow { max-width: 820px; }
.center { text-align: center; }
.grad { background: linear-gradient(90deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.eyebrow { display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: .6rem; }
.num { text-align: right; }

/* ===== Buttons ===== */
.btn {
  --bg: transparent; --fg: var(--text); --bd: var(--line-strong);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .7rem 1.2rem; border-radius: var(--radius-sm); font-weight: 700; font-size: .95rem;
  border: 1px solid var(--bd); background: var(--bg); color: var(--fg);
  cursor: pointer; transition: transform .15s ease, background .2s ease, box-shadow .2s ease, opacity .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; filter: grayscale(.3); }
.btn:disabled:hover { transform: none; box-shadow: none; }
.btn--primary { --bg: linear-gradient(90deg, var(--gold-2), var(--gold)); --fg: #1a1407; --bd: transparent; box-shadow: 0 8px 24px rgba(189,154,95,.32); }
.btn--primary:hover { box-shadow: 0 12px 30px rgba(189,154,95,.42); }
.btn--login { --bg: transparent; --bd: transparent; color: var(--text-dim); }
.btn--login:hover { color: var(--text); }
.btn--lg { padding: .9rem 1.6rem; font-size: 1.02rem; }

/* ===== Header ===== */
.topbar { position: sticky; top: 0; z-index: 60; }
.header {
  position: relative; z-index: 50; height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(13,14,26,.72); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; gap: 24px; }
.header__logo img { height: 38px; width: auto; }
.nav { display: flex; gap: 4px; margin-left: 12px; }
.nav__link { position: relative; padding: .5rem .8rem; border-radius: 8px; color: var(--text-dim); font-weight: 500; font-size: .95rem; transition: color .15s, background .15s; }
/* hover matches the active (scrollspy) state: gold text only (no bg, the pill owns that) */
.nav__link:hover { color: var(--gold-2); }
/* scrollspy: the active link goes gold; a sliding underline bar marks it */
.nav__link.is-active { color: var(--gold-2); font-weight: 700; }

/* sliding gold underline bar that glides under the active link */
.nav { position: relative; }
.nav__pill {
  position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
  z-index: 0; pointer-events: none; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold));
  opacity: 0;
  transition: left .32s cubic-bezier(.4,0,.2,1), width .32s cubic-bezier(.4,0,.2,1), opacity .25s ease;
}
.nav__pill.is-on { opacity: 1; }
.nav__link { z-index: 1; }
.header__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.nav__toggle { display: none; margin-left: auto; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav__toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: absolute; top: 100%; left: 0; right: 0; z-index: 49;
  background: rgba(13,14,26,.98); border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 4px;
  overflow: hidden; max-height: 0; opacity: 0; padding: 0 20px;
  pointer-events: none; visibility: hidden;
  transition: max-height .34s cubic-bezier(.2,.7,.2,1), opacity .25s ease, padding .34s ease, visibility 0s linear .34s;
}
.mobile-nav.open {
  max-height: 85vh; opacity: 1; padding: 14px 20px 22px;
  pointer-events: auto; visibility: visible;
  transition: max-height .34s cubic-bezier(.2,.7,.2,1), opacity .25s ease, padding .34s ease, visibility 0s;
}
.mobile-nav__link {
  padding: .75rem .4rem; border-bottom: 1px solid var(--line); color: var(--text-dim); font-weight: 500;
  opacity: 0; transform: translateY(-6px); transition: opacity .25s ease, transform .25s ease;
}
.mobile-nav__link:hover { color: var(--gold-2); }
.mobile-nav__link.is-active { color: var(--gold-2); font-weight: 700; }
.mobile-nav.open .mobile-nav__link { opacity: 1; transform: none; }
.mobile-nav.open .mobile-nav__link:nth-child(1) { transition-delay: .06s; }
.mobile-nav.open .mobile-nav__link:nth-child(2) { transition-delay: .1s; }
.mobile-nav.open .mobile-nav__link:nth-child(3) { transition-delay: .14s; }
.mobile-nav.open .mobile-nav__link:nth-child(4) { transition-delay: .18s; }
.mobile-nav.open .mobile-nav__link:nth-child(5) { transition-delay: .22s; }
.mobile-nav.open .mobile-nav__link:nth-child(6) { transition-delay: .26s; }
.mobile-nav.open .mobile-nav__link:nth-child(7) { transition-delay: .3s; }
.mobile-nav.open .mobile-nav__link:nth-child(8) { transition-delay: .34s; }
.mobile-nav__cta { margin-top: 14px; opacity: 0; transform: translateY(-6px); transition: opacity .25s ease, transform .25s ease; }
.mobile-nav.open .mobile-nav__cta { opacity: 1; transform: none; transition-delay: .38s; }

/* ===== Hero ===== */
.hero { padding: 0 0 clamp(48px, 8vw, 96px); margin-top: clamp(-32px, -3vw, -12px); }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.hero__sub { font-size: 1.12rem; max-width: 46ch; margin-bottom: 1.6rem; }
.hero__trust { list-style: none; display: flex; justify-content: center; gap: 10px; padding: 0; margin: .8rem 0 0; flex-wrap: wrap; max-width: 46ch; }
.hero__trust li {
  flex: 1 1 0; min-width: 88px; text-align: center;
  display: flex; flex-direction: column; gap: 3px;
  padding: 12px 10px; border-radius: var(--radius-sm);
  color: var(--text-mute); font-size: .72rem;
  background: linear-gradient(180deg, var(--glass-2), var(--glass));
  border: 1px solid var(--line-strong);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.hero__trust li:hover { transform: translateY(-3px); border-color: var(--line-strong); box-shadow: 0 8px 20px rgba(189,154,95,.1); }
.hero__trust strong {
  display: block; font-family: var(--font-display); font-size: 1.45rem; font-weight: 900; letter-spacing: -.01em;
  font-variant-numeric: tabular-nums; line-height: 1;
  background: linear-gradient(90deg, var(--gold-2), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent;
}

.hero__media { position: relative; display: flex; justify-content: center; align-items: center; min-height: 540px; }
.hero__glow { position: absolute; inset: 0; margin: auto; width: 92%; height: 92%; border-radius: 50%; filter: blur(90px); background: radial-gradient(circle, rgba(189,154,95,.34), rgba(38,40,64,.4) 45%, transparent 70%); }
.hero__phone { position: relative; max-width: 480px; width: 108%; height: auto; filter: drop-shadow(0 50px 90px rgba(0,0,0,.6)); will-change: transform; }
.up { color: var(--up); } .down { color: var(--down); }

/* ===== Live trading card (hero centerpiece) =====
   Floating glass dashboard: brand + LIVE pill, animated gold sparkline, and
   scrolling price rows. Reads as the product, not a logo. Rows + sparkline
   path are fed by main.js; everything else is CSS. */
.tradecard {
  position: relative; isolation: isolate; will-change: transform;
  width: min(420px, 92%);
  padding: 22px 22px 20px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(48,50,79,.55), rgba(22,24,38,.92));
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 80px -24px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  animation: cardFloat 7s ease-in-out infinite;
}
@keyframes cardFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* gold glow bleeding from behind the card */
.tradecard__halo {
  position: absolute; z-index: -1; inset: -10% -6%; border-radius: 50%;
  background: radial-gradient(60% 55% at 50% 40%, rgba(189,154,95,.32), rgba(189,154,95,0) 70%);
  filter: blur(26px); animation: cardPulse 5s ease-in-out infinite;
}
@keyframes cardPulse { 0%,100% { opacity: .6; transform: scale(1); } 50% { opacity: 1; transform: scale(1.06); } }

/* head: brand mark + live pill */
.tradecard__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.tradecard__brand { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; letter-spacing: .01em; color: var(--text); }
.tradecard__mark { width: 26px; height: 26px; }
.tradecard__mark path { fill: url(#omegaGold); filter: drop-shadow(0 3px 10px rgba(189,154,95,.4)); }
.tradecard__live {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; color: var(--up);
  padding: 4px 10px; border-radius: 999px;
  background: rgba(79,185,138,.12); border: 1px solid rgba(79,185,138,.3);
}
.tradecard__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--up); box-shadow: 0 0 0 0 rgba(79,185,138,.6); animation: livePulse 1.8s ease-out infinite; }
@keyframes livePulse { 0% { box-shadow: 0 0 0 0 rgba(79,185,138,.55); } 70%,100% { box-shadow: 0 0 0 7px rgba(79,185,138,0); } }

/* sparkline chart */
.tradecard__chart {
  position: relative; height: 110px; margin: 0 -4px 16px;
  border-radius: 14px; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(189,154,95,.04), transparent 60%),
    repeating-linear-gradient(to right, transparent 0 39px, rgba(255,255,255,.03) 39px 40px);
}
.tradecard__spark { width: 100%; height: 100%; display: block; overflow: visible; }
.tradecard__line {
  stroke-dasharray: 600; stroke-dashoffset: 600;
  filter: drop-shadow(0 2px 8px rgba(189,154,95,.45));
  animation: sparkDraw 1.8s cubic-bezier(.5,0,.2,1) forwards .3s;
}
.tradecard__area { opacity: 0; animation: sparkFade 1s ease forwards 1.5s; }
.tradecard__tip  { opacity: 0; animation: sparkFade .6s ease forwards 1.9s; }
@keyframes sparkDraw { to { stroke-dashoffset: 0; } }
@keyframes sparkFade { to { opacity: 1; } }

/* price rows */
.tradecard__rows { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.tradecard__row {
  display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 12px;
  padding: 9px 6px; border-radius: 10px;
  opacity: 0; transform: translateY(8px);
  animation: rowIn .5s ease forwards;
  transition: background .2s ease;
}
.tradecard__row:hover { background: rgba(255,255,255,.03); }
.tradecard__row + .tradecard__row { border-top: 1px solid rgba(255,255,255,.04); }
@keyframes rowIn { to { opacity: 1; transform: translateY(0); } }
.tradecard__sym { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .9rem; color: var(--text); }
.tradecard__sym::before { content: ""; width: 7px; height: 7px; border-radius: 2px; background: var(--gold); box-shadow: 0 0 8px rgba(189,154,95,.6); }
.tradecard__px  { font-variant-numeric: tabular-nums; font-weight: 600; font-size: .9rem; color: var(--text-dim); }
.tradecard__pct {
  font-variant-numeric: tabular-nums; font-weight: 700; font-size: .82rem;
  min-width: 64px; text-align: right; padding: 3px 8px; border-radius: 7px;
}
.tradecard__pct.up   { color: var(--up);   background: rgba(79,185,138,.1); }
.tradecard__pct.down { color: var(--down); background: rgba(224,88,108,.1); }

.tradecard__note { display: block; margin-top: 12px; text-align: center; font-size: .66rem; letter-spacing: .04em; color: var(--text-mute); }

@media (max-width: 900px) { .tradecard { width: min(360px, 90%); padding: 18px; } .tradecard__chart { height: 92px; } }

/* Reduced-motion: drop float/draw, keep the live dot pulse only. */
@media (prefers-reduced-motion: reduce) {
  .tradecard { animation: none; }
  .tradecard__halo { animation: none; }
  .tradecard__line { stroke-dashoffset: 0; animation: none; }
  .tradecard__area, .tradecard__tip { opacity: 1; animation: none; }
  .tradecard__row { opacity: 1; transform: none; animation: none; }
}

/* ===== Mouse-follow gold spotlight on cards =====
   JS sets --mx/--my (cursor position) and toggles --on (0/1). One shared,
   subtle gold radial follows the cursor on hover. Tune it in one place below. */
.spotlight {
  position: relative;
  --glow: radial-gradient(300px circle at var(--mx, 50%) var(--my, 50%),
          rgba(189,154,95,.07), transparent 70%);
}
.spotlight::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  border-radius: inherit; opacity: var(--on, 0); transition: opacity .25s ease;
  background: var(--glow);
}
/* keep card content above the glow; buttons stay above it too */
.spotlight > * { position: relative; z-index: 1; }
.spotlight .btn { position: relative; z-index: 2; }

/* trustcard & tcard already use ::before (top bar / quote mark) -> glow on ::after */
.trustcard.spotlight::after, .tcard.spotlight::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  border-radius: inherit; opacity: var(--on, 0); transition: opacity .25s ease;
  background: var(--glow);
}

/* ===== Trust strip ===== */
/* trust strip now lives inside the hero, below the hero grid */
.strip__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: clamp(32px, 5vw, 56px); }
.strip__card {
  background: var(--glass); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.reveal-group.is-visible > .strip__card:hover,
.strip__card:hover {
  transform: translateY(-3px); border-color: var(--line-strong); box-shadow: 0 8px 20px rgba(189,154,95,.1);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  transition-delay: 0s;        /* cancel the stagger delay so hover is instant + smooth */
}
.strip__card h3 { font-size: 1.1rem; }
.strip__card p { margin: 0; font-size: .95rem; }

/* ===== Sections =====
   Every section is one screen tall, content vertically centered, with a thin
   separator line on top. Backgrounds alternate so neighbours stay distinct. */
.section {
  padding: clamp(40px, 6vw, 72px) 0;
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  border-top: 1px solid var(--line);          /* separator between every section */
}
.section > .container { width: 100%; }

/* ---- BG scheme A (default): clean alternating base / surface ---- */
.section { background: var(--ink); }
.section--alt { background-color: var(--navy-800); background-image: linear-gradient(180deg, rgba(38,40,65,.45), transparent 60%); }

/* ---- BG scheme B (toggle: <html class="bg-b">): deeper contrast + gold glow on alt ---- */
html.bg-b .section { background: var(--navy-900); }
html.bg-b .section--alt {
  background-color: var(--navy-800);
  background-image:
    radial-gradient(900px 380px at 50% -10%, rgba(189,154,95,.10), transparent 60%),
    linear-gradient(180deg, rgba(48,50,79,.5), transparent 55%);
}

.section__head { max-width: 640px; margin-bottom: 40px; }
.section__lead { font-size: 1.05rem; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
#about p strong { color: #d6d3e0; font-weight: 600; }

/* about trust card */
.trustcard {
  background: linear-gradient(180deg, var(--glass-2), var(--glass));
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.trustcard::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-3));
}
.trustcard__head { display: flex; align-items: center; gap: 14px; padding-bottom: 18px; margin-bottom: 6px; border-bottom: 1px solid var(--line); }
.trustcard__head strong { display: block; color: var(--text); font-size: 1.05rem; }
.trustcard__head small { color: var(--text-mute); font-size: .82rem; }
.trustcard__badge {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center;
  background: rgba(189,154,95,.14); border: 1px solid var(--line-strong);
}
.trustcard__badge svg { width: 26px; height: 26px; fill: var(--gold-2); }
.trustcard__list { list-style: none; padding: 0; margin: 0; }
.trustcard__list li { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.trustcard__list li:last-child { border-bottom: 0; }
.trustcard__k { color: var(--text-mute); font-size: .92rem; }
.trustcard__v { color: var(--text); font-weight: 700; font-size: .95rem; }
.trustcard__foot { margin: 14px 0 0; padding-top: 14px; border-top: 1px solid var(--line); font-size: .78rem; color: var(--text-mute); text-align: center; }

/* scrolling ticker tape (marquee, names only, click -> TradingView) */
.ticker-tape {
  margin-bottom: 24px; display: flex; flex-direction: column; gap: clamp(14px, 2.5vh, 28px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
/* each of the 3 rows is its own bordered strip */
.ticker-tape__row {
  overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--glass-2), var(--glass));
}
.ticker-tape__track {
  display: flex; width: max-content; align-items: stretch; white-space: nowrap;
  animation: tickerScroll 50s linear infinite; will-change: transform;
}
/* middle row scrolls the opposite direction */
.ticker-tape__row--rev .ticker-tape__track { animation-name: tickerScrollRev; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes tickerScrollRev { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.ticker-tape__item {
  display: inline-flex; align-items: baseline; gap: 10px; flex-shrink: 0;
  padding: clamp(18px, 2.6vh, 30px) 28px; border-right: 1px solid var(--line);
  transition: background .15s ease;
}
.ticker-tape__item:hover { background: rgba(189,154,95,.1); }
.ticker-tape__name { font-weight: 700; color: var(--text); font-size: 1.02rem; }
/* fixed-width chg so cells never resize when the % changes */
.ticker-tape__chg {
  font-size: .9rem; font-weight: 700; font-variant-numeric: tabular-nums;
  min-width: 56px; text-align: right; display: inline-block;
}
.ticker-tape__chg.up { color: var(--up); }
.ticker-tape__chg.down { color: var(--down); }
/* note: intentionally NOT disabled under prefers-reduced-motion - a price
   ticker reads as live content; we slow it instead of stopping it. */
@media (prefers-reduced-motion: reduce) {
  .ticker-tape__track { animation-duration: 120s; }
}
.ticker-tape__note { text-align: center; font-size: .76rem; color: var(--text-mute); margin: 4px 0 28px; }

/* ===== How it works - 3 icon cards side by side. Wide + short, fits one screen. ===== */
#how > .container { display: flex; flex-direction: column; }
#how .section__head { text-align: center; max-width: none; margin-inline: auto; }

.steps {
  list-style: none; padding: 0; margin: 0 0 clamp(20px, 3vh, 36px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.5vw, 32px);
}
.step {
  position: relative; overflow: hidden;
  padding: clamp(32px, 4vh, 48px) clamp(24px, 2.5vw, 36px);
  background: linear-gradient(180deg, var(--glass-2), var(--glass));
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.step:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 14px 34px rgba(189,154,95,.14); }

.step__icon {
  width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center;
  background: rgba(189,154,95,.12); border: 1px solid var(--line-strong);
  margin-bottom: 22px; position: relative; z-index: 1;
}
.step__icon svg { width: 30px; height: 30px; fill: var(--gold-2); }

/* big number watermark, top-right */
.step__num {
  position: absolute; top: 18px; right: 24px; z-index: 0;
  font-family: var(--font-display); font-size: 4rem; font-weight: 900; line-height: 1; letter-spacing: -.02em; opacity: .14;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.step h3 { font-size: clamp(1.2rem, 1.7vw, 1.5rem); margin-bottom: .5rem; position: relative; z-index: 1; }
.step p { margin: 0; font-size: clamp(.92rem, 1.05vw, 1rem); line-height: 1.55; color: var(--text-dim); position: relative; z-index: 1; }

/* icon entrance pulse when step reveals */
.reveal-group.is-visible .step__icon { animation: stepPop .5s cubic-bezier(.2,.7,.2,1) backwards; }
.reveal-group.is-visible .step:nth-child(1) .step__icon { animation-delay: .1s; }
.reveal-group.is-visible .step:nth-child(2) .step__icon { animation-delay: .22s; }
.reveal-group.is-visible .step:nth-child(3) .step__icon { animation-delay: .34s; }
@keyframes stepPop { from { transform: scale(.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .reveal-group.is-visible .step__icon { animation: none; }
}

/* insights / subscribe */
#why { padding-block: clamp(80px, 12vw, 140px); }
.news__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: stretch; }
/* card fills its track and centers its own content -> sits at the text's vertical middle */
.news__cta { display: flex; flex-direction: column; justify-content: center; align-items: center; }
/* stock chart icon sitting on the same line, just before the title (svg only) */
.news__title { display: flex; align-items: center; gap: 16px; }
.news__title h2 { margin: 0; white-space: nowrap; }
.news__chart { flex-shrink: 0; width: 3.8em; height: 3.8em; display: block; }
.news__chart svg { width: 100%; height: 100%; }
.news__lead { font-size: 1.05rem; margin-bottom: 28px; }
.news__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.news__list li { display: flex; align-items: flex-start; gap: 14px; }
/* shared icon-tile (news / app / contact lists) */
.news__ic, .app__ic, .contact__ic {
  flex-shrink: 0; border-radius: 12px; display: grid; place-items: center;
  background: rgba(189,154,95,.12); border: 1px solid var(--line-strong);
}
.news__ic svg, .app__ic svg, .contact__ic svg { fill: var(--gold-2); }
.news__ic { width: 44px; height: 44px; }
.news__ic svg { width: 23px; height: 23px; }
.news__list li > span:last-child { display: flex; flex-direction: column; gap: 2px; }
.news__list strong { color: var(--text); font-size: 1rem; font-weight: 700; }
.news__list small { color: var(--text-mute); font-size: .88rem; line-height: 1.4; }

.news__cta {
  background: linear-gradient(180deg, var(--glass-2), var(--glass));
  border: 1px solid var(--line-strong); border-radius: 22px;
  padding: 36px 32px; box-shadow: var(--shadow); text-align: center;
}
.news__pill {
  display: inline-flex; align-items: center; gap: 7px; margin-bottom: 16px;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-2);
  background: rgba(189,154,95,.12); border: 1px solid var(--line-strong); border-radius: 999px; padding: 5px 12px;
}
.news__pill .news__dot { background: var(--up); }
.news__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--up); box-shadow: 0 0 0 0 rgba(79,185,138,.7); animation: newsPulse 1.5s ease-out infinite; }
@keyframes newsPulse { 0% { box-shadow: 0 0 0 0 rgba(79,185,138,.7); } 70% { box-shadow: 0 0 0 7px rgba(79,185,138,0); } 100% { box-shadow: 0 0 0 0 rgba(79,185,138,0); } }
.news__lead strong { color: var(--text); font-weight: 700; }
.news__cta h3 { font-size: 1.5rem; margin-bottom: .5rem; }
.news__cta p { font-size: .98rem; margin: 0 auto 22px; max-width: 34ch; }
.news__cta .btn { width: 100%; align-self: stretch; }
.news__note { display: block; margin-top: 14px; font-size: .78rem; color: var(--text-mute); }


/* testimonials carousel (2 cards/view, arrows + auto-slide, pause on hover) */
.tcarousel { position: relative; }
.tcarousel__viewport { overflow: hidden; cursor: grab; touch-action: pan-y; }
.tcarousel__viewport.is-dragging { cursor: grabbing; }
.tcards { display: flex; gap: 18px; will-change: transform; transition: transform .6s cubic-bezier(.4,.0,.2,1); user-select: none; }
.tcards.no-anim { transition: none; }
.tcard {
  display: flex; flex-direction: column; gap: 14px; margin: 0;
  flex: 0 0 calc((100% - 18px) / 2); max-width: calc((100% - 18px) / 2); box-sizing: border-box;
  background: var(--glass); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; position: relative; overflow: hidden;
}
.tcard img, .tcard svg { pointer-events: none; }
.tcarousel__dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.tcarousel__dot { width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0; cursor: pointer; background: var(--line-strong); transition: background .2s, transform .2s; }
.tcarousel__dot.is-active { background: var(--gold); transform: scale(1.3); }
.tcard::before {
  content: "\201C"; position: absolute; top: 5px; right: 18px;
  font-family: var(--font-display); font-size: 6rem; line-height: 1; color: var(--gold); opacity: .1; font-weight: 900; pointer-events: none;
}
/* quote pushed below the decorative quote mark so they don't overlap */
.tcard__quote { margin: 28px 0 0; color: var(--text-dim); font-size: .95rem; line-height: 1.6; }
/* author: avatar | (name over stars) | verified */
.tcard__author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 6px; }
.tcard__id { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.tcard__stars { display: flex; gap: 2px; }
.tcard__stars svg { width: 13px; height: 13px; fill: var(--gold); }
.tcard__author strong { color: var(--text); font-size: .95rem; line-height: 1.1; }
.tcard__verified {
  display: inline-flex; align-items: center; gap: 5px; flex-shrink: 0; margin-left: auto;
  font-size: .72rem; font-weight: 700; letter-spacing: .02em; color: var(--gold-2);
  background: rgba(189,154,95,.12); border: 1px solid var(--line-strong);
  padding: 4px 10px; border-radius: 999px; white-space: nowrap;
}
.tcard__verified svg { width: 14px; height: 14px; fill: var(--gold-2); flex-shrink: 0; }
.tcard__avatar {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  font-size: .8rem; font-weight: 900; color: #1a1407;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-3)); flex-shrink: 0;
}

/* faq */
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq__item { background: var(--glass); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; transition: border-color .3s ease, background .3s ease, box-shadow .3s ease; }
.faq__item:hover { border-color: var(--line-strong); }
.faq__item.is-open { border-color: var(--line-strong); background: var(--glass-2); box-shadow: 0 10px 30px rgba(0,0,0,.28); }
.faq__q { width: 100%; cursor: pointer; text-align: left; font: inherit; color: inherit; background: none; border: 0; padding: 18px 20px; font-weight: 700; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__chev { display: grid; place-items: center; flex-shrink: 0; width: 22px; height: 22px; transition: transform .3s cubic-bezier(.2,.7,.2,1); }
.faq__chev svg { width: 18px; height: 18px; fill: none; stroke: var(--gold-2); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.faq__item.is-open .faq__chev { transform: rotate(180deg); }
/* animated expand via grid-rows */
.faq__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s cubic-bezier(.2,.7,.2,1); }
.faq__item.is-open .faq__body { grid-template-rows: 1fr; }
.faq__body > p { overflow: hidden; padding: 0 20px; margin: 0; opacity: 0; transition: opacity .25s ease .05s, padding .32s ease; }
.faq__item.is-open .faq__body > p { padding: 0 20px 18px; opacity: 1; }

/* ===== Get the app ===== */
.app__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.app__media { position: relative; display: flex; justify-content: center; min-height: 460px; }
.app__glow { position: absolute; inset: 0; margin: auto; width: 70%; height: 70%; border-radius: 50%; filter: blur(70px); background: radial-gradient(circle, rgba(189,154,95,.32), transparent 65%); }
.app__phone { position: relative; max-width: 320px; width: 100%; height: auto; filter: drop-shadow(0 40px 70px rgba(0,0,0,.55)); will-change: transform; transform: rotate(10deg); }
.app__list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 16px; }
.app__list li { display: flex; align-items: flex-start; gap: 14px; }
.app__ic { width: 42px; height: 42px; }
.app__ic svg { width: 22px; height: 22px; }
.app__list li > span:last-child { display: flex; flex-direction: column; gap: 2px; }
.app__list strong { color: var(--text); font-size: 1rem; font-weight: 700; }
.app__list small { color: var(--text-mute); font-size: .88rem; line-height: 1.4; }

/* store buttons */
.stores { display: flex; flex-wrap: wrap; gap: 12px; }
.store {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 9px 18px 9px 14px; border-radius: 12px;
  background: var(--navy-800); border: 1px solid var(--line-strong);
  transition: transform .15s ease, border-color .2s ease, background .2s ease;
}
.store:hover { transform: translateY(-2px); border-color: var(--gold); background: var(--navy-700); }
.store img { width: 30px; height: 30px; }
.store span { display: flex; flex-direction: column; line-height: 1.15; font-weight: 700; font-size: 1.05rem; color: var(--text); }
.store small { font-size: .68rem; font-weight: 500; letter-spacing: .03em; color: var(--text-mute); }
.stores--sm .store { padding: 7px 14px 7px 11px; }
.stores--sm .store img { width: 24px; height: 24px; }
.stores--sm .store span { font-size: .9rem; }

/* ===== Footer store buttons: .store colors/hover, old layout (logo left, text centered) ===== */
.stores--footer { flex-direction: column; gap: 8px; width: 100%; max-width: 190px; margin-inline: auto; }
.stores--footer .store { width: 100%; padding: 7px 12px; position: relative; justify-content: center; }
.stores--footer .store img { width: 18px; height: 18px; position: absolute; left: 12px; top: 50%; transform: translateY(-50%); }
.stores--footer .store span { align-items: center; text-align: center; font-size: .8rem; font-weight: 800; letter-spacing: -.01em; }
.stores--footer .store small { font-size: .56rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gold-2); }

/* ===== Contact form ===== */
.contact__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: stretch; }
.contact__intro { display: flex; flex-direction: column; justify-content: center; }
.contact__intro p { font-size: 1.05rem; }
#contact { align-items: center; }
.contact__meta { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 16px; }
.contact__meta li { color: var(--text-dim); display: flex; gap: 14px; align-items: center; font-size: .92rem; }
.contact__meta strong { color: var(--text); font-size: .98rem; }
.contact__ic { width: 42px; height: 42px; }
.contact__ic svg { width: 22px; height: 22px; }

.form { background: var(--glass); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; justify-content: center; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__check { display: flex; align-items: flex-start; gap: 10px; margin: 4px 0 18px; cursor: pointer; font-size: .85rem; color: var(--text-dim); line-height: 1.45; }
.form__check input { width: 18px; height: 18px; margin: 1px 0 0; flex-shrink: 0; accent-color: var(--gold); cursor: pointer; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: .82rem; font-weight: 600; color: var(--text-dim); }
.field input, .field textarea {
  width: 100%; font: inherit; color: var(--text);
  background: var(--navy-800); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .8rem .9rem; transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-mute); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(189,154,95,.18); }
/* invalid state (only after the user has interacted) */
.field input:user-invalid,
.field input.is-invalid,
.field textarea:user-invalid { border-color: var(--down); box-shadow: 0 0 0 3px rgba(224,88,108,.16); }
.form__submit { width: 100%; margin-top: 4px; }

/* ---- Phone field (custom, zero-dep) ----
   Layout: [flag v] [+] [free-text digit input]. The flag is purely cosmetic:
   it mirrors the typed dial code, and is clickable to override (aesthetic only).
   The "+" is fixed and never part of the editable value. */
.phone {
  position: relative;
  display: flex; align-items: center; gap: 0;
  background: var(--navy-800); border: 1px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color .15s, box-shadow .15s;
}
.phone:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(189,154,95,.18); }
.phone.is-invalid { border-color: var(--down); box-shadow: 0 0 0 3px rgba(224,88,108,.16); }

/* clickable flag button */
.phone__flag {
  display: flex; align-items: center; gap: 6px; flex-shrink: 0;
  padding: 0 8px 0 12px; height: 100%; align-self: stretch;
  background: transparent; border: 0; cursor: pointer; color: var(--text-dim);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm); transition: background .15s;
}
.phone__flag:hover, .phone__flag[aria-expanded="true"] { background: rgba(189,154,95,.1); }
.phone__flag .fi { width: 22px; height: 16px; border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,.25); background-size: cover; }
.phone__caret { width: 16px; height: 16px; fill: none; stroke: var(--text-mute); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s; }
.phone__flag[aria-expanded="true"] .phone__caret { transform: rotate(180deg); }

/* fixed "+" */
.phone__plus { color: var(--text); font-weight: 600; padding: 0 1px 0 2px; user-select: none; }

/* the editable input - no own border/shadow; the wrapper .phone draws the box */
.phone input,
.phone input:focus,
.phone input:user-invalid {
  flex: 1; width: 100%; min-width: 0; font: inherit; color: var(--text);
  background: transparent; border: 0; outline: none; box-shadow: none;
  border-radius: 0; padding: .8rem .9rem .8rem .35rem;
}
.phone input::placeholder { color: var(--text-mute); }

/* ===== flag picker dropdown ===== */
.phone__menu {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 40;
  width: 320px; max-width: calc(100vw - 40px);
  padding: 8px;
  background: var(--navy-800);
  border: 1px solid var(--line-strong); border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,.55); color: var(--text);
  backdrop-filter: blur(6px);
}
.phone__menu[hidden] { display: none; }
.phone__list {
  list-style: none; margin: 0; padding: 0; max-height: 280px; overflow-y: auto;
  scrollbar-width: thin; scrollbar-color: var(--line-strong) transparent;
}
.phone__list::-webkit-scrollbar { width: 8px; }
.phone__list::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 8px; }
.phone__opt {
  display: flex; align-items: center; gap: 10px; padding: 9px 12px;
  border-radius: 9px; cursor: pointer; transition: background .12s ease;
}
.phone__opt:hover, .phone__opt.is-active { background: rgba(189,154,95,.14); }
.phone__opt .fi { width: 22px; height: 16px; flex-shrink: 0; border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,.25); }
.phone__opt-name { color: var(--text); font-size: .92rem; flex: 1; }
.phone__opt-code { color: var(--text-mute); font-size: .88rem; }
.phone__empty { padding: 14px 12px; color: var(--text-mute); font-size: .9rem; text-align: center; }
.form__note { font-size: .8rem; color: var(--text-mute); margin: 12px 0 0; text-align: center; }

/* ---- status banner (ok / err) with leading icon ---- */
.form__status {
  display: none; align-items: flex-start; gap: 10px;
  margin: 14px 0 0; padding: 12px 14px; border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 600; line-height: 1.4;
}
.form__status.ok, .form__status.err { display: flex; }
.form__status-ic { flex-shrink: 0; display: grid; place-items: center; width: 20px; height: 20px; }
.form__status-ic svg { width: 20px; height: 20px; }
.form__status.ok { color: var(--up); background: rgba(79,185,138,.12); border: 1px solid rgba(79,185,138,.3); }
.form__status.ok .form__status-ic svg { fill: var(--up); }
.form__status.err { color: var(--down); background: rgba(224,88,108,.12); border: 1px solid rgba(224,88,108,.3); }
.form__status.err .form__status-ic svg { fill: var(--down); }

/* ---- inline field error (replaces native browser bubble) ---- */
.field__error {
  display: flex; align-items: center; gap: 6px; margin: 6px 0 0;
  font-size: .8rem; font-weight: 600; color: var(--down); line-height: 1.35;
}
.field__error[hidden] { display: none; }
.field__error svg { flex-shrink: 0; width: 15px; height: 15px; fill: var(--down); }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* footer */
.footer { border-top: 1px solid var(--line); padding-top: 56px; background: var(--navy-900); }
/* 3 equal flex columns; each is a centering box for its own content */
.footer__inner { display: flex; gap: 32px; padding-bottom: 40px; align-items: flex-start; }
.footer__inner > * { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer__col { width: 100%; text-align: center; }
/* whole brand block centered: logo, text and socials */
.footer__brand { max-width: 38ch; text-align: center; }
.footer__brand img { height: 40px; margin: 0 auto 16px; display: block; }
.footer__brand p { font-size: .85rem; color: var(--text-mute); margin: 0; }
.footer__brand .socials { justify-content: center; }
.footer__col h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-mute); }
.footer__col a { display: block; padding: 6px 0; color: var(--text-dim); font-size: .95rem; }
.footer__col a:hover { color: var(--text); }
.footer__col a.btn { display: inline-flex; color: var(--fg); padding: .7rem 1.2rem; margin-top: 6px; }
.footer__col a.btn:hover { color: var(--fg); }
.footer__legal { padding: 26px 20px; border-top: 1px solid var(--line); }
.footer__legal p { font-size: .76rem; line-height: 1.6; color: var(--text-mute); margin: 0 0 12px; }
.footer__legal p:last-child { margin-bottom: 0; }
.footer__legal strong { color: var(--text-dim); }
.footer__bottom { border-top: 1px solid var(--line); padding-block: 22px; color: var(--text-mute); font-size: .85rem; text-align: center; }

/* ===== Risk banner (dismissible) ===== */
.topbanner {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 10px 48px 10px 20px; position: relative;
  background: linear-gradient(90deg, rgba(189,154,95,.16), rgba(38,40,64,.6)), var(--navy-900);
  border-bottom: 1px solid var(--line-strong);
  overflow: hidden; max-height: 240px;
  transition: max-height .4s ease, padding .4s ease, opacity .3s ease, border-color .3s ease;
}
.topbanner.is-collapsed {
  max-height: 0; padding-top: 0; padding-bottom: 0; opacity: 0; border-bottom-width: 0;
}
.topbanner__text { margin: 0; max-width: 1100px; margin-inline: auto; font-size: .8rem; line-height: 1.5; color: var(--text-dim); }
.topbanner__close {
  position: absolute; top: 8px; right: 12px; width: 30px; height: 30px;
  display: grid; place-items: center; cursor: pointer;
  background: transparent; border: 0; color: var(--text-dim); font-size: 1.5rem; line-height: 1;
  border-radius: 8px; transition: background .15s, color .15s;
}
.topbanner__close:hover { background: var(--glass-2); color: var(--text); }

/* ===== Socials ===== */
.socials { display: flex; gap: 10px; margin-top: 18px; }
.social {
  width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 10px; background: var(--navy-800); border: 1px solid var(--line);
  transition: transform .15s ease, border-color .2s ease, background .2s ease;
}
.social:hover { transform: translateY(-2px); border-color: var(--gold); background: var(--navy-700); }
.social svg { width: 18px; height: 18px; fill: var(--text-dim); transition: fill .2s ease; }
.social:hover svg { fill: var(--gold); }
.social--img { position: relative; }
.social--img img { width: 18px; height: 18px; object-fit: contain; transition: opacity .2s ease; }
.social--img .social__hover { position: absolute; inset: 0; margin: auto; opacity: 0; }
.social--img .social__base { margin: auto; opacity: .8; }
.social--img:hover .social__base { opacity: 0; }
.social--img:hover .social__hover { opacity: 1; }

/* ===== Dynamism (light, zero-dep) ===== */
/* header shrinks + elevates on scroll */
.header { transition: height .25s ease, background .25s ease, box-shadow .25s ease, border-color .25s ease; }
.header__logo img { transition: height .25s ease; }
.header--scrolled { height: 60px; background: rgba(15,16,26,.94); box-shadow: 0 10px 34px rgba(0,0,0,.5); border-bottom-color: var(--line-strong); }
.header--scrolled .header__logo img { height: 31px; }

/* FAQ open animation */
.faq__item[open] p { animation: faqIn .28s ease; }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ===== Scroll reveal (IntersectionObserver-driven) ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal--left  { transform: translateX(-40px); }
.reveal--right { transform: translateX(40px); }
.reveal.is-visible { opacity: 1; transform: none; }

/* stagger children (e.g. grid cards) when parent gets .reveal-group */
.reveal-group > * {
  opacity: 0; transform: translateY(24px);
  transition: opacity .55s cubic-bezier(.2,.7,.2,1), transform .55s cubic-bezier(.2,.7,.2,1);
}
.reveal-group.is-visible > * { opacity: 1; transform: none; }
.reveal-group.is-visible > *:nth-child(1) { transition-delay: .04s; }
.reveal-group.is-visible > *:nth-child(2) { transition-delay: .12s; }
.reveal-group.is-visible > *:nth-child(3) { transition-delay: .20s; }
.reveal-group.is-visible > *:nth-child(4) { transition-delay: .28s; }
.reveal-group.is-visible > *:nth-child(5) { transition-delay: .36s; }
.reveal-group.is-visible > *:nth-child(6) { transition-delay: .44s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-group > * { opacity: 1; transform: none; transition: none; }
  .app__phone { transform: rotate(10deg) !important; }   /* keep tilt, drop parallax shift */
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav, .header__actions { display: none; }
  .nav__toggle { display: flex; }
  /* #1: kill the negative pull so the sticky header no longer eats the hero title */
  .hero { margin-top: 0; padding-top: clamp(20px, 5vw, 40px); }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { min-height: 420px; }
  .hero__phone { width: 100%; max-width: 340px; }
  .two-col { grid-template-columns: 1fr; }
  .strip__grid { grid-template-columns: 1fr; }
  /* on mobile the 3 cards stack; section grows + scrolls naturally */
  .steps { grid-template-columns: 1fr; gap: 18px; }
  /* keep App section side by side on mobile: text left, phone right (DOM order) */
  .app__grid { grid-template-columns: 1.1fr .9fr; gap: 16px; align-items: center; }
  .app__media { min-height: 220px; }
  /* cap the rotated phone so it never clips the text column on narrow screens */
  .app__phone { max-width: clamp(140px, 38vw, 320px); }
  .news__grid { grid-template-columns: 1fr; gap: 32px; }
  .tcard { flex: 0 0 100%; max-width: 100%; }
  .contact__grid { grid-template-columns: 1fr; }
  /* #2: ticker covers less width on phones so 50s reads as too fast - slow it down + tighten row gap */
  .ticker-tape__track { animation-duration: 140s; }
  .ticker-tape { gap: 8px; }
  /* #3: title is forced single-line on desktop; let it wrap + shrink the chart icon */
  .news__title { gap: 12px; align-items: flex-start; }
  .news__title h2 { white-space: normal; }
  .news__chart { width: 2.6em; height: 2.6em; }
  /* #5: footer base is flex, not grid - make the column rules actually apply + stop icon/text overlap */
  .footer__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 24px; }
  .footer__inner > * { align-items: center; text-align: center; }
  /* reorder: brand, then Get-the-app, then Legal */
  .footer__brand { order: 1; }
  .footer__col:last-child { order: 2; }   /* Get the app */
  .footer__col[aria-label="Legal"] { order: 3; }
  /* footer app buttons: EXACT copy of the App-section store buttons (boxed icon + text beside), 2 on one line */
  .stores--footer { flex-direction: row; flex-wrap: nowrap; align-items: stretch; gap: 8px; width: 100%; max-width: none; margin-inline: 0; }
  .stores--footer .store { flex: 1 1 0; min-width: 0; box-sizing: border-box; display: inline-flex; align-items: center; justify-content: flex-start; gap: 8px; padding: 8px 10px; position: static; }
  .stores--footer .store img { position: static; transform: none; width: 30px; height: 30px; flex: none; }
  .stores--footer .store span { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; text-align: left; line-height: 1.15; font-size: .82rem; font-weight: 700; letter-spacing: normal; color: var(--text); }
  .stores--footer .store small { font-size: .64rem; font-weight: 500; text-transform: none; letter-spacing: .03em; color: var(--text-mute); }
}
@media (max-width: 520px) {
  /* #4: hide the phone on phones - text + features + store buttons only */
  .app__grid { display: block; }
  .app__media { display: none; }
  /* keep the 2 app-store buttons on one line, shrink to fit */
  .app__copy .stores { flex-wrap: nowrap; gap: 8px; }
  .app__copy .store { flex: 1 1 0; min-width: 0; padding: 8px 10px; }
  .app__copy .store img { flex: none; }
  .app__copy .store span { min-width: 0; font-size: .82rem; }
  /* #5: single-column footer on phones */
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  /* keep the 3 trust stats on one row; smaller min so they never wrap 2+1 */
  .hero__trust { gap: 8px; }
  .hero__trust li { min-width: 0; padding: 10px 6px; }
  .hero__trust strong { font-size: 1.15rem; }
  /* stack name/email so neither field gets crushed on small phones */
  .form__row { grid-template-columns: 1fr; gap: 0; }
}

/* ============================================================
   LEGAL PAGES (terms / privacy / cookies)
   ============================================================ */
.legal { padding: clamp(3rem, 7vw, 6rem) 0 clamp(2rem, 5vw, 4rem); }
.legal .container { max-width: 820px; }
.legal__head { margin-bottom: 2.5rem; }
.legal__head h1 { font-size: clamp(2rem, 4vw, 3rem); margin: .5rem 0 .75rem; }
.legal__updated { color: var(--text-mute); font-size: .9rem; }
.legal__body { color: var(--text-dim); line-height: 1.75; font-size: .98rem; }
.legal__body h2 { color: var(--text); font-size: 1.4rem; margin: 2.5rem 0 .75rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.legal__body > h2:first-child { margin-top: 0; }
.legal__body h3 { color: var(--text); font-size: 1.1rem; margin: 1.75rem 0 .5rem; }
.legal__body p { margin: 0 0 1rem; }
.legal__body ul, .legal__body ol { margin: 0 0 1rem 1.4rem; padding: 0; }
.legal__body li { margin: 0 0 .6rem; }
.legal__body a { color: var(--gold-2); text-decoration: underline; }
.legal__body a:hover { color: var(--gold); }
.legal__body strong { color: var(--text); }
.legal__contact { margin: 1rem 0 1.5rem; padding: 1.25rem 1.5rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(189,154,95,.04); }
.legal__contact p { margin: 0 0 .35rem; }
.legal__contact p:last-child { margin-bottom: 0; }
.legal__back { display: inline-flex; align-items: center; gap: .4rem; margin-top: 2rem; color: var(--text-dim); font-weight: 600; }
.legal__back:hover { color: var(--gold-2); }
.legal__back svg { width: 20px; height: 20px; fill: currentColor; }

/* shared contact strip used in legal-page footers */
.footer__contact-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem 8rem; padding: 1.25rem 0; border-top: 1px solid var(--line); }
.footer__contact-strip .item { display: inline-flex; align-items: center; gap: .5rem; color: var(--text-dim); font-size: .92rem; }
.footer__contact-strip .item svg { width: 18px; height: 18px; fill: var(--gold-2); flex: none; }
.footer__contact-strip a { color: var(--text-dim); }
.footer__contact-strip a:hover { color: var(--gold-2); }

/* ============================================================
   BONUS POPUP (#promoPopup) - matches the premium navy/gold theme.
   Hidden by JS via [hidden]; .is-open fades + scales the card in. */
.promo { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.promo[hidden] { display: none; }
.promo__overlay { position: absolute; inset: 0; background: rgba(8,9,16,.72); backdrop-filter: blur(4px); opacity: 0; transition: opacity .3s ease; }
.promo__card {
  position: relative; width: min(540px, 100%); max-height: calc(100vh - 40px); overflow-y: auto;
  background: linear-gradient(180deg, var(--navy-700), var(--navy-800));
  border: 1px solid rgba(189,154,95,.35); border-radius: var(--radius);
  padding: 34px 32px 26px; box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.02) inset;
  opacity: 0; transform: translateY(16px) scale(.97); transition: opacity .35s ease, transform .35s cubic-bezier(.16,1,.3,1);
}
/* gold top hairline for the premium feel */
.promo__card::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; border-radius: var(--radius) var(--radius) 0 0; background: linear-gradient(90deg, var(--gold-3), var(--gold-2), var(--gold-3)); }
.promo.is-open .promo__overlay { opacity: 1; }
.promo.is-open .promo__card { opacity: 1; transform: none; }

.promo__close {
  position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.03);
  color: var(--text-dim); font-size: 1.5rem; line-height: 1; cursor: pointer; transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.promo__close:hover { color: var(--text); border-color: var(--gold); background: rgba(189,154,95,.1); }

.promo__badge {
  display: inline-flex; align-items: center; gap: .4rem; padding: .35rem .7rem; margin-bottom: 1rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-2);
  border: 1px solid rgba(189,154,95,.3); border-radius: 999px; background: rgba(189,154,95,.07);
}
.promo__badge svg { width: 15px; height: 15px; fill: var(--gold-2); }

.promo__title { font-size: clamp(1.6rem, 5vw, 2.15rem); line-height: 1.12; margin: 0 0 .7rem; }
.promo__lead { color: var(--text-dim); font-size: .98rem; line-height: 1.55; margin: 0 0 1.25rem; }
.promo__lead strong { color: var(--text); }

.promo__perks { list-style: none; margin: 0 0 1.4rem; padding: 0; display: grid; gap: .7rem; }
.promo__perks li { position: relative; padding-left: 30px; font-size: .94rem; line-height: 1.45; color: var(--text-dim); }
.promo__perks strong { color: var(--text); }
.promo__check { position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-2), var(--gold-3)); }
.promo__check::after { content: ""; position: absolute; left: 7px; top: 4px; width: 5px; height: 9px; border: solid #1a1407; border-width: 0 2px 2px 0; transform: rotate(45deg); }

.promo__actions { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1rem; margin-bottom: 1.1rem; }
.promo__cta { flex: 1 1 auto; justify-content: center; }
.promo__decline { background: none; border: none; color: var(--text-dim); font-weight: 600; font-size: .9rem; cursor: pointer; padding: .5rem; }
.promo__decline:hover { color: var(--text); }

.promo__risk { margin: 0; font-size: .72rem; line-height: 1.5; color: var(--text-faint, var(--text-dim)); opacity: .8; }

@media (max-width: 480px) {
  .promo__card { padding: 30px 22px 22px; }
  .promo__actions { flex-direction: column; align-items: stretch; }
  .promo__decline { order: 2; }
}
@media (prefers-reduced-motion: reduce) {
  .promo__overlay, .promo__card { transition: none; }
}