:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-2: #edf3f8;
  --ink: #0d1726;
  --muted: #607086;
  --line: #dce5ee;
  --navy: #091421;
  --navy-2: #0f2034;
  --green: #24c977;
  --green-2: #17a962;
  --green-soft: rgba(36, 201, 119, .13);
  --blue: #4aa8ff;
  --danger: #ef6c5b;
  --warning: #f2b84b;
  --shadow-sm: 0 12px 30px rgba(22, 43, 66, .07);
  --shadow-md: 0 26px 70px rgba(19, 40, 64, .14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1180px;
  --ease: cubic-bezier(.2,.75,.25,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.modal-open { overflow: hidden; }

button, input, select { font: inherit; }
button { color: inherit; }
a { color: inherit; }
svg { display: block; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  transform: translateY(-160%);
  z-index: 9999;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.pilot-bar {
  background: #08111d;
  color: #cbd7e3;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.pilot-bar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  text-align: center;
}
.pilot-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(36,201,119,.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244,247,251,.88);
  border-bottom: 1px solid rgba(220,229,238,.86);
  backdrop-filter: blur(18px);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -.035em;
  font-size: 19px;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--green-2);
}
.brand-mark svg { width: 38px; height: 38px; }
.desktop-nav { display: flex; gap: 28px; }
.desktop-nav a {
  text-decoration: none;
  color: #4f6075;
  font-size: 13px;
  font-weight: 700;
}
.desktop-nav a:hover { color: var(--ink); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.menu-button {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.75);
  cursor: pointer;
}
.menu-button span {
  width: 18px;
  height: 2px;
  display: block;
  margin: 2px 0;
  border-radius: 999px;
  background: #233349;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu { border-top: 1px solid var(--line); background: #f8fafc; }
.mobile-menu-inner {
  display: grid;
  gap: 6px;
  padding-block: 14px 18px;
}
.mobile-menu a {
  padding: 12px 4px;
  text-decoration: none;
  color: #3d4e63;
  font-weight: 700;
  font-size: 14px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 12px;
  padding: 0 18px;
  cursor: pointer;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  transition:
    transform .2s var(--ease),
    box-shadow .2s var(--ease),
    background .2s var(--ease),
    border-color .2s var(--ease);
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible,
.menu-button:focus-visible,
.modal-close:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(74,168,255,.28);
  outline-offset: 3px;
}
.button-small { min-height: 42px; }
.button-large { min-height: 54px; padding: 0 22px; font-size: 14px; }
.button-primary {
  background: var(--green);
  color: #052112;
  box-shadow: 0 12px 34px rgba(36,201,119,.25);
}
.button-primary:hover {
  background: #2bd77f;
  box-shadow: 0 18px 42px rgba(36,201,119,.32);
}
.button-secondary {
  background: #eef3f7;
  color: #2c3d52;
  border: 1px solid #dce4ec;
}
.button-secondary:hover { background: #e6edf4; }
.button-quiet {
  background: #fff;
  color: #233449;
  border: 1px solid #cfdae5;
}
.button-light {
  background: #fff;
  color: #0b1724;
  box-shadow: 0 12px 28px rgba(0,0,0,.13);
}
.full-width { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 88px;
  background:
    radial-gradient(circle at 76% 26%, rgba(36,201,119,.12), transparent 30%),
    linear-gradient(180deg, #fbfcfe 0%, #f3f7fa 100%);
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27,56,83,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,56,83,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 85%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
}
.eyebrow,
.section-kicker {
  display: inline-block;
  margin-bottom: 15px;
  color: #118c4d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.section-kicker.light { color: #8cf1b5; }
.hero h1,
.section-heading h2,
.trust-copy h2,
.safety-copy h2,
.pilot-card h2,
.faq-heading h2,
.final-cta h2,
.modal h2 {
  margin: 0;
  font-weight: 850;
  letter-spacing: -.055em;
  line-height: 1.02;
}
.hero h1 {
  max-width: 760px;
  font-size: clamp(48px, 6vw, 78px);
}
.hero h1 span { color: var(--green-2); }
.hero-lead {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.74;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 24px;
  color: #586b80;
  font-size: 12px;
  font-weight: 700;
}
.hero-proof > div { display: flex; align-items: center; gap: 7px; }
.proof-icon {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--green-soft);
  color: var(--green-2);
  font-weight: 900;
}
.hero-disclaimer {
  margin: 18px 0 0;
  color: #8a98a8;
  font-size: 11px;
}

.hero-visual { position: relative; }
.workflow-shell {
  position: relative;
  overflow: hidden;
  padding: 20px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(208,220,231,.95);
  border-radius: 30px;
  box-shadow: var(--shadow-md);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease);
}
.workflow-shell:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 90px rgba(19,40,64,.18);
}
.workflow-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 2px 3px 15px;
  border-bottom: 1px solid #ebf0f4;
}
.workflow-brand { display: flex; align-items: center; gap: 10px; }
.workflow-brand strong { display: block; font-size: 13px; }
.workflow-brand small { display: block; margin-top: 2px; color: #8997a7; font-size: 9px; }
.workflow-status-dot {
  width: 10px; height: 10px; border-radius: 999px; background: var(--green);
  box-shadow: 0 0 0 5px var(--green-soft);
}
.status-pill {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--green-soft);
  color: #0f8e4b;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
}
.timeline { display: grid; gap: 13px; padding-top: 15px; }
.timeline-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border-radius: 15px;
  border: 1px solid #f6ded8;
  background: #fff5f2;
}
.timeline-icon {
  width: 34px; height: 34px; display: grid; place-items: center;
  border-radius: 11px; background: #ffe3dc; color: #c84d3f; font-weight: 900;
}
.timeline-item strong { display: block; font-size: 12px; }
.timeline-item span { display: block; margin-top: 3px; color: #8a675f; font-size: 10px; }

.chat {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 16px;
  opacity: .65;
  transform: translateY(5px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.chat.active,
.timeline-item.active,
.lead-summary.active { opacity: 1; transform: translateY(0); }
.chat small { display: block; margin-bottom: 4px; font-size: 8px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; opacity: .6; }
.chat p { margin: 0; font-size: 11px; line-height: 1.55; }
.chat.bot { background: #edf8f1; border: 1px solid #d6f0df; }
.chat.customer { margin-left: auto; background: #eef2f6; border: 1px solid #dfe6ed; }
.lead-summary {
  padding: 15px;
  border-radius: 15px;
  background: #0e1b2c;
  color: #fff;
  opacity: .65;
  transform: translateY(5px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.lead-summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 9px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .1em;
}
.priority-pill { color: #8cf1b5; }
.lead-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 10px;
}
.lead-row span { color: #8fa0b4; }
.workflow-footer {
  margin: 12px 8px 0;
  color: #8593a4;
  text-align: center;
  font-size: 9px;
  line-height: 1.45;
}
.floating-card {
  position: absolute;
  z-index: 2;
  min-width: 150px;
  padding: 12px 14px;
  border: 1px solid #dde6ee;
  border-radius: 14px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-sm);
}
.floating-card span { display: block; color: #7c8999; font-size: 9px; }
.floating-card strong { display: block; margin-top: 3px; font-size: 11px; }
.floating-card-left { left: -34px; bottom: 58px; }
.floating-card-right { right: -28px; top: 76px; }

.signal-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #eaf1f6;
}
.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.signal-grid > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 90px;
  padding: 18px 26px;
  border-right: 1px solid #d8e2ea;
}
.signal-grid > div:last-child { border-right: 0; }
.signal-grid strong {
  width: 30px; height: 30px; display: grid; place-items: center;
  border-radius: 10px; background: #fff; border: 1px solid #d7e1ea;
  color: #1c9d59; font-size: 11px;
}
.signal-grid span { color: #52657a; font-size: 12px; font-weight: 700; line-height: 1.45; }

.section { padding: 100px 0; }
.section-heading { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-heading h2,
.trust-copy h2,
.safety-copy h2,
.pilot-card h2,
.faq-heading h2,
.final-cta h2,
.modal h2 { font-size: clamp(34px, 4.2vw, 50px); }
.section-heading p,
.trust-copy > p,
.safety-copy > p,
.pilot-card p,
.faq-heading p,
.final-cta p,
.modal-copy p {
  color: var(--muted);
  line-height: 1.75;
}
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card {
  position: relative;
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.step-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 130px; height: 130px;
  border-radius: 999px;
  background: var(--green-soft);
}
.step-number { color: #94a1af; font-size: 10px; font-weight: 900; letter-spacing: .08em; }
.step-icon {
  width: 44px; height: 44px; display: grid; place-items: center;
  margin-top: 34px;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green-2);
  font-weight: 900;
}
.step-card h3 { margin: 18px 0 9px; font-size: 21px; letter-spacing: -.025em; }
.step-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.dark-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 24%, rgba(36,201,119,.08), transparent 28%),
    linear-gradient(135deg, #08121f, #0b1929);
  color: #fff;
}
.trust-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: start;
}
.trust-copy > p { color: #9eb0c3; }
.founder-mini {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
}
.founder-avatar {
  width: 52px; height: 52px; display: grid; place-items: center; flex: 0 0 auto;
  border-radius: 15px; background: #fff; color: #0c1725; font-weight: 900;
}
.founder-mini strong { display: block; font-size: 13px; }
.founder-mini span { display: block; margin-top: 2px; color: #8ea1b6; font-size: 11px; }
.founder-mini a { display: inline-block; margin-top: 4px; color: #86edb1; text-decoration: none; font-size: 11px; font-weight: 800; }

.trust-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.trust-card {
  min-height: 205px;
  padding: 23px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  background: rgba(255,255,255,.035);
}
.trust-card-tag {
  display: inline-block;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(36,201,119,.11);
  color: #80eaae;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.trust-card h3 { margin: 22px 0 8px; font-size: 18px; }
.trust-card p { margin: 0; color: #93a6ba; font-size: 12px; line-height: 1.65; }

.safety-section { background: #fbfcfd; }
.safety-grid {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 70px;
  align-items: center;
}
.safety-panel {
  padding: 28px;
  border: 1px solid #f0ded7;
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.safety-alert {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding-bottom: 18px;
  border-bottom: 1px solid #edf0f3;
}
.safety-alert-icon {
  width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto;
  border-radius: 11px; background: #fff2ed; color: #c9503e; font-weight: 900;
}
.safety-alert strong { display: block; font-size: 13px; }
.safety-alert p { margin: 5px 0 0; color: #7a6870; font-size: 11px; line-height: 1.5; }
.safety-flow { display: grid; gap: 10px; margin-top: 18px; }
.safety-flow > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 13px;
  background: #f7f9fb;
}
.safety-flow span {
  width: 30px; height: 30px; display: grid; place-items: center;
  border-radius: 9px; background: #fff; border: 1px solid #e1e7ed;
  color: #8b99a8; font-size: 9px; font-weight: 900;
}
.safety-flow p { margin: 0; color: #53667b; font-size: 11px; line-height: 1.5; }
.safety-note {
  margin: 16px 0 0;
  color: #a14f42;
  text-align: center;
  font-size: 10px;
  font-weight: 900;
}

.pilot-section { padding-top: 34px; }
.pilot-card {
  display: grid;
  grid-template-columns: 1fr .65fr;
  gap: 52px;
  align-items: center;
  padding: 44px;
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(135deg, #0a1624, #10263d);
  box-shadow: var(--shadow-md);
}
.pilot-card p { color: #a2b4c6; }
.pilot-card-side ul {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.pilot-card-side li {
  position: relative;
  padding-left: 25px;
  color: #cad6e2;
  font-size: 12px;
  font-weight: 700;
}
.pilot-card-side li::before {
  content: "✓";
  position: absolute; left: 0; top: -1px;
  width: 18px; height: 18px; display: grid; place-items: center;
  border-radius: 6px; background: rgba(36,201,119,.12); color: #83efaf;
  font-size: 10px;
}

.faq-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 64px;
  align-items: start;
}
.faq-heading p a { color: var(--green-2); font-weight: 800; text-decoration: none; }
.faq-list { display: grid; gap: 10px; }
.faq-item {
  overflow: clip;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.faq-item[open] {
  border-color: #c9d7e2;
  background: #fbfcfd;
  box-shadow: 0 10px 24px rgba(26,48,70,.05);
}
.faq-item summary {
  position: relative;
  padding: 18px 52px 18px 18px;
  cursor: pointer;
  list-style: none;
  font-size: 13px;
  font-weight: 850;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 16px; top: 13px;
  width: 30px; height: 30px; display: grid; place-items: center;
  border-radius: 9px; background: #eef3f7; color: #4e6075; font-size: 17px;
}
.faq-item[open] summary::after { content: "–"; }
.faq-answer {
  display: grid;
  grid-template-rows: 1fr;
}
.faq-answer p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.final-cta {
  padding: 24px 0 96px;
}
.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  padding: 42px;
  border-radius: 30px;
  background: linear-gradient(135deg, #0b1623, #0c263d);
  color: #fff;
}
.final-cta p { margin-bottom: 0; color: #9fb0c1; }
.final-cta-actions { min-width: 230px; display: grid; gap: 12px; }
.text-link-light { color: #93efb9; text-align: center; text-decoration: none; font-size: 11px; font-weight: 800; }

.footer {
  padding: 54px 0 24px;
  background: #08111c;
  color: #d5e0e9;
}
.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.footer-brand { color: #fff; }
.footer-grid p { max-width: 430px; color: #8799ab; font-size: 12px; line-height: 1.6; }
.footer-links { display: flex; flex-wrap: wrap; gap: 24px; }
.footer-links a { color: #bfcbd7; text-decoration: none; font-size: 12px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.07);
  color: #6f8194;
  font-size: 10px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(4,10,17,.74);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}
.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}
.modal {
  position: relative;
  width: min(640px, 100%);
  max-height: min(90vh, 820px);
  overflow: auto;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 26px;
  background: #f8fafc;
  box-shadow: 0 36px 100px rgba(0,0,0,.36);
  transform: translateY(12px) scale(.985);
  transition: transform .22s var(--ease);
}
.modal-backdrop.active .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  color: #6d7d8e;
  cursor: pointer;
  font-size: 20px;
}
.modal-copy { padding-right: 46px; }
.modal-copy h2 { font-size: clamp(30px, 4vw, 42px); }
.modal-copy p { margin-bottom: 0; color: var(--muted); font-size: 13px; }

.pilot-form { margin-top: 24px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.field { display: grid; gap: 7px; }
.field span, .consent span { color: #394b60; font-size: 11px; font-weight: 800; }
.field.full, .consent.full { grid-column: 1 / -1; }
.field input, .field select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid #d6e0e8;
  border-radius: 11px;
  background: #fff;
  color: var(--ink);
}
.field input:focus, .field select:focus { border-color: #6eb7ef; }
.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 4px 0;
}
.consent input { margin-top: 2px; }
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-status {
  min-height: 22px;
  margin: 14px 0 8px;
  font-size: 12px;
  font-weight: 700;
}
.form-status.success { color: #118f4d; }
.form-status.error { color: #bd4e40; }
.form-fallback {
  margin: 12px 0 0;
  color: #8290a0;
  text-align: center;
  font-size: 10px;
}
.form-fallback a { color: #168c4d; font-weight: 800; }

.demo-modal { width: min(720px, 100%); }
.demo-stage { margin-top: 24px; }
.demo-progress {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: #e3e9ef;
}
.demo-progress span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), #4ba7ff);
  transition: width .3s var(--ease);
}
.demo-scenes {
  position: relative;
  min-height: 210px;
  margin-top: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 80% 18%, rgba(36,201,119,.10), transparent 35%),
    #fff;
}
.demo-scene {
  position: absolute;
  inset: 28px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.demo-scene.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.demo-scene-number {
  display: inline-block;
  margin-bottom: 34px;
  color: #91a0af;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
}
.demo-scene h3 { margin: 0 0 10px; font-size: 27px; letter-spacing: -.035em; }
.demo-scene p { margin: 0; max-width: 510px; color: var(--muted); line-height: 1.7; }
.demo-controls {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}
.demo-controls .button:last-child { justify-self: end; }
.demo-controls > span { color: #7b8998; font-size: 11px; font-weight: 800; }

.legal-shell {
  min-height: 100vh;
  background: #f6f8fb;
}
.legal-main { padding: 70px 0 90px; }
.legal-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.legal-card h1 { margin: 0; font-size: 44px; letter-spacing: -.045em; }
.legal-card h2 { margin-top: 30px; font-size: 20px; }
.legal-card p, .legal-card li { color: var(--muted); font-size: 13px; line-height: 1.75; }
.legal-card .updated { color: #8f9baa; font-size: 11px; }

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

@media (max-width: 980px) {
  .desktop-nav, .desktop-cta { display: none; }
  .menu-button { display: grid; }
  .hero { padding-top: 72px; }
  .hero-grid,
  .trust-layout,
  .safety-grid,
  .faq-layout,
  .pilot-card { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 600px; }
  .signal-grid { grid-template-columns: 1fr; }
  .signal-grid > div { border-right: 0; border-bottom: 1px solid #d8e2ea; }
  .signal-grid > div:last-child { border-bottom: 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .trust-cards { grid-template-columns: 1fr 1fr; }
  .floating-card-left { left: 10px; bottom: -34px; }
  .floating-card-right { right: 8px; top: -32px; }
  .hero-visual { margin-top: 22px; }
}

@media (max-width: 680px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .pilot-bar-inner { padding: 8px 0; }
  .nav { min-height: 66px; }
  .hero { padding: 58px 0 72px; }
  .hero h1 { font-size: clamp(44px, 13vw, 62px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; gap: 9px; }
  .floating-card { display: none; }
  .section { padding: 74px 0; }
  .trust-cards { grid-template-columns: 1fr; }
  .pilot-card { padding: 28px; }
  .final-cta { padding-bottom: 72px; }
  .final-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
  }
  .final-cta-actions { width: 100%; min-width: 0; }
  .final-cta-actions .button { width: 100%; }
  .footer-grid, .footer-bottom { flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full, .consent.full { grid-column: auto; }
  .modal { padding: 24px 18px; }
  .modal-copy { padding-right: 38px; }
  .demo-scenes { min-height: 245px; padding: 22px; }
  .demo-scene { inset: 22px; }
  .demo-controls { grid-template-columns: 1fr 1fr; }
  .demo-controls > span { display: none; }
  .demo-controls .button { width: 100%; }
  .legal-card { padding: 28px 20px; }
}

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