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

:root {
  --color-primary: #1B2E3C;
  --color-primary-light: #38505F;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F3E3E1;
  --color-accent: #E0633D;
  --color-accent-hover: #C74F2C;
  --color-text: #1B2E3C;
  --color-text-muted: #5C6B71;
  --color-success: #2E7D32;
  --color-error: #B3261E;

  /* Supporting UI tokens — keep all non-brand colors here as well. */
  --color-white: #FFFFFF;
  --color-text-strong: #111111;
  --color-text-subtle: #777777;
  --color-text-disabled: #999999;
  --color-text-inverse-muted: #D0D0D0;
  --color-border-input: #D7CAB8;
  --color-border-soft: #DEDEDE;
  --color-border-blush: #D8BDB8;
  --color-surface-success: #F0F7F1;
  --color-border-success: #C4DBC8;
  --color-text-success: #245C35;
  --color-surface-success-soft: #E5F2E6;
  --color-surface-error-soft: #F8E4E2;
  --color-surface-muted: #F3F3F3;
  --color-surface-muted-light: #F1F1F1;
  --color-video: #1C1C1C;
  --color-video-deep: #1A1A1A;
  --color-video-stage: #201F1D;
  --color-video-gradient-start: #171717;
  --color-video-gradient-end: #242424;
  --color-placeholder-start: #5F513F;
  --color-placeholder-mid: #2A241F;
  --color-placeholder-end: #8E6D45;
  --color-placeholder-alt-start: #796B56;
  --color-placeholder-alt-end: #946B37;
  --color-overlay: rgba(0, 0, 0, 0.18);
  --color-overlay-modal: rgba(0, 0, 0, 0.6);
  --shadow-card: 0 8px 18px rgba(0, 0, 0, 0.12);
  --shadow-card-lg: 0 10px 28px rgba(0, 0, 0, 0.08);
  --bg: var(--color-bg);
  --panel: var(--color-bg);
  --ink: var(--color-text);
  --muted: var(--color-text-muted);
  --line: #D7E0E3;
  --accent: var(--color-accent);
  --dark: var(--color-primary);
  --white: var(--color-white);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  margin: 0 auto;
  max-width: 1040px;
  width: 92%;
}

header {
  padding: 22px 0 10px;
}

.nav {
  display: flex;
  justify-content: center;
}

.logo {
  display: inline-flex;
  width: min(240px, 70vw);
}

.logo img {
  display: block;
  height: auto;
  width: 100%;
}

section {
  padding: 52px 0;
}

.hero {
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
}

.funnel-page .hero {
  align-items: flex-start;
  min-height: auto;
  padding: clamp(40px, 7vw, 86px) 0;
}

.funnel-page .narrow {
  max-width: 760px;
}

.funnel-page h1 {
  font-size: clamp(34px, 5.4vw, 64px);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.funnel-page p {
  font-size: clamp(16px, 2vw, 19px);
}

.center {
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
}

.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.eyebrow.banner {
  background: var(--color-primary);
  border-radius: 8px;
  color: var(--white);
  display: block;
  font-size: 14px;
  letter-spacing: 0.04em;
  margin: 0 auto 26px;
  max-width: 880px;
  padding: 14px 18px;
  text-align: center;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

h1 .highlight {
  color: var(--accent);
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin-bottom: 14px;
}

h3 {
  font-size: 22px;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

p {
  color: var(--muted);
  font-size: 18px;
  max-width: 700px;
}

.center p,
.narrow p {
  margin-left: auto;
  margin-right: auto;
}

.subline {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  margin-top: 14px;
  text-transform: uppercase;
}

.step-label {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 18px;
  text-align: center;
}

.step-label span {
  text-decoration: underline;
}

.section-divider {
  border-top: 1px solid var(--line);
  margin: 0 auto;
  max-width: 860px;
  width: 100%;
}

.hero-media {
  margin: 34px auto 0;
  max-width: 860px;
}

.opt-grid {
  align-items: center;
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr 1fr;
  margin-top: 30px;
  text-align: left;
}

.opt-grid .visual {
  margin: 0;
}

.visual {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.visual img,
.visual iframe {
  display: block;
  width: 100%;
}

.visual img {
  height: auto;
}

.visual iframe {
  border: 0;
  aspect-ratio: 16 / 9;
}

.visual-placeholder {
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, var(--color-video-gradient-start) 0%, var(--color-video-gradient-end) 100%);
  display: grid;
  place-items: center;
  padding: 30px;
  text-align: center;
}

.visual-placeholder h3,
.visual-placeholder p {
  color: var(--white);
}

.visual-placeholder p {
  color: var(--color-text-inverse-muted);
  margin-top: 8px;
}

.calendly-placeholder {
  aspect-ratio: 16 / 10;
}

.proof-note {
  color: var(--muted);
  font-size: 14px;
  margin-top: 12px;
}

.btn,
button.btn {
  background: var(--color-accent);
  border: 0;
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  display: inline-block;
  font: inherit;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0;
  margin-top: 24px;
  padding: 15px 24px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover,
button.btn:hover {
  background: var(--color-accent-hover);
  opacity: 0.92;
  transform: translateY(-2px);
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn.full {
  width: 100%;
}

.btn.banner {
  background: var(--color-accent);
  color: var(--white);
  display: block;
  font-size: 17px;
  margin: 0 auto;
  max-width: 880px;
  padding: 18px;
  text-align: center;
  width: 100%;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.funnel-page .panel {
  margin: 30px auto 0;
  max-width: 680px;
}

.funnel-schedule .schedule-hero {
  padding: clamp(22px, 3vw, 40px) 0 6px;
}

.funnel-schedule .schedule-calendar-section {
  padding: 0 0 56px;
}

.funnel-schedule .schedule-calendar-section .container {
  max-width: 1500px;
  width: calc(100% - 48px);
}

.funnel-schedule .calendly-wrap {
  margin-top: 0;
  max-width: none;
  padding: 0;
  width: 100%;
}

.funnel-schedule .calendly-inline-widget {
  height: min(88vh, 980px) !important;
  min-width: 0 !important;
  width: 100% !important;
}

.funnel-schedule .calendly-inline-widget iframe {
  border: 0;
  display: block;
  height: 100% !important;
  width: 100% !important;
}

.form-grid {
  display: grid;
  gap: 14px;
  margin-top: 0;
  text-align: left;
}

.field {
  display: grid;
  gap: 8px;
  text-align: left;
}

.field label {
  font-size: 14px;
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  background: var(--white);
  border: 1px solid var(--color-border-input);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

.phone-field {
  align-items: center;
  display: grid;
  gap: 8px;
  grid-template-columns: 64px 1fr;
}

.phone-field .country-flag {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--color-border-input);
  border-radius: 8px;
  display: flex;
  font-size: 20px;
  height: 48px;
  justify-content: center;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field-error {
  color: var(--color-error);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1.35;
  margin-top: -2px;
}

.field-error[hidden] {
  display: none;
}

.field [aria-invalid="true"] {
  border-color: var(--color-error);
}

.phone-field:has([aria-invalid="true"]) {
  border-color: var(--color-error);
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.microcopy {
  color: var(--color-text-muted);
  font-size: 13px;
  margin-top: 12px;
  text-align: center;
}

.proof-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
}

.proof-card {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  text-align: center;
}

.proof-card strong {
  display: block;
  font-size: 28px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.proof-card span {
  color: var(--muted);
  display: block;
  font-size: 14px;
  margin-top: 8px;
}

.stack {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.stack-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.stack-item span {
  color: var(--accent);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.check-list li {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding-top: 12px;
}

.signature {
  color: var(--ink);
  font-weight: 800;
  margin-top: 16px;
}

.disclaimer {
  color: var(--color-text-subtle);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.65;
  margin-top: 22px;
}

.notice {
  background: var(--color-surface-success);
  border: 1px solid var(--color-border-success);
  border-radius: 8px;
  color: var(--color-text-success);
  display: none;
  font-size: 14px;
  font-weight: 800;
  margin-top: 16px;
  padding: 14px;
}

footer {
  background: var(--color-primary);
  color: var(--white);
  font-size: 14px;
  padding: 28px 0 34px;
}

.footer-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.65;
  justify-content: center;
  text-align: center;
}

.footer-row a {
  color: var(--color-bg-alt);
  font-family: inherit;
  font-size: inherit;
}

/* Testimonial grid */
.testimonial-section-head {
  text-align: center;
  margin-bottom: 8px;
}

.testimonial-grid {
  display: grid;
  gap: 24px 18px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 36px;
}

.testimonial-card {
  text-align: center;
}

.testimonial-thumb {
  background: var(--color-video);
  border-radius: 8px;
  display: block;
  overflow: hidden;
  position: relative;
}

.testimonial-thumb img {
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  width: 100%;
}

.testimonial-empty {
  align-items: center;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--color-video-gradient-end), var(--color-video));
  color: var(--color-text-disabled);
  display: flex;
  font-size: 13px;
  justify-content: center;
}

.play-badge {
  align-items: center;
  background: var(--color-error);
  border-radius: 10px;
  color: var(--white);
  display: flex;
  font-size: 20px;
  height: 46px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
}

.testimonial-caption {
  font-size: 18px;
  font-weight: 700;
  margin-top: 14px;
}

/* Calendly embed */
.calendly-wrap {
  margin-top: 30px;
  overflow: hidden;
}

.calendly-wrap iframe {
  border: 0;
  display: block;
  height: 720px;
  width: 100%;
}

.funnel-schedule .calendly-wrap iframe,
.funnel-schedule .calendly-placeholder {
  min-height: 700px;
}

@media (max-width: 900px) {
  .proof-grid,
  .testimonial-grid,
  .opt-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  section {
    padding: 42px 0;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 40px;
  }

  .panel {
    padding: 22px;
  }

  .btn,
  button.btn {
    width: 100%;
    text-align: center;
  }

  .calendly-wrap iframe {
    height: 640px;
  }

  .funnel-schedule .calendly-wrap iframe,
  .funnel-schedule .calendly-placeholder {
    min-height: 680px;
  }

  .funnel-schedule .calendly-inline-widget {
    height: 1120px !important;
  }
}

/* Screenshot-matched opt-in and VSL pages */
.funnel-landing,
.funnel-vsl {
  --ff-orange: var(--color-accent);
  --ff-orange-soft: var(--color-accent);
  --ff-black: var(--color-primary);
  --ff-text: var(--color-text);
  --ff-border: var(--color-primary-light);
  background: var(--color-bg);
  color: var(--ff-text);
  font-family: "Arial Narrow", Impact, Haettenschweiler, "Franklin Gothic Condensed", Arial, sans-serif;
}

.funnel-landing p,
.funnel-vsl p {
  color: var(--color-text);
  font-family: Arial, Helvetica, sans-serif;
}

.funnel-landing header,
.funnel-vsl header,
.funnel-page header {
  background: var(--color-primary);
  border: 0;
  position: static;
}

.funnel-landing header {
  padding: 0;
}

.funnel-vsl header {
  padding: 0;
}

.funnel-page header {
  padding: 0;
}

.funnel-landing .nav,
.funnel-vsl .nav,
.funnel-page .nav {
  justify-content: center;
}

.funnel-landing .logo {
  height: 114px;
  overflow: hidden;
  width: 168px;
}

.funnel-vsl .logo {
  height: 92px;
  overflow: hidden;
  width: 168px;
}

.funnel-page .logo {
  height: 114px;
  overflow: hidden;
  width: 168px;
}

.funnel-landing .logo img,
.funnel-vsl .logo img,
.funnel-page .logo img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.funnel-landing .container,
.funnel-vsl .container,
.funnel-page .container {
  max-width: 1540px;
  width: calc(100% - 64px);
}

.funnel-shell {
  text-align: center;
}

.funnel-hero {
  padding: 30px 0 0;
}

.funnel-vsl-hero {
  padding: 28px 0 0;
}

.funnel-banner {
  background: var(--color-primary);
  color: var(--color-bg-alt);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(20px, 1.9vw, 34px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  margin: 0 auto 26px;
  padding: 10px 16px 11px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}

.funnel-title {
  color: var(--color-text);
  font-family: Impact, "Arial Narrow", Haettenschweiler, "Franklin Gothic Condensed", Arial, sans-serif;
  font-size: clamp(42px, 4.35vw, 75px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.16;
  margin: 0 auto;
  max-width: 1420px;
  overflow-wrap: anywhere;
  text-align: center;
}

.funnel-vsl .funnel-title {
  font-size: clamp(40px, 4.25vw, 72px);
  line-height: 1.05;
  max-width: 1580px;
}

.funnel-title .highlight {
  color: var(--color-accent);
  display: inline;
}

.funnel-vsl .funnel-title .highlight {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.funnel-subcopy {
  color: var(--color-text);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  margin: 18px auto 0;
  max-width: 1180px;
}

.funnel-grid {
  align-items: center;
  display: grid;
  gap: clamp(42px, 9vw, 168px);
  grid-template-columns: minmax(420px, 748px) minmax(360px, 495px);
  justify-content: center;
  margin: 76px auto 0;
  text-align: left;
}

.funnel-grid--optin-only {
  align-items: start;
  grid-template-columns: minmax(320px, 620px) minmax(320px, 430px);
  margin-top: 58px;
}

.media-panel {
  text-align: center;
}

.media-frame {
  background: var(--color-video-deep);
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.media-frame--gif {
  aspect-ratio: 16 / 9;
}

.media-frame img,
.media-frame video,
.media-frame iframe {
  border: 0;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.media-placeholder,
.video-placeholder {
  align-items: center;
  background:
    linear-gradient(0deg, var(--color-overlay), var(--color-overlay)),
    linear-gradient(135deg, var(--color-placeholder-start) 0%, var(--color-placeholder-mid) 48%, var(--color-placeholder-end) 100%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  font-family: Arial, Helvetica, sans-serif;
  gap: 10px;
  height: 100%;
  justify-content: center;
  padding: 32px;
  text-align: center;
}

.media-placeholder strong,
.video-placeholder strong {
  color: var(--white);
  font-size: 24px;
  line-height: 1.1;
}

.media-placeholder p,
.video-placeholder p {
  color: var(--white);
  font-size: 15px;
  line-height: 1.4;
  max-width: 420px;
}

.media-placeholder *,
.video-placeholder * {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.media-kicker {
  background: color-mix(in srgb, var(--color-accent) 86%, transparent);
  color: var(--white);
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  text-transform: uppercase;
}

.media-caption {
  color: var(--color-text);
  font-size: 17px;
  margin: 34px auto 0;
}

.signup-card {
  text-align: center;
}

.signup-intro {
  background: var(--ff-orange-soft);
  color: var(--white);
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 44px;
  padding: 1px 3px;
}

.signup-card .form-grid {
  gap: 22px;
}

.field--hero {
  display: block;
}

.field--hero input {
  border: 2px solid var(--ff-border);
  border-radius: 0;
  color: var(--color-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 32px;
  height: 73px;
  line-height: 1;
  padding: 10px 22px;
  text-align: center;
}

.field--hero input::placeholder {
  color: var(--color-text);
  opacity: 1;
}

.phone-field--hero {
  border: 2px solid var(--ff-border);
  display: grid;
  grid-template-columns: 76px 1fr;
  height: 73px;
}

.phone-field--hero .country-flag {
  border: 0;
  border-radius: 0;
  font-family: Arial, Helvetica, sans-serif;
  height: 69px;
}

.phone-field--hero input {
  border: 0;
  height: 69px;
}

.field--consent {
  text-align: left;
}

.consent-check {
  align-items: flex-start;
  color: var(--color-text-strong);
  cursor: pointer;
  display: flex;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  gap: 12px;
  line-height: 1.45;
}

.consent-check input {
  flex: 0 0 auto;
  height: 20px;
  margin-top: 4px;
  width: 20px;
}

.field--consent .field-error {
  margin-left: 32px;
}

.btn--hero,
button.btn--hero {
  background: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: 0;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  margin-top: 0;
  padding: 20px 22px;
  text-align: center;
}

.btn--hero:hover,
button.btn--hero:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  opacity: 1;
  transform: none;
}

.microcopy--hero {
  color: var(--color-text-muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin-top: 18px;
}

.funnel-disclaimer {
  color: var(--color-bg-alt);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.65;
  margin: 18px auto 0;
  max-width: 1460px;
  text-align: center;
}

.funnel-landing footer,
.funnel-vsl footer {
  background: var(--color-primary);
  color: var(--white);
}

.section-rule {
  border-top: 2px solid var(--color-primary);
  margin: 32px auto 28px;
  width: 100%;
}

.step-label {
  color: var(--color-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 auto 42px;
  text-align: center;
}

.step-label span {
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.video-stage {
  margin: 0 auto;
  max-width: 1084px;
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: var(--color-video-stage);
  overflow: hidden;
  position: relative;
}

.video-frame iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.video-frame wistia-player {
  display: block;
  height: 100%;
  width: 100%;
}

.video-frame .visual-placeholder {
  aspect-ratio: auto;
  background:
    linear-gradient(0deg, var(--color-overlay), var(--color-overlay)),
    linear-gradient(135deg, var(--color-placeholder-alt-start) 0%, var(--color-placeholder-mid) 46%, var(--color-placeholder-alt-end) 100%);
  height: 100%;
}

.video-play {
  align-items: center;
  background: color-mix(in srgb, var(--color-accent) 76%, transparent);
  color: var(--white);
  display: flex;
  font-size: 56px;
  height: 114px;
  justify-content: center;
  margin-top: 18px;
  padding-left: 8px;
  width: 180px;
}

.step-label--cta {
  margin: 64px auto 12px;
}

.funnel-vsl .btn.banner {
  max-width: 532px;
  width: 532px;
}

.proof-section {
  padding: 50px 0 0;
}

.section-rule--section {
  margin-bottom: 44px;
}

.section-head--center {
  margin-bottom: 26px;
  text-align: center;
}

.section-head--center h2 {
  color: var(--color-text);
  font-family: Impact, "Arial Narrow", Haettenschweiler, "Franklin Gothic Condensed", Arial, sans-serif;
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 auto 12px;
  max-width: 1320px;
}

.section-head--center p {
  color: var(--color-text-muted);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 600;
  line-height: 1.35;
  margin: 0 auto;
  max-width: 900px;
}

.proof-grid--results,
.proof-grid--reviews {
  display: grid;
  align-items: stretch;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 34px auto 0;
  max-width: 1080px;
}

.proof-card--image,
.review-card {
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
  border: 1px solid var(--color-border-soft);
  border-radius: 12px;
  box-shadow: var(--shadow-card-lg);
  overflow: hidden;
  padding: 0;
  text-align: left;
}

.proof-card--image img,
.review-media {
  aspect-ratio: 1 / 1;
  background: var(--color-surface-muted);
  display: block;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.proof-copy {
  flex: 1;
  min-height: 92px;
  padding: 14px 16px 16px;
  text-align: center;
}

.proof-grid--results .proof-copy {
  min-height: 0;
  padding: 12px 16px 14px;
}

.proof-copy strong {
  color: var(--color-text);
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.1;
}

.proof-copy span {
  color: var(--color-text-muted);
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.35;
  margin-top: 6px;
}

.review-media--placeholder {
  align-items: center;
  aspect-ratio: 9 / 16;
  background: var(--color-surface-muted);
  color: var(--color-text-subtle);
  display: flex;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 800;
  justify-content: center;
}

.proof-section--cta {
  padding-bottom: 58px;
}

@media (max-width: 1200px) {
  .funnel-landing .container,
  .funnel-vsl .container,
  .funnel-page .container {
    width: calc(100% - 36px);
  }

  .funnel-grid {
    gap: 56px;
    grid-template-columns: 1.1fr 0.9fr;
  }

  .field--hero input {
    font-size: 26px;
  }
}

@media (max-width: 900px) {
  .funnel-page .hero {
    padding: 46px 0 34px;
  }

  .funnel-page h1 {
    font-size: clamp(34px, 7.6vw, 52px);
  }

  .funnel-page .panel {
    padding: 24px;
  }

  .calendly-wrap {
    margin-top: 10px;
  }

  .funnel-landing header {
    padding: 0;
  }

  .funnel-landing .logo {
    height: 92px;
    width: 128px;
  }

  .funnel-page header {
    padding: 0;
  }

  .funnel-page .logo {
    height: 92px;
    width: 128px;
  }

  .funnel-grid,
  .proof-grid--results,
  .proof-grid--reviews {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .funnel-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 42px;
    max-width: 720px;
  }

  .funnel-title,
  .funnel-vsl .funnel-title {
    font-size: clamp(39px, 10vw, 62px);
  }

  .step-label {
    font-size: 26px;
  }

  .funnel-disclaimer {
    margin-top: 56px;
  }

  .funnel-vsl .btn.banner {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .funnel-landing .container,
  .funnel-vsl .container,
  .funnel-page .container {
    width: calc(100% - 28px);
  }

  .funnel-banner {
    font-size: 16px;
    line-height: 1.15;
    padding: 10px 12px;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .funnel-hero {
    padding-top: 16px;
  }

  .funnel-grid {
    gap: 28px;
    margin-top: 30px;
  }

  .signup-intro {
    display: block;
    font-size: 18px;
    line-height: 1.2;
    margin-left: auto;
    margin-bottom: 28px;
    margin-right: auto;
    max-width: 360px;
    overflow-wrap: anywhere;
    padding: 2px 6px;
    white-space: normal;
    width: auto;
  }

  .signup-card .form-grid {
    gap: 14px;
  }

  .media-placeholder,
  .video-placeholder {
    padding: 22px;
  }

  .media-placeholder strong,
  .video-placeholder strong {
    font-size: 18px;
  }

  .media-placeholder p,
  .video-placeholder p {
    font-size: 13px;
    max-width: 330px;
  }

  .media-caption {
    font-size: 16px;
    margin-top: 18px;
  }

  .funnel-page .hero {
    padding: 34px 0 24px;
  }

  .funnel-page h1 {
    font-size: 34px;
    letter-spacing: -0.035em;
  }

  .funnel-page .panel {
    margin-top: 22px;
    padding: 18px;
  }

  .funnel-page section + section {
    padding-top: 8px;
  }

  .proof-section {
    padding-top: 38px;
  }

  .proof-grid--results,
  .proof-grid--reviews {
    gap: 16px;
    grid-template-columns: 1fr;
    margin-top: 24px;
    max-width: 390px;
  }

  .proof-copy {
    padding: 12px 14px 14px;
  }

  .proof-copy strong {
    font-size: 18px;
  }

  .proof-copy span {
    font-size: 13px;
  }

  .funnel-title,
  .funnel-vsl .funnel-title {
    font-size: 27px;
    letter-spacing: 0;
    line-height: 1.12;
    max-width: 100%;
    word-break: break-word;
  }

  .funnel-landing .funnel-title {
    font-size: 35px;
    line-height: 1.06;
    max-width: 360px;
  }

  .funnel-landing .funnel-title .highlight {
    display: block;
  }

  .funnel-landing .funnel-banner {
    font-size: 16px;
  }

  .funnel-subcopy {
    font-size: 17px;
    line-height: 1.34;
    max-width: 360px;
    overflow-wrap: anywhere;
  }

  .field--hero input,
  .phone-field--hero {
    height: 62px;
  }

  .field--hero input {
    font-size: 24px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .phone-field--hero .country-flag,
  .phone-field--hero input {
    height: 58px;
  }

  .btn--hero,
  button.btn--hero {
    font-size: 22px;
  }

  .section-head--center h2 {
    font-size: 30px;
  }

  .section-head--center p {
    font-size: 16px;
  }
}

/* Reference-style VSL page */
.funnel-vsl {
  background: var(--color-bg);
}

.funnel-vsl header,
.funnel-vsl main,
.funnel-vsl footer {
  margin: 0 auto;
  max-width: none;
  width: 100%;
}

.funnel-vsl header {
  background: var(--color-primary);
}

.funnel-vsl main {
  background: var(--color-bg);
}

.funnel-vsl footer {
  background: var(--color-primary);
  color: var(--white);
}

.funnel-vsl .container {
  max-width: 1180px;
  width: calc(100% - 72px);
}

.funnel-vsl .logo {
  height: 108px;
  width: 168px;
}

.funnel-vsl .funnel-vsl-hero {
  padding: 38px 0 0;
}

.funnel-vsl .funnel-banner {
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.08;
  margin-bottom: 22px;
  padding: 3px 12px 5px;
}

.funnel-vsl .funnel-title {
  font-size: clamp(40px, 4.2vw, 66px);
  letter-spacing: 0;
  line-height: 1.11;
  max-width: 1160px;
}

.funnel-vsl .funnel-title .highlight {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.funnel-vsl .section-rule {
  border-top: 2px solid var(--color-primary);
  margin: 50px auto 42px;
}

.funnel-vsl .step-label {
  font-size: clamp(34px, 4.2vw, 48px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.04;
  margin-bottom: 34px;
}

.funnel-vsl .step-label span {
  font-weight: 900;
  text-decoration-thickness: 3px;
}

.funnel-vsl .video-stage {
  max-width: 860px;
}

.funnel-vsl .video-frame {
  border: 0;
}

.funnel-vsl .video-play {
  background: var(--color-accent);
  font-size: 50px;
  height: 86px;
  margin-top: 12px;
  width: 118px;
}

.funnel-vsl .step-label--cta {
  margin: 34px auto 18px;
  max-width: 860px;
}

.funnel-vsl .btn.banner,
.funnel-vsl .btn--hero.banner {
  background: var(--color-accent);
  border: 2px solid var(--color-accent);
  border-radius: 0;
  box-shadow: none;
  color: var(--white);
  font-size: clamp(31px, 5.6vw, 38px);
  font-weight: 900;
  line-height: 1.28;
  max-width: 640px;
  padding: 22px 18px 24px;
  width: 100%;
}

.funnel-vsl .proof-section {
  padding: 72px 0 0;
}

.funnel-vsl .proof-section--reviews {
  padding-top: 54px;
}

.funnel-vsl .proof-section--cta {
  padding: 58px 0 62px;
}

.funnel-vsl .section-rule--section {
  margin: 0 auto 58px;
}

.funnel-vsl .section-head--center {
  margin-bottom: 42px;
}

.funnel-vsl .section-head--center h2 {
  font-size: clamp(32px, 3.5vw, 52px);
  letter-spacing: 0;
  line-height: 1.05;
  max-width: 980px;
}

.funnel-vsl .section-head--center p {
  font-size: clamp(21px, 3.8vw, 25px);
  line-height: 1.25;
  max-width: 560px;
}

.funnel-vsl .proof-grid--results {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
  max-width: 1180px;
}

.funnel-vsl .proof-grid--reviews {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
  max-width: 1180px;
}

.funnel-vsl .proof-card--image,
.funnel-vsl .review-card {
  border: 0;
  background: transparent;
  text-align: center;
}

.funnel-vsl .proof-card--image img,
.funnel-vsl .review-media {
  border: 1px solid var(--color-text-strong);
  box-shadow: var(--shadow-card);
  display: block;
  height: auto;
  width: 100%;
}

.funnel-vsl .proof-copy {
  padding: 18px 0 0;
}

.funnel-vsl .proof-grid--results .proof-copy {
  display: none;
}

.funnel-vsl .proof-copy strong {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.05;
  text-align: center;
}

.funnel-vsl .proof-copy span {
  display: none;
}

.funnel-vsl .disclaimer {
  max-width: 620px;
}

.funnel-thankyou {
  background: var(--color-bg);
  color: var(--color-text);
}

.funnel-thankyou header {
  background: var(--color-primary);
  border: 0;
  padding: 0;
}

.funnel-thankyou .nav {
  justify-content: center;
}

.funnel-thankyou .logo {
  height: 108px;
  overflow: hidden;
  width: 168px;
}

.funnel-thankyou .logo img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.thankyou-hero {
  padding: 42px 0 28px;
}

.thankyou-shell {
  margin: 0 auto;
  max-width: 980px;
  text-align: center;
  width: calc(100% - 48px);
}

.thankyou-title {
  color: var(--color-text);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0 auto 18px;
  max-width: 900px;
}

.thankyou-subtitle {
  color: var(--color-text-muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.35;
  margin: 0 auto 26px;
  max-width: 820px;
}

.thankyou-checklist {
  display: grid;
  gap: 16px;
  margin: 0 auto 28px;
  max-width: 940px;
  text-align: left;
}

.thankyou-step {
  align-items: start;
  background: var(--color-bg);
  border: 1px solid var(--line);
  border-left: 6px solid var(--color-primary);
  display: grid;
  gap: 16px;
  grid-template-columns: 72px 1fr;
  padding: 18px 20px;
}

.thankyou-step-number {
  align-items: center;
  background: var(--color-primary);
  color: var(--white);
  display: inline-flex;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 900;
  height: 56px;
  justify-content: center;
  letter-spacing: 0.08em;
  width: 56px;
}

.thankyou-step h3 {
  color: var(--color-text);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: clamp(20px, 2.3vw, 28px);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 8px;
}

.thankyou-step p {
  color: var(--color-text-muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(16px, 1.9vw, 20px);
  line-height: 1.45;
  margin: 0;
}

.thankyou-disclaimer {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border-blush);
  color: var(--color-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.5;
  margin: 0 auto 28px;
  max-width: 900px;
  padding: 18px 20px;
  text-align: left;
}

.thankyou-media-card {
  background: var(--color-bg);
  border: 1px solid var(--line);
  color: var(--color-text);
  display: block;
  overflow: hidden;
}

.thankyou-visual-section {
  margin: 0 auto 32px;
  max-width: 1320px;
  text-align: center;
}

.thankyou-visual-kicker,
.thankyou-visual-alert {
  color: var(--color-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.35;
  margin: 0 auto 18px;
  max-width: 1200px;
}

.thankyou-visual-kicker strong,
.thankyou-visual-kicker b,
.thankyou-visual-alert strong,
.thankyou-visual-alert b {
  font-weight: 900;
}

.thankyou-media-card--calendar,
.thankyou-media-card--instagram {
  background: transparent;
  border: 0;
  overflow: visible;
  margin: 0 auto;
  max-width: 1280px;
  padding: 0;
}

.thankyou-media-card img {
  display: block;
  height: auto;
  width: 100%;
}

.thankyou-media-card--link {
  text-decoration: none;
}

.thankyou-rule {
  border-top: 1px solid var(--color-primary);
  margin: 34px auto;
  width: 100%;
}

.thankyou-rule--section {
  margin: 28px auto 40px;
  max-width: 1200px;
}

.thankyou-social-section {
  margin: 0 auto;
  max-width: 1320px;
  text-align: center;
}

.thankyou-social-title {
  color: var(--color-text);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: clamp(30px, 3.4vw, 54px);
  font-weight: 900;
  line-height: 1.08;
  margin: 0 auto 22px;
  max-width: 1120px;
}

.thankyou-video {
  margin: 0 auto 32px;
  max-width: 760px;
}

.thankyou-video .video-frame {
  aspect-ratio: 16 / 9;
}

.thankyou-note {
  color: var(--color-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
  margin: 0 auto;
  max-width: 900px;
}

.thankyou-note b,
.thankyou-note strong {
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.thankyou-proof-image {
  background: var(--color-bg);
  border: 1px solid var(--line);
  margin: 22px auto 18px;
  max-width: 780px;
  overflow: hidden;
}

.thankyou-proof-image img {
  display: block;
  height: auto;
  width: 100%;
}

.thankyou-proof-placeholder {
  align-items: center;
  aspect-ratio: 16 / 7;
  color: var(--color-text-muted);
  display: flex;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 800;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.thankyou-content-link {
  display: block;
  margin: 0 auto;
  max-width: 780px;
}

.thankyou-content-link img {
  border: 1px solid var(--line);
  display: block;
  height: auto;
  width: 100%;
}

.thankyou-content-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border-blush);
  color: var(--color-text);
  display: grid;
  min-height: 220px;
  padding: 28px;
  place-items: center;
}

.thankyou-content-card span {
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.1;
}

@media (max-width: 560px) {
  .funnel-vsl header,
  .funnel-vsl main,
  .funnel-vsl footer {
    max-width: none;
  }

  .funnel-vsl .container {
    width: calc(100% - 24px);
  }

  .funnel-vsl .logo {
    height: 68px;
    width: 112px;
  }

  .funnel-vsl .funnel-vsl-hero {
    padding-top: 14px;
  }

  .funnel-vsl .funnel-banner {
    font-size: 16px;
    margin-bottom: 12px;
    padding: 4px 8px;
  }

  .funnel-vsl .funnel-title {
    font-size: 25px;
    line-height: 1.05;
  }

  .funnel-vsl .section-rule {
    margin: 18px auto 14px;
  }

  .funnel-vsl .step-label {
    font-size: 26px;
    margin-bottom: 14px;
  }

  .funnel-vsl .btn.banner,
  .funnel-vsl .btn--hero.banner {
    font-size: 22px;
    padding: 14px 12px 16px;
  }

  .funnel-vsl .video-stage {
    max-width: 100%;
  }

  .funnel-vsl .video-frame {
    aspect-ratio: 16 / 8.6;
  }

  .funnel-vsl .video-play {
    font-size: 34px;
    height: 58px;
    margin-top: 8px;
    width: 82px;
  }

  .funnel-vsl .step-label--cta {
    margin: 18px auto 10px;
  }

  .funnel-vsl .proof-grid--results,
  .funnel-vsl .proof-grid--reviews {
    gap: 26px;
    grid-template-columns: 1fr;
    max-width: 390px;
  }

  .funnel-vsl .proof-copy strong {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.025em;
  }

  .funnel-vsl .proof-section {
    padding-top: 42px;
  }

  .funnel-vsl .proof-section--reviews {
    padding-top: 34px;
  }

  .funnel-vsl .section-rule--section {
    margin-bottom: 32px;
  }

  .funnel-vsl .section-head--center {
    margin-bottom: 24px;
  }

  .funnel-vsl .section-head--center h2 {
    font-size: 25px;
    max-width: 360px;
  }

  .funnel-vsl .section-head--center p {
    font-size: 17px;
    max-width: 330px;
  }

  .funnel-vsl .proof-card--image,
  .funnel-vsl .review-card {
    background:
      linear-gradient(180deg, var(--color-white) 0%, var(--color-surface-muted) 100%);
    border: 1px solid var(--color-border-soft);
    border-radius: 16px;
    box-shadow: var(--shadow-card-lg);
    overflow: hidden;
    padding: 8px;
  }

  .funnel-vsl .proof-card--image img,
  .funnel-vsl .review-media {
    background: var(--color-surface-muted-light);
    border: 0;
    border-radius: 10px;
    box-shadow: none;
    height: auto;
    object-fit: contain;
    width: 100%;
  }

  .funnel-vsl .proof-copy {
    padding-top: 12px;
  }

  .funnel-vsl .proof-grid--results {
    max-width: 360px;
  }

  .funnel-vsl .proof-grid--reviews {
    max-width: 390px;
  }

  .funnel-thankyou .logo {
    height: 68px;
    width: 112px;
  }

  .thankyou-shell {
    width: calc(100% - 24px);
  }

  .thankyou-hero {
    padding: 24px 0;
  }

  .thankyou-title {
    font-size: 29px;
    line-height: 1.08;
    margin-bottom: 12px;
  }

  .thankyou-subtitle,
  .thankyou-note {
    font-size: 16px;
  }

  .thankyou-checklist {
    gap: 12px;
    margin-bottom: 22px;
  }

  .thankyou-step {
    gap: 12px;
    grid-template-columns: 54px 1fr;
    padding: 16px;
  }

  .thankyou-step-number {
    font-size: 16px;
    height: 42px;
    width: 42px;
  }

  .thankyou-disclaimer {
    margin-bottom: 22px;
    padding: 16px;
  }

  .thankyou-visual-section {
    margin-bottom: 22px;
  }

  .thankyou-visual-kicker,
  .thankyou-visual-alert {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .thankyou-rule {
    margin: 22px auto;
  }

  .thankyou-rule--section {
    margin: 22px auto 28px;
  }

  .thankyou-social-title {
    font-size: 24px;
    margin-bottom: 16px;
  }
}

/* Case studies page */
.funnel-casestudies .cs-hero {
  padding: clamp(40px, 7vw, 86px) 0 10px;
}

.funnel-casestudies .eyebrow.banner {
  display: none;
}

.cs-compare {
  padding-top: 18px;
}

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

.cs-compare-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  text-align: left;
}

.cs-compare-tag {
  background: var(--color-primary);
  border-radius: 999px;
  color: var(--white);
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  text-transform: uppercase;
}

.cs-compare-card h3 {
  font-size: 30px;
  margin-top: 16px;
}

.cs-compare-loc {
  color: var(--accent);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.cs-compare-stats {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 0 18px;
}

.cs-compare-stats strong {
  display: block;
  font-family: var(--heading-font, inherit);
  font-size: 30px;
  letter-spacing: -0.03em;
  line-height: 1;
}

.cs-compare-stats span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  margin-top: 6px;
}

.cs-compare-desc {
  font-size: 16px;
  margin-bottom: 14px;
}

.cs-jump-link {
  color: var(--accent);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: auto;
}

.cs-case {
  border-top: 1px solid var(--line);
  padding: 60px 0;
  scroll-margin-top: 24px;
}

.cs-case--alt {
  background: color-mix(in srgb, var(--color-bg-alt) 4%, transparent);
}

.cs-case-head {
  margin: 0 auto 30px;
  max-width: 780px;
  text-align: center;
}

.cs-case-head h2 {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: center;
}

.cs-case-loc {
  color: var(--accent);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.cs-stat-row {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto 30px;
  max-width: 900px;
}

.cs-stat {
  background: var(--panel);
  border: 1px solid var(--color-border-soft);
  border-radius: 8px;
  padding: 18px 12px;
  text-align: center;
}

.cs-stat strong {
  display: block;
  font-family: var(--heading-font, inherit);
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.cs-stat span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  margin-top: 6px;
}

.cs-details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  margin: 0 auto 34px;
  max-width: 940px;
  padding: 22px 26px;
}

.cs-details summary {
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 850;
  list-style: none;
  padding: 4px 0;
  position: relative;
}

.cs-details summary::-webkit-details-marker {
  display: none;
}

.cs-details summary::after {
  content: "+";
  float: right;
  font-size: 22px;
  font-weight: 700;
}

.cs-details[open] summary::after {
  content: "\2212";
}

.cs-details-body {
  padding-top: 18px;
}

.cs-details-body h3 {
  font-size: 19px;
  margin-top: 22px;
}

.cs-details-body h3:first-child {
  margin-top: 4px;
}

.cs-details-body p,
.cs-details-body li {
  font-size: 16px;
}

.cs-details-body .check-list {
  margin-top: 14px;
}

.cs-proof-card {
  background: var(--panel);
  border: 1px solid var(--color-border-soft);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  margin: 0 auto 26px;
  max-width: 940px;
  overflow: hidden;
  width: 100%;
}

.cs-proof-card img {
  background: var(--color-surface-muted);
  display: block;
  height: auto;
  width: 100%;
}

.cs-proof-scroll {
  position: relative;
}

.cs-proof-card figcaption {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  padding: 14px 18px 16px;
  text-align: left;
}

.cs-proof-card figcaption strong {
  color: var(--color-text);
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  margin-bottom: 3px;
}

.cs-final-cta {
  padding-top: 20px;
}

.proof-section--home-results {
  background: var(--color-bg);
  padding: 54px 0 58px;
}

.proof-section--home-results .section-rule {
  display: none;
}

/* ---- Client logos ---- */
.client-logos {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border-soft);
  border-top: 1px solid var(--color-border-soft);
  padding: 42px 5% 48px;
}

.client-logos__heading {
  color: var(--color-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 auto 42px;
  text-align: center;
}

.client-logos__eyebrow {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  margin: 0 0 18px;
  text-align: center;
  text-transform: uppercase;
}

.client-logos__grid {
  align-items: center;
  display: grid;
  gap: 28px 34px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1440px;
}

.client-logo {
  display: block;
  height: 118px;
  justify-self: stretch;
  object-fit: contain;
  padding: 24px;
  width: 100%;
}

.client-logo--square {
  width: 100%;
}

.client-logo--wide {
  width: 100%;
}

@media (max-width: 560px) {
  .client-logos {
    padding: 30px 18px 34px;
  }

  .client-logos__heading {
    font-size: 28px;
    margin-bottom: 26px;
  }

  .client-logos__eyebrow {
    font-size: 10px;
    margin-bottom: 16px;
  }

  .client-logos__grid {
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-logo {
    height: 92px;
    padding: 14px;
  }

}

.proof-section--home-reviews {
  background: var(--color-bg-alt);
  margin-top: 0;
  padding: 58px 0 62px;
}

@media (max-width: 560px) {
  .proof-section--home-results {
    padding: 40px 0 44px;
  }

  .proof-section--home-reviews {
    padding: 42px 0 48px;
  }
}

.case-studies-embed {
  margin-top: 20px;
}

.case-studies-embed .proof-card--image {
  background: var(--color-bg);
  border: 1px solid var(--color-primary);
  text-align: left;
}

.case-studies-embed .proof-card--image img {
  box-shadow: none;
}

.case-studies-embed .proof-grid--results .proof-copy {
  display: block;
}

.case-studies-embed .cs-hero {
  padding-top: 28px;
}

@media (max-width: 900px) {
  .cs-compare-grid {
    grid-template-columns: 1fr;
  }

  .cs-stat-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .cs-compare-card {
    padding: 22px;
  }

  .cs-stat-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .cs-details {
    padding: 18px;
  }

  .cs-case {
    padding: 42px 0;
  }

  .cs-proof-scroll {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    scrollbar-color: var(--color-primary) var(--color-surface-muted);
    scrollbar-width: thin;
  }

  .cs-proof-scroll::after {
    background: var(--color-primary);
    border-radius: 999px;
    bottom: 12px;
    color: var(--white);
    content: "Swipe to inspect \2192";
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 800;
    left: 12px;
    letter-spacing: 0.03em;
    padding: 6px 9px;
    pointer-events: none;
    position: absolute;
  }

  .cs-proof-scroll img {
    max-width: none;
    min-width: 720px;
    width: 720px;
  }
}

/* Opt-in modal */
.optin-modal {
  align-items: center;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  padding: 20px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}

.optin-modal[hidden] {
  display: none;
}

.optin-modal-backdrop {
  background: var(--color-overlay-modal);
  inset: 0;
  position: absolute;
}

.optin-modal-panel {
  background: var(--color-bg);
  max-height: 92vh;
  max-width: 480px;
  overflow-y: auto;
  padding: 40px 32px 32px;
  position: relative;
  text-align: center;
  width: 100%;
}

.optin-modal-close {
  background: transparent;
  border: 0;
  color: var(--color-text-strong);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  padding: 4px 8px;
  position: absolute;
  right: 12px;
  top: 10px;
}

.optin-modal .signup-intro {
  margin-bottom: 26px;
}

body.optin-modal-open {
  overflow: hidden;
}

@media (max-width: 560px) {
  .optin-modal-panel {
    padding: 34px 20px 24px;
  }

  .optin-modal .signup-intro {
    font-size: 17px;
    margin-bottom: 20px;
  }
}

/* Fixed CTA-only hero layout (replaces two-column form grid behavior) */
.funnel-grid--cta-only {
  align-items: center;
  display: grid;
  gap: clamp(32px, 5vw, 56px);
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  margin: 48px auto 0;
  max-width: 900px;
  text-align: center;
}

.funnel-grid--cta-only .media-panel {
  width: 100%;
}

.funnel-grid--cta-only .signup-card {
  margin: 0 auto;
  max-width: 460px;
  width: 100%;
}

.funnel-grid--cta-only .signup-intro {
  display: inline-block;
}

.funnel-grid--cta-only .btn--hero.full {
  width: 100%;
}

@media (max-width: 560px) {
  .funnel-grid--cta-only {
    gap: 26px;
    margin-top: 30px;
  }

  .funnel-grid--cta-only .signup-card {
    max-width: 100%;
  }
}

/* Eligibility / qualification section */
.eligibility-section {
  background: var(--color-bg);
  padding: 56px 0 20px;
}

.eligibility-eyebrow {
  background: var(--color-primary);
  border-radius: 999px;
  color: var(--color-bg-alt);
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin: 0 auto 18px;
  padding: 7px 16px;
  text-align: center;
  text-transform: uppercase;
  width: fit-content;
}

.eligibility-head {
  margin: 0 auto 36px;
  max-width: 760px;
  text-align: center;
}

.eligibility-head h2 {
  color: var(--color-text);
  font-family: var(--heading-font, inherit);
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 auto 12px;
}

.eligibility-head p {
  color: var(--color-text-muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.45;
  margin: 0 auto;
  max-width: 620px;
}

.eligibility-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto;
  max-width: 1080px;
}

.eligibility-card {
  background: var(--color-bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  border-top: 3px solid var(--color-success);
  padding: 26px 24px;
  text-align: left;
}

.eligibility-card--no {
  border-top-color: var(--color-error);
}

.eligibility-card-title {
  align-items: center;
  display: flex;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 19px;
  font-weight: 800;
  gap: 12px;
  margin-bottom: 20px;
}

.eligibility-card-title .icon {
  align-items: center;
  border-radius: 50%;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 18px;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.eligibility-card .icon {
  background: var(--color-surface-success-soft);
  color: var(--color-success);
}

.eligibility-card--no .icon {
  background: var(--color-surface-error-soft);
  color: var(--color-error);
}

.eligibility-list {
  display: grid;
  gap: 16px;
  list-style: none;
}

.eligibility-list li {
  display: flex;
  gap: 10px;
}

.eligibility-list .mark {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.5;
}

.eligibility-card .mark {
  color: var(--color-success);
}

.eligibility-card--no .mark {
  color: var(--color-error);
}

.eligibility-list strong {
  color: var(--color-text);
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 3px;
}

.eligibility-list span {
  color: var(--color-text-muted);
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

.eligibility-cta {
  margin: 40px auto 0;
  max-width: 460px;
  text-align: center;
}

.eligibility-cta .btn--hero.full {
  width: 100%;
}

@media (max-width: 900px) {
  .eligibility-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .eligibility-section {
    padding: 38px 0 12px;
  }

  .eligibility-head {
    margin-bottom: 26px;
  }

  .eligibility-card {
    padding: 20px 18px;
  }

  .eligibility-cta {
    margin-top: 28px;
  }
}

/* ---- Section background rhythm ---- */
.proof-section--home-reviews {
  background: var(--color-bg-alt);
  margin-top: 10px;
  padding-bottom: 46px;
}

.proof-section--home-results {
  padding-bottom: 10px;
}

/* ---- Mid-page CTA (after client feedback, before eligibility) ---- */
.mid-page-cta {
  margin: 46px auto 0;
  max-width: 460px;
  text-align: center;
}

.mid-page-cta .btn--hero.full {
  width: 100%;
}

@media (max-width: 560px) {
  .mid-page-cta {
    margin-top: 32px;
  }
}

/* ---- Founder credibility caption ---- */
.media-caption {
  font-size: 16px;
  line-height: 1.4;
}

.media-caption strong {
  color: var(--color-text);
}

/* ---- Proof card caption tightening (result grid) ---- */
.proof-copy span {
  line-height: 1.35;
}

/* ---- Consent checkbox in opt-in modal ---- */
.field--consent {
  text-align: left;
}

.consent-check {
  align-items: flex-start;
  cursor: pointer;
  display: flex;
  gap: 10px;
}

.consent-check input[type="checkbox"] {
  accent-color: var(--color-accent);
  cursor: pointer;
  flex-shrink: 0;
  height: 20px;
  margin-top: 2px;
  width: 20px;
}

.consent-check span {
  color: var(--color-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  text-align: left;
}
