/* ============================================================
   Vision Labs — now.visionlabs.com base stylesheet
   Mirrors the live visionlabs.com design system:
   dark gunmetal header, sans-serif Poppins throughout (bold for
   headings), light body, olive-pill CTAs, dark multi-column footer.
   Mobile-first.
   ============================================================ */

/* ---------- Self-hosted Poppins (latin subset) ---------- */

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/poppins-400.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/poppins-500.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/poppins-600.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/poppins-700.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/assets/fonts/poppins-800.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* Core palette (brand doc) */
  --vl-teal:        #00665C;
  --vl-olive:       #018979;
  --vl-olive-link:  #038979;
  --vl-lime:        #A3C74C;
  --vl-gunmetal:    #26313B;
  --vl-isabeline:   #F6F3F0;

  /* Section tints */
  --vl-mint-50:     #F6FFFB;
  --vl-cyan-50:     #ECF9F9;
  --vl-mint-whisper:#F9FDFB;
  --vl-cool-off:    #F8FAF9;

  /* Neutrals */
  --vl-white:       #FFFFFF;
  --vl-gray-100:    #FAFAFA;
  --vl-gray-200:    #f2f3f3;
  --vl-gray-300:    #e5e7e8;
  --vl-gray-400:    #d4d6d8;
  --vl-gray-500:    #a9adb1;
  --vl-gray-600:    #6b7480;

  /* Type — Poppins everywhere; live site uses sans-serif for headings too */
  --font-body:    "Poppins", -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Poppins", -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  /* Radius */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-card: 0 4px 12px rgba(38, 49, 59, 0.06);
  --shadow-cta:  0 8px 24px rgba(1, 137, 121, 0.25);

  /* Layout */
  --container-max: 1120px;
  --content-max:   780px;
  --form-max:      640px;
  --header-h:      60px;
}

@media (min-width: 768px) {
  :root { --header-h: 72px; }
}

/* ---------- Reset ---------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--vl-gunmetal);
  background: var(--vl-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; height: auto; }

a { color: var(--vl-olive-link); text-underline-offset: 3px; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--vl-gunmetal);
  margin: 0 0 var(--space-4);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

/* ---------- Layout primitives ---------- */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--space-5);
}
@media (min-width: 768px) {
  .container { padding-inline: var(--space-6); }
}

.container--narrow {
  max-width: var(--content-max);
}

.section {
  padding-block: clamp(56px, 9vw, 112px);
}

.section__title {
  font-size: clamp(28px, 4.2vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: var(--space-7);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--r-pill);
  padding: 12px 22px;
  min-height: 44px;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.22s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }

.btn--primary {
  background: var(--vl-olive);
  color: var(--vl-white);
}
.btn--primary:hover {
  background: var(--vl-teal);
  transform: translateY(-1px);
  box-shadow: var(--shadow-cta);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 17px;
  min-height: 54px;
}

.btn--ghost-light {
  background: transparent;
  color: var(--vl-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ---------- Eyebrow ---------- */

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vl-olive);
  margin: 0 0 var(--space-5);
  text-align: center;
}

.eyebrow--lime { color: var(--vl-lime); }
.eyebrow--white { color: rgba(255, 255, 255, 0.7); }

/* ---------- Sticky header (dark gunmetal, matches visionlabs.com) ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--vl-gunmetal);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  min-height: var(--header-h);
  color: var(--vl-white);
}

.site-header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 10px var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  min-height: var(--header-h);
}
@media (min-width: 768px) {
  .site-header__inner { padding: 14px var(--space-6); }
}

.site-header__logo { display: inline-flex; align-items: center; }
.site-header__logo img { height: 26px; width: auto; }
@media (min-width: 768px) {
  .site-header__logo img { height: 30px; }
}

.site-header__right {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
@media (min-width: 600px) {
  .site-header__right { gap: var(--space-5); }
}

.site-header__home {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  white-space: nowrap;
  padding: 10px 6px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.site-header__home:hover {
  color: var(--vl-white);
  text-decoration: underline;
}

@media (max-width: 419px) {
  .site-header__home { display: none; }
}

.site-header__cta {
  padding: 10px 18px;
  min-height: 44px;
  font-size: 14px;
  background: var(--vl-olive);
  color: var(--vl-white);
}
.site-header__cta:hover {
  background: var(--vl-lime);
  color: var(--vl-gunmetal);
  transform: translateY(-1px);
}
@media (min-width: 768px) {
  .site-header__cta { padding: 12px 22px; font-size: 15px; }
}

/* ---------- Hero — Signal Grid (brand Pattern 1) ----------
   Deep Teal surface, white 1px grid @ 0.07 with a slow drift,
   lime glow spotlight top-right. One per page. */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 10vw, 120px) 0 clamp(56px, 8vw, 96px);
  text-align: center;
  background: var(--vl-teal);
  color: var(--vl-white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -48px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  animation: grid-drift 28s linear infinite;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: clamp(420px, 62vw, 780px);
  height: clamp(420px, 62vw, 780px);
  top: -22%;
  right: -14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(163, 199, 76, 0.20) 0%, rgba(163, 199, 76, 0.06) 45%, transparent 68%);
  pointer-events: none;
}

@keyframes grid-drift {
  to { transform: translate3d(44px, 44px, 0); }
}

.hero > .container { position: relative; z-index: 1; }

.hero .eyebrow {
  margin-bottom: var(--space-5);
  color: var(--vl-lime);
}

.hero__headline {
  font-size: clamp(34px, 6.2vw, 62px);
  letter-spacing: -0.025em;
  font-weight: 700;
  margin-bottom: var(--space-5);
  max-width: 24ch;
  margin-inline: auto;
  line-height: 1.08;
  color: var(--vl-white);
  text-wrap: balance;
}

.hero__headline em {
  font-style: normal;
  color: var(--vl-lime);
}

.hero__subheadline {
  font-size: clamp(17px, 2.1vw, 21px);
  color: rgba(255, 255, 255, 0.82);
  margin: 0 auto var(--space-7);
  max-width: 58ch;
  line-height: 1.6;
  font-weight: 400;
}

.hero__subheadline strong {
  color: var(--vl-white);
  font-weight: 600;
}

.hero__video {
  margin: 0 auto var(--space-7);
}

.hero .video-frame {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 24px 64px rgba(0, 0, 0, 0.35),
    0 0 96px rgba(163, 199, 76, 0.12);
}

.hero__video-caption {
  margin-top: var(--space-3);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.hero__cta {
  margin: var(--space-6) 0 0;
}

/* ---------- Hero stat (text-first heroes, e.g. "1 → 5") ---------- */

.hero__stat {
  margin: var(--space-6) auto var(--space-7);
}

.hero__stat-value {
  margin: 0 0 var(--space-4);
  font-size: clamp(72px, 13vw, 148px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--vl-lime);
  text-shadow: 0 0 80px rgba(163, 199, 76, 0.35);
}

.hero__stat-label {
  margin: 0 auto;
  font-size: clamp(17px, 2.1vw, 21px);
  color: rgba(255, 255, 255, 0.82);
  max-width: 44ch;
  line-height: 1.55;
}

/* Lime is the primary CTA on dark surfaces (brand rule) */
.hero .btn--primary {
  background: var(--vl-lime);
  color: var(--vl-gunmetal);
  box-shadow: 0 8px 32px rgba(163, 199, 76, 0.35);
}
.hero .btn--primary:hover {
  background: var(--vl-white);
  color: var(--vl-teal);
  transform: translateY(-2px);
}

/* ---------- Video frame ---------- */

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--vl-gunmetal);
  box-shadow: 0 12px 40px rgba(38, 49, 59, 0.18);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- CTA microcopy ---------- */

.cta-note {
  margin: var(--space-3) 0 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--vl-gray-500);
  text-align: center;
}
.hero .cta-note,
.section--statement .cta-note,
.section--final-cta .cta-note {
  color: rgba(255, 255, 255, 0.65);
}

/* ---------- Video facade (click-to-play) ---------- */

.video-facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: var(--vl-gunmetal);
  display: block;
}
.video-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-facade__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--vl-lime);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35), 0 0 0 12px rgba(163, 199, 76, 0.25);
  transition: transform 0.18s ease, box-shadow 0.22s ease;
}
.video-facade__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent var(--vl-gunmetal);
}
.video-facade:hover .video-facade__btn {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.4), 0 0 0 16px rgba(163, 199, 76, 0.3);
}

/* ---------- Logo strip ---------- */

.logo-strip {
  background: var(--vl-white);
  border-bottom: 1px solid var(--vl-gray-300);
  padding-block: clamp(28px, 4vw, 44px);
}

.logo-strip__title {
  margin: 0 0 var(--space-5);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vl-gray-500);
  text-align: center;
}

.logo-strip__row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(28px, 6vw, 72px);
}

.logo-strip__logo {
  height: clamp(26px, 3.4vw, 38px);
  width: auto;
  opacity: 0.75;
  filter: grayscale(1);
  transition: opacity 0.2s ease, filter 0.2s ease;
}
.logo-strip__logo:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* ---------- Section: stats ---------- */

.section--stats {
  background: var(--vl-white);
  border-bottom: 1px solid var(--vl-gray-300);
}

.stat-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
}
@media (min-width: 680px) {
  .stat-grid { grid-template-columns: repeat(3, 1fr); }
}

.stat-card {
  text-align: center;
  padding: var(--space-6) var(--space-4);
  background: var(--vl-mint-50);
  border: 1px solid var(--vl-gray-300);
  border-radius: var(--r-lg);
}

.stat-card__value {
  margin: 0 0 var(--space-2);
  font-size: clamp(34px, 4.6vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--vl-teal);
}

.stat-card__label {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--vl-gray-600);
}

/* ---------- Section: steps ---------- */

.section--steps {
  background: var(--vl-cyan-50);
  border-bottom: 1px solid var(--vl-gray-300);
}

.step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 720px) {
  .step-list { grid-template-columns: repeat(3, 1fr); }
}

.step-card {
  background: var(--vl-white);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.step-card__num {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--vl-white);
  background: var(--vl-olive);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.step-card__title {
  font-size: clamp(19px, 2.2vw, 22px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-2);
}

.step-card__body {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--vl-gray-600);
}

/* ---------- Section: split (We handle / You handle) ---------- */

.section--split {
  background: var(--vl-mint-50);
  border-bottom: 1px solid var(--vl-gray-300);
}

.split-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
}
@media (min-width: 680px) {
  .split-grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
}

.split-card {
  background: var(--vl-white);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--vl-olive);
}

.split-card--you {
  border-top-color: var(--vl-lime);
}

.split-card__title {
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-5);
}

.split-card--we .split-card__title { color: var(--vl-olive); }
.split-card--you .split-card__title { color: var(--vl-gunmetal); }

.split-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.split-card__list li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
}

.split-card__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 7px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--vl-olive);
  box-shadow: 0 0 0 3px rgba(1, 137, 121, 0.15);
}

.split-card--you .split-card__list li::before {
  background: var(--vl-lime);
  box-shadow: 0 0 0 3px rgba(163, 199, 76, 0.2);
}

/* ---------- Section: transform (Before / After) ---------- */

.section--transform {
  background: var(--vl-cool-off);
  border-block: 1px solid var(--vl-gray-300);
}

.split-card--before {
  border-top-color: var(--vl-gray-400);
}
.split-card--before .split-card__title {
  color: var(--vl-gray-600);
}
.split-card--before .split-card__list li {
  color: var(--vl-gray-600);
}
.split-card--before .split-card__list li::before {
  background: var(--vl-gray-400);
  box-shadow: 0 0 0 3px rgba(169, 173, 177, 0.18);
}

.split-card--after {
  background: var(--vl-mint-50);
  border-top-color: var(--vl-lime);
}
.split-card--after .split-card__title {
  color: var(--vl-teal);
}
.split-card--after .split-card__list li::before {
  background: var(--vl-lime);
  box-shadow: 0 0 0 3px rgba(163, 199, 76, 0.2);
}

/* ---------- Section: offer stack (Hormozi component cards) ---------- */

.section--stack {
  background: var(--vl-mint-whisper);
  border-block: 1px solid var(--vl-gray-300);
}

.section__intro {
  margin: calc(-1 * var(--space-5)) auto var(--space-7);
  font-size: clamp(16px, 1.9vw, 19px);
  color: var(--vl-gray-600);
  text-align: center;
  max-width: 52ch;
  line-height: 1.6;
}

.stack-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.stack-card {
  background: var(--vl-white);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
}

.stack-card__num {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--vl-white);
  background: var(--vl-teal);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.stack-card__name {
  font-size: clamp(19px, 2.2vw, 23px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-2);
}

.stack-card__what {
  margin: 0 0 var(--space-2);
  font-size: 16px;
  line-height: 1.6;
  color: var(--vl-gray-600);
}

.stack-card__value {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--vl-olive);
}

@media (max-width: 520px) {
  .stack-card { flex-direction: column; gap: var(--space-4); }
}

/* ---------- Section: guarantee ---------- */

.section--guarantee {
  background: var(--vl-white);
}

.guarantee-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--vl-mint-50);
  border: 2px solid var(--vl-olive);
  border-radius: var(--r-lg);
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
}

.guarantee-card__badge {
  display: inline-block;
  background: var(--vl-lime);
  color: var(--vl-gunmetal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  padding: 8px 18px;
  margin-bottom: var(--space-5);
}

.guarantee-card__title {
  font-size: clamp(26px, 3.6vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.guarantee-card__title em {
  font-style: normal;
  color: var(--vl-olive);
}

.guarantee-card__body {
  font-size: clamp(16px, 1.9vw, 18px);
  line-height: 1.65;
  color: var(--vl-gray-600);
  max-width: 52ch;
  margin: 0 auto var(--space-6);
}
.guarantee-card__body p { margin: 0 0 var(--space-3); }
.guarantee-card__body p:last-child { margin-bottom: 0; }

.guarantee-card__cta { margin: 0; }

/* ---------- Anchor scrolling ---------- */

.section--final-cta {
  scroll-margin-top: 88px;
}

/* ---------- Section: statement band (brand Pattern 2 — Glow Field) ---------- */

.section--statement {
  position: relative;
  overflow: hidden;
  background: var(--vl-teal);
  color: var(--vl-white);
  text-align: center;
}

.section--statement::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 12%, rgba(163, 199, 76, 0.16), transparent 46%),
    radial-gradient(circle at 8% 92%, rgba(163, 199, 76, 0.08), transparent 42%);
  pointer-events: none;
}
.section--statement > * { position: relative; }

.statement__headline {
  font-size: clamp(32px, 5.4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--vl-white);
  max-width: 20ch;
  margin: 0 auto var(--space-5);
  text-wrap: balance;
}

.statement__headline em {
  font-style: normal;
  color: var(--vl-lime);
  text-transform: uppercase;
}

.statement__subline {
  font-size: clamp(17px, 2.2vw, 22px);
  color: rgba(255, 255, 255, 0.85);
  max-width: 48ch;
  margin: 0 auto var(--space-6);
  line-height: 1.55;
}

.statement__cta { margin: 0; }

.section--statement .btn--primary {
  background: var(--vl-lime);
  color: var(--vl-gunmetal);
  box-shadow: 0 8px 32px rgba(163, 199, 76, 0.3);
}
.section--statement .btn--primary:hover {
  background: var(--vl-white);
  color: var(--vl-teal);
  transform: translateY(-2px);
}

/* ---------- Section: metrics ---------- */

.section--metrics {
  background: var(--vl-cyan-50);
  border-bottom: 1px solid var(--vl-gray-300);
}

.metric-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .metric-list { grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
}

.metric-list__item {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 21px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--vl-gunmetal);
  text-align: center;
  letter-spacing: -0.01em;
  padding: var(--space-4);
  border-top: 3px solid var(--vl-lime);
}
@media (min-width: 720px) {
  .metric-list__item { text-align: left; border-top: none; border-left: 3px solid var(--vl-lime); padding: var(--space-2) var(--space-4); }
}

/* ---------- Section: included ---------- */

.section--included {
  background: var(--vl-mint-whisper);
}

.included-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 580px;
}

.included-list__item {
  position: relative;
  font-size: clamp(17px, 1.8vw, 19px);
  font-weight: 500;
  color: var(--vl-gunmetal);
  padding: var(--space-4) 0 var(--space-4) 36px;
  border-bottom: 1px solid var(--vl-gray-300);
}
.included-list__item:last-child { border-bottom: none; }

.included-list__item::before {
  content: "";
  position: absolute;
  left: 4px;
  top: calc(var(--space-4) + 8px);
  width: 16px;
  height: 16px;
  background: var(--vl-lime);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(163, 199, 76, 0.15);
}

/* ---------- Section: FAQ ---------- */

.section--faq {
  background: var(--vl-cool-off);
  border-block: 1px solid var(--vl-gray-300);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq__item {
  background: var(--vl-white);
  border-radius: var(--r-md);
  border: 1px solid var(--vl-gray-300);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq__item[open] {
  border-color: var(--vl-olive);
  box-shadow: var(--shadow-card);
}

.faq__q {
  list-style: none;
  cursor: pointer;
  padding: var(--space-5);
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 600;
  color: var(--vl-gunmetal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: 56px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::marker { content: ""; }

.faq__q::after {
  content: "+";
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 26px;
  line-height: 1;
  color: var(--vl-olive);
  transition: transform 0.2s ease, color 0.2s ease;
  flex: 0 0 auto;
}
.faq__item[open] .faq__q::after {
  content: "−";
}

.faq__a {
  padding: 0 var(--space-5) var(--space-5);
  font-size: 16px;
  line-height: 1.7;
  color: var(--vl-gray-600);
}
.faq__a p { margin: 0 0 var(--space-3); }
.faq__a p:last-child { margin-bottom: 0; }

/* ---------- Section: final CTA ---------- */

.section--final-cta {
  background: var(--vl-teal);
  color: var(--vl-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section--final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(163, 199, 76, 0.14), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.18), transparent 55%);
  pointer-events: none;
}
.section--final-cta > * { position: relative; }
.section--final-cta .section__title { color: var(--vl-white); }
.section--final-cta .btn--primary {
  background: var(--vl-lime);
  color: var(--vl-gunmetal);
}
.section--final-cta .btn--primary:hover {
  background: var(--vl-white);
  color: var(--vl-teal);
}

.section__cta { margin: 0; }

/* ---------- Form embed ---------- */

.form-frame {
  background: var(--vl-white);
  border-radius: var(--r-md);
  overflow: hidden;
  max-width: var(--form-max);
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}
.form-frame iframe {
  width: 100%;
  height: var(--form-height, 620px);
  border: 0;
  display: block;
}

/* ---------- Longform body ---------- */

.section--longform {
  background: var(--vl-white);
}
.section--longform .container--narrow > * { max-width: 720px; margin-inline: auto; }
.section--longform p,
.section--longform li {
  font-size: 17px;
  line-height: 1.75;
}
.section--longform h2 {
  font-size: clamp(26px, 3.5vw, 34px);
  margin-top: var(--space-7);
}
.section--longform h3 {
  font-size: clamp(22px, 2.8vw, 28px);
}

/* ---------- Thank-you page ---------- */

.thank-you {
  padding: clamp(72px, 12vw, 144px) 0;
  text-align: center;
  background: var(--vl-white);
}
.thank-you__headline {
  font-size: clamp(32px, 5.5vw, 50px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-6);
}
.thank-you__body {
  font-size: clamp(16px, 1.9vw, 19px);
  line-height: 1.7;
  color: var(--vl-gray-600);
  max-width: 58ch;
  margin: 0 auto var(--space-7);
  text-align: left;
}
.thank-you__body p { margin: 0 0 var(--space-4); }
.thank-you__video {
  max-width: 720px;
  margin: 0 auto var(--space-7);
}
.thank-you__cta { margin: 0; }

/* ---------- 404 ---------- */

.not-found {
  padding: clamp(88px, 14vw, 168px) 0;
  text-align: center;
  background: var(--vl-white);
}

/* ---------- Footer (dark gunmetal, multi-column, matches visionlabs.com) ---------- */

.site-footer {
  background: var(--vl-gunmetal);
  color: rgba(255, 255, 255, 0.78);
  padding: clamp(56px, 8vw, 96px) 0 clamp(28px, 4vw, 40px);
}

.site-footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--space-5);
}
@media (min-width: 768px) {
  .site-footer__inner { padding-inline: var(--space-6); }
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-7);
  padding-bottom: var(--space-7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer__brand img { height: 28px; width: auto; }
.site-footer__tagline {
  font-family: var(--font-display);
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--vl-lime);
  letter-spacing: 0.01em;
}

.site-footer__columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  margin-bottom: var(--space-7);
}
@media (min-width: 600px) {
  .site-footer__columns { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
}
@media (min-width: 900px) {
  .site-footer__columns { grid-template-columns: repeat(5, 1fr); }
}

.site-footer__col h3 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--vl-white);
  margin: 0 0 var(--space-4);
}

.site-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.site-footer__col a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s ease;
}
.site-footer__col a:hover {
  color: var(--vl-lime);
  text-decoration: none;
}

.site-footer__closing {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--vl-white);
  margin: 0 0 var(--space-5);
  letter-spacing: -0.01em;
}
.site-footer__closing strong { color: var(--vl-lime); font-weight: 700; }

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__bottom-links {
  display: flex;
  gap: var(--space-5);
}
.site-footer__bottom-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}
.site-footer__bottom-links a:hover { color: var(--vl-white); }

.site-footer__copy { margin: 0; }

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
