@import url("https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600&family=Inter:wght@400;500;600&display=swap");

:root {
  --navy: #0c1b36;
  --teal: #083f44;
  --teal-soft: #295c54;
  --green: #1ab35c;
  --mint: #9ddf80;
  --yellow: #fdff9a;
  --white: #fefefe;
  --surface: #ffffff;
  --surface-soft: #f7faf8;
  --surface-tint: #f2faf6;
  --body: rgba(12, 27, 54, 0.8);
  --muted: rgba(12, 27, 54, 0.62);
  --border: #e5e7eb;
  --border-card: #f3f4f6;
  --border-strong: #d8dfdc;
  --shadow-sm: 0 8px 30px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 18px 48px rgba(12, 27, 54, 0.08);
  --shadow-lg: 0 28px 72px rgba(12, 27, 54, 0.12);
  --shadow-xl: 0 24px 54px rgba(26, 179, 92, 0.28);
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1180px;
  --product-preview-height: clamp(480px, 52vh, 540px);
  --product-preview-sticky-top: max(104px, calc((100vh - var(--product-preview-height)) / 2 + 52px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  font-family: Geist, "Geist Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy);
  letter-spacing: -0.025em;
}

p,
a,
span,
button,
label,
input,
select,
textarea {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

p {
  font-weight: 400;
  line-height: 1.6;
}

strong,
b {
  font-weight: 500;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.sr-only {
  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: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 14px clamp(20px, 5vw, 56px);
  color: var(--navy);
  background: rgba(254, 254, 254, 0);
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled,
.nav-open .site-header {
  background: rgba(254, 254, 254, 0.96);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 24px rgba(12, 27, 54, 0.04);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand span {
  font-size: 1.04rem;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(28px, 2.6vw, 40px);
  color: var(--body);
  font-size: 0.94rem;
  font-weight: 500;
}

.site-nav a,
.footer-links a {
  text-decoration: none;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--navy);
}

.header-cta {
  justify-self: end;
  padding: 10px 16px;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 300ms cubic-bezier(0.22, 1, 0.36, 1), background-color 300ms ease;
}

.header-cta:hover {
  transform: scale(1.05);
  background: #159f50;
  box-shadow: var(--shadow-xl);
}

.nav-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 300ms cubic-bezier(0.22, 1, 0.36, 1), background-color 300ms ease, border-color 300ms ease;
}

.button:hover {
  transform: scale(1.05);
}

.button.primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 10px 24px rgba(26, 179, 92, 0.18);
}

.button.primary:hover {
  background: #159f50;
  box-shadow: var(--shadow-xl);
}

.button.secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.button.secondary:hover {
  border-color: rgba(26, 179, 92, 0.28);
  box-shadow: var(--shadow-md);
}

.eyebrow,
.scene-label,
.panel-kicker,
.board-label {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transform: translateZ(0);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1fr);
  align-items: center;
  gap: clamp(34px, 4vw, 60px);
  width: 100%;
  min-height: calc(100vh - 72px);
  margin: -72px 0 0;
  padding: clamp(128px, 14vw, 178px) max(24px, calc((100vw - 1280px) / 2)) clamp(72px, 9vw, 118px);
  color: var(--navy);
  background: #fefefe;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: auto;
  padding: 0;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(3.05rem, 4.35vw, 5.2rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
}

.hero-copy {
  max-width: 600px;
  margin: 24px 0 0;
  color: var(--body);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.closed-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.hero-product {
  position: relative;
  z-index: 1;
  isolation: isolate;
  display: grid;
  min-height: 520px;
  align-items: center;
  justify-items: center;
}

.hero-product::before {
  content: "";
  position: absolute;
  inset: 6% -8% 2% -6%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 58% 50%, rgba(157, 223, 128, 0.48) 0 22%, rgba(157, 223, 128, 0) 58%),
    radial-gradient(ellipse at 44% 58%, rgba(8, 63, 68, 0.52) 0 18%, rgba(8, 63, 68, 0) 62%);
  filter: blur(112px);
  opacity: 0.14;
  transform: scale(1);
  animation: hero-window-glow-pulse 8s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-app-window {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  overflow: hidden;
  padding-top: 40px;
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.78);
  border-radius: 24px;
  box-shadow:
    0 54px 120px rgba(12, 27, 54, 0.2),
    0 22px 54px rgba(8, 63, 68, 0.12);
}

.hero-window-bar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 40px;
  padding: 0 17px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfa 100%);
  border-bottom: 1px solid rgba(12, 27, 54, 0.07);
}

.hero-window-bar span {
  width: 9px;
  height: 9px;
  background: rgba(12, 27, 54, 0.16);
  border-radius: 999px;
}

.hero-app-window::before {
  content: "";
  display: block;
  aspect-ratio: 1448 / 1080;
}

.hero-window-video {
  position: absolute;
  inset: 40px 0 0;
  width: 100%;
  height: calc(100% - 40px);
  border: 0;
  background: #ffffff;
  object-fit: contain;
}

.hero-window-video::-webkit-media-controls,
.hero-window-video::-webkit-media-controls-enclosure {
  display: none !important;
}

@keyframes hero-window-glow-pulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.05);
  }
}

@keyframes teal-blob-orbit {
  0% {
    transform: translate3d(-10%, -8%, 0) scale(1);
  }

  25% {
    transform: translate3d(48%, -3%, 0) scale(1.08);
  }

  50% {
    transform: translate3d(60%, 28%, 0) scale(1.02);
  }

  75% {
    transform: translate3d(8%, 34%, 0) scale(1.1);
  }

  100% {
    transform: translate3d(-10%, -8%, 0) scale(1);
  }
}

.emotional-hook {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(96px, 13vw, 176px) max(20px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--navy);
}

.emotional-hook p {
  max-width: 1080px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 7vw, 7.8rem);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.section,
.feature-showcase,
.screenshot-section,
.audience-section,
.trust-section,
.ready-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(84px, 10vw, 136px) 0;
  background: var(--white);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 38px;
}

.section-heading.compact {
  max-width: 760px;
}

.section-heading h2,
.legal-page h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.35rem, 4vw, 4.6rem);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.section-heading p:not(.eyebrow),
.mode-card p,
.audience-grid p,
.trust-grid p,
.board-column p {
  color: var(--body);
  line-height: 1.72;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 20px 0 0;
  font-size: 1.08rem;
}

.mode-layout,
.audience-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.mode-card,
.audience-grid article,
.trust-grid article,
.screenshot-card,
.board-column {
  background: var(--surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 300ms cubic-bezier(0.22, 1, 0.36, 1), border-color 300ms ease, background-color 300ms ease;
}

.mode-card,
.audience-grid article,
.trust-grid article {
  padding: clamp(28px, 3vw, 40px);
}

.mode-card:hover,
.audience-grid article:hover,
.trust-grid article:hover,
.screenshot-card:hover {
  transform: translateY(-4px);
  border-color: rgba(26, 179, 92, 0.22);
  box-shadow: var(--shadow-md);
}

.mode-card h3,
.audience-grid h3,
.trust-grid h3,
.board-column h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.28rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.skill-model-section {
  overflow: hidden;
}

.skill-marquee {
  position: relative;
  display: grid;
  gap: 18px;
  margin-top: 42px;
  padding: 10px 0;
}

.skill-marquee::before,
.skill-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(18vw, 160px);
  pointer-events: none;
}

.skill-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), rgba(254, 254, 254, 0));
}

.skill-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), rgba(254, 254, 254, 0));
}

.skill-track {
  display: flex;
  width: max-content;
  gap: 14px;
  will-change: transform;
}

.skill-track span {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  padding: 15px 20px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border-card);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: clamp(0.95rem, 1.2vw, 1.06rem);
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.skill-track-forward {
  animation: skill-marquee-left 34s linear infinite;
}

.skill-track-reverse {
  animation: skill-marquee-right 38s linear infinite;
}

@keyframes skill-marquee-left {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - 7px), 0, 0);
  }
}

@keyframes skill-marquee-right {
  from {
    transform: translate3d(calc(-50% - 7px), 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.feature-showcase {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--teal);
  border-top: 1px solid rgba(254, 254, 254, 0.08);
  border-bottom: 1px solid rgba(254, 254, 254, 0.08);
}

.feature-showcase::before {
  content: "";
  position: absolute;
  top: 18%;
  left: 8%;
  z-index: 0;
  width: clamp(360px, 46vw, 780px);
  height: clamp(360px, 46vw, 780px);
  pointer-events: none;
  background: rgba(26, 179, 92, 0.05);
  border-radius: 999px;
  filter: blur(76px);
  transform: translate3d(-10%, -8%, 0);
  animation: teal-blob-orbit 44s ease-in-out infinite;
  will-change: transform;
}

.feature-showcase .mode-layout,
.feature-showcase .section-heading {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
}

.mode-card {
  min-height: 320px;
  color: var(--white);
  background: rgba(254, 254, 254, 0.05);
  border-color: rgba(254, 254, 254, 0.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px);
}

.mode-card.featured {
  background: rgba(254, 254, 254, 0.08);
  border-color: rgba(254, 254, 254, 0.18);
}

.mode-card ul {
  padding-left: 18px;
  margin: 22px 0 0;
  color: var(--white);
  line-height: 1.72;
}

.feature-showcase .eyebrow,
.feature-showcase .section-heading h2,
.feature-showcase .section-heading p,
.feature-showcase .mode-card h3,
.feature-showcase .mode-card p {
  color: var(--white);
}

.feature-showcase .eyebrow {
  opacity: 1;
}

.feature-showcase .mode-card:hover {
  border-color: rgba(254, 254, 254, 0.22);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.mode-card li + li {
  margin-top: 10px;
}

.product-action-layout {
  min-height: calc(120vh + var(--product-preview-height));
}

.product-pin-frame {
  position: sticky;
  top: 104px;
}

.product-pin-frame .section-heading {
  margin-bottom: clamp(34px, 5vh, 56px);
}

.product-sticky-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: clamp(40px, 6vw, 86px);
  align-items: center;
  min-height: var(--product-preview-height);
}

.product-video-wrap {
  display: grid;
  min-height: var(--product-preview-height);
  gap: 16px;
  align-content: center;
  place-items: center;
}

.product-video-shell {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 38px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  box-shadow:
    0 46px 110px rgba(12, 27, 54, 0.18),
    0 18px 44px rgba(8, 63, 68, 0.1);
}

.product-window-bar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 38px;
  padding: 0 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfa 100%);
  border-bottom: 1px solid rgba(12, 27, 54, 0.07);
}

.product-window-bar span {
  width: 9px;
  height: 9px;
  background: rgba(12, 27, 54, 0.16);
  border-radius: 999px;
}

.product-video-shell::before {
  content: "";
  display: block;
  aspect-ratio: 1448 / 1080;
}

.product-video {
  position: absolute;
  inset: 38px 0 0;
  width: 100%;
  height: calc(100% - 38px);
  border: 0;
  background: #ffffff;
  object-fit: contain;
}

.product-video::-webkit-media-controls {
  display: none !important;
}

.product-video::-webkit-media-controls-enclosure {
  display: none !important;
}

.product-phone {
  position: relative;
  width: min(360px, 100%);
  min-height: 720px;
  padding: 18px;
  color: var(--navy);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfa 100%);
  border: 1px solid var(--border-card);
  border-radius: 42px;
  box-shadow: 0 30px 90px rgba(12, 27, 54, 0.14);
  overflow: hidden;
}

.product-phone::before {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border: 1px solid rgba(12, 27, 54, 0.06);
  border-radius: 34px;
}

.phone-status,
.phone-brand,
.phone-screen {
  position: relative;
  z-index: 1;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  padding: 4px 8px 14px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 500;
}

.phone-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 8px 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.phone-mark {
  width: 25px;
  height: 25px;
  border: 5px solid var(--green);
  border-right-color: var(--mint);
  box-shadow: inset 8px -8px 0 -5px var(--teal);
}

.phone-screen {
  display: grid;
  gap: 14px;
  padding: 16px;
  background: #f4f7f6;
  border-radius: 28px;
}

.scenario-panel,
.chat-bubble,
.feedback-card {
  background: var(--surface);
  border: 1px solid var(--border-card);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.scenario-panel {
  padding: 20px;
}

.phone-kicker,
.feedback-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scenario-panel h3,
.feedback-card h4 {
  margin: 0;
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.scenario-panel p,
.feedback-card p,
.feedback-card li {
  color: var(--body);
  line-height: 1.58;
}

.scenario-panel strong {
  display: block;
  margin-top: 16px;
  color: var(--green);
}

.chat-stream {
  display: grid;
  gap: 12px;
}

.chat-bubble {
  justify-self: end;
  max-width: 88%;
  padding: 14px 16px;
  color: var(--white);
  background: var(--teal);
  border-color: rgba(8, 63, 68, 0.12);
  transform: translate3d(0, 12px, 0) scale(0.96);
  opacity: 0;
  transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1), transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.typing-indicator {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  padding: 11px 13px;
  background: var(--surface);
  border: 1px solid var(--border-card);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transform: translate3d(0, 8px, 0);
  opacity: 0;
  transition: opacity 420ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.typing-indicator span {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 999px;
  animation: typing-pulse 1.25s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 140ms;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 280ms;
}

.feedback-card {
  padding: 18px;
  transform: translate3d(0, 14px, 0);
  opacity: 0;
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1), transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.feedback-card ul {
  padding-left: 18px;
  margin: 12px 0 0;
}

.product-phone[data-phase="response"] .user-bubble,
.product-phone[data-phase="thinking"] .user-bubble,
.product-phone[data-phase="feedback"] .user-bubble {
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
}

.product-phone[data-phase="thinking"] .typing-indicator {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.product-phone[data-phase="feedback"] .typing-indicator {
  transform: translate3d(0, -6px, 0);
  opacity: 0;
}

.product-phone[data-phase="feedback"] .feedback-card {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.product-scroll-mask {
  height: var(--product-preview-height);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.product-scroll-steps {
  display: grid;
  gap: clamp(26px, 5vh, 44px);
  will-change: transform;
}

.product-step {
  max-width: 520px;
  min-height: 0;
  padding: clamp(22px, 3vw, 34px) 0 clamp(22px, 3vw, 34px) clamp(18px, 2.6vw, 30px);
  border-left: 1px solid var(--border);
  opacity: 0.3;
  filter: blur(1.2px);
  transition: opacity 420ms ease, filter 420ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1), border-color 420ms ease;
}

.product-step.is-active {
  opacity: 1;
  filter: blur(0);
  transform: translateX(8px);
  border-left-color: var(--green);
}

.product-step span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--green);
  font-weight: 600;
}

.product-step h3,
.audience-item h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.7rem, 2.6vw, 2.65rem);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.product-step h3 {
  font-size: clamp(1.5rem, 2.1vw, 2.2rem);
}

.audience-item h3 span {
  color: var(--green);
  font-size: 0.68em;
  letter-spacing: 0;
}

.product-step p,
.audience-item p {
  max-width: 600px;
  margin: 16px 0 0;
  color: var(--body);
  font-size: 1.08rem;
  line-height: 1.72;
}

.audience-item .audience-roles {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

@keyframes typing-pulse {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.35;
  }

  50% {
    transform: translateY(-3px);
    opacity: 1;
  }
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
  align-items: start;
}

.screenshot-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  overflow: hidden;
  padding: 12px;
}

.screenshot-card img {
  width: 100%;
  height: auto;
}

.screenshot-card img {
  border: 1px solid rgba(12, 27, 54, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(12, 27, 54, 0.08);
}

.screenshot-card figcaption {
  padding: 18px 10px 8px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.6;
}

.screenshot-card.featured {
  background: var(--surface);
  border-color: var(--border-card);
}

.screenshot-card.tall {
  grid-row: span 2;
}

.screenshot-card.wide {
  grid-column: span 2;
}

.audience-section {
  background: var(--white);
}

.audience-story {
  display: grid;
  grid-template-columns: minmax(560px, 2fr) minmax(280px, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  min-height: calc(245vh + 606px);
}

.audience-left {
  position: sticky;
  top: 108px;
  display: grid;
  gap: clamp(18px, 3vw, 28px);
}

.audience-visual {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  gap: 18px;
  height: auto;
  min-height: 0;
  padding: clamp(26px, 3vw, 40px);
  color: var(--white);
  background:
    radial-gradient(circle at 76% 18%, rgba(26, 179, 92, 0.18), rgba(26, 179, 92, 0) 32%),
    linear-gradient(145deg, var(--navy), var(--teal));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  box-shadow: 0 30px 90px rgba(12, 27, 54, 0.16);
  overflow: hidden;
  contain: paint;
  transition: opacity 220ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.audience-visual::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 320px;
  height: 320px;
  background: rgba(157, 223, 128, 0.1);
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
}

.audience-visual > * {
  position: relative;
  z-index: 1;
}

.audience-visual.is-swapping {
  opacity: 0.64;
  transform: translateY(6px);
}

.engine-module {
  padding: clamp(16px, 2vw, 20px);
  background: rgba(254, 254, 254, 0.07);
  border: 1px solid rgba(254, 254, 254, 0.12);
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(254, 254, 254, 0.08);
  backdrop-filter: blur(18px);
}

.engine-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: rgba(254, 254, 254, 0.62);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.engine-tags {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(5px, 0.65vw, 7px);
  min-width: 0;
}

.engine-tags span {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  min-height: 28px;
  padding: 6px clamp(7px, 0.75vw, 9px);
  color: var(--mint);
  background: rgba(157, 223, 128, 0.08);
  border: 1px solid rgba(157, 223, 128, 0.18);
  border-radius: 999px;
  font-size: clamp(0.68rem, 0.78vw, 0.78rem);
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.engine-app-card {
  display: grid;
  min-height: 0;
  height: 405px;
  align-self: start;
  gap: 16px;
  padding: clamp(20px, 2.6vw, 28px);
  color: var(--navy);
  background: #ffffff;
  border: 1px solid rgba(12, 27, 54, 0.06);
  border-radius: 18px;
  box-shadow: 0 24px 68px rgba(12, 27, 54, 0.18);
}

.engine-scenario {
  display: grid;
  min-height: 0;
  align-content: start;
  gap: clamp(12px, 1.5vw, 16px);
}

.engine-scenario h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.engine-scenario p {
  margin: 0;
  color: var(--navy);
  font-size: clamp(0.94rem, 1vw, 1.02rem);
  line-height: 1.55;
}

.engine-scenario .scenario-lede {
  color: rgba(8, 63, 68, 0.82);
  font-style: italic;
  line-height: 1.58;
}

.engine-scenario strong {
  display: block;
  color: var(--green);
  font-weight: 500;
  line-height: 1.35;
}

.scenario-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.scenario-skills span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 12px;
  color: var(--green);
  background: rgba(26, 179, 92, 0.08);
  border: 1px solid rgba(26, 179, 92, 0.2);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.2;
}

.audience-list-shell {
  position: sticky;
  top: 108px;
  height: 606px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.audience-list {
  display: grid;
  gap: clamp(18px, 3vh, 28px);
  will-change: transform;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.audience-item {
  min-height: 0;
  padding: clamp(24px, 4vh, 42px) 0 clamp(24px, 4vh, 42px) clamp(18px, 2.6vw, 34px);
  border-left: 1px solid var(--border);
  opacity: 0.2;
  filter: blur(1.6px);
  transition: opacity 420ms ease, filter 420ms ease, border-color 420ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.audience-item + .audience-item {
  border-top: 1px solid var(--border-card);
}

.audience-item.is-active {
  opacity: 1;
  filter: blur(0);
  border-left-color: var(--green);
  transform: translateX(8px);
}

.audience-list .audience-item.reveal-ready.is-visible:not(.is-active) {
  opacity: 0.2;
  filter: blur(1.6px);
  transform: translateX(0);
}

.audience-list .audience-item.reveal-ready.is-visible.is-active {
  opacity: 1;
  filter: blur(0);
  transform: translateX(8px);
}

.context-callout {
  display: grid;
  grid-template-columns: minmax(190px, 0.36fr) 1fr;
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
  margin-top: 0;
  padding: clamp(24px, 3vw, 34px);
  color: var(--navy);
  background: var(--surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.context-callout span {
  color: var(--teal);
  font-size: 1.36rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.context-callout p {
  margin: 0;
  color: var(--body);
  line-height: 1.72;
}

.trust-section,
.ready-section {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - var(--max)) / 2));
  background: var(--surface-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-section .section-heading,
.trust-section .trust-grid,
.ready-section > * {
  width: min(var(--max), 100%);
}

.trust-legal-links {
  width: min(var(--max), 100%);
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  text-align: center;
}

.trust-legal-links a {
  color: rgba(12, 27, 54, 0.74);
  text-decoration: underline;
  text-decoration-color: rgba(12, 27, 54, 0.22);
  text-underline-offset: 3px;
  transition: color 220ms ease, text-decoration-color 220ms ease;
}

.trust-legal-links a:hover {
  color: var(--navy);
  text-decoration-color: rgba(12, 27, 54, 0.62);
}

.ready-section {
  display: grid;
  min-height: auto;
  padding-block: clamp(128px, 14vw, 176px);
  place-items: center;
  text-align: center;
  background: var(--navy);
  border: 0;
}

.ready-content {
  width: min(820px, 100%);
  margin: 0 auto;
}

.ready-content h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 5.4vw, 5.8rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.ready-content p {
  max-width: 42rem;
  margin: 24px auto 40px;
  color: rgba(229, 231, 235, 0.82);
  font-size: clamp(1.18rem, 1.6vw, 1.36rem);
  line-height: 1.65;
}

.ready-cta {
  min-height: 58px;
  padding: 17px 32px;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 20px 44px rgba(26, 179, 92, 0.22);
  font-size: 1.08rem;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1), background-color 260ms ease;
}

.ready-cta:hover {
  transform: scale(1.05);
  background: #18a955;
  box-shadow: 0 28px 64px rgba(26, 179, 92, 0.3);
}

.ready-content span {
  display: block;
  margin-top: 18px;
  color: rgba(156, 163, 175, 0.86);
  font-size: 0.9rem;
  line-height: 1.5;
}

.site-footer {
  color: var(--navy);
  background: var(--white);
  border-top: 1px solid var(--border);
}

.site-footer p {
  margin: 0;
}

.footer-inner {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 48px 24px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  color: var(--body);
  font-size: 0.94rem;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--green);
}

.footer-divider {
  width: 100%;
  margin: 32px 0;
  border-top: 1px solid #e5e7eb;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}

.footer-tagline {
  margin-bottom: 8px !important;
  color: #6b7280;
  font-size: 0.9rem;
}

.footer-copyright {
  color: #9ca3af !important;
  font-size: 0.9rem;
}

.footer-disclaimer {
  max-width: 448px;
  color: #9ca3af !important;
  font-size: 0.78rem;
  line-height: 1.65;
  text-align: left;
}

@media (min-width: 768px) {
  .footer-top,
  .footer-bottom {
    flex-direction: row;
  }

  .footer-disclaimer {
    text-align: right;
  }
}

.legal-header {
  grid-template-columns: auto;
  justify-content: start;
  background: rgba(254, 254, 254, 0.96);
  border-bottom-color: var(--border);
}

.legal-page {
  width: min(768px, calc(100% - 40px));
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: 96px 0;
  background: var(--white);
}

.legal-page h1 {
  margin: 0;
  color: var(--navy);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.legal-page h2,
.legal-page h3 {
  margin: 48px 0 16px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.legal-page h2 {
  font-size: 1.5rem;
}

.legal-page h3 {
  font-size: 1.25rem;
}

.legal-page p:not(.eyebrow) {
  margin: 0;
  color: rgba(75, 85, 99, 1);
  font-size: 1.04rem;
  line-height: 1.78;
}

.legal-page section + section {
  margin-top: 4px;
}

.legal-updated {
  margin-top: 16px !important;
  color: var(--muted) !important;
  font-size: 0.96rem !important;
}

.legal-page a {
  color: rgba(12, 27, 54, 0.82);
  text-decoration: underline;
  text-decoration-color: rgba(12, 27, 54, 0.24);
  text-underline-offset: 3px;
  transition: color 220ms ease, text-decoration-color 220ms ease;
}

.legal-page a:hover {
  color: var(--navy);
  text-decoration-color: rgba(12, 27, 54, 0.64);
}

.reveal-ready {
  opacity: 0.01;
  transform: translateY(16px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

.product-step.reveal-ready,
.product-step.reveal-ready.is-visible {
  opacity: 0.3;
  filter: blur(1.2px);
  transform: translateX(0);
}

.product-step.reveal-ready.is-active,
.product-step.reveal-ready.is-visible.is-active {
  opacity: 1;
  filter: blur(0);
  transform: translateX(8px);
}

@media (max-width: 1080px) {
  :root {
    --stacked-sticky-top: 88px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero h1 {
    max-width: 860px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-product {
    min-height: auto;
    display: grid;
    justify-items: center;
  }

  .hero-app-window {
    width: min(760px, 100%);
  }

  .trust-grid,
  .product-sticky-stage,
  .audience-story {
    grid-template-columns: 1fr;
  }

  .audience-story {
    min-height: auto;
  }

  .product-action-layout {
    min-height: auto;
  }

  .product-pin-frame,
  .product-scroll-mask,
  .product-phone-wrap,
  .audience-left,
  .audience-list-shell {
    position: static;
  }

  .audience-list-shell {
    height: auto;
    overflow: visible;
    padding-bottom: clamp(180px, 38vh, 360px);
    -webkit-mask-image: none;
    mask-image: none;
  }

  .audience-list {
    transform: none !important;
  }

  .product-scroll-mask {
    height: auto;
    overflow: visible;
    padding-bottom: clamp(180px, 38vh, 360px);
    -webkit-mask-image: none;
    mask-image: none;
  }

  .product-scroll-steps {
    transform: none !important;
  }

  .product-sticky-stage {
    gap: clamp(28px, 5vw, 44px);
  }

  .product-video-wrap {
    position: sticky;
    top: var(--stacked-sticky-top);
    z-index: 4;
    min-height: auto;
    padding: 0 0 18px;
    background: linear-gradient(180deg, var(--white) 0%, rgba(254, 254, 254, 0.96) 78%, rgba(254, 254, 254, 0));
  }

  .product-video-shell {
    width: min(760px, 100%);
    margin-inline: auto;
  }

  .product-phone-wrap {
    min-height: auto;
  }

  .product-step,
  .audience-item {
    min-height: auto;
    opacity: 1;
    filter: none;
    transform: none !important;
  }

  .product-step.reveal-ready,
  .product-step.reveal-ready.is-visible,
  .product-step.reveal-ready.is-active,
  .product-step.reveal-ready.is-visible.is-active {
    opacity: 1;
    filter: none;
    transform: none !important;
  }

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

  .screenshot-card.tall,
  .screenshot-card.wide,
  .screenshot-card.featured {
    grid-column: auto;
    grid-row: auto;
  }

  .context-callout {
    grid-template-columns: 1fr;
  }

  .skill-track span {
    min-height: 50px;
    padding: 13px 16px;
  }

  .audience-story {
    display: flex;
    flex-direction: column;
  }

  .audience-left {
    display: contents;
  }

  .audience-visual {
    position: sticky;
    top: var(--stacked-sticky-top);
    z-index: 4;
    order: 1;
  }

  .audience-list-shell {
    order: 2;
  }

  .context-callout {
    order: 3;
  }
}

@media (max-width: 820px) {
  :root {
    --radius-lg: 18px;
    --radius-md: 14px;
    --stacked-sticky-top: 80px;
  }

  .site-header {
    grid-template-columns: auto auto;
    min-height: 68px;
    padding-inline: 18px;
    background: rgba(254, 254, 254, 0.96);
    border-bottom-color: var(--border);
    backdrop-filter: blur(16px);
  }

  .legal-header {
    grid-template-columns: auto;
  }

  .nav-toggle {
    justify-self: end;
    display: inline-grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--white);
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--navy);
  }

  .site-nav {
    position: fixed;
    inset: 68px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
  }

  .site-nav a {
    padding: 12px;
  }

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

  .header-cta {
    display: none;
  }

  .hero {
    width: 100%;
    margin-top: -68px;
    gap: 28px;
    padding: 104px 18px 50px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 9.5vw, 3.65rem);
    line-height: 1.1;
    text-wrap: balance;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .button {
    min-height: 46px;
    padding: 12px 17px;
  }

  .closed-note {
    margin-top: 14px;
    font-size: 0.92rem;
  }

  .hero-product {
    width: 100%;
  }

  .hero-product::before {
    inset: 14% 8% 6%;
    filter: blur(62px);
  }

  .hero-app-window {
    border-radius: 18px;
    padding-top: 32px;
    box-shadow: 0 24px 56px rgba(12, 27, 54, 0.12);
  }

  .hero-window-bar {
    height: 32px;
    padding-inline: 14px;
  }

  .hero-window-video {
    inset: 32px 0 0;
    height: calc(100% - 32px);
  }

  .section,
  .screenshot-section,
  .audience-section {
    width: min(var(--max), calc(100% - 32px));
  }

  .section,
  .emotional-hook,
  .feature-showcase,
  .screenshot-section,
  .audience-section,
  .trust-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .feature-showcase,
  .trust-section,
  .ready-section {
    padding-inline: 16px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2,
  .legal-page h1 {
    font-size: clamp(2rem, 8.8vw, 3rem);
    line-height: 1.12;
  }

  .section-heading p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .emotional-hook p {
    font-size: clamp(2.25rem, 10vw, 3.35rem);
    line-height: 1.16;
  }

  .mode-layout,
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .mode-card,
  .trust-grid article {
    min-height: auto;
    padding: 24px;
    border-radius: 18px;
  }

  .mode-card ul {
    margin-top: 16px;
  }

  .product-sticky-stage {
    gap: 22px;
  }

  .product-video-wrap {
    display: block;
  }

  .product-video-shell {
    border-radius: 18px;
    box-shadow: 0 24px 56px rgba(12, 27, 54, 0.12);
  }

  .product-window-bar {
    height: 32px;
  }

  .product-video-shell {
    padding-top: 32px;
  }

  .product-video {
    inset: 32px 0 0;
    height: calc(100% - 32px);
  }

  .product-scroll-steps {
    gap: 14px;
  }

  .product-step {
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--border-card);
    border-left: 3px solid rgba(26, 179, 92, 0.36);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    opacity: 1;
    filter: none;
    transform: none !important;
  }

  .product-step.reveal-ready,
  .product-step.reveal-ready.is-visible,
  .product-step.reveal-ready.is-active,
  .product-step.reveal-ready.is-visible.is-active {
    opacity: 1;
    filter: none;
    transform: none !important;
  }

  .product-step h3,
  .audience-item h3 {
    font-size: clamp(1.38rem, 6vw, 1.85rem);
    line-height: 1.18;
  }

  .product-step p,
  .audience-item p {
    margin-top: 12px;
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .audience-story {
    gap: 20px;
  }

  .audience-left {
    gap: 16px;
  }

  .audience-visual {
    padding: 20px;
    border-radius: 22px;
    box-shadow: 0 24px 64px rgba(12, 27, 54, 0.16);
  }

  .engine-module {
    padding: 16px;
    border-radius: 16px;
  }

  .engine-tags {
    flex-wrap: wrap;
  }

  .engine-app-card {
    height: auto;
    min-height: 0;
    padding: 20px;
    border-radius: 16px;
  }

  .engine-scenario h3 {
    font-size: 1.45rem;
  }

  .engine-scenario p {
    font-size: 0.96rem;
    line-height: 1.54;
  }

  .scenario-skills {
    gap: 8px;
  }

  .scenario-skills span {
    min-height: 30px;
    padding: 6px 10px;
    font-size: 0.82rem;
  }

  .context-callout {
    gap: 12px;
    padding: 22px;
    border-radius: 18px;
  }

  .context-callout span {
    font-size: 1.18rem;
  }

  .audience-list {
    gap: 14px;
  }

  .audience-item {
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--border-card);
    border-left: 3px solid rgba(26, 179, 92, 0.28);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    transform: none !important;
  }

  .audience-item + .audience-item {
    border-top: 1px solid var(--border-card);
  }

  .audience-item.is-active {
    transform: none;
  }

  .audience-list .audience-item.reveal-ready.is-visible.is-active,
  .audience-list .audience-item.reveal-ready.is-visible:not(.is-active) {
    transform: none;
    filter: none;
    opacity: 1;
  }

  .audience-item .audience-roles {
    font-size: 0.88rem;
  }

  .ready-content h2 {
    font-size: clamp(2.3rem, 10vw, 3.4rem);
    line-height: 1.08;
  }

  .ready-content p {
    margin: 20px auto 30px;
    font-size: 1.04rem;
  }

}

@media (max-width: 560px) {
  :root {
    --stacked-sticky-top: 76px;
  }

  .site-header {
    min-height: 64px;
    padding: 12px 16px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .site-nav {
    inset: 64px 12px auto;
  }

  .brand span {
    font-size: 1rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero {
    margin-top: -64px;
    padding: 98px 16px 44px;
  }

  .hero h1 {
    font-size: clamp(2.18rem, 10vw, 2.72rem);
    line-height: 1.12;
  }

  .hero-product,
  .audience-grid,
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .hero-product {
    display: grid;
  }

  .hero-app-window {
    border-radius: 16px;
  }

  .section,
  .emotional-hook,
  .feature-showcase,
  .screenshot-section,
  .audience-section,
  .trust-section,
  .ready-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .section-heading h2,
  .emotional-hook p,
  .ready-content h2 {
    font-size: clamp(2rem, 10.5vw, 2.75rem);
  }

  .ready-section {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .product-phone {
    min-height: auto;
  }

  .product-video-shell,
  .product-step,
  .audience-item,
  .context-callout,
  .mode-card,
  .trust-grid article {
    border-radius: 16px;
  }

  .audience-visual {
    padding: 18px;
    border-radius: 20px;
  }

  .engine-app-card {
    padding: 18px;
  }

  .engine-scenario {
    gap: 10px;
  }

  .engine-scenario .scenario-lede,
  .engine-scenario p:not(.scenario-lede) {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
  }

  .engine-scenario .scenario-lede {
    -webkit-line-clamp: 3;
  }

  .engine-scenario p:not(.scenario-lede) {
    -webkit-line-clamp: 4;
  }

  .footer-inner {
    padding: 40px 20px;
  }

  .footer-links {
    justify-content: center;
    gap: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
