:root {
  --ink: #14213d;
  --muted: #5b6b80;
  --blue: #0b63ce;
  --blue-dark: #07458f;
  --sky: #eaf4ff;
  --cream: #fff7e8;
  --line: #dbe5ef;
  --white: #fff;
  --shadow: 0 22px 60px rgba(20, 33, 61, .12);
}

* { 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;
  line-height: 1.55;
}
a { color: var(--blue-dark); }
a:hover { color: var(--blue); }
:focus-visible { outline: 3px solid #ffb000; outline-offset: 3px; }
.skip-link { position: absolute; left: 1rem; top: -5rem; z-index: 20; padding: .7rem 1rem; color: var(--ink); background: var(--white); border: 2px solid var(--blue); border-radius: .5rem; }
.skip-link:focus { top: 1rem; }
.site-header { position: sticky; top: 0; z-index: 10; display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 72px; padding: 0 clamp(1.25rem, 5vw, 5rem); background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(10px); }
.brand { color: var(--ink); font-size: 1.5rem; font-weight: 900; letter-spacing: -.06em; text-decoration: none; }
.brand span { color: var(--blue); font-size: .8rem; letter-spacing: 0; }
.main-nav { display: flex; align-items: center; gap: 1.25rem; }
.main-nav a { color: var(--ink); font-size: .88rem; font-weight: 750; text-decoration: none; }
.main-nav .nav-button { padding: .6rem .85rem; border: 1px solid var(--line); border-radius: .5rem; }
.container { width: min(1160px, calc(100% - 2.5rem)); margin-inline: auto; }
.hero { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: center; min-height: 650px; padding: 5rem 0 4rem; }
.eyebrow { margin: 0 0 1rem; color: var(--blue); font-size: .76rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -.035em; }
h1 { max-width: 760px; margin: 0; font-size: clamp(2.7rem, 6vw, 5.2rem); }
h2 { margin: 0 0 1rem; font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { margin: 0 0 .65rem; font-size: 1.35rem; }
.lead { max-width: 700px; margin: 1.6rem 0; color: var(--muted); font-size: clamp(1.1rem, 2vw, 1.35rem); }
.actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 3rem; padding: .75rem 1.15rem; border-radius: .55rem; font-weight: 850; text-decoration: none; transition: transform .15s ease, background-color .15s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--blue); box-shadow: 0 10px 24px rgba(11,99,206,.22); }
.button-primary:hover { color: var(--white); background: var(--blue-dark); }
.button-secondary { color: var(--ink); background: var(--white); border: 1px solid var(--line); }
.note { margin: 1rem 0 0; color: var(--muted); font-size: .9rem; }
.demo { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 1.1rem; box-shadow: var(--shadow); transform: rotate(1deg); }
.demo-bar { display: flex; align-items: center; gap: .4rem; min-height: 3rem; padding: 0 1rem; color: var(--white); background: var(--ink); font-size: .8rem; }
.demo-bar i { width: .5rem; height: .5rem; background: #91a2ba; border-radius: 50%; }
.demo-bar strong { margin-left: auto; }
.demo-body { padding: 1.5rem; }
.demo-label { margin: 0 0 .3rem; color: var(--blue); font-size: .7rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.demo-body h2 { margin-bottom: 1.3rem; font-size: 1.4rem; }
.demo-question { display: flex; gap: .8rem; margin-top: .7rem; padding: 1rem; background: #f6f9fc; border: 1px solid #e3eaf2; border-radius: .65rem; }
.demo-question b { color: var(--blue); }
.demo-question strong { display: block; font-size: .9rem; }
.demo-question small { color: var(--muted); }
.demo-export { margin-top: 1rem; padding: .75rem; color: var(--blue-dark); background: var(--sky); border-radius: .5rem; font-size: .8rem; font-weight: 800; text-align: center; }
.proof { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.proof div { display: flex; flex-direction: column; align-items: center; gap: .2rem; padding: 1.5rem; text-align: center; }
.proof div + div { border-left: 1px solid var(--line); }
.proof strong { font-size: 1.4rem; }
.proof span { color: var(--muted); font-size: .85rem; }
.section { padding: 6.5rem 0; }
.section-heading { max-width: 760px; margin-bottom: 2.7rem; }
.section-heading p:last-child { color: var(--muted); font-size: 1.1rem; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card { min-height: 220px; padding: 1.6rem; border: 1px solid var(--line); border-radius: .9rem; }
.card-number { color: var(--blue); font-size: .75rem; font-weight: 900; }
.card h3 { margin-top: 2.5rem; }
.card p, .content p, .content li { color: var(--muted); }
.dark-section { color: var(--white); background: var(--ink); }
.dark-section h2, .dark-section h3 { color: var(--white); }
.dark-section .eyebrow { color: #8dc5ff; }
.dark-section p, .dark-section li { color: #cbd6e4; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin: 0; padding: 0; list-style: none; }
.steps li { display: flex; gap: 1rem; }
.step-number { display: grid; flex: 0 0 2.5rem; place-items: center; width: 2.5rem; height: 2.5rem; color: var(--white); background: var(--blue); border-radius: 50%; font-weight: 900; }
.pill-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; margin: 0; padding: 0; list-style: none; }
.pill-grid li { padding: 1rem; color: var(--blue-dark); background: var(--sky); border-radius: .5rem; font-weight: 800; }
.callout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; padding: 3rem; background: var(--cream); border-radius: 1rem; }
.callout p { color: #5c6470; font-size: 1.1rem; }
.faq { border-top: 1px solid var(--line); }
.faq details { padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-size: 1.1rem; font-weight: 800; }
.faq details p { max-width: 780px; margin: .8rem 0 0; color: var(--muted); }
.final-cta { margin: 0 auto 5rem; padding: 4rem 2rem; color: var(--ink); background: var(--sky); border-radius: 1.1rem; text-align: center; }
.final-cta h2 { max-width: 760px; margin-inline: auto; }
.page-hero { padding: 5rem 0 2rem; }
.page-hero h1 { max-width: 900px; font-size: clamp(2.5rem, 5vw, 4.5rem); }
.content { max-width: 820px; padding-bottom: 5rem; }
.content h2 { margin-top: 3rem; font-size: 2rem; }
.content h3 { margin-top: 2rem; }
.content ul, .content ol { padding-left: 1.25rem; }
.content li { margin: .45rem 0; }
.table-wrap { overflow-x: auto; margin: 2rem 0; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: .8rem; border: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--ink); background: var(--sky); }
.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 2rem clamp(1.25rem, 5vw, 5rem); color: var(--white); background: var(--ink); }
.site-footer a { color: var(--white); }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.consent { position: fixed; right: 1rem; bottom: 1rem; z-index: 30; display: none; max-width: 420px; padding: 1rem; background: var(--white); border: 1px solid var(--line); border-radius: .75rem; box-shadow: var(--shadow); }
.consent.is-visible { display: block; }
.consent p { margin: 0 0 .8rem; color: var(--muted); font-size: .88rem; }
.consent-actions { display: flex; gap: .6rem; }
.consent button { cursor: pointer; padding: .55rem .8rem; border-radius: .45rem; font: inherit; font-weight: 800; }
.consent-accept { color: var(--white); background: var(--blue); border: 1px solid var(--blue); }
.consent-reject { color: var(--ink); background: var(--white); border: 1px solid var(--line); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
@media (max-width: 860px) {
  .main-nav a:not(.nav-button) { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 4rem; }
  .demo { max-width: 680px; transform: none; }
  .card-grid, .steps { grid-template-columns: 1fr; }
  .callout { grid-template-columns: 1fr; gap: 1rem; }
}
@media (max-width: 600px) {
  .container { width: min(100% - 2rem, 1160px); }
  h1 { font-size: 2.7rem; }
  .actions, .actions .button { width: 100%; }
  .proof { grid-template-columns: 1fr; }
  .proof div + div { border-top: 1px solid var(--line); border-left: 0; }
  .section { padding: 4.5rem 0; }
  .pill-grid { grid-template-columns: 1fr; }
  .callout { padding: 2rem 1.4rem; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .button { transition: none; } }
