/* =========================================================
   GrowthFunded — design system
   ========================================================= */

:root {
  /* Brand palette */
  --navy-950: #060d21;
  --navy-900: #0a142f;
  --navy-850: #0e1b38;
  --navy-800: #101a36;
  --navy-700: #142e71;
  --navy-600: #003982;
  --slate-700: #29334e;
  --slate-600: #3d4a6e;

  --blue-500: #0085f2;
  --blue-600: #0068c9;
  --electric: #0009b3;
  --electric-2: #0009b7;

  --tint-100: #f3f6fd;
  --tint-200: #eaf1ff;
  --tint-300: #dfe8ff;
  --tint-400: #bed3ff;

  --green-600: #2c805b;
  --emerald: #00d294;
  --red: #e40014;
  --gold-1: #ffe76d;
  --gold-2: #f1b841;

  --ink: #171717;
  --ink-2: #0a142f;
  --muted: #7c87a3;
  --muted-2: #526086;
  --muted-3: #91a3cc;
  --line: #e5e7eb;

  --bg: #ffffff;
  --surface: #ffffff;

  /* Type */
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
          "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Shape */
  --r-sm: .5rem;
  --r: .75rem;
  --r-lg: 1rem;
  --r-xl: 1.5rem;
  --r-2xl: 2rem;

  --shadow-sm: 0 1px 2px rgba(10, 20, 47, .06);
  --shadow: 0 6px 24px rgba(10, 20, 47, .08);
  --shadow-lg: 0 24px 60px rgba(10, 20, 47, .14);

  --nav-h: 72px;
  --maxw: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 24px); }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -.03em; font-weight: 700; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }
.section { padding-block: clamp(56px, 8vw, 112px); }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }
.center { text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue-500);
  background: var(--tint-200);
  border: 1px solid var(--tint-300);
  padding: 6px 14px; border-radius: 999px;
}
.section-title { font-size: clamp(2rem, 4.6vw, 3.25rem); color: var(--ink-2); }
.section-title em { font-style: normal; color: var(--blue-500); }
.section-sub { color: var(--muted-2); font-size: 1.0625rem; max-width: 620px; margin-top: 14px; }
.center .section-sub, .center.stack .section-sub { margin-inline: auto; }
.stack { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.center.stack, .center .stack { align-items: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 48px; padding-inline: 26px;
  border-radius: 999px; font-weight: 600; font-size: .9375rem;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--electric); color: #fff; box-shadow: 0 10px 26px rgba(0, 9, 179, .28); }
.btn--primary:hover { background: #0007a0; box-shadow: 0 16px 34px rgba(0, 9, 179, .34); }
.btn--light { background: #fff; color: var(--ink-2); box-shadow: var(--shadow-sm); }
.btn--light:hover { background: var(--tint-100); }
.btn--ghost { background: rgba(255, 255, 255, .08); color: #fff; border: 1px solid rgba(255, 255, 255, .22); backdrop-filter: blur(8px); }
.btn--ghost:hover { background: rgba(255, 255, 255, .16); }
.btn--outline { border: 1.5px solid var(--tint-300); color: var(--ink-2); background: #fff; }
.btn--outline:hover { border-color: var(--blue-500); color: var(--blue-500); }
.btn--dark { background: var(--navy-900); color: #fff; }
.btn--dark:hover { background: var(--navy-700); }
.btn--sm { height: 40px; padding-inline: 18px; font-size: .875rem; }
.btn--block { width: 100%; }

/* ---------- Promo bar ---------- */
.promo {
  background: linear-gradient(90deg, var(--electric) 0%, var(--blue-500) 55%, var(--electric-2) 100%);
  color: #fff; font-size: .8125rem; font-weight: 500;
  position: relative; z-index: 60;
}
.promo__inner { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; padding: 9px 20px; text-align: center; }
.promo__tag { font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .6875rem; }
.promo__code {
  background: rgba(255, 255, 255, .18); border: 1px dashed rgba(255, 255, 255, .55);
  padding: 2px 10px; border-radius: 6px; font-weight: 700; letter-spacing: .06em;
}
.promo__dot { opacity: .5; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.header.is-stuck { border-color: var(--line); box-shadow: 0 2px 20px rgba(10, 20, 47, .06); }
.header__inner { display: flex; align-items: center; gap: 24px; height: var(--nav-h); }
/* Brand lockup: gradient mark + two-weight wordmark.
   GROWTH is light and widely tracked, FUNDED is heavy — the tracking on the
   first word adds a trailing gap, so the pair needs no explicit spacing. */
.logo { display: inline-flex; align-items: center; gap: 11px; color: var(--ink-2); }
.logo__mark { width: 40px; height: 40px; flex: none; }
.logo__word {
  display: inline-flex; align-items: baseline;
  font-size: 1.0625rem; line-height: 1; text-transform: uppercase; white-space: nowrap;
}
.logo__thin { font-weight: 300; letter-spacing: .21em; margin-right: .24em; }
.logo__bold { font-weight: 800; letter-spacing: .015em; }

.nav { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav a {
  padding: 9px 14px; border-radius: 999px; font-size: .9375rem; font-weight: 500;
  color: var(--muted-2); transition: color .16s ease, background .16s ease;
}
.nav a:hover { color: var(--ink-2); background: var(--tint-100); }
.nav a.is-active { color: var(--electric); background: var(--tint-200); font-weight: 600; }
.header__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.header__actions .signin { font-size: .9375rem; font-weight: 500; padding: 9px 8px; color: var(--muted-2); }
.header__actions .signin:hover { color: var(--ink-2); }

.burger { display: none; width: 42px; height: 42px; border-radius: 12px; place-items: center; margin-left: auto; }
.burger span { display: block; width: 19px; height: 2px; background: var(--ink-2); border-radius: 2px; position: relative; transition: transform .22s ease, opacity .22s ease; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 19px; height: 2px; background: var(--ink-2); border-radius: 2px; transition: transform .22s ease, top .22s ease; }
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger.is-open span { background: transparent; }
.burger.is-open span::before { top: 0; transform: rotate(45deg); }
.burger.is-open span::after { top: 0; transform: rotate(-45deg); }

.mobile-nav {
  display: none; border-top: 1px solid var(--line); background: #fff;
  padding: 14px 20px 22px;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a { display: block; padding: 12px 4px; font-weight: 500; border-bottom: 1px solid var(--tint-100); }
.mobile-nav .btn { margin-top: 14px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 12% -10%, rgba(0, 133, 242, .38), transparent 62%),
    radial-gradient(900px 460px at 88% 0%, rgba(0, 9, 183, .48), transparent 60%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
  color: #fff;
  padding-block: clamp(56px, 7vw, 92px) clamp(48px, 6vw, 76px);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(760px 460px at 50% 20%, #000, transparent 78%);
}
.hero__inner { position: relative; z-index: 2; display: grid; gap: 52px; grid-template-columns: 1.05fr .95fr; align-items: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255, 255, 255, .09); border: 1px solid rgba(255, 255, 255, .18);
  color: #dfe8ff; font-size: .8125rem; font-weight: 500;
  padding: 7px 15px; border-radius: 999px; backdrop-filter: blur(8px);
}
.hero__badge .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 0 rgba(0, 210, 148, .7); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(0, 210, 148, 0); } 100% { box-shadow: 0 0 0 0 rgba(0, 210, 148, 0); } }
.hero h1 { font-size: clamp(2.5rem, 5.6vw, 4.15rem); margin-top: 22px; letter-spacing: -.04em; }
.hero h1 em { font-style: normal; background: linear-gradient(100deg, #7ec8ff, #dfe8ff 55%, #ffffff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lede { color: #b9c7e8; font-size: 1.0625rem; margin-top: 20px; max-width: 470px; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.hero__perks { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 38px; }
.hero__perk { display: flex; flex-direction: column; gap: 2px; }
.hero__perk b { font-size: 1.0625rem; color: #fff; }
.hero__perk span { font-size: .8125rem; color: var(--muted-3); }

/* Hero card */
.hero__card {
  background: linear-gradient(165deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--r-2xl); padding: 22px;
  backdrop-filter: blur(18px); box-shadow: 0 40px 90px rgba(0, 0, 0, .42);
}
.reward-card {
  background: linear-gradient(150deg, #0f2a6b, #0a142f 70%);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-xl); padding: 22px; position: relative; overflow: hidden;
}
.reward-card::before {
  content: ""; position: absolute; width: 220px; height: 220px; right: -70px; top: -90px;
  background: radial-gradient(circle, rgba(0, 133, 242, .55), transparent 70%); filter: blur(18px);
}
.reward-card__label { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-3); }
.reward-card__value { font-size: 2.5rem; font-weight: 800; color: var(--emerald); letter-spacing: -.04em; margin-top: 6px; }
.reward-card__meta { display: flex; gap: 8px; align-items: center; margin-top: 10px; font-size: .8125rem; color: #b9c7e8; }
.chip-ok { background: rgba(0, 210, 148, .14); color: var(--emerald); border: 1px solid rgba(0, 210, 148, .3); padding: 2px 9px; border-radius: 999px; font-size: .6875rem; font-weight: 700; letter-spacing: .05em; }

.spark { display: flex; align-items: flex-end; gap: 5px; height: 74px; margin-top: 20px; }
.spark i { flex: 1; background: linear-gradient(180deg, var(--blue-500), rgba(0, 133, 242, .18)); border-radius: 3px 3px 0 0; display: block; }

/* Ticker */
.ticker { margin-top: 16px; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.ticker__track { display: flex; gap: 10px; width: max-content; animation: marquee 34s linear infinite; }
.ticker__item {
  display: flex; align-items: center; gap: 9px; flex: none;
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px; padding: 8px 15px; font-size: .8125rem; white-space: nowrap;
}
.ticker__item b { font-weight: 600; color: #fff; }
.ticker__item .px { color: #cdd9f5; font-variant-numeric: tabular-nums; }
.ticker__item .up { color: var(--emerald); font-weight: 600; }
.ticker__item .down { color: #ff6b7a; font-weight: 600; }

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Stat strip ---------- */
.stats { border-block: 1px solid var(--line); background: var(--tint-100); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 34px 20px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat b { display: block; font-size: clamp(1.6rem, 3vw, 2.35rem); font-weight: 800; color: var(--ink-2); letter-spacing: -.04em; }
.stat span { font-size: .875rem; color: var(--muted-2); }

/* ---------- Marquee rows ---------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee__track { display: flex; gap: 14px; width: max-content; animation: marquee 52s linear infinite; }
.marquee--rev .marquee__track { animation-direction: reverse; animation-duration: 62s; }
.marquee:hover .marquee__track { animation-play-state: paused; }

.payout-pill {
  display: flex; align-items: center; gap: 14px; flex: none;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 14px 18px; box-shadow: var(--shadow-sm); min-width: 260px;
}
.payout-pill__badge { background: rgba(44, 128, 91, .1); color: var(--green-600); font-size: .625rem; font-weight: 800; letter-spacing: .1em; padding: 3px 8px; border-radius: 5px; }
.payout-pill__amt { font-weight: 700; font-size: 1.0625rem; color: var(--ink-2); letter-spacing: -.02em; }
.payout-pill__meta { font-size: .75rem; color: var(--muted); }
.payout-pill__hash { margin-left: auto; font-size: .6875rem; color: var(--blue-500); font-weight: 600; white-space: nowrap; }

/* ---------- Bento ---------- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 46px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 26px; box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--tint-400); }
.card h3 { font-size: 1.25rem; color: var(--ink-2); }
.card p { color: var(--muted-2); font-size: .9375rem; margin-top: 9px; }
.card--wide { grid-column: span 2; }
.card--dark { background: linear-gradient(155deg, var(--navy-850), var(--navy-950)); border-color: rgba(255, 255, 255, .1); color: #fff; }
.card--dark h3 { color: #fff; }
.card--dark p { color: #b9c7e8; }
.card__icon {
  width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center;
  background: var(--tint-200); color: var(--electric); margin-bottom: 18px;
}
.card--dark .card__icon { background: rgba(255, 255, 255, .1); color: #7ec8ff; }
.card__icon svg { width: 21px; height: 21px; }

.bars { display: flex; align-items: flex-end; gap: 8px; height: 96px; margin-top: 22px; }
.bars i { flex: 1; border-radius: 5px 5px 0 0; background: var(--tint-300); display: block; }
.bars i.hot { background: linear-gradient(180deg, var(--blue-500), var(--electric)); }
.bars-x { display: flex; gap: 8px; margin-top: 8px; }
.bars-x span { flex: 1; text-align: center; font-size: .6875rem; color: var(--muted); }

.sym-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.sym {
  font-size: .8125rem; font-weight: 600; color: var(--ink-2);
  background: var(--tint-100); border: 1px solid var(--tint-300);
  padding: 7px 13px; border-radius: 999px;
}
.card--dark .sym { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .14); color: #dfe8ff; }

/* ---------- Challenge selector ---------- */
.selector { background: var(--tint-100); border-radius: var(--r-2xl); border: 1px solid var(--tint-300); padding: clamp(20px, 3vw, 34px); margin-top: 44px; }
.tabs { display: inline-flex; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 5px; gap: 4px; flex-wrap: wrap; }
.tabs button {
  padding: 10px 22px; border-radius: 999px; font-weight: 600; font-size: .9375rem;
  color: var(--muted-2); transition: background .18s ease, color .18s ease;
}
.tabs button:hover { color: var(--ink-2); }
.tabs button.is-active { background: var(--electric); color: #fff; box-shadow: 0 6px 16px rgba(0, 9, 179, .25); }
.tabs--sub button.is-active { background: var(--navy-900); box-shadow: none; }

.selector__head { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.selector__promo { font-size: .8125rem; font-weight: 600; color: var(--green-600); background: rgba(44, 128, 91, .1); border: 1px dashed rgba(44, 128, 91, .35); padding: 8px 14px; border-radius: 10px; }

.sizes { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.size-btn {
  min-width: 84px; padding: 12px 18px; border-radius: var(--r);
  border: 1.5px solid var(--tint-300); background: #fff;
  font-weight: 700; color: var(--muted-2); transition: all .18s ease;
}
.size-btn:hover { border-color: var(--blue-500); color: var(--ink-2); }
.size-btn.is-active { border-color: var(--electric); background: var(--electric); color: #fff; box-shadow: 0 8px 20px rgba(0, 9, 179, .22); }

.selector__body { display: grid; grid-template-columns: 1fr 1fr 340px; gap: 18px; margin-top: 26px; align-items: start; }
.metric-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: 22px; }
.metric-card h4 { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.metric-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px dashed var(--tint-300); font-size: .9375rem; }
.metric-row:last-child { border-bottom: 0; }
.metric-row span { color: var(--muted-2); }
.metric-row b { color: var(--ink-2); font-weight: 700; }
.metric-row b.ok { color: var(--green-600); }

.price-card {
  background: linear-gradient(160deg, var(--navy-850), var(--navy-950));
  border-radius: var(--r-xl); padding: 26px; color: #fff; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.price-card::before {
  content: ""; position: absolute; width: 260px; height: 260px; right: -100px; top: -110px;
  background: radial-gradient(circle, rgba(0, 133, 242, .5), transparent 70%); filter: blur(14px);
}
.price-card__rel { position: relative; z-index: 1; }
.price-card__plan { font-size: .8125rem; color: var(--muted-3); letter-spacing: .06em; text-transform: uppercase; font-weight: 600; }
.price-card__size { font-size: 1.75rem; font-weight: 800; letter-spacing: -.03em; margin-top: 4px; }
.price-card__amount { display: flex; align-items: baseline; gap: 12px; margin-top: 20px; }
.price-card__amount b { font-size: 2.75rem; font-weight: 800; letter-spacing: -.04em; }
.price-card__amount s { color: var(--muted-3); font-size: 1.125rem; }
.price-card__save { display: inline-block; margin-top: 10px; background: rgba(0, 210, 148, .16); color: var(--emerald); border: 1px solid rgba(0, 210, 148, .3); font-size: .75rem; font-weight: 700; padding: 5px 11px; border-radius: 999px; }
.price-card__code { margin-top: 16px; font-size: .8125rem; color: #b9c7e8; }
.price-card__code b { color: #fff; background: rgba(255, 255, 255, .12); padding: 2px 8px; border-radius: 6px; border: 1px dashed rgba(255, 255, 255, .35); }
.price-card .btn { margin-top: 20px; }
.price-card__note { margin-top: 14px; font-size: .75rem; color: var(--muted-3); text-align: center; }
.price-card__avg { display: flex; justify-content: space-between; margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: .8125rem; color: #b9c7e8; }
.price-card__avg b { color: var(--emerald); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 46px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: 28px; position: relative; overflow: hidden; }
.step__n {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: var(--navy-900); color: #fff; font-weight: 800; font-size: .9375rem; margin-bottom: 18px;
}
.step__tag { font-size: .6875rem; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-500); font-weight: 700; }
.step h3 { font-size: 1.3125rem; margin-top: 8px; color: var(--ink-2); }
.step p { color: var(--muted-2); font-size: .9375rem; margin-top: 10px; }
.step ul { margin-top: 16px; display: grid; gap: 9px; }
.step li { display: flex; align-items: center; gap: 9px; font-size: .875rem; color: var(--muted-2); }
.step li svg { width: 16px; height: 16px; color: var(--green-600); flex: none; }

/* ---------- Rewards ---------- */
.rewards { background: linear-gradient(170deg, var(--navy-900), var(--navy-950)); color: #fff; position: relative; overflow: hidden; }
.rewards::before {
  content: ""; position: absolute; width: 700px; height: 700px; left: -220px; top: -260px;
  background: radial-gradient(circle, rgba(0, 9, 183, .5), transparent 68%); filter: blur(40px);
}
.rewards .section-title { color: #fff; }
.rewards .section-sub { color: #b9c7e8; }
.rewards__inner { position: relative; z-index: 1; }
.big-num { font-size: clamp(3rem, 9vw, 6.5rem); font-weight: 800; letter-spacing: -.05em; background: linear-gradient(100deg, #7ec8ff, #fff 60%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.rewards__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 46px; }
.rewards__cell { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--r-lg); padding: 22px; }
.rewards__cell b { display: block; font-size: 1.6rem; font-weight: 800; letter-spacing: -.03em; }
.rewards__cell span { font-size: .8125rem; color: var(--muted-3); }

.tx-table { width: 100%; margin-top: 40px; border-collapse: collapse; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--r-lg); overflow: hidden; }
.tx-table th { text-align: left; font-size: .6875rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-3); padding: 14px 18px; background: rgba(255, 255, 255, .05); font-weight: 700; }
.tx-table td { padding: 15px 18px; font-size: .875rem; border-top: 1px solid rgba(255, 255, 255, .08); color: #dfe8ff; }
.tx-table td.hash { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; color: #7ec8ff; font-size: .8125rem; }
.tx-table td.amt { font-weight: 700; color: var(--emerald); text-align: right; }
.tx-scroll { overflow-x: auto; }

/* ---------- Certificates ---------- */
.cert {
  flex: none; width: 280px; border-radius: var(--r-xl); padding: 20px;
  background: linear-gradient(160deg, #fff, var(--tint-100));
  border: 1px solid var(--tint-300); box-shadow: var(--shadow-sm);
}
.cert__top { display: flex; align-items: center; gap: 10px; }
.cert__flag { font-size: 1.375rem; line-height: 1; }
.cert__name { font-weight: 700; color: var(--ink-2); font-size: .9375rem; }
.cert__country { font-size: .75rem; color: var(--muted); }
.cert__amt { font-size: 1.75rem; font-weight: 800; color: var(--ink-2); letter-spacing: -.04em; margin-top: 16px; }
.cert__foot { display: flex; justify-content: space-between; margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--tint-400); font-size: .75rem; color: var(--muted); }
.cert__seal { color: var(--green-600); font-weight: 700; }

/* ---------- Testimonials ---------- */
.tcard { flex: none; width: 372px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: 24px; box-shadow: var(--shadow-sm); }
.stars { display: flex; gap: 3px; color: var(--gold-2); }
.stars svg { width: 16px; height: 16px; }
.tcard h4 { font-size: 1.0625rem; color: var(--ink-2); margin-top: 14px; }
.tcard p { color: var(--muted-2); font-size: .875rem; margin-top: 10px; }
.tcard cite { display: block; margin-top: 16px; font-style: normal; font-weight: 600; font-size: .875rem; color: var(--ink-2); }

.trust-score { display: inline-flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 10px 20px; box-shadow: var(--shadow-sm); }
.trust-score b { font-size: 1.125rem; color: var(--ink-2); }
.trust-score span { color: var(--muted-2); font-size: .875rem; }

/* ---------- Support / community ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; }
.panel { border-radius: var(--r-2xl); padding: clamp(26px, 3vw, 40px); }
.panel--dark { background: linear-gradient(160deg, var(--navy-850), var(--navy-950)); color: #fff; }
.panel--dark h2, .panel--dark h3 { color: #fff; }
.panel--dark p { color: #b9c7e8; }
.panel--tint { background: var(--tint-100); border: 1px solid var(--tint-300); }
.panel h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.panel p { color: var(--muted-2); margin-top: 12px; font-size: .9375rem; }
.panel .btn { margin-top: 22px; }
.chan { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.chan span { background: rgba(255, 255, 255, .09); border: 1px solid rgba(255, 255, 255, .14); border-radius: 8px; padding: 7px 12px; font-size: .8125rem; color: #dfe8ff; }
.panel--tint .chan span { background: #fff; border-color: var(--tint-300); color: var(--muted-2); }
.mini-stats { display: flex; gap: 30px; margin-top: 26px; }
.mini-stats b { display: block; font-size: 1.5rem; font-weight: 800; letter-spacing: -.03em; }
.mini-stats span { font-size: .8125rem; color: var(--muted); }
.panel--dark .mini-stats span { color: var(--muted-3); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; margin-top: 44px; display: grid; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.faq__item.is-open { border-color: var(--tint-400); box-shadow: var(--shadow); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 24px; text-align: left; font-weight: 600; font-size: 1rem; color: var(--ink-2);
}
.faq__q i { flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--tint-200); color: var(--electric); display: grid; place-items: center; font-style: normal; font-size: 1.125rem; line-height: 1; transition: transform .22s ease, background .22s ease; }
.faq__item.is-open .faq__q i { background: var(--electric); color: #fff; transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq__a p { padding: 0 24px 22px; color: var(--muted-2); font-size: .9375rem; }

/* ---------- CTA ---------- */
.cta {
  position: relative; overflow: hidden; border-radius: var(--r-2xl); text-align: center;
  padding: clamp(44px, 6vw, 76px) 24px; color: #fff;
  background:
    radial-gradient(700px 340px at 50% 0%, rgba(0, 133, 242, .45), transparent 65%),
    linear-gradient(160deg, var(--navy-700), var(--navy-950));
}
.cta h2 { font-size: clamp(2rem, 4.4vw, 3.25rem); }
.cta p { color: #b9c7e8; margin-top: 14px; }
.cta .btn { margin-top: 28px; }
.cta__alt { margin-top: 18px; font-size: .875rem; color: var(--muted-3); }
.cta__alt a { color: #7ec8ff; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-950); color: #b9c7e8; padding-block: 64px 0; }
.footer__top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
.footer .logo { color: #fff; }
.footer .logo__word { color: #fff; }
/* The deepest gradient stop disappears against the near-black footer — lift
   the whole ramp so the mark keeps its shape there. */
.footer .logo__mark { --logo-1: #a8c4f9; --logo-2: #5f8de9; --logo-3: #3a63c9; }
.footer__blurb { font-size: .875rem; margin-top: 16px; max-width: 300px; color: var(--muted-3); }
.footer h5 { color: #fff; font-size: .8125rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; font-weight: 700; }
.footer li { margin-bottom: 10px; }
.footer li a { font-size: .9375rem; transition: color .16s ease; }
.footer li a:hover { color: #fff; }
.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .12); transition: background .18s ease; }
.socials a:hover { background: rgba(255, 255, 255, .15); }
.socials svg { width: 17px; height: 17px; }

.disclaimer { margin-top: 56px; padding-top: 32px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .75rem; line-height: 1.75; color: #6d7ea6; }
.disclaimer h6 { color: #9fb0d6; font-size: .75rem; font-weight: 700; margin-top: 18px; }
.disclaimer h6:first-child { margin-top: 0; }
.disclaimer p { margin-top: 6px; }
.disclaimer ul { list-style: disc; padding-left: 18px; margin-top: 6px; }
.disclaimer li { margin-bottom: 3px; }
.footer__bar { margin-top: 32px; padding-block: 22px; border-top: 1px solid rgba(255, 255, 255, .1); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .8125rem; }

/* ---------- Content pages ---------- */
.page-hero {
  background: radial-gradient(800px 380px at 50% -20%, rgba(0, 133, 242, .35), transparent 62%),
              linear-gradient(170deg, var(--navy-900), var(--navy-950));
  color: #fff; padding-block: clamp(52px, 7vw, 88px); text-align: center;
}
.page-hero h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
.page-hero p { color: #b9c7e8; margin-top: 16px; max-width: 640px; margin-inline: auto; }
.prose { max-width: 780px; margin-inline: auto; }
.prose h2 { font-size: 1.5rem; color: var(--ink-2); margin-top: 40px; }
.prose h3 { font-size: 1.125rem; color: var(--ink-2); margin-top: 28px; }
.prose p { color: var(--muted-2); margin-top: 12px; font-size: .9375rem; }
.prose ul { list-style: disc; padding-left: 20px; margin-top: 12px; color: var(--muted-2); font-size: .9375rem; }
.prose li { margin-bottom: 7px; }

/* Forms */
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .875rem; font-weight: 600; color: var(--ink-2); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--tint-300); border-radius: var(--r);
  background: #fff; font-size: .9375rem; transition: border-color .18s ease, box-shadow .18s ease;
}
.field input:focus, .field textarea:focus { outline: 0; border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(0, 133, 242, .12); }
.field textarea { min-height: 150px; resize: vertical; }
.alert { padding: 14px 18px; border-radius: var(--r); font-size: .875rem; margin-bottom: 20px; }
.alert--ok { background: rgba(44, 128, 91, .1); border: 1px solid rgba(44, 128, 91, .3); color: var(--green-600); }
.alert--err { background: rgba(228, 0, 20, .07); border: 1px solid rgba(228, 0, 20, .25); color: var(--red); }
.alert ul { list-style: disc; padding-left: 18px; }

/* Comparison table */
.cmp-scroll { overflow-x: auto; margin-top: 40px; border: 1px solid var(--line); border-radius: var(--r-xl); }
.cmp { width: 100%; border-collapse: collapse; min-width: 760px; background: #fff; }
.cmp th, .cmp td { padding: 15px 20px; text-align: left; font-size: .9375rem; border-bottom: 1px solid var(--line); }
.cmp thead th { background: var(--tint-100); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.cmp tbody th { font-weight: 600; color: var(--ink-2); }
.cmp td { color: var(--muted-2); }
.cmp tr:last-child th, .cmp tr:last-child td { border-bottom: 0; }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .selector__body { grid-template-columns: 1fr 1fr; }
  .price-card { grid-column: span 2; }
}
@media (max-width: 960px) {
  .nav, .header__actions { display: none; }
  .burger { display: grid; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card { order: 2; }
  .bento, .steps, .grid-3 { grid-template-columns: 1fr; }
  .card--wide { grid-column: span 1; }
  .split, .grid-2 { grid-template-columns: 1fr; }
  .rewards__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .selector__body { grid-template-columns: 1fr; }
  .price-card { grid-column: span 1; }
  .footer__top { grid-template-columns: 1fr; }
  .tcard { width: 300px; }
  .hero__cta .btn { width: 100%; }
}

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

/* ---------- Grid overflow guard ----------
   Grid items default to min-width:auto, so a max-content marquee track inside
   a card forces the whole column wider than its fr share. Opt every grid child
   out of that so overflow:hidden containers actually clip. */
.hero__inner > *,
.bento > *,
.steps > *,
.split > *,
.grid-2 > *,
.grid-3 > *,
.selector__body > *,
.rewards__grid > *,
.footer__top > *,
.stats__grid > * { min-width: 0; }

/* Wordmark tracking costs real width — ease off on narrow screens. */
@media (max-width: 620px) {
  .logo__mark { width: 34px; height: 34px; }
  .logo__word { font-size: .9375rem; }
  .logo__thin { letter-spacing: .14em; }
}
