/* =================================================================
   ATDS · wpp — aquecimento & BMs WhatsApp API
   Terminal-noir + acento térmico. Sem dependências.
   ================================================================= */

:root {
  --bg:        #070707;
  --bg-2:      #0b0d0c;
  --bg-card:   rgba(18, 22, 20, 0.62);
  --green:     #6BE688;
  --green-hi:  #9CFFB4;
  --green-dim: rgba(107, 230, 136, 0.55);
  --green-04:  rgba(107, 230, 136, 0.04);
  --green-10:  rgba(107, 230, 136, 0.10);
  --green-18:  rgba(107, 230, 136, 0.18);
  --heat:      #FFA94D;
  --heat-hi:   #FFC078;
  --heat-dim:  rgba(255, 169, 77, 0.5);
  --heat-10:   rgba(255, 169, 77, 0.10);
  --heat-18:   rgba(255, 169, 77, 0.18);
  --hot:       #FF6B4A;
  --cream:     #F3EDD8;
  --ink:       #E7ECE7;
  --muted:     rgba(231, 236, 231, 0.56);
  --faint:     rgba(231, 236, 231, 0.30);
  --line:      rgba(107, 230, 136, 0.14);
  --line-heat: rgba(255, 169, 77, 0.18);
  --line-soft: rgba(255, 255, 255, 0.07);

  --font-display: "Chakra Petch", "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --font-body: "Sora", system-ui, sans-serif;

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 14px;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
body { font-family: var(--font-body); background: var(--bg); color: var(--ink); line-height: 1.6; font-weight: 300; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
::selection { background: var(--heat); color: #1a0d04; }
a { color: inherit; text-decoration: none; }
img, canvas { display: block; max-width: 100%; }

.scan-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: linear-gradient(90deg, var(--green), var(--heat), var(--hot)); box-shadow: 0 0 12px var(--heat); z-index: 200; transition: width 0.1s linear; }
.fx-grain { position: fixed; inset: 0; z-index: 190; pointer-events: none; opacity: 0.045; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* ---------- nav ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 150; display: flex; align-items: center; gap: 24px; padding: 16px clamp(18px, 4vw, 44px); transition: background 0.4s var(--ease), border-color 0.4s, padding 0.4s var(--ease); border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(7,7,7,0.78); backdrop-filter: blur(14px) saturate(140%); border-bottom-color: var(--line); padding-top: 11px; padding-bottom: 11px; }
.brand { display: inline-flex; align-items: baseline; font-family: var(--font-display); font-weight: 700; letter-spacing: 0.12em; font-size: 1.2rem; }
.brand-mark { color: var(--cream); }
.brand-tag { color: var(--green); font-family: var(--font-mono); font-weight: 500; font-size: 0.82em; }
.brand-sub { color: var(--heat); font-family: var(--font-mono); font-size: 0.72em; margin-left: 8px; padding: 2px 8px; border: 1px solid var(--line-heat); border-radius: 6px; letter-spacing: 0.14em; }
.nav-links { display: flex; gap: 24px; margin-left: auto; font-family: var(--font-mono); font-size: 0.8rem; }
.nav-links a { color: var(--muted); position: relative; padding: 4px 0; transition: color 0.25s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0; background: var(--heat); transition: width 0.3s var(--ease); }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
@media (max-width: 860px) { .nav-links { display: none; } }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 9px; justify-content: center; font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.04em; padding: 12px 22px; border-radius: 9px; cursor: pointer; border: 1px solid transparent; transition: transform 0.2s var(--ease), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s; white-space: nowrap; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: linear-gradient(120deg, var(--green), #8CE9A0); color: #04130a; font-weight: 600; }
.btn-primary:hover { box-shadow: 0 10px 34px -10px var(--green); transform: translateY(-2px); }
.btn-line { border-color: var(--heat-dim); color: var(--heat); background: transparent; }
.btn-line:hover { background: var(--heat-10); border-color: var(--heat); transform: translateY(-2px); }
.btn-lg { padding: 16px 28px; font-size: 0.92rem; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-canvas { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; }
.hero-veil { position: absolute; inset: 0; z-index: 2; background: radial-gradient(120% 95% at 75% 12%, transparent 0%, rgba(7,7,7,0.5) 58%, var(--bg) 100%), linear-gradient(180deg, rgba(7,7,7,0.3) 0%, transparent 40%, var(--bg) 100%); }
.hero-inner { position: relative; z-index: 5; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 130px clamp(18px, 4vw, 44px) 90px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.18em; color: var(--heat); border: 1px solid var(--line-heat); border-radius: 100px; padding: 7px 16px; margin-bottom: 28px; background: rgba(255,169,77,0.05); opacity: 0; animation: fadeUp 0.8s var(--ease) 0.1s forwards; }
.dot-live { width: 8px; height: 8px; border-radius: 50%; background: var(--heat); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 var(--heat-dim); } 70% { box-shadow: 0 0 0 9px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }
.hero-headline { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.1rem, 5.6vw, 4.4rem); line-height: 1.06; letter-spacing: -0.01em; color: var(--cream); max-width: 20ch; opacity: 0; animation: fadeUp 0.9s var(--ease) 0.3s forwards; }
.hero-headline .h-cold { color: var(--faint); font-weight: 700; }
.hero-headline .h-hot { color: var(--heat); text-shadow: 0 0 34px var(--heat-dim); }
.hero-headline .h-sub { font-size: 0.52em; color: var(--green); font-weight: 600; letter-spacing: 0.01em; }
.hero-lead { max-width: 600px; font-size: clamp(1rem, 2vw, 1.22rem); color: var(--ink); margin-top: 22px; opacity: 0; animation: fadeUp 0.9s var(--ease) 0.5s forwards; }
.hero-lead strong { color: var(--heat-hi); font-weight: 500; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; opacity: 0; animation: fadeUp 0.9s var(--ease) 0.66s forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* termômetro de tiers no hero */
.tier-meter { max-width: 620px; margin-top: 54px; opacity: 0; animation: fadeUp 0.9s var(--ease) 0.85s forwards; }
.tm-track { height: 10px; border-radius: 6px; background: rgba(255,255,255,0.06); border: 1px solid var(--line-soft); overflow: hidden; }
.tm-fill { height: 100%; width: 0%; border-radius: 6px; background: linear-gradient(90deg, #3d5c46, var(--green) 30%, var(--heat) 68%, var(--hot)); box-shadow: 0 0 18px var(--heat-dim); transition: width 1.2s var(--ease); }
.tm-labels { display: flex; justify-content: space-between; margin-top: 10px; font-family: var(--font-mono); font-size: 0.76rem; color: var(--faint); }
.tm-labels span { transition: color 0.4s; }
.tm-labels span.lit { color: var(--heat-hi); }

/* ---------- sections shared ---------- */
.section { position: relative; max-width: var(--maxw); margin: 0 auto; padding: clamp(64px, 10vw, 130px) clamp(18px, 4vw, 44px); }
.section-head { max-width: 780px; margin-bottom: 48px; }
.kicker { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.16em; color: var(--heat); text-transform: uppercase; }
.section-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.8rem, 4.6vw, 3rem); line-height: 1.08; color: var(--cream); margin: 14px 0 16px; }
.section-sub { color: var(--muted); font-size: clamp(0.98rem, 2vw, 1.1rem); max-width: 680px; }
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.callout { border: 1px solid var(--line-heat); border-left: 3px solid var(--heat); background: rgba(255,169,77,0.05); border-radius: 12px; padding: 20px 24px; margin-top: 28px; color: var(--muted); }
.callout strong { color: var(--heat-hi); font-weight: 600; }

/* ---------- wizard ---------- */
.wizard-sec { padding-top: clamp(50px, 7vw, 90px); }
.wizard { position: relative; border: 1px solid var(--line); border-radius: 18px; background: rgba(10, 13, 11, 0.8); backdrop-filter: blur(8px); padding: clamp(26px, 5vw, 54px); min-height: 380px; overflow: hidden; box-shadow: 0 40px 90px -50px rgba(0,0,0,0.9); }
.wz-progress { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: rgba(255,255,255,0.05); }
.wz-bar { height: 100%; width: 0%; background: linear-gradient(90deg, var(--green), var(--heat)); transition: width 0.5s var(--ease); }
.wz-step { display: none; }
.wz-step.is-on { display: block; animation: wzIn 0.45s var(--ease); }
@keyframes wzIn { from { opacity: 0; transform: translateX(28px); } to { opacity: 1; transform: none; } }
.wz-q { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.2rem, 3vw, 1.7rem); color: var(--cream); margin-bottom: 26px; }
.wz-n { font-family: var(--font-mono); color: var(--heat); font-size: 0.8em; margin-right: 10px; }
.wz-opts { display: grid; gap: 12px; max-width: 640px; }
.wz-opt { text-align: left; font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: rgba(255,255,255,0.02); border: 1px solid var(--line-soft); border-radius: 12px; padding: 17px 20px; cursor: pointer; transition: border-color 0.25s, background 0.25s, transform 0.2s var(--ease); }
.wz-opt:hover { border-color: var(--heat-dim); background: var(--heat-10); transform: translateX(6px); }
.wz-form { display: grid; gap: 14px; max-width: 460px; }
.wz-form input { font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: rgba(255,255,255,0.03); border: 1px solid var(--line-soft); border-radius: 10px; padding: 15px 18px; outline: none; transition: border-color 0.25s; }
.wz-form input:focus { border-color: var(--heat-dim); }
.wz-back { position: absolute; bottom: 18px; left: 24px; background: none; border: 0; color: var(--faint); font-family: var(--font-mono); font-size: 0.78rem; cursor: pointer; display: none; transition: color 0.25s; }
.wz-back:hover { color: var(--heat); }
.wz-back.show { display: block; }

/* resultado */
.wr-head { margin-bottom: 26px; }
.wr-head h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.4rem, 3.4vw, 2.1rem); color: var(--cream); margin-top: 10px; }
.wr-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 14px; }
.wr-card { border: 1px solid var(--line-soft); border-radius: 12px; padding: 20px; background: rgba(255,255,255,0.02); }
.wr-card h5 { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--heat); margin-bottom: 10px; }
.wr-card p { color: var(--muted); font-size: 0.9rem; }
.wr-main { border-color: var(--line-heat); background: linear-gradient(160deg, rgba(255,169,77,0.08), rgba(255,255,255,0.01)); }
.wr-tag { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.2em; color: var(--heat); }
.wr-main h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--cream); margin: 8px 0 8px; }
.wr-main p { color: var(--muted); font-size: 0.9rem; }
.wr-price { margin-top: 16px; }
.wr-price span { font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: var(--heat-hi); }
.wr-price em { display: block; font-style: normal; font-family: var(--font-mono); font-size: 0.72rem; color: var(--faint); margin-top: 2px; }
.wr-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.wr-note { font-family: var(--font-mono); font-size: 0.76rem; color: var(--faint); margin-top: 16px; }
@media (max-width: 900px) { .wr-grid { grid-template-columns: 1fr 1fr; } .wr-main { grid-column: span 2; } }
@media (max-width: 560px) { .wr-grid { grid-template-columns: 1fr; } .wr-main { grid-column: span 1; } }

/* ---------- método ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step-card { position: relative; border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--bg-card); padding: 28px 24px; transition: transform 0.4s var(--ease), border-color 0.4s; overflow: hidden; }
.step-card::before { content: attr(data-n); position: absolute; top: 14px; right: 18px; font-family: var(--font-mono); font-size: 0.72rem; color: var(--faint); }
.step-card::after { content: ""; position: absolute; left: 0; top: 0; height: 2px; width: 0; background: linear-gradient(90deg, var(--green), var(--heat)); transition: width 0.5s var(--ease); }
.step-card:hover { transform: translateY(-6px); border-color: var(--line-heat); }
.step-card:hover::after { width: 100%; }
.step-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; color: var(--cream); margin-bottom: 12px; }
.step-card p { color: var(--muted); font-size: 0.9rem; }
.step-card strong { color: var(--heat-hi); font-weight: 500; }
@media (max-width: 980px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }

/* ---------- escada de tiers ---------- */
.tier-ladder { display: grid; gap: 10px; }
.tl-row { display: flex; align-items: baseline; gap: 22px; border: 1px solid var(--line-soft); border-radius: 12px; padding: 18px 22px; background: var(--bg-card); position: relative; overflow: hidden; transition: transform 0.3s var(--ease), border-color 0.3s; }
.tl-row::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--tc, var(--green)); opacity: 0.85; }
.tl-row[data-heat="0"] { --tc: #55655b; }
.tl-row[data-heat="1"] { --tc: var(--green); }
.tl-row[data-heat="2"] { --tc: #cfd867; }
.tl-row[data-heat="3"] { --tc: var(--heat); }
.tl-row[data-heat="4"] { --tc: var(--hot); }
.tl-row:hover { transform: translateX(8px); border-color: var(--tc); }
.tl-row b { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.05rem, 2.6vw, 1.5rem); color: var(--tc, var(--cream)); min-width: 172px; }
.tl-row span { color: var(--muted); font-size: 0.92rem; }
@media (max-width: 640px) { .tl-row { flex-direction: column; gap: 6px; } .tl-row b { min-width: 0; } }

/* ---------- FAST vs IDEAL ---------- */
.ramp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ramp-card { border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--bg-card); padding: 32px 28px; transition: transform 0.4s var(--ease), border-color 0.4s; }
.ramp-card:hover { transform: translateY(-6px); }
.ramp-card.is-featured { border-color: var(--line-heat); background: linear-gradient(170deg, rgba(255,169,77,0.07), var(--bg-card)); }
.ramp-tag { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; padding: 5px 12px; border-radius: 100px; }
.ramp-fast { color: var(--hot); border: 1px solid rgba(255,107,74,0.4); }
.ramp-ideal { color: var(--green); border: 1px solid var(--line); }
.ramp-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--cream); margin: 16px 0 10px; }
.ramp-card p { color: var(--muted); font-size: 0.94rem; margin-bottom: 16px; }
.ramp-card ul { list-style: none; display: grid; gap: 8px; }
.ramp-card li { font-family: var(--font-mono); font-size: 0.8rem; color: var(--ink); padding-left: 18px; position: relative; }
.ramp-card li::before { content: "▸"; position: absolute; left: 0; color: var(--heat); }
@media (max-width: 820px) { .ramp-grid { grid-template-columns: 1fr; } }

/* ---------- investimento ---------- */
.invest-meta { margin-bottom: 40px; }
.invest-meta h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--cream); margin-bottom: 16px; }
.invest-meta h3 em { font-style: normal; font-family: var(--font-mono); font-size: 0.72rem; color: var(--faint); font-weight: 400; }
.tbl { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.tbl th, .tbl td { border: 1px solid var(--line-soft); padding: 12px 14px; text-align: left; }
.tbl th { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--heat); background: rgba(255,169,77,0.05); }
.tbl td { color: var(--muted); }
.tbl td b { color: var(--cream); }
.tbl-note { font-size: 0.84rem; color: var(--faint); margin-top: 12px; max-width: 720px; }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.plan-card { border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--bg-card); padding: 32px 26px; transition: transform 0.4s var(--ease), border-color 0.4s; }
.plan-card:hover { transform: translateY(-6px); border-color: var(--line-heat); }
.plan-card.is-featured { border-color: var(--heat-dim); background: linear-gradient(170deg, rgba(255,169,77,0.09), var(--bg-card)); box-shadow: 0 30px 70px -45px var(--heat); }
.plan-tag { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.24em; color: var(--heat); }
.plan-price { font-family: var(--font-display); font-weight: 700; font-size: 2.3rem; color: var(--cream); margin: 12px 0 4px; }
.plan-what { color: var(--muted); font-size: 0.94rem; margin-bottom: 18px; min-height: 44px; }
.plan-what b { color: var(--heat-hi); }
.plan-card ul { list-style: none; display: grid; gap: 9px; border-top: 1px solid var(--line-soft); padding-top: 18px; }
.plan-card li { font-size: 0.86rem; color: var(--muted); padding-left: 20px; position: relative; }
.plan-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-family: var(--font-mono); }
.plan-card li strong { color: var(--ink); }
.plans-foot { margin-top: 24px; font-size: 0.88rem; color: var(--faint); }
.plans-foot b { color: var(--heat-hi); }
@media (max-width: 900px) { .plans-grid { grid-template-columns: 1fr; } .plan-what { min-height: 0; } }

/* ---------- compliance ---------- */
.never-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.never { border: 1px solid var(--line-soft); border-radius: 12px; padding: 22px; background: var(--bg-card); display: flex; flex-direction: column; gap: 8px; transition: border-color 0.3s, transform 0.3s var(--ease); }
.never:hover { border-color: rgba(255,107,74,0.4); transform: translateY(-4px); }
.never b { font-family: var(--font-display); font-weight: 600; color: var(--cream); font-size: 0.98rem; }
.never span { color: var(--muted); font-size: 0.86rem; }
@media (max-width: 900px) { .never-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .never-grid { grid-template-columns: 1fr; } }
.kpi-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 34px; border-top: 1px solid var(--line-soft); padding-top: 30px; }
.kpi-strip div { display: flex; flex-direction: column; gap: 4px; }
.kpi-strip b { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.6rem, 4vw, 2.4rem); color: var(--heat-hi); }
.kpi-strip span { font-family: var(--font-mono); font-size: 0.74rem; color: var(--muted); }
@media (max-width: 640px) { .kpi-strip { grid-template-columns: repeat(2, 1fr); gap: 22px 14px; } }

/* ---------- gate: wizard-first ---------- */
.gated #metodo, .gated #tiers, .gated #planos, .gated #investimento,
.gated #compliance, .gated .final-cta { display: none; }
.gated .nav-links { display: none; }
.gated .wr-unlocked { display: none; }
.gate-hint { font-family: var(--font-mono); font-size: 0.74rem; color: var(--faint); align-self: center; max-width: 260px; line-height: 1.6; }
.wr-unlocked { margin-top: 20px; font-family: var(--font-mono); font-size: 0.82rem; color: var(--green); border-top: 1px solid var(--line-soft); padding-top: 18px; }
.wr-fast { margin-top: 14px; font-size: 0.86rem; color: var(--muted); border: 1px dashed rgba(255,107,74,0.4); border-radius: 10px; padding: 12px 14px; }
.wr-fast b { color: var(--hot); font-weight: 600; }
@keyframes gateIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
body:not(.gated) .gate-open { animation: gateIn 0.7s var(--ease); }

/* ---------- planos 2 colunas + linhas de preço ---------- */
.plans-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 900px) { .plans-2 { grid-template-columns: 1fr; } }
.plan-tag-fast { color: var(--hot); }
.price-rows { display: grid; gap: 8px; margin: 16px 0 20px; }
.price-rows div { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; border: 1px solid var(--line-soft); border-radius: 10px; padding: 12px 16px; background: rgba(255,255,255,0.02); }
.price-rows span { color: var(--muted); font-size: 0.88rem; }
.price-rows i { font-style: normal; color: var(--heat-hi); }
.price-rows b { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--cream); white-space: nowrap; }

/* ---------- final + footer ---------- */
.final-cta { border-top: 1px solid var(--line-soft); }
.footer { border-top: 1px solid var(--line); max-width: var(--maxw); margin: 0 auto; padding: 36px clamp(18px, 4vw, 44px) 42px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 0.74rem; color: var(--faint); }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--heat); }
.footer-legal { margin-top: 18px; font-size: 0.72rem; color: var(--faint); max-width: 860px; line-height: 1.7; }
