/* =========================================================
   Senia · LP Disparos — on-brand rebuild
   Design system oficial: skill senia-design (fonte da verdade).
   Azul Senia #1C69FA · Schibsted Grotesk (display) + Hanken Grotesk (corpo)
   Neutros clínicos · botões pill · sombras suaves · cantos arredondados.
   Sem travessão, sem emoji nas peças.
   ========================================================= */

:root{
  /* Brand · azul */
  --senia-blue-deep:#0A41F8;
  --senia-blue:#1C69FA;        /* PRIMÁRIA */
  --senia-blue-light:#2A85FB;
  --senia-blue-300:#66B5FF;
  --senia-blue-100:#DCEBFF;
  --senia-gradient:linear-gradient(90deg,#0A41F8,#1C69FA,#2A85FB);
  --senia-gradient-135:linear-gradient(135deg,#0A41F8,#1C69FA 55%,#2A85FB);

  /* Azuis profundos (autoridade) */
  --navy-900:#0D1B4C; --navy-800:#132B6B; --navy-700:#1D3F91; --navy-500:#355EBA; --navy-300:#7B9BDE;
  --ink:#0B1B3B;

  /* Neutros clínicos */
  --white:#FFFFFF; --neutral-50:#F6F8FC; --neutral-100:#E9EEF7; --neutral-300:#C9D3E5; --neutral-500:#7E8AA8;
  --cloud:#F2F5F9; --mist:#EAF1FF;

  /* Apoio / acentos (só destaques) */
  --teal-500:#13A1A8; --teal-50:#E5FAF9;
  --accent-amber:#FFB86A; --accent-sand:#FFD9A6; --accent-indigo:#5B5CEB;

  /* Semânticos */
  --surface:#FDFDFE; --surface-card:#FFFFFF; --surface-muted:#F2F5F9; --surface-accent:#EAF1FF;
  --text-strong:#0E1C3D; --text-body:#51617F; --text-muted:#8894AC; --text-on-dark:#FDFDFE; --text-eyebrow:#1C69FA;
  --border:#E5EAF3; --border-accent:#DCE7FF;
  --action:#1C69FA; --action-hover:#0A41F8;
  --danger:#D64562; --ok:#13A1A8;

  /* Fontes */
  --font-display:'Schibsted Grotesk', ui-sans-serif, system-ui, sans-serif;
  --font-body:'Hanken Grotesk', ui-sans-serif, system-ui, sans-serif;
  --font-mono:ui-monospace,'SFMono-Regular',Menlo,monospace;

  /* Raios */
  --radius-xs:8px; --radius-sm:11px; --radius-md:18px; --radius-lg:24px; --radius-pill:100px;

  /* Sombras (suaves, difusas) */
  --shadow-card:0 24px 50px -28px rgba(11,27,59,0.40);
  --shadow-raised:0 30px 60px -30px rgba(11,27,59,0.50);
  --shadow-soft:0 8px 24px -16px rgba(11,27,59,0.30);

  --wrap:720px; --wide:1080px;
  --ease:cubic-bezier(0.4,0,0.2,1);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }
body{
  margin:0; background:var(--surface); color:var(--text-strong);
  font-family:var(--font-body); font-size:18px; line-height:1.62; font-weight:400;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
}
img{ max-width:100%; display:block; }
p{ margin:0 0 18px; color:var(--text-body); }
strong,b{ font-weight:700; color:var(--text-strong); }
a{ color:var(--senia-blue); text-decoration:none; }
a:hover{ color:var(--action-hover); text-decoration:underline; text-underline-offset:2px; }

.wrap{ max-width:var(--wrap); margin:0 auto; padding:0 24px; }
.wide{ max-width:var(--wide); margin:0 auto; padding:0 24px; }
section{ padding:clamp(52px,8vw,92px) 0; }
.alt{ background:var(--neutral-50); }
.mist{ background:var(--mist); }

/* ---------- tipografia ---------- */
h1,h2,h3,h4{ font-family:var(--font-display); color:var(--text-strong); margin:0; letter-spacing:-0.03em; font-weight:700; line-height:1.05; }
.eyebrow{
  font-family:var(--font-display); font-size:13px; font-weight:700;
  letter-spacing:0.2em; text-transform:uppercase; color:var(--text-eyebrow); margin:0 0 16px;
}
.crosshead{
  font-family:var(--font-display); font-weight:700; letter-spacing:-0.03em;
  font-size:clamp(27px,4.2vw,40px); line-height:1.08; margin:0 0 22px; color:var(--text-strong); text-wrap:balance;
}
.lede p:first-of-type{ font-size:21px; color:var(--text-strong); }
.lede p{ font-size:19px; }
.turn{
  font-family:var(--font-display); font-weight:600; letter-spacing:-0.02em;
  font-size:clamp(22px,3.4vw,29px); line-height:1.22; color:var(--text-strong); margin:30px 0; text-wrap:balance;
}
.bridge{ color:var(--senia-blue); font-weight:600; }
.center{ text-align:center; }
.center .eyebrow{ }

/* ênfase sem card colorido */
.callout{ font-size:19px; font-weight:600; color:var(--text-strong); margin:24px 0; padding-left:22px; border-left:3px solid var(--senia-blue-100); }

/* ---------- botões (pill) ---------- */
.btn{
  display:inline-block; font-family:var(--font-body); font-weight:600; font-size:17px;
  background:var(--action); color:#fff; border:0; border-radius:var(--radius-pill);
  padding:16px 32px; text-decoration:none; cursor:pointer; text-align:center; line-height:1.2;
  box-shadow:var(--shadow-soft); transition:background .18s var(--ease), transform .14s var(--ease), box-shadow .18s var(--ease);
}
.btn:hover{ background:var(--action-hover); color:#fff; text-decoration:none; transform:translateY(-1px); box-shadow:0 14px 30px -16px rgba(28,105,250,0.55); }
.btn:active{ transform:translateY(0); }
.btn:focus-visible{ outline:3px solid var(--senia-blue-300); outline-offset:3px; }
.btn-grad{ background:var(--senia-gradient-135); }
.btn-grad:hover{ background:var(--senia-gradient-135); filter:brightness(1.05); }
.btn-lg{ font-size:18px; padding:18px 36px; }
.btn-ondark{ background:#fff; color:var(--senia-blue-deep); }
.btn-ondark:hover{ background:#fff; color:var(--senia-blue-deep); filter:brightness(0.97); }
.cta-row{ display:flex; flex-wrap:wrap; gap:14px 22px; align-items:center; margin-top:28px; }
.cta-block{ margin-top:30px; }
.trust-line{ font-size:14.5px; color:var(--text-muted); }
.trust-line b{ color:var(--text-strong); font-variant-numeric:tabular-nums; }

/* ---------- badge (pill) ---------- */
.badge{
  display:inline-flex; align-items:center; gap:7px; font-family:var(--font-body); font-weight:700;
  font-size:12.5px; letter-spacing:0.06em; text-transform:uppercase; padding:6px 14px; border-radius:var(--radius-pill);
}
.badge-meta{ background:var(--ink); color:#fff; }
.badge-meta .dot{ width:7px; height:7px; border-radius:50%; background:var(--teal-300, #2CC5C8); }
.badge-soft{ background:var(--senia-blue-100); color:var(--senia-blue-deep); }

/* ---------- letterhead ---------- */
.masthead{ background:var(--surface); border-bottom:1px solid var(--border); }
.masthead-inner{ display:flex; align-items:center; justify-content:space-between; padding:16px 0; gap:16px; }
.brand-logo{ height:30px; width:auto; }
.meta-badge{ height:42px; width:auto; display:block; }
@media (max-width:600px){ .meta-badge{ height:34px; } }

/* ---------- hero ---------- */
.hero{ background:
    radial-gradient(1100px 460px at 78% -8%, rgba(42,133,251,0.10), transparent 60%),
    var(--surface); padding:clamp(46px,7vw,80px) 0 clamp(38px,6vw,60px); }
.hero .badge{ margin-bottom:22px; }
.hero h1{ font-size:clamp(35px,6.2vw,60px); line-height:1.04; margin:0 0 22px; text-wrap:balance; }
.hero .deck{ font-size:clamp(19px,2.5vw,23px); color:var(--text-body); max-width:38ch; margin:0 0 14px; }
.hero .deck .em{ color:var(--text-strong); font-weight:600; }
.hero .mech-line{ font-size:17px; color:var(--text-body); max-width:58ch; margin:22px 0 0; }
.hero .mech-line strong{ color:var(--text-strong); }

/* ---------- hero 2 colunas + form no topo (padrão lead-gen: VIU/ckbk) ---------- */
.hero-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:44px; align-items:start; }
@media (max-width:860px){ .hero-grid{ grid-template-columns:1fr; gap:26px; } }
.hero-copy .badge{ margin-bottom:20px; }
.hero-copy .deck{ max-width:46ch; }
.hero-proof{ display:flex; flex-wrap:wrap; align-items:center; gap:8px 12px; font-size:15px; color:var(--text-body); margin:20px 0 0; }
.hero-proof .hp-k{ font-family:var(--font-display); font-size:11px; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:var(--senia-blue-deep); background:var(--senia-blue-100); padding:5px 11px; border-radius:var(--radius-pill); }
.hero-proof b{ color:var(--text-strong); font-variant-numeric:tabular-nums; }
.hero-fig{ margin:44px 0 0; }
.hero-fig .slot.ratio-wide{ aspect-ratio:16/6.2; }

.hero-form{ box-shadow:var(--shadow-raised); }
.form-head{ font-family:var(--font-display); font-weight:700; letter-spacing:-0.02em; font-size:22px; line-height:1.1; color:var(--text-strong); margin:0 0 5px; }
.form-sub{ font-size:14.5px; color:var(--text-body); margin:0 0 18px; }
.thanks.compact{ text-align:left; }
.thanks.compact h3{ font-size:22px; margin:0 0 8px; }
.thanks.compact p{ margin:0; font-size:15.5px; color:var(--text-body); }
@media (max-width:860px){ .hero-fig{ margin-top:30px; } .hero-fig .slot.ratio-wide{ aspect-ratio:16/10; } }

/* ---------- imagens reais nos slots (prints/fotos) ---------- */
.shot-img{ width:100%; height:auto; border-radius:var(--radius-lg); box-shadow:var(--shadow-card); border:1px solid var(--border); display:block; }
.phone-fig{ text-align:center; }
.shot-phone{ width:300px; max-width:82%; height:auto; border-radius:24px; box-shadow:var(--shadow-raised); border:1px solid var(--border); display:block; margin:0 auto; }
.hero-fig.phone-fig .shot-phone{ width:330px; }
.phone-fig figcaption{ margin-left:auto; margin-right:auto; text-align:center; }
.portrait-img{ width:172px; max-width:100%; height:auto; aspect-ratio:4/5; object-fit:cover; border-radius:var(--radius-lg); box-shadow:var(--shadow-soft); display:block; }
.guarantee-person{ display:flex; flex-direction:column; align-items:flex-start; gap:14px; }
.signed{ margin:0; font-family:var(--font-display); font-weight:700; color:var(--text-strong); font-size:17px; line-height:1.2; }
.signed span{ display:block; font-family:var(--font-body); font-weight:500; font-size:13.5px; color:var(--text-muted); margin-top:3px; }
.expert .portrait-img{ width:88px; height:auto; aspect-ratio:1/1; border-radius:var(--radius-md); box-shadow:none; }
.sign-img{ width:230px; max-width:70%; height:auto; display:block; margin-top:20px; mix-blend-mode:multiply; }

/* ---------- página de agradecimento (obrigado.html) ---------- */
.ty{ padding:clamp(44px,7vw,84px) 0 clamp(60px,9vw,110px); }
.ty-inner{ text-align:center; }
.ty-check{ width:66px; height:66px; margin:0 auto 24px; border-radius:50%; background:var(--senia-blue-100); display:flex; align-items:center; justify-content:center; }
.ty-check svg{ width:34px; height:34px; color:var(--senia-blue); }
.ty h1{ font-size:clamp(32px,5vw,46px); line-height:1.06; margin:0 0 16px; text-wrap:balance; }
.ty-lead{ font-size:18px; color:var(--text-body); max-width:54ch; margin:0 auto 34px; }
.ty .cal{ text-align:left; max-width:760px; margin:0 auto; }

/* honeypot anti-bot (fora da tela, não é display:none pra bots preencherem) */
.hp{ position:absolute !important; left:-9999px !important; top:auto; width:1px; height:1px; overflow:hidden; }
.consent{ font-size:12px; color:var(--text-muted); margin:12px 0 0; line-height:1.5; }
.consent a{ color:var(--text-body); text-decoration:underline; text-underline-offset:2px; }

/* ---------- figura / slot de asset real ---------- */
.fig{ margin:32px 0; }
figure{ margin:0; }
figcaption, .cap{ font-size:14.5px; color:var(--text-muted); line-height:1.5; margin-top:12px; max-width:62ch; }
figcaption b, .cap b{ color:var(--text-body); }
.slot{
  border:1px solid var(--border); border-radius:var(--radius-lg); background:var(--surface-card);
  box-shadow:var(--shadow-soft); min-height:200px; display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:10px; padding:30px 24px; text-align:center;
}
.slot.tall{ min-height:360px; }
.slot.ratio-wide{ min-height:0; aspect-ratio:16/8; }
.slot .slot-label{ font-family:var(--font-display); font-size:11px; font-weight:700; letter-spacing:0.16em; text-transform:uppercase; color:var(--senia-blue); }
.slot .slot-desc{ font-size:14.5px; color:var(--text-muted); max-width:46ch; line-height:1.5; }
.slot.portrait{ max-width:172px; aspect-ratio:4/5; min-height:0; padding:18px; }
.slot.portrait .slot-desc{ font-size:12.5px; }

/* ---------- ledger de métricas (banda gradiente da marca) ---------- */
.ledger{ background:var(--senia-gradient-135); color:#fff; }
.ledger-inner{ display:flex; flex-wrap:wrap; align-items:baseline; justify-content:center; gap:8px 48px; padding:34px 0 14px; }
.led{ text-align:center; }
.led-num{ font-family:var(--font-display); font-weight:700; font-size:clamp(30px,5vw,44px); letter-spacing:-0.03em; color:#fff; font-variant-numeric:tabular-nums; line-height:1; }
.led-lbl{ font-size:13.5px; color:rgba(255,255,255,0.82); margin-top:9px; }
.led-sep{ width:1px; height:38px; background:rgba(255,255,255,0.28); align-self:center; }
.ledger-note{ text-align:center; font-size:13px; color:rgba(255,255,255,0.8); padding-bottom:34px; }
@media (max-width:600px){ .led-sep{ display:none; } .ledger-inner{ gap:22px 34px; } }

/* ---------- agitação: lista simples ---------- */
.ritual{ list-style:none; margin:6px 0 24px; padding:0; display:grid; gap:13px; }
.ritual li{ position:relative; padding-left:30px; color:var(--text-strong); font-size:17.5px; }
.ritual li .mk{ position:absolute; left:0; top:3px; width:18px; height:18px; color:var(--senia-blue); }

/* ---------- mecanismo: contraste porta dos fundos / da frente ---------- */
.contrast{ display:grid; grid-template-columns:1fr 1.15fr; gap:16px; margin:26px 0 32px; }
@media (max-width:640px){ .contrast{ grid-template-columns:1fr; } }
.door{ border-radius:var(--radius-md); padding:22px 24px; }
.door.back{ background:var(--surface-card); border:1px solid var(--border); }
.door.front{ background:var(--senia-blue-100); border:1px solid var(--border-accent); }
.door .k{ font-family:var(--font-display); font-size:12px; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; margin-bottom:9px; }
.door.back .k{ color:var(--text-muted); }
.door.front .k{ color:var(--senia-blue-deep); }
.door h4{ font-size:20px; margin:0 0 8px; }
.door.back h4{ color:var(--text-body); }
.door p{ margin:0; font-size:15.5px; color:var(--text-body); }
.door.front p{ color:var(--text-strong); }

.sub-head{ font-family:var(--font-display); font-weight:700; letter-spacing:-0.02em; font-size:23px; margin:36px 0 12px; color:var(--text-strong); }
.honesty{ margin:22px 0; font-size:17.5px; }
.honesty p{ margin:0 0 12px; } .honesty p:last-child{ margin:0; }

.support{ list-style:none; margin:18px 0 0; padding:0; display:grid; gap:16px; }
.support li{ position:relative; padding-left:42px; font-size:16.5px; color:var(--text-strong); min-height:26px; }
.support .ic{ position:absolute; left:0; top:0; width:26px; height:26px; color:var(--senia-blue); }
.support .ic svg{ width:26px; height:26px; display:block; }

/* ---------- benefícios: cards on-brand (não idênticos) ---------- */
.benefits{ display:grid; gap:16px; margin-top:10px; }
.bcard{ background:var(--surface-card); border:1px solid var(--border); border-radius:var(--radius-lg); padding:26px 28px; box-shadow:var(--shadow-soft); }
.bcard .lead{ font-family:var(--font-display); font-weight:700; letter-spacing:-0.02em; font-size:21px; line-height:1.16; color:var(--text-strong); display:block; margin-bottom:9px; }
.bcard p{ margin:0; font-size:16.5px; color:var(--text-body); }

/* ---------- prova ---------- */
.stat-line{ font-family:var(--font-display); font-weight:600; letter-spacing:-0.02em; font-size:clamp(22px,3.2vw,28px); line-height:1.28; color:var(--text-strong); margin:22px 0; text-wrap:balance; }
.stat-line .n{ color:var(--senia-blue); font-variant-numeric:tabular-nums; }
.beforeafter{ font-size:18px; color:var(--text-strong); margin:20px 0; font-weight:500; }
.beforeafter .b{ color:var(--danger); }
.beforeafter .a{ color:var(--senia-blue); font-weight:700; }
.pullquote{ margin:32px 0; background:var(--surface-card); border:1px solid var(--border); border-radius:var(--radius-lg); box-shadow:var(--shadow-soft); padding:28px; }
.pullquote-row{ display:flex; gap:22px; align-items:center; }
@media (max-width:560px){ .pullquote-row{ flex-direction:column; align-items:flex-start; gap:16px; } }
.pullquote blockquote{ margin:0; }
.pullquote p{ font-family:var(--font-display); font-weight:600; letter-spacing:-0.02em; font-size:clamp(21px,3.2vw,27px); line-height:1.26; color:var(--text-strong); margin:0 0 12px; text-wrap:balance; }
.pullquote cite{ font-style:normal; font-size:15px; color:var(--text-body); }
.pullquote cite b{ color:var(--text-strong); }
.pullquote .auth-note{ display:block; font-size:12.5px; color:var(--text-muted); margin-top:5px; }
.q-photo{ flex-shrink:0; }

/* ---------- pra quem é / não é ---------- */
.fit{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:10px; }
@media (max-width:640px){ .fit{ grid-template-columns:1fr; } }
.fitcol{ border-radius:var(--radius-lg); padding:26px; }
.fitcol.yes{ background:var(--senia-blue-100); border:1px solid var(--border-accent); }
.fitcol.no{ background:var(--surface-card); border:1px solid var(--border); }
.fitcol h3{ font-size:20px; margin:0 0 16px; }
.fitcol.yes h3{ color:var(--senia-blue-deep); }
.fitcol.no h3{ color:var(--text-body); }
.fitcol ul{ list-style:none; padding:0; margin:0; display:grid; gap:13px; }
.fitcol li{ position:relative; padding-left:32px; font-size:16px; color:var(--text-body); }
.fitcol li .mk{ position:absolute; left:0; top:2px; width:20px; height:20px; }
.fitcol.yes .mk{ color:var(--senia-blue); }
.fitcol.no .mk{ color:var(--text-muted); }

/* ---------- objeções ---------- */
.obj{ display:grid; gap:0; margin-top:6px; }
.qa{ padding:24px 0; border-top:1px solid var(--border); }
.qa:first-child{ border-top:0; }
.qa .q{ font-family:var(--font-display); font-weight:600; letter-spacing:-0.02em; font-size:19.5px; line-height:1.25; color:var(--text-strong); margin:0 0 10px; }
.qa .a{ font-size:16.5px; color:var(--text-body); margin:0; max-width:66ch; }
.admission{ margin:30px 0 0; padding:26px 28px; background:var(--surface-accent); border:1px solid var(--border-accent); border-radius:var(--radius-lg); }
.admission .q{ font-family:var(--font-display); font-weight:600; letter-spacing:-0.02em; font-size:21px; color:var(--senia-blue-deep); margin:0 0 12px; }
.admission p{ margin:0 0 12px; font-size:16.5px; color:var(--text-body); } .admission p:last-child{ margin:0; }

/* ---------- garantia ---------- */
.guarantee{ display:grid; grid-template-columns:180px 1fr; gap:30px; align-items:center; background:var(--surface-card); border:1px solid var(--border); border-radius:var(--radius-lg); padding:32px; box-shadow:var(--shadow-card); }
@media (max-width:600px){ .guarantee{ grid-template-columns:1fr; gap:20px; } }
.guarantee h3{ font-size:24px; margin:0 0 10px; }
.guarantee p{ margin:0; color:var(--text-body); font-size:16.5px; }
.sign-slot{ margin-top:12px; }

/* ---------- form ---------- */
.formwrap{ display:grid; grid-template-columns:1.02fr .98fr; gap:46px; align-items:start; }
@media (max-width:820px){ .formwrap{ grid-template-columns:1fr; gap:32px; } }
.offer .kicker{ font-family:var(--font-display); font-weight:700; letter-spacing:-0.03em; font-size:clamp(24px,3.6vw,32px); line-height:1.1; color:var(--text-strong); margin:0 0 16px; }
.offer p{ font-size:16.5px; }
.risk-card{ border-top:1px solid var(--border); padding-top:18px; margin-top:22px; }
.risk-card .rt{ font-family:var(--font-display); font-size:12px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--senia-blue); margin-bottom:8px; }
.risk-card p{ margin:0; font-size:15px; color:var(--text-body); }
.expert{ display:flex; align-items:center; gap:16px; margin-top:24px; }
.expert .slot.portrait{ max-width:88px; aspect-ratio:1/1; box-shadow:none; }
.expert .who{ font-size:14.5px; color:var(--text-body); }
.expert .who b{ color:var(--text-strong); display:block; font-size:15.5px; }

.card-form{ background:var(--surface-card); border:1px solid var(--border); border-radius:var(--radius-lg); padding:28px; box-shadow:var(--shadow-card); }
.field{ margin-bottom:16px; }
.field label{ display:block; font-family:var(--font-body); font-size:14px; font-weight:600; color:var(--text-strong); margin-bottom:7px; }
.field input, .field select{ width:100%; font-family:var(--font-body); font-size:16px; color:var(--text-strong); background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-sm); padding:13px 14px; transition:border-color .15s, box-shadow .15s; }
.field input::placeholder{ color:var(--text-muted); }
.field input:focus, .field select:focus{ outline:none; border-color:var(--senia-blue); box-shadow:0 0 0 3px rgba(28,105,250,0.15); }
.field .hint{ font-size:12.5px; color:var(--text-muted); margin:6px 0 0; }
.form-btn{ width:100%; }
.form-micro{ list-style:none; padding:0; margin:16px 0 0; display:grid; gap:9px; }
.form-micro li{ position:relative; padding-left:26px; font-size:13.5px; color:var(--text-body); }
.form-micro li .mk{ position:absolute; left:0; top:1px; width:17px; height:17px; color:var(--senia-blue); }
.form-live.off{ display:none; }
.thanks{ display:none; }
.thanks.on{ display:block; }
.thanks h3{ font-size:26px; margin:0 0 10px; }
.cal{ margin-top:16px; }

/* ---------- fechamento (banda gradiente) ---------- */
.close-band{ background:var(--ink); color:#fff; }
.close-band .crosshead{ color:#fff; }
.close-band p{ color:rgba(255,255,255,0.82); }
.close-logo{ height:26px; margin:0 auto 24px; }
.paths{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin:28px 0 30px; text-align:left; }
@media (max-width:600px){ .paths{ grid-template-columns:1fr; } }
.path{ border-radius:var(--radius-md); padding:24px; }
.path.stay{ background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.12); }
.path.solve{ background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.22); }
.path h4{ font-family:var(--font-display); font-size:12px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; margin:0 0 12px; }
.path.stay h4{ color:var(--accent-sand); }
.path.solve h4{ color:var(--senia-blue-300); }
.path p{ margin:0; font-size:16px; color:rgba(255,255,255,0.78); }
.path.solve p{ color:#fff; }
.decision{ font-family:var(--font-display); font-weight:600; letter-spacing:-0.02em; font-size:23px; color:#fff; margin:0 0 8px; }
.ps{ max-width:62ch; margin:30px auto 0; font-size:15.5px; color:rgba(255,255,255,0.72); padding-top:22px; border-top:1px solid rgba(255,255,255,0.16); text-align:left; }
.ps b{ color:#fff; }

/* ---------- footer ---------- */
.site-foot{ padding:40px 0 68px; background:var(--surface); border-top:1px solid var(--border); }
.foot-brand{ display:flex; align-items:center; gap:14px; margin-bottom:16px; flex-wrap:wrap; }
.foot-brand img{ height:24px; }
.foot-anchor{ font-family:var(--font-display); font-weight:600; letter-spacing:-0.02em; color:var(--text-body); font-size:15px; }
.foot-legal{ font-size:13px; color:var(--text-body); margin:0 0 14px; }
.foot-note{ font-size:12px; color:var(--text-muted); line-height:1.7; max-width:84ch; }
.foot-note b{ color:var(--text-body); }

/* ---------- sticky mobile cta ---------- */
.sticky{ position:fixed; left:0; right:0; bottom:0; z-index:40; padding:10px 16px calc(10px + env(safe-area-inset-bottom)); background:var(--surface); border-top:1px solid var(--border); display:none; }
.sticky .btn{ display:block; width:100%; }
@media (max-width:820px){ .sticky{ display:block; } body{ padding-bottom:82px; } }
