:root {
  --navy-950: #061d2e;
  --navy-900: #0a2a41;
  --navy-800: #123c56;
  --teal-700: #047b78;
  --teal-600: #078f89;
  --teal-100: #d8f2ef;
  --aqua-50: #f0faf9;
  --blue-50: #f3f7fa;
  --ink: #102a3b;
  --muted: #566b78;
  --line: #d7e2e8;
  --white: #ffffff;
  --danger: #b23b3b;
  --danger-soft: #fff0ef;
  --shadow: 0 24px 70px rgba(8, 42, 61, .12);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid #45c4bc; outline-offset: 3px; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 100; padding: 8px 12px; background: var(--white); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 760px); margin-inline: auto; }
.section { padding: 100px 0; }
.section.soft { background: var(--blue-50); }
.section.dark { color: var(--white); background: var(--navy-950); }
.eyebrow { margin: 0 0 14px; color: var(--teal-700); font-size: .82rem; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.dark .eyebrow { color: #66d7d0; }
h1, h2, h3 { margin: 0; color: var(--navy-950); font-weight: 700; line-height: 1.08; letter-spacing: -.035em; text-wrap: balance; }
h1 { font-size: clamp(2.65rem, 5.6vw, 5.25rem); max-width: 13ch; }
h2 { font-size: clamp(2rem, 3.5vw, 3.35rem); max-width: 18ch; }
h3 { font-size: 1.25rem; letter-spacing: -.015em; }
.dark h2, .dark h3 { color: var(--white); }
p { margin: 0; }
.lead { margin-top: 24px; max-width: 62ch; color: var(--muted); font-size: clamp(1.05rem, 1.7vw, 1.25rem); line-height: 1.62; }
.dark .lead { color: #bfd0da; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 48px; }
.section-heading p { max-width: 53ch; color: var(--muted); }
.header { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid rgba(215, 226, 232, .8); background: rgba(255,255,255,.92); backdrop-filter: blur(16px); }
.nav-wrap { height: 76px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-size: 1.15rem; font-weight: 800; letter-spacing: -.03em; }
.brand-mark { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: var(--white); background: var(--navy-950); }
.brand-mark i { display: block; width: 14px; height: 14px; border: 4px solid #46c7be; border-top-color: transparent; transform: rotate(45deg); }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: #334f60; font-size: .92rem; font-weight: 650; text-decoration: none; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--teal-700); }
.menu-button { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.menu-button span, .menu-button::before, .menu-button::after { content: ""; display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--navy-950); }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 9px; padding: 0 20px; border: 1px solid transparent; border-radius: 999px; color: var(--white); background: var(--navy-950); font-weight: 720; text-decoration: none; transition: transform .2s, box-shadow .2s, background .2s; cursor: pointer; }
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(6,29,46,.18); }
.button.teal { background: var(--teal-700); }
.button.secondary { color: var(--navy-950); border-color: #b8cbd5; background: var(--white); }
.button.light { color: var(--navy-950); background: var(--white); }
.button.small { min-height: 42px; padding-inline: 17px; font-size: .9rem; }
.button .arrow { font-size: 1.25em; line-height: 1; }
.hero { position: relative; overflow: hidden; padding: 84px 0 92px; background: linear-gradient(120deg, #fff 20%, #f2faf9 100%); }
.hero::after { content: ""; position: absolute; width: 560px; height: 560px; top: -330px; right: -100px; border: 1px solid #b7e8e4; border-radius: 50%; box-shadow: 0 0 0 70px rgba(7,143,137,.025), 0 0 0 140px rgba(7,143,137,.02); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.03fr .97fr; gap: 72px; align-items: center; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-actions.center { justify-content: center; }
.trust-note { display: flex; gap: 18px; margin-top: 38px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
.trust-note strong { color: var(--navy-900); }
.workbench { padding: 18px; border: 1px solid #c8dce3; border-radius: 28px; background: rgba(255,255,255,.84); box-shadow: var(--shadow); transform: rotate(.35deg); }
.workbench-top { display: flex; align-items: center; justify-content: space-between; padding: 5px 4px 16px; color: #56707f; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.workbench-dots { display: flex; gap: 5px; }
.workbench-dots i { width: 7px; height: 7px; border-radius: 50%; background: #c4d3da; }
.question-card { padding: 19px; border-radius: 16px; color: var(--white); background: var(--navy-900); }
.question-card small { display: block; margin-bottom: 6px; color: #8cded8; }
.answer-card { margin-top: 10px; padding: 18px; border: 1px solid #cde2e6; border-radius: 16px; background: var(--white); }
.answer-status { display: flex; align-items: center; gap: 9px; color: var(--teal-700); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.answer-status i { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--teal-600); font-style: normal; }
.answer-card h3 { margin-top: 12px; }
.steps { margin: 12px 0 0; padding: 0; list-style: none; counter-reset: steps; }
.steps li { display: grid; grid-template-columns: 25px 1fr; gap: 9px; padding: 9px 0; border-top: 1px solid #e4ecef; color: #385161; font-size: .88rem; }
.steps li::before { counter-increment: steps; content: counter(steps); width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; color: var(--teal-700); background: var(--teal-100); font-size: .72rem; font-weight: 800; }
.source-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 12px; padding: 11px 13px; border-radius: 10px; color: #385161; background: var(--blue-50); font-size: .8rem; }
.source-row b { color: var(--navy-900); }
.problem-strip { border-block: 1px solid var(--line); background: var(--white); }
.problem-list { display: grid; grid-template-columns: repeat(3, 1fr); }
.problem-item { padding: 32px 32px 32px 0; }
.problem-item + .problem-item { padding-left: 32px; border-left: 1px solid var(--line); }
.problem-item span { display: block; margin-bottom: 10px; color: var(--teal-700); font-size: .8rem; font-weight: 800; letter-spacing: .1em; }
.problem-item p { color: #48616f; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { min-height: 238px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.card-number { display: grid; width: 42px; height: 42px; place-items: center; margin-bottom: 42px; border-radius: 13px; color: var(--teal-700); background: var(--teal-100); font-weight: 800; }
.card p { margin-top: 12px; color: var(--muted); }
.outcome-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; align-items: start; }
.delivery-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.delivery-item { padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.delivery-item span { display: block; margin-bottom: 7px; color: var(--teal-700); font-size: .8rem; font-weight: 800; }
.delivery-item p { color: var(--muted); font-size: .92rem; }
.use-case-feature { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border-radius: 32px; color: var(--white); background: var(--navy-950); }
.use-case-copy { padding: 54px; }
.use-case-copy h2 { max-width: 13ch; }
.use-case-copy p { margin-top: 20px; color: #bed0da; }
.use-case-copy .button { margin-top: 28px; }
.evidence-panel { display: grid; align-content: center; gap: 12px; padding: 38px; background: #0b334c; }
.evidence-doc { position: relative; padding: 20px 20px 20px 58px; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: rgba(255,255,255,.07); }
.evidence-doc::before { content: ""; position: absolute; left: 20px; top: 23px; width: 20px; height: 25px; border: 2px solid #9fc4d2; border-radius: 3px; }
.evidence-doc small { display: block; color: #9fc4d2; }
.evidence-doc strong { display: block; margin-top: 3px; }
.evidence-doc.rejected { border-color: rgba(255,139,129,.4); background: rgba(178,59,59,.14); }
.evidence-doc.rejected::after { content: "Superseded — excluded"; position: absolute; right: 16px; top: 16px; padding: 4px 8px; border-radius: 999px; color: #ffd0cb; background: rgba(178,59,59,.28); font-size: .7rem; font-weight: 800; }
.evidence-doc.current { border-color: rgba(102,215,208,.55); background: rgba(7,143,137,.2); }
.evidence-doc.current::after { content: "Current — used"; position: absolute; right: 16px; top: 16px; padding: 4px 8px; border-radius: 999px; color: #b8f0ec; background: rgba(7,143,137,.32); font-size: .7rem; font-weight: 800; }
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 50px; }
.timeline-item { position: relative; padding: 34px 20px 0 0; border-top: 2px solid #b9d0d9; }
.timeline-item::before { content: ""; position: absolute; top: -7px; left: 0; width: 12px; height: 12px; border: 3px solid var(--white); border-radius: 50%; background: var(--teal-600); box-shadow: 0 0 0 1px var(--teal-600); }
.timeline-item span { color: var(--teal-700); font-size: .78rem; font-weight: 800; }
.timeline-item p { margin-top: 5px; padding-right: 20px; color: var(--muted); font-size: .9rem; }
.cta-band { padding: 64px 0; color: var(--white); background: var(--teal-700); }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-band h2 { color: var(--white); max-width: 18ch; }
.cta-band p { margin-top: 12px; max-width: 55ch; color: #d9f3f0; }
.footer { padding: 62px 0 28px; color: #a9bec9; background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(2, .7fr); gap: 60px; }
.footer .brand { color: var(--white); }
.footer p { max-width: 38ch; margin-top: 18px; }
.footer h3 { margin-bottom: 16px; color: var(--white); font-size: .9rem; letter-spacing: .04em; }
.footer a { display: block; width: fit-content; margin: 8px 0; color: #bfd0da; text-decoration: none; }
.footer-link { display: block; width: fit-content; margin: 8px 0; padding: 0; border: 0; color: #bfd0da; background: transparent; cursor: pointer; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 54px; padding-top: 24px; border-top: 1px solid #244257; font-size: .82rem; }
.consent-panel { position: fixed; z-index: 50; right: 20px; bottom: 20px; left: 20px; display: flex; align-items: center; justify-content: space-between; gap: 28px; width: min(calc(100% - 40px), 920px); margin-inline: auto; padding: 22px 24px; border: 1px solid #aac6d1; border-radius: 18px; background: var(--white); box-shadow: 0 20px 60px rgba(6,29,46,.24); }
.consent-panel strong { color: var(--navy-950); font-size: 1rem; }
.consent-panel p { max-width: 64ch; margin-top: 4px; color: var(--muted); font-size: .9rem; }
.consent-panel a { color: var(--teal-700); font-size: .88rem; font-weight: 700; }
.consent-actions { display: flex; flex: none; gap: 9px; }
.legal-copy h2 { margin-top: 46px; font-size: 1.65rem; }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy p { margin-top: 14px; color: var(--muted); }
.legal-copy a { color: var(--teal-700); font-weight: 700; }
.legal-note { padding: 18px; border-left: 3px solid var(--teal-600); background: var(--aqua-50); }
.page-hero { padding: 78px 0 72px; background: linear-gradient(135deg, #f6fbfb, #fff); }
.page-hero .lead { max-width: 66ch; }
.page-hero-grid { display: grid; grid-template-columns: 1fr .72fr; gap: 70px; align-items: center; }
.mini-facts { padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: var(--shadow); }
.mini-fact { padding: 16px 0; border-bottom: 1px solid var(--line); }
.mini-fact:last-child { border: 0; }
.mini-fact b { display: block; color: var(--navy-950); }
.mini-fact span { color: var(--muted); font-size: .9rem; }
.comparison { display: grid; grid-template-columns: 1fr 80px 1fr; align-items: stretch; }
.comparison-side { padding: 34px; border: 1px solid var(--line); border-radius: 24px; }
.comparison-side.old { background: #fff8f7; }
.comparison-side.current { background: var(--aqua-50); }
.comparison-side .label { display: inline-flex; margin-bottom: 22px; padding: 5px 10px; border-radius: 999px; font-size: .75rem; font-weight: 800; text-transform: uppercase; }
.old .label { color: var(--danger); background: #ffe2df; }
.current .label { color: var(--teal-700); background: var(--teal-100); }
.comparison-side ul { padding-left: 20px; color: var(--muted); }
.comparison-arrow { display: grid; place-items: center; color: var(--teal-700); font-size: 2rem; }
.principles { display: grid; gap: 14px; }
.principle { display: grid; grid-template-columns: 46px 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid var(--line); }
.principle:first-child { border-top: 0; }
.principle i { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; color: var(--teal-700); background: var(--teal-100); font-style: normal; font-weight: 800; }
.principle p { color: var(--muted); }
.form-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 72px; align-items: start; }
.form-aside { position: sticky; top: 110px; }
.form-aside ul { margin: 30px 0; padding: 0; list-style: none; }
.form-aside li { position: relative; margin: 15px 0; padding-left: 28px; color: var(--muted); }
.form-aside li::before { content: "✓"; position: absolute; left: 0; color: var(--teal-700); font-weight: 900; }
.form-card { padding: 38px; border: 1px solid var(--line); border-radius: 28px; background: var(--white); box-shadow: var(--shadow); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 7px; color: var(--navy-900); font-size: .9rem; font-weight: 700; }
.field small { display: block; margin-top: 6px; color: var(--muted); }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid #b9cbd4; border-radius: 10px; color: var(--ink); background: var(--white); }
.field textarea { min-height: 120px; resize: vertical; }
.honeypot { position: absolute; left: -10000px; }
.form-note { margin: 16px 0; color: var(--muted); font-size: .86rem; }
.form-status { min-height: 28px; margin-top: 15px; color: var(--muted); }
.form-status.success { padding: 13px; border-radius: 10px; color: #08665f; background: var(--teal-100); }
.form-status.error { padding: 13px; border-radius: 10px; color: var(--danger); background: var(--danger-soft); }
.button:disabled { opacity: .55; cursor: wait; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 46px; }
.contact-card { padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.contact-card p { margin-top: 10px; color: var(--muted); }
.contact-card a { display: inline-block; margin-top: 18px; color: var(--teal-700); font-weight: 750; }
.not-found { min-height: 70vh; display: grid; place-items: center; text-align: center; }

@media (max-width: 900px) {
  .nav { display: none; position: absolute; top: 76px; left: 0; right: 0; padding: 20px; border-bottom: 1px solid var(--line); background: var(--white); box-shadow: 0 18px 30px rgba(6,29,46,.08); }
  .nav[data-open="true"] { display: grid; }
  .menu-button { display: block; }
  .hero-grid, .page-hero-grid, .outcome-grid, .use-case-feature, .form-layout { grid-template-columns: 1fr; }
  .hero { padding-top: 58px; }
  .hero-grid, .page-hero-grid { gap: 50px; }
  .workbench { max-width: 600px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .timeline-item { padding: 16px 0 16px 30px; border-top: 0; border-left: 2px solid #b9d0d9; }
  .timeline-item::before { top: 21px; left: -7px; }
  .form-aside { position: static; }
}

@media (max-width: 640px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 72px 0; }
  .hero { padding: 48px 0 64px; }
  h1 { font-size: clamp(2.45rem, 12vw, 3.7rem); }
  .section-heading { display: block; }
  .section-heading p { margin-top: 18px; }
  .trust-note { display: block; }
  .trust-note span { display: block; margin-bottom: 8px; }
  .problem-list, .cards, .delivery-list, .field-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .problem-item, .problem-item + .problem-item { padding: 24px 0; border-left: 0; border-top: 1px solid var(--line); }
  .problem-item:first-child { border-top: 0; }
  .card { min-height: auto; }
  .card-number { margin-bottom: 26px; }
  .use-case-copy, .evidence-panel { padding: 30px 24px; }
  .evidence-doc { padding-right: 15px; }
  .evidence-doc::after { position: static; display: inline-block; margin-top: 8px; }
  .comparison { grid-template-columns: 1fr; }
  .comparison-arrow { min-height: 60px; transform: rotate(90deg); }
  .cta-band .container, .footer-bottom { display: block; }
  .cta-band .button { margin-top: 24px; }
  .form-card { padding: 24px 18px; }
  .field.full { grid-column: auto; }
  .footer-grid { gap: 34px; }
  .footer-bottom span { display: block; margin-top: 8px; }
  .consent-panel { display: block; right: 14px; bottom: 14px; left: 14px; width: auto; padding: 20px; }
  .consent-actions { margin-top: 16px; }
}

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