/* ============================================================================
   Free Signals Pro — Premium Signals Sales Page
   Built on the VoxFlow design system (dark command-console, neon-lime accent).
   ============================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand / accent */
  --neon:        #a3ff35;
  --neon-dark:   #263f10;
  --app-glow:    rgba(163, 255, 53, 0.07);

  /* Surfaces */
  --shell-bg:    #303136;
  --app-bg:      #202124;
  --card:        #25262a;
  --s1:          #222327;
  --s2:          #292a2e;
  --s3:          #303136;

  /* Borders */
  --border:      rgba(255, 255, 255, 0.08);
  --border-2:    rgba(255, 255, 255, 0.12);
  --surface-hover:  rgba(255, 255, 255, 0.05);
  --surface-subtle: rgba(255, 255, 255, 0.03);

  /* Text */
  --text-strong: #ffffff;
  --text-soft:   rgba(255, 255, 255, 0.72);
  --text-muted:  rgba(255, 255, 255, 0.52);
  --text-faint:  rgba(255, 255, 255, 0.34);

  /* Semantic — profit/loss/info */
  --win:     #4ade80;   /* TP hit, profit */
  --win-bg:  rgba(74, 222, 128, 0.10);
  --win-br:  rgba(74, 222, 128, 0.24);
  --loss:    #ff5d5d;   /* SL, loss */
  --loss-bg: rgba(255, 93, 93, 0.10);
  --loss-br: rgba(255, 93, 93, 0.24);
  --warn:    #fbbf24;
  --warn-bg: rgba(251, 191, 36, 0.10);
  --warn-br: rgba(251, 191, 36, 0.24);
  --info:    #60a5fa;
  --info-bg: rgba(96, 165, 250, 0.10);
  --info-br: rgba(96, 165, 250, 0.24);

  /* Radii */
  --r-sm:  0.75rem;
  --r-md:  1rem;
  --r-lg:  1.25rem;
  --r-xl:  1.5rem;
  --r-2xl: 2rem;
  --r-pill: 9999px;

  /* Glows */
  --glow-neon: 0 0 30px -8px rgba(163, 255, 53, 0.55), inset 0 0 20px rgba(163, 255, 53, 0.08);
  --glow-card: 0 0 80px -22px rgba(163, 255, 53, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  --glow-sm:   0 0 16px -4px rgba(163, 255, 53, 0.4);
  --shadow-panel: 0 24px 80px -42px rgba(0,0,0,0.7);

  --font: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --mono: ui-monospace, 'SF Mono', 'JetBrains Mono', Menlo, Consolas, monospace;

  --maxw: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--app-bg);
  color: var(--text-strong);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  overflow-x: hidden;
}

/* Radial neon glow that anchors the whole page like the VoxFlow app canvas */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(70% 50% at 0% 0%, var(--app-glow) 0%, transparent 55%),
    radial-gradient(60% 45% at 100% 0%, rgba(96,165,250,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

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

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* ── Type scale ───────────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--neon);
  padding: 6px 13px;
  white-space: nowrap;
  background: rgba(163,255,53,0.07);
  border: 1px solid rgba(163,255,53,0.22);
  border-radius: var(--r-pill);
}
.eyebrow.muted { color: var(--text-muted); background: var(--surface-subtle); border-color: var(--border); }
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--neon); box-shadow: 0 0 8px var(--neon); }

h1, h2, h3 { line-height: 1.1; letter-spacing: -0.02em; font-weight: 700; }
.section-title { font-size: clamp(28px, 4vw, 44px); }
.section-sub { color: var(--text-soft); font-size: 17px; max-width: 620px; margin-top: 16px; line-height: 1.6; text-wrap: pretty; }

.section { padding: 96px 0; position: relative; }
.section-head { margin-bottom: 52px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

.mono { font-family: var(--mono); }
.win-c { color: var(--win); }
.loss-c { color: var(--loss); }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: 15px; border-radius: var(--r-pill);
  padding: 15px 26px; transition: all .18s ease; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--neon); color: #0a0a0a;
  box-shadow: var(--glow-neon);
}
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-ghost {
  background: var(--surface-subtle); color: var(--text-strong);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover { background: var(--surface-hover); border-color: rgba(255,255,255,0.2); }
.btn-sm { padding: 11px 18px; font-size: 14px; }
.btn-lg { padding: 18px 34px; font-size: 16px; }

/* ── Nav ──────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(32,33,36,0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.nav.scrolled { border-bottom-color: var(--border); background: rgba(28,29,32,0.86); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.brand .name { font-weight: 700; font-size: 16px; letter-spacing: -0.01em; }
.brand .name span { color: var(--neon); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 14px; color: var(--text-muted); transition: color .15s; }
.nav-links a:hover { color: var(--text-strong); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
@media (max-width: 880px) { .nav-links { display: none; } }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero { padding: 70px 0 90px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(36px, 5.4vw, 60px); letter-spacing: -0.03em; line-height: 1.04; margin-top: 22px; }
.hero h1 .hl { color: var(--neon); }
.hero-sub { color: var(--text-soft); font-size: 18px; line-height: 1.6; margin-top: 22px; max-width: 540px; text-wrap: pretty; }
.hero-ctas { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-trust-row { display: flex; align-items: center; gap: 22px; margin-top: 30px; flex-wrap: wrap; color: var(--text-muted); font-size: 13px; }
.hero-trust-row .ti { display: flex; align-items: center; gap: 8px; }
.hero-trust-row svg { width: 16px; height: 16px; color: var(--neon); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-cockpit { order: 2; }
}

/* Hero cockpit — layered cards */
.hero-cockpit { position: relative; min-height: 480px; }
.float-card {
  background: linear-gradient(180deg, var(--s2) 0%, var(--card) 100%);
  border: 1px solid var(--border); border-radius: var(--r-xl);
  box-shadow: var(--shadow-panel);
}


/* main signal card */
.cockpit-signal { position: relative; z-index: 3; padding: 20px; }
.cockpit-chart { position: relative; z-index: 2; margin-top: 16px; padding: 18px 18px 10px; }
.cockpit-feed { position: absolute; right: -8px; bottom: -14px; z-index: 4; width: 248px; padding: 14px 15px; }
@media (max-width: 1080px) { .cockpit-feed { position: static; width: 100%; margin-top: 16px; } }
@media (max-width: 900px) { .cockpit-feed { width: 100%; } }

/* Signal card internals */
.sig-head { display: flex; align-items: center; justify-content: space-between; }
.sig-pair { display: flex; align-items: center; gap: 10px; }
.sig-pair .badge-mkt { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; font-weight: 700; font-size: 12px; letter-spacing: -0.02em; }
.mkt-gold { background: rgba(251,191,36,0.14); color: var(--warn); }
.mkt-fx { background: var(--info-bg); color: var(--info); }
.mkt-crypto { background: rgba(163,255,53,0.12); color: var(--neon); }
.sig-pair .pair-name { font-weight: 700; font-size: 15px; }
.sig-pair .pair-dir { font-size: 12px; color: var(--text-muted); }
.sig-levels { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 16px; }
.lvl { background: var(--surface-subtle); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 9px 11px; }
.lvl .k { font-size: 11px; color: var(--text-muted); letter-spacing: 0.03em; text-transform: uppercase; }
.lvl .v { font-family: var(--mono); font-size: 15px; font-weight: 600; margin-top: 3px; }
.lvl.tp .v { color: var(--win); } .lvl.sl .v { color: var(--loss); }

/* status pill */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; padding: 4px 11px; border-radius: var(--r-pill);
  letter-spacing: 0.02em;
}
.pill svg { width: 12px; height: 12px; }
.pill.win  { background: var(--win-bg);  color: var(--win);  border: 1px solid var(--win-br); }
.pill.loss { background: var(--loss-bg); color: var(--loss); border: 1px solid var(--loss-br); }
.pill.info { background: var(--info-bg); color: var(--info); border: 1px solid var(--info-br); }
.pill.warn { background: var(--warn-bg); color: var(--warn); border: 1px solid var(--warn-br); }
.pill.live { background: var(--win-bg); color: var(--win); border: 1px solid var(--win-br); }
.pill.live .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--win); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74,222,128,.5); } 50% { opacity: .55; box-shadow: 0 0 0 5px rgba(74,222,128,0); } }

/* chart */
.chart-box { position: relative; }
.chart-cap { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.chart-cap .t { font-size: 12px; color: var(--text-muted); }
.chart-cap .px { font-family: var(--mono); font-weight: 700; font-size: 16px; color: var(--neon); }
svg.chart { width: 100%; height: auto; display: block; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* live feed */
.feed-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.feed-head .t { font-size: 13px; font-weight: 600; }
.feed-list { height: 132px; overflow: hidden; position: relative; }
.feed-track { display: flex; flex-direction: column; gap: 9px; will-change: transform; }
.feed-item { display: flex; align-items: center; gap: 9px; font-size: 12px; color: var(--text-soft); }
.feed-item .ic { width: 22px; height: 22px; border-radius: 6px; display: grid; place-items: center; flex-shrink: 0; }
.feed-item .ic svg { width: 13px; height: 13px; }
.feed-item .time { margin-left: auto; color: var(--text-faint); font-size: 11px; font-family: var(--mono); }

/* ── Trust strip ──────────────────────────────────────────────────────────── */
.trust { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface-subtle); padding: 44px 0; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat .num { font-size: 40px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.stat .num .u { color: var(--neon); }
.stat .lab { color: var(--text-muted); font-size: 13px; margin-top: 9px; }
.stat .ph { font-size: 11px; color: var(--text-faint); margin-top: 4px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 36px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-soft);
  padding: 9px 15px; border: 1px solid var(--border); border-radius: var(--r-pill); background: var(--surface-subtle);
}
.chip svg { width: 15px; height: 15px; color: var(--neon); }
@media (max-width: 760px) { .stats-row { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; } }

/* ── How it works ─────────────────────────────────────────────────────────── */
.flow-bar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 44px; }
.flow-node { display: inline-flex; align-items: center; gap: 9px; padding: 10px 16px; border-radius: var(--r-pill); background: var(--surface-subtle); border: 1px solid var(--border); font-size: 13px; font-weight: 500; }
.flow-node svg { width: 16px; height: 16px; color: var(--neon); }
.flow-arrow { color: var(--text-faint); width: 18px; height: 18px; flex-shrink: 0; }
.flow-node.accent { background: rgba(163,255,53,0.08); border-color: rgba(163,255,53,0.25); color: var(--neon); }

.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.step {
  background: linear-gradient(180deg, var(--s2) 0%, var(--card) 100%);
  border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px 20px;
  position: relative;
}
.step .n { font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--neon); }
.step .si { width: 42px; height: 42px; border-radius: 11px; background: var(--neon-dark); display: grid; place-items: center; margin: 14px 0 16px; box-shadow: var(--glow-sm); }
.step .si svg { width: 20px; height: 20px; color: var(--neon); }
.step h3 { font-size: 16px; margin-bottom: 8px; }
.step p { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ── Premium features ─────────────────────────────────────────────────────── */
.premium-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 36px; align-items: start; }
@media (max-width: 940px) { .premium-grid { grid-template-columns: 1fr; } }
.feat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .feat-cards { grid-template-columns: 1fr; } }
.feat {
  background: linear-gradient(180deg, var(--s2) 0%, var(--card) 100%);
  border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px;
  transition: border-color .2s, transform .2s;
}
.feat:hover { border-color: rgba(163,255,53,0.25); transform: translateY(-2px); }
.feat .fi { width: 40px; height: 40px; border-radius: 10px; background: var(--surface-hover); display: grid; place-items: center; margin-bottom: 16px; }
.feat .fi svg { width: 19px; height: 19px; color: var(--neon); }
.feat h3 { font-size: 15.5px; margin-bottom: 7px; }
.feat p { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; }

/* Telegram mockup */
.tg-mock {
  background: linear-gradient(180deg, var(--s2) 0%, var(--card) 100%);
  border: 1px solid var(--border); border-radius: var(--r-xl); padding: 18px; box-shadow: var(--shadow-panel);
}
.tg-head { display: flex; align-items: center; gap: 11px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.tg-head .av { width: 38px; height: 38px; border-radius: 50%; background: var(--neon-dark); display: grid; place-items: center; }
.tg-head .av img { width: 22px; height: 22px; }
.tg-head .tn { font-weight: 600; font-size: 14px; }
.tg-head .ts { font-size: 12px; color: var(--win); display: flex; align-items: center; gap: 6px; }
.tg-msg {
  margin-top: 14px; background: var(--s3); border: 1px solid var(--border); border-radius: 4px 14px 14px 14px;
  padding: 14px 15px; position: relative;
}
.tg-msg .label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: var(--neon); text-transform: uppercase; }
.tg-msg .pair { font-size: 19px; font-weight: 700; margin: 7px 0 12px; }
.tg-msg .pair .dir { color: var(--win); }
.tg-rows { display: flex; flex-direction: column; gap: 7px; font-family: var(--mono); font-size: 13.5px; }
.tg-rows .row { display: flex; justify-content: space-between; }
.tg-rows .row .k { color: var(--text-muted); }
.tg-rows .row .tp { color: var(--win); } .tg-rows .row .sl { color: var(--loss); }
.tg-msg .foot { display: flex; align-items: center; justify-content: space-between; margin-top: 13px; padding-top: 12px; border-top: 1px solid var(--border); }
.tg-time { font-size: 11px; color: var(--text-faint); text-align: right; margin-top: 6px; font-family: var(--mono); }

/* ── Proof wall ───────────────────────────────────────────────────────────── */
.tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 30px; }
.tab {
  font-size: 13.5px; font-weight: 500; color: var(--text-muted);
  padding: 9px 17px; border-radius: var(--r-pill); border: 1px solid var(--border); background: var(--surface-subtle);
  transition: all .15s;
}
.tab:hover { color: var(--text-strong); }
.tab.active { color: #0a0a0a; background: var(--neon); border-color: var(--neon); font-weight: 600; }
.masonry { columns: 3; column-gap: 18px; }
@media (max-width: 900px) { .masonry { columns: 2; } }
@media (max-width: 560px) { .masonry { columns: 1; } }
.proof {
  break-inside: avoid; margin-bottom: 18px; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border); background: linear-gradient(180deg, var(--s2), var(--card));
  transition: border-color .2s, box-shadow .2s; position: relative;
}
.proof:hover { border-color: rgba(163,255,53,0.3); box-shadow: var(--glow-card); }
.proof-img { position: relative; overflow: hidden; }
.proof-img img {
  width: 100%; height: auto; display: block;
  transition: transform .35s ease;
}
.proof:hover .proof-img img { transform: scale(1.03); }
.proof-ph {
  display: grid; place-items: center; text-align: center; color: var(--text-faint);
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.018) 0 12px, transparent 12px 24px), var(--s3);
  transition: transform .35s ease;
}
.proof:hover .proof-ph { transform: scale(1.04); }
.proof-ph .ico { width: 34px; height: 34px; opacity: .5; margin-bottom: 10px; }
.proof-ph .txt { font-size: 12px; letter-spacing: 0.02em; }
.proof-badges { position: absolute; top: 12px; left: 12px; right: 12px; display: flex; justify-content: space-between; gap: 8px; }
.proof-meta { padding: 14px 15px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.proof-meta .cap { font-size: 13px; color: var(--text-soft); }
.proof-meta .rr { font-family: var(--mono); font-size: 12px; color: var(--win); font-weight: 600; }

/* ── Trade breakdown ──────────────────────────────────────────────────────── */
.breakdown-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 28px; align-items: stretch; }
@media (max-width: 940px) { .breakdown-grid { grid-template-columns: 1fr; } }
.bd-card { background: linear-gradient(180deg, var(--s2), var(--card)); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 24px; }
.bd-chart-wrap { position: relative; }
.bd-chart-wrap .legend { position: absolute; top: 18px; left: 18px; display: flex; flex-direction: column; gap: 6px; }
.legend .li { display: flex; align-items: center; gap: 7px; font-size: 11px; font-family: var(--mono); color: var(--text-soft); }
.legend .li .sw { width: 14px; height: 2px; border-radius: 2px; }
.bd-result { display: flex; align-items: center; gap: 16px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border); }
.bd-result .big { font-family: var(--mono); font-size: 26px; font-weight: 700; color: var(--win); }
.bd-result .lab { font-size: 12px; color: var(--text-muted); }

/* ── Broker unlock ────────────────────────────────────────────────────────── */
.broker { background: var(--surface-subtle); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.broker-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
@media (max-width: 940px) { .broker-grid { grid-template-columns: 1fr; } }
.broker-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bc { background: linear-gradient(180deg, var(--s2), var(--card)); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 18px 20px; }
.bc .bi { width: 36px; height: 36px; border-radius: 9px; background: var(--surface-hover); display: grid; place-items: center; margin-bottom: 13px; }
.bc .bi svg { width: 18px; height: 18px; color: var(--neon); }
.bc h4 { font-size: 14px; margin-bottom: 6px; }
.bc p { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; }
.broker-panel { background: linear-gradient(180deg, var(--s2), var(--card)); border: 1px solid var(--border-2); border-radius: var(--r-xl); padding: 28px; box-shadow: var(--glow-card); }
.broker-logo { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.broker-logo .bl-name { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }
.broker-logo .bl-name b { color: var(--neon); }
.broker-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 4px 0 22px; }
.spec { background: var(--surface-subtle); border: 1px solid var(--border); border-radius: var(--r-md); padding: 14px; }
.spec .sv { font-size: 18px; font-weight: 700; font-family: var(--mono); }
.spec .sv.neon { color: var(--neon); }
.spec .sk { font-size: 12px; color: var(--text-muted); margin-top: 3px; }
.placeholder-tag { color: var(--warn); font-size: 11px; font-family: var(--mono); }

/* ── Why copy ─────────────────────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }
.why {
  background: linear-gradient(180deg, var(--s2), var(--card)); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px; transition: border-color .2s;
}
.why:hover { border-color: var(--border-2); }
.why .wi { width: 40px; height: 40px; border-radius: 10px; background: var(--neon-dark); display: grid; place-items: center; margin-bottom: 16px; box-shadow: var(--glow-sm); }
.why .wi svg { width: 19px; height: 19px; color: var(--neon); }
.why h3 { font-size: 16px; margin-bottom: 8px; }
.why p { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; }

/* ── Comparison ───────────────────────────────────────────────────────────── */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 880px; margin: 0 auto; }
@media (max-width: 720px) { .compare { grid-template-columns: 1fr; } }
.col {
  border-radius: var(--r-xl); border: 1px solid var(--border); overflow: hidden;
  background: linear-gradient(180deg, var(--s2), var(--card));
}
.col.premium { border-color: rgba(163,255,53,0.3); box-shadow: var(--glow-card); }
.col-head { padding: 22px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.col-head .title { font-size: 17px; font-weight: 700; }
.col.premium .col-head { background: rgba(163,255,53,0.06); }
.col-list { padding: 12px 24px 24px; }
.col-list li { display: flex; align-items: flex-start; gap: 11px; padding: 11px 0; font-size: 14px; color: var(--text-soft); border-bottom: 1px solid var(--surface-subtle); }
.col-list li:last-child { border-bottom: none; }
.col-list li svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 1px; }
.col-list li .ok { color: var(--neon); }
.col-list li .mut { color: var(--text-faint); }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--surface-subtle); overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: var(--border-2); background: linear-gradient(180deg, var(--s2), var(--card)); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 19px 22px; text-align: left; font-size: 15.5px; font-weight: 600; color: var(--text-strong); }
.faq-q .icon { width: 20px; height: 20px; color: var(--neon); flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a .inner { padding: 0 22px 20px; color: var(--text-muted); font-size: 14.5px; line-height: 1.6; text-wrap: pretty; }

/* ── Risk ─────────────────────────────────────────────────────────────────── */
.risk {
  max-width: 900px; margin: 0 auto; display: flex; gap: 18px; align-items: flex-start;
  background: var(--surface-subtle); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 26px 28px;
}
.risk .ri { width: 42px; height: 42px; border-radius: 11px; background: var(--warn-bg); border: 1px solid var(--warn-br); display: grid; place-items: center; flex-shrink: 0; }
.risk .ri svg { width: 21px; height: 21px; color: var(--warn); }
.risk h4 { font-size: 15px; margin-bottom: 9px; }
.risk p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; }
.risk p + p { margin-top: 8px; }

/* ── Final CTA ────────────────────────────────────────────────────────────── */
.final {
  position: relative; text-align: center; padding: 100px 0;
  border-top: 1px solid var(--border);
  background: radial-gradient(60% 70% at 50% 0%, rgba(163,255,53,0.09) 0%, transparent 60%);
}
.final h2 { font-size: clamp(32px, 5vw, 52px); letter-spacing: -0.03em; }
.final .section-sub { margin: 18px auto 0; }
.final-ctas { display: flex; gap: 14px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.final-note { margin-top: 22px; font-size: 13px; color: var(--text-muted); }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--border); padding: 40px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer .brand .name { font-size: 15px; }
.footer .links { display: flex; gap: 22px; }
.footer .links a { font-size: 13px; color: var(--text-muted); transition: color .15s; }
.footer .links a:hover { color: var(--text-strong); }
.footer .copy { font-size: 12px; color: var(--text-faint); width: 100%; padding-top: 20px; border-top: 1px solid var(--surface-subtle); line-height: 1.6; }

/* ── Entrance motion ────────────────────────────────────────────────────────
   NOTE: this preview environment pauses CSS animations / rAF when the iframe
   is backgrounded, which freezes an opacity:0 entrance at its hidden frame.
   So content is ALWAYS visible by default and we never animate from hidden.
   Motion comes from count-up, chart-draw, the live feed and hover states.   */
.reveal, .float-card, .step { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal, .float-card, .step { opacity: 1 !important; transform: none !important; }
  .draw-path { stroke-dashoffset: 0 !important; }
}
