/* ============================================================
   Smart DeFi — Landing styles
   Дизайн-система приложения: тёмный терминал, Geist + Geist Mono,
   акцент #f97316, моноширинные табличные цифры.
   ============================================================ */

:root {
  /* Поверхности (1:1 с приложением) */
  --bg:            #0a0a0a;
  --surface:       #141414;
  --surface-hover: #1c1c1c;
  --border:        #262626;
  --border-soft:   rgba(255, 255, 255, 0.06);

  /* Текст */
  --text:          #fafafa;
  --text-dim:      #a3a3a3;
  --text-mute:     rgba(255, 255, 255, 0.35);

  /* Бренд и семантика */
  --brand:         #f97316;
  --brand-soft:    rgba(249, 115, 22, 0.12);
  --brand-border:  rgba(249, 115, 22, 0.5);
  --positive:      #22c55e;
  --negative:      #ef4444;

  /* Сети */
  --sol:           #c29dff; /* color-mix(#9945ff 55%, white) */
  --eth:           #a8b8f3; /* color-mix(#627eea 55%, white) */

  --font-sans:     'Geist', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono:     'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --radius:        16px;
  --radius-sm:     10px;
  --shadow:        0 24px 60px -24px rgba(0, 0, 0, 0.8);
  --shadow-brand:  0 12px 36px -14px rgba(249, 115, 22, 0.45);

  --maxw:          1160px;
  --ease:          cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-feature-settings: 'cv11', 'ss01';
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -0.025em; font-weight: 700; }

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 820px; }

/* Моноширинные цифры — фирменный приём приложения */
.num, .as-val, .mock-mini-val, .pc-yield-val, .pc-yield-sub, .wallet-pill,
.pool-name small, .step-num, .range {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

.pos { color: var(--positive); }
.neg { color: var(--negative); }
.grad { color: var(--brand); }

/* ---------- Фон: сетка + одно брендовое свечение ---------- */
.bg-glows { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.bg-glows::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 55% at 50% 0%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 55% at 50% 0%, black 0%, transparent 75%);
}
.glow { position: absolute; border-radius: 50%; filter: blur(130px); }
.glow-1 { width: 640px; height: 640px; top: -260px; right: -140px; opacity: 0.5;
  background: radial-gradient(circle, rgba(249,115,22,0.22), transparent 70%);
  animation: float1 18s var(--ease) infinite alternate; }
.glow-2 { width: 480px; height: 480px; top: 45%; left: -220px; opacity: 0.35;
  background: radial-gradient(circle, rgba(249,115,22,0.14), transparent 70%);
  animation: float2 22s var(--ease) infinite alternate; }
.glow-3 { display: none; }
@keyframes float1 { to { transform: translate(-40px, 50px) scale(1.08); } }
@keyframes float2 { to { transform: translate(60px, -40px) scale(1.06); } }

main, .site-header, .site-footer { position: relative; z-index: 1; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14.5px; cursor: pointer; border: none;
  padding: 13px 22px; border-radius: var(--radius-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, border-color .2s;
  white-space: nowrap; font-family: inherit; letter-spacing: -0.01em;
}
.btn-primary { background: var(--brand); color: #0a0a0a; box-shadow: var(--shadow-brand); }
.btn-primary:hover { background: #fb8b3c; transform: translateY(-1px); box-shadow: 0 16px 44px -14px rgba(249,115,22,0.6); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--brand-border); background: var(--brand-soft); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 10, 0.6);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s;
}
.site-header.scrolled { background: rgba(10, 10, 10, 0.88); border-bottom-color: var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 24px; }

.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { display: grid; place-items: center; filter: drop-shadow(0 2px 6px rgba(249,115,22,0.35)); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-weight: 700; font-size: 16.5px; letter-spacing: -0.02em; }
.brand-tag {
  font-family: var(--font-mono); font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand); margin-top: 3px;
}

.nav { display: flex; gap: 26px; }
.nav a { font-size: 14px; color: var(--text-dim); font-weight: 500; transition: color .2s; }
.nav a:hover { color: var(--text); }
.header-cta { padding: 9px 16px; font-size: 13.5px; }

/* ---------- Hero ---------- */
.hero { padding: 76px 0 104px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 56px; align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim);
  background: var(--surface); border: 1px solid var(--border);
  padding: 7px 14px; border-radius: 100px; margin-bottom: 26px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); animation: pulse 2.2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(249,115,22,0.55); }
  70% { box-shadow: 0 0 0 8px rgba(249,115,22,0); }
  100% { box-shadow: 0 0 0 0 rgba(249,115,22,0); }
}

.hero-title { font-size: clamp(30px, 3.6vw, 46px); font-weight: 800; margin-bottom: 22px; letter-spacing: -0.035em; }
.hero-sub { font-size: clamp(16px, 1.5vw, 18px); color: var(--text-dim); max-width: 540px; margin-bottom: 18px; }
.hero-yield-note {
  font-size: 14px; color: var(--text-dim); max-width: 540px; margin-bottom: 32px;
  border-left: 2px solid var(--brand); padding-left: 12px;
}
.hero-yield-note strong { color: var(--text); font-weight: 600; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 18px; list-style: none; margin-top: 26px; }
.hero-trust li { font-size: 13px; color: var(--text-dim); display: flex; align-items: center; gap: 8px; }
.hero-trust li::before { content: '✓'; color: var(--brand); font-weight: 700; }

/* ---------- Waitlist form ---------- */
.waitlist-form { max-width: 500px; }
.waitlist-form.center-form { margin: 0 auto; }
.field {
  display: flex; gap: 8px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 6px; transition: border-color .25s, box-shadow .25s;
}
[hidden] { display: none !important; }
.field:focus-within { border-color: var(--brand-border); box-shadow: 0 0 0 4px rgba(249,115,22,0.12); }
.field input {
  flex: 1; min-width: 0; background: transparent; border: none; outline: none;
  color: var(--text); font-size: 15px; font-family: inherit; padding: 8px 14px;
}
.field input::placeholder { color: var(--text-mute); }
.field.invalid { border-color: var(--negative); box-shadow: 0 0 0 4px rgba(239,68,68,0.12); }
.form-note { font-size: 12.5px; color: var(--text-mute); margin-top: 12px; }
.form-success {
  margin-top: 14px; font-size: 14px; font-weight: 500; color: var(--positive);
  background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.25);
  padding: 12px 16px; border-radius: var(--radius-sm);
  animation: pop .4s var(--ease);
}
@keyframes pop { from { opacity: 0; transform: translateY(8px) scale(0.98); } to { opacity: 1; transform: none; } }

/* ============================================================
   Hero visual — окно приложения (реплика экрана Positions)
   ============================================================ */
.hero-visual { position: relative; }

.app-window {
  position: relative; z-index: 2;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow), 0 0 80px -40px rgba(249,115,22,0.25);
  overflow: hidden;
  animation: floatCard 8s var(--ease) infinite alternate;
}
@keyframes floatCard { to { transform: translateY(-10px); } }

.app-topbar {
  display: flex; align-items: center; gap: 18px;
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  background: rgba(10,10,10,0.5);
}
.app-brand { display: flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; }
.app-tabs { display: flex; gap: 4px; margin-left: 6px; }
.app-tabs i {
  font-style: normal; font-size: 11.5px; font-weight: 500; color: var(--text-mute);
  padding: 4px 10px; border-radius: 7px;
}
.app-tabs i.active { color: var(--text); background: var(--surface-hover); }
.wallet-pill {
  margin-left: auto; font-size: 10.5px; color: var(--text-dim);
  border: 1px solid var(--border); border-radius: 100px; padding: 4px 10px;
  background: rgba(10,10,10,0.4);
}

.app-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--border);
}
.as { padding: 14px 16px; display: flex; flex-direction: column; gap: 4px; }
.as + .as { border-left: 1px solid var(--border); }
.as-label {
  font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-mute); font-family: var(--font-mono);
}
.as-val { font-size: 17px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; }
.as-val small { font-size: 11px; font-weight: 500; opacity: 0.8; }

.as-claim-row { display: flex; align-items: center; gap: 10px; }
.claim-btn {
  font-family: inherit; font-size: 10.5px; font-weight: 600; cursor: default;
  color: #0a0a0a; background: var(--brand); border: none; border-radius: 100px;
  padding: 4px 11px; line-height: 1.2; letter-spacing: -0.01em;
  box-shadow: 0 4px 14px -6px rgba(249,115,22,0.55);
}

.pos-table { padding: 6px 0 10px; }
.pos-head, .pos-row {
  display: grid;
  grid-template-columns: 1.55fr 0.75fr 0.85fr 0.7fr 0.95fr;
  align-items: center; gap: 10px;
  padding: 9px 16px;
}
.pos-head span {
  font-family: var(--font-mono); font-size: 8.5px; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-mute); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.pos-row { border-top: 1px solid var(--border-soft); transition: background .2s; }
.pos-row:hover { background: var(--surface-hover); }
.pos-head span:nth-child(n+2):nth-child(-n+4), .pos-row .num { text-align: right; }

.pool-cell { display: flex; align-items: center; gap: 9px; }
.pair { display: inline-flex; }
.tok {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid var(--surface);
  background: var(--surface-hover);
  object-fit: cover;
}
.tok + .tok { margin-left: -7px; }

.pool-name { display: block; font-size: 12.5px; line-height: 1.25; font-weight: 500; white-space: nowrap; }
.pool-name em { font-style: normal; color: var(--text-mute); }
.pool-name small { display: block; font-size: 8.5px; text-transform: uppercase; letter-spacing: 0.08em; }
.net-sol { color: var(--sol); }
.net-eth { color: var(--eth); }

.num { font-size: 12px; display: flex; flex-direction: column; line-height: 1.3; color: var(--text); }
.num.pos { color: var(--positive); }
.num.neg { color: var(--negative); }
.num small { font-size: 10px; opacity: 0.8; }

.range { position: relative; height: 10px; }
.range::before {
  content: ''; position: absolute; inset-inline: 0; top: 50%; height: 2px;
  transform: translateY(-50%); border-radius: 2px; background: var(--border);
}
.range-fill {
  position: absolute; inset-inline: 0; top: 50%; height: 2px;
  transform: translateY(-50%); border-radius: 2px; background: rgba(34,197,94,0.8);
}
.range b {
  position: absolute; top: 50%; transform: translate(-50%, -55%);
  width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 6px solid var(--positive);
  filter: drop-shadow(0 0 4px rgba(34,197,94,0.45));
}

/* Плавающие мини-карточки */
.mock-card {
  background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.mock-label { font-size: 12px; color: var(--text-mute); margin-bottom: 6px; }
.mock-mini { padding: 14px 18px; position: absolute; z-index: 3; min-width: 170px; }
.mock-mini-1 { top: -30px; right: -16px; animation: floatCard 6s var(--ease) infinite alternate-reverse; }
.mock-mini-2 { bottom: -58px; left: -24px; animation: floatCard 8s var(--ease) infinite alternate; }
.mock-mini-val { font-weight: 600; font-size: 16px; margin-top: 2px; }
.mock-muted { font-size: 11.5px; color: var(--text-mute); }

.pc-yield-basis { display: block; font-size: 11px; color: var(--text-mute); margin-top: 4px; }

.risk-dots { display: inline-flex; gap: 5px; margin: 7px 0 5px; }
.risk-dots i { width: 22px; height: 5px; border-radius: 4px; background: rgba(255,255,255,0.1); }
.risk-dots i.on { background: var(--brand); box-shadow: 0 0 8px rgba(249,115,22,0.4); }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-head { max-width: 680px; margin-bottom: 52px; }
.kicker {
  display: inline-block; font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand);
  margin-bottom: 14px;
}
.kicker.center { display: block; text-align: center; }
.section-head h2 { font-size: clamp(27px, 3.5vw, 40px); font-weight: 700; margin-bottom: 16px; }
.section-lead { font-size: clamp(15.5px, 1.4vw, 17.5px); color: var(--text-dim); }
.section-lead.center { text-align: center; margin: 0 auto; }

/* ---------- Cards grid ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  position: relative;
  background: rgba(20,20,20,0.6); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform .25s var(--ease), border-color .25s, background .25s, box-shadow .25s;
}
.card:hover {
  transform: translateY(-4px); background: var(--surface);
  box-shadow: 0 12px 36px -18px rgba(249,115,22,0.25);
}
.card-ico {
  width: 42px; height: 42px; display: grid; place-items: center;
  color: var(--brand); background: var(--brand-soft);
  border: 1px solid rgba(249,115,22,0.25); border-radius: var(--radius-sm);
  margin-bottom: 18px;
}
.card-ico svg { width: 20px; height: 20px; }
.card h3 { font-size: 16.5px; font-weight: 600; margin-bottom: 9px; letter-spacing: -0.015em; }
.card p { font-size: 14px; color: var(--text-dim); }

/* Hairline сверху на акцентных карточках — как у сильных пулов в приложении */
.card.accent::before, .pc-hairline {
  content: ''; position: absolute; top: 0; left: 24px; right: 24px; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(249,115,22,0.45) 50%, transparent 100%);
}

/* ---------- Steps ---------- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.step {
  position: relative; background: rgba(20,20,20,0.6); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 18px;
  transition: transform .25s var(--ease), border-color .25s;
}
.step:hover { transform: translateY(-4px); border-color: var(--brand-border); }
.step-num {
  display: inline-grid; place-items: center; width: 34px; height: 34px;
  border-radius: var(--radius-sm); font-size: 13px; font-weight: 600;
  color: var(--brand); background: var(--brand-soft);
  border: 1px solid var(--brand-border); margin-bottom: 16px;
}
.step h3 { font-size: 15.5px; font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--text-dim); }

/* ---------- CTA band ---------- */
.cta-band { padding: 56px 0; }
.cta-inner {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
  background: var(--surface);
  border: 1px solid var(--border); border-radius: 22px; padding: 44px 48px;
}
.cta-inner::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(90% 140% at 0% 0%, rgba(249,115,22,0.12), transparent 55%);
}
.cta-inner h2 { font-size: clamp(23px, 3vw, 30px); margin-bottom: 10px; }
.cta-inner p { color: var(--text-dim); font-size: 15.5px; }
.waitlist-form.inline { min-width: 400px; }

/* ---------- Strategy ---------- */
.strategy-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: 64px; align-items: center; }
.check-list { list-style: none; margin: 24px 0; display: grid; gap: 13px; }
.check-list li { padding-left: 32px; position: relative; color: var(--text-dim); font-size: 15px; }
.check-list li::before {
  content: '✓'; position: absolute; left: 0; top: 1px; width: 21px; height: 21px;
  display: grid; place-items: center; border-radius: 7px; font-size: 11px; font-weight: 700;
  color: var(--brand); background: var(--brand-soft); border: 1px solid rgba(249,115,22,0.3);
}
.check-list.big li { font-size: 16px; padding: 4px 0 4px 34px; }
.muted-note { font-size: 13px; color: var(--text-mute); border-left: 2px solid var(--border); padding-left: 14px; margin-top: 8px; }

/* Карточка пула — реплика PoolCard из приложения */
.strategy-card {
  position: relative;
  padding: 22px 24px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow), 0 12px 36px -18px rgba(249,115,22,0.2);
}
.sc-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.sc-pair-wrap { display: flex; align-items: center; gap: 10px; }
.sc-pair-wrap .tok { width: 26px; height: 26px; font-size: 10.5px; }
.sc-title { font-weight: 600; font-size: 17px; letter-spacing: -0.015em; }
.sc-pill {
  font-family: var(--font-mono); font-size: 10px; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--brand); background: rgba(10,10,10,0.6);
  border: 1px solid var(--brand-border); padding: 4px 10px; border-radius: 7px;
}

.pc-yield {
  display: flex; flex-direction: column; gap: 5px;
  border-top: 1px dashed var(--border); border-bottom: 1px dashed var(--border);
  padding: 14px 0; margin: 14px 0 4px;
}
.pc-yield-label {
  font-family: var(--font-mono); font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-mute);
}
.pc-yield-val { font-size: 32px; font-weight: 600; line-height: 1; letter-spacing: -0.02em; color: var(--positive); }
.pc-yield-sub { font-size: 11px; color: var(--text-mute); }

.sc-metric { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--border-soft); gap: 16px; }
.sc-metric .mock-label, .sc-foot .mock-muted { margin: 0; font-size: 12.5px; }
.sc-strong { font-weight: 600; font-size: 13.5px; text-align: right; }
.sc-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 15px; gap: 16px; }

/* ---------- Trust ---------- */
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.experts {
  position: relative; overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 32px;
}
.experts::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(80% 100% at 100% 0%, rgba(249,115,22,0.1), transparent 55%);
}
.experts-badge {
  display: inline-block; font-family: var(--font-mono); font-size: 10.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--brand); background: var(--brand-soft); border: 1px solid var(--brand-border);
  padding: 6px 12px; border-radius: 7px; margin-bottom: 18px;
}
.experts h3 { font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.experts p { color: var(--text-dim); font-size: 14.5px; margin-bottom: 22px; }
.logos { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.logo-chip {
  font-size: 12.5px; font-weight: 500; color: var(--text);
  background: var(--surface-hover); border: 1px solid var(--border);
  padding: 7px 13px; border-radius: var(--radius-sm);
  transition: border-color .2s, transform .2s;
}
.logo-chip:hover { border-color: var(--brand-border); transform: translateY(-2px); }
.chains { display: flex; flex-wrap: wrap; gap: 8px; }
.chain {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 6px 12px; border-radius: 100px; border: 1px dashed var(--border);
}

/* ---------- FAQ ---------- */
.accordion { display: grid; gap: 10px; }
.accordion details {
  background: rgba(20,20,20,0.6); border: 1px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden; transition: border-color .25s, background .25s;
}
.accordion details[open] { background: var(--surface); border-color: var(--brand-border); }
.accordion summary {
  cursor: pointer; list-style: none; padding: 19px 22px; font-weight: 600; font-size: 15.5px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  letter-spacing: -0.01em;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: '+'; font-family: var(--font-mono); font-size: 20px; font-weight: 400;
  color: var(--brand); transition: transform .3s var(--ease); flex-shrink: 0;
}
.accordion details[open] summary::after { transform: rotate(45deg); }
.acc-body { padding: 0 22px 20px; }
.acc-body p { color: var(--text-dim); font-size: 14.5px; }

/* ---------- Final CTA ---------- */
.cta-final { padding-bottom: 120px; }
.cta-final-inner {
  position: relative; overflow: hidden; text-align: center; padding: 64px 48px;
  background: var(--surface);
  border: 1px solid var(--border); border-radius: 24px;
}
.cta-final-inner::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(110% 130% at 50% 0%, rgba(249,115,22,0.14), transparent 60%);
}
.cta-final-inner > * { position: relative; }
.cta-final-inner h2 { font-size: clamp(27px, 4vw, 42px); margin-bottom: 16px; }
.cta-final-inner .form-note { text-align: center; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 64px 0 40px; background: rgba(20,20,20,0.4); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .brand-name { font-size: 19px; }
.footer-brand .brand-tag { display: inline-block; margin: 4px 0 14px; }
.footer-desc { color: var(--text-mute); font-size: 13.5px; max-width: 320px; }
.footer-col h4 {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-mute); margin-bottom: 16px;
}
.footer-col a { display: block; color: var(--text-dim); font-size: 14px; margin-bottom: 11px; transition: color .2s; }
.footer-col a:hover { color: var(--brand); }
.footer-bottom { border-top: 1px solid var(--border-soft); padding-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.disclaimer { font-size: 12.5px; color: var(--text-mute); max-width: 760px; line-height: 1.55; }
.copyright { font-size: 12.5px; color: var(--text-mute); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.cards-grid .reveal.in:nth-child(2), .steps .reveal.in:nth-child(2) { transition-delay: .08s; }
.cards-grid .reveal.in:nth-child(3), .steps .reveal.in:nth-child(3) { transition-delay: .16s; }
.cards-grid .reveal.in:nth-child(4), .steps .reveal.in:nth-child(4) { transition-delay: .24s; }
.steps .reveal.in:nth-child(5) { transition-delay: .32s; }

/* Каскадное появление строк таблицы в hero */
.hero-visual.in .pos-row { animation: rowIn .5s var(--ease) backwards; }
.hero-visual.in .pos-row:nth-child(2) { animation-delay: .55s; }
.hero-visual.in .pos-row:nth-child(3) { animation-delay: .7s; }
.hero-visual.in .pos-row:nth-child(4) { animation-delay: .85s; }
@keyframes rowIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .glow, .app-window, .mock-mini, .eyebrow .dot, .hero-visual.in .pos-row { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 72px; }
  .hero-visual { max-width: 560px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .strategy-grid { grid-template-columns: 1fr; gap: 40px; }
  .strategy-card { max-width: 460px; }
  .trust-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-inner { grid-template-columns: 1fr; gap: 24px; padding: 36px; }
  .waitlist-form.inline { min-width: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 560px) {
  .section { padding: 72px 0; }
  .hero { padding: 44px 0 72px; }
  .container { padding: 0 18px; }
  .cards-grid, .steps { grid-template-columns: 1fr; }
  .field { flex-direction: column; padding: 10px; }
  .field .btn { width: 100%; }
  .header-cta { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-final-inner, .cta-inner { padding: 32px 22px; }

  .app-tabs { display: none; }
  .as { padding: 11px 12px; }
  .as-val { font-size: 14px; }
  .pos-head { display: none; }
  .pos-head, .pos-row { grid-template-columns: 1.6fr 0.9fr 1fr; gap: 8px; padding: 10px 12px; }
  .pos-row .num:nth-child(4), .pos-row .range { display: none; }
  .mock-mini-1 { right: 0; top: -26px; }
  .mock-mini-2 { left: 0; bottom: -30px; }
}
