@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --blue: #244dea;
  --blue-dark: #1738ba;
  --blue-soft: #e8edff;
  --blue-pale: #f2f5fc;
  --ink: #13203b;
  --ink-soft: #21304c;
  --muted: #586278;
  --line: #dde2ec;
  --line-dark: #35445f;
  --white: #ffffff;
  --green: #16895b;
  --amber: #b66a00;
  --red: #b63b3b;
  --shadow: 0 24px 70px rgba(19, 32, 59, .11);
  --shadow-soft: 0 14px 40px rgba(19, 32, 59, .08);
  --font-body: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Manrope', var(--font-body);
  --container: 1220px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font: 400 1rem/1.65 var(--font-body);
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
button, input { font: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, h4, ul, ol { margin-top: 0; }
h1, h2, h3, h4 {
  margin-bottom: .5em;
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -.045em;
  line-height: 1.12;
}
h1 { font-size: clamp(3.2rem, 6vw, 5.6rem); font-weight: 800; }
h2 { font-size: clamp(2.25rem, 4.2vw, 3.7rem); font-weight: 750; }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
p { color: var(--muted); }
ul, ol { padding-left: 1.15rem; }
button:focus-visible, a:focus-visible, summary:focus-visible {
  outline: 3px solid #eead20;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  left: 16px;
  top: -90px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}
.skip-link:focus { top: 12px; }
.container { width: min(var(--container), calc(100% - 80px)); margin-inline: auto; }
.narrow { width: min(830px, calc(100% - 80px)); margin-inline: auto; }
.section { padding-block: 104px; }
.section.compact { padding-block: 72px; }
.section.pale { background: var(--blue-pale); }
.section.dark { background: var(--ink); color: var(--white); }
.section.dark h2, .section.dark h3, .section.dark h4 { color: var(--white); }
.section.dark p { color: #c3cde0; }
.eyebrow {
  margin-bottom: 20px;
  color: var(--blue);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .145em;
  text-transform: uppercase;
}
.dark .eyebrow { color: #9bb2ff; }
.lead { font-size: clamp(1.08rem, 1.5vw, 1.25rem); line-height: 1.72; }
.text-blue, .gradient-text { color: var(--blue); }
@supports ((background-clip: text) or (-webkit-background-clip: text)) {
  .text-blue, .gradient-text {
    background: linear-gradient(135deg, #1d4ed8 0%, #7c3aed 55%, #087e99 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
  .dark .text-blue, .dark .gradient-text {
    background-image: linear-gradient(135deg, #adc8ff, #d4b8ff, #79e0ef);
  }
}
.muted { color: var(--muted); }
.fine-print { font-size: .82rem; color: #707a8d; }
.section-head {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 52px;
}
.section-head .eyebrow { grid-column: 1 / -1; margin-bottom: -18px; }
.section-head h2 { margin-bottom: 0; }
.section-head > p:last-child { margin-bottom: .3rem; max-width: 440px; }
.centered { text-align: center; }
.centered .lead { max-width: 720px; margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: border-color .2s, box-shadow .2s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 6px 24px rgba(19,32,59,.05); }
.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 700;
}
.brand-mark { width: 48px; height: 50px; }
.helper-eyes { opacity: 0; }
.helper-smile { transform-origin: 52px 60px; }
.brand:hover .helper-eyes, .brand:focus-visible .helper-eyes { animation: helper-wink 1.6s ease-in-out 1; }
.brand:hover .helper-smile, .brand:focus-visible .helper-smile { animation: helper-grin 1.6s ease-in-out 1; }
@keyframes helper-wink { 0%,18%,100% { opacity:0; } 30%,68% { opacity:1; } 85% { opacity:0; } }
@keyframes helper-grin { 0%,100% { transform:translateY(0); } 35%,65% { transform:translateY(3px); } }
.brand-word { font-size: 1.08rem; line-height: 1.05; letter-spacing: -.03em; }
.brand-word small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .02em;
}
.desktop-nav { display: flex; align-items: center; gap: 28px; font-size: .9rem; font-weight: 600; }
.desktop-nav > a, .nav-trigger { transition: color .2s; }
.desktop-nav > a:hover, .nav-trigger:hover, .desktop-nav > a[aria-current='page'] { color: var(--blue); }
.nav-group { position: relative; }
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 600;
}
.nav-trigger svg { width: 12px; transition: transform .2s; }
.nav-group.open .nav-trigger svg { transform: rotate(180deg); }
.nav-menu {
  position: absolute;
  top: calc(100% + 13px);
  left: -20px;
  width: 315px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .18s, transform .18s, visibility .18s;
}
.nav-group.open .nav-menu, .nav-group:hover .nav-menu, .nav-group:focus-within .nav-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-group:hover .nav-trigger svg, .nav-group:focus-within .nav-trigger svg { transform: rotate(180deg); }
.nav-menu a { display: block; padding: 12px 13px; border-radius: 8px; }
.nav-menu a:hover { background: var(--blue-pale); }
.nav-menu strong { display: block; margin-bottom: 2px; color: var(--ink); }
.nav-menu span { color: var(--muted); font-size: .78rem; font-weight: 400; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.login-link { font-size: .9rem; font-weight: 600; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: var(--white);
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: '';
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform .2s, opacity .2s;
}
.menu-toggle[aria-expanded='true'] span { opacity: 0; }
.menu-toggle[aria-expanded='true']::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded='true']::after { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav {
  display: none;
  position: fixed;
  inset: 86px 0 0;
  padding: 28px 40px 50px;
  overflow-y: auto;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 11px 0; font-weight: 650; }
.mobile-label { margin: 22px 0 5px; color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.mobile-nav .button { margin-top: 22px; text-align: center; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 13px 21px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-weight: 700;
  line-height: 1.25;
  transition: background .2s, border-color .2s, transform .2s;
}
.button:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-2px); }
.button.small { min-height: 44px; padding: 10px 17px; font-size: .88rem; }
.button.secondary { color: var(--ink); background: var(--white); border-color: var(--line); }
.button.secondary:hover { color: var(--blue); border-color: #9fb0e8; }
.button.white { color: var(--blue); background: var(--white); border-color: var(--white); }
.button.white:hover { color: var(--blue-dark); background: #f4f6ff; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 700; }
.text-link:hover { color: var(--blue); }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 30px; }
.microcopy { margin: 13px 0 0; font-size: .82rem; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(460px, .98fr);
  gap: 62px;
  align-items: center;
  min-height: 720px;
  padding-block: 70px 88px;
}
.hero h1 { max-width: 720px; margin-bottom: 26px; }
.hero .lead { max-width: 655px; }
.hero-kicker {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -.025em;
}
.hero-support { max-width: 635px; margin: 14px 0 0; }
.trust-points { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 24px; }
.trust-points span { color: var(--muted); font-size: .82rem; }
.trust-points span::before { content: '✓'; margin-right: 7px; color: var(--green); font-weight: 700; }
.hero-media {
  position: relative;
  min-height: 580px;
  padding: 22px 22px 110px;
  background: var(--blue-soft);
  border-radius: 22px;
  overflow: hidden;
}
.hero-media picture, .hero-media > img { width: 100%; height: 100%; }
.hero-media picture img, .hero-media > img {
  width: 100%;
  height: 445px;
  object-fit: cover;
  border-radius: 13px;
}
.hero-media.home picture img { object-position: 51% 44%; }
.hero-media.business picture img { object-position: 50% 45%; }
.hero-media.ecommerce picture img { object-position: center 47%; }
.hero-media.technical picture img { object-position: center 46%; }
.hero-media.trust picture img { object-position: center 47%; }
.floating-chat {
  position: absolute;
  right: 0;
  bottom: 34px;
  width: min(92%, 430px);
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px 0 0 12px;
  box-shadow: var(--shadow);
}
.chat-head { display: flex; align-items: center; gap: 10px; margin-bottom: 13px; }
.chat-avatar { display: grid; place-items: center; width: 34px; height: 34px; color: white; background: var(--blue); border-radius: 9px; font-weight: 700; }
.chat-head strong { display: block; font-size: .88rem; line-height: 1.2; }
.chat-head span { display: block; color: var(--muted); font-size: .72rem; }
.chat-bubble { margin: 7px 0; padding: 10px 12px; border-radius: 8px; font-size: .78rem; line-height: 1.48; }
.chat-bubble.user { margin-left: 40px; color: var(--white); background: var(--blue); border-bottom-right-radius: 2px; }
.chat-bubble.answer { margin-right: 14px; color: #35405a; background: var(--blue-pale); border-bottom-left-radius: 2px; }
.source-line { margin: 10px 0 0; color: var(--blue); font-size: .69rem; font-weight: 650; }
.visual-label {
  position: absolute;
  top: 38px;
  left: 38px;
  padding: 7px 10px;
  color: var(--ink);
  background: rgba(255,255,255,.9);
  border-radius: 6px;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.benefit-strip { border-block: 1px solid var(--line); }
.benefit-strip .container { display: grid; grid-template-columns: repeat(3, 1fr); }
.benefit-strip p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 82px;
  margin: 0;
  padding: 18px 24px;
  color: var(--ink);
  font-weight: 650;
  text-align: center;
}
.benefit-strip p + p { border-left: 1px solid var(--line); }
.benefit-strip b { color: var(--blue); font-size: 1.25rem; }
.benefit-strip .benefit-card-grid { align-items: stretch; padding-block: 0; }
.benefit-card { min-height: 220px; padding: 30px 32px; }
.benefit-card + .benefit-card { border-left: 1px solid var(--line); }
.benefit-card b { display: block; margin-bottom: 25px; font: 700 .78rem var(--font-display); letter-spacing: .12em; }
.benefit-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.benefit-strip .benefit-card p {
  display: block;
  min-height: 0;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 400;
  text-align: left;
}

.bridge {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: start;
}
.bridge-statement {
  padding: 30px 34px;
  color: var(--white);
  background: var(--blue);
  border-radius: 14px;
  font: 700 clamp(1.45rem, 3vw, 2.4rem)/1.18 var(--font-display);
  letter-spacing: -.045em;
}
.bridge-copy .lead { margin-bottom: 24px; }
.token-row { display: flex; flex-wrap: wrap; gap: 9px; }
.token { padding: 7px 11px; color: #35405a; background: var(--white); border: 1px solid var(--line); border-radius: 999px; font-size: .78rem; font-weight: 600; }

.path-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.path-card {
  position: relative;
  min-height: 465px;
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}
.path-card.catalogue { color: var(--white); background: var(--ink); border-color: var(--ink); }
.path-card.catalogue h3 { color: var(--white); }
.path-card.catalogue p, .path-card.catalogue li { color: #c5cede; }
.path-label { display: inline-block; margin-bottom: 26px; color: var(--blue); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.catalogue .path-label { color: #9eb4ff; }
.path-card h3 { max-width: 440px; font-size: clamp(1.8rem, 3vw, 2.65rem); }
.path-card p { max-width: 500px; }
.tick-list { margin: 24px 0 30px; padding: 0; list-style: none; }
.tick-list li { position: relative; margin: 11px 0; padding-left: 27px; color: var(--muted); }
.tick-list li::before { content: '✓'; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.catalogue .tick-list li::before { color: #9eb4ff; }
.catalogue .text-link { color: var(--white); }
.path-icon { position: absolute; right: -20px; bottom: -28px; color: rgba(36,77,234,.08); font: 800 10rem/1 var(--font-display); }
.catalogue .path-icon { color: rgba(255,255,255,.06); }
.shared-foundation {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 20px;
  border: 1px solid var(--line);
}
.shared-foundation div { padding: 19px 22px; font-size: .86rem; text-align: center; }
.shared-foundation div + div { border-left: 1px solid var(--line); }
.shared-foundation strong { display: block; color: var(--ink); }

.illustration-card {
  max-width: 1120px;
  margin: 42px auto 0;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.illustration-card picture,
.illustration-card img {
  width: 100%;
}
.illustration-card img {
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.illustration-card figcaption {
  padding: 13px 7px 2px;
  color: var(--muted);
  font-size: .82rem;
  text-align: center;
}

.demo-shell { border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow-soft); }
.demo-tabs { display: flex; padding: 8px; border-bottom: 1px solid var(--line); background: var(--blue-pale); }
.demo-tab {
  flex: 1;
  min-height: 48px;
  padding: 9px 14px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 7px;
  font-weight: 700;
}
.demo-tab[aria-selected='true'] { color: var(--blue); background: var(--white); box-shadow: 0 4px 14px rgba(19,32,59,.07); }
.demo-panel { display: grid; grid-template-columns: .92fr 1.08fr; min-height: 440px; }
.demo-question { padding: 36px; background: var(--ink); }
.demo-question .eyebrow { color: #9bb2ff; }
.demo-question blockquote { margin: 0; color: var(--white); font: 650 clamp(1.35rem, 2.3vw, 2rem)/1.38 var(--font-display); letter-spacing: -.035em; }
.demo-question .fictional { margin-top: 26px; color: #aebbd0; font-size: .78rem; }
.demo-answer { padding: 36px; }
.demo-answer > p { font-size: 1.03rem; }
.answer-status { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px; color: var(--green); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.answer-status::before { content: ''; width: 8px; height: 8px; background: currentColor; border-radius: 50%; }
.answer-status.caution { color: var(--amber); }
.evidence { margin-top: 25px; padding: 16px 18px; background: var(--blue-pale); border-left: 3px solid var(--blue); }
.evidence strong { display: block; margin-bottom: 4px; font-size: .78rem; }
.evidence span { color: var(--muted); font-size: .8rem; }
.constraint-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.constraint { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: #3f4b64; font-size: .75rem; font-weight: 650; }
.constraint::before { content: '✓'; color: var(--green); }
.constraint.unknown::before { content: '?'; color: var(--amber); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card { padding: 30px; border: 1px solid var(--line); background: var(--white); }
.feature-card .number { color: var(--blue); font: 700 .78rem var(--font-display); letter-spacing: .12em; }
.feature-card h3 { margin: 34px 0 13px; }
.feature-card p { margin-bottom: 0; }
.feature-card.dark-card { background: var(--ink); border-color: var(--ink); }
.feature-card.dark-card h3 { color: var(--white); }
.feature-card.dark-card p { color: #bec8db; }
.icon-box { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 26px; color: var(--blue); background: var(--blue-soft); border-radius: 9px; font-size: 1.35rem; font-weight: 700; }

.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); }
.trust-item { min-height: 245px; padding: 27px 24px; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-item strong { display: block; margin: 40px 0 11px; font: 700 1.05rem/1.3 var(--font-display); letter-spacing: -.025em; }
.trust-item p { margin: 0; font-size: .88rem; }
.trust-symbol { color: var(--blue); font: 700 1.3rem var(--font-display); }

.workflow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-block: 1px solid var(--line); }
.workflow-step { position: relative; padding: 34px 28px 36px 0; }
.workflow-step:not(:last-child)::after { content: '→'; position: absolute; right: 16px; top: 38px; color: #9ca7ba; }
.workflow-step .step-number { color: var(--blue); font: 700 1.7rem var(--font-display); }
.workflow-step h3 { margin: 50px 0 12px; font-size: 1.2rem; }
.workflow-step p { margin: 0; padding-right: 24px; font-size: .9rem; }

.outcome-list { display: grid; grid-template-columns: repeat(5, 1fr); margin: 0; padding: 0; border-block: 1px solid var(--line); list-style: none; counter-reset: outcome; }
.outcome-list li { min-height: 190px; padding: 28px 24px; color: var(--ink); font-weight: 650; counter-increment: outcome; }
.outcome-list li + li { border-left: 1px solid var(--line); }
.outcome-list li::before { content: '0' counter(outcome); display: block; margin-bottom: 45px; color: var(--blue); font-size: .72rem; letter-spacing: .12em; }

.proof-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  padding: 48px;
  color: var(--white);
  background: var(--blue);
}
.proof-banner h2 { max-width: 790px; margin-bottom: 14px; color: var(--white); font-size: clamp(2rem, 3.6vw, 3.2rem); }
.proof-banner p { max-width: 770px; margin-bottom: 0; color: #e2e8ff; }
.proof-banner .button { white-space: nowrap; }

.pricing-paths { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.pricing-path {
  display: block;
  padding: 28px;
  text-align: left;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.pricing-path:hover, .pricing-path[aria-selected='true'] { border-color: var(--blue); box-shadow: var(--shadow-soft); transform: translateY(-2px); }
.pricing-path strong { display: block; margin-bottom: 7px; font: 700 1.18rem var(--font-display); }
.pricing-path span { color: var(--muted); font-size: .88rem; }
.pricing-panel { margin-top: 26px; }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.plans.two { grid-template-columns: repeat(2, 1fr); max-width: 820px; }
.plan-card { position: relative; padding: 31px; border: 1px solid var(--line); background: var(--white); }
.plan-card.featured { border: 2px solid var(--blue); }
.plan-badge { display: inline-block; margin-bottom: 20px; color: var(--blue); font-size: .7rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.plan-price { margin: 18px 0 7px; color: var(--ink); font: 750 2.8rem/1 var(--font-display); letter-spacing: -.06em; }
.plan-price span { font: 400 .85rem var(--font-body); letter-spacing: 0; }
.plan-card ul { margin: 25px 0; padding: 0; list-style: none; }
.plan-card li { position: relative; margin: 10px 0; padding-left: 25px; color: var(--muted); font-size: .9rem; }
.plan-card li::before { content: '✓'; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.plan-card .button { width: 100%; margin-top: 8px; }
.pricing-note { margin-top: 20px; font-size: .82rem; }

.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; gap: 20px; padding: 24px 0; color: var(--ink); font: 650 1.08rem var(--font-display); cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; color: var(--blue); font-size: 1.35rem; }
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p { max-width: 680px; padding: 0 30px 22px 0; }

.final-cta { position: relative; overflow: hidden; padding-block: 92px; color: var(--white); background: var(--blue); }
.final-cta .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.final-cta h2 { max-width: 820px; margin-bottom: 12px; color: var(--white); }
.final-cta p { max-width: 680px; margin-bottom: 0; color: #dde5ff; }
.final-cta::after { content: '✳'; position: absolute; right: -70px; bottom: -150px; color: rgba(255,255,255,.09); font-size: 25rem; line-height: 1; }

.site-footer { padding-block: 64px 36px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr .8fr; gap: 50px; }
.footer-brand p { max-width: 300px; margin-top: 20px; font-size: .9rem; }
.footer-col strong { display: block; margin-bottom: 17px; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-col a { display: block; margin: 10px 0; color: var(--muted); font-size: .9rem; }
.footer-col a:hover { color: var(--blue); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 22px; border-top: 1px solid var(--line); }
.footer-bottom p { margin: 0; font-size: .78rem; }

/* Marketing-site Helper launcher: compact prompt + full logo mark. */
#hsd-chat-widget .hsd-launch-wrap { gap: 10px; }
#hsd-chat-widget .hsd-attention {
  display: grid; place-items: center; min-width: 126px; height: 52px;
  padding: 0 18px; border-radius: 9px; background: #244dea; color: #fff;
  box-shadow: 0 9px 22px rgba(15,23,42,.22); font-size: 15px;
  font-weight: 800; line-height: 1;
}
#hsd-chat-widget .hsd-orb {
  width: 56px; height: 58px; min-width: 56px; padding: 0; border-radius: 0;
  background: transparent; box-shadow: none; overflow: visible;
}
#hsd-chat-widget .hsd-orb-img {
  width: 100%; height: 100%; border-radius: 0; object-fit: contain;
}

.page-hero { padding-block: 78px 88px; }
.page-hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 60px; align-items: center; }
.page-hero h1 { font-size: clamp(3rem, 5.2vw, 5rem); }
.page-hero .lead { max-width: 660px; }
.page-hero .hero-media { min-height: 545px; }
.page-hero .hero-media picture img, .page-hero .hero-media > img { height: 410px; }
.breadcrumbs { margin-bottom: 27px; color: var(--muted); font-size: .78rem; }
.breadcrumbs a:hover { color: var(--blue); }
.breadcrumbs span { margin-inline: 8px; }

.ui-panel { padding: 30px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); }
.ui-top { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 25px; }
.ui-top strong { font-family: var(--font-display); }
.status-pill { display: inline-flex; align-items: center; gap: 7px; padding: 6px 9px; color: var(--green); background: #eaf8f2; border-radius: 999px; font-size: .7rem; font-weight: 700; }
.status-pill::before { content: ''; width: 6px; height: 6px; background: currentColor; border-radius: 50%; }
.question-card { margin: 12px 0; padding: 16px; color: #33405c; background: var(--blue-pale); border-left: 3px solid var(--blue); font-size: .9rem; }
.option-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: .83rem; }
.option-row:last-child { border-bottom: 0; }
.option-row strong { font-family: var(--font-body); }
.match { color: var(--green); font-weight: 700; }
.no-match { color: var(--red); font-weight: 700; }
.unknown { color: var(--amber); font-weight: 700; }

.requirements-visual { padding: 22px; background: var(--blue-pale); border: 1px solid var(--line); }
.requirements-visual .customer-prompt { padding: 20px; color: var(--white); background: var(--ink); font: 650 1.05rem/1.5 var(--font-display); }
.requirement-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin: 15px 0; }
.requirement { padding: 11px; background: var(--white); border: 1px solid var(--line); font-size: .76rem; }
.requirement span { display: block; margin-bottom: 3px; color: var(--muted); font-size: .66rem; text-transform: uppercase; letter-spacing: .08em; }
.candidate { padding: 16px; background: var(--white); border: 2px solid var(--blue); }
.candidate .candidate-head { display: flex; justify-content: space-between; gap: 14px; margin-bottom: 9px; }
.candidate p { margin: 0; font-size: .78rem; }
.unknown-line { margin-top: 10px; padding: 11px; color: #754600; background: #fff6e5; border-left: 3px solid #e39b1b; font-size: .76rem; }

.split-block { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-block.reverse > :first-child { order: 2; }
.list-block { margin: 30px 0 0; padding: 0; list-style: none; }
.list-block li { padding: 17px 0; border-top: 1px solid var(--line); color: var(--ink); font-weight: 650; }
.list-block li span { display: block; margin-top: 4px; color: var(--muted); font-size: .9rem; font-weight: 400; }
.metric-strip { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.metric { padding: 30px; text-align: center; }
.metric + .metric { border-left: 1px solid var(--line); }
.metric strong { display: block; color: var(--blue); font: 750 1.85rem var(--font-display); }
.metric span { color: var(--muted); font-size: .82rem; }
.callout { padding: 35px; background: var(--blue-pale); border-left: 4px solid var(--blue); }
.callout h3 { margin-bottom: 12px; }
.callout p:last-child { margin-bottom: 0; }
.outcome-followup { margin-top: 24px; gap: 20px; }
.outcome-followup .callout { height: 100%; background: var(--white); }
.section.dark .ui-panel { color: var(--ink); }
.section.dark .ui-panel p { color: var(--muted); }

.comparison-table { width: 100%; border-collapse: collapse; background: var(--white); }
.comparison-table th, .comparison-table td { padding: 16px 18px; border-bottom: 1px solid var(--line); text-align: left; font-size: .88rem; }
.comparison-table th { color: var(--ink); background: var(--blue-pale); font-family: var(--font-display); }
.comparison-table td:first-child { font-weight: 650; }
.comparison-table .pass { color: var(--green); font-weight: 700; }
.comparison-table .fail { color: var(--red); font-weight: 700; }
.comparison-table .ask { color: var(--amber); font-weight: 700; }

.handoff-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.handoff-step { position: relative; padding: 28px; background: var(--white); border: 1px solid var(--line); }
.handoff-step:not(:last-child)::after { content: '→'; position: absolute; right: -13px; top: 50%; z-index: 1; display: grid; place-items: center; width: 26px; height: 26px; color: var(--blue); background: var(--white); border: 1px solid var(--line); border-radius: 50%; }
.handoff-step strong { display: block; margin-bottom: 10px; color: var(--ink); font-family: var(--font-display); }
.section.dark .handoff-step p { margin: 0; color: var(--muted); font-size: .88rem; }

.persona-row { display: flex; flex-wrap: wrap; gap: 10px; }
.persona-row span { padding: 10px 13px; color: var(--ink); background: var(--white); border: 1px solid var(--line); font-size: .82rem; font-weight: 650; }
.privacy-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.privacy-item { padding: 24px; background: var(--white); border: 1px solid var(--line); }
.privacy-item strong { display: block; margin-bottom: 8px; font-family: var(--font-display); }
.privacy-item p { margin: 0; font-size: .88rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in-view { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .header-actions .login-link { display: none; }
  .hero, .page-hero-grid { grid-template-columns: 1fr; }
  .hero { min-height: 0; }
  .hero-copy { max-width: 850px; }
  .hero-media { min-height: 620px; }
  .section-head { gap: 40px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-bottom: 1px solid var(--line); }
  .trust-item:nth-child(odd) { border-left: 0; }
  .trust-item:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .plans { grid-template-columns: 1fr; }
  .plans.two { grid-template-columns: repeat(2, 1fr); }
  .outcome-list { grid-template-columns: repeat(2, 1fr); }
  .outcome-list li { border-bottom: 1px solid var(--line); }
  .outcome-list li:nth-child(odd) { border-left: 0; }
  .outcome-list li:last-child { grid-column: 1 / -1; }
}

@media (max-width: 800px) {
  .container, .narrow { width: min(100% - 40px, var(--container)); }
  .header-inner { min-height: 74px; }
  .header-actions .button { display: none; }
  .mobile-nav { inset-block-start: 74px; padding-inline: 20px; }
  .section { padding-block: 78px; }
  .hero, .page-hero { padding-block: 54px 68px; }
  .hero { gap: 44px; }
  .hero h1, .page-hero h1 { font-size: clamp(2.75rem, 12vw, 4rem); }
  .hero-media, .page-hero .hero-media { min-height: 500px; padding: 16px 16px 130px; }
  .hero-media picture img, .hero-media > img, .page-hero .hero-media picture img, .page-hero .hero-media > img { height: 335px; }
  .floating-chat { width: calc(100% - 20px); bottom: 20px; }
  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .section-head .eyebrow { margin-bottom: 0; }
  .benefit-strip .container { grid-template-columns: 1fr; }
  .benefit-strip p + p { border-left: 0; border-top: 1px solid var(--line); }
  .benefit-card { min-height: 0; }
  .benefit-card + .benefit-card { border-left: 0; border-top: 1px solid var(--line); }
  .bridge, .path-grid, .demo-panel, .split-block, .faq-layout, .pricing-paths { grid-template-columns: 1fr; }
  .bridge { gap: 28px; }
  .split-block.reverse > :first-child { order: initial; }
  .shared-foundation { grid-template-columns: repeat(2, 1fr); }
  .shared-foundation div:nth-child(odd) { border-left: 0; }
  .shared-foundation div:nth-child(n+3) { border-top: 1px solid var(--line); }
  .feature-grid { grid-template-columns: 1fr; }
  .workflow { grid-template-columns: 1fr 1fr; }
  .workflow-step:nth-child(2)::after { display: none; }
  .workflow-step h3 { margin-top: 24px; }
  .proof-banner, .final-cta .container { grid-template-columns: 1fr; }
  .final-cta .button { justify-self: start; }
  .plans.two { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .metric-strip { grid-template-columns: 1fr; }
  .metric + .metric { border-left: 0; border-top: 1px solid var(--line); }
  .handoff-flow { grid-template-columns: 1fr; }
  .handoff-step:not(:last-child)::after { content: '↓'; right: 50%; top: auto; bottom: -13px; transform: translateX(50%); }
  .privacy-list { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .container, .narrow { width: min(100% - 30px, var(--container)); }
  h2 { font-size: 2.15rem; }
  .brand-word small { display: none; }
  .hero-media, .page-hero .hero-media { min-height: 480px; }
  .floating-chat { padding: 14px; }
  .chat-bubble.user { margin-left: 12px; }
  .actions { align-items: stretch; }
  .actions .button { width: 100%; }
  .actions .text-link { padding: 10px 2px; }
  .path-card { min-height: auto; padding: 28px; }
  .illustration-card { margin-top: 28px; padding: 7px; }
  .illustration-card figcaption { padding-inline: 5px; }
  .demo-tabs { flex-direction: column; }
  .demo-question, .demo-answer { padding: 27px; }
  .trust-grid, .workflow, .outcome-list, .shared-foundation { grid-template-columns: 1fr; }
  .trust-item, .trust-item:nth-child(odd), .shared-foundation div + div, .shared-foundation div:nth-child(n+3), .outcome-list li + li { border-left: 0; border-top: 1px solid var(--line); }
  .trust-item:first-child, .shared-foundation div:first-child { border-top: 0; }
  .trust-item:last-child, .outcome-list li:last-child { grid-column: auto; }
  .workflow-step::after { display: none; }
  .proof-banner { padding: 32px 26px; }
  .final-cta { padding-block: 70px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .requirement-grid { grid-template-columns: 1fr; }
  .comparison-table { display: block; overflow-x: auto; white-space: nowrap; }
}

@media (prefers-reduced-motion: reduce) {
  .helper-eyes, .helper-smile { animation:none !important; transform:none !important; }
  .helper-eyes { opacity:0 !important; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (forced-colors: active) {
  .text-blue, .gradient-text {
    background: none;
    color: CanvasText;
    -webkit-text-fill-color: CanvasText;
  }
}
