:root {
  --navy-950: #050d1b;
  --navy-900: #07162c;
  --navy-850: #0b203d;
  --navy-800: #102b4e;
  --slate-900: #172033;
  --slate-700: #42516a;
  --slate-600: #5b6b82;
  --slate-500: #718198;
  --slate-300: #cbd5e1;
  --slate-200: #dfe7ef;
  --slate-100: #eef3f7;
  --slate-50: #f6f8fa;
  --white: #fff;
  --teal-600: #168f9d;
  --teal-500: #1aafbd;
  --teal-400: #36c2ce;
  --teal-100: #d9f3f5;
  --amber-500: #d8972c;
  --red-500: #d45656;
  --shadow-sm: 0 8px 26px rgba(7, 22, 44, 0.08);
  --shadow-lg: 0 32px 80px rgba(3, 13, 27, 0.24);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--slate-900);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.section { padding: 112px 0; }
.is-hidden { display: none !important; }
.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: 18px;
  top: -80px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--navy-950);
  background: var(--white);
  font-weight: 800;
}
.skip-link:focus { top: 18px; }

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 13, 27, 0.9);
  backdrop-filter: blur(18px);
}
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand img { width: 38px; height: 42px; object-fit: contain; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { color: var(--white); font-size: 18px; letter-spacing: -0.02em; }
.brand-copy span { margin-top: 5px; color: var(--teal-400); font-size: 10px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.desktop-nav a { color: #c8d5e4; font-size: 14px; font-weight: 650; text-decoration: none; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--white); }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 21px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}
.button:hover { transform: translateY(-1px); }
.button:focus-visible, .scenario:focus-visible, .send-button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid rgba(54, 194, 206, 0.45);
  outline-offset: 2px;
}
.button-small { min-height: 42px; padding: 9px 16px; font-size: 14px; }
.button-dark { color: var(--white); border-color: rgba(54, 194, 206, 0.55); background: rgba(26, 175, 189, 0.12); }
.button-dark:hover { background: rgba(26, 175, 189, 0.22); }
.button-primary { color: var(--navy-950); background: var(--teal-400); box-shadow: 0 8px 26px rgba(26, 175, 189, 0.24); }
.button-primary:hover { background: #55d1da; box-shadow: 0 12px 34px rgba(26, 175, 189, 0.34); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,0.24); background: rgba(255,255,255,0.05); }
.button-ghost:hover { border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.09); }
.button-full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 18%, rgba(54, 194, 206, 0.15), transparent 32%),
    radial-gradient(circle at 14% 100%, rgba(26, 175, 189, 0.09), transparent 36%),
    linear-gradient(145deg, var(--navy-950), var(--navy-900) 58%, #091b34);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: linear-gradient(rgba(255,255,255,0.24) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.24) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(450px, 0.98fr); align-items: center; gap: 70px; padding-top: 102px; padding-bottom: 108px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: #84dbe2; font-size: 12px; font-weight: 850; letter-spacing: 0.17em; text-transform: uppercase; }
.eyebrow.dark { color: var(--teal-600); }
.eyebrow.light { color: #76d4dc; }
.signal-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-400); box-shadow: 0 0 0 6px rgba(54, 194, 206, 0.12); }
.hero h1 { max-width: 690px; margin: 20px 0 22px; font-size: clamp(48px, 5.2vw, 76px); line-height: 0.99; letter-spacing: -0.052em; }
.hero h1 span { color: #91dde3; }
.hero-lede { max-width: 650px; margin: 0; color: #c8d3df; font-size: 19px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.phone-cta { display: inline-flex; align-items: center; gap: 12px; margin-top: 24px; color: var(--white); text-decoration: none; }
.phone-icon { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(54,194,206,0.35); border-radius: 50%; color: var(--teal-400); background: rgba(54,194,206,0.08); }
.phone-cta small, .phone-cta strong { display: block; }
.phone-cta small { color: #8fa2b9; font-size: 12px; }
.phone-cta strong { font-size: 14px; }
.proof-list { display: flex; flex-wrap: wrap; gap: 12px 24px; margin: 34px 0 0; padding: 22px 0 0; border-top: 1px solid rgba(255,255,255,0.1); list-style: none; }
.proof-list li { color: #9fb0c3; font-size: 12px; font-weight: 700; }
.proof-list li::before { content: "✓"; margin-right: 7px; color: var(--teal-400); }

.call-console { overflow: hidden; border: 1px solid rgba(151, 212, 218, 0.25); border-radius: 22px; background: rgba(255,255,255,0.97); color: var(--slate-900); box-shadow: var(--shadow-lg); transform: rotate(0.5deg); }
.console-topbar { display: flex; align-items: center; justify-content: space-between; padding: 19px 21px; border-bottom: 1px solid var(--slate-200); }
.caller-identity { display: flex; align-items: center; gap: 12px; }
.avatar { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 50%; color: var(--white); background: linear-gradient(145deg, var(--navy-800), var(--teal-600)); font-size: 14px; font-weight: 850; }
.caller-identity strong, .caller-identity span { display: block; }
.caller-identity strong { font-size: 14px; }
.caller-identity span { color: var(--slate-500); font-size: 11px; }
.live-pill { display: inline-flex; align-items: center; gap: 7px; border: 1px solid #b7e7d6; border-radius: 999px; padding: 5px 9px; color: #12724d; background: #ebfaf4; font-size: 10px; font-weight: 850; text-transform: uppercase; }
.live-pill i { width: 6px; height: 6px; border-radius: 50%; background: #23a66f; box-shadow: 0 0 0 4px rgba(35,166,111,0.13); }
.waveform { display: flex; height: 58px; align-items: center; justify-content: center; gap: 5px; padding: 10px 22px 4px; }
.waveform span { width: 3px; border-radius: 999px; background: var(--teal-500); opacity: 0.75; }
.waveform span:nth-child(1), .waveform span:nth-child(12) { height: 10px; }
.waveform span:nth-child(2), .waveform span:nth-child(11) { height: 20px; }
.waveform span:nth-child(3), .waveform span:nth-child(9) { height: 31px; }
.waveform span:nth-child(4), .waveform span:nth-child(7) { height: 19px; }
.waveform span:nth-child(5), .waveform span:nth-child(10) { height: 38px; }
.waveform span:nth-child(6), .waveform span:nth-child(8) { height: 27px; }
.transcript-stack { display: grid; gap: 11px; padding: 8px 22px 22px; }
.transcript { border-radius: 13px; padding: 12px 14px; }
.transcript span { color: var(--slate-500); font-size: 9px; font-weight: 850; letter-spacing: 0.09em; text-transform: uppercase; }
.transcript p { margin: 4px 0 0; font-size: 13px; line-height: 1.5; }
.transcript.caller { margin-left: 40px; background: var(--slate-100); }
.transcript.agent { margin-right: 28px; border: 1px solid #bce7eb; background: #effafb; }
.handoff-row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; margin: 0 22px 20px; border: 1px solid #b8e3cf; border-radius: 14px; padding: 14px; background: #f1fbf6; }
.handoff-icon { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 9px; color: white; background: #238a62; }
.handoff-row small, .handoff-row strong { display: block; }
.handoff-row small { color: #4b7c68; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.handoff-row strong { font-size: 12px; }
.handoff-row > span { color: #238a62; font-size: 10px; font-weight: 850; }
.console-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 20px; color: var(--slate-500); background: var(--slate-50); font-size: 9px; font-weight: 750; }
.console-footer span { display: inline-flex; align-items: center; gap: 5px; }
.status-green { width: 6px; height: 6px; border-radius: 50%; background: #23a66f; }

.outcome-strip { border-bottom: 1px solid var(--slate-200); background: var(--white); }
.outcome-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.outcome-grid div { padding: 25px 28px; border-right: 1px solid var(--slate-200); }
.outcome-grid div:first-child { border-left: 1px solid var(--slate-200); }
.outcome-grid strong, .outcome-grid span { display: block; }
.outcome-grid strong { color: var(--navy-800); font-size: 14px; }
.outcome-grid span { color: var(--slate-500); font-size: 12px; }

.section-heading h2, .guardrail-intro h2, .fit-copy h2 { margin: 12px 0 0; font-size: clamp(36px, 4.3vw, 56px); line-height: 1.06; letter-spacing: -0.045em; }
.section-heading > p, .guardrail-intro > p, .fit-copy > p { max-width: 590px; margin: 19px 0 0; color: var(--slate-600); font-size: 18px; }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 48px; }
.split-heading > div { max-width: 660px; }
.split-heading > p { max-width: 445px; margin-bottom: 5px; }
.centered-heading { max-width: 790px; margin: 0 auto 56px; text-align: center; }
.centered-heading p { margin-inline: auto; }

.demo-section { background: var(--slate-50); }
.demo-layout { display: grid; grid-template-columns: 330px 1fr; gap: 20px; }
.scenario-rail { display: grid; gap: 9px; align-content: start; }
.scenario { display: grid; grid-template-columns: 34px 1fr; gap: 12px; width: 100%; border: 1px solid var(--slate-200); border-radius: 13px; padding: 15px; text-align: left; background: var(--white); transition: border-color 150ms ease, background 150ms ease, transform 150ms ease; }
.scenario:hover { transform: translateX(2px); border-color: #9ecdd2; }
.scenario.active { border-color: var(--teal-500); background: #edf9fa; box-shadow: inset 3px 0 0 var(--teal-500); }
.scenario-number { color: var(--teal-600); font-size: 11px; font-weight: 850; }
.scenario strong, .scenario small { display: block; }
.scenario strong { font-size: 13px; }
.scenario small { margin-top: 2px; color: var(--slate-500); font-size: 11px; }
.demo-console { display: flex; min-height: 530px; flex-direction: column; overflow: hidden; border: 1px solid var(--slate-200); border-radius: 18px; background: var(--white); box-shadow: var(--shadow-sm); }
.demo-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--slate-200); color: var(--slate-500); font-size: 11px; }
.demo-header > div { display: flex; align-items: center; gap: 9px; color: var(--slate-900); }
.demo-status { width: 8px; height: 8px; border-radius: 50%; background: #23a66f; box-shadow: 0 0 0 5px rgba(35,166,111,0.11); }
.demo-messages { display: flex; flex: 1; flex-direction: column; gap: 14px; overflow-y: auto; padding: 24px; max-height: 360px; }
.message { max-width: 77%; border-radius: 15px; padding: 13px 15px; }
.message p { margin: 3px 0 0; font-size: 14px; }
.message-label { color: var(--slate-500); font-size: 9px; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.agent-message { align-self: flex-start; border: 1px solid #bce7eb; background: #effafb; }
.caller-message { align-self: flex-end; background: var(--navy-800); color: white; }
.caller-message .message-label { color: #9eb2c9; }
.typing p { display: flex; gap: 5px; }
.typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--teal-500); animation: pulse 900ms ease-in-out infinite; }
.typing i:nth-child(2) { animation-delay: 120ms; }
.typing i:nth-child(3) { animation-delay: 240ms; }
@keyframes pulse { 50% { transform: translateY(-4px); opacity: 0.45; } }
.decision-card { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 2px 12px; margin: 0 22px 14px; border: 1px solid #b8e3cf; border-radius: 11px; padding: 11px 13px; background: #f1fbf6; }
.decision-card > span { grid-row: 1 / 3; border-radius: 999px; padding: 5px 8px; color: #1a704f; background: #d8f3e7; font-size: 9px; font-weight: 850; text-transform: uppercase; }
.decision-card strong { font-size: 12px; }
.decision-card small { color: var(--slate-500); font-size: 10px; }
.decision-card[data-tone="handoff"] { border-color: #f0d19e; background: #fff9ef; }
.decision-card[data-tone="handoff"] > span { color: #8a5a13; background: #f9e7c7; }
.decision-card[data-tone="emergency"] { border-color: #edbcbc; background: #fff3f3; }
.decision-card[data-tone="emergency"] > span { color: #923434; background: #f7dada; }
.demo-input-row { display: grid; grid-template-columns: 1fr 44px; gap: 9px; padding: 14px 20px 9px; border-top: 1px solid var(--slate-200); }
.demo-input-row input { min-width: 0; border: 1px solid var(--slate-300); border-radius: 11px; padding: 10px 13px; color: var(--slate-900); background: var(--white); }
.send-button { border: 0; border-radius: 11px; color: var(--navy-950); background: var(--teal-400); font-weight: 900; }
.demo-disclaimer { margin: 0; padding: 0 20px 14px; color: var(--slate-500); font-size: 10px; }

.system-section { background: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--slate-200); border-radius: var(--radius); overflow: hidden; }
.process-grid article { position: relative; min-height: 290px; padding: 29px 25px; border-right: 1px solid var(--slate-200); }
.process-grid article:last-child { border-right: 0; }
.process-grid article > span { position: absolute; top: 18px; right: 20px; color: var(--slate-300); font-size: 11px; font-weight: 850; }
.process-icon { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid #a9dce1; border-radius: 14px; color: var(--teal-600); background: #effafb; font-size: 20px; font-weight: 850; }
.process-grid h3 { margin: 28px 0 10px; font-size: 17px; }
.process-grid p { margin: 0; color: var(--slate-600); font-size: 14px; }
.registry-preview { display: grid; grid-template-columns: 0.85fr 1.15fr; align-items: center; gap: 80px; margin-top: 100px; }
.registry-copy h3 { max-width: 470px; margin: 13px 0 16px; font-size: 35px; line-height: 1.12; letter-spacing: -0.035em; }
.registry-copy p { color: var(--slate-600); }
.registry-copy ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px 20px; margin: 24px 0 0; padding: 0; list-style: none; }
.registry-copy li { color: var(--slate-700); font-size: 13px; font-weight: 700; }
.registry-copy li::before { content: "✓"; margin-right: 7px; color: var(--teal-600); }
.registry-card { overflow: hidden; border: 1px solid var(--slate-200); border-radius: 18px; background: var(--white); box-shadow: 0 24px 60px rgba(7, 22, 44, 0.12); }
.registry-card-top { display: flex; align-items: center; justify-content: space-between; padding: 15px 18px; border-bottom: 1px solid var(--slate-200); color: var(--slate-500); background: var(--slate-50); font-size: 10px; font-weight: 850; letter-spacing: 0.12em; }
.approved-pill { border: 1px solid #b8e3cf; border-radius: 999px; padding: 4px 8px; color: #1a704f; background: #eaf8f1; letter-spacing: 0; text-transform: none; }
.registry-row { padding: 18px 20px; border-bottom: 1px solid var(--slate-200); }
.registry-row small { display: block; margin-bottom: 5px; color: var(--slate-500); font-size: 9px; font-weight: 850; text-transform: uppercase; }
.registry-row strong { font-size: 15px; }
.registry-row p { margin: 0; color: var(--slate-700); font-size: 13px; }
.registry-meta { display: flex; gap: 18px; padding: 13px 20px; color: var(--slate-500); background: var(--slate-50); font-size: 9px; }

.guardrails-section { color: var(--white); background: linear-gradient(150deg, var(--navy-950), var(--navy-850)); }
.guardrail-layout { display: grid; grid-template-columns: 0.72fr 1.28fr; align-items: start; gap: 80px; }
.guardrail-intro { position: sticky; top: 120px; }
.guardrail-intro > p { color: #aebdd0; }
.guardrail-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.guardrail-card { border: 1px solid rgba(255,255,255,0.12); border-radius: 18px; padding: 25px; background: rgba(255,255,255,0.05); }
.guardrail-title { display: flex; align-items: center; gap: 10px; padding-bottom: 17px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.guardrail-title span { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 8px; font-weight: 900; }
.can-card .guardrail-title span { color: #75dab0; background: rgba(50,171,116,0.14); }
.never-card .guardrail-title span { color: #f59b9b; background: rgba(212,86,86,0.13); }
.guardrail-card ul { display: grid; gap: 13px; margin: 20px 0 0; padding: 0; list-style: none; }
.guardrail-card li { position: relative; padding-left: 18px; color: #c2cedd; font-size: 13px; }
.guardrail-card li::before { content: ""; position: absolute; left: 0; top: 0.68em; width: 5px; height: 5px; border-radius: 50%; background: var(--teal-400); }
.never-card li::before { background: #ef9696; }

.call-matrix-section { background: var(--slate-50); }
.call-matrix { overflow: hidden; border: 1px solid var(--slate-200); border-radius: 16px; background: var(--white); box-shadow: var(--shadow-sm); }
.matrix-row { display: grid; grid-template-columns: 0.65fr 1.4fr 0.95fr; align-items: center; min-height: 78px; border-bottom: 1px solid var(--slate-200); }
.matrix-row:last-child { border-bottom: 0; }
.matrix-row > * { height: 100%; display: flex; align-items: center; padding: 17px 20px; border-right: 1px solid var(--slate-200); }
.matrix-row > *:last-child { border-right: 0; }
.matrix-row strong { font-size: 14px; }
.matrix-row span { color: var(--slate-600); font-size: 13px; }
.matrix-row b { color: var(--teal-600); }
.matrix-head { min-height: 48px; color: #e8f0f8; background: var(--navy-850); }
.matrix-head span { color: #b7c5d5; font-size: 10px; font-weight: 850; letter-spacing: 0.09em; text-transform: uppercase; }

.offer-section { padding-top: 90px; padding-bottom: 90px; background: var(--navy-950); }
.offer-card { display: grid; grid-template-columns: 1fr 350px; gap: 70px; align-items: center; border: 1px solid rgba(54,194,206,0.25); border-radius: 26px; padding: 56px; color: var(--white); background: radial-gradient(circle at 20% 0%, rgba(54,194,206,0.11), transparent 42%), var(--navy-850); }
.offer-main h2 { margin: 12px 0 15px; font-size: clamp(38px, 4vw, 54px); line-height: 1.06; letter-spacing: -0.045em; }
.offer-main > p { max-width: 650px; color: #b8c5d5; font-size: 17px; }
.offer-main ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 24px; margin: 28px 0 0; padding: 0; list-style: none; }
.offer-main li { display: flex; gap: 8px; color: #c8d3df; font-size: 13px; }
.offer-main li span { color: var(--teal-400); font-weight: 900; }
.price-card { border-radius: 20px; padding: 28px; color: var(--slate-900); background: var(--white); box-shadow: var(--shadow-lg); }
.price-card > span { color: var(--teal-600); font-size: 10px; font-weight: 850; letter-spacing: 0.12em; text-transform: uppercase; }
.price { display: flex; align-items: baseline; gap: 6px; margin-top: 5px; }
.price strong { font-size: 56px; line-height: 1; letter-spacing: -0.06em; }
.price small { color: var(--slate-500); }
.price-card p { margin: 18px 0 22px; color: var(--slate-600); font-size: 13px; }
.price-card > small { display: block; margin-top: 11px; color: var(--slate-500); font-size: 10px; text-align: center; }

.fit-section { background: var(--white); }
.fit-layout { display: grid; grid-template-columns: 0.76fr 1.24fr; align-items: start; gap: 90px; }
.fit-copy { position: sticky; top: 120px; }
.fit-copy > p { font-size: 17px; }
.fit-note { margin-top: 32px; border-left: 3px solid var(--teal-500); padding: 4px 0 4px 18px; }
.fit-note span { color: var(--teal-600); font-size: 10px; font-weight: 850; text-transform: uppercase; }
.fit-note p { margin: 4px 0 0; color: var(--slate-600); font-size: 13px; }
.direct-contact { display: grid; margin-top: 35px; }
.direct-contact small { color: var(--slate-500); }
.direct-contact strong { margin-top: 3px; font-size: 18px; }
.direct-contact a { color: var(--teal-600); font-size: 13px; font-weight: 750; }
.fit-form { border: 1px solid var(--slate-200); border-radius: 20px; padding: 31px; background: var(--slate-50); box-shadow: var(--shadow-sm); }
.fit-form label:not(.check-row):not(.honeypot) { display: grid; gap: 7px; margin-bottom: 17px; }
.fit-form label > span { color: var(--slate-700); font-size: 12px; font-weight: 800; }
.form-grid { display: grid; gap: 14px; }
.two-column { grid-template-columns: repeat(2, 1fr); }
.three-column { grid-template-columns: repeat(3, 1fr); }
.fit-form input, .fit-form textarea, .fit-form select { width: 100%; border: 1px solid var(--slate-300); border-radius: 10px; padding: 11px 12px; color: var(--slate-900); background: var(--white); }
.fit-form textarea { resize: vertical; }
.check-row { display: flex; align-items: flex-start; gap: 10px; margin: 11px 0; }
.check-row input { flex: 0 0 auto; width: 16px; height: 16px; margin-top: 4px; accent-color: var(--teal-600); }
.check-row span { font-size: 12px; font-weight: 600; }
.consent-row { margin-bottom: 19px; }
.honeypot { position: absolute; left: -10000px; }
.form-status { min-height: 22px; margin: 10px 0 0; color: var(--red-500); font-size: 12px; font-weight: 700; text-align: center; }
.lead-success { display: flex; gap: 12px; margin-top: 15px; border: 1px solid #b8e3cf; border-radius: 12px; padding: 14px; background: #effaf4; }
.lead-success > span { display: grid; flex: 0 0 30px; height: 30px; place-items: center; border-radius: 50%; color: white; background: #238a62; }
.lead-success strong, .lead-success p, .lead-success a { display: block; }
.lead-success p { margin: 2px 0; color: var(--slate-600); font-size: 12px; }
.lead-success a { color: var(--teal-600); font-size: 12px; font-weight: 850; }
.privacy-copy { display: block; margin-top: 9px; color: var(--slate-500); font-size: 10px; }

.trust-section { border-top: 1px solid var(--slate-200); background: var(--slate-50); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { min-height: 180px; padding: 31px 25px; border-right: 1px solid var(--slate-200); }
.trust-grid > div:first-child { border-left: 1px solid var(--slate-200); }
.trust-grid span { color: var(--teal-600); font-size: 10px; font-weight: 850; }
.trust-grid strong { display: block; margin-top: 12px; font-size: 14px; }
.trust-grid p { margin: 5px 0 0; color: var(--slate-600); font-size: 12px; }

.site-footer { padding: 64px 0 26px; color: #bdc9d7; background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 0.8fr); gap: 48px; }
.footer-brand p { max-width: 360px; margin-top: 17px; color: #8fa1b7; font-size: 13px; }
.footer-links { display: grid; align-content: start; gap: 9px; }
.footer-links strong { margin-bottom: 6px; color: var(--white); font-size: 12px; }
.footer-links a, .footer-links span { color: #8fa1b7; font-size: 12px; text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 50px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.09); color: #6f8299; font-size: 10px; }

@media (max-width: 1000px) {
  .desktop-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 55px; }
  .hero-copy { max-width: 760px; }
  .call-console { max-width: 670px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid article:nth-child(2) { border-right: 0; }
  .process-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--slate-200); }
  .registry-preview, .guardrail-layout, .fit-layout { grid-template-columns: 1fr; gap: 48px; }
  .guardrail-intro, .fit-copy { position: static; }
  .offer-card { grid-template-columns: 1fr 310px; gap: 35px; padding: 42px; }
  .footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); gap: 25px; }
}

@media (max-width: 760px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .section { padding: 78px 0; }
  .site-header .button-small { display: none; }
  .header-inner { min-height: 68px; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 72px; padding-bottom: 78px; }
  .hero h1 { font-size: clamp(43px, 13vw, 62px); }
  .hero-lede { font-size: 17px; }
  .hero-actions .button { width: 100%; }
  .proof-list { display: grid; grid-template-columns: repeat(2, 1fr); }
  .call-console { transform: none; }
  .console-footer { flex-wrap: wrap; justify-content: flex-start; }
  .outcome-grid { grid-template-columns: repeat(2, 1fr); }
  .outcome-grid div:nth-child(2) { border-right: 0; }
  .outcome-grid div:nth-child(-n+2) { border-bottom: 1px solid var(--slate-200); }
  .split-heading { display: block; }
  .split-heading > p { margin-top: 18px; }
  .demo-layout { grid-template-columns: 1fr; }
  .scenario-rail { grid-template-columns: repeat(2, 1fr); }
  .scenario:last-child { grid-column: 1 / -1; }
  .demo-console { min-height: 500px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--slate-200); }
  .process-grid article:nth-child(3) { border-bottom: 1px solid var(--slate-200); }
  .registry-copy ul { grid-template-columns: 1fr; }
  .guardrail-columns { grid-template-columns: 1fr; }
  .matrix-row { grid-template-columns: 0.65fr 1.35fr; }
  .matrix-row > *:nth-child(2) { border-right: 0; }
  .matrix-row > *:nth-child(3) { grid-column: 1 / -1; border-top: 1px dashed var(--slate-200); border-right: 0; padding-top: 11px; padding-bottom: 11px; }
  .matrix-head > *:nth-child(3) { display: none; }
  .offer-card { grid-template-columns: 1fr; padding: 30px; }
  .offer-main ul { grid-template-columns: 1fr; }
  .price-card { max-width: 390px; }
  .two-column, .three-column { grid-template-columns: 1fr; gap: 0; }
  .fit-form { padding: 22px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--slate-200); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: grid; gap: 5px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 43px; }
  .scenario-rail { grid-template-columns: 1fr; }
  .scenario:last-child { grid-column: auto; }
  .transcript.caller { margin-left: 12px; }
  .transcript.agent { margin-right: 12px; }
  .handoff-row { grid-template-columns: auto 1fr; }
  .handoff-row > span { grid-column: 2; }
  .outcome-grid, .trust-grid { grid-template-columns: 1fr; }
  .outcome-grid div, .outcome-grid div:first-child, .trust-grid > div, .trust-grid > div:first-child { border-right: 0; border-left: 0; border-bottom: 1px solid var(--slate-200); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

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

