:root {
  --navy: #102a4c;
  --dark: #081c33;
  --blue: #2563eb;
  --canvas: #ffffff;
  --surface: #f5f7fa;
  --text: #102334;
  --muted: #607083;
  --line: #dce3ea;
  --focus: #3478e5;
  --proof-sky: #eaf3ff;
  --font: "Manrope", Arial, sans-serif;
  --font-heading: "Sora", Arial, sans-serif;
  --shell: min(1120px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--canvas);
  font: 400 1rem/1.6 var(--font);
  text-rendering: optimizeLegibility;
}
body.dialog-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, summary { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-underline-offset: .2em; }
h1, h2, h3, p, dl, dd, blockquote { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; letter-spacing: -.04em; }
h1 { font-size: clamp(2.7rem, 6.3vw, 4.8rem); line-height: .98; }
h2 { font-size: clamp(2.15rem, 5vw, 3.7rem); line-height: 1.04; }
h3 { line-height: 1.2; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.shell { width: var(--shell); margin-inline: auto; }
.narrow-shell { max-width: 960px; }
.section { padding: 80px 0; }
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--canvas);
  background: var(--blue);
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }
.eyebrow, .data-label, .utility-label {
  color: var(--blue);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .11em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow { margin-bottom: 18px; }
.pending { color: #7b5100; font-size: .78em; font-weight: 700; }
.section-heading { max-width: 790px; margin-bottom: 44px; }
.section-heading h2 { margin-bottom: 18px; }
.section-heading h2:last-child { margin-bottom: 0; }
.section-heading > p:not(.eyebrow) { max-width: 680px; color: var(--muted); font-size: 1.05rem; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid var(--blue);
  border-radius: 6px;
  color: var(--canvas);
  background: var(--blue);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.button:hover { border-color: var(--navy); background: var(--navy); transform: translateY(-1px); }
.button:disabled { cursor: wait; opacity: .65; transform: none; }
.button-small { min-height: 48px; padding: 10px 14px; font-size: .78rem; }
.button-secondary { color: var(--text); border-color: var(--line); background: transparent; }
.button-secondary:hover { color: var(--canvas); }
.text-button {
  min-height: 48px;
  padding: 8px 0;
  border: 0;
  color: var(--blue);
  background: none;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  min-height: 66px;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; min-width: 0; gap: 10px; align-items: center; text-decoration: none; }
.brand-mark { display: block; width: 36px; height: 36px; flex: 0 0 auto; }
.brand-name { display: grid; line-height: 1.1; }
.brand-name strong { color: var(--navy); font-family: var(--font-heading); font-size: 1.04rem; letter-spacing: -.04em; }
.brand-name small { display: none; margin-top: 4px; color: var(--muted); font-size: .64rem; }

.hero-simple { padding: 48px 0 0; background: var(--canvas); }
.hero-simple-inner { max-width: 1160px; }
.hero-simple .eyebrow { max-width: 590px; }
.hero-simple h1 { max-width: 940px; margin-bottom: 22px; color: var(--dark); }
.hero-lead { max-width: 760px; margin-bottom: 26px; color: var(--muted); font-size: 1.04rem; }
.hero-action { display: flex; flex-direction: column; gap: 9px; align-items: flex-start; }
.hero-action span, .process-cta span { color: var(--muted); font-size: .78rem; }
.b2b-note { margin: 22px 0 34px; color: var(--muted); font-size: .84rem; }
.b2b-note strong { color: var(--text); }
.fact-strip {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.fact-strip li {
  display: grid;
  grid-template-columns: minmax(90px, .65fr) 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.fact-strip span { color: var(--muted); font-size: .72rem; text-transform: uppercase; }
.fact-strip strong { font-size: .92rem; }

.problem { background: var(--surface); }
.problem-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.problem-list li { display: grid; gap: 8px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.problem-list span { color: var(--navy); font-weight: 700; }
.problem-list p { margin: 0; color: var(--muted); }
.business-consequence {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--navy);
  font-size: 1.04rem;
  font-weight: 600;
}

.difference { color: var(--canvas); background: var(--dark); }
.difference .eyebrow { color: #84aefc; }
.light-heading > p:not(.eyebrow) { color: #aebed0; }
.comparison { border-top: 1px solid #36506c; }
.comparison article { padding: 28px 0; border-bottom: 1px solid #36506c; }
.comparison h3 { margin-bottom: 20px; font-size: 1.3rem; }
.comparison ul { display: grid; gap: 13px; margin: 0; padding: 0; color: #b9c7d6; list-style: none; }
.comparison li { position: relative; padding-left: 19px; }
.comparison li::before {
  position: absolute;
  top: .58em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8296aa;
  content: "";
}
.comparison-focus li::before { background: #78a2f7; }

.process { background: var(--canvas); }
.simple-process { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.simple-process li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.simple-process li > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 700;
}
.simple-process h3 { margin: 2px 0 8px; font-size: 1.25rem; }
.simple-process p { margin: 0; color: var(--muted); }
.process-cta { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; margin-top: 32px; }

.social-proof { overflow: hidden; background: var(--proof-sky); }
.proof-intro .section-heading { margin-bottom: 42px; }
.case-layout { display: grid; gap: 36px; align-items: center; }
.case-video-template {
  position: relative;
  display: grid;
  width: min(100%, 300px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  place-items: center;
  border-radius: 8px;
  color: var(--canvas);
  background: var(--dark);
  box-shadow: 0 22px 50px rgba(8, 28, 51, .16);
}
.case-video-template::after {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 4px;
  content: "";
}
.video-label, .video-duration {
  position: absolute;
  z-index: 1;
  left: 28px;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.video-label { top: 28px; }
.video-duration { bottom: 28px; color: #aebed0; }
.case-video-template > div { position: relative; z-index: 1; display: grid; gap: 8px; padding: 30px; text-align: center; }
.case-video-template small { color: #aebed0; }
.case-study-copy { min-width: 0; }
.case-study-copy h3 {
  max-width: 630px;
  margin: 12px 0 18px;
  font-size: clamp(1.8rem, 5vw, 3rem);
}
.case-study-copy > p:not(.eyebrow) { max-width: 650px; color: var(--muted); }
.case-facts { margin: 28px 0 0; border-top: 1px solid var(--line); }
.case-facts > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  min-width: 0;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.case-facts dt { color: var(--muted); font-size: .7rem; text-transform: uppercase; }
.case-facts dd { min-width: 0; overflow-wrap: anywhere; font-size: .82rem; font-weight: 700; }
.testimonial-kicker {
  margin-top: 28px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: .74rem;
}
.testimonial-rail { width: 100%; overflow: hidden; background: #e8edf0; }
.testimonial-track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.testimonial-rail[data-loop-ready="true"] .testimonial-track {
  animation: testimonial-scroll 36s linear infinite;
}
.testimonial-rail:hover .testimonial-track,
.testimonial-rail:focus-within .testimonial-track { animation-play-state: paused; }
.testimonial-group { display: flex; gap: 16px; padding: 24px 8px; }
.testimonial-card {
  display: flex;
  width: min(360px, calc(100vw - 40px));
  min-height: 292px;
  flex: 0 0 auto;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 18px;
  background: var(--canvas);
  box-shadow: 0 14px 34px rgba(6, 37, 92, .18);
}
.review-card-head { display: grid; grid-template-columns: 42px minmax(0, 1fr) auto; gap: 12px; align-items: center; }
.review-card-head > div { display: grid; min-width: 0; line-height: 1.25; }
.review-card-head strong { overflow: hidden; color: var(--dark); font-size: .84rem; text-overflow: ellipsis; white-space: nowrap; }
.review-card-head small { overflow: hidden; color: var(--muted); font-size: .66rem; text-overflow: ellipsis; white-space: nowrap; }
.company-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--canvas);
  background: var(--navy);
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 700;
}
.review-source-mark { display: block; width: 20px; height: 20px; object-fit: contain; }
.card-rating { display: flex; flex-wrap: wrap; gap: 5px 10px; align-items: center; margin-top: 20px; }
.card-rating > span { color: #f9ab00; letter-spacing: .08em; line-height: 1; }
.card-rating small { color: #7c5100; font-size: .64rem; font-weight: 700; }
.testimonial-card blockquote { margin: 24px 0; color: var(--text); font-family: var(--font); font-size: 1rem; font-style: normal; font-weight: 500; line-height: 1.55; }
.testimonial-card footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .66rem;
}
@keyframes testimonial-scroll { to { transform: translateX(var(--testimonial-offset)); } }

.decision { padding-bottom: 112px; background: var(--canvas); }
.fit-summary { display: grid; gap: 30px; }
.fit-summary article { padding-top: 20px; border-top: 2px solid var(--line); }
.fit-summary article:first-child { border-color: var(--blue); }
.fit-summary h3 { margin-bottom: 18px; font-size: 1.3rem; }
.fit-summary ul { display: grid; gap: 12px; margin: 0; padding-left: 20px; color: var(--muted); }
.faq-wrap {
  display: grid;
  gap: 28px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.faq-wrap > h3 { font-size: 1.55rem; }
.accordion-list details { border-top: 1px solid var(--line); }
.accordion-list details:last-child { border-bottom: 1px solid var(--line); }
.accordion-list summary {
  display: flex;
  min-height: 62px;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 2px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.accordion-list summary::-webkit-details-marker { display: none; }
.accordion-list summary span { color: var(--blue); font-size: 1.4rem; font-weight: 400; transition: transform 180ms ease; }
.accordion-list details[open] summary span { transform: rotate(45deg); }
.accordion-list details p { margin: 0; padding: 0 30px 22px 2px; color: var(--muted); }
.decision-cta {
  display: grid;
  gap: 24px;
  margin-top: 64px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.decision-cta h3 { max-width: 700px; margin-bottom: 10px; font-size: clamp(1.55rem, 4vw, 2.3rem); }
.decision-cta p { max-width: 670px; margin: 0; color: var(--muted); }
.decision-cta .button { align-self: start; justify-self: start; }

.site-footer {
  padding: 28px 0 106px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--surface);
  font-size: .72rem;
}
.site-footer .shell { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; }
.site-footer strong { color: var(--navy); }
.sticky-cta {
  position: fixed;
  z-index: 35;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 3px;
  padding: 9px 20px calc(9px + env(safe-area-inset-bottom));
  color: var(--canvas);
  background: var(--dark);
}
.sticky-cta .button { min-height: 48px; }
.sticky-cta small { text-align: center; font-size: .62rem; }
body.dialog-open .sticky-cta { display: none; }

.form-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--text);
  background: var(--canvas);
}
.form-dialog::backdrop { background: rgba(8, 28, 51, .78); }
.dialog-shell { min-height: 100%; }
.dialog-header {
  position: sticky;
  z-index: 5;
  top: 0;
  display: flex;
  min-height: 68px;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--canvas);
}
.dialog-header strong, .dialog-header span { display: block; }
.icon-button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: transparent;
  font-size: 1.8rem;
  cursor: pointer;
}
.dialog-content { width: min(680px, calc(100% - 40px)); margin: 0 auto; padding: 38px 0 120px; }
.form-progress-meta { display: flex; justify-content: space-between; color: var(--muted); font-size: .7rem; }
.form-progress { height: 6px; margin: 10px 0 36px; background: var(--line); }
.form-progress span { display: block; height: 100%; background: var(--blue); transition: width 250ms ease; }
.form-progress .progress-1 { width: 11%; }
.form-progress .progress-2 { width: 22%; }
.form-progress .progress-3 { width: 33%; }
.form-progress .progress-4 { width: 44%; }
.form-progress .progress-5 { width: 56%; }
.form-progress .progress-6 { width: 67%; }
.form-progress .progress-7 { width: 78%; }
.form-progress .progress-8 { width: 89%; }
.form-progress .progress-9 { width: 100%; }
.form-step h2 { margin-bottom: 12px; font-size: clamp(2rem, 9vw, 3.25rem); }
.form-step .step-copy { color: var(--muted); }
.option-list { display: grid; gap: 10px; margin: 28px 0; }
.option {
  position: relative;
  display: flex;
  min-height: 56px;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  background: var(--canvas);
  cursor: pointer;
}
.option:hover { border-color: var(--blue); }
.option:has(input:checked) { border: 2px solid var(--blue); background: #edf3ff; }
.option input { width: 20px; height: 20px; flex: 0 0 auto; accent-color: var(--blue); }
.option strong { font-size: .94rem; }
.field { display: grid; gap: 8px; margin: 18px 0; }
.field label, .field > span, .field legend { font-weight: 700; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #91a4b3;
  border-radius: 6px;
  color: var(--text);
  background: var(--canvas);
}
.field textarea { min-height: 90px; resize: vertical; }
.field-error { margin: 3px 0 0; color: #a12822; font-size: .76rem; }
.field [aria-invalid="true"] { border: 2px solid #a12822; }
.inline-check { align-items: flex-start; }
.conditional-field[hidden] { display: none; }
.form-actions { display: flex; gap: 10px; justify-content: space-between; margin-top: 32px; }
.form-actions .button:last-child { margin-left: auto; }
.privacy-copy { margin-top: 28px; color: var(--muted); font-size: .76rem; }
.submit-error { padding: 12px 14px; border-left: 3px solid #a12822; color: #7f2421; background: #fae9e7; }
.route-card { margin-top: 32px; padding: 24px; border-left: 4px solid var(--line); background: var(--canvas); }
.route-card.high { border-color: var(--blue); background: #edf3ff; }
.route-card.medium { border-color: #ffb000; background: #fff8e8; }
.route-card p { color: var(--muted); }
.agenda { display: grid; gap: 8px; margin: 20px 0; padding: 18px; border: 1px solid var(--line); }
.agenda span, .fine-print { color: var(--muted); font-size: .75rem; }

@media (max-width: 519px) {
  .site-header .button { display: none; }
  .header-inner { justify-content: flex-start; }
  .hero-simple { padding-top: 32px; }
  .hero-simple h1 { margin-bottom: 16px; }
  .hero-lead { margin-bottom: 18px; }
  .b2b-note { margin-top: 12px; }
}

@media (min-width: 760px) {
  :root { --shell: min(1120px, calc(100% - 72px)); }
  .section { padding: 112px 0; }
  .header-inner { min-height: 70px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-name strong { font-size: 1.15rem; }
  .brand-name small { display: block; }
  .button-small { padding-inline: 18px; font-size: .84rem; }
  .hero-simple { padding-top: 76px; }
  .hero-lead { font-size: 1.15rem; }
  .hero-action, .process-cta { flex-direction: row; flex-wrap: wrap; align-items: center; }
  .fact-strip { grid-template-columns: repeat(3, 1fr); }
  .fact-strip li { display: block; padding: 20px 24px; border-right: 1px solid var(--line); }
  .fact-strip li:first-child { padding-left: 0; }
  .fact-strip li:last-child { border-right: 0; }
  .fact-strip span, .fact-strip strong { display: block; }
  .fact-strip strong { margin-top: 4px; }
  .problem-list li {
    grid-template-columns: minmax(210px, .7fr) 1.3fr;
    gap: 42px;
    padding: 26px 0;
  }
  .comparison { display: grid; grid-template-columns: repeat(2, 1fr); }
  .comparison article { min-height: 300px; padding: 36px; border-right: 1px solid #36506c; }
  .comparison article:first-child { padding-left: 0; }
  .comparison article:last-child { border-right: 0; }
  .simple-process { display: grid; grid-template-columns: repeat(3, 1fr); }
  .simple-process li { display: block; min-height: 270px; padding: 28px; border-right: 1px solid var(--line); }
  .simple-process li:first-child { padding-left: 0; }
  .simple-process li:last-child { border-right: 0; }
  .simple-process li > span { margin-bottom: 52px; }
  .case-layout { grid-template-columns: minmax(230px, 280px) minmax(0, 1fr); gap: 48px; }
  .case-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .case-facts > div:nth-child(odd) { padding-right: 20px; }
  .case-facts > div:nth-child(even) { padding-left: 20px; border-left: 1px solid var(--line); }
  .fit-summary { grid-template-columns: repeat(2, 1fr); gap: 64px; }
  .faq-wrap { grid-template-columns: .7fr 1.3fr; gap: 70px; }
  .decision-cta { grid-template-columns: 1fr auto; gap: 60px; align-items: end; }
  .site-footer { padding-bottom: 28px; }
  .sticky-cta { display: none; }
  .form-dialog {
    width: min(860px, calc(100% - 48px));
    height: min(860px, calc(100% - 48px));
    margin: auto;
    border-radius: 10px;
  }
  .dialog-header { padding-inline: 28px; }
  .dialog-content { padding-top: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
  .testimonial-rail { overflow-x: auto; }
  .testimonial-track { animation: none !important; transform: none; }
}
