/* ==========================================================================
   OutboundPilot — Google Ads Landing Pages
   Shared component layer. Built strictly on the design tokens defined in
   /css/outboundpilot.css :root (see TOOLS/DESIGN/DESIGN.md).
   These are reusable brand ATOMS — page-to-page variation lives in the HTML
   composition, never in recolouring (DESIGN.md §3.5).
   ========================================================================== */

/* ---- stacking: keep content above the absolute .bg-hero-wrap ------------ */
.bg-hero-wrap { z-index: 0; }
.block-container > *:not(.bg-hero-wrap) { position: relative; z-index: 1; }

/* ---- generic helpers ---------------------------------------------------- */
.lp-main {
  display: block;
  overflow-x: clip;
}
.lp-main *,
.site-header--landing *,
.footer-wrapper * {
  min-width: 0;
}
.lp-center { text-align: center; }
.lp-relative { position: relative; }
.lp-full { width: 100%; }
.mw-460 { max-width: 460px; }
.mw-520 { max-width: 520px; }
.mw-560 { max-width: 560px; }
.mw-600 { max-width: 600px; }
.mw-640 { max-width: 640px; }

/* ---- page-specific landing composition --------------------------------- */
.section.lp-hero-compact {
  padding-top: 34px;
  padding-bottom: 88px;
}
.lp-c-hero-copy .inner-container._720px {
  max-width: 960px;
}
.lp-c-hero-copy .display-10 {
  font-size: clamp(58px, 5.8vw, 68px);
  line-height: 1.08;
}
.lp-c-hero-copy .lp-two-line-headline {
  font-size: clamp(58px, 5.8vw, 68px);
}
.lp-c-hero-copy .spacing.spacing-medium {
  height: 20px;
}
.lp-c-hero-copy .display-10 + .spacing {
  height: 12px;
}
.lp-c-hero-copy + .spacing.spacing-xlarge {
  height: 28px;
}
.lp-c-hero-copy .paragraph {
  white-space: nowrap;
}
.lp-heading-line {
  display: block;
}
.lp-two-line-headline {
  font-size: clamp(42px, 4.7vw, 60px);
  line-height: 1.12;
}
.lp-two-line-headline .lp-heading-line {
  white-space: nowrap;
}
.lp-footer-middle {
  padding-top: 52px;
  padding-bottom: 44px;
}
.lp-footer-brand {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.lp-footer-brand .link-footer {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.lp-footer-brand .footer-logo {
  max-width: 240px;
  width: 100%;
}
.lp-footer-legal {
  padding-bottom: 28px;
  text-align: center;
}
.lp-footer-legal p {
  margin: 0;
}
.lp-footer-legal .legal-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.lp-footer-headline {
  line-height: 1.12;
}
.lp-footer-headline .lp-heading-line {
  white-space: nowrap;
}

/* ---- simple landing header --------------------------------------------- */
.site-header--landing .site-header__inner {
  justify-content: space-between;
}
.site-header--landing .site-header__logo,
.site-header--landing .logo-wrapper {
  display: flex;
  align-items: center;
  min-height: 44px;
}
.site-header--landing .site-header__cta {
  display: inline-flex;
  margin-left: auto;
  min-height: 44px;
  white-space: nowrap;
}

/* ---- hero split grids (copy + visual) ----------------------------------- */
.lp-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.lp-hero-split.visual-left { grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr); }
.lp-hero-split.even { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.lp-hero-split.form-lead { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); }
.lp-hero-split.sidebar { grid-template-columns: minmax(0, 1fr) minmax(320px, 420px); align-items: start; gap: 40px clamp(40px, 5vw, 64px); }
.lp-hero-split.media-match {
  align-items: stretch;
}
.lp-hero-split--spacious {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  column-gap: clamp(72px, 7vw, 104px);
}
.lp-hero-split--spacious.even {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
}
.lp-hero-split--spacious .lp-two-line-headline {
  font-size: clamp(42px, 4.35vw, 56px);
}

/* ---- eyebrow / tag row -------------------------------------------------- */
.lp-tag-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.lp-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid var(--neutrals--neutral-400);
  border-radius: 999px;
  background: #fff;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--neutrals--neutral-700);
  box-shadow: 0 2px 3px #24406012;
}
.lp-tag.on-dark { background: #ffffff14; border-color: #ffffff33; color: var(--secondary); }
.lp-tag .lp-pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--neutrals--neutral-300); }

/* ---- checklist ---------------------------------------------------------- */
.lp-checklist { display: flex; flex-direction: column; gap: 16px; }
.lp-checklist.tight { gap: 12px; }
.lp-checklist.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}
.lp-checklist.inline { flex-direction: row; flex-wrap: wrap; gap: 14px 28px; }
.lp-check { display: flex; align-items: flex-start; gap: 12px; }
.lp-check__icon {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  margin-top: 1px;
  color: var(--primary);
}
.lp-check__icon.boxed {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: var(--light-blue);
  padding: 5px;
}
.lp-check p {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: var(--neutrals--neutral-600);
}
.lp-check p strong { color: var(--neutrals--neutral-800); font-weight: 600; }
.lp-check.on-dark p { color: #d8e2ec; }
.lp-check.on-dark p strong { color: #fff; }
.lp-check.on-dark .lp-check__icon { color: var(--neutrals--neutral-300); }

/* ---- stat strip (the headline metrics row) ------------------------------ */
.lp-stat-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 28px;
}
.lp-stat-strip.bordered {
  padding: 22px 28px;
  border: 1px solid var(--neutrals--neutral-400);
  border-radius: 16px;
  background: var(--neutrals--neutral-200);
  box-shadow: 0 8px 12px #2440600d;
}
.lp-strip-item { display: flex; flex-direction: column; gap: 2px; }
.lp-strip-item .num {
  font-family: Archivo, sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  color: var(--neutrals--neutral-800);
}
.lp-strip-item .lbl {
  font-family: Inter, sans-serif;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--neutrals--neutral-500);
}
.lp-strip-sep { width: 1px; height: 34px; background: var(--neutrals--neutral-400); }
.lp-stat-strip.on-dark .num { color: #fff; }
.lp-stat-strip.on-dark .lbl { color: var(--neutrals--neutral-300); }
.lp-stat-strip.on-dark .lp-strip-sep { background: #ffffff2e; }

/* ---- big 3-up stat boxes ------------------------------------------------ */
.lp-stats-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.lp-stats-row.plain { grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.lp-stat-box { text-align: center; }
.lp-stat-box .num {
  font-family: Archivo, sans-serif;
  font-weight: 700;
  font-size: 54px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--neutrals--neutral-800);
}
.lp-stat-box .lbl {
  margin-top: 8px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--neutrals--neutral-600);
}
.lp-stats-row.on-dark .num { color: #fff; }
.lp-stats-row.on-dark .lbl { color: var(--neutrals--neutral-300); }
.lp-stats-row .lp-strip-sep { height: 60px; justify-self: center; }
.lp-stats-row.on-dark .lp-strip-sep { background: #ffffff2e; }

.lp-stat-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.lp-stat-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--neutrals--neutral-400);
  box-shadow: 0 8px 12px #2440600d;
}
.lp-stat-card .num {
  font-family: Archivo, sans-serif; font-weight: 700; font-size: 48px;
  line-height: 1.05; letter-spacing: -0.02em; color: var(--neutrals--neutral-800);
}
.lp-stat-card .lbl { margin-top: 8px; font-family: Inter, sans-serif; font-size: 14px; color: var(--neutrals--neutral-600); }

/* ---- video ------------------------------------------------------------- */
.lp-video-wrap { position: relative; }
.lp-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--neutrals--neutral-400);
  box-shadow: 0 18px 40px #24406022;
  background: var(--primary);
}
.lp-video-wrap {
  width: 100%;
}
.lp-video.framed { border-radius: 24px; border-width: 8px; border-color: #fff; box-shadow: 0 24px 60px #24406026; }
.lp-video.compact { aspect-ratio: 16 / 10; }
.lp-video video, .lp-video img.lp-video__poster {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.lp-video__scrim { position: absolute; inset: 0; background: linear-gradient(180deg,#0000 55%,#12151e66); pointer-events: none; }
.lp-video video[controls] + .lp-video__scrim,
.lp-video video[controls] ~ .lp-video-badge {
  pointer-events: none;
}
.lp-audio-toggle {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 14px 8px 10px;
  border: 1px solid #ffffff66;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  color: var(--primary);
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 18px;
  text-transform: uppercase;
  box-shadow: 0 12px 24px #24406026;
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.28s ease, visibility 0s linear 0s, transform 0.28s ease, background-color 0.3s, color 0.3s, border-color 0.3s;
}
.lp-audio-icon {
  display: block;
  width: 24px;
  max-width: 24px;
  height: 24px;
  flex: 0 0 auto;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.28s ease, transform 0.28s ease, max-width 0.28s ease;
}
.lp-audio-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.lp-audio-toggle:hover {
  transform: scale3d(0.98, 0.98, 1.01);
}
.lp-audio-toggle.is-on {
  background: #fff;
  color: var(--primary);
  border-color: #ffffff66;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(18px);
  transition: opacity 0.28s ease, visibility 0s linear 0.28s, transform 0.28s ease;
}
.lp-audio-toggle.is-on .lp-audio-icon {
  max-width: 0;
  opacity: 0;
  transform: translateX(12px);
}
.lp-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 2px 1.5px #fff3, inset 0 9px 11px #446891b8, 0 6px 14px #24406040;
  cursor: pointer; border: none; transition: transform .3s;
}
.lp-play:hover { transform: translate(-50%,-50%) scale3d(.96,.96,1); }
.lp-play svg { width: 26px; height: 26px; color: #fff; margin-left: 3px; }

.lp-video-badge {
  position: absolute;
  right: 18px; bottom: 18px;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 24px #24406026;
}
.lp-video-badge.tl { left: 18px; top: 18px; right: auto; bottom: auto; }
.lp-video-badge__icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--light-blue); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.lp-video-badge__icon svg { width: 20px; height: 20px; }
.lp-video-badge .ttl { font-family: Inter, sans-serif; font-size: 13px; font-weight: 600; color: var(--neutrals--neutral-800); line-height: 1.2; }
.lp-video-badge .sub { font-family: Archivo, sans-serif; font-size: 18px; font-weight: 700; color: var(--primary); line-height: 1.1; }
.lp-video-stats {
  margin-top: 56px;
}

/* ---- founder spotlight -------------------------------------------------- */
.lp-founder { position: relative; }
.lp-founder--match {
  height: 100%;
  width: 100%;
  max-width: 540px;
  justify-self: end;
}
.lp-founder__frame {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 44px #24406026;
  background: #def3f7;
}
.lp-founder__frame.ratio-portrait { aspect-ratio: 4 / 5; }
.lp-founder__frame.ratio-square { aspect-ratio: 1 / 1; }
.lp-founder--match .lp-founder__frame {
  height: 100%;
  min-height: 520px;
  aspect-ratio: auto;
}
.lp-founder__frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lp-founder__frame.bordered { border: 8px solid #fff; }

.lp-founder-circle {
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 16px 36px #24406026;
  background: #def3f7;
  border: 6px solid #fff;
  aspect-ratio: 1/1;
}
.lp-founder-circle img { width: 100%; height: 100%; object-fit: cover; display: block; }

.lp-uplead-card {
  display: inline-flex; flex-direction: column; gap: 6px;
  padding: 16px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 30px #24406026;
}
.lp-uplead-card.abs { position: absolute; }
.lp-uplead-card.abs.br { right: -14px; bottom: 26px; }
.lp-uplead-card.abs.bl { left: -14px; bottom: 26px; }
.lp-uplead-card.abs.tr { right: -14px; top: 26px; }
.lp-c-founder .lp-uplead-card {
  align-items: flex-start;
  width: fit-content;
  max-width: calc(100% - 24px);
}
.lp-uplead-card__logo { height: 18px; width: auto; }
.lp-uplead-card .big { font-family: Archivo, sans-serif; font-weight: 700; font-size: 26px; line-height: 1; color: var(--neutrals--neutral-800); }
.lp-uplead-card .cap { font-family: Inter, sans-serif; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--neutrals--neutral-500); }

.lp-founder-quote {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; background: #fff; border-radius: 14px;
  box-shadow: 0 12px 24px #24406022;
}
.lp-founder-quote .av { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; flex: 0 0 auto; background: #def3f7; }
.lp-founder-quote .av img { width: 100%; height: 100%; object-fit: cover; }
.lp-founder-quote .nm { font-family: Inter, sans-serif; font-weight: 600; font-size: 14px; color: var(--neutrals--neutral-800); }
.lp-founder-quote .rl { font-family: Inter, sans-serif; font-size: 13px; color: var(--neutrals--neutral-600); }

/* founder eyebrow avatar (built by Will Cannon) */
.lp-builtby { display: inline-flex; align-items: center; gap: 12px; padding: 8px 16px 8px 8px; background:#fff; border:1px solid var(--neutrals--neutral-400); border-radius:999px; box-shadow:0 2px 3px #24406012; }
.lp-builtby .av { width: 38px; height: 38px; border-radius: 50%; overflow: hidden; background:#def3f7; flex:0 0 auto; }
.lp-builtby .av img { width:100%; height:100%; object-fit:cover; }
.lp-builtby span { font-family: Inter, sans-serif; font-size: 13px; color: var(--neutrals--neutral-700); }
.lp-builtby span strong { color: var(--neutrals--neutral-800); font-weight: 600; }

/* ---- lead / booking form card ------------------------------------------ */
.lp-form-card {
  background: #fff;
  border: 1px solid var(--neutrals--neutral-400);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 18px 40px #24406018;
}
.lp-form-card.compact { padding: 28px; border-radius: 20px; }
.lp-form-card.featured {
  background: var(--primary);
  border-color: #2f527493;
  box-shadow: inset 0 2px 1.5px #fff3, inset 0 -2px 1.5px #fff3, inset 0 14px 22px #446891a6, 0 18px 40px #24406033;
}
.lp-form-head { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.lp-form-card h3 { font-family: Archivo, sans-serif; font-weight: 600; font-size: 24px; color: var(--neutrals--neutral-800); margin: 0; }
.lp-form-card .sub { font-family: Inter, sans-serif; font-size: 15px; color: var(--neutrals--neutral-600); margin: 6px 0 0; }
.lp-form-card.featured h3, .lp-form-card.featured .sub { color: #fff; }
.lp-form-card.featured .sub { color: #d8e2ec; }
.lp-form-grid { display: grid; gap: 14px; margin-top: 22px; }
.lp-form-grid.two { grid-template-columns: 1fr 1fr; }
.lp-input {
  width: 100%;
  min-height: 58px;
  padding: 14px 18px;
  border: 1px solid var(--neutrals--neutral-400);
  border-radius: 12px;
  background: #fff;
  font-family: Inter, sans-serif;
  font-size: 16px;
  color: var(--neutrals--neutral-800);
  box-shadow: inset 0 -2px 1.5px #8b8b8b33, 0 2.5px 3px #24406012;
  transition: border-color .3s, box-shadow .3s;
}
.lp-input::placeholder { color: var(--neutrals--neutral-500); }
.lp-input:hover { border-color: var(--neutrals--neutral-800); }
.lp-input:focus { outline: none; border-color: var(--neutrals--neutral-700); }
.lp-form-card.featured .lp-input { background: #ffffff; border-color: #ffffff2e; }
.lp-form-note { margin-top: 14px; font-family: Inter, sans-serif; font-size: 12px; color: var(--neutrals--neutral-500); text-align: center; }
.lp-form-card.featured .lp-form-note { color: #b9c7d6; }
.btn-block { width: 100%; justify-content: center; text-align: center; }

/* inline single-field capture bar */
.lp-capture {
  position: relative;
  display: flex;
  max-width: 520px;
}
.lp-capture .lp-input { min-height: 64px; border-radius: 14px; padding-right: 170px; }
.lp-capture .primary-button { position: absolute; right: 7px; top: 7px; bottom: 7px; padding: 0 22px; display: flex; align-items: center; }

/* ---- section helpers ---------------------------------------------------- */
.lp-section-sm { padding: 84px 0; }
.lp-divider-soft { height: 1px; background: var(--neutrals--neutral-400); width: 100%; }
.buttons-row.center { justify-content: center; }
.pill-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border-radius: 999px;
  background: var(--primary); color: #fff;
  font-family: Inter, sans-serif; font-weight: 600; font-size: 16px;
  box-shadow: inset 0 2px 1.5px #fff3, inset 0 9px 11px #446891b8, 0 2px 3px #24406026;
  text-decoration: none; transition: transform .3s;
}
.pill-cta:hover { transform: scale3d(.98,.98,1.01); }

/* ---- founder navy hero panel ------------------------------------------- */
.lp-navy-panel {
  background: var(--primary);
  border-radius: 28px;
  padding: 56px;
  overflow: hidden;
}
.lp-navy-panel .display-10, .lp-navy-panel .display-9, .lp-navy-panel h1, .lp-navy-panel p { color: #fff; }

/* ---- responsive --------------------------------------------------------- */
@media (max-width: 1024px) {
  .lp-hero-split--spacious,
  .lp-hero-split--spacious.even {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 991px) {
  .lp-main {
    overflow-x: hidden;
  }
  .footer-wrapper .grid-footer---logo-form .buttons-row.right {
    justify-content: flex-start;
  }
  .section.lp-hero-compact {
    padding-top: 28px;
    padding-bottom: 64px;
  }
  .lp-c-hero-copy .paragraph {
    white-space: normal;
  }
  .lp-c-hero-copy .lp-two-line-headline {
    font-size: clamp(42px, 4.35vw, 56px);
  }
  .lp-founder--match .lp-founder__frame {
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
  }
  .lp-founder--match {
    justify-self: center;
    max-width: min(540px, 100%);
  }
  .site-header--landing .site-header__inner {
    padding: 14px 18px;
  }
  .site-header--landing .site-header__logo {
    width: min(140px, 44vw);
  }
  .site-header--landing .site-header__cta {
    display: inline-flex;
    width: auto;
    padding: 10px 14px;
    font-size: 14px;
    line-height: 22px;
  }
  .lp-hero-split, .lp-hero-split.visual-left, .lp-hero-split.even,
  .lp-hero-split.form-lead, .lp-hero-split.sidebar { grid-template-columns: 1fr; gap: 40px; }
  .lp-hero-split.sidebar { align-items: stretch; }
  .lp-checklist.grid { grid-template-columns: 1fr; }
  .lp-stats-row, .lp-stats-row.plain { grid-template-columns: 1fr; gap: 32px; }
  .lp-stats-row .lp-strip-sep { display: none; }
  .lp-stat-cards { grid-template-columns: 1fr; }
  .lp-navy-panel { padding: 36px 24px; }
  .lp-form-card { padding: 28px; }
  .lp-stat-strip {
    gap: 14px 20px;
  }
  .lp-video-stats {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .lp-footer-headline {
    font-size: clamp(32px, 9.2vw, 42px);
  }
  .lp-two-line-headline {
    font-size: clamp(32px, 9.2vw, 42px);
  }
  .lp-hero-split--spacious .lp-two-line-headline {
    font-size: clamp(32px, 9.2vw, 42px);
  }
  .lp-c-hero-copy .display-10 {
    font-size: clamp(32px, 9.2vw, 42px);
  }
  .lp-c-hero-copy .spacing.spacing-medium {
    height: 16px;
  }
  .lp-c-hero-copy + .spacing.spacing-xlarge {
    height: 24px;
  }
  .lp-hero-split,
  .lp-hero-split.visual-left,
  .lp-hero-split.even,
  .lp-hero-split.form-lead,
  .lp-hero-split.sidebar {
    gap: 32px;
  }
  .lp-tag-row {
    gap: 8px;
  }
  .lp-tag {
    padding: 7px 11px;
    font-size: 11px;
    letter-spacing: 0.8px;
  }
  .lp-stat-strip {
    align-items: stretch;
    gap: 12px;
  }
  .lp-stat-strip .lp-strip-sep {
    display: none;
  }
  .lp-strip-item {
    flex: 1 1 calc(50% - 12px);
    min-width: 132px;
  }
  .lp-video.framed {
    border-width: 6px;
    border-radius: 18px;
  }
  .lp-video-badge {
    right: 10px;
    bottom: 10px;
    gap: 9px;
    max-width: calc(100% - 20px);
    padding: 10px 12px;
    border-radius: 12px;
  }
  .lp-audio-toggle {
    top: 12px;
    right: 12px;
    min-height: 40px;
    gap: 6px;
    padding: 7px 10px 7px 8px;
    font-size: 11px;
    line-height: 16px;
  }
  .lp-audio-icon {
    width: 20px;
    height: 20px;
  }
  .lp-video-badge__icon {
    width: 34px;
    height: 34px;
  }
  .lp-video-badge .ttl {
    font-size: 12px;
  }
  .lp-video-badge .sub {
    font-size: 16px;
  }
  .lp-uplead-card {
    padding: 14px 16px;
    border-radius: 14px;
  }
  .lp-uplead-card.abs.br,
  .lp-uplead-card.abs.tr {
    right: 12px;
  }
  .lp-uplead-card.abs.bl {
    left: 12px;
  }
  .lp-uplead-card.abs.bl,
  .lp-uplead-card.abs.br {
    bottom: 18px;
  }
  .lp-uplead-card .big {
    font-size: 22px;
  }
  .lp-uplead-card .cap {
    font-size: 11px;
    letter-spacing: 0.8px;
  }
  .lp-form-card {
    border-radius: 18px;
  }
  .lp-form-grid.two { grid-template-columns: 1fr; }
  .lp-capture { flex-direction: column; }
  .lp-capture .lp-input { padding-right: 18px; }
  .lp-capture .primary-button { position: static; margin-top: 12px; justify-content: center; }
  .lp-stat-box .num { font-size: 42px; }
  .lp-section-sm { padding: 56px 0; }
}
@media (max-width: 479px) {
  .site-header--landing .site-header__inner {
    gap: 12px;
    padding: 12px 16px;
  }
  .site-header--landing .site-header__logo {
    width: min(132px, 42vw);
  }
  .site-header--landing .site-header__cta {
    flex: 0 0 auto;
    width: auto;
    min-height: 44px;
    padding: 10px 12px;
    font-size: 13px;
    line-height: 20px;
  }
  .lp-footer-headline {
    font-size: clamp(30px, 8.55vw, 36px);
  }
  .lp-footer-headline .lp-heading-line {
    white-space: normal;
  }
  .lp-two-line-headline {
    font-size: clamp(30px, 8.55vw, 36px);
  }
  .lp-hero-split--spacious .lp-two-line-headline {
    font-size: clamp(30px, 8.55vw, 36px);
  }
  .lp-two-line-headline .lp-heading-line {
    white-space: normal;
  }
  .lp-c-hero-copy .display-10 {
    font-size: clamp(30px, 8.55vw, 36px);
  }
  .section.lp-hero-compact {
    padding-top: 22px;
    padding-bottom: 52px;
  }
  .lp-c-hero-copy .spacing.spacing-medium {
    height: 12px;
  }
  .lp-c-hero-copy .display-10 + .spacing {
    height: 10px;
  }
  .lp-c-hero-copy + .spacing.spacing-xlarge {
    height: 20px;
  }
  .lp-c-hero-copy .paragraph {
    max-width: 31ch;
    margin-left: auto;
    margin-right: auto;
  }
  .lp-hero-split,
  .lp-hero-split.visual-left,
  .lp-hero-split.even,
  .lp-hero-split.form-lead,
  .lp-hero-split.sidebar {
    gap: 28px;
  }
  .lp-checklist {
    gap: 14px;
  }
  .lp-stat-strip {
    display: grid;
    grid-template-columns: 1fr;
  }
  .lp-strip-item {
    min-width: 0;
  }
  .lp-video-stats {
    margin-top: 32px;
  }
  .lp-video-badge {
    position: static;
    margin: 10px 0 0;
    box-shadow: 0 8px 18px #2440601f;
  }
  .lp-video video[controls] ~ .lp-video-badge {
    pointer-events: auto;
  }
  .lp-founder__frame,
  .lp-founder__frame.bordered {
    border-width: 6px;
    border-radius: 18px;
  }
  .lp-uplead-card__logo {
    height: 16px;
  }
  .lp-form-card {
    padding: 20px;
  }
  .lp-cal-card {
    padding: 0;
  }
  .lp-footer-middle {
    padding-top: 40px;
    padding-bottom: 36px;
  }
  .lp-footer-brand .footer-logo {
    max-width: 210px;
  }
  .footer-wrapper .grid-footer---logo-form .buttons-row.right,
  .footer-wrapper .grid-footer---logo-form .buttons-row.left {
    align-items: flex-start;
  }
  .footer-wrapper .grid-footer---logo-form .buttons-row .primary-button,
  .footer-wrapper .grid-footer---logo-form .buttons-row .secondary-button,
  .lp-video-wrap > .buttons-row .primary-button {
    width: auto;
    min-height: 44px;
  }
  .lp-footer-legal p {
    overflow-wrap: anywhere;
  }
}
