:root {
  --bg: #ffffff;
  --ink: #111827;
  --muted: #667085;
  --line: #e6e9ef;
  --soft: #f7f9fc;
  --soft-blue: #eef4ff;
  --blue: #315eea;
  --blue-dark: #2346b8;
  --lime: #b9f45f;
  --dark: #101522;
  --card: #ffffff;
  --radius: 20px;
  --shadow: 0 24px 70px rgba(17,24,39,.09);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.section-pad { padding: 104px 0; }
.soft-section { background: var(--soft); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 2000; padding: 10px 14px; border-radius: 8px; background: var(--ink); color: white; text-decoration: none; }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(230,233,239,.85);
  backdrop-filter: blur(14px);
}
.nav-wrap { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-text { font-size: 18px; letter-spacing: -.02em; }
.brand-mark { width: 31px; height: 31px; display: inline-grid; grid-template-columns: repeat(3,1fr); gap: 3px; padding: 5px; background: var(--ink); border-radius: 9px; }
.brand-mark span { border-radius: 2px; background: white; }
.brand-mark span:nth-child(2) { transform: translateY(4px); background: var(--lime); }
.brand-mark span:nth-child(3) { transform: translateY(8px); background: #80a1ff; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav > a:not(.button) { text-decoration: none; color: #454f63; font-size: 14px; font-weight: 600; }
.site-nav > a:not(.button):hover { color: var(--ink); }
.legal-nav { display: flex; align-items: center; gap: 20px; }
.legal-nav > a:not(.button) { text-decoration: none; color: #454f63; font-size: 14px; font-weight: 600; }
.legal-nav > a:not(.button):hover { color: var(--ink); }
.nav-toggle { display: none; border: 0; background: transparent; width: 42px; height: 42px; padding: 9px; }
.nav-toggle > span:not(.sr-only) { display: block; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 999px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--blue);
  border-radius: 12px;
  background: var(--blue);
  color: white;
  text-decoration: none;
  font-weight: 750;
  letter-spacing: -.01em;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
  box-shadow: 0 8px 22px rgba(49,94,234,.18);
}
.button:hover { background: var(--blue-dark); transform: translateY(-1px); }
.button-small { min-height: 42px; padding-inline: 16px; font-size: 14px; border-radius: 10px; }
.button-inverse { background: white; border-color: white; color: var(--ink); box-shadow: none; }
.button-inverse:hover { background: #f1f4f8; }
.text-link { color: var(--ink); font-weight: 700; text-decoration: none; border-bottom: 1px solid #bdc5d2; padding-bottom: 3px; }

.hero { padding-top: 92px; padding-bottom: 82px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 72px; }
.eyebrow, .kicker { color: var(--blue); text-transform: uppercase; letter-spacing: .11em; font-size: 12px; font-weight: 800; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 8px 12px; border: 1px solid #dce5ff; border-radius: 999px; background: #f8faff; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #48b96f; box-shadow: 0 0 0 4px rgba(72,185,111,.13); }
.hero h1 { max-width: 720px; margin: 23px 0 24px; font-size: clamp(48px, 6vw, 76px); line-height: .98; letter-spacing: -.058em; font-weight: 800; }
.accent-underline { position: relative; white-space: nowrap; }
.accent-underline::after { content: ""; position: absolute; z-index: -1; left: 1%; right: -1%; bottom: 4%; height: 17%; background: var(--lime); border-radius: 999px; transform: rotate(-1.2deg); }
.hero-lede { max-width: 690px; margin: 0; color: #566176; font-size: 20px; line-height: 1.65; }
.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 24px; }
.hero-proof { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 9px; }
.hero-proof span { padding: 7px 10px; border-radius: 7px; color: #596579; background: #f4f6f9; font-size: 12px; font-weight: 650; }

.system-card { position: relative; padding: 22px; border: 1px solid var(--line); border-radius: 26px; background: #fff; box-shadow: var(--shadow); }
.system-card::before { content: ""; position: absolute; inset: -22px; z-index: -1; background: radial-gradient(circle at 70% 30%, rgba(49,94,234,.13), transparent 55%); }
.system-card-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 17px; color: #4c586d; font-size: 13px; font-weight: 750; border-bottom: 1px solid var(--line); }
.system-live { display: inline-flex; align-items: center; gap: 6px; color: #2f7b4e; }
.system-live i { width: 7px; height: 7px; border-radius: 50%; background: #52bf79; }
.system-flow { padding: 23px 4px 20px; }
.flow-node { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: center; }
.flow-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; background: var(--soft-blue); color: var(--blue); font-weight: 850; font-size: 12px; }
.flow-node strong { display: block; margin-bottom: 3px; font-size: 15px; }
.flow-node small { color: #758096; font-size: 12px; }
.flow-line { height: 28px; margin-left: 20px; display: flex; align-items: stretch; }
.flow-line span { width: 1px; background: #d6dcea; }
.system-footer { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; padding-top: 16px; border-top: 1px solid var(--line); }
.system-footer > div { padding: 11px; border-radius: 10px; background: var(--soft); }
.system-footer strong, .system-footer span { display: block; }
.system-footer strong { font-size: 13px; }
.system-footer span { margin-top: 2px; color: #7a8497; font-size: 11px; }

.logo-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.logo-strip-inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; overflow: hidden; }
.logo-strip span { flex: 0 0 auto; color: #8a93a5; font-size: 13px; font-weight: 800; letter-spacing: .01em; }

.section-heading { max-width: 700px; }
.section-heading.narrow { margin: 0 auto 54px; text-align: center; }
.section-heading h2 { margin: 12px 0 18px; font-size: clamp(36px, 4.6vw, 55px); line-height: 1.04; letter-spacing: -.045em; }
.section-heading h2 span { color: #6c778c; }
.section-heading p { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.7; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 70px; margin-bottom: 48px; }

.problem-grid { display: grid; grid-template-columns: repeat(5,1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.problem-card { min-height: 235px; padding: 26px 22px; background: white; border-right: 1px solid var(--line); }
.problem-card:last-child { border-right: 0; }
.problem-card > span { color: var(--blue); font-size: 12px; font-weight: 850; }
.problem-card h3 { margin: 48px 0 10px; font-size: 18px; letter-spacing: -.02em; }
.problem-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.service-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.service-card { position: relative; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.service-card.featured { border-color: #b9cbff; box-shadow: 0 18px 50px rgba(49,94,234,.08); }
.service-card.dark-card { background: var(--dark); color: white; border-color: var(--dark); }
.service-tag { display: inline-flex; padding: 6px 9px; color: var(--blue); background: var(--soft-blue); border-radius: 7px; font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .09em; }
.dark-card .service-tag { background: rgba(185,244,95,.13); color: var(--lime); }
.service-card h3 { margin: 22px 0 10px; font-size: 28px; letter-spacing: -.035em; }
.service-card > p { margin: 0 0 22px; color: var(--muted); line-height: 1.65; }
.dark-card > p { color: #b8c0d0; }
.service-card ul { margin: 0 0 26px; padding: 0; list-style: none; }
.service-card li { position: relative; padding: 8px 0 8px 22px; color: #4f5a6f; font-size: 14px; }
.service-card li::before { content: ""; position: absolute; left: 0; top: 15px; width: 8px; height: 8px; border-radius: 50%; background: var(--lime); border: 2px solid var(--ink); }
.dark-card li { color: #c8cfdb; }
.dark-card li::before { border-color: white; }
.service-link { font-weight: 800; text-decoration: none; }
.service-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.chip-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 1040px; margin: 0 auto; }
.chip-cloud span { padding: 11px 14px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: #596579; font-size: 13px; font-weight: 650; }
.outcome-panel { margin-top: 54px; padding: 38px 42px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; border: 1px solid #dce4f3; border-radius: var(--radius); background: linear-gradient(135deg,#f9fbff,#f3f7ff); }
.outcome-panel h3 { margin: 10px 0 0; font-size: 29px; letter-spacing: -.035em; }
.outcome-panel p { margin: 0; color: var(--muted); line-height: 1.75; }

.process-section { background: var(--dark); color: white; }
.light-copy p { color: #b4bdcc; }
.light-copy h2 span { color: #a8b2c4; }
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: #313848; border: 1px solid #313848; border-radius: var(--radius); overflow: hidden; }
.process-grid article { padding: 36px; background: var(--dark); }
.process-number { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid #485165; border-radius: 50%; color: var(--lime); font-weight: 850; }
.process-grid h3 { margin: 48px 0 12px; font-size: 21px; }
.process-grid p { margin: 0; color: #aeb8c9; line-height: 1.65; font-size: 14px; }

.comparison-section { background: #fbfcfe; }
.comparison-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: center; }
.comparison-table { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: white; box-shadow: 0 18px 50px rgba(17,24,39,.05); }
.comparison-row { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); }
.comparison-row:last-child { border-bottom: 0; }
.comparison-row > div { padding: 17px 20px; font-size: 14px; line-height: 1.45; }
.comparison-row > div + div { border-left: 1px solid var(--line); color: #314057; font-weight: 650; background: #fbfdff; }
.comparison-row.header { background: var(--ink); color: white; font-weight: 800; }
.comparison-row.header > div + div { background: var(--ink); color: white; }

.form-section { background: var(--soft-blue); }
.form-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }
.form-copy { position: sticky; top: 112px; }
.form-copy h2 { margin: 12px 0 16px; font-size: clamp(38px,5vw,58px); letter-spacing: -.05em; line-height: 1.02; }
.form-copy > p { color: #5f6b80; line-height: 1.7; font-size: 17px; }
.form-expectations { margin-top: 34px; display: grid; gap: 18px; }
.form-expectations > div { padding-top: 18px; border-top: 1px solid #cad7f6; }
.form-expectations strong, .form-expectations span { display: block; }
.form-expectations strong { margin-bottom: 4px; font-size: 14px; }
.form-expectations span { color: #6d7890; font-size: 13px; line-height: 1.55; }
.contact-form { padding: 34px; border-radius: 22px; background: white; border: 1px solid #d5dff5; box-shadow: 0 24px 70px rgba(49,94,234,.09); }
.form-row { margin-bottom: 19px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: block; color: #344054; font-size: 13px; font-weight: 750; }
.contact-form label > span:first-child { color: #d84848; }
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="url"], .contact-form select, .contact-form textarea {
  width: 100%; margin-top: 8px; border: 1px solid #d7dce5; border-radius: 10px; background: white; color: var(--ink); outline: none; transition: border .15s, box-shadow .15s;
}
.contact-form input, .contact-form select { min-height: 48px; padding: 0 13px; }
.contact-form textarea { padding: 13px; resize: vertical; min-height: 150px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: #7697f1; box-shadow: 0 0 0 4px rgba(49,94,234,.09); }
.contact-form [aria-invalid="true"] { border-color: #d94a4a !important; box-shadow: 0 0 0 4px rgba(217,74,74,.08) !important; }
.hp-field { position: absolute !important; left: -99999px !important; opacity: 0 !important; pointer-events: none !important; }
.consent-row { display: grid !important; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; margin: 6px 0 22px; color: #667085 !important; font-weight: 500 !important; line-height: 1.5; }
.consent-row input { width: 16px; height: 16px; margin-top: 2px; }
.form-submit-row { display: flex; align-items: center; gap: 16px; }
.submit-button { border: 0; }
.submit-button[disabled] { opacity: .65; cursor: wait; transform: none; }
.form-note { color: #8a94a6; font-size: 12px; }
.form-status { margin-top: 14px; min-height: 20px; font-size: 13px; font-weight: 650; }
.form-status.success { color: #24744a; }
.form-status.error { color: #b73838; }

.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; align-items: start; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; cursor: pointer; padding: 22px 38px 22px 0; position: relative; font-weight: 760; letter-spacing: -.01em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 18px; color: var(--blue); font-size: 25px; font-weight: 400; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { margin: -6px 0 23px; padding-right: 45px; color: var(--muted); line-height: 1.65; }

.final-cta { padding: 68px 0; background: var(--blue); color: white; }
.final-cta .kicker { color: #d7e1ff; }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.final-cta h2 { margin: 9px 0 0; font-size: clamp(34px,4vw,50px); letter-spacing: -.045em; }

.site-footer { padding: 60px 0 24px; background: #0b0f18; color: white; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.footer-brand .brand-mark { background: white; }
.footer-brand .brand-mark span { background: var(--ink); }
.footer-brand .brand-mark span:nth-child(2) { background: var(--blue); }
.footer-brand .brand-mark span:nth-child(3) { background: #8bb0ff; }
.footer-grid p { max-width: 470px; margin: 18px 0 0; color: #9ba5b6; line-height: 1.65; font-size: 14px; }
.footer-links { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 14px 24px; }
.footer-links a { color: #c5ccda; text-decoration: none; font-size: 13px; }
.footer-links a:hover { color: white; }
.footer-bottom { margin-top: 48px; padding-top: 20px; display: flex; justify-content: space-between; border-top: 1px solid #282f3c; color: #7f899a; font-size: 12px; }

.legal-page { min-height: 70vh; padding: 90px 0; }
.legal-wrap { max-width: 820px; }
.legal-wrap h1 { margin: 10px 0 30px; font-size: clamp(42px,6vw,64px); letter-spacing: -.05em; }
.legal-wrap h2 { margin-top: 38px; font-size: 23px; }
.legal-wrap p, .legal-wrap li { color: #5f6b80; line-height: 1.75; }
.legal-wrap a { color: var(--blue); }

@media (max-width: 980px) {
  .section-pad { padding: 82px 0; }
  .hero-grid, .form-layout, .faq-layout, .comparison-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding-top: 68px; }
  .hero-copy { max-width: 760px; }
  .system-card { max-width: 680px; }
  .problem-grid { grid-template-columns: repeat(2,1fr); }
  .problem-card { border-bottom: 1px solid var(--line); }
  .problem-card:nth-child(even) { border-right: 0; }
  .problem-card:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .split-heading { grid-template-columns: 1fr; gap: 18px; }
  .outcome-panel { grid-template-columns: 1fr; gap: 20px; }
  .form-copy { position: static; }
  .faq-layout .section-heading { max-width: 650px; }
}

@media (max-width: 800px) {
  .nav-toggle { display: block; }
  .site-nav { position: absolute; top: calc(100% + 1px); left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 14px 20px 22px; background: white; border-bottom: 1px solid var(--line); box-shadow: 0 14px 30px rgba(17,24,39,.08); }
  .site-nav.open { display: flex; }
  .site-nav > a:not(.button) { padding: 12px 2px; }
  .site-nav .button { margin-top: 8px; }
  .legal-nav > a:not(.button) { display: none; }
  .logo-strip-inner { justify-content: flex-start; overflow-x: auto; padding-block: 19px; }
  .service-grid, .process-grid { grid-template-columns: 1fr; }
  .process-grid { gap: 1px; }
  .final-cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section-pad { padding: 68px 0; }
  .hero { padding-top: 50px; }
  .hero h1 { font-size: clamp(43px,13vw,62px); }
  .hero-lede { font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 16px; }
  .hero-actions .text-link { align-self: flex-start; }
  .system-card { padding: 16px; border-radius: 18px; }
  .system-footer { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card, .problem-card:nth-child(even) { border-right: 0; border-bottom: 1px solid var(--line); }
  .problem-card:last-child { grid-column: auto; }
  .service-card { padding: 25px; }
  .two-col { grid-template-columns: 1fr; }
  .contact-form { padding: 22px; border-radius: 16px; }
  .form-submit-row { align-items: flex-start; flex-direction: column; }
  .comparison-row > div { padding: 14px; font-size: 12px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .outcome-panel { padding: 28px; }
}

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