@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@500;600;700;800&display=swap");

:root {
  --black: #050607;
  --black-2: #080a0d;
  --panel: #0d1116;
  --panel-2: #121820;
  --line: #26313e;
  --line-soft: rgba(255, 255, 255, 0.1);
  --white: #f7f8fa;
  --muted: #a8b1bd;
  --muted-2: #76818f;
  --red: #ef233c;
  --red-bright: #ff3049;
  --red-dark: #9b0d20;
  --amber: #ffa800;
  --shell: min(1220px, calc(100vw - 48px));
  --display: "Manrope", "Arial Black", sans-serif;
  --body: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--red) var(--black);
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 8%, rgba(239, 35, 60, .07), transparent 26rem),
    var(--black);
  font-family: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
h1, h2, h3, p { margin-top: 0; }

.shell { width: var(--shell); margin-inline: auto; }
.section { position: relative; padding: 132px 0; }
.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: 18px;
  top: -100px;
  padding: 10px 15px;
  color: #fff;
  background: var(--red);
  transition: top .2s ease;
}
.skip-link:focus { top: 18px; }

.eyebrow, .mini-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 26px;
  height: 2px;
  background: var(--red);
}

.section-heading { max-width: 820px; margin-bottom: 58px; }
.section-heading h2, .network-copy h2, .count-copy h2, .app-copy h2, .safety-box h2, .closing h2 {
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1.05;
}
.section-heading > p:last-child, .split-heading > p, .network-copy > p, .count-copy > p, .app-copy > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
  gap: 8vw;
  align-items: end;
}
.split-heading > div .eyebrow { margin-bottom: 24px; }
.split-heading > div h2 { margin-bottom: 0; }
.split-heading > p { margin-bottom: 4px; }

.button {
  position: relative;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 25px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .035em;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.button:hover { transform: translateY(-3px); }
.button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.button-primary { color: #fff; background: var(--red); box-shadow: 0 15px 45px rgba(239, 35, 60, .2); }
.button-primary:hover { background: var(--red-bright); box-shadow: 0 18px 52px rgba(239, 35, 60, .3); }
.button-quiet { border-color: var(--line); background: rgba(16, 21, 27, .76); }
.button-quiet:hover { border-color: #596371; background: var(--panel-2); }
.button-light { color: #050607; background: #fff; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  border-color: var(--line-soft);
  background: rgba(5, 6, 7, .86);
  backdrop-filter: blur(18px);
}
.nav-wrap { display: flex; height: 84px; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--display); font-size: 22px; font-weight: 800; letter-spacing: -.04em; }
.brand img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.brand > span > span { color: var(--red); }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a { color: #c8cfd8; font-size: 12px; font-weight: 600; }
.site-nav a:not(.nav-cta):hover { color: #fff; }
.site-nav .nav-cta { padding: 11px 17px; border: 1px solid rgba(239, 35, 60, .55); color: #fff; background: rgba(239, 35, 60, .08); }
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 880px;
  padding-top: 84px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.hero::before {
  position: absolute;
  right: -13vw;
  top: -22vw;
  width: 66vw;
  height: 66vw;
  border: 1px solid rgba(239, 35, 60, .12);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 160px rgba(239, 35, 60, .07) inset;
}
.hero::after {
  position: absolute;
  left: 0;
  top: 84px;
  width: 3px;
  height: calc(100% - 84px);
  background: var(--red);
  content: "";
}
.hero-grid { display: grid; min-height: 710px; grid-template-columns: 1.04fr .96fr; gap: 62px; align-items: center; }
.hero-grid > *, .network-grid > *, .app-grid > *, .count-grid > *, .split-heading > * { min-width: 0; }
.hero-copy { position: relative; z-index: 3; padding-top: 40px; }
.hero-copy h1 {
  max-width: 700px;
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: clamp(52px, 6vw, 83px);
  font-weight: 700;
  letter-spacing: -.057em;
  line-height: .99;
}
.hero-copy h1 em { color: var(--red); font-style: normal; }
.hero-intro { max-width: 650px; margin-bottom: 36px; color: #bcc4cf; font-size: 18px; line-height: 1.78; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.emergency-note { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-top: 30px; color: #c5ccd5; font-size: 12px; }
.emergency-note span:last-child { color: var(--muted-2); }
.pulse-dot { position: relative; width: 9px; height: 9px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 6px rgba(239, 35, 60, .12); }

.hero-visual { position: relative; min-height: 600px; isolation: isolate; }
.radar-grid {
  position: absolute;
  inset: 38px 0 28px 24px;
  opacity: .24;
  background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle, #000 25%, transparent 72%);
}
.orbit { position: absolute; left: 50%; top: 48%; border: 1px solid rgba(255, 255, 255, .13); border-radius: 50%; transform: translate(-50%, -50%); }
.orbit-one { width: 390px; height: 390px; }
.orbit-two { width: 560px; height: 560px; border-color: rgba(239, 35, 60, .16); }
.hero-mark { position: absolute; z-index: 2; left: 50%; top: 48%; width: 202px; height: 202px; padding: 21px; border: 1px solid rgba(239, 35, 60, .46); border-radius: 50%; background: #040506; box-shadow: 0 0 0 18px rgba(239, 35, 60, .045), 0 0 70px rgba(239, 35, 60, .14); transform: translate(-50%, -50%); }
.hero-mark::after { position: absolute; inset: 9px; border: 1px dashed rgba(255,255,255,.13); border-radius: inherit; content: ""; animation: spin 28s linear infinite; }
.hero-mark img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.kit-node { position: absolute; z-index: 3; display: flex; align-items: center; gap: 7px; color: #aeb8c5; font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.kit-node span { width: 8px; height: 8px; border: 2px solid #fff; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 6px rgba(239, 35, 60, .16), 0 0 18px var(--red); }
.node-one { left: 47%; top: 10%; }
.node-two { right: 4%; top: 42%; }
.node-three { left: 45%; bottom: 5%; }
.node-four { left: 2%; top: 45%; }
.time-card { position: absolute; z-index: 4; right: -7px; bottom: 32px; display: grid; width: 202px; padding: 18px 20px; border-left: 3px solid var(--red); background: rgba(13, 17, 22, .94); box-shadow: 0 24px 60px rgba(0,0,0,.46); }
.time-kicker { color: var(--muted-2); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.time-card strong { margin: 3px 0; color: var(--red); font-family: var(--display); font-size: 39px; line-height: 1.1; }
.time-card strong small { font-size: 14px; }
.time-card > span:last-child { color: #aab3bd; font-size: 10px; line-height: 1.55; }
.heartbeat { position: absolute; z-index: -1; left: -6%; top: 42%; width: 112%; height: 82px; overflow: visible; }
.heartbeat path { fill: none; stroke: var(--red); stroke-width: 2; filter: drop-shadow(0 0 7px rgba(239,35,60,.55)); stroke-dasharray: 1000; stroke-dashoffset: 1000; animation: heartbeat-draw 3.4s ease-out forwards .6s; }
.hero-foot { display: flex; height: 85px; align-items: center; justify-content: space-between; border-top: 1px solid var(--line-soft); color: #707b89; font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.hero-scroll { display: flex; align-items: center; gap: 10px; }
.hero-scroll i { width: 1px; height: 22px; background: linear-gradient(var(--red) 50%, rgba(255,255,255,.14) 50%); }

.urgency { background: #080a0d; }
.urgency::after { position: absolute; right: 0; top: 0; width: 1px; height: 100%; background: var(--red); content: ""; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stat-card { position: relative; min-height: 290px; padding: 31px 32px; overflow: hidden; border: 1px solid var(--line); background: var(--panel); }
.stat-card::after { position: absolute; right: -46px; bottom: -58px; width: 170px; height: 170px; border: 1px solid rgba(255,255,255,.04); border-radius: 50%; content: ""; }
.stat-index { display: block; margin-bottom: 44px; color: #53606f; font-size: 10px; font-weight: 700; letter-spacing: .16em; }
.stat-card strong { display: block; margin-bottom: 21px; font-family: var(--display); font-size: clamp(44px, 5vw, 68px); letter-spacing: -.05em; line-height: 1; }
.stat-card strong small { margin-left: 5px; color: var(--muted); font-size: 13px; letter-spacing: 0; }
.stat-card p { max-width: 300px; margin-bottom: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.red-card { border-color: rgba(239, 35, 60, .46); background: linear-gradient(145deg, rgba(239, 35, 60, .09), transparent 55%), var(--panel); }
.red-card strong { color: var(--red); }
.amber-card strong { color: var(--amber); }
.gap-statement { display: grid; margin-top: 18px; padding: 39px 38px; border: 1px solid var(--line); background: #07090b; grid-template-columns: 115px 1fr 145px; gap: 32px; align-items: center; }
.gap-number { color: var(--red); font-family: var(--display); font-size: 103px; font-weight: 800; letter-spacing: -.08em; line-height: .8; }
.gap-statement .mini-label { margin-bottom: 12px; color: var(--red); }
.gap-statement h3 { margin-bottom: 10px; font-family: var(--display); font-size: 25px; letter-spacing: -.02em; line-height: 1.25; }
.gap-statement > div > p:last-child { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.gap-unit { color: #fff; font-family: var(--display); font-size: 23px; font-weight: 700; line-height: 1; text-transform: uppercase; }
.gap-unit small { display: block; margin-top: 9px; color: var(--muted-2); font-family: var(--body); font-size: 8px; font-weight: 600; line-height: 1.4; text-transform: none; }

.response { background: var(--black); }
.response-flow { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); }
.response-flow::before { position: absolute; left: 12.5%; right: 12.5%; top: 76px; height: 1px; background: linear-gradient(90deg, transparent, var(--red) 15%, var(--red) 85%, transparent); content: ""; opacity: .6; }
.flow-step { position: relative; min-height: 330px; padding: 30px 25px; background: #090c10; }
.flow-number { color: var(--red); font-family: var(--display); font-size: 12px; font-weight: 800; }
.flow-icon { position: relative; z-index: 1; display: grid; width: 55px; height: 55px; margin: 40px 0 42px; place-items: center; border: 1px solid rgba(239,35,60,.47); border-radius: 50%; background: #090c10; box-shadow: 0 0 0 8px #090c10; }
.flow-icon svg { width: 25px; fill: none; stroke: #fff; stroke-width: 1.5; }
.flow-step h3 { font-family: var(--display); font-size: 18px; letter-spacing: -.02em; }
.flow-step p { margin-bottom: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.network { overflow: hidden; background: #090c10; }
.network::before { position: absolute; right: 10%; top: 16%; width: 420px; height: 420px; border-radius: 50%; background: rgba(239,35,60,.08); filter: blur(100px); content: ""; }
.network-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 84px; align-items: center; }
.network-copy { position: relative; z-index: 1; }
.network-copy h2 { font-size: clamp(40px, 4.7vw, 65px); }
.kit-list { padding: 0; margin: 40px 0 28px; list-style: none; }
.kit-list li { display: grid; min-height: 67px; padding: 12px 0; border-bottom: 1px solid var(--line-soft); grid-template-columns: 24px 1fr 34px; gap: 12px; align-items: center; }
.kit-list-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(239,35,60,.11); }
.kit-list strong, .kit-list small { display: block; }
.kit-list strong { font-family: var(--display); font-size: 14px; }
.kit-list small { color: var(--muted-2); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.kit-list b { color: #525e6c; font-family: var(--display); font-size: 12px; text-align: right; }
.text-link { display: inline-flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(239,35,60,.6); padding-bottom: 4px; font-size: 12px; font-weight: 700; }
.text-link span { color: var(--red); }

.map-card { position: relative; z-index: 1; border: 1px solid #2a3542; background: #07090c; box-shadow: 0 40px 90px rgba(0,0,0,.34); }
.map-topline, .map-caption { display: flex; align-items: center; justify-content: space-between; color: #7b8795; font-size: 9px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.map-topline { height: 50px; padding: 0 19px; border-bottom: 1px solid var(--line); }
.live-label { display: flex; align-items: center; gap: 7px; color: #bec6cf; }
.live-label i { width: 6px; height: 6px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(239,35,60,.12); }
.map-stage { position: relative; aspect-ratio: 1.28; overflow: hidden; background: radial-gradient(circle at 54% 48%, rgba(239,35,60,.08), transparent 43%), #0b0f14; }
.map-stage::after { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 30px 30px; content: ""; pointer-events: none; }
.borough-map { position: absolute; z-index: 1; inset: 7% 7% 6% 7%; width: 86%; height: 87%; object-fit: contain; filter: grayscale(1) invert(1) brightness(.76) contrast(1.35) drop-shadow(0 0 15px rgba(239,35,60,.12)); opacity: .72; }
.map-marker { position: absolute; z-index: 4; display: flex; align-items: center; gap: 7px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.map-marker span { display: grid; width: 26px; height: 26px; place-items: center; border: 2px solid white; border-radius: 50%; color: #fff; background: var(--red); box-shadow: 0 0 0 7px rgba(239,35,60,.13), 0 0 22px rgba(239,35,60,.65); font-size: 9px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease; }
.map-marker b { padding: 4px 7px; color: #dde2e8; background: rgba(7,9,12,.82); font-size: 8px; letter-spacing: .05em; white-space: nowrap; opacity: 0; transform: translateX(-5px); transition: opacity .2s ease, transform .2s ease; }
.map-marker:hover span, .map-marker.active span { transform: scale(1.14); box-shadow: 0 0 0 9px rgba(239,35,60,.18), 0 0 30px rgba(239,35,60,.8); }
.map-marker:hover b, .map-marker.active b { opacity: 1; transform: translateX(0); }
.marker-woodgreen { left: 52%; top: 21%; }
.marker-homerton { left: 61%; top: 42%; }
.marker-brixton { left: 49%; top: 62%; }
.marker-ladbroke { left: 38%; top: 42%; }
.thames-label { position: absolute; z-index: 2; right: 15%; top: 59%; color: rgba(132,158,180,.38); font-size: 7px; font-style: italic; letter-spacing: .18em; transform: rotate(8deg); }
.map-caption { flex-wrap: wrap; justify-content: flex-start; min-height: 51px; padding: 12px 18px; gap: 18px; border-top: 1px solid var(--line); }
.map-caption span { display: flex; align-items: center; gap: 6px; }
.map-caption span:last-child { margin-left: auto; color: #55616e; }
.legend-kit { width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.legend-borough { width: 14px; height: 9px; border: 1px solid #7d8896; }

.count-section { padding: 0; background: var(--red); }
.count-grid { display: grid; min-height: 520px; grid-template-columns: 1fr 1fr; }
.tally-wrap { position: relative; padding: 80px 70px 60px 0; color: #050607; }
.tally-wrap .mini-label { margin-bottom: 18px; color: rgba(5,6,7,.7); }
.tally { width: min(390px, 100%); }
.tally svg { width: 100%; height: auto; overflow: visible; }
.tally line { stroke: #050607; stroke-width: 11; stroke-linecap: round; filter: drop-shadow(0 2px 0 rgba(255,255,255,.15)); stroke-dasharray: 200; stroke-dashoffset: 200; }
.tally.animate line { animation: tally-draw .55s cubic-bezier(.2,.8,.2,1) forwards; animation-delay: var(--delay); }
.count-readout { display: flex; align-items: flex-end; gap: 16px; margin-top: -5px; }
.count-readout strong { font-family: var(--display); font-size: 76px; font-weight: 800; letter-spacing: -.08em; line-height: .8; }
.count-readout span { font-size: 11px; font-weight: 800; letter-spacing: .08em; line-height: 1.25; text-transform: uppercase; }
.count-copy { display: flex; padding: 80px 0 70px 70px; border-left: 1px solid rgba(5,6,7,.28); flex-direction: column; justify-content: center; color: #050607; }
.count-copy .eyebrow { color: rgba(5,6,7,.66); }
.count-copy .eyebrow > span { background: #050607; }
.count-copy h2 { max-width: 520px; }
.count-copy > p { max-width: 550px; color: rgba(5,6,7,.78); }
.count-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.count-copy .button-primary { color: #fff; background: #050607; box-shadow: none; }
.count-copy .button-primary:hover { background: #20242a; }
.count-copy .button-quiet { border-color: rgba(5,6,7,.35); background: transparent; }
.count-copy .button-quiet:hover { border-color: #050607; }

.mission { background: #07090b; }
.mission-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.mission-card { min-height: 305px; padding: 31px; border: 1px solid var(--line); background: linear-gradient(150deg, rgba(255,255,255,.025), transparent 60%), var(--panel); transition: transform .25s ease, border-color .25s ease; }
.mission-card:hover { border-color: rgba(239,35,60,.52); transform: translateY(-5px); }
.mission-card > span { display: block; margin-bottom: 85px; color: var(--red); font-family: var(--display); font-size: 13px; font-weight: 800; }
.mission-card h3 { font-family: var(--display); font-size: 19px; }
.mission-card p { margin-bottom: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.app-section { overflow: hidden; background: #0a0d11; }
.app-section::after { position: absolute; left: -180px; bottom: -210px; width: 600px; height: 600px; border: 1px solid rgba(239,35,60,.1); border-radius: 50%; content: ""; box-shadow: 0 0 120px rgba(239,35,60,.05) inset; }
.app-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 120px; align-items: center; }
.phone-wrap { position: relative; display: grid; min-height: 740px; place-items: center; }
.phone-glow { position: absolute; width: 430px; height: 430px; border-radius: 50%; background: rgba(239,35,60,.14); filter: blur(100px); }
.phone { position: relative; z-index: 1; width: 350px; padding: 9px; border: 1px solid #424a54; border-radius: 47px; background: #010203; box-shadow: 0 48px 100px rgba(0,0,0,.65), 0 0 0 6px #0f1216; transform: rotate(-2deg); }
.phone-speaker { position: absolute; z-index: 5; left: 50%; top: 15px; width: 82px; height: 18px; border-radius: 20px; background: #020304; transform: translateX(-50%); }
.phone-screen { height: 690px; overflow: hidden; border-radius: 39px; background: #050607; }
.phone-header { display: grid; height: 69px; padding: 18px 17px 8px; background: #050607; grid-template-columns: 34px 1fr 32px; gap: 8px; align-items: center; }
.phone-header img { border-radius: 50%; }
.phone-header strong, .phone-header small { display: block; }
.phone-header strong { font-family: var(--display); font-size: 18px; line-height: 1.1; }
.phone-header small { color: var(--muted-2); font-size: 8px; }
.phone-signal { font-size: 9px; text-align: right; }
.phone-map { position: relative; height: 300px; overflow: hidden; border-block: 1px solid #202630; background: radial-gradient(circle, rgba(239,35,60,.1), transparent 55%), #0d1116; }
.phone-map > img { position: absolute; inset: 4%; width: 92%; height: 92%; object-fit: contain; filter: grayscale(1) invert(1) brightness(.45) contrast(1.5); opacity: .5; }
.phone-pin, .user-pin { position: absolute; z-index: 3; width: 12px; height: 12px; border: 2px solid #fff; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(239,35,60,.16); }
.phone-pin.p1 { left: 51%; top: 20%; }.phone-pin.p2 { left: 63%; top: 43%; }.phone-pin.p3 { left: 49%; top: 64%; }.phone-pin.p4 { left: 37%; top: 43%; }
.user-pin { left: 52%; top: 50%; background: #147df5; box-shadow: 0 0 0 4px rgba(20,125,245,.2); }
.phone-label { margin: 0; padding: 9px 14px 4px; font-size: 9px; font-weight: 800; }
.phone-kit { display: grid; min-height: 47px; margin: 5px 12px; padding: 8px 8px 8px 28px; background: #0c0f13; grid-template-columns: 1fr; position: relative; }
.phone-kit > span { position: absolute; left: 11px; top: 15px; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.phone-kit b { font-size: 8px; }.phone-kit small { color: var(--muted-2); font-size: 7px; }
.phone-screen > button { width: calc(100% - 24px); height: 45px; margin: 6px 12px 9px; border: 0; color: #fff; background: var(--red); font-size: 15px; }
.phone-actions { display: grid; padding: 3px 11px; color: #aeb7c2; font-size: 7px; grid-template-columns: 1fr 1fr; gap: 9px 20px; text-align: center; }
.app-copy h2 { max-width: 680px; }
.app-copy > p { max-width: 650px; }
.feature-list { padding: 0; margin: 38px 0; list-style: none; }
.feature-list li { display: grid; padding: 18px 0; border-bottom: 1px solid var(--line-soft); grid-template-columns: 46px 1fr; gap: 13px; }
.feature-list li > span { color: var(--red); font-family: var(--display); font-size: 11px; font-weight: 800; }
.feature-list strong { display: block; margin-bottom: 4px; font-family: var(--display); font-size: 15px; }
.feature-list p { margin: 0; color: var(--muted); font-size: 12px; }
.store-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.store-button { position: relative; display: grid; min-width: 205px; height: 64px; padding: 7px 13px; border: 1px solid #444e5b; border-radius: 7px; background: #020304; grid-template-columns: 38px 1fr; gap: 9px; align-items: center; transition: border-color .2s ease, transform .2s ease; }
.store-button:hover { border-color: #fff; transform: translateY(-3px); }
.store-button svg { width: 30px; fill: #fff; stroke: none; }
.store-button svg path { fill: #fff; }
.store-button > span small, .store-button > span strong { display: block; line-height: 1; }
.store-button > span small { margin-bottom: 4px; font-size: 8px; letter-spacing: .05em; }
.store-button > span strong { font-family: var(--display); font-size: 18px; }
.store-button > b { position: absolute; right: 7px; top: 6px; padding: 2px 4px; border-radius: 2px; color: #fff; background: var(--red); font-size: 6px; letter-spacing: .08em; }
.store-note { margin: 11px 0 0 !important; color: var(--muted-2) !important; font-size: 9px !important; }

.safety { padding-bottom: 80px; background: #07090b; }
.safety-box { display: grid; min-height: 310px; padding: 48px 50px; background: var(--red); grid-template-columns: 150px 1fr 130px; gap: 38px; align-items: center; }
.safety-mark { color: rgba(5,6,7,.9); font-family: var(--display); font-size: 84px; font-weight: 800; letter-spacing: -.08em; }
.safety-box .eyebrow { margin-bottom: 16px; color: rgba(5,6,7,.7); }
.safety-box .eyebrow > span { background: #050607; }
.safety-box h2 { max-width: 780px; margin-bottom: 15px; color: #050607; font-size: clamp(32px, 4vw, 53px); }
.safety-box p:last-child { max-width: 790px; margin: 0; color: rgba(5,6,7,.77); font-size: 13px; }
.sources { border: 1px solid var(--line); border-top: 0; background: var(--panel); }
.sources summary { display: flex; min-height: 74px; padding: 0 25px; align-items: center; justify-content: space-between; color: #d2d8df; cursor: pointer; font-size: 12px; font-weight: 700; list-style: none; }
.sources summary::-webkit-details-marker { display: none; }
.sources summary span { color: var(--red); font-size: 24px; font-weight: 400; transition: transform .2s ease; }
.sources[open] summary span { transform: rotate(45deg); }
.sources-content { padding: 10px 40px 32px; color: var(--muted); font-size: 11px; }
.sources-content ol { padding-left: 20px; columns: 2; column-gap: 60px; }
.sources-content li { margin-bottom: 8px; break-inside: avoid; }
.sources-content a { color: #fff; text-decoration: underline; text-decoration-color: rgba(239,35,60,.55); text-underline-offset: 3px; }
.source-footnote { margin: 20px 0 0; color: #6e7986; }

.closing { padding-block: 122px; overflow: hidden; text-align: center; }
.closing::before { position: absolute; left: 50%; top: 50%; width: 820px; height: 820px; border: 1px solid rgba(239,35,60,.12); border-radius: 50%; content: ""; transform: translate(-50%,-50%); box-shadow: 0 0 160px rgba(239,35,60,.055) inset; }
.closing-inner { position: relative; z-index: 1; display: flex; align-items: center; flex-direction: column; }
.closing .eyebrow { justify-content: center; }
.closing h2 { max-width: 980px; font-size: clamp(43px, 6vw, 78px); }
.closing-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; justify-content: center; }

.site-footer { border-top: 1px solid var(--line-soft); background: #040506; }
.footer-top { display: grid; padding-block: 72px 60px; grid-template-columns: 1.45fr .7fr .7fr 1fr; gap: 60px; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { max-width: 340px; color: var(--muted); font-size: 12px; }
.footer-links, .social-wrap { display: flex; align-items: flex-start; flex-direction: column; }
.footer-links .mini-label, .social-wrap .mini-label { margin-bottom: 22px; color: #687481; }
.footer-links a { padding: 5px 0; color: #b5bec8; font-size: 11px; }
.footer-links a:hover { color: #fff; }
.social-links { display: flex; gap: 7px; }
.social-links a { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid var(--line); background: var(--panel); transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.social-links a:hover { border-color: var(--red); background: rgba(239,35,60,.13); transform: translateY(-3px); }
.social-links svg { width: 19px; height: 19px; fill: none; stroke: #fff; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.social-links a:first-child svg path { fill: #fff; stroke: none; }
.social-wrap > small { margin-top: 10px; color: #505a66; font-size: 8px; text-transform: uppercase; letter-spacing: .1em; }
.footer-bottom { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line-soft); color: #59636f; font-size: 8px; line-height: 1.5; }
.map-credit { text-align: right; }
.map-credit a { color: #747f8c; text-decoration: underline; }

.toast { position: fixed; z-index: 500; right: 24px; bottom: 24px; display: flex; width: min(390px, calc(100vw - 48px)); min-height: 70px; padding: 17px 17px 17px 20px; border: 1px solid rgba(239,35,60,.5); background: rgba(13,17,22,.97); box-shadow: 0 24px 70px rgba(0,0,0,.55); align-items: center; justify-content: space-between; gap: 20px; opacity: 0; pointer-events: none; transform: translateY(16px); transition: opacity .25s ease, transform .25s ease; }
.toast.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.toast span { color: #dce1e7; font-size: 12px; }
.toast button { padding: 0; border: 0; color: var(--muted); background: none; cursor: pointer; font-size: 22px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }.reveal-delay-2 { transition-delay: .22s; }.reveal-delay-3 { transition-delay: .32s; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes heartbeat-draw { to { stroke-dashoffset: 0; } }
@keyframes tally-draw { to { stroke-dashoffset: 0; } }

@media (max-width: 1100px) {
  .site-nav { gap: 19px; }
  .hero-grid { grid-template-columns: 1fr .8fr; gap: 28px; }
  .hero-visual { transform: scale(.88); transform-origin: center right; }
  .network-grid { gap: 44px; }
  .app-grid { gap: 60px; }
  .footer-top { grid-template-columns: 1.3fr .6fr .6fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 36px, 760px); }
  .section { padding: 92px 0; }
  .menu-button { position: relative; z-index: 2; display: grid; width: 45px; height: 45px; padding: 12px; border: 1px solid var(--line); background: var(--panel); align-content: center; gap: 6px; }
  .menu-button > span:not(.sr-only) { display: block; width: 100%; height: 1px; background: #fff; transition: transform .2s ease; }
  .menu-button[aria-expanded="true"] > span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav { position: absolute; left: 0; top: 83px; display: none; width: 100%; padding: 18px; border-bottom: 1px solid var(--line); background: rgba(5,6,7,.97); flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 15px 7px; border-bottom: 1px solid var(--line-soft); }
  .site-nav .nav-cta { margin-top: 12px; border: 1px solid rgba(239,35,60,.55); text-align: center; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 90px; }
  .hero-copy { padding-top: 20px; }
  .hero-visual { width: 660px; max-width: 100%; min-height: 590px; margin: -10px auto 0; transform: none; }
  .hero-foot { height: 70px; }
  .hero-foot > span:not(.hero-scroll) { display: none; }
  .hero-scroll { margin: auto; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat-card { min-height: 230px; }
  .stat-index { margin-bottom: 30px; }
  .gap-statement { grid-template-columns: 90px 1fr; }
  .gap-unit { display: none; }
  .split-heading { grid-template-columns: 1fr; gap: 25px; }
  .response-flow { grid-template-columns: 1fr 1fr; }
  .response-flow::before { display: none; }
  .network-grid, .app-grid { grid-template-columns: 1fr; }
  .network-copy { max-width: 650px; }
  .map-card { width: min(750px, 100%); }
  .count-grid { grid-template-columns: 1fr; }
  .tally-wrap { padding: 70px 0; }
  .count-copy { padding: 70px 0; border-top: 1px solid rgba(5,6,7,.28); border-left: 0; }
  .mission-grid { grid-template-columns: 1fr 1fr; }
  .app-grid { gap: 40px; }
  .app-copy { order: -1; }
  .phone-wrap { min-height: 710px; }
  .safety-box { grid-template-columns: 110px 1fr; }
  .safety-box .button { grid-column: 2; justify-self: start; }
  .footer-top { grid-template-columns: 1.3fr .7fr .7fr; }
  .social-wrap { grid-column: 1 / -1; }
  .footer-bottom { padding-block: 25px; flex-direction: column; align-items: flex-start; }
  .map-credit { text-align: left; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 30px); }
  .nav-wrap { height: 72px; }
  .brand { font-size: 19px; }
  .brand img { width: 41px; height: 41px; }
  .site-nav { top: 71px; }
  .hero { padding-top: 72px; }
  .hero::after { top: 72px; height: calc(100% - 72px); }
  .hero-grid { padding-top: 65px; }
  .hero-grid > *, .hero-copy, .hero-visual { width: 100%; min-width: 0; max-width: 100%; }
  .hero-copy h1 { font-size: clamp(45px, 15vw, 65px); }
  .hero-intro { font-size: 16px; }
  .hero-actions .button { width: 100%; }
  .emergency-note { align-items: flex-start; }
  .hero-visual { width: 100%; min-height: 450px; transform: scale(.83); transform-origin: center top; margin-bottom: -65px; }
  .orbit-one { width: 310px; height: 310px; }
  .orbit-two { width: 440px; height: 440px; }
  .hero-mark { width: 165px; height: 165px; }
  .time-card { right: 0; bottom: 25px; }
  .section-heading h2, .network-copy h2, .count-copy h2, .app-copy h2, .closing h2 { font-size: clamp(36px, 11vw, 52px); }
  .section-heading { margin-bottom: 42px; }
  .gap-statement { grid-template-columns: 1fr; padding: 30px 25px; }
  .gap-number { font-size: 82px; }
  .response-flow { grid-template-columns: 1fr; }
  .flow-step { min-height: 260px; }
  .flow-icon { margin: 30px 0; }
  .map-topline { height: 45px; }
  .map-stage { aspect-ratio: .94; }
  .borough-map { inset: 9% 1% 9%; width: 98%; height: 82%; }
  .marker-woodgreen { left: 52%; top: 24%; }.marker-homerton { left: 62%; top: 44%; }.marker-brixton { left: 48%; top: 61%; }.marker-ladbroke { left: 35%; top: 45%; }
  .map-marker b { display: none; }
  .map-caption span:last-child { display: none; }
  .tally-wrap { padding-right: 10px; }
  .count-copy { padding-inline: 0; }
  .count-actions .button { width: 100%; }
  .mission-grid { grid-template-columns: 1fr; }
  .mission-card { min-height: 245px; }
  .mission-card > span { margin-bottom: 52px; }
  .phone-wrap { min-height: 625px; transform: scale(.88); transform-origin: top center; margin-bottom: -80px; }
  .phone { width: 335px; }
  .store-buttons { flex-direction: column; }
  .store-button { width: 100%; }
  .safety-box { padding: 35px 26px; grid-template-columns: 1fr; gap: 18px; }
  .safety-mark { font-size: 62px; }
  .safety-box .button { grid-column: 1; width: 100%; }
  .sources-content { padding: 10px 25px 28px; }
  .sources-content ol { columns: 1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .social-wrap { grid-column: 1 / -1; }
}

@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; }
}
