:root {
  --bg: #fbfaf6;
  --surface: #ffffff;
  --ink: #1f2933;
  --muted: #637083;
  --line: #e6e1d8;
  --purple: #4f46e5;
  --purple-deep: #4338ca;
  --purple-soft: #efecff;
  --mist: #d7e5ea;
  --mist-deep: #4f7890;
  --clay: #c9826b;
  --clay-soft: #f8e4dc;
  --gold: #e8c766;
  --gold-soft: #fff4d0;
  --shadow: 0 26px 70px rgba(31, 41, 51, 0.14);
  --shadow-soft: 0 12px 30px rgba(31, 41, 51, 0.08);
  --shadow-tight: 0 6px 16px rgba(31, 41, 51, 0.06);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #fbfaf6 0, #fbfaf6 760px, #fffdf9 980px, #ffffff 1300px, #fbfaf6 2100px),
    var(--bg);
  color: var(--ink);
  line-height: 1.5;
}

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

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

h1 {
  max-width: 610px;
  margin-bottom: 22px;
  font-size: 54px;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
  hyphens: none;
}

h2 {
  margin-bottom: 14px;
  font-size: 44px;
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.16;
  letter-spacing: 0;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 20;
  border-radius: 8px;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(230, 225, 216, 0.8);
  background: rgba(251, 250, 246, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell,
.hero,
.problem-outcome,
.section,
.final-cta,
.site-footer {
  width: min(1180px, calc(100% - 36px));
  margin-right: auto;
  margin-left: auto;
}

.nav-shell {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  color: white;
}

.nav-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-menu a:hover {
  color: var(--purple);
}

.nav-actions,
.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--purple);
  color: white;
  box-shadow: 0 14px 28px rgba(79, 70, 229, 0.22);
}

.btn-primary:hover {
  background: var(--purple-deep);
}

.btn-secondary,
.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
}

.btn-secondary:hover,
.btn-ghost:hover {
  border-color: rgba(79, 70, 229, 0.32);
  color: var(--purple);
}

.btn-large {
  min-height: 50px;
  padding: 0 22px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

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

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

.eyebrow {
  margin-bottom: 12px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.96fr) minmax(520px, 1.04fr);
  gap: 64px;
  align-items: center;
  min-height: 670px;
  padding: 66px 0 58px;
}

.hero-copy,
.hero-product {
  position: relative;
  z-index: 1;
}

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

.hero-text {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero-product {
  display: grid;
  justify-items: center;
  padding: 26px 12px 56px;
}

.browser-mock {
  position: relative;
  width: min(100%, 620px);
  overflow: hidden;
  border: 1px solid rgba(79, 70, 229, 0.16);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.mock-header {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 0 16px;
  background: #fffdf9;
}

.mock-header div {
  display: flex;
  gap: 6px;
}

.mock-header span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--line);
}

.mock-header span:first-child {
  background: var(--clay);
}

.mock-header span:nth-child(2) {
  background: var(--gold);
}

.mock-header span:nth-child(3) {
  background: var(--purple);
}

.mock-header p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.dashboard-hero {
  position: relative;
  padding: 26px;
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
}

.welcome-panel p {
  margin-bottom: 4px;
  opacity: 0.82;
}

.welcome-panel h2 {
  margin-bottom: 20px;
  font-size: 28px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-metrics div {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  font-size: 24px;
}

.hero-metrics span {
  opacity: 0.82;
  font-size: 12px;
}

.dashboard-content {
  display: grid;
  grid-template-columns: 56px 1.08fr 0.92fr;
  gap: 14px;
  padding: 18px;
  background:
    linear-gradient(90deg, rgba(239, 236, 255, 0.42) 0, rgba(239, 236, 255, 0) 36%),
    #fffdf9;
}

.mock-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--surface);
}

.mock-sidebar span {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #f3f0ea;
}

.mock-sidebar .active {
  background: var(--purple);
}

.mock-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-tight);
}

.floating-proof {
  position: absolute;
  z-index: 3;
  width: 176px;
  border: 1px solid rgba(79, 70, 229, 0.16);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
}

.floating-proof span,
.floating-proof strong,
.floating-proof p {
  display: block;
}

.floating-proof span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.floating-proof strong {
  margin: 2px 0;
  color: var(--purple);
  font-size: 32px;
  line-height: 1;
}

.floating-proof p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.floating-proof-left {
  left: 0;
  bottom: 16px;
}

.floating-proof-right {
  right: 0;
  bottom: 16px;
}

.panel-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.panel-title span,
.person-row span,
.phase-mini li,
.capability-grid p,
.benefit-grid p,
.use-case-grid p,
.trust-copy p,
.final-cta p,
.site-footer {
  color: var(--muted);
}

.panel-title span {
  font-size: 12px;
  font-weight: 700;
}

.person-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.person-row b {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--purple-soft);
  color: var(--purple);
  font-size: 12px;
}

.person-row strong,
.person-row span {
  display: block;
}

.person-row span {
  font-size: 12px;
}

.person-row em {
  color: var(--purple);
  font-style: normal;
  font-weight: 800;
}

.bar-line {
  overflow: hidden;
  height: 10px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--purple-soft);
}

.bar-line span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--purple);
}

.bar-line.clay {
  background: var(--clay-soft);
}

.bar-line.clay span {
  background: var(--clay);
}

.bar-line.gold {
  background: var(--gold-soft);
}

.bar-line.gold span {
  background: var(--gold);
}

.phase-mini {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.phase-mini li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 22px;
  font-size: 13px;
  font-weight: 800;
}

.phase-mini li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: white;
}

.phase-mini li.done::before {
  border-color: var(--purple);
  background: var(--purple);
}

.phase-mini li.active {
  color: var(--ink);
}

.phase-mini li.active::before {
  border-color: var(--gold);
}

.problem-outcome {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 44px;
  margin-bottom: 28px;
  border-radius: 10px;
  padding: 18px;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  box-shadow: var(--shadow);
}

.problem-card,
.outcome-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  color: white;
}

.problem-card {
  background: rgba(255, 255, 255, 0.08);
}

.outcome-card {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.16);
}

.problem-card h2,
.outcome-card h2 {
  font-size: 30px;
}

.problem-card p:last-child,
.outcome-card p:last-child,
.intro-band > p,
.tour-copy p,
.tour-copy li {
  color: var(--muted);
  font-size: 16px;
}

.problem-card .eyebrow,
.outcome-card .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.problem-card p:last-child,
.outcome-card p:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding-top: 92px;
}

.section-break {
  width: 100%;
  margin-top: 72px;
}

.section-break-tour {
  position: relative;
  padding: 64px 0 76px;
  background:
    linear-gradient(180deg, rgba(215, 229, 234, 0.28), rgba(255, 255, 255, 0.92) 34%, rgba(239, 236, 255, 0.34) 100%),
    #ffffff;
  border-top: 1px solid rgba(230, 225, 216, 0.8);
  border-bottom: 1px solid rgba(230, 225, 216, 0.8);
}

.section-break-tour .product-tour {
  padding-top: 0;
}

.proof-story-panel + .section-break-tour {
  margin-top: 72px;
}

.proof-story-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding-top: 0;
  margin-top: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0, rgba(255, 255, 255, 0.98) 42%, #fffdf9 43%, #fffdf9 100%);
  box-shadow: var(--shadow-soft);
}

.proof-story-panel .proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 0;
}

.proof-story-panel .proof-strip article {
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  padding: 28px 28px 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: none;
}

.proof-story-panel .proof-strip article:last-child {
  border-right: 0;
}

.proof-story-panel .proof-strip span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--purple);
  color: white;
  font-size: 12px;
  font-weight: 800;
}

.proof-story-panel .proof-strip article:nth-child(2) span,
.proof-story-panel .proof-strip article:nth-child(4) span {
  background: var(--mist-deep);
}

.proof-story-panel .proof-strip article:nth-child(3) span {
  background: var(--gold);
  color: #4f3908;
}

.proof-story-panel .proof-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.proof-story-panel .proof-strip p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.story-divider {
  height: 1px;
  background: var(--line);
}

.intro-band {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 42px;
  align-items: center;
  border-radius: 0;
  padding: 46px 38px;
  background: #fffdf9;
  border: 0;
  box-shadow: none;
}

.intro-band h2 {
  margin-bottom: 0;
}

.intro-band p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.proof-metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.proof-metric-row span {
  border: 1px solid rgba(79, 70, 229, 0.18);
  border-radius: 999px;
  padding: 9px 12px;
  background: var(--purple-soft);
  color: var(--purple-deep);
  font-size: 12px;
  font-weight: 800;
}

.buyer-pathways {
  padding-top: 86px;
}

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

.pathway-grid article {
  min-height: 246px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-tight);
}

.pathway-grid article:nth-child(2),
.pathway-grid article:nth-child(4) {
  background: rgba(215, 229, 234, 0.34);
}

.pathway-grid span {
  display: inline-block;
  margin-bottom: 26px;
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--purple-soft);
  color: var(--purple);
  font-size: 12px;
  font-weight: 800;
}

.pathway-grid h3 {
  font-size: 22px;
}

.pathway-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.product-tour {
  padding-top: 86px;
}

.tour-row {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(560px, 1.28fr);
  gap: 48px;
  align-items: center;
  padding: 64px 0;
  border-top: 1px solid rgba(230, 225, 216, 0.86);
}

.tour-row.reverse {
  grid-template-columns: minmax(560px, 1.28fr) minmax(0, 0.72fr);
}

.tour-row.reverse .tour-copy {
  grid-column: 2;
}

.tour-row.reverse .feature-mock {
  grid-column: 1;
  grid-row: 1;
}

.tour-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 800;
}

.outcome-label {
  display: inline-block;
  margin: 0 0 16px 8px;
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--gold-soft);
  color: #8b6413;
  font-size: 12px;
  font-weight: 800;
}

.tour-copy h3 {
  max-width: 560px;
  font-size: 36px;
}

.tour-copy p,
.tour-copy li {
  line-height: 1.7;
}

.tour-copy ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding-left: 19px;
}

.feature-mock {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(79, 70, 229, 0.14);
  border-radius: 10px;
  padding: 112px 28px 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.feature-mock::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 84px;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
}

.feature-mock::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 22px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 22px 0 0 rgba(255, 255, 255, 0.52), 44px 0 0 rgba(255, 255, 255, 0.36);
}

.scene-title {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  top: 42px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  color: white;
}

.scene-title span,
.scene-title strong {
  display: block;
}

.scene-title span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.scene-title strong {
  font-size: 20px;
}

.form-card,
.status-card,
.match-score,
.match-stack,
.phase-card,
.note-card,
.task-row,
.analytics-grid,
.mini-chart {
  position: relative;
  z-index: 1;
}

.form-card,
.status-card,
.match-score,
.match-stack > div,
.phase-card,
.note-card,
.task-row,
.analytics-grid > div,
.mini-chart {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
  box-shadow: var(--shadow-tight);
}

.onboarding-mock {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 18px;
  align-items: end;
}

.form-card {
  padding: 22px;
}

.form-card strong,
.status-card strong,
.phase-card strong,
.note-card strong {
  display: block;
  margin-bottom: 18px;
  font-size: 18px;
}

.form-card label {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 14px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.form-card label span {
  color: var(--ink);
}

.stepper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 12px;
}

.stepper span {
  height: 8px;
  border-radius: 999px;
  background: var(--purple);
}

.stepper span:last-child {
  background: var(--line);
}

.status-card {
  padding: 20px;
  background: var(--gold-soft);
}

.status-card p,
.note-card p,
.task-row p {
  margin-bottom: 0;
  color: var(--muted);
}

.matching-mock {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 18px;
  align-items: center;
}

.assessment-mock {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items: end;
  background:
    linear-gradient(135deg, rgba(215, 229, 234, 0.42), rgba(255, 255, 255, 0.92)),
    #ffffff;
}

.assessment-summary,
.assessment-panels > div {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
  box-shadow: var(--shadow-tight);
}

.assessment-summary {
  padding: 22px;
}

.assessment-summary strong {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
}

.assessment-summary p {
  margin-bottom: 18px;
  color: var(--muted);
}

.assessment-bars {
  display: grid;
  gap: 10px;
}

.assessment-bars span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple), var(--mist-deep));
}

.assessment-bars span:nth-child(2) {
  background: linear-gradient(90deg, var(--gold), var(--clay));
}

.assessment-bars span:nth-child(3) {
  background: linear-gradient(90deg, var(--mist-deep), var(--purple));
}

.assessment-panels {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.assessment-panels > div {
  padding: 18px;
}

.assessment-panels b,
.assessment-panels span {
  display: block;
}

.assessment-panels span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.match-score {
  min-height: 240px;
  display: grid;
  place-items: center;
  padding: 22px;
  text-align: center;
}

.match-score span {
  color: var(--muted);
  font-weight: 800;
}

.match-score strong {
  display: block;
  margin: 8px 0 14px;
  color: var(--purple);
  font-size: 52px;
}

.ring {
  width: 104px;
  height: 104px;
  border: 12px solid var(--purple-soft);
  border-top-color: var(--purple);
  border-right-color: var(--purple);
  border-radius: 999px;
}

.match-stack {
  display: grid;
  gap: 12px;
}

.match-stack > div {
  padding: 18px;
}

.match-stack b,
.match-stack span {
  display: block;
}

.match-stack span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.guide-mock {
  display: grid;
  gap: 14px;
  align-content: end;
  background:
    linear-gradient(135deg, rgba(239, 236, 255, 0.55), rgba(255, 255, 255, 0.92)),
    #ffffff;
}

.phase-card,
.note-card,
.task-row {
  padding: 18px;
}

.phase-card span {
  display: inline-block;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--purple);
  color: white;
  font-size: 12px;
  font-weight: 800;
}

.task-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.task-row span {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--gold);
}

.measure-mock {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 18px;
  align-items: end;
}

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

.analytics-grid > div {
  min-height: 118px;
  padding: 18px;
}

.analytics-grid strong,
.analytics-grid span {
  display: block;
}

.analytics-grid strong {
  margin-bottom: 8px;
  color: var(--purple);
  font-size: 30px;
}

.analytics-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.mini-chart {
  height: 250px;
  display: flex;
  align-items: end;
  gap: 12px;
  padding: 20px;
  background: var(--gold-soft);
}

.mini-chart span {
  flex: 1;
  min-height: 30px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--purple), var(--mist-deep));
}

.capability-grid,
.benefit-grid,
.use-case-grid {
  display: grid;
  gap: 18px;
}

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

.capability-grid article,
.benefit-grid article,
.use-case-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--surface);
  box-shadow: var(--shadow-tight);
}

.capability-grid article {
  position: relative;
  overflow: hidden;
}

.capability-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.capability-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--purple-soft);
  color: var(--purple);
  font-size: 12px;
  font-weight: 800;
}

.capability-meta b {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: var(--purple);
  color: white;
  font-size: 12px;
  font-weight: 800;
}

.capability-grid article:nth-child(2) .capability-meta span,
.capability-grid article:nth-child(5) .capability-meta span {
  background: var(--gold-soft);
  color: #8b6413;
}

.capability-grid article:nth-child(2) .capability-meta b,
.capability-grid article:nth-child(5) .capability-meta b {
  background: var(--gold);
  color: #4f3908;
}

.capability-grid article:nth-child(3) .capability-meta span,
.capability-grid article:nth-child(6) .capability-meta span {
  background: var(--mist);
  color: var(--mist-deep);
}

.capability-grid article:nth-child(3) .capability-meta b,
.capability-grid article:nth-child(6) .capability-meta b {
  background: var(--mist-deep);
}

.capability-grid h3,
.benefit-grid h3 {
  font-size: 20px;
}

.capability-grid p,
.benefit-grid p,
.use-case-grid p {
  margin-bottom: 0;
}

.differentiation {
  padding-top: 96px;
}

.comparison-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.comparison-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border-top: 1px solid var(--line);
}

.comparison-row:first-child {
  border-top: 0;
}

.comparison-row span {
  display: block;
  padding: 20px 24px;
  color: var(--muted);
}

.comparison-row span + span {
  border-left: 1px solid var(--line);
  color: var(--ink);
  background: rgba(239, 236, 255, 0.4);
  font-weight: 700;
}

.comparison-head {
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
}

.comparison-head span,
.comparison-head span + span {
  color: white;
  background: transparent;
  font-weight: 800;
}

.sales-band {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 42px;
  align-items: start;
  border-radius: 8px;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(215, 229, 234, 0.72), rgba(239, 236, 255, 0.64)),
    #ffffff;
  border: 1px solid rgba(79, 70, 229, 0.14);
  box-shadow: var(--shadow-tight);
}

.evidence-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: center;
  padding-top: 96px;
}

.evidence-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.evidence-dashboard {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  border: 1px solid rgba(79, 70, 229, 0.15);
  border-radius: 10px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(239, 236, 255, 0.64), rgba(255, 255, 255, 0.92)),
    #ffffff;
  box-shadow: var(--shadow);
}

.evidence-dashboard div {
  min-height: 160px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-tight);
}

.evidence-dashboard strong,
.evidence-dashboard span,
.evidence-dashboard b {
  display: block;
}

.evidence-dashboard strong {
  margin-bottom: 10px;
  font-size: 18px;
}

.evidence-dashboard span {
  color: var(--muted);
  font-size: 14px;
}

.evidence-dashboard b {
  width: max-content;
  margin-top: 18px;
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--purple);
  color: white;
  font-size: 12px;
}

.sales-band > * {
  position: relative;
  z-index: 1;
}

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

.benefit-grid article:nth-child(2) {
  background: #f7fbfc;
}

.benefit-grid article:nth-child(3) {
  background: #fffaf0;
}

.benefit-grid span {
  display: inline-block;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--purple-soft);
  color: var(--purple);
  font-size: 12px;
  font-weight: 800;
}

.use-case-grid {
  grid-template-columns: 1fr;
}

.use-case-grid article {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 22px;
  align-items: center;
  background: rgba(255, 255, 255, 0.74);
}

.use-case-grid article::after {
  content: "Outcome-ready";
  justify-self: end;
  border-radius: 999px;
  padding: 8px 10px;
  background: var(--gold-soft);
  color: #8b6413;
  font-size: 12px;
  font-weight: 800;
}

.use-case-grid article:nth-child(even) {
  background: rgba(215, 229, 234, 0.36);
}

.use-case-grid article > span {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--purple);
  color: white;
  font-weight: 800;
}

.use-case-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 19px;
}

.trust {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
  border-radius: 8px;
  padding: 38px;
  background:
    linear-gradient(135deg, #fffdf9, rgba(215, 229, 234, 0.28)),
    #fffdf9;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-tight);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-list span {
  position: relative;
  border: 1px solid rgba(79, 70, 229, 0.18);
  border-radius: 999px;
  padding: 12px 16px 12px 38px;
  background: var(--purple-soft);
  color: var(--purple-deep);
  font-weight: 800;
}

.trust-list span::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 999px;
  transform: translateY(-50%);
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  margin-top: 96px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(79, 70, 229, 0.95), rgba(67, 56, 202, 0.98)),
    var(--purple);
  color: white;
  box-shadow: var(--shadow);
}

.final-cta p {
  max-width: 640px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.final-cta .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.final-cta .btn-primary {
  background: white;
  color: var(--purple-deep);
  box-shadow: none;
}

.final-cta .btn-secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.6fr 0.9fr;
  gap: 32px;
  margin-top: 36px;
  border-top: 1px solid var(--line);
  padding: 34px 0 42px;
}

.footer-brand {
  margin-bottom: 10px;
  color: var(--ink);
}

.site-footer strong,
.site-footer a {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer a:hover {
  color: var(--purple);
}

@media (max-width: 1080px) {
  h1 {
    max-width: 720px;
    font-size: 52px;
  }

  h2 {
    font-size: 38px;
  }

  .nav-actions {
    display: none;
  }

  .hero,
  .problem-outcome,
  .intro-band,
  .tour-row,
  .tour-row.reverse,
  .sales-band,
  .evidence-section,
  .trust,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    gap: 34px;
    padding-top: 56px;
  }

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

  .hero-text {
    max-width: 680px;
  }

  .floating-proof-left {
    left: 34px;
  }

  .floating-proof-right {
    right: 34px;
  }

  .tour-row.reverse .tour-copy,
  .tour-row.reverse .feature-mock {
    grid-column: auto;
    grid-row: auto;
  }

  .capability-grid,
  .use-case-grid,
  .proof-story-panel .proof-strip,
  .pathway-grid {
    grid-template-columns: 1fr;
  }

  .capability-grid,
  .proof-story-panel .proof-strip,
  .pathway-grid,
  .evidence-dashboard {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-story-panel .proof-strip article:nth-child(2) {
    border-right: 0;
  }

  .proof-story-panel .proof-strip article:nth-child(1),
  .proof-story-panel .proof-strip article:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  h3,
  .tour-copy h3 {
    font-size: 28px;
  }

  .nav-shell {
    min-height: 66px;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    width: 100%;
    margin-left: 0;
    padding: 0 0 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

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

  .hero {
    padding-top: 48px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .dashboard-content,
  .hero-metrics,
  .onboarding-mock,
  .assessment-mock,
  .matching-mock,
  .measure-mock,
  .capability-grid,
  .proof-story-panel .proof-strip,
  .pathway-grid,
  .evidence-dashboard,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .proof-story-panel .proof-strip article,
  .proof-story-panel .proof-strip article:nth-child(1),
  .proof-story-panel .proof-strip article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-story-panel .proof-strip article:last-child {
    border-bottom: 0;
  }

  .hero-product {
    display: grid;
    gap: 12px;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .floating-proof {
    position: static;
    width: 100%;
    min-width: 0;
  }

  .use-case-grid,
  .use-case-grid article {
    grid-template-columns: 1fr;
  }

  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-panel {
    display: grid;
    gap: 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .comparison-head {
    display: none;
  }

  .comparison-row:not(.comparison-head) {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow-tight);
  }

  .comparison-row span {
    position: relative;
    padding: 40px 20px 18px;
  }

  .comparison-row span::before {
    position: absolute;
    left: 20px;
    top: 16px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .comparison-row span:first-child::before {
    content: "Typical platform";
  }

  .comparison-row span + span::before {
    content: "IMPACT layer";
    color: var(--purple);
  }

  .comparison-row span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .problem-card,
  .outcome-card,
  .sales-band,
  .evidence-dashboard,
  .trust,
  .final-cta {
    padding: 28px;
  }

  .section-break-tour {
    padding: 48px 0 56px;
  }

  .proof-story-panel .proof-strip article {
    padding: 26px;
  }

  .intro-band {
    padding: 32px 28px;
  }

  .pathway-grid article,
  .capability-grid article,
  .benefit-grid article,
  .use-case-grid article {
    padding: 24px;
  }

  .feature-mock {
    min-height: 0;
    padding-top: 108px;
  }
}

@media (max-width: 520px) {
  .nav-shell,
  .hero,
  .problem-outcome,
  .section,
  .final-cta,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 29px;
  }

  h3,
  .tour-copy h3 {
    font-size: 24px;
  }

  .section {
    padding-top: 72px;
  }

  .section-break {
    margin-top: 54px;
  }

  .section-break-tour {
    padding: 38px 0 44px;
  }

  .proof-story-panel + .section-break-tour {
    margin-top: 54px;
  }

  .problem-card,
  .outcome-card,
  .sales-band,
  .trust,
  .final-cta {
    padding: 22px;
  }

  .proof-story-panel .proof-strip article,
  .intro-band,
  .pathway-grid article,
  .capability-grid article,
  .benefit-grid article,
  .use-case-grid article,
  .evidence-dashboard,
  .evidence-dashboard div {
    padding: 22px;
  }

  .comparison-row span {
    padding: 42px 18px 18px;
  }

  .comparison-row span::before {
    left: 18px;
  }

  .tour-row {
    gap: 28px;
    padding: 34px 0;
  }

  .feature-mock {
    padding: 20px;
    padding-top: 106px;
  }

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