/* ══════════════════════════════════════════════
   Vobet Media — design system
   Tokens, type scale, and components are lifted from the
   rendered CSS of the Framer "Conversion" template
   (conversion.framer.media): Satoshi 500 + Instrument Serif
   italic accents, #000 page / #0d0d0d cards, #ff4533 accent,
   56%-white muted text, 12px pills / 24px cards, conic glows.
   ══════════════════════════════════════════════ */

:root {
  /* accent — kept on the legacy --green name so older rules inherit it */
  --accent: #ff4533;
  --accent-2: #ff220e;
  --green: #ff4533;
  --green-800: #ff220e;
  --green-700: #ff6a5c;
  --green-100: rgba(255, 69, 51, 0.16);
  --mint: #ff4533;

  --bg: #000000;
  --card: #0d0d0d;
  --card-2: #0a0a0a;
  --near-black: #000000;

  --ink: #ffffff;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.56);
  --faint: rgba(255, 255, 255, 0.38);

  --tint: #111111;
  --tint-soft: #0a0a0a;
  --surface: #0d0d0d;
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.2);
  --footer-bg: rgba(0, 0, 0, 0.56);
  --white: #ffffff;

  --radius-btn: 10px;
  --radius-pill: 12px;
  --radius-card: 24px;

  --shadow-card: none;
  --shadow-float: 0 10px 34px rgba(0, 0, 0, 0.7);
  --ring: 0 0 0 1px rgba(255, 255, 255, 0.08);
  --ring-accent: 0 0 0 1px rgba(255, 69, 51, 0.12);

  --space-section: 64px;
  --space-section-tight: 48px;

  --heading-weight: 500;
  --heading-tracking: -0.04em;
  --heading-leading: 1.1;

  --font: "Satoshi", "Satoshi Placeholder", "Segoe UI", Arial, Helvetica, sans-serif;
  --font-serif: "Instrument Serif", "Times New Roman", serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

.container {
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 860px; }

/* ── Typography ───────────────────────────── */

h1, h2, h3, h4 {
  font-weight: var(--heading-weight);
  letter-spacing: var(--heading-tracking);
  line-height: var(--heading-leading);
  color: var(--ink);
  text-wrap: balance;
}

h1 { font-size: 80px; line-height: 88px; letter-spacing: -3.2px; }
h2 { font-size: 60px; line-height: 72px; letter-spacing: -2.4px; }
h3 { font-size: 42px; line-height: 50px; letter-spacing: -0.84px; }
h4 { font-size: 28px; line-height: 31px; letter-spacing: -0.56px; }

/* the one italic serif word inside a heading */
h1 em, h2 em, h3 em, .h-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}

p { color: var(--muted); }

.lead { font-size: 20px; line-height: 30px; letter-spacing: -0.4px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--tint);
  border-radius: var(--radius-pill);
  color: var(--ink);
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: none;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(13, 13, 13, 0.56);
  box-shadow: var(--ring);
  color: var(--ink);
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
}
.badge--green { background: rgba(255, 69, 51, 0.14); color: #ff8a7a; }
.badge--live::before,
.badge--cycle::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: badge-pulse 1.6s ease-in-out infinite;
}
@keyframes badge-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.br-desktop { display: inline; }

/* ── Buttons ──────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--radius-btn);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: none;
  white-space: nowrap;
  cursor: pointer;
  border: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, color 0.18s ease;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--accent);
  color: #f9fafb;
  box-shadow: var(--ring-accent);
}
.btn--primary:hover { background: var(--accent-2); }

.btn--ghost,
.btn--white {
  background: var(--card-2);
  color: var(--ink);
  border-radius: 12px;
  box-shadow: var(--ring);
}
.btn--ghost:hover,
.btn--white:hover { background: #171717; box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16); }

.btn--lg { padding: 14px 22px; font-size: 16px; line-height: 24px; }
.btn--sm { padding: 9px 13px; font-size: 14px; line-height: 18px; }
.btn--block { width: 100%; }

/* ── Nav ──────────────────────────────────── */
/* Template: transparent full-width bar, with the real chrome as a
   centred blurred pill (rgba(0,0,0,.56) + blur(10px), 1px border, 12px radius). */

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 24px;
  background: transparent;
  pointer-events: none;
}

.nav {
  pointer-events: auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  width: auto;
  max-width: 100%;
  padding: 12px 24px;
  background: rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.nav__logo-mark {
  display: grid;
  place-items: center;
  flex: none;
  width: 34px;
  height: 34px;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav__logo-mark svg { width: 100%; height: 100%; display: block; }
.nav__logo:hover .nav__logo-mark { transform: translateY(-1px) rotate(-3deg); }

.nav__logo-text {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  font-size: 18px;
  letter-spacing: -0.035em;
}
.nav__logo-name { font-weight: 700; color: var(--ink); }
.nav__logo-sub { font-weight: 400; color: var(--muted); }

.footer__brand .nav__logo-text { font-size: 20px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}

.nav__links a {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0);
  transition: background-color 0.16s ease, box-shadow 0.16s ease, color 0.16s ease;
}
.nav__links a:hover,
.nav__links a.active {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.nav__cta { margin-left: 8px; }
.nav__cta .btn {
  padding: 9px 13px;
  font-size: 14px;
  line-height: 18px;
  border-radius: 10px;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav__burger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ── Glow (template "Glow": three blurred, rotating conic discs) ── */

.glow {
  position: absolute;
  left: 50%;
  width: 1200px;
  height: 800px;
  transform: translateX(-50%);
  pointer-events: none;
  overflow: hidden;
}
.glow i {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  animation: glow-spin 14s linear infinite;
}
.glow i:nth-child(1) {
  width: 400px;
  height: 400px;
  margin: -200px 0 0 -200px;
  filter: blur(70px);
  background: conic-gradient(rgb(255, 0, 0) 0deg, rgb(255, 0, 26) 54.9deg, rgb(0, 166, 255) 106.7deg, rgb(71, 151, 255) 162deg, rgb(0, 68, 255) 252deg, rgb(255, 128, 0) 306deg, rgb(255, 0, 0) 360deg);
}
.glow i:nth-child(2) {
  width: 300px;
  height: 300px;
  margin: -150px 0 0 -150px;
  filter: blur(32px);
  animation-direction: reverse;
  animation-duration: 18s;
  background: conic-gradient(rgb(255, 217, 173) 0deg, rgb(19, 156, 229) 180deg, rgb(253, 134, 77) 360deg);
}
.glow i:nth-child(3) {
  width: 300px;
  height: 300px;
  margin: -150px 0 0 -150px;
  filter: blur(32px);
  mix-blend-mode: overlay;
  animation-duration: 22s;
  background: conic-gradient(rgb(255, 217, 173) 0deg, rgb(19, 156, 229) 180deg, rgb(253, 134, 77) 360deg);
}
@keyframes glow-spin { to { transform: rotate(360deg); } }

/* decorative corner glow used inside cards (bento / comparison) */
.card-glow {
  position: absolute;
  width: 566px;
  height: 566px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.8;
  background: conic-gradient(rgb(255, 0, 0) 0deg, rgb(255, 0, 26) 54.9deg, rgb(0, 166, 255) 106.7deg, rgb(71, 151, 255) 162deg, rgb(0, 68, 255) 252deg, rgb(255, 128, 0) 306deg, rgb(255, 0, 0) 360deg);
}

/* ── Hero ─────────────────────────────────── */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 8vh, 136px) 24px clamp(120px, 20vh, 250px);
  text-align: center;
  background: var(--bg);
}

.hero .glow { bottom: -400px; }

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 1000px;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1;
}
.hero__stars {
  display: inline-flex;
  gap: 2px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 2px;
}

.hero h1 { max-width: 900px; }

.hero__sub {
  max-width: 640px;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.4px;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero__trust {
  color: var(--muted);
  font-size: 14px;
}
.hero__trust strong { color: var(--ink); font-weight: 500; }

/* ── Sections ─────────────────────────────── */

.section { padding: var(--space-section) 0; }
.section--tint { background: var(--bg); }

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}
.section-head h2 { max-width: 800px; }
.section-head p {
  max-width: 620px;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.4px;
}

/* ── Proof strip (template "logo strip" slot) ─── */

.proof-strip {
  padding: 0 24px 64px;
  text-align: center;
}
.proof-strip__label {
  color: var(--muted);
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.4px;
  margin-bottom: 32px;
}
.proof-strip__shot {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--card);
  border-radius: var(--radius-card);
  padding: 16px;
  box-shadow: var(--ring);
}
.proof-strip__shot img { border-radius: 12px; width: 100%; height: auto; }
.proof-strip__note {
  max-width: 720px;
  margin: 24px auto 0;
  font-size: 16px;
  line-height: 24px;
}

/* ── Results cards (template "Results") ───── */

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.result-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 400px;
  padding: 32px;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--card);
  color: var(--ink);
  text-align: center;
  isolation: isolate;
}
.result-card__img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.result-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.72) 45%, rgba(0, 0, 0, 0.95) 100%);
}
.result-card h3 { font-size: 28px; line-height: 31px; letter-spacing: -0.56px; }
.result-card__meta {
  margin-top: 8px;
  font-size: 16px;
  line-height: 22px;
  color: var(--ink);
}
.result-card p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 20px;
}
.result-card__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.result-card__stats span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(13, 13, 13, 0.56);
  backdrop-filter: blur(6px);
  font-size: 14px;
  line-height: 14px;
  color: var(--ink);
}
.result-card__link {
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
}
.result-card:hover .result-card__link { color: var(--ink); }

.result-card--next { justify-content: center; gap: 12px; }
.result-card--next::before { background: transparent; }
.result-card--next .btn { align-self: center; margin-top: 8px; }

.results-more { display: flex; justify-content: center; margin-top: 32px; }

/* ── Services bento (template "Bento") ────── */

.bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.bento__card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 212px;
  padding: 48px 24px;
  border-radius: var(--radius-card);
  background: var(--card);
  text-align: center;
}
.bento__card--wide { grid-column: 1 / -1; }
.bento__card h3 { position: relative; font-size: 42px; line-height: 50px; letter-spacing: -0.84px; }
.bento__card p { position: relative; max-width: 480px; font-size: 16px; line-height: 24px; }
.bento__card .card-glow { top: -420px; left: -260px; }
.bento__card .card-glow--right { left: auto; right: -260px; top: -420px; }
.bento__card .card-glow--right-b { left: auto; right: -260px; top: -420px; opacity: 0.5; }

/* ── Process (template "Process") ─────────── */

.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 48px 32px;
  border-radius: var(--radius-card);
  text-align: center;
}
.process__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: var(--ink);
}
.process__icon svg { width: 56px; height: 56px; }
.process__icon svg .accent { stroke: var(--accent); fill: var(--accent); }
.process__step h4 { font-size: 28px; line-height: 28px; letter-spacing: -0.56px; }
.process__step p { font-size: 16px; line-height: 24px; max-width: 300px; }
.process__step ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  line-height: 20px;
  color: var(--muted);
}
.process__step ul li::before { content: '— '; color: var(--faint); }

/* ── Numbers ──────────────────────────────── */

.numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.numbers__item {
  padding: 32px;
  border-radius: var(--radius-card);
  background: var(--card);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.numbers__item strong {
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -1.92px;
  font-weight: 500;
  color: var(--ink);
}
.numbers__item h4 { font-size: 18px; line-height: 22px; letter-spacing: -0.36px; }
.numbers__item p { font-size: 14px; line-height: 20px; }

/* ── FAQ (template accordion rows) ────────── */

.faq {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq__item {
  border-radius: 12px;
  background: var(--card);
  padding: 18px 20px;
}
.faq__item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  list-style: none;
  cursor: pointer;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: -0.36px;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '';
  flex: none;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  transition: transform 0.2s ease;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  margin-top: 12px;
  padding-right: 48px;
  font-size: 16px;
  line-height: 24px;
}

/* ── CTA card (template final CTA) ────────── */

.cta-band { padding: 0 24px var(--space-section); }
.cta-band__inner {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 160px;
  border-radius: var(--radius-card);
  background: var(--card-2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  isolation: isolate;
}
.cta-band__inner > :not(.glow) { position: relative; z-index: 1; }
.cta-band__inner .glow { z-index: 0; bottom: -400px; }
.cta-band__inner h2 { max-width: 760px; }
.cta-band__inner p {
  max-width: 620px;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.4px;
}

/* ── Booking (template-styled) ────────────── */

.booking {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}
.booking__info { display: flex; flex-direction: column; gap: 24px; }
.booking__info h2 { font-size: 48px; line-height: 56px; letter-spacing: -1.92px; }
.booking__info p { font-size: 18px; line-height: 27px; }
.booking__list { display: flex; flex-direction: column; gap: 12px; }
.booking__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 16px;
}
.booking__list li::before {
  content: '';
  flex: none;
  width: 18px;
  height: 18px;
  background: no-repeat center / 18px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23ff4533' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 10.5l4 4 8-9'/%3E%3C/svg%3E");
}
.booking__card {
  padding: 32px;
  border-radius: var(--radius-card);
  background: var(--card);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.booking__card .mock__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  font-size: 14px;
}
.booking__cal { padding: 16px; border-radius: 12px; background: var(--card-2); }
.booking__cal-head { font-size: 14px; color: var(--ink); margin-bottom: 12px; }
.booking__cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}
.booking__cal-grid span { padding: 6px 0; border-radius: 8px; }
.booking__cal-grid .dim { color: var(--faint); }
.booking__cal-grid .sel { background: var(--accent); color: #fff; }
.booking__note { color: var(--muted); font-size: 13px; text-align: center; }

/* ── Footer (template: blurred bar, brand left, columns right) ── */

.footer {
  border-top: 1px solid var(--border);
  background: var(--footer-bg);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 48px;
}
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__brand p { max-width: 360px; font-size: 14px; line-height: 21px; }
.footer__contact a { color: var(--ink); }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h4 {
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 4px;
}
.footer__col a {
  font-size: 14px;
  line-height: 1.2;
  color: var(--muted);
  transition: color 0.16s ease;
}
.footer__col a:hover { color: var(--ink); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
}
.footer__bottom div { display: flex; gap: 20px; }
.footer__bottom a:hover { color: var(--ink); }

/* ── Page-load appear (extracted from the Framer template) ──
   Only the hero + nav animate on load; nothing animates on scroll.
   Elements are held invisible only once JS has confirmed it will run. */

.js [data-appear],
.js [data-appear-words] { opacity: 0.001; }
.js .appear-word { opacity: 0.001; filter: blur(10px); transform: translateY(10px); }
.appear-word { display: inline-block; will-change: transform, filter, opacity; }

@media (prefers-reduced-motion: reduce) {
  .js [data-appear], .js [data-appear-words], .js .appear-word { opacity: 1; filter: none; transform: none; }
}

/* ── Responsive ───────────────────────────── */

@media (max-width: 1199px) {
  h1 { font-size: 60px; line-height: 66px; letter-spacing: -2.4px; }
  h2 { font-size: 48px; line-height: 56px; letter-spacing: -1.92px; }
  .hero { padding: clamp(36px, 7.5vh, 120px) 24px clamp(110px, 18vh, 220px); }
}

@media (max-width: 960px) {
  .nav-wrap { padding: 16px; }
  .nav { width: 100%; justify-content: space-between; }
  .nav__links,
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    margin: 0;
    padding: 12px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
  }
  .nav__links.open a { padding: 12px; }

  .results-grid,
  .process,
  .numbers { grid-template-columns: 1fr 1fr; }
  .booking { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 809px) {
  h1 { font-size: 48px; line-height: 54px; letter-spacing: -1.92px; }
  h2 { font-size: 42px; line-height: 48px; letter-spacing: -1.68px; }
  h3 { font-size: 32px; line-height: 38px; letter-spacing: -0.64px; }
  .hero { padding: clamp(32px, 6.5vh, 104px) 24px clamp(100px, 16vh, 200px); }
  .hero__sub,
  .section-head p,
  .cta-band__inner p { font-size: 18px; line-height: 27px; }
  .section-head { margin-bottom: 40px; }
  .bento { grid-template-columns: 1fr; }
  .bento__card h3 { font-size: 32px; line-height: 38px; }
    .booking__info h2 { font-size: 36px; line-height: 42px; letter-spacing: -1.44px; }
  .cta-band__inner { padding: 80px 20px 120px; }
}

@media (max-width: 560px) {
  h1 { font-size: 40px; line-height: 44px; letter-spacing: -1.6px; }
  h2 { font-size: 32px; line-height: 36px; letter-spacing: -1.28px; }
  .br-desktop { display: none; }
  .hero { padding: clamp(28px, 6vh, 96px) 20px clamp(90px, 15vh, 180px); }
  .hero__actions .btn { width: 100%; }
  .results-grid,
  .process,
  .numbers { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .glow { width: 800px; }
  .container { padding: 0 20px; }
}

/* ══════════════════════════════════════════════
   VSL page
   ══════════════════════════════════════════════ */

.vsl-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.vsl-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1080px, 100% - 32px);
  margin: 24px auto 0;
  padding: 12px 24px;
  background: rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
}

.vsl-header__back {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.15s ease;
}
.vsl-header__back:hover { color: var(--green); }

.vsl-header__cta {
  padding: 9px 13px;
  font-size: 14px;
  line-height: 18px;
  border-radius: 10px;
}

/* sticky mobile CTA bar */
.vsl-sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 0.8px solid var(--border);
}

.book-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  text-align: center;
}
.book-trust p { font-size: 14px; opacity: 0.8; }
.book-trust strong { color: var(--green); }

.book-section { padding-top: 72px; }

.vsl-hero {
  padding: 72px 0 64px;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255, 69, 51, 0.06), transparent 70%),
    var(--bg);
}

.vsl-hero__inner { display: flex; flex-direction: column; align-items: center; }
.vsl-hero h1 { max-width: 860px; }

.vsl-hero__sub {
  max-width: 620px;
  margin: 20px auto 36px;
  font-size: 17.5px;
  line-height: 1.65;
  opacity: 0.85;
}

/* fake video player */
.vsl-player {
  width: 100%;
  max-width: 860px;
  border-radius: var(--radius-card);
  border: 0;
  background: var(--card);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.vsl-player__screen {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(ellipse 80% 90% at 50% -10%, rgba(255, 69, 51, 0.32), transparent 60%),
    linear-gradient(180deg, #1a0605, #000000);
  overflow: hidden;
}

.vsl-player__poster {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.vsl-player__poster.hidden { opacity: 0; visibility: hidden; }

.vsl-player__brand {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.2px;
}

.vsl-player__poster-title {
  color: rgba(255, 255, 255, 0.92);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.4px;
  max-width: 70%;
}

.vsl-player__play {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: play-pulse 2s ease infinite;
  transition: transform 0.2s ease;
}
.vsl-player__play:hover { transform: scale(1.08); }

.vsl-player__play span {
  width: 0;
  height: 0;
  border-left: 26px solid var(--green);
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  margin-left: 7px;
}

@keyframes play-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.35); }
  55% { box-shadow: 0 0 0 24px rgba(255, 255, 255, 0); }
}

.vsl-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 32px;
}
.vsl-slide.active { display: flex; animation: panel-in 0.5s ease both; }

.vsl-slide__label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
}

.vsl-slide .mock {
  width: min(480px, 100%);
  text-align: left;
  animation: mock-float 6s ease-in-out infinite;
}

.vsl-player__bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: var(--card);
  border-top: 0.8px solid var(--border);
}

.vsl-player__ctrl {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 0;
  background: var(--tint);
  color: var(--green);
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.vsl-player__ctrl:hover { background: var(--border); }

.vsl-player__track {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: var(--tint);
  border: 0;
  overflow: hidden;
}
.vsl-player__track i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #FF2A2C, var(--green));
  border-radius: 999px;
}

.vsl-player__time {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--green);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.vsl-hero__cta {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vsl-pulse { animation: cta-pulse 2.4s ease infinite; }
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 69, 51, 0.35); }
  55% { box-shadow: 0 0 0 16px rgba(255, 69, 51, 0); }
}

/* proof strip */
.vsl-proof {
  background: var(--tint-soft);
  border-top: 0.8px solid var(--border);
  border-bottom: 0.8px solid var(--border);
  padding: 36px 0;
}

.vsl-proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.vsl-proof__item strong {
  display: block;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -1px;
  color: var(--green);
}
.vsl-proof__item span { font-size: 13.5px; opacity: 0.75; }

/* qualifying quiz */
.quiz {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  background: var(--card);
  border: 0;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 36px;
}

.quiz__progress { margin-bottom: 28px; }

.quiz__progress-track {
  height: 6px;
  border-radius: 999px;
  background: var(--tint);
  border: 0;
  overflow: hidden;
}
.quiz__progress-track i {
  display: block;
  height: 100%;
  width: 16%;
  background: linear-gradient(90deg, #FF2A2C, var(--green));
  border-radius: 999px;
  transition: width 0.4s cubic-bezier(0.25, 0.8, 0.3, 1);
}

.quiz__progress-label {
  display: block;
  margin-top: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--green);
  opacity: 0.75;
}

.quiz__step { display: none; }
.quiz__step.active { display: block; animation: panel-in 0.4s ease both; }

.quiz__step h3 {
  font-size: 22px;
  letter-spacing: -0.7px;
  margin-bottom: 20px;
}

.quiz__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quiz__option {
  padding: 16px 18px;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  color: var(--ink);
  background: var(--tint);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.quiz__option:hover {
  transform: translateY(-2px);
  border-color: var(--green);
  background: rgba(255, 69, 51, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.quiz__form { display: flex; flex-direction: column; gap: 12px; }

.quiz__form input {
  height: 50px;
  padding: 0 18px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: var(--tint);
  border: 0;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.quiz__form input:focus { border-color: var(--green); background: var(--card); }
.quiz__form .btn { margin-top: 8px; }

.quiz__back {
  position: absolute;
  top: 38px;
  right: 36px;
  background: none;
  border: 0;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}
.quiz__back:hover { color: var(--green); }

/* embedded calendar */
.cal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

.cal__dates, .cal__slots {
  background: var(--tint);
  border: 0;
  border-radius: var(--radius-card);
  padding: 14px;
  max-height: 300px;
  overflow-y: auto;
}

.cal__date, .cal__slot {
  display: block;
  width: 100%;
  padding: 11px 14px;
  margin-bottom: 8px;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  color: var(--ink);
  background: var(--card);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.cal__date:last-child, .cal__slot:last-child { margin-bottom: 0; }

.cal__date:hover, .cal__slot:hover { border-color: var(--green); }

.cal__date.selected, .cal__slot.selected {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.cal__date small { display: block; font-weight: 400; font-size: 12px; opacity: 0.65; }
.cal__date.selected small { opacity: 0.8; }

.cal__hint {
  font-size: 13.5px;
  opacity: 0.6;
  text-align: center;
  padding: 24px 8px;
}

/* success / not-qualified */
.quiz__success { text-align: center; padding: 12px 0; }

.quiz__success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 26px;
  animation: success-pop 0.5s cubic-bezier(0.25, 0.8, 0.3, 1) both;
}
.quiz__success-icon--soft { background: var(--tint); color: var(--green); border: 0; }

@keyframes success-pop {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.quiz__success p { margin-top: 10px; font-size: 15.5px; opacity: 0.85; }
.quiz__success-note { font-size: 13.5px !important; opacity: 0.65 !important; }
.quiz__success .btn { margin-top: 22px; }

.vsl-testimonials .guarantee { text-align: center; }
.vsl-testimonials .guarantee h2 { margin-top: 8px; max-width: 20ch; margin-inline: auto; }

.vsl-footer {
  border-top: 0.8px solid var(--border);
  background: var(--footer-bg);
  padding: 24px 0;
}

.vsl-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  opacity: 0.8;
}
.vsl-footer__inner a { color: var(--green); font-weight: 500; }

@media (max-width: 960px) {
  .vsl-proof__grid { grid-template-columns: repeat(2, 1fr); }
  .quiz { padding: 26px; }
  .quiz__back { top: 28px; right: 26px; }
}

@media (max-width: 560px) {
  .quiz__options { grid-template-columns: 1fr; }
  .cal { grid-template-columns: 1fr; }
  .vsl-player__poster-title { font-size: 15px; max-width: 88%; }
  .vsl-player__play { width: 64px; height: 64px; }

  .vsl-hero { padding: 44px 0 48px; }
  .vsl-hero h1 { font-size: 34px; letter-spacing: -1.2px; }
  .vsl-hero__sub { font-size: 15.5px; margin: 14px auto 26px; }
  .eyebrow-pill { font-size: 11px; padding: 6px 13px; }
  .vsl-hero__cta { margin-top: 28px; }
  .quiz__step h3 { font-size: 19px; }
  .vsl-proof__item strong { font-size: 24px; }
  .book-section .section-head { margin-bottom: 32px; }

  .vsl-sticky-cta { display: block; }
  .vsl-page main { padding-bottom: 68px; }
}

/* ── Responsive ───────────────────────────── */

@media (max-width: 960px) {
  .br-desktop { display: none; }

  .bento,
  .services-grid { grid-template-columns: 1fr; }
  .numbers { grid-template-columns: repeat(2, 1fr); }
  .results-grid,
  .testimonials { grid-template-columns: 1fr; }
  .mock__dials { grid-template-columns: repeat(2, 1fr); }

  .booking { grid-template-columns: 1fr; gap: 40px; }

  .stepper__panel { grid-template-columns: 1fr; gap: 28px; }
  .modal__grid { grid-template-columns: 1fr; gap: 28px; }
  .modal__card { padding: 28px; }
  .stepper__panels { padding: 24px; }
  .stepper__label { font-size: 12px; }
  .stepper__dot { width: 38px; height: 38px; font-size: 14px; }
  .stepper__line { top: 18px; }

  .footer__grid { grid-template-columns: 1fr 1fr; }

  .nav__links,
  .nav__cta { display: none; }
  .nav__burger { display: flex; justify-self: end; }
  .nav { grid-template-columns: 1fr auto; gap: 0.75rem; padding: 0.62rem; }

  .nav__links.open {
    display: flex;
    position: absolute;
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;
    transform: none;
    flex-direction: column;
    gap: 4px;
    background: var(--card);
    border: 0;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  }
  .nav__links.open a { padding: 10px 12px; border-radius: 8px; }
  .nav__links.open a:hover { background: var(--tint); }
  .nav { position: relative; }

  .section { padding: var(--space-section-tight) 0; }
  .cta-band { width: calc(100% - 30px); }
}

@media (max-width: 560px) {
  .stepper__label { display: none; }
  .stepper__tabs { margin-bottom: 24px; }
  .numbers { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; }
  .footer__bottom a { margin: 0 10px; }
}

/* ══════════════════════════════════════════════
   Case studies — index + detail pages
   ══════════════════════════════════════════════ */

.cs-hero {
  padding: 96px 0 64px;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255, 69, 51, 0.06), transparent 70%),
    var(--bg);
}

.cs-hero__inner { display: flex; flex-direction: column; align-items: center; }
.cs-hero h1 { max-width: 860px; }

.cs-hero__sub {
  max-width: 640px;
  margin: 24px auto 0;
  font-size: 17px;
  opacity: 0.88;
}
.cs-hero__sub strong { font-weight: 600; opacity: 1; }

.cs-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.cs-back {
  display: inline-block;
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 20px;
}
.cs-back:hover { opacity: 1; color: var(--green); }

/* ── Index grid ───────────────────────────── */

.cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cs-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 0;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

a.cs-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.09); }

.cs-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.cs-card__tag {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: none;
  color: var(--green);
  opacity: 0.6;
}

.cs-card__time {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.6px;
  color: var(--green);
  background: var(--tint);
  border: 0;
  border-radius: 999px;
  padding: 4px 10px;
}

.cs-card h3 { margin-bottom: 8px; }
.cs-card p { font-size: 14.5px; opacity: 0.85; flex: 1; }

.cs-card__stats {
  display: flex;
  gap: 22px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 0.8px solid var(--border);
}
.cs-card__stats strong {
  display: block;
  font-size: 21px;
  font-weight: 500;
  color: var(--green);
  letter-spacing: -0.6px;
}
.cs-card__stats small { font-size: 12.5px; opacity: 0.7; }

.cs-card__link {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--green);
}

/* placeholder / coming soon */
.cs-card--soon {
  background: var(--tint-soft);
  box-shadow: none;
  border-style: dashed;
}
.cs-card--soon h3 { opacity: 0.6; }
.cs-card--soon p { opacity: 0.6; }
.cs-card--soon .cs-card__tag { opacity: 0.4; }

.cs-soon-badge {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: none;
  color: var(--green);
  background: var(--card);
  border: 0;
  border-radius: 999px;
  padding: 4px 10px;
  opacity: 0.7;
}

/* ── Detail page blocks ───────────────────── */

.cs-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.cs-split h3 { margin-bottom: 14px; }

.cs-list { display: grid; gap: 12px; }
.cs-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  opacity: 0.88;
}
.cs-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--green);
  opacity: 0.55;
}
.cs-list--check li::before {
  content: "✓";
  background: none;
  top: 0;
  width: auto;
  height: auto;
  font-size: 12px;
  color: var(--green);
  opacity: 1;
}

.cs-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.cs-pillar {
  background: var(--card);
  border: 0;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 26px;
}
.cs-pillar h3 { margin-bottom: 8px; }
.cs-pillar p { font-size: 14.5px; opacity: 0.85; }

/* ── Screenshots ──────────────────────────── */

.cs-shots { display: grid; gap: 34px; }

.cs-shot {
  background: var(--card);
  border: 0;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 18px;
}

.cs-shot__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.cs-shot__head h3 { font-size: 18px; }

.cs-shot img {
  width: 100%;
  border: 0;
  border-radius: 10px;
}

.cs-shot figcaption {
  margin-top: 14px;
  font-size: 14px;
  opacity: 0.8;
}
.cs-shot figcaption strong { color: var(--green); font-weight: 600; opacity: 1; }

/* ── Source note ──────────────────────────── */

.cs-source {
  font-size: 13.5px;
  opacity: 0.65;
  text-align: center;
  line-height: 1.7;
}
.cs-source strong { color: var(--green); opacity: 1; }

/* ── Responsive ───────────────────────────── */

@media (max-width: 900px) {
  .cs-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-split { grid-template-columns: 1fr; gap: 32px; }
  .cs-pillars { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .cs-hero { padding: 68px 0 52px; }
  .cs-grid { grid-template-columns: 1fr; }
  .cs-shot { padding: 12px; }
  .cs-shot__head h3 { font-size: 16px; }
}

.results-more { text-align: center; margin-top: 36px; }

/* ── Wide screenshots: swipeable rather than shrunk ──────── */

.shot-rail {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 6px;
  scrollbar-width: thin;
}

.shot-rail img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--border);
  border-radius: 6px;
}

.shot-hint {
  display: none;
  margin: 0.55rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
}

@media (max-width: 820px) {
  /* below this the ad-account tables stop being readable, so let them scroll */
  .shot-rail img { width: 1180px; max-width: none; }
  .shot-hint { display: block; }
}

/* ── Five-up stat strip ─────────────────────── */

.vsl-proof__grid--five { grid-template-columns: repeat(5, 1fr); }

/* ── Ad set breakdown table ─────────────────── */

.ad-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 14.5px;
  background: var(--card);
}

.ad-table th {
  text-align: right;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: none;
  color: var(--muted);
  padding: 0 0.9rem 12px;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.ad-table th:first-child { text-align: left; }

.ad-table td {
  padding: 13px 0.9rem;
  text-align: right;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.ad-table td:first-child { text-align: left; font-weight: 500; color: var(--green); }

.ad-table tbody tr:hover { background: var(--tint); }

.ad-table tfoot td {
  border-bottom: 0;
  border-top: 2px solid var(--border);
  font-weight: 600;
  color: var(--green);
  background: var(--tint);
}

@media (max-width: 620px) {
  .vsl-proof__grid--five { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}


/* ══════════════════════════════════════════════
   Onboarding form (/onboarding)
   ══════════════════════════════════════════════ */

.onboard-hero {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(2rem, 4vw, 3rem);
  text-align: left;
  background:
    radial-gradient(55% 55% at 12% 0%, rgba(255, 69, 51, 0.14), transparent 70%),
    var(--bg);
}

.onboard-hero__kicker {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--green);
  margin-bottom: 16px;
}

.onboard-hero h1 { max-width: 720px; color: var(--white); }

.onboard-hero p {
  max-width: 620px;
  margin-top: 1.1rem;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.72;
  color: var(--muted);
}

.onboard-hero__note {
  margin-top: 1.4rem;
  font-size: 0.9rem;
  color: var(--muted);
  border-left: 2px solid rgba(255, 69, 51, 0.5);
  padding-left: 14px;
}

.onboard-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(4rem, 8vw, 6rem);
}

.onboard-section {
  border-top: 1px solid var(--border);
  padding: clamp(1.8rem, 4vw, 2.6rem) 0;
}
.onboard-section:first-child { border-top: 0; padding-top: 0; }

.onboard-section__num {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: none;
  color: var(--green);
  margin-bottom: 6px;
}

.onboard-section h2 {
  font-size: clamp(1.3rem, 2.4vw, 1.6rem);
  color: var(--white);
  margin-bottom: 6px;
}

.onboard-section__hint {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 1.6rem;
  max-width: 60ch;
}

.onboard-field { margin-bottom: 1.4rem; }
.onboard-field:last-child { margin-bottom: 0; }

.onboard-field label {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.onboard-field label .req { color: var(--green); margin-left: 3px; }
.onboard-field label .opt {
  font-weight: 400;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.82rem;
}

.onboard-field input[type="text"],
.onboard-field input[type="email"],
.onboard-field input[type="tel"],
.onboard-field input[type="url"],
.onboard-field input[type="number"],
.onboard-field select,
.onboard-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--white);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.onboard-field textarea { min-height: 110px; padding-top: 0.85rem; resize: vertical; line-height: 1.6; }

.onboard-field input:focus,
.onboard-field select:focus,
.onboard-field textarea:focus {
  border-color: var(--green);
  background: var(--card-2);
}

.onboard-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23ffffff' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.6rem;
}
.onboard-field select option { background: var(--card); color: var(--white); }

.onboard-field small {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  color: var(--muted);
}

.onboard-radios {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.onboard-radio {
  position: relative;
}
.onboard-radio input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}
.onboard-radio span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.onboard-radio input:checked + span {
  color: var(--white);
  border-color: var(--green);
  background: rgba(255, 69, 51, 0.1);
}
.onboard-radio input:focus-visible + span { outline: 2px solid var(--green); outline-offset: 2px; }

.onboard-assets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 1.6rem;
}

.onboard-asset-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.2rem;
}
.onboard-asset-card h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--green);
  margin-bottom: 8px;
}
.onboard-asset-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
.onboard-asset-card a { color: var(--white); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

.onboard-submit {
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.onboard-submit .btn { width: 100%; }

.onboard-submit__note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

.onboard-error {
  display: none;
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--green);
}
.onboard-field.has-error input,
.onboard-field.has-error select,
.onboard-field.has-error textarea { border-color: var(--green); }
.onboard-field.has-error .onboard-error { display: block; }

@media (max-width: 620px) {
  .onboard-assets { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   Legal pages (privacy-policy.html, etc.)
   ══════════════════════════════════════════════ */

.legal { max-width: 760px; margin: 0 auto; }

.legal > p:first-child { margin-top: 0; }

.legal p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 1.1rem;
}

.legal h2 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--white);
  margin: 2.4rem 0 0.9rem;
}
.legal h2:first-of-type { margin-top: 0.5rem; }

.legal ul {
  margin: 0 0 1.3rem;
  padding-left: 1.3rem;
  display: grid;
  gap: 0.6rem;
}
.legal li {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--muted);
  list-style: disc;
}
.legal li strong { color: var(--white); font-weight: 600; }

.legal a { color: var(--white); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--green); }

/* ══════════════════════════════════════════════
   Blog (blog.html + blog/*.html)
   ══════════════════════════════════════════════ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 0;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

a.blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 69, 51, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.blog-card__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: none;
  color: var(--green);
}

.blog-card__date {
  font-size: 12px;
  color: var(--muted);
}
.blog-card__date::before { content: "·"; margin-right: 10px; color: var(--border); }

.blog-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.blog-card p { font-size: 0.92rem; line-height: 1.65; color: var(--muted); flex: 1; }

.blog-card__link {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

/* article page */

.post-hero {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(2rem, 4vw, 3rem);
  text-align: left;
  background:
    radial-gradient(55% 55% at 12% 0%, rgba(255, 69, 51, 0.14), transparent 70%),
    var(--bg);
}

.post-hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 12.5px;
  color: var(--muted);
}
.post-hero__meta span:first-child {
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: none;
  color: var(--green);
}
.post-hero__meta span:first-child::after { content: ""; }
.post-hero__meta i { color: var(--border); font-style: normal; }

.post-hero h1 { max-width: 780px; }

.post-hero p.post-hero__dek {
  max-width: 640px;
  margin-top: 1.1rem;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.72;
  color: var(--muted);
}

.post-back {
  display: inline-block;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}
.post-back:hover { color: var(--white); }

.post-body {
  max-width: 720px;
  margin: 0 auto;
}
.post-body > p:first-child { margin-top: 0; }
.post-body p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 1.3rem;
}
.post-body p strong { color: var(--white); font-weight: 600; }
.post-body h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  color: var(--white);
  margin: 2.6rem 0 1rem;
}
.post-body h2:first-of-type { margin-top: 1.4rem; }
.post-body ul {
  margin: 0 0 1.4rem;
  padding-left: 1.3rem;
  display: grid;
  gap: 0.6rem;
}
.post-body li { font-size: 1.02rem; line-height: 1.7; color: var(--muted); list-style: disc; }
.post-body li strong { color: var(--white); font-weight: 600; }
.post-body blockquote {
  margin: 2rem 0;
  padding: 1.4rem 1.6rem;
  border-left: 3px solid var(--green);
  background: rgba(255, 69, 51, 0.06);
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--white);
}
.post-body a { color: var(--white); text-decoration: underline; text-underline-offset: 2px; }
.post-body a:hover { color: var(--green); }

.post-cta {
  max-width: 720px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.post-cta p { margin: 0; font-size: 0.98rem; color: var(--muted); max-width: 44ch; }

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   Sitemap page (sitemap.html)
   ══════════════════════════════════════════════ */

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.sitemap-col h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--green);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.sitemap-col ul { display: grid; gap: 10px; }
.sitemap-col a {
  font-size: 0.98rem;
  color: var(--muted);
}
.sitemap-col a:hover { color: var(--white); }

@media (max-width: 720px) {
  .sitemap-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ══════════════════════════════════════════════
   Sub-page headers — template section-heading scale
   ══════════════════════════════════════════════ */

.cs-hero h1,
.onboard-hero h1,
.post-hero h1,
.vsl-hero h1 {
  font-size: 60px;
  line-height: 72px;
  letter-spacing: -2.4px;
}
.cs-hero,
.onboard-hero,
.post-hero { padding-top: 64px; }
.cs-hero__sub,
.post-hero__dek,
.onboard-hero p { font-size: 20px; line-height: 30px; letter-spacing: -0.4px; color: var(--muted); }

@media (max-width: 809px) {
  .cs-hero h1,
  .onboard-hero h1,
  .post-hero h1,
  .vsl-hero h1 { font-size: 42px; line-height: 48px; letter-spacing: -1.68px; }
}
@media (max-width: 560px) {
  .cs-hero h1,
  .onboard-hero h1,
  .post-hero h1,
  .vsl-hero h1 { font-size: 34px; line-height: 38px; letter-spacing: -1.36px; }
}

/* ── Video placeholder (homepage, under the hero) ── */

.video { padding: 140px 24px 64px; }
.video__frame {
  position: relative;
  max-width: 1000px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border-radius: var(--radius-card);
  background:
    radial-gradient(60% 70% at 50% 0%, rgba(255, 69, 51, 0.18), transparent 70%),
    var(--card);
  box-shadow: var(--ring);
  overflow: hidden;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 20px;
}
.video__frame iframe,
.video__frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video__play {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0 0 12px rgba(255, 69, 51, 0.14);
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.video__play:hover { background: var(--accent-2); transform: scale(1.04); }
.video__play svg { width: 34px; height: 34px; fill: currentColor; margin-left: 4px; }
.video__caption { color: var(--muted); font-size: 16px; letter-spacing: -0.02em; }

@media (max-width: 560px) {
  .video { padding: 80px 20px 48px; }
  .video__play { width: 64px; height: 64px; }
  .video__play svg { width: 26px; height: 26px; }
}

/* ── Blog post figures ─────────────────────── */

.post-figure {
  margin: 0 0 2rem;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--card);
}
.post-figure img { width: 100%; height: auto; aspect-ratio: 7 / 4; object-fit: cover; }
.post-figure figcaption {
  padding: 12px 18px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}
.post-body .post-figure { margin: 2rem 0; }

.blog-card__img {
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  border-radius: 12px;
  margin-bottom: 18px;
}

/* ── Blog post: one consistent column ──────── */
/* Header, lead image, body and CTA all share the same 760px measure,
   left-aligned, so nothing jumps between widths down the page. */

.post-hero .container,
.post-figure,
.post-body,
.post-cta { max-width: 760px; margin-left: auto; margin-right: auto; }
.post-hero .container { padding-left: 24px; padding-right: 24px; }
.post-hero h1 { max-width: none; font-size: 52px; line-height: 58px; letter-spacing: -2.08px; }
.post-hero p.post-hero__dek { max-width: none; }
.post-figure { margin: 0 auto 2.5rem; }
.post-body h2 { font-size: 30px; line-height: 36px; letter-spacing: -0.9px; margin-top: 2.4rem; }
.post-body p, .post-body li { font-size: 18px; line-height: 1.7; }
.post-body blockquote { font-size: 22px; line-height: 1.45; }
.post-body ul { padding-left: 1.3rem; }
.post-cta { margin-top: 3rem; }

@media (max-width: 809px) {
  .post-hero h1 { font-size: 36px; line-height: 42px; letter-spacing: -1.44px; }
  .post-body h2 { font-size: 26px; line-height: 32px; }
  .post-body p, .post-body li { font-size: 17px; }
}

/* ── Blog post: answer-first summary + FAQ ─── */

.post-summary {
  margin: 0 0 2rem;
  padding: 22px 24px;
  border-radius: 16px;
  background: var(--card);
  box-shadow: var(--ring);
  border-left: 3px solid var(--accent);
}
.post-summary strong {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.post-summary p { margin: 0; font-size: 17px; line-height: 1.6; color: var(--ink); }

.post-faq { margin-top: 3rem; }
.post-faq h2 { margin-bottom: 1rem; }
.post-faq .faq__item { margin-bottom: 10px; }
.post-faq .faq__item summary { font-size: 17px; line-height: 24px; }
.post-faq .faq__item p { font-size: 16px; margin-top: 10px; }
