:root {
  --ink: #08162c;
  --ink-soft: #12233d;
  --blue: #244a9b;
  --blue-bright: #3565c5;
  --red: #d92532;
  --paper: #f4f1eb;
  --white: #fff;
  --line: #d9dfe7;
  --muted: #647083;
  --green: #43c889;
  --shadow: 0 24px 60px rgba(2, 12, 29, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: "DM Sans", sans-serif; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.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; z-index: 1000; left: 16px; top: -60px; padding: 12px 18px; background: white; border-radius: 6px; transition: top .2s; }
.skip-link:focus { top: 16px; }

.site-header { height: 88px; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(8,22,44,.08); position: sticky; top: 0; z-index: 100; backdrop-filter: blur(14px); }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand img { width: 190px; height: 66px; object-fit: contain; object-position: left center; }
nav { display: flex; align-items: center; gap: 34px; font-size: 14px; font-weight: 600; }
nav > a:not(.button) { position: relative; }
nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--red); transition: right .25s; }
nav > a:not(.button):hover::after { right: 0; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; padding: 16px 24px; border: 0; border-radius: 4px; background: var(--red); color: white; font-weight: 700; font-size: 14px; letter-spacing: .01em; cursor: pointer; box-shadow: 0 10px 25px rgba(217,37,50,.2); transition: transform .2s, background .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); background: #c51927; box-shadow: 0 14px 30px rgba(217,37,50,.28); }
.button-small { padding: 12px 18px; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }

.hero { min-height: 720px; background: linear-gradient(120deg, #f8f7f3 0%, #f1f2f5 57%, #e8ecf2 100%); position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(8,22,44,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(8,22,44,.035) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(to right, transparent 35%, black); }
.hero::after { content: "911"; position: absolute; right: -25px; bottom: -112px; font: 800 330px/1 "Manrope"; letter-spacing: -30px; color: rgba(255,255,255,.55); pointer-events: none; }
.hero-grid { min-height: 720px; display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 55px; position: relative; z-index: 1; }
.eyebrow { display: flex; align-items: center; gap: 10px; text-transform: uppercase; font: 700 12px/1 "Manrope"; letter-spacing: .16em; color: var(--blue); }
.eyebrow span { width: 25px; height: 2px; background: var(--red); }
.eyebrow.light { color: #9db2dc; }
h1, h2, h3 { font-family: "Manrope", sans-serif; margin-top: 0; }
h1 { margin: 24px 0 22px; font-size: clamp(43px, 5vw, 67px); line-height: 1.06; letter-spacing: -.055em; }
h1 em, h2 em { font-style: normal; color: var(--blue); }
.hero-lead { max-width: 590px; margin: 0; color: #526076; font-size: 18px; line-height: 1.72; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 34px; }
.text-link { color: var(--ink); font-weight: 700; font-size: 14px; border-bottom: 1px solid #aeb7c3; padding: 10px 0 7px; }
.text-link span { color: var(--red); margin-left: 8px; }
.trust-row { margin-top: 38px; padding-top: 22px; display: flex; gap: 26px; border-top: 1px solid #d5dae0; color: #606c7d; font-size: 12px; font-weight: 600; }
.trust-row span::before { content: "✓"; color: var(--blue); font-weight: 800; margin-right: 8px; }

.console-visual { position: relative; min-width: 0; }
.console-shell { position: relative; z-index: 2; border: 7px solid var(--ink); border-radius: 11px; overflow: hidden; background: #0c1d34; box-shadow: var(--shadow); transform: perspective(1300px) rotateY(-4deg) rotateX(1deg); }
.console-topbar { height: 42px; display: flex; align-items: center; padding: 0 13px; background: #071426; color: #7890b2; font-size: 8px; letter-spacing: .16em; }
.window-dots { display: flex; gap: 5px; margin-right: 18px; }
.window-dots i { width: 6px; height: 6px; border-radius: 50%; background: #516079; }
.console-topbar > b { margin-left: auto; color: var(--green); font-size: 8px; }
.console-topbar > b i { display: inline-block; width: 5px; height: 5px; margin-right: 5px; background: var(--green); border-radius: 50%; box-shadow: 0 0 9px var(--green); }
.console-body { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 322px; background: #10233b; }
.call-panel, .unit-panel { padding: 22px; }
.call-panel { border-right: 1px solid #2a3c53; }
.panel-label { margin-bottom: 17px; color: #6680a4; font: 700 8px "Manrope"; letter-spacing: .15em; }
.caller-line { display: flex; align-items: center; gap: 8px; color: white; font-size: 10px; }
.caller-line > i { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(217,37,50,.13); }
.caller-line strong { margin-left: auto; color: #91a7c5; font-size: 10px; }
.waveform { height: 78px; margin: 17px 0 22px; display: flex; gap: 4px; align-items: center; padding: 0 6px; background: #0b1b30; border-radius: 3px; overflow: hidden; }
.waveform i { width: 3px; height: 22%; flex: 1; border-radius: 3px; background: #3972d0; animation: wave 1.3s ease-in-out infinite alternate; }
.waveform i:nth-child(3n) { height: 65%; animation-delay: -.7s; }.waveform i:nth-child(4n) { height: 40%; animation-delay: -.2s; }.waveform i:nth-child(5n) { height: 85%; animation-delay: -.9s; }
@keyframes wave { to { transform: scaleY(1.65); opacity: .7; } }
.location-card { padding: 14px; background: rgba(36,74,155,.22); border-left: 2px solid #3b6fd1; }
.location-card span, .location-card small { display: block; color: #7891b5; font-size: 7px; letter-spacing: .1em; }
.location-card strong { display: block; color: white; font-size: 12px; margin: 6px 0; }
.unit { display: grid; grid-template-columns: 1fr auto; gap: 3px 12px; margin-bottom: 10px; padding: 12px; border: 1px solid #2a3f59; border-radius: 3px; color: white; }
.unit b { font-size: 10px; }.unit span { grid-row: 2; color: #7187a5; font-size: 8px; }.unit i { grid-row: 1 / 3; grid-column: 2; align-self: center; color: #78879d; font-size: 7px; font-style: normal; }.unit i.ready { color: var(--green); }
.unit-panel button { width: 100%; margin-top: 9px; padding: 11px 5px; border: 0; border-radius: 2px; background: #2b56a4; color: white; font-size: 7px; font-weight: 700; letter-spacing: .06em; }
.console-footer { height: 45px; display: flex; align-items: center; gap: 24px; padding: 0 20px; border-top: 1px solid #283a51; color: #7086a5; font-size: 8px; }
.console-footer i { display: inline-block; width: 5px; height: 5px; margin-right: 5px; background: var(--green); border-radius: 50%; }
.scenario-card { position: absolute; z-index: 3; right: -18px; bottom: -55px; width: 210px; padding: 17px 19px; background: white; border-left: 3px solid var(--red); box-shadow: 0 14px 35px rgba(5,18,36,.16); }
.scenario-card > span { font-size: 7px; letter-spacing: .12em; color: #7f8998; }.scenario-card > strong { display: block; margin: 6px 0 12px; font: 700 12px "Manrope"; }.scenario-card div { border-top: 1px solid #e5e8ec; padding-top: 10px; }.scenario-card i { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--green); margin-right: 5px; }.scenario-card small { color: #718098; font-size: 8px; }
.signal { position: absolute; z-index: 0; border: 1px solid rgba(36,74,155,.13); border-radius: 50%; }.signal-one { width: 480px; height: 480px; top: -56px; right: -100px; }.signal-two { width: 350px; height: 350px; top: 10px; right: -35px; }

.problem-strip { padding: 38px 0; background: var(--ink); color: white; }
.strip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.strip-grid p { margin: 0; font: 600 24px/1.4 "Manrope"; }.strip-grid p strong { color: #6f8dc7; }.strip-copy { padding-left: 32px; border-left: 2px solid var(--red); color: #aebacd; font-size: 14px; line-height: 1.7; }

.section { padding: 110px 0; }
.section-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 70px; align-items: end; }
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -42px; }
h2 { margin-bottom: 0; font-size: clamp(35px, 4vw, 50px); line-height: 1.14; letter-spacing: -.045em; }
.section-heading > p { color: var(--muted); margin: 0 0 5px; font-size: 16px; line-height: 1.75; }
.role-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 60px; border: 1px solid var(--line); }
.role-card { position: relative; min-height: 365px; padding: 31px 25px; border-right: 1px solid rgba(255,255,255,.18); overflow: hidden; isolation: isolate; background-position: center; background-size: cover; color: white; transition: transform .3s, box-shadow .3s; }
.role-card::before { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, rgba(5,17,34,.28) 0%, rgba(5,17,34,.48) 38%, rgba(5,17,34,.96) 100%); transition: background .3s; }
.role-card:nth-child(1) { background-image: url("assets/call-taking.png"); }
.role-card:nth-child(2) { background-image: url("assets/radio-dispatch.png"); }
.role-card:nth-child(3) { background-image: url("assets/instructor-control.png"); }
.role-card:nth-child(4) { background-image: url("assets/comm-center.png"); }
.role-card:last-child { border: 0; }.role-card:hover { z-index: 2; transform: translateY(-7px); box-shadow: 0 22px 48px rgba(8,22,44,.3); }
.role-card:hover::before { background: linear-gradient(180deg, rgba(5,17,34,.16) 0%, rgba(5,17,34,.35) 40%, rgba(5,17,34,.94) 100%); }
.role-number { position: absolute; right: 17px; top: 13px; color: rgba(255,255,255,.4); text-shadow: 0 2px 10px rgba(0,0,0,.3); font: 800 45px "Manrope"; }
.role-icon { width: 43px; height: 43px; display: grid; place-items: center; margin: 138px 0 18px; border-radius: 3px; background: rgba(255,255,255,.92); color: var(--blue); font-size: 24px; font-weight: 800; box-shadow: 0 8px 20px rgba(0,0,0,.18); }
.role-card h3 { margin-bottom: 11px; font-size: 18px; text-shadow: 0 2px 10px rgba(0,0,0,.35); }.role-card p { margin: 0; color: #d8e0eb; font-size: 13px; line-height: 1.6; text-shadow: 0 1px 5px rgba(0,0,0,.5); }

.capabilities { background: var(--ink); color: white; position: relative; overflow: hidden; }
.capabilities::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 80% 30%, rgba(53,101,197,.15), transparent 35%); }
.capability-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; }
.capability-copy h2 { margin: 23px 0; }.capability-copy h2 em { color: #7192d1; }.capability-copy > p { color: #aab7c9; line-height: 1.75; }
.check-list { list-style: none; padding: 0; margin: 33px 0 0; }
.check-list li { display: flex; gap: 15px; padding: 15px 0; border-top: 1px solid #273750; }
.check-list li > span { width: 24px; height: 24px; flex: 0 0 auto; display: grid; place-items: center; margin-top: 2px; background: rgba(67,200,137,.13); color: var(--green); border-radius: 50%; font-size: 11px; }
.check-list strong, .check-list small { display: block; }.check-list strong { margin-bottom: 5px; font-size: 14px; }.check-list small { color: #8797ae; font-size: 12px; }
.scenario-stack { background: #10233c; border: 1px solid #2a3e5b; box-shadow: 0 24px 55px rgba(0,0,0,.28); }
.stack-header, .stack-footer { display: flex; align-items: center; justify-content: space-between; padding: 15px 20px; color: #7187a7; font-size: 8px; letter-spacing: .1em; }
.stack-header { border-bottom: 1px solid #263a56; }.stack-header b { color: var(--green); }.stack-header i { display: inline-block; width: 5px; height: 5px; margin-right: 5px; border-radius: 50%; background: var(--green); }
.scenario-title { padding: 25px 25px 20px; }.scenario-title small { display: block; color: #6480a7; font-size: 8px; letter-spacing: .12em; }.scenario-title strong { display: block; margin-top: 8px; font: 700 19px "Manrope"; }
.timeline { margin: 0 25px 22px; padding: 5px 0; background: #0c1c31; }
.timeline-row { display: grid; grid-template-columns: 27px 1fr auto; gap: 12px; align-items: center; padding: 15px 18px; position: relative; }
.timeline-row::after { content: ""; position: absolute; left: 31px; top: 41px; bottom: -14px; width: 1px; background: #30445f; }.timeline-row:last-child::after { display: none; }
.timeline-row > i { z-index: 1; width: 27px; height: 27px; display: grid; place-items: center; border: 1px solid #3a4b65; border-radius: 50%; background: #0c1c31; color: var(--green); font-size: 10px; font-style: normal; }.timeline-row.active > i { border: 5px solid rgba(217,37,50,.22); background: var(--red); background-clip: padding-box; box-shadow: 0 0 12px rgba(217,37,50,.5); }
.timeline-row strong, .timeline-row small { display: block; }.timeline-row strong { font-size: 11px; margin-bottom: 4px; }.timeline-row small, .timeline-row time { color: #667d9c; font-size: 8px; }.timeline-row time { font-style: normal; }.timeline-row.active strong { color: #fff; }.timeline-row:not(.active):not(.complete) strong { color: #75869f; }
.stack-footer { border-top: 1px solid #263a56; }

.process { background: var(--paper); }
.section-heading.centered { display: block; text-align: center; }.section-heading.centered .eyebrow { justify-content: center; margin-bottom: 22px; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 60px; position: relative; }
.process-grid::before { content: ""; position: absolute; left: 17%; right: 17%; top: 47px; border-top: 1px dashed #b9c1cd; }
.process-step { text-align: center; padding: 0 45px; position: relative; }
.process-step > span { position: absolute; left: calc(50% + 23px); top: -5px; z-index: 2; width: 23px; height: 23px; display: grid; place-items: center; border-radius: 50%; background: var(--red); color: white; font: 700 8px "Manrope"; }
.process-icon { position: relative; z-index: 1; width: 94px; height: 94px; margin: 0 auto 28px; display: grid; place-items: center; border: 1px solid #d2d8df; border-radius: 50%; background: white; color: var(--blue); font-size: 25px; box-shadow: 0 10px 25px rgba(8,22,44,.06); }
.process-step h3 { margin-bottom: 10px; font-size: 18px; }.process-step p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.quote-section { padding: 110px 0; background: linear-gradient(120deg, #0a1a31, #10274b); color: white; position: relative; overflow: hidden; }
.quote-section::after { content: ""; position: absolute; width: 600px; height: 600px; border: 1px solid rgba(105,138,198,.12); border-radius: 50%; left: -300px; bottom: -300px; box-shadow: 0 0 0 70px rgba(105,138,198,.025), 0 0 0 140px rgba(105,138,198,.02); }
.quote-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: center; position: relative; z-index: 1; }
.quote-copy h2 { margin: 23px 0; }.quote-copy h2 em { color: #7899d7; }.quote-copy > p { color: #a7b5c9; line-height: 1.8; }
.quote-points { display: grid; gap: 14px; margin-top: 32px; color: #d5deea; font-size: 13px; }.quote-points i { display: inline-grid; place-items: center; width: 19px; height: 19px; margin-right: 9px; border-radius: 50%; background: rgba(67,200,137,.14); color: var(--green); font-style: normal; font-size: 9px; }
.direct-contact { display: grid; grid-template-columns: auto auto; gap: 26px; margin-top: 38px; padding-top: 26px; border-top: 1px solid #2a3d59; }
.direct-contact a { display: flex; flex-direction: column; gap: 7px; width: max-content; }
.direct-contact small { color: #7589a8; font: 700 8px "Manrope"; letter-spacing: .14em; }
.direct-contact strong { color: white; font-size: 13px; transition: color .2s; }
.direct-contact a:hover strong { color: #91abe0; }
.form-card { padding: 34px; background: white; color: var(--ink); box-shadow: 0 25px 60px rgba(0,0,0,.25); }
.form-heading { display: flex; justify-content: space-between; padding-bottom: 22px; border-bottom: 1px solid #e2e6eb; }.form-heading span { font: 800 13px "Manrope"; letter-spacing: .1em; }.form-heading small { color: #86909e; font-size: 10px; }
form { margin-top: 22px; }.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; margin-bottom: 15px; color: #3d4859; font-size: 11px; font-weight: 700; }
input, select, textarea { width: 100%; margin-top: 7px; padding: 12px 13px; border: 1px solid #d7dde5; border-radius: 2px; background: #fbfcfd; color: var(--ink); outline: none; transition: border .2s, box-shadow .2s; }
input:focus, select:focus, textarea:focus { border-color: var(--blue-bright); box-shadow: 0 0 0 3px rgba(53,101,197,.1); }
textarea { resize: vertical; min-height: 92px; }.submit-button { width: 100%; margin-top: 3px; }
.form-note { text-align: center; color: #7b8694; font-size: 10px; margin: 12px 0 0; }.form-status { min-height: 0; margin-top: 10px; color: var(--blue); font-size: 11px; text-align: center; }

footer { padding: 55px 0 22px; background: #061224; color: white; }
.footer-main { display: flex; justify-content: space-between; padding-bottom: 45px; }.footer-brand img { width: 210px; filter: brightness(0) invert(1); opacity: .95; }.footer-brand p { margin: 10px 0 0; color: #7d8da6; font-size: 12px; font-style: italic; }
.footer-links { display: flex; gap: 80px; }.footer-links > div { display: flex; flex-direction: column; gap: 10px; }.footer-links strong { margin-bottom: 5px; color: #b9c6d8; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }.footer-links a { color: #71839f; font-size: 12px; }.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 20px; border-top: 1px solid #1a2a41; color: #5f718c; font-size: 10px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; padding: 85px 0 125px; }.hero { min-height: auto; }.hero-grid { min-height: auto; }.hero-copy { max-width: 680px; }.console-visual { width: min(680px, 100%); }
  .role-grid { grid-template-columns: 1fr 1fr; }.role-card:nth-child(2) { border-right: 0; }.role-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .capability-grid, .quote-grid { grid-template-columns: 1fr; gap: 55px; }.capability-copy, .quote-copy { max-width: 650px; }.scenario-stack { max-width: 700px; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1160px); }.site-header { height: 76px; }.brand img { width: 158px; height: 58px; }
  .menu-toggle { display: flex; flex-direction: column; gap: 4px; }.menu-toggle span:not(.sr-only) { width: 24px; height: 2px; background: var(--ink); transition: transform .2s, opacity .2s; }
  .menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  nav { display: none; position: fixed; inset: 76px 0 0; padding: 45px 25px; background: white; flex-direction: column; align-items: flex-start; gap: 28px; font-size: 18px; }.menu-open nav { display: flex; }.menu-open nav .button { width: 100%; }
  .hero-grid { padding-top: 65px; gap: 55px; }.hero-actions { align-items: flex-start; flex-direction: column; gap: 12px; }.trust-row { flex-wrap: wrap; gap: 12px 20px; }
  .console-shell { border-width: 4px; transform: none; }.console-body { grid-template-columns: 1fr; }.unit-panel { display: none; }.call-panel { border-right: 0; }.scenario-card { right: 10px; }.signal { display: none; }
  .strip-grid, .section-heading { grid-template-columns: 1fr; gap: 22px; }.strip-copy { padding-left: 18px; }.section { padding: 80px 0; }.section-heading .eyebrow { margin: 0 0 2px; }
  .role-grid { grid-template-columns: 1fr; }.role-card, .role-card:nth-child(2) { border: 0; border-bottom: 1px solid var(--line); }.role-card:last-child { border-bottom: 0; }
  .capabilities, .quote-section { padding: 80px 0; }.capability-grid, .quote-grid { gap: 45px; }.scenario-title strong { font-size: 15px; }.timeline-row { padding-inline: 10px; }.timeline-row::after { left: 23px; }
  .process-grid { grid-template-columns: 1fr; gap: 45px; }.process-grid::before { display: none; }.process-step { padding: 0 25px; }
  .direct-contact { grid-template-columns: 1fr; gap: 18px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }.form-card { padding: 24px 18px; }.form-heading small { display: none; }
  .footer-main { flex-direction: column; gap: 40px; }.footer-links { gap: 50px; }.footer-bottom { gap: 20px; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; }.reveal { opacity: 1; transform: none; transition: none; }.waveform i { animation: none; } }



