﻿:root {
  --bg: #f4eee2;
  --panel: #fbf7f0;
  --ink: #1f2229;
  --muted: #64686f;
  --line: #ddcfba;
  --accent: #dd6145;
  --accent-soft: #e2a73a;
  --deep: #222b3b;
  --deep-2: #2d3548;
  --cream: #efe7d7;
}

html,
body {
  height: 100%;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.45),
      transparent 28%
    ),
    linear-gradient(180deg, #efe7d8 0%, #f4eee2 100%);
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
}

.reveal {
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
}

.reveal .slides {
  text-align: left;
}

.reveal .slides section {
  height: 100%;
  padding: 0;
  display: flex;
}

.responsive-deck.reveal-viewport {
  overflow: auto;
  touch-action: pan-y;
  overscroll-behavior-y: contain;
}

html.responsive-deck,
body.responsive-deck {
  overflow-y: auto !important;
  overflow-x: hidden !important;
  touch-action: pan-y;
}

.responsive-deck .reveal {
  width: 100%;
  height: auto;
  min-height: 100dvh;
  touch-action: pan-y;
}

.responsive-deck .reveal .slides {
  position: static !important;
  width: 100% !important;
  height: auto !important;
  inset: auto !important;
  transform: none !important;
  overflow: visible !important;
  touch-action: pan-y;
}

.responsive-deck .reveal .slides section {
  position: static !important;
  width: 100% !important;
  min-height: 100dvh;
  left: auto !important;
  top: auto !important;
  margin: 0 !important;
  transform: none !important;
  touch-action: pan-y;
}

.responsive-deck .reveal .slides section.past,
.responsive-deck .reveal .slides section.future {
  display: none !important;
}

.responsive-deck .reveal .slides section.present {
  display: block !important;
}

.slide-shell {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  min-height: 100%;
  flex: 1;
  padding: 28px 34px 30px;
  border: 1px solid rgba(221, 207, 186, 0.9);
  border-radius: 12px;
  background: rgba(250, 246, 238, 0.94);
  box-shadow: 0 12px 35px rgba(74, 61, 45, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.slide-shell::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 30px;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.32), transparent 30%),
    radial-gradient(
      circle at bottom right,
      rgba(226, 167, 58, 0.06),
      transparent 24%
    );
}

.eyebrow,
.footer-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 22px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #7e8287;
}

.footer-note {
  text-align: right;
  font-size: 18px;
  margin-top: 18px;
}

h1,
h2,
h3,
p,
li {
  margin: 0;
}

.hero {
  margin-top: 30px;
}

.hero h1,
.hero h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4.1rem;
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.05em;
  max-width: 1480px;
}

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

.subhead {
  margin-top: 32px;
  max-width: 1400px;
  font-size: 1.58rem;
  line-height: 1.34;
  color: #40454f;
  font-style: italic;
}

.card-row,
.metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 26px;
}

.triple-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.2fr 1.05fr;
  gap: 20px;
  margin-top: 28px;
  align-items: stretch;
}

.card,
.metric-card {
  position: relative;
  z-index: 1;
  background: rgba(252, 249, 243, 0.92);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px 30px 30px;
  min-height: 244px;
}

.metric-card {
  min-height: 320px;
}

.card-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 1.5rem;
}

.card-label .badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: normal;
  color: #fff;
  background: var(--accent);
}

.card-label.gold {
  color: #c48a1f;
}

.card-label.gold .badge {
  background: #dda938;
  color: #202532;
}

.card h3,
.metric-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.25rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.card p,
.metric-card p,
.metric-card li {
  font-size: 1.24rem;
  line-height: 1.42;
  color: #50545c;
}

.metric-card ul {
  margin: 16px 0 0;
  padding-left: 1.1em;
}

.workflow-column {
  position: relative;
  z-index: 1;
  background: rgba(252, 249, 243, 0.92);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px 28px 28px;
  min-height: 360px;
}

.workflow-column h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.workflow-column ul {
  margin: 0;
  padding-left: 1.1em;
}

.workflow-column li {
  margin-bottom: 14px;
  font-size: 1.12rem;
  line-height: 1.35;
  color: #4d525a;
}

.workflow-box {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.42);
  margin-bottom: 14px;
}

.workflow-box:last-child {
  margin-bottom: 0;
}

.workflow-box strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.18rem;
  line-height: 1.1;
  margin-bottom: 6px;
  color: var(--ink);
}

.workflow-box span {
  display: block;
  font-size: 1rem;
  line-height: 1.34;
  color: #59606b;
}

.workflow-box.highlight {
  background: linear-gradient(
    180deg,
    rgba(221, 97, 69, 0.08) 0%,
    rgba(226, 167, 58, 0.08) 100%
  );
}

.workflow-arrow {
  text-align: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8b8f97;
  margin: 10px 0 14px;
}

.workflow-slide .hero h2 {
  font-size: 3.45rem;
  max-width: 1320px;
}

.workflow-slide .subhead {
  margin-top: 24px;
  font-size: 1.26rem;
  line-height: 1.28;
  max-width: 1380px;
}

.workflow-slide .workflow-grid {
  gap: 16px;
  margin-top: 22px;
}

.workflow-slide .workflow-column {
  padding: 22px 22px 22px;
  min-height: 0;
}

.workflow-slide .card-label {
  margin-bottom: 18px;
  font-size: 1rem;
}

.workflow-slide .workflow-column h3 {
  font-size: 1.62rem;
  margin-bottom: 14px;
}

.workflow-slide .workflow-column li {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.28;
}

.workflow-slide .workflow-box {
  padding: 12px 14px;
  margin-bottom: 10px;
}

.workflow-slide .workflow-box strong {
  font-size: 1.02rem;
  margin-bottom: 4px;
}

.workflow-slide .workflow-box span {
  font-size: 0.9rem;
  line-height: 1.24;
}

.workflow-slide .workflow-arrow {
  margin: 8px 0 10px;
  font-size: 0.78rem;
}

.workflow-slide .proof-strip {
  margin-top: 18px;
  padding: 18px 22px 18px;
}

.workflow-slide .proof-strip .equation {
  font-size: 1.55rem;
}

.workflow-slide .proof-strip .caption {
  margin-top: 10px;
  font-size: 0.98rem;
}

.workflow-slide .proof-strip .micro {
  margin-top: 10px;
  font-size: 0.82rem;
}

.title-slide .hero h1 {
  max-width: 1380px;
  font-size: 4.9rem;
}

.title-slide {
  justify-content: flex-start;
}

.title-slide .subhead {
  max-width: 1200px;
  margin-top: 22px;
  font-size: 2rem;
}

.title-slide > div:first-child {
  flex: 1;
  width: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.title-slide .title-main {
  align-self: center;
}

.title-slide .title-payoff {
  align-self: end;
  padding-bottom: 4px;
}

.title-slide .proof-strip {
  display: none;
}

.problem-slide > div:first-child {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.problem-slide .proof-strip {
  margin-top: auto;
}

.title-payoff {
  margin-top: 26px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.08rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7a7f87;
}

.proof-strip {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  padding: 24px 28px 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, var(--deep) 0%, var(--deep-2) 100%);
  color: #f3f1ed;
}

.proof-strip .equation {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(1.55rem, 2.1vw, 1.9rem);
  text-align: center;
  color: #e5b441;
  letter-spacing: 0.01em;
  font-weight: 500;
}

.proof-strip .equation span {
  color: #7f8aa0;
}

.proof-strip .caption {
  margin-top: 14px;
  text-align: center;
  font-size: 1.1rem;
  color: #d8dde7;
}

.proof-strip .micro {
  margin-top: 16px;
  text-align: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.94rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #aeb9cf;
}

.demo-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  margin-top: 28px;
  align-items: stretch;
}

.demo-slide {
  justify-content: flex-start;
}

.demo-slide > div:first-child {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.demo-slide .hero h2 {
  max-width: 1320px;
  font-size: 3.85rem;
}

.demo-slide .subhead {
  max-width: 1180px;
  margin-top: 24px;
}

.demo-slide .demo-layout {
  flex: 1;
  min-height: 0;
  margin-top: 24px;
  grid-template-columns: 0.9fr 1.1fr;
}

.demo-panel {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 28px 30px 28px;
}

.demo-form-panel {
  position: relative;
  z-index: 2;
  touch-action: auto;
}

.demo-panel ul {
  margin: 18px 0 0;
  padding-left: 1.1em;
  color: #50545c;
}

.demo-panel li {
  margin-bottom: 12px;
  font-size: 1.12rem;
  line-height: 1.42;
}

.demo-form-panel h3 {
  margin-bottom: 12px;
}

.demo-link-copy {
  font-size: 1.12rem;
  line-height: 1.42;
  color: #50545c;
  max-width: 36ch;
}

.demo-link-actions {
  margin-top: auto;
  padding-top: 18px;
  position: relative;
  z-index: 5;
}

.demo-form {
  display: grid;
  gap: 12px;
  flex: 1;
  align-content: start;
  position: relative;
  z-index: 3;
  pointer-events: auto;
  touch-action: auto;
}

.form-field {
  display: grid;
  gap: 6px;
}

.form-field span {
  font-size: 0.95rem;
  font-weight: 700;
  color: #3f4550;
}

.form-field input,
.form-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(221, 207, 186, 0.95);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  line-height: 1.4;
  padding: 14px 16px;
  transition:
    border-color 120ms ease,
    box-shadow 120ms ease,
    background-color 120ms ease;
  pointer-events: auto;
  touch-action: auto;
  -webkit-user-select: text;
  user-select: text;
}

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

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(221, 97, 69, 0.85);
  box-shadow: 0 0 0 4px rgba(221, 97, 69, 0.12);
  background: rgba(255, 255, 255, 0.9);
}

.form-actions {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 0;
  padding-top: 6px;
  width: 100%;
}

.demo-form .cf-turnstile {
  display: block;
  min-height: 78px;
  align-self: flex-end;
  margin-left: auto;
  overflow: visible;
  order: 2;
}

.demo-form .cf-turnstile iframe,
.demo-form .cf-turnstile > div {
  display: block;
  max-width: 100%;
}

.demo-submit {
  appearance: none;
  box-sizing: border-box;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff8f2;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  padding: 14px 24px;
  cursor: pointer;
  transition:
    transform 120ms ease,
    box-shadow 120ms ease,
    opacity 120ms ease;
  box-shadow: 0 8px 18px rgba(221, 97, 69, 0.18);
  pointer-events: auto;
  touch-action: auto;
  order: 1;
}

.demo-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(221, 97, 69, 0.22);
}

.demo-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  z-index: 5;
}

.demo-submit:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.form-status {
  display: none;
  width: 100%;
  box-sizing: border-box;
  margin: 4px 0 0;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(137, 150, 168, 0.18);
  background: rgba(137, 150, 168, 0.08);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.35;
  color: #4d545f;
  flex-basis: 100%;
  order: 3;
}

.form-status:not(:empty) {
  display: block;
}

.form-status.is-error {
  border-color: rgba(160, 57, 41, 0.22);
  background: rgba(160, 57, 41, 0.08);
  color: #8f3527;
}

.form-status.is-success {
  border-color: rgba(47, 107, 67, 0.2);
  background: rgba(47, 107, 67, 0.08);
  color: #2f6b43;
}

.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;
}

.lead-page {
  min-height: 100vh;
  margin: 0;
  padding: 32px;
  box-sizing: border-box;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.45),
      transparent 28%
    ),
    linear-gradient(180deg, #efe7d8 0%, #f4eee2 100%);
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
}

.lead-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 34px 38px 36px;
  border: 1px solid rgba(221, 207, 186, 0.9);
  border-radius: 24px;
  background: rgba(250, 246, 238, 0.94);
  box-shadow: 0 12px 35px rgba(74, 61, 45, 0.06);
  box-sizing: border-box;
}

.lead-shell .hero h1 {
  max-width: 960px;
  font-size: 4rem;
}

.lead-shell .subhead {
  max-width: 960px;
}

.lead-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 24px;
  margin-top: 28px;
  align-items: stretch;
}

.lead-card {
  background: rgba(252, 249, 243, 0.92);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px 30px 30px;
  min-height: 0;
  box-sizing: border-box;
}

.lead-card h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 14px;
}

.lead-card p,
.lead-card li {
  font-size: 1.08rem;
  line-height: 1.44;
  color: #50545c;
}

.lead-card ul {
  margin: 18px 0 0;
  padding-left: 1.1em;
}

.lead-backlink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a7f87;
  text-decoration: none;
}

.lead-backlink:hover {
  color: var(--accent);
}

.kpi {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--ink);
  margin-bottom: 14px;
}

.outcome-copy {
  margin-top: 8px;
  font-size: 1.06rem;
}

.reveal .progress {
  color: var(--accent);
  height: 4px;
}

.reveal .controls {
  color: var(--accent);
}

.reveal-viewport .backgrounds,
.reveal-viewport .slide-background,
.reveal-viewport .slide-background-content {
  pointer-events: none !important;
}

@media (max-width: 1024px) {
  .slide-shell {
    padding: 22px 24px 24px;
    border-radius: 18px;
  }

  .slide-shell::after {
    border-radius: 18px;
  }

  .eyebrow,
  .footer-note {
    font-size: 16px;
    letter-spacing: 0.18em;
  }

  .hero {
    margin-top: 20px;
  }

  .hero h1,
  .hero h2 {
    font-size: 3.15rem;
    max-width: 100%;
  }

  .title-slide .hero h1 {
    font-size: 3.6rem;
  }

  .demo-slide .hero h2 {
    font-size: 3.15rem;
    max-width: 100%;
  }

  .title-slide .subhead {
    font-size: 1.45rem;
    max-width: 900px;
  }

  .demo-slide .subhead {
    margin-top: 24px;
    max-width: 100%;
    font-size: 1.18rem;
  }

  .demo-slide .demo-layout {
    grid-template-columns: 1fr;
  }

  .lead-page {
    padding: 22px;
  }

  .lead-shell {
    padding: 24px 24px 26px;
    border-radius: 18px;
  }

  .lead-shell .hero h1 {
    font-size: 3.15rem;
    max-width: 100%;
  }

  .lead-shell .subhead {
    max-width: 100%;
    font-size: 1.18rem;
  }

  .lead-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .subhead {
    margin-top: 24px;
    max-width: 100%;
    font-size: 1.18rem;
  }

  .card-row,
  .metric-row {
    gap: 18px;
  }

  .triple-row,
  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card,
  .metric-card,
  .workflow-column {
    min-height: auto;
    padding: 22px 22px 24px;
  }

  .card-label {
    gap: 12px;
    margin-bottom: 18px;
    font-size: 1.02rem;
    letter-spacing: 0.16em;
  }

  .card h3,
  .metric-card h3,
  .workflow-column h3 {
    font-size: 1.9rem;
  }

  .card p,
  .metric-card p,
  .metric-card li,
  .workflow-column li,
  .workflow-box span {
    font-size: 1.02rem;
    line-height: 1.34;
  }

  .kpi {
    font-size: 2.45rem;
  }

  .workflow-box {
    padding: 14px 16px;
    margin-bottom: 12px;
  }

  .workflow-box strong {
    font-size: 1.05rem;
  }

  .proof-strip {
    padding: 18px 20px 20px;
  }

  .proof-strip .equation {
    font-size: 1.34rem;
    letter-spacing: 0;
  }

  .proof-strip .caption {
    font-size: 0.98rem;
  }

  .proof-strip .micro {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
  }

  .workflow-slide .hero h2 {
    font-size: 2.9rem;
  }
}

@media (max-width: 768px) {
  .reveal .slides section {
    height: auto;
    min-height: 100%;
    display: block;
  }

  .slide-shell {
    height: auto;
    min-height: calc(100vh - 20px);
    padding: 18px 18px 20px;
    border-radius: 16px;
  }

  .slide-shell::after {
    border-radius: 16px;
  }

  .eyebrow,
  .footer-note {
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .hero {
    margin-top: 16px;
  }

  .hero h1,
  .hero h2 {
    font-size: 2.35rem;
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .workflow-slide .hero h2 {
    font-size: 2.35rem;
    line-height: 1.02;
  }

  .demo-slide .hero h2 {
    font-size: 2.35rem;
    line-height: 1.02;
  }

  .title-slide .hero h1 {
    font-size: 2.75rem;
  }

  .title-slide .subhead {
    font-size: 1.08rem;
  }

  .title-payoff {
    margin-top: 18px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  .subhead {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.3;
  }

  .workflow-slide .subhead {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.3;
  }

  .demo-slide .subhead {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.3;
  }

  .demo-slide .demo-layout {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
  }

  .lead-page {
    padding: 14px;
  }

  .lead-shell {
    padding: 18px 18px 20px;
    border-radius: 16px;
  }

  .lead-shell .hero h1 {
    font-size: 2.35rem;
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .lead-shell .subhead {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.3;
  }

  .lead-card {
    padding: 18px;
    border-radius: 18px;
  }

  .lead-card h2 {
    font-size: 1.55rem;
    margin-bottom: 10px;
  }

  .lead-card p,
  .lead-card li,
  .demo-link-copy {
    font-size: 0.94rem;
    line-height: 1.32;
  }

  .lead-backlink {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .card-row,
  .metric-row,
  .triple-row,
  .workflow-grid,
  .demo-layout {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
  }

  .card,
  .metric-card,
  .workflow-column {
    padding: 18px;
    border-radius: 18px;
  }

  .demo-panel {
    padding: 18px;
  }

  .card-label {
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
  }

  .workflow-slide .card-label {
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
  }

  .card-label .badge {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .card h3,
  .metric-card h3,
  .workflow-column h3 {
    font-size: 1.55rem;
    margin-bottom: 10px;
  }

  .workflow-slide .workflow-column h3 {
    font-size: 1.55rem;
    margin-bottom: 10px;
  }

  .card p,
  .metric-card p,
  .metric-card li,
  .workflow-column li,
  .workflow-box span,
  .outcome-copy {
    font-size: 0.94rem;
    line-height: 1.32;
  }

  .workflow-slide .workflow-column li,
  .workflow-slide .workflow-box span {
    font-size: 0.94rem;
    line-height: 1.32;
  }

  .metric-card ul,
  .workflow-column ul {
    margin-top: 12px;
  }

  .kpi {
    font-size: 2rem;
  }

  .workflow-arrow {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    margin: 8px 0;
  }

  .workflow-box {
    padding: 12px 13px;
  }

  .workflow-slide .workflow-box {
    padding: 12px 13px;
  }

  .workflow-box strong {
    font-size: 0.98rem;
  }

  .workflow-slide .workflow-box strong {
    font-size: 0.98rem;
  }

  .problem-slide .proof-strip,
  .workflow-slide .proof-strip {
    margin-top: 18px;
  }

  .proof-strip {
    margin-top: 18px;
    padding: 16px 14px 16px;
    border-radius: 18px;
  }

  .workflow-slide .proof-strip {
    margin-top: 18px;
    padding: 16px 14px 16px;
    border-radius: 18px;
  }

  .proof-strip .equation {
    font-size: 1.02rem;
    line-height: 1.18;
    word-break: break-word;
  }

  .workflow-slide .proof-strip .equation {
    font-size: 1.02rem;
    line-height: 1.18;
  }

  .proof-strip .caption {
    margin-top: 10px;
    font-size: 0.88rem;
    line-height: 1.3;
  }

  .workflow-slide .proof-strip .caption {
    margin-top: 10px;
    font-size: 0.88rem;
    line-height: 1.3;
  }

  .proof-strip .micro {
    margin-top: 10px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .workflow-slide .proof-strip .micro {
    margin-top: 10px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .demo-panel li {
    font-size: 1rem;
  }

  .form-field input,
  .form-field textarea {
    font-size: 0.96rem;
    padding: 13px 14px;
  }

  .form-field textarea {
    min-height: 132px;
  }

  .demo-submit {
    width: 100%;
    justify-content: center;
  }

  .form-actions {
    justify-content: flex-start;
    align-items: stretch;
    gap: 12px;
  }

  .demo-form .cf-turnstile {
    order: 1;
    margin-left: 0;
    align-self: flex-start;
  }

  .demo-submit {
    order: 2;
  }

  .form-status {
    flex-basis: 100%;
    min-height: 1.3em;
    font-size: 0.88rem;
    order: 3;
  }

  .footer-note {
    margin-top: 14px;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .slide-shell {
    min-height: calc(100vh - 12px);
    padding: 14px 14px 16px;
    border-radius: 14px;
  }

  .slide-shell::after {
    border-radius: 14px;
  }

  .eyebrow,
  .footer-note {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .hero h1,
  .hero h2 {
    font-size: 1.95rem;
  }

  .workflow-slide .hero h2 {
    font-size: 1.95rem;
  }

  .demo-slide .hero h2 {
    font-size: 1.95rem;
  }

  .title-slide .hero h1 {
    font-size: 2.25rem;
  }

  .subhead,
  .title-slide .subhead {
    font-size: 0.92rem;
  }

  .workflow-slide .subhead {
    font-size: 0.92rem;
  }

  .demo-slide .subhead {
    font-size: 0.92rem;
  }

  .demo-slide .demo-layout {
    gap: 12px;
  }

  .lead-page {
    padding: 10px;
  }

  .lead-shell {
    padding: 14px 14px 16px;
    border-radius: 14px;
  }

  .lead-shell .hero h1 {
    font-size: 1.95rem;
  }

  .lead-shell .subhead {
    font-size: 0.92rem;
  }

  .lead-card {
    padding: 14px;
    border-radius: 14px;
  }

  .lead-card h2 {
    font-size: 1.3rem;
  }

  .lead-card p,
  .lead-card li,
  .demo-link-copy {
    font-size: 0.88rem;
  }

  .title-payoff {
    font-size: 0.68rem;
  }

  .card-label {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .workflow-slide .card-label {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .card,
  .metric-card,
  .workflow-column {
    padding: 14px;
    border-radius: 14px;
  }

  .card h3,
  .metric-card h3,
  .workflow-column h3,
  .kpi {
    font-size: 1.3rem;
  }

  .workflow-slide .workflow-column h3 {
    font-size: 1.3rem;
  }

  .card p,
  .metric-card p,
  .metric-card li,
  .workflow-column li,
  .workflow-box span,
  .outcome-copy {
    font-size: 0.88rem;
  }

  .workflow-slide .workflow-column li,
  .workflow-slide .workflow-box span {
    font-size: 0.88rem;
  }

  .proof-strip {
    padding: 14px 12px;
    border-radius: 14px;
  }

  .workflow-slide .proof-strip {
    padding: 14px 12px;
    border-radius: 14px;
  }

  .proof-strip .equation {
    font-size: 0.9rem;
  }

  .workflow-slide .proof-strip .equation {
    font-size: 0.9rem;
  }

  .proof-strip .caption {
    font-size: 0.8rem;
  }

  .workflow-slide .proof-strip .caption {
    font-size: 0.8rem;
  }

  .proof-strip .micro {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .workflow-slide .proof-strip .micro {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .demo-panel li {
    font-size: 0.92rem;
    margin-bottom: 10px;
  }

  .form-field span {
    font-size: 0.88rem;
  }

  .form-field input,
  .form-field textarea {
    border-radius: 14px;
    font-size: 0.92rem;
    padding: 12px 13px;
  }

  .form-field textarea {
    min-height: 120px;
  }

  .demo-submit {
    font-size: 0.98rem;
    padding: 12px 18px;
  }

  .form-status {
    font-size: 0.82rem;
  }
}
