:root {
  --brand: #113B28;
  --pine-0: #0E241A;
  --pine-1: #143024;
  --paper: #FFFFFF;
  --stone: #F7F7F5;
  --hairline: #E9E9E7;
  --ink: #141514;
  --muted: #6B6C68;
  --font-display: "Manrope", "Inter", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(880px, calc(100% - 32px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--hairline);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  gap: 24px;
}

.brand-mark img,
.footer-logo img {
  width: 178px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:not(.button):hover,
.site-footer a:hover {
  color: var(--brand);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--hairline);
  background: var(--paper);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  padding: 0 18px;
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
}

.button span {
  margin-left: 4px;
}

.button-large {
  min-height: 52px;
  padding: 0 24px;
}

.button-solid {
  background: var(--brand);
  color: var(--paper);
}

.button-outline {
  border-color: var(--hairline);
  color: var(--ink);
  background: var(--paper);
}

.button-light {
  background: var(--paper);
  color: var(--brand);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--paper);
}

.section {
  padding: 78px 0;
}

.hero {
  padding: 86px 0 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1120px);
  justify-content: center;
  text-align: center;
}

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

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.475rem, 7.81vw, 5.39rem);
  line-height: 1.05;
}

.headline-accent,
h2 span {
  color: var(--brand);
}

.score-gauge {
  --gauge-low: #B23A2E;
  --gauge-mid: #C4902F;
  --gauge-high: #2E7D52;
  --score-gauge-size: clamp(56px, 9.4vw, 100px);
  --score-gauge-active: var(--gauge-high);
  --score-gauge-ink-opacity: 1;
  --score-gauge-chip-opacity: 1;
  --score-gauge-align-y: -0.1em;
  display: inline-block;
  position: relative;
  width: var(--score-gauge-size);
  height: var(--score-gauge-size);
  margin: 0 0.02em;
  vertical-align: middle;
  transform: translateY(var(--score-gauge-align-y));
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1;
}

.score-gauge-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.score-gauge-shell {
  fill: var(--paper);
  stroke: var(--hairline);
  stroke-width: 0.5;
}

.score-gauge-track,
.score-gauge-progress {
  fill: none;
  stroke-width: 7.5;
  stroke-dasharray: 75 100;
  transform: rotate(135deg);
  transform-origin: 50% 50%;
}

.score-gauge-track {
  stroke: var(--hairline);
}

.score-gauge-progress {
  stroke: var(--score-gauge-active);
  stroke-linecap: round;
  opacity: var(--score-gauge-ink-opacity);
}

.score-gauge-content {
  position: absolute;
  top: 51%;
  left: 50%;
  display: flex;
  width: 62%;
  height: 62%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: max(2px, calc(var(--score-gauge-size) * 0.04));
  transform: translate(-50%, -48%);
  pointer-events: none;
}

.score-gauge-number {
  color: var(--score-gauge-active);
  font-family: var(--font-display);
  font-size: max(16px, calc(var(--score-gauge-size) * 0.3));
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
  line-height: 0.9;
  opacity: var(--score-gauge-ink-opacity);
}

.score-gauge-chip {
  min-width: 100%;
  color: var(--score-gauge-active);
  font-family: var(--font-body);
  font-size: max(10px, calc(var(--score-gauge-size) * 0.13));
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  opacity: var(--score-gauge-chip-opacity);
  text-align: center;
  white-space: nowrap;
  transform: scaleX(0.84);
  transform-origin: center;
  transition: opacity 200ms ease, color 200ms ease;
}

.score-gauge.is-animating .score-gauge-chip {
  opacity: var(--score-gauge-chip-opacity);
}

.score-gauge.is-final .score-gauge-chip {
  opacity: 1;
}

@media (min-width: 640px) {
  .score-gauge-chip {
    transform: none;
  }
}

h2 {
  font-size: clamp(2.05rem, 5.2vw, 4rem);
}

h3 {
  font-size: 20px;
  line-height: 1.2;
}

.hero-subhead {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 19px;
}

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

.watch-note {
  margin: 34px 0 0;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.video-section {
  padding: 22px 0 82px;
}

.video-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 5px solid var(--brand);
  border-radius: 12px;
  box-shadow: 0 22px 70px rgba(17, 59, 40, 0.18);
  background: var(--pine-0);
}

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

.proof-strip {
  padding: 42px 0;
  background: var(--stone);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  text-align: center;
}

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

.proof-grid div {
  display: grid;
  gap: 6px;
}

.proof-grid strong {
  color: var(--brand);
  font-family: var(--font-display);
  font-size: clamp(54px, 6.8vw, 84px);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.proof-grid span,
.proof-strip p {
  color: var(--muted);
}

.proof-grid span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.proof-strip p {
  margin: 22px 0 0;
  font-size: 14px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  column-gap: 76px;
  row-gap: 32px;
  align-items: start;
}

.two-column > * {
  min-width: 0;
}

.section-lead {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0;
}

.check-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 142px;
  padding: 20px;
  background: var(--paper);
  border: 0.5px solid var(--hairline);
  border-radius: 12px;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.check-grid span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--brand);
  color: var(--paper);
}

.check-grid svg {
  width: 18px;
  height: 18px;
}

.check-grid path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.check-grid h3 {
  max-width: 13em;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.28;
}

.ai-section {
  background: var(--pine-0);
  color: var(--paper);
}

.ai-section .eyebrow {
  color: var(--paper);
}

.ai-heading {
  max-width: 900px;
}

.ai-lead {
  margin: 18px 0 0;
  color: #A9BAB1;
  font-size: 22px;
}

.ai-framing {
  margin: 34px 0;
  max-width: 900px;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(25px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ai-grid article {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--pine-1);
  color: var(--paper);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.ai-vignette-card {
  display: grid;
  align-content: start;
  min-height: 294px;
  padding: 14px;
}

.vignette-panel {
  display: grid;
  place-items: center;
  height: 178px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--pine-0);
}

.vignette-panel svg {
  display: block;
  width: 100%;
  height: 100%;
}

.ai-vignette-card h3 {
  margin: 18px 4px 0;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
}

.ai-vignette-card p,
.ai-compact-feature p {
  margin: 8px 4px 0;
  color: var(--paper);
  font-weight: 700;
  line-height: 1.35;
}

.ai-vignette-card p {
  font-size: 14px;
}

.report-sheet {
  transform-box: fill-box;
  transform-origin: center;
}

.report-sheet rect {
  fill: none;
  stroke: var(--paper);
  stroke-width: 1.5;
}

.report-sheet path {
  fill: none;
  stroke: var(--paper);
  stroke-width: 3;
  stroke-linecap: round;
  opacity: 0.82;
}

.report-sheet-one {
  animation: reportSheetDriftOne 7s ease-in-out infinite alternate;
}

.report-sheet-two {
  animation: reportSheetDriftTwo 7s ease-in-out 900ms infinite alternate;
}

.report-sheet-three {
  animation: reportSheetDriftThree 7s ease-in-out 1.8s infinite alternate;
}

.scan-line {
  fill: none;
  stroke: var(--paper);
  stroke-width: 2;
  stroke-linecap: round;
  opacity: 0.76;
  animation: reportScanLine 4.5s ease-in-out infinite;
}

.letter-page {
  fill: none;
  stroke: var(--paper);
  stroke-width: 1.5;
}

.type-bar {
  fill: var(--paper);
  transform: scaleX(0);
  transform-box: fill-box;
  transform-origin: left center;
  animation: letterTypeCycle 8s ease-in-out infinite;
}

.type-bar-two {
  animation-delay: 350ms;
}

.type-bar-three {
  animation-delay: 700ms;
}

.type-bar-four {
  animation-delay: 1.05s;
}

.type-bar-five {
  animation-delay: 1.4s;
}

.letter-check {
  transform: scale(0);
  transform-box: fill-box;
  transform-origin: center;
  animation: letterCheckCycle 8s ease-in-out infinite;
}

.letter-check circle {
  fill: var(--brand);
}

.letter-check path {
  fill: none;
  stroke: var(--paper);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tracking-row > text {
  fill: #A9BAB1;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.tracking-bar {
  fill: var(--paper);
}

.tracking-row-one .tracking-bar,
.tracking-row-three .tracking-bar {
  animation: trackingBarFade 9s ease-in-out infinite;
}

.status-pill {
  opacity: 0;
  animation: trackingPillReveal 9s ease-in-out infinite;
}

.tracking-row-two .status-pill {
  animation-delay: 450ms;
}

.tracking-row-three .status-pill {
  animation-delay: 900ms;
}

.status-removed rect {
  fill: var(--brand);
}

.status-progress rect {
  fill: none;
  stroke: var(--paper);
  stroke-width: 1.4;
}

.status-pill text {
  fill: var(--paper);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
}

.ai-compact-feature {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-height: 86px;
  padding: 18px;
}

.ai-compact-feature span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--brand);
  color: var(--paper);
}

.ai-compact-feature svg {
  width: 18px;
  height: 18px;
}

.ai-compact-feature path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ai-compact-feature p {
  margin: 0;
  font-size: 15px;
}

.pricing-card {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 22px;
  padding: 24px;
  background: var(--paper);
  color: var(--ink);
}

.pricing-card strong {
  display: block;
  color: var(--brand);
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.pricing-card span,
.pricing-card p {
  color: var(--muted);
}

.pricing-card p {
  margin: 0;
}

.ai-note {
  margin: 18px 0 0;
  color: #A9BAB1;
}

.how-section {
  background: var(--paper);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  gap: 18px;
  margin-top: 32px;
}

.steps::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 17%;
  right: 17%;
  height: 1px;
  background: var(--hairline);
}

.steps article {
  position: relative;
  z-index: 1;
  min-height: 246px;
  padding: 24px;
  background: var(--stone);
  border: 0.5px solid var(--hairline);
  border-radius: 12px;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.steps span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 18px;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  line-height: 1;
}

.steps h3 {
  margin-top: 26px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
}

.steps p,
.about-section p,
.faq-list p {
  color: var(--muted);
}

.steps p {
  margin: 12px 0 0;
}

.about-section {
  background: var(--stone);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.photo-slot {
  aspect-ratio: 4 / 5;
  width: min(100%, 336px);
  max-height: 420px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: var(--paper);
}

.photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section p {
  max-width: 680px;
  font-size: 18px;
}

.faq-list {
  margin-top: 28px;
  border-top: 1px solid var(--hairline);
}

.faq-list details {
  border-bottom: 1px solid var(--hairline);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--brand);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: -8px 0 24px;
  max-width: 720px;
}

.final-cta {
  padding: 70px 0;
  background: var(--brand);
  color: var(--paper);
}

.final-cta h2 {
  color: var(--paper);
}

.final-cta-inner {
  display: grid;
  gap: 24px;
  justify-items: center;
  text-align: center;
}

.site-footer {
  padding: 48px 0;
  background: var(--pine-0);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-logo img {
  filter: brightness(0) invert(1);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--paper);
  font-weight: 800;
}

.site-footer p {
  max-width: 850px;
  margin: 0;
  color: #A9BAB1;
}

.site-footer small {
  color: #A9BAB1;
}

.policy-main {
  padding: 82px 0;
  min-height: 58vh;
}

.policy-main p {
  max-width: 760px;
  color: var(--muted);
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--brand);
  color: var(--paper);
  box-shadow: 0 12px 30px rgba(17, 59, 40, 0.22);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
}

.back-to-top path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.motion-ready .reveal-target {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

.motion-ready .reveal-target.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .check-grid article:hover,
  .ai-grid article:hover,
  .steps article:hover,
  .motion-ready .check-grid article.reveal-target.is-revealed:hover,
  .motion-ready .ai-grid article.reveal-target.is-revealed:hover,
  .motion-ready .steps article.reveal-target.is-revealed:hover {
    border-color: var(--brand);
    transform: translateY(-2px);
    transition:
      border-color 180ms ease,
      transform 180ms ease;
  }
}

@keyframes reportSheetDriftOne {
  from {
    transform: translateY(4px) rotate(-6deg);
  }

  to {
    transform: translateY(-5px) rotate(-6deg);
  }
}

@keyframes reportSheetDriftTwo {
  from {
    transform: translateY(-4px) rotate(4deg);
  }

  to {
    transform: translateY(5px) rotate(4deg);
  }
}

@keyframes reportSheetDriftThree {
  from {
    transform: translateY(5px) rotate(7deg);
  }

  to {
    transform: translateY(-4px) rotate(7deg);
  }
}

@keyframes reportScanLine {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0;
  }

  12%,
  88% {
    opacity: 0.76;
  }

  50% {
    transform: translateY(86px);
    opacity: 0.76;
  }
}

@keyframes letterTypeCycle {
  0% {
    opacity: 1;
    transform: scaleX(0);
  }

  6%,
  74% {
    opacity: 1;
    transform: scaleX(1);
  }

  80%,
  100% {
    opacity: 0;
    transform: scaleX(1);
  }
}

@keyframes letterCheckCycle {
  0%,
  23% {
    opacity: 0;
    transform: scale(0);
  }

  27% {
    opacity: 1;
    transform: scale(1.12);
  }

  31%,
  74% {
    opacity: 1;
    transform: scale(1);
  }

  80%,
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@keyframes trackingPillReveal {
  0%,
  12% {
    opacity: 0;
    transform: translateY(4px);
  }

  20%,
  78% {
    opacity: 1;
    transform: translateY(0);
  }

  84%,
  100% {
    opacity: 0;
    transform: translateY(0);
  }
}

@keyframes trackingBarFade {
  0%,
  12% {
    opacity: 1;
  }

  20%,
  78% {
    opacity: 0.4;
  }

  84%,
  100% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal-target,
  .motion-ready .reveal-target,
  .back-to-top {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .back-to-top {
    opacity: 0;
  }

  .back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .report-sheet-one,
  .report-sheet-two,
  .report-sheet-three,
  .scan-line,
  .type-bar,
  .letter-check,
  .tracking-row-one .tracking-bar,
  .tracking-row-three .tracking-bar,
  .status-pill {
    animation: none;
  }

  .report-sheet-one {
    transform: rotate(-6deg);
  }

  .report-sheet-two {
    transform: rotate(4deg);
  }

  .report-sheet-three {
    transform: rotate(7deg);
  }

  .scan-line {
    opacity: 0.76;
    transform: translateY(43px);
  }

  .type-bar {
    opacity: 1;
    transform: scaleX(1);
  }

  .letter-check {
    opacity: 1;
    transform: scale(1);
  }

  .tracking-row-one .tracking-bar,
  .tracking-row-three .tracking-bar {
    opacity: 0.4;
  }

  .status-pill {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 16px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--hairline);
  }

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

  .nav-links a {
    padding: 16px 0;
  }

  .nav-links .button {
    margin-top: 8px;
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    padding: 58px 0 28px;
  }

  .two-column,
  .about-grid,
  .pricing-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

  .ai-vignette-card {
    min-height: 286px;
  }

  .ai-vignette-card:first-child {
    grid-column: 1 / -1;
  }

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

  .steps::before {
    display: none;
  }

  .pricing-card {
    justify-items: start;
  }

  h2 {
    font-size: clamp(2rem, 7vw, 3.35rem);
    line-height: 1.12;
  }

  .ai-framing {
    margin: 26px 0;
  }
}

@media (max-width: 620px) {
  .container,
  .narrow,
  .nav-shell {
    width: min(100% - 24px, 1120px);
  }

  .footer-logo img {
    width: 142px;
  }

  .section-lead {
    font-size: 17px;
  }

  .hero-subhead {
    font-size: 13px;
    line-height: 1.5;
  }

  .hero .cta-row {
    flex-wrap: nowrap;
    gap: 10px;
    width: 100%;
  }

  .hero .cta-row .button {
    flex: 1 1 0;
    min-width: 0;
    min-height: 46px;
    padding: 0 12px;
    font-size: 13px;
  }

  .final-cta .cta-row {
    width: 100%;
  }

  .final-cta .button-large {
    width: 100%;
  }

  .video-section {
    padding-bottom: 56px;
  }

  .proof-strip {
    padding: 34px 0;
  }

  .proof-strip p {
    font-size: 11.2px;
  }

  .proof-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    gap: 24px;
  }

  .check-grid {
    gap: 10px;
    margin: 24px 0;
  }

  .check-grid article {
    min-height: 124px;
    padding: 18px;
  }

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

  .ai-vignette-card {
    min-height: 280px;
    padding: 12px;
  }

  .vignette-panel {
    height: 168px;
  }

  .about-grid {
    gap: 26px;
  }

  .photo-slot {
    width: min(208px, 100%);
    max-height: 260px;
  }

  h1 {
    font-size: clamp(2.245rem, 9.9vw, 2.321rem);
    line-height: 1.05;
  }

  h2 {
    font-size: clamp(1.95rem, 8.2vw, 2.35rem);
  }

  .hero-subhead {
    margin-top: 20px;
  }

  .cta-row {
    margin-top: 24px;
  }

  .watch-note {
    margin-top: 26px;
  }

  .two-column,
  .about-grid {
    gap: 22px;
  }

  .steps {
    margin-top: 22px;
  }

  .steps article {
    min-height: auto;
    padding: 22px;
  }

  .ai-grid {
    gap: 10px;
  }

  .faq-list {
    margin-top: 22px;
  }

  .faq-list summary {
    padding: 20px 0;
    font-size: 17px;
  }

  .final-cta {
    padding: 54px 0;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 768px) {
  .nav-shell {
    min-height: 60px;
  }

  .nav-links {
    inset: 60px 0 auto 0;
  }

  .brand-mark img {
    width: 128px;
  }

  .section {
    padding: 48px 0;
  }

  .hero {
    padding: 46px 0 26px;
  }

  .video-section {
    padding: 18px 0 44px;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero .cta-row {
    flex-wrap: nowrap;
    gap: 10px;
    width: 100%;
  }

  .hero .cta-row .button {
    flex: 1 1 0;
    min-width: 0;
    min-height: 46px;
    padding: 0 12px;
    font-size: 13px;
  }
}
