:root {
  /* Match .container so full-bleed sections align content with the page column */
  --page-max-width: 960px;
  --page-gutter: 1rem;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  background: #f9fafb;
}

a {
  color: #0f172a;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  box-sizing: border-box;
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 1.5rem var(--page-gutter) 3rem;
}

.container:has(> .hero.hero--invert:first-child) {
  padding-top: 0;
}

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

.site-header {
  position: relative;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.site-header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: nowrap;
  position: relative;
}

/* Keeps logo + menu control in one cluster so the hamburger never sits as a lone “middle” flex item. */
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
  flex: 0 1 auto;
}

.logo {
  font-weight: 700;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.site-header__menu-btn {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #0f172a;
  cursor: pointer;
  border-radius: 0.5rem;
}

.site-header__menu-btn:hover {
  background: #f3f4f6;
}

.site-header__menu-btn:focus-visible {
  outline: 2px solid #0f172a;
  outline-offset: 2px;
}

.site-header__menu-icon {
  display: block;
}

.site-header__menu-icon--close {
  display: none;
}

.site-header__menu-btn[aria-expanded="true"] .site-header__menu-icon--open {
  display: none;
}

.site-header__menu-btn[aria-expanded="true"] .site-header__menu-icon--close {
  display: block;
}

.nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.nav a {
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav-cta {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: #0f172a;
  color: #ffffff;
}

.nav-cta:hover {
  text-decoration: none;
  background: #1e293b;
}

@media (max-width: 767px) {
  h1 {
    font-size: clamp(1.65rem, 6.5vw, 2.4rem);
  }

  body.site-nav-open {
    overflow: hidden;
  }

  .site-header .container {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-header__bar {
    width: 100%;
    flex: none;
    justify-content: space-between;
  }

  .site-header__menu-btn {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    width: auto;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0.35rem var(--page-gutter) 1rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 16px 40px -20px rgba(15, 23, 42, 0.35);
  }

  .nav.nav--open {
    display: flex;
  }

  .nav a {
    white-space: normal;
    padding: 0.8rem 0.5rem;
    border-bottom: 1px solid #f3f4f6;
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .nav .nav-cta {
    margin-top: 0.25rem;
    text-align: center;
    padding: 0.65rem 1rem;
  }
}

@media (min-width: 768px) {
  .site-header__bar {
    justify-content: flex-start;
    width: auto;
  }
}

.site-main {
  padding-top: 0;
}

.hero {
  padding: 3rem 0 2rem;
}

/* Full-bleed dark hero: background edge-to-edge; .hero__inner matches .container column exactly */
.hero.hero--invert {
  background: #0a0a0a;
  color: #f5f5f5;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-top: 3.25rem;
  padding-bottom: 3rem;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
  margin-top: 0;
  margin-bottom: 0;
}

.hero__inner {
  box-sizing: border-box;
  max-width: var(--page-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}

.hero.hero--invert a:not(.btn) {
  color: inherit;
}

.hero.hero--invert a:not(.btn):hover {
  color: #ffffff;
}

/* Hero CTAs: high-contrast primary + ghost secondary */
.hero--invert .btn-primary {
  background: #ffffff;
  color: #0a0a0a;
  border-color: #ffffff;
}

.hero--invert .btn-primary:hover {
  background: #f3f4f6;
  border-color: #f3f4f6;
  color: #0a0a0a;
}

.hero--invert .btn-secondary--on-dark {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.hero--invert .btn-secondary--on-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
  color: #ffffff;
}

.hero__title {
  max-width: 18ch;
  font-size: clamp(2rem, 5vw, 2.85rem);
  line-height: 1.06;
  margin: 0 0 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero--invert .hero-subtitle--on-dark {
  color: rgba(245, 245, 245, 0.82);
  max-width: 42rem;
  font-size: 1.08rem;
  line-height: 1.55;
}

.eyebrow--on-dark {
  color: rgba(245, 245, 245, 0.55);
}

.hero-cta-microcopy {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.5);
}

.hero-bullets--tight li {
  margin-bottom: 0.35rem;
  line-height: 1.45;
}

/* Homepage: looser vertical rhythm between major blocks */
.cards-grid--home {
  gap: 2.35rem;
}

/* Product page: same rhythm (use alone or with --home) */
.cards-grid--product {
  gap: 2.35rem;
}

/* Funnel spine (numbered steps) */
.funnel-step {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
}

.funnel-step--in-card {
  margin-bottom: 0.85rem;
}

.funnel-step--in-panel {
  margin-bottom: 0.85rem;
}

.funnel-step--no-num .funnel-step__name {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #6b7280;
}

.funnel-step__n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: #0a0a0a;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}

.funnel-step--in-card .funnel-step__n {
  background: #111827;
}

.funnel-step--in-panel .funnel-step__n {
  background: #0f172a;
}

.funnel-step__name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #374151;
}

/* Plain prose strip + turning-point rule */
.prose-strip {
  padding: 2.5rem 0 2.25rem;
  max-width: 52ch;
  border-bottom: 2px solid #0a0a0a;
}

.prose-strip__closing {
  margin: 1rem 0 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #374151;
  font-weight: 500;
}

.prose-strip__closing a {
  font-weight: 600;
}

/* Product: platform overview flow */
.overview-flow {
  margin: 1.15rem 0 0;
  padding-left: 1.25rem;
  color: #4b5563;
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 52ch;
}

.overview-flow li + li {
  margin-top: 0.5rem;
}

.overview-flow strong {
  color: #111827;
}

/* Product: history milestones */
.product-history__intro {
  max-width: 60ch;
}

.milestone-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.milestone-list li {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #4b5563;
}

.milestone-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.milestone-list__when {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111827;
}

.milestone-list__what {
  display: block;
  max-width: 65ch;
}

.contrast-list {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.contrast-list li {
  position: relative;
  padding-left: 0;
  margin-bottom: 0.85rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: #4b5563;
}

.contrast-list li:last-child {
  margin-bottom: 0;
}

.contrast-list__tag {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111827;
  margin-bottom: 0.2rem;
}

.mechanism-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.35rem;
  padding-top: 1.35rem;
  border-top: 1px solid #e5e7eb;
}

.mechanism-row__step {
  padding: 0;
}

.mechanism-row__n {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  color: #9ca3af;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.mechanism-row__title {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.mechanism-row__copy {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #4b5563;
}

.section-block__subcopy--short {
  max-width: 48ch;
}

/* Product white-paper subsections (compliance / security) */
.product-wp-subhead {
  margin: 1.35rem 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #374151;
}

.product-wp-list {
  margin: 0.5rem 0 0;
  padding-left: 1.15rem;
  color: #4b5563;
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 58ch;
}

.product-wp-list li + li {
  margin-top: 0.4rem;
}

.section-block__subcopy--after-cards {
  margin-top: 1.15rem;
  margin-bottom: 0;
  font-size: 0.95rem;
  color: #4b5563;
  max-width: 58ch;
}

/* Proof: quote-only (no duplicate triad list) */
.proof-band--quote .proof-band__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.proof-band--quote .proof-band__lead {
  max-width: none;
  font-size: 1.35rem;
  line-height: 1.3;
}

.proof-band__note {
  margin: 1rem 0 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 52ch;
}

/* Full-bleed light band */
.band-light {
  grid-column: 1 / -1;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #f3f4f6;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 2.35rem 0;
  box-sizing: border-box;
}

.band-light__inner {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  box-sizing: border-box;
}

.band-light--pilot {
  padding-top: 2.5rem;
  padding-bottom: 2.75rem;
}

.mid-cta--bare {
  border: 0;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

/* Isolation: minimal shell (not same card chrome) */
.section-shell-minimal {
  grid-column: 1 / -1;
  padding: 2rem 0 0.25rem;
  border-top: 1px solid #111827;
  max-width: 100%;
}

.section-shell-minimal__hook {
  margin: 0.35rem 0 0;
  font-size: 1.45rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-shell-minimal__sub {
  margin: 0.6rem 0 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #4b5563;
  max-width: 52ch;
}

.mini-card--flat {
  background: #fafafa;
}

/* Video placeholder (no broken iframe) */
.video-embed__frame--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  aspect-ratio: 16 / 9;
}

.video-placeholder {
  text-align: center;
  padding: 1.5rem;
  max-width: 22rem;
}

.video-placeholder__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #111827;
}

.video-placeholder__text {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #4b5563;
}

.video-placeholder__text a {
  font-weight: 600;
}

/* Pilot panel inside light band */
.pilot-panel {
  margin: 0;
  padding: 0;
}

.pilot-panel__hook {
  margin: 0;
  font-size: 1.65rem;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pilot-panel__sub {
  margin: 0.65rem 0 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #4b5563;
  max-width: 52ch;
}

.pilot-panel__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #d1d5db;
}

.pilot-panel__step-title {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 800;
}

.pilot-panel__step-copy {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #4b5563;
}

.pilot-panel__cta {
  margin-top: 1.65rem;
}

.pilot-panel__cta--row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

@media (max-width: 900px) {
  .mechanism-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.1rem;
  }

  .pilot-panel__steps {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Value stack: contrast strip + step labels (homepage uses .prose-strip) */
.contrast-section:not(.prose-strip) {
  padding: 2.25rem 0 0.25rem;
  max-width: 52ch;
}

.stack-step__label {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
  color: #6b7280;
}

.stack-step__label--in-card {
  margin-bottom: 0.45rem;
}

.stack-step__title {
  margin: 0;
  font-size: 1.65rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.stack-step__copy {
  margin: 0.75rem 0 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: #4b5563;
}

.stack-step__copy strong {
  color: #111827;
  font-weight: 700;
}

/* Proof band (credible substitute for placeholder stats) */
.proof-band {
  grid-column: 1 / -1;
  background: #0f172a;
  color: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.2);
  border-radius: 18px;
  padding: 1.65rem 1.6rem 1.45rem;
}

.proof-band__lead {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 40ch;
}

.proof-band__list {
  margin: 1.1rem 0 0;
  padding-left: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  line-height: 1.65;
}

.proof-band__list li + li {
  margin-top: 0.5rem;
}

.proof-band__term {
  font-weight: 700;
  color: #ffffff;
}

/* Mid-page CTA */
.mid-cta {
  grid-column: 1 / -1;
  text-align: center;
  padding: 1.75rem 1.25rem;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #ffffff;
}

.mid-cta__copy {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #111827;
}

.mid-cta__actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
}

.section-block__cta {
  margin-top: 1.5rem;
}

.video-embed__title {
  margin: 0 0 0.85rem;
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 2.6rem;
  line-height: 1.05;
  margin: 0 0 1rem;
}

.hero-subtitle {
  font-size: 1.05rem;
  max-width: 38rem;
  color: #4b5563;
}

.hero-bullets {
  margin: 1.5rem 0 1.5rem;
  padding-left: 1.1rem;
  color: #374151;
}

.hero-bullets.hero-bullets--on-dark {
  color: #e5e7eb;
  max-width: 48rem;
}

.hero-bullets.hero-bullets--on-dark strong {
  color: #ffffff;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  box-sizing: border-box;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: #0f172a;
  color: #ffffff;
}

.btn-secondary {
  background: #ffffff;
  border-color: #d1d5db;
  color: #111827;
}

.section {
  margin-top: 3rem;
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.section p {
  color: #4b5563;
  max-width: 40rem;
}

.section ul {
  margin-top: 0.75rem;
  padding-left: 1.1rem;
  color: #374151;
}

.section ol {
  margin-top: 0.75rem;
  padding-left: 1.25rem;
  color: #374151;
}

.section ol li {
  margin-bottom: 0.5rem;
}

.booking-embed,
.form-embed {
  width: 100%;
  max-width: 100%;
}

/* Inline form iframe uses height:100%; match embed data-height so layout is stable before JS runs */
.form-embed {
  min-height: 773px;
}

.booking-embed iframe,
.form-embed iframe {
  display: block;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }
}

.page-hero {
  padding: 2.5rem 0 1.5rem;
}

.page-hero h1 {
  font-size: 2.1rem;
}

.page-hero p {
  color: #4b5563;
  max-width: 40rem;
}

.section-cta {
  text-align: left;
}

.section-cta p {
  margin-bottom: 1rem;
}

.contact-form {
  max-width: 32rem;
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  font-family: inherit;
  font-size: 0.95rem;
}

.site-footer {
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
  font-size: 0.85rem;
  color: #6b7280;
}

.site-footer .container {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Card-based offer layout (homepage / product) */
.info-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.25rem 1.25rem 1.1rem;
  margin-top: 0;
}

.info-card[data-tone="a"] {
  border-left: 6px solid #0f172a;
}

.info-card[data-tone="b"] {
  border-left: 6px solid #374151;
}

.info-card[data-tone="c"] {
  border-left: 6px solid #6b7280;
}

.info-card__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
}

.info-card__hook {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.info-card__copy p {
  margin: 0.35rem 0 0;
  color: #4b5563;
}

.info-card__bullets ul {
  margin: 0.65rem 0 0;
  padding-left: 1.1rem;
  color: #374151;
}

/* Cards arranged in a reader-friendly grid (2 columns desktop, 1 column mobile) */
.cards-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.6rem;
  align-items: start;
}

@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Standalone “stats” sections separate from benefit cards */
.stats-strip {
  grid-column: 1 / -1;
  background: #0f172a;
  color: #ffffff;
  border-radius: 18px;
  padding: 1.6rem 1.6rem 1.25rem;
  border: 1px solid rgba(229, 231, 235, 0.25);
}

.stats-strip__title {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  opacity: 0.95;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.95rem;
}

.stats-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(229, 231, 235, 0.18);
  border-radius: 14px;
  padding: 1rem 1rem 0.85rem;
}

.stats-value {
  font-size: 1.55rem;
  margin: 0;
  line-height: 1.1;
}

.stats-label {
  margin: 0.4rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.35;
}

.stats-source {
  margin: 0.55rem 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.video-embed {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.video-embed__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #1118270d;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
}

.video-embed__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-embed__caption {
  color: #4b5563;
  margin: 0.7rem 0 0;
  font-size: 0.95rem;
  max-width: 55rem;
}

/* New offer layout v2: section blocks + mini cards + statement blocks */
.section-block {
  grid-column: auto;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 1.75rem 1.6rem 1.5rem;
}

.section-block[data-tone="a"] {
  border-left: 6px solid #0f172a;
}

.section-block[data-tone="b"] {
  border-left: 6px solid #111827;
}

.section-block[data-tone="c"] {
  border-left: 6px solid #374151;
}

.section-block__hook {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.section-block__subcopy {
  margin: 0.65rem 0 0;
  color: #4b5563;
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 55ch;
}

.mini-cards-grid {
  margin-top: 1.05rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.mini-card {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 0.95rem 1rem 0.9rem;
  background: #ffffff;
}

.mini-card__headline {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 800;
}

.mini-card__copy {
  margin: 0.45rem 0 0;
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.55;
}

.statement-block {
  grid-column: 1 / -1;
  background: #0f172a;
  color: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.25);
  border-radius: 18px;
  padding: 1.5rem 1.6rem 1.35rem;
  margin-top: 0.2rem;
}

.statement-block__headline {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 900;
}

.statement-block__subheadline {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  line-height: 1.5;
}

.statement-block__source {
  margin: 0.6rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.mini-cards-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-cards-grid--quad {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .info-card__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .stats-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .mini-cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .mini-cards-grid--two {
    grid-template-columns: minmax(0, 1fr);
  }

  .mini-cards-grid--quad {
    grid-template-columns: minmax(0, 1fr);
  }
}

