
:root {
  --navy-950: #061520;
  --navy-900: #071827;
  --navy-850: #0a2132;
  --navy-800: #0d2a3e;
  --ink: #102231;
  --ink-soft: #324b5d;
  --muted: #617485;
  --surface: #ffffff;
  --surface-soft: #f4f8fb;
  --surface-blue: #edf6fb;
  --line: #dce7ee;
  --blue: #2f7dd3;
  --blue-light: #58a6e7;
  --green: #60b84a;
  --green-dark: #4b9e39;
  --mint: #bff4c5;
  --teal: #2f9b99;
  --amber: #e7a83f;
  --shadow-sm: 0 10px 30px rgba(9, 34, 51, 0.08);
  --shadow-md: 0 22px 70px rgba(3, 20, 32, 0.16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shell: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 4.3vw, 4.1rem);
  font-weight: 760;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 4vw, 3.75rem);
  font-weight: 740;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.24rem;
  font-weight: 720;
}

p {
  color: var(--muted);
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 10px;
  color: white;
  background: var(--navy-900);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #86d7d3;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: #071827;
  background: var(--green);
  box-shadow: 0 12px 30px rgba(96, 184, 74, 0.22);
  font-size: 0.93rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #6cc955;
  box-shadow: 0 16px 34px rgba(96, 184, 74, 0.3);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(88, 166, 231, 0.55);
  outline-offset: 4px;
}

.button-small {
  min-height: 44px;
  padding-inline: 20px;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.24);
  color: white;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: none;
}

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

.button-secondary:hover {
  background: var(--navy-800);
  box-shadow: var(--shadow-sm);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(220, 231, 238, 0.82);
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  height: 100%;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  width: 145px;
}

.brand img {
  width: 100%;
  height: auto;
}

.product-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 23px;
  border-left: 1px solid var(--line);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.product-icon {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  box-shadow: 0 7px 18px rgba(47, 125, 211, 0.26);
}

.product-icon span {
  width: 14px;
  height: 14px;
  border: 3px solid white;
  border-radius: 50%;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.desktop-nav a {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.desktop-nav a:hover {
  color: var(--blue);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 42px;
  color: white;
  background:
    linear-gradient(120deg, rgba(47, 125, 211, 0.11), transparent 45%),
    radial-gradient(circle at 78% 13%, rgba(47, 155, 153, 0.19), transparent 27%),
    linear-gradient(145deg, var(--navy-950), var(--navy-900) 50%, #0d2b3f);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(88, 166, 231, 0.25);
  pointer-events: none;
}

.hero-orb-one {
  top: -390px;
  right: -220px;
  width: 720px;
  height: 720px;
}

.hero-orb-two {
  right: 40px;
  bottom: -420px;
  width: 620px;
  height: 620px;
  border-color: rgba(96, 184, 74, 0.25);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(500px, 0.95fr);
  align-items: center;
  gap: 58px;
}

.hero-copy {
  padding-bottom: 70px;
}

.hero h1 {
  max-width: 720px;
  color: white;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 30px;
  color: #c9d9e4;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: #aebfcb;
  font-size: 0.88rem;
}

.proof-check {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(191, 244, 197, 0.4);
  border-radius: 50%;
  color: var(--mint);
  background: rgba(96, 184, 74, 0.1);
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  inset: 15% 5% 5%;
  border-radius: 50%;
  content: "";
  background: rgba(90, 255, 105, 0.34);
  filter: blur(65px);
}

.hero-visual img {
  width: 115%;
  max-width: none;
  margin-left: -8%;
  filter: drop-shadow(0 28px 35px rgba(0, 0, 0, 0.3));
}

.visual-label {
  position: absolute;
  z-index: 3;
  top: 4%;
  right: 4%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #d8e5ec;
  background: rgba(5, 20, 31, 0.72);
  box-shadow: var(--shadow-sm);
  font-size: 0.72rem;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  backdrop-filter: blur(12px);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(96, 184, 74, 0.15);
}

.scope-strip {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(14px);
}

.scope-strip span {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  color: #d3e2ea;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.78rem;
  font-weight: 700;
}

.intro-section {
  background: var(--surface-soft);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 54px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered p {
  max-width: 690px;
  margin: 0 auto;
}

.section-heading.split {
  display: grid;
  max-width: none;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 70px;
}

.section-heading.split h2 {
  color: white;
}

.section-heading.split p {
  margin-bottom: 3px;
  color: #b9cbd7;
}

.challenge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.challenge-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 1px 0 rgba(8, 36, 55, 0.03);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.challenge-card:hover {
  transform: translateY(-4px);
  border-color: #cadbe6;
  box-shadow: var(--shadow-sm);
}

.challenge-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.icon-box {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 14px;
}

.icon-box svg,
.coverage-icon svg,
.source-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-box.green {
  color: var(--green-dark);
  background: rgba(96, 184, 74, 0.12);
}

.icon-box.blue {
  color: var(--blue);
  background: rgba(47, 125, 211, 0.11);
}

.icon-box.teal {
  color: var(--teal);
  background: rgba(47, 155, 153, 0.11);
}

.icon-box.amber {
  color: #b4740e;
  background: rgba(231, 168, 63, 0.15);
}

.coverage-section {
  color: white;
  background:
    radial-gradient(circle at 10% 10%, rgba(47, 125, 211, 0.14), transparent 30%),
    linear-gradient(155deg, var(--navy-900), #0c2a3e);
}

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

.coverage-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.coverage-card:hover {
  transform: translateY(-4px);
  border-color: rgba(88, 166, 231, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.card-number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.coverage-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 30px;
  place-items: center;
  border: 1px solid rgba(134, 215, 211, 0.25);
  border-radius: 16px;
  color: #8de0dc;
  background: rgba(47, 155, 153, 0.09);
}

.coverage-card h3 {
  color: white;
}

.coverage-card p {
  margin-bottom: 0;
  color: #b9cbd7;
  font-size: 0.94rem;
}

.coverage-note {
  max-width: 820px;
  margin: 30px auto 0;
  color: #9fb3bf;
  font-size: 0.83rem;
  text-align: center;
}

.workflow-section {
  background: white;
}

.workflow-grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  list-style: none;
}

.workflow-step {
  position: relative;
  min-height: 250px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, white, #f8fbfd);
}

.workflow-step::after {
  position: absolute;
  z-index: 2;
  top: 46px;
  right: -18px;
  width: 34px;
  height: 1px;
  content: "";
  background: #bad0df;
}

.workflow-step:last-child::after {
  display: none;
}

.step-number {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  box-shadow: 0 10px 22px rgba(47, 125, 211, 0.2);
  font-weight: 800;
}

.workflow-step p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.change-demo {
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
  box-shadow: var(--shadow-sm);
}

.demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 32px;
  border-bottom: 1px solid var(--line);
  background: white;
}

.demo-header h3 {
  margin-bottom: 0;
  font-size: 1.5rem;
}

.demo-kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-pill {
  flex: 0 0 auto;
  padding: 8px 13px;
  border: 1px solid rgba(96, 184, 74, 0.25);
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(96, 184, 74, 0.1);
  font-size: 0.75rem;
  font-weight: 800;
}

.demo-body {
  display: grid;
  padding: 35px 32px;
  grid-template-columns: 1fr auto 1.2fr;
  align-items: center;
  gap: 30px;
}

.demo-source {
  display: flex;
  align-items: center;
  gap: 16px;
}

.source-icon {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 16px;
  color: var(--blue);
  background: rgba(47, 125, 211, 0.1);
}

.demo-source strong,
.demo-source span {
  display: block;
}

.demo-source span {
  color: var(--muted);
  font-size: 0.85rem;
}

.demo-arrow {
  color: #83a3b8;
  font-size: 1.7rem;
}

.demo-summary {
  padding: 24px;
  border: 1px solid #d8e5ed;
  border-radius: 18px;
  background: white;
}

.demo-summary > span {
  display: block;
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.demo-summary ul {
  margin: 0;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.demo-disclaimer {
  margin: 0;
  padding: 0 32px 26px;
  font-size: 0.78rem;
}

.audience-section {
  color: white;
  background:
    radial-gradient(circle at 80% 40%, rgba(96, 184, 74, 0.18), transparent 30%),
    linear-gradient(135deg, #123c4d, #0a2638);
}

.audience-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 80px;
}

.audience-copy h2 {
  color: white;
}

.audience-copy p {
  color: #bdd0da;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.light-link {
  color: var(--mint);
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.audience-list span {
  display: flex;
  min-height: 72px;
  align-items: center;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: #dce8ee;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.9rem;
  font-weight: 700;
}

.audience-list span::before {
  display: inline-grid;
  width: 24px;
  height: 24px;
  margin-right: 11px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  content: "✓";
  color: #0d2a3e;
  background: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
}

.outcomes-section {
  background: var(--surface-soft);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.outcome-card {
  padding: 30px 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
}

.outcome-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 42px;
  place-items: center;
  border-radius: 14px;
  color: var(--blue);
  background: rgba(47, 125, 211, 0.09);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.05em;
}

.outcome-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.faq-section {
  background: white;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: 80px;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.faq-intro h2 {
  font-size: clamp(2rem, 3.7vw, 3.3rem);
}

.faq-intro .button {
  margin-top: 14px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 26px 48px 26px 0;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-weight: 760;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 17px;
  height: 2px;
  content: "";
  background: var(--blue);
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(0);
}

.faq-answer {
  padding: 0 50px 24px 0;
}

.faq-answer p {
  margin: 0;
}

.final-cta {
  padding: 72px 0;
  color: white;
  background:
    radial-gradient(circle at 90% 20%, rgba(96, 184, 74, 0.2), transparent 30%),
    linear-gradient(135deg, var(--navy-900), #0b3045);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.final-cta h2 {
  max-width: 700px;
  margin-bottom: 12px;
  color: white;
  font-size: clamp(2rem, 3.5vw, 3.3rem);
}

.final-cta p {
  margin-bottom: 0;
  color: #bdd0da;
}

.final-actions {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 12px;
}

.site-footer {
  padding: 72px 0 28px;
  background: #f3f6f8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.footer-brand img {
  width: 170px;
  margin-bottom: 22px;
}

.footer-brand p {
  max-width: 420px;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 5px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.88rem;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #7a8b97;
  font-size: 0.75rem;
}

.mobile-sticky-cta {
  display: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.reveal-ready {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 1080px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto auto 1fr auto;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    border: 0;
    border-radius: 12px;
    background: var(--surface-soft);
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: var(--ink);
  }

  .mobile-nav {
    position: absolute;
    top: var(--header-height);
    right: 20px;
    left: 20px;
    display: grid;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow-md);
    gap: 4px;
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav > a:not(.button) {
    padding: 11px 8px;
    color: var(--ink-soft);
    font-weight: 700;
  }

  .mobile-nav .button {
    margin-top: 10px;
  }

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

  .hero-copy {
    max-width: 800px;
    padding-bottom: 10px;
  }

  .hero-visual {
    max-width: 850px;
    margin-inline: auto;
  }

  .hero-visual img {
    width: 100%;
    margin-left: 0;
  }

  .challenge-grid,
  .outcome-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .workflow-step::after {
    display: none;
  }

  .audience-grid,
  .faq-layout {
    gap: 50px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  body {
    padding-bottom: 76px;
  }

  .shell {
    width: min(calc(100% - 30px), var(--shell));
  }

  .section {
    padding: 78px 0;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .brand {
    width: 122px;
  }

  .product-mark {
    justify-self: start;
    padding-left: 13px;
    font-size: 0.94rem;
  }

  .product-icon {
    width: 24px;
    height: 24px;
  }

  .product-icon span {
    width: 12px;
    height: 12px;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-grid {
    gap: 18px;
  }

  .hero-copy {
    padding-bottom: 20px;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-proof {
    align-items: flex-start;
  }

  .visual-label {
    top: 1%;
    right: 0;
    font-size: 0.61rem;
  }

  .scope-strip {
    margin-top: 10px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .scope-strip::-webkit-scrollbar {
    display: none;
  }

  .scope-strip span {
    flex: 0 0 auto;
  }

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

  .section-heading.split {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .challenge-grid,
  .coverage-grid,
  .workflow-grid,
  .audience-grid,
  .audience-list,
  .outcome-grid,
  .faq-layout,
  .footer-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .challenge-card,
  .coverage-card,
  .workflow-step {
    min-height: auto;
  }

  .demo-header,
  .final-cta-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .demo-arrow {
    transform: rotate(90deg);
  }

  .audience-grid {
    gap: 44px;
  }

  .faq-intro {
    position: static;
  }

  .faq-layout {
    gap: 44px;
  }

  .final-actions {
    width: 100%;
  }

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

  .footer-grid {
    gap: 44px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    gap: 10px;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 999;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 10px 15px;
    border-top: 1px solid rgba(220, 231, 238, 0.95);
    opacity: 0;
    background: rgba(255, 255, 255, 0.95);
    pointer-events: none;
    transform: translateY(120%);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(12px);
  }

  .mobile-sticky-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-sticky-cta .button {
    width: 100%;
    min-height: 50px;
  }
}

@media (max-width: 440px) {
  .brand {
    width: 105px;
  }

  .product-mark {
    padding-left: 10px;
    gap: 7px;
    font-size: 0.84rem;
  }

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

  h1 {
    font-size: 2.55rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
