/* ============================================================
   REAL POWER — design tokens
   ============================================================ */
:root {
  --bg: #050505;
  --bg-2: #0a0a0c;
  --surface: #101013;
  --surface-2: #16161b;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.18);
  --ink: #ffffff;
  --ink-2: rgba(255,255,255,0.78);
  --ink-3: rgba(255,255,255,0.55);
  --ink-4: rgba(255,255,255,0.35);

  --accent: #00E5C7;     /* electric teal */
  --accent-2: #00b89e;
  --gold: #F2B23A;       /* warm gold */

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-pill: 999px;

  --container: 1180px;
  --pad: clamp(20px, 5vw, 40px);

  --shadow-lift: 0 30px 60px -30px rgba(0,229,199,.45), 0 4px 14px rgba(0,0,0,.6);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

::selection { background: var(--accent); color: #000; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.muted { color: var(--ink-3); }
.section-title .muted {
  color: var(--ink-3);
  -webkit-text-fill-color: var(--ink-3);
}
.section-title .pathway-subline {
  color: var(--ink-3) !important;
  -webkit-text-fill-color: var(--ink-3) !important;
}
.accent { color: var(--accent); }

/* ============================================================
   Type
   ============================================================ */
.section-title {
  font-family: 'Archivo Black', 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 5.4vw, 60px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0;
  text-transform: uppercase;
}
.section-sub {
  color: var(--ink-2);
  font-size: clamp(15px, 1.6vw, 17px);
  max-width: 60ch;
  margin: 18px 0 0;
}
.section-head { margin-bottom: clamp(36px, 5vw, 56px); }

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 7px 12px;
  border: 1px solid rgba(0,229,199,.35);
  border-radius: var(--r-pill);
  background: rgba(0,229,199,.06);
  margin-bottom: 18px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink-2);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 26px;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.8); }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 16px 22px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn__meta {
  font-size: 12px;
  font-weight: 500;
  opacity: .75;
  padding-left: 10px;
  border-left: 1px solid currentColor;
  margin-left: 2px;
  letter-spacing: 0;
}
.btn--primary {
  background: #fff; color: #000;
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px -14px rgba(255,255,255,.45); }

.btn--accent {
  background: var(--accent); color: #001a16;
}
.btn--accent:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }

.btn--outline {
  background: transparent; color: var(--ink);
  border-color: var(--line-strong);
}
.btn--outline:hover { background: #fff; color: #000; border-color: #fff; }

.btn--ghost {
  background: rgba(255,255,255,.04);
  border-color: var(--line);
  color: var(--ink);
}
.btn--ghost:hover { background: rgba(255,255,255,.1); }

.btn--sm { padding: 10px 16px; font-size: 13px; }
.btn--block { width: 100%; }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 14px var(--pad);
  background: rgba(5,5,5,0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--accent);
}
.logo { width: 22px; height: 22px; }
.logo--mark {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}
.brand-text {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #fff;
}
.brand-text__accent { color: var(--accent); margin-left: 1px; }
.nav__links { display: none; gap: 26px; }
.nav__links a {
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  transition: color .15s ease;
}
.nav__links a:hover { color: var(--ink); }

@media (min-width: 760px) {
  .nav__links { display: inline-flex; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(60px, 10vw, 110px) 0 clamp(50px, 8vw, 90px);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 70% 0%, rgba(0,229,199,0.18), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(242,178,58,0.12), transparent 55%),
    var(--bg);
}
.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 80%);
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.glow--cyan {
  width: 480px; height: 480px;
  background: var(--accent);
  top: -120px; right: -120px;
}
.glow--gold {
  width: 360px; height: 360px;
  background: var(--gold);
  bottom: -160px; left: -100px;
  opacity: .18;
}

.hero__inner { position: relative; }

.hero__title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(44px, 9vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  text-transform: uppercase;
  max-width: 14ch;
}
.title-stroke {
  -webkit-text-stroke: 1.5px var(--ink);
  color: transparent;
  letter-spacing: -0.02em;
}
.hero__sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0 0 32px;
}
.hero__sub strong { color: var(--ink); font-weight: 700; }

.hero__cta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 32px;
}

.hero__bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 18px 28px;
  color: var(--ink-3);
  font-size: 14px;
}
.hero__bullets li {
  position: relative; padding-left: 18px;
}
.hero__bullets li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px;
  border: 1.5px solid var(--accent);
  transform: rotate(45deg);
}

/* ============================================================
   VSL
   ============================================================ */
.vsl { padding: clamp(50px, 7vw, 90px) 0; }
.vsl__head { text-align: center; max-width: 760px; margin: 0 auto clamp(32px, 4vw, 48px); }
.vsl__head .kicker { display: inline-flex; }
.vsl__head .section-sub { margin-left: auto; margin-right: auto; }

.vsl__player {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}
.vsl__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  background:
    radial-gradient(ellipse at 50% 50%, #1a1a20, #050507 70%);
  border: 1px solid var(--line-strong);
  overflow: hidden;
  box-shadow: 0 40px 90px -40px rgba(0,229,199,.35), 0 4px 24px rgba(0,0,0,.6);
  display: flex; align-items: center; justify-content: center;
}
.vsl__noise {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.02) 0 1px, transparent 1px 3px);
  mix-blend-mode: screen;
  opacity: .8;
}
.vsl__play {
  position: relative; z-index: 2;
  width: clamp(72px, 12vw, 110px);
  height: clamp(72px, 12vw, 110px);
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(0,0,0,.5);
  color: var(--accent);
  cursor: not-allowed;
  backdrop-filter: blur(6px);
}
.vsl__play svg { width: 100%; height: 100%; }
.vsl__badge {
  position: absolute; top: 16px; left: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px;
  background: rgba(0,0,0,.55);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-2);
  backdrop-filter: blur(6px);
}
.vsl__badge .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
.vsl__caption {
  position: absolute; left: 20px; right: 20px; bottom: 18px;
  display: flex; flex-direction: column; gap: 4px;
  color: var(--ink-2);
  font-size: 13px;
}
.vsl__caption strong {
  color: var(--ink);
  font-family: 'Archivo Black', sans-serif;
  font-size: 15px;
  letter-spacing: .01em;
  text-transform: uppercase;
}

/* ============================================================
   Pathways / Cards
   ============================================================ */
.pathways { padding: clamp(60px, 8vw, 110px) 0; }
.cards {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .cards { grid-template-columns: 1fr 1fr; gap: 28px; }
}

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3.4vw, 36px);
  display: flex; flex-direction: column; gap: 22px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.card--elite {
  background:
    linear-gradient(180deg, rgba(0,229,199,0.07), rgba(0,229,199,0) 40%),
    var(--surface);
  border-color: rgba(0,229,199,.35);
  box-shadow: 0 0 0 1px rgba(0,229,199,.08), 0 30px 60px -40px rgba(0,229,199,.4);
}
.card__ribbon {
  position: absolute; top: 18px; right: 18px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
  color: #001a16;
  background: var(--accent);
  padding: 6px 12px;
  border-radius: var(--r-pill);
}
.card__head { display: flex; flex-direction: column; gap: 10px; }
.card__tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 5px 10px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
}
.card__tag--accent {
  color: var(--accent);
  border-color: rgba(0,229,199,.45);
  background: rgba(0,229,199,.06);
}
.card__title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(26px, 3.2vw, 34px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 4px 0 0;
  line-height: 1;
}
.card__price {
  display: flex; align-items: baseline; gap: 8px;
  margin-top: 4px;
}
.card__amount {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 4.5vw, 48px);
  line-height: 1;
  color: var(--ink);
}
.card__unit {
  color: var(--ink-3);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.card__lead {
  color: var(--ink-2);
  font-size: 15px;
  margin: 6px 0 0;
}
.card__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.card__list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-2);
  font-size: 15px;
}
.card__list li::before {
  content: "";
  position: absolute; left: 0; top: 6px;
  width: 16px; height: 10px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.card__foot {
  font-size: 12.5px;
  color: var(--ink-3);
  text-align: center;
  margin: 0;
}
.pathways__note {
  text-align: center;
  margin-top: 28px;
  color: var(--ink-3);
}
.pathways__note a { color: var(--accent); border-bottom: 1px dashed currentColor; }

/* ============================================================
   Method
   ============================================================ */
.method { padding: clamp(60px, 8vw, 100px) 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.method__grid {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .method__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .method__grid { grid-template-columns: repeat(3, 1fr); } }

.pillar {
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color .2s ease, transform .2s ease;
}
.pillar:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.pillar__num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: .12em;
}
.pillar h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.1;
}
.pillar p { color: var(--ink-2); font-size: 15px; margin: 4px 0 0; }

/* ============================================================
   Proof
   ============================================================ */
.proof { padding: clamp(60px, 8vw, 100px) 0; }
.proof__grid {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) { .proof__grid { grid-template-columns: repeat(3, 1fr); } }

.quote {
  background: var(--surface);
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-md);
  padding: 26px;
  display: flex; flex-direction: column; gap: 18px;
}
.quote p { margin: 0; color: var(--ink-2); font-size: 15.5px; line-height: 1.6; }
.placeholder-text { color: var(--ink-4); font-style: italic; }
.quote footer {
  display: flex; flex-direction: column; gap: 2px;
  font-size: 13px;
  color: var(--ink-3);
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.quote__name { color: var(--ink-2); font-weight: 600; }

.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
@media (min-width: 720px) { .stats { grid-template-columns: repeat(3, 1fr); } }
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat__num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 3.4vw, 36px);
  color: var(--ink);
  letter-spacing: -.01em;
}
.stat__label { color: var(--ink-3); font-size: 13.5px; }

.proof-wall {
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.proof-wall__head {
  max-width: 760px;
  margin-bottom: 22px;
}
.proof-wall__head h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  line-height: .95;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin: 8px 0 12px;
}
.proof-wall__head p {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}
.proof-wall__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 720px) { .proof-wall__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .proof-wall__grid { grid-template-columns: repeat(3, 1fr); } }
.proof-tile {
  min-height: 126px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-sm);
  background:
    linear-gradient(145deg, rgba(0,229,199,.08), rgba(255,255,255,.025) 52%, rgba(255,255,255,.015)),
    var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}
.proof-tile span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.proof-tile p {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 800;
  margin: 0;
}
.proof-tile--result {
  background:
    linear-gradient(145deg, rgba(242,178,58,.14), rgba(255,255,255,.025) 52%, rgba(0,229,199,.04)),
    var(--surface);
}
.proof-tile--result span { color: var(--gold); }

/* ============================================================
   Face to face
   ============================================================ */
.ftf { padding: clamp(50px, 7vw, 90px) 0; }
.ftf__panel {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .ftf__panel { grid-template-columns: 1.4fr 1fr; }
}
.ftf__copy { padding: clamp(28px, 4vw, 48px); }
.ftf__lead { color: var(--ink-2); font-size: 16px; margin: 16px 0 22px; max-width: 50ch; }
.ftf__lead strong { color: var(--ink); }
.ftf__list {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.ftf__list li {
  position: relative; padding-left: 22px;
  color: var(--ink-2); font-size: 15px;
}
.ftf__list li::before {
  content: "→"; position: absolute; left: 0; top: 0;
  color: var(--accent); font-weight: 700;
}
.ftf__note { color: var(--ink-3); font-size: 13.5px; margin: 14px 0 0; }
.ftf__art {
  position: relative;
  min-height: 220px;
  background:
    linear-gradient(135deg, #0c0c10 0%, #050507 100%);
  border-left: 1px solid var(--line);
}
.ftf__art svg { width: 100%; height: 100%; min-height: 220px; }

/* ============================================================
   Standalone
   ============================================================ */
.standalone { padding: clamp(60px, 8vw, 100px) 0; }
.standalone__inner {
  position: relative;
  background:
    linear-gradient(180deg, rgba(242,178,58,.05), transparent 70%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(32px, 5vw, 56px);
  overflow: hidden;
}
.standalone__inner::before {
  content: "SOON";
  position: absolute;
  top: -30px; right: -10px;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(120px, 18vw, 220px);
  line-height: 1;
  color: rgba(255,255,255,0.025);
  letter-spacing: -0.05em;
  pointer-events: none;
}
.standalone__inner .kicker {
  border-color: rgba(242,178,58,.35);
  background: rgba(242,178,58,.08);
  color: var(--gold);
}
.standalone__copy { color: var(--ink-2); font-size: 16px; margin: 20px 0 0; max-width: 64ch; }
.standalone__copy strong { color: var(--ink); }
.standalone__note { color: var(--ink-3); font-size: 13.5px; margin-top: 16px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: clamp(60px, 8vw, 100px) 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.faq__list { display: flex; flex-direction: column; gap: 10px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq details[open] { border-color: rgba(0,229,199,.35); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.chev {
  width: 14px; height: 14px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq details[open] .chev { transform: rotate(-135deg); }
.faq__body {
  padding: 0 22px 22px;
  border-top: 1px solid var(--line);
  margin-top: 2px;
  padding-top: 18px;
}
.faq__body p { color: var(--ink-2); font-size: 15px; margin: 0 0 10px; }
.faq__body p:last-child { margin-bottom: 0; }
.faq__body strong { color: var(--ink); }

/* ============================================================
   Final CTA
   ============================================================ */
.final { padding: clamp(60px, 9vw, 120px) 0; }
.final__panel {
  position: relative;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0,229,199,.25), transparent 60%),
    linear-gradient(180deg, #0a0a10, #050507);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  padding: clamp(40px, 7vw, 80px) clamp(24px, 5vw, 60px);
  text-align: center;
  overflow: hidden;
}
.final__panel::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 100%, transparent 30%, #000 90%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 100%, transparent 30%, #000 90%);
  pointer-events: none;
}
.final__title {
  position: relative;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(34px, 6vw, 64px);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -.02em;
  margin: 0 0 18px;
}
.final__sub {
  position: relative;
  color: var(--ink-2);
  font-size: 17px;
  margin: 0 0 32px;
}
.final__cta {
  position: relative;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-bottom: 20px;
}
.final__ftf {
  position: relative;
  color: var(--ink-3);
  font-size: 14px;
  border-bottom: 1px dashed var(--line-strong);
  padding-bottom: 2px;
}
.final__ftf:hover { color: var(--accent); border-color: var(--accent); }

/* ============================================================
   Footer
   ============================================================ */
.footer { padding: 32px 0 40px; border-top: 1px solid var(--line); }
.footer__inner { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; }
.footer__copy { color: var(--ink-4); font-size: 13px; margin: 0; }

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}
