:root {
  color-scheme: dark;
  --ink: #edf7f4;
  --muted: #9db3b0;
  --faint: #667a78;
  --paper: #050a0d;
  --panel: #0a1216;
  --panel-strong: #101d22;
  --panel-soft: rgba(14, 27, 31, 0.78);
  --line: rgba(214, 239, 233, 0.14);
  --line-strong: rgba(214, 239, 233, 0.28);
  --command: #071014;
  --red: #e3334e;
  --red-dark: #b91832;
  --teal: #19c7bd;
  --green: #55d68f;
  --amber: #f1b24a;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --inner: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-family:
    Inter,
    "Helvetica Neue",
    Arial,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(227, 51, 78, 0.1),
      transparent 28rem
    ),
    radial-gradient(
      circle at 82% 8%,
      rgba(25, 199, 189, 0.09),
      transparent 30rem
    ),
    linear-gradient(180deg, #050a0d 0%, #081116 38%, #050a0d 100%);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black 0%, black 52%, transparent 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("./assets/vigilia-hero.png");
  background-size: cover;
  background-position: center top;
  opacity: 0.08;
  mix-blend-mode: screen;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 40;
  border-radius: 8px;
  background: var(--white);
  color: #071014;
  padding: 0.7rem 1rem;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 9ch;
  font-size: 6rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.35rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0.78rem 1.05rem;
  font-weight: 850;
  line-height: 1.2;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(227, 51, 78, 0.25);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 91svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(
      90deg,
      rgba(5, 10, 13, 0.96) 0%,
      rgba(5, 10, 13, 0.82) 48%,
      rgba(5, 10, 13, 0.38) 100%
    ),
    linear-gradient(180deg, rgba(5, 10, 13, 0.12) 0%, #050a0d 100%),
    url("./assets/vigilia-hero.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 18rem;
  background: linear-gradient(180deg, transparent, var(--paper));
}

.hero-canvas,
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero-canvas {
  opacity: 0.9;
}

.hero-media {
  background:
    linear-gradient(110deg, rgba(5, 10, 13, 0.88), rgba(5, 10, 13, 0.3)),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.035) 0,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px,
      transparent 6px
    );
  mix-blend-mode: screen;
  opacity: 0.38;
}

.site-nav {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand,
.nav-links,
.nav-action {
  background: rgba(5, 10, 13, 0.62);
  border: 1px solid var(--line);
  box-shadow: var(--inner);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border-radius: 8px;
  padding: 0.45rem 0.7rem;
  font-weight: 800;
}

.brand img {
  display: block;
  width: 11rem;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  border-radius: 8px;
  padding: 0.35rem;
}

.nav-links a,
.nav-action {
  border-radius: 6px;
  padding: 0.65rem 0.85rem;
  font-weight: 800;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
}

.nav-links a:hover,
.nav-action:hover {
  background: rgba(255, 255, 255, 0.11);
  color: var(--white);
}

.nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 2rem));
  margin: auto auto 3rem;
  padding: 2.4rem 0 0;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(22rem, 1.04fr);
  gap: 3rem;
  align-items: end;
}

.hero-copy-block {
  padding-bottom: 1rem;
}

.hero-copy {
  max-width: 43rem;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-metrics {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 62rem;
  margin: 2.3rem 0 0;
  padding: 0;
}

.hero-metrics li {
  min-height: 7rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(8, 18, 22, 0.72);
  box-shadow: var(--inner);
  backdrop-filter: blur(14px);
}

.hero-metrics strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
}

.hero-metrics span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.hero-command {
  min-height: 34rem;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(16, 29, 34, 0.82), rgba(7, 16, 20, 0.9)),
    rgba(7, 16, 20, 0.78);
  box-shadow: var(--shadow), var(--inner);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.command-topline {
  min-height: 3.4rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
}

.command-topline strong {
  margin-left: auto;
  color: var(--green);
}

.live-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(85, 214, 143, 0.48);
  animation: livePulse 1.8s ease-out infinite;
}

.live-console {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 18, 22, 0.94), rgba(4, 10, 13, 0.98)),
    #071014;
}

.live-console::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.32;
}

.console-statusbar {
  position: relative;
  z-index: 1;
  min-height: 3rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.console-statusbar span:first-child {
  border: 1px solid rgba(25, 199, 189, 0.34);
  border-radius: 6px;
  background: rgba(25, 199, 189, 0.1);
  color: var(--teal);
  padding: 0.26rem 0.42rem;
}

.console-statusbar strong {
  margin-left: auto;
  color: var(--green);
  font-style: normal;
}

.vcore-console {
  --vcore-accent: var(--red);
}

.vcore-console[data-active="fire"] {
  --vcore-accent: var(--teal);
}

.vcore-console[data-active="police"] {
  --vcore-accent: var(--green);
}

.vcore-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(15rem, 0.94fr) minmax(17rem, 1.06fr);
  grid-template-areas:
    "voice voice"
    "dossier transcript"
    "routing routing";
  gap: 0.8rem;
  padding: 1rem;
}

.voice-intake,
.transcript-live,
.caller-dossier,
.routing-live {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.065),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(5, 10, 13, 0.42);
  box-shadow:
    var(--inner),
    0 18px 46px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.voice-intake {
  grid-area: voice;
  position: relative;
  min-height: 12.2rem;
  display: grid;
  grid-template-columns: 8.4rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  overflow: hidden;
  padding: 1rem;
}

.voice-intake::before {
  content: "";
  position: absolute;
  inset: auto -18% -42% 18%;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--vcore-accent), transparent 35%),
    transparent 64%
  );
  opacity: 0.35;
  filter: blur(28px);
}

.call-orbit {
  position: relative;
  width: 7.6rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.call-orbit strong {
  position: relative;
  z-index: 2;
  width: 4.7rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--vcore-accent), white 22%);
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 32% 24%,
      rgba(255, 255, 255, 0.24),
      transparent 28%
    ),
    color-mix(in srgb, var(--vcore-accent), #050a0d 46%);
  color: var(--white);
  font-size: 1.7rem;
  font-weight: 950;
  box-shadow:
    0 0 0 8px color-mix(in srgb, var(--vcore-accent), transparent 82%),
    0 0 42px color-mix(in srgb, var(--vcore-accent), transparent 52%);
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border: 1px solid color-mix(in srgb, var(--vcore-accent), transparent 32%);
  border-radius: 50%;
  animation: orbitPulse 3.6s ease-out infinite;
}

.ring-b {
  inset: 0.7rem;
  animation-delay: 0.55s;
}

.ring-c {
  inset: 1.4rem;
  animation-delay: 1.1s;
}

.voice-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.voice-copy h3,
.routing-live h3 {
  color: var(--white);
  font-size: 1.18rem;
  line-height: 1.14;
}

.voice-copy p:not(.console-label),
.routing-live p {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
}

.voice-wave {
  height: 3.8rem;
  display: flex;
  align-items: end;
  gap: 0.32rem;
  margin-top: 1.05rem;
}

.voice-wave span {
  width: 0.44rem;
  min-height: 0.8rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--vcore-accent), var(--teal));
  box-shadow: 0 0 16px color-mix(in srgb, var(--vcore-accent), transparent 62%);
  animation: voiceBars 1.25s ease-in-out infinite;
}

.voice-wave span:nth-child(2) {
  animation-delay: 0.12s;
}

.voice-wave span:nth-child(3) {
  animation-delay: 0.24s;
}

.voice-wave span:nth-child(4) {
  animation-delay: 0.36s;
}

.voice-wave span:nth-child(5) {
  animation-delay: 0.48s;
}

.voice-wave span:nth-child(6) {
  animation-delay: 0.6s;
}

.voice-wave span:nth-child(7) {
  animation-delay: 0.72s;
}

.voice-wave span:nth-child(8) {
  animation-delay: 0.84s;
}

.transcript-live {
  grid-area: transcript;
  min-height: 11.5rem;
  padding: 1rem;
}

.transcript-top,
.dispatch-brief-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.transcript-top strong {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
}

.transcript-live blockquote {
  margin: 0.85rem 0 0;
  color: var(--white);
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.24;
}

.protocol-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.protocol-strip span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(25, 199, 189, 0.09);
  color: rgba(255, 255, 255, 0.82);
  padding: 0.36rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 850;
}

.caller-dossier {
  grid-area: dossier;
  padding: 1rem;
}

.caller-dossier dl {
  display: grid;
  gap: 0.65rem;
  margin: 0;
}

.caller-dossier div,
.map-facts div {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.55rem;
}

.caller-dossier dt,
.map-facts dt {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
}

.caller-dossier dd,
.map-facts dd {
  margin: 0.16rem 0 0;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 850;
}

.routing-live {
  grid-area: routing;
  padding: 1rem;
}

.route-chain {
  display: grid;
  grid-template-columns: auto minmax(1.5rem, 1fr) auto minmax(1.5rem, 1fr) auto;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.route-chain span {
  border: 1px solid color-mix(in srgb, var(--vcore-accent), transparent 55%);
  border-radius: 7px;
  background: color-mix(in srgb, var(--vcore-accent), transparent 88%);
  color: var(--white);
  padding: 0.34rem 0.45rem;
  font-size: 0.68rem;
  font-weight: 950;
}

.route-chain i {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--vcore-accent), transparent);
  animation: routeSpark 2.1s ease-in-out infinite;
}

.console-label {
  margin: 0 0 0.65rem;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.console-rail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.console-rail article {
  min-height: 6.4rem;
  display: grid;
  align-content: center;
  gap: 0.25rem;
  padding: 1rem;
  border-right: 1px solid var(--line);
}

.console-rail article:last-child {
  border-right: 0;
}

.console-rail span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.console-rail strong {
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1.25;
}

.command-queue {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.command-queue button {
  min-height: 7.6rem;
  display: grid;
  align-content: center;
  gap: 0.35rem;
  padding: 1rem;
  border-right: 1px solid var(--line);
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
  background: rgba(255, 255, 255, 0.025);
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.command-queue button:hover,
.command-queue button:focus-visible,
.command-queue button.is-active {
  background: rgba(25, 199, 189, 0.08);
  outline: none;
}

.command-queue button:last-child {
  border-right: 0;
}

.command-queue span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.command-queue strong {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.25;
}

.signal-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(9, 18, 22, 0.88);
}

.signal-grid {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.signal-grid span {
  min-height: 5rem;
  display: grid;
  place-items: center;
  border-left: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 850;
}

.signal-grid span:last-child {
  border-right: 1px solid var(--line);
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 6rem 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(12rem, 0.5fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}

.section-heading h2,
.operation-copy h2,
.closing h2 {
  max-width: 15ch;
}

.intro-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card,
.trust-card,
.lane,
.plan-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(
    180deg,
    rgba(16, 29, 34, 0.88),
    rgba(8, 18, 22, 0.92)
  );
  box-shadow: var(--inner);
}

.feature-card {
  min-height: 20rem;
  padding: 1.25rem;
}

.feature-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  height: 2rem;
  border-radius: 6px;
  background: rgba(85, 214, 143, 0.12);
  color: var(--green);
  font-weight: 900;
}

.feature-card h3,
.trust-card h3,
.lane h3 {
  margin-top: 1.4rem;
}

.feature-card p,
.trust-card p,
.lane p,
.visual-story p,
.operation-copy p,
.closing p,
.activity-copy p {
  color: var(--muted);
}

.activity-wall {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 6rem;
}

.activity-copy {
  display: grid;
  grid-template-columns: minmax(16rem, 0.68fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.25rem;
}

.activity-copy h2 {
  max-width: 17ch;
}

.activity-copy p:last-child {
  max-width: 42rem;
  margin: 0;
}

.video-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-areas:
    "voice dispatch"
    "voice field";
  gap: 1rem;
}

.video-tile {
  position: relative;
  min-height: 19rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--command);
  box-shadow: var(--shadow);
}

.video-voice {
  grid-area: voice;
}

.video-dispatch {
  grid-area: dispatch;
}

.video-field {
  grid-area: field;
}

.video-tile img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05) brightness(0.78);
  transform: scale(1.02);
}

.video-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent, rgba(5, 10, 13, 0.82)),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 7px
    );
  opacity: 0.88;
}

.video-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: videoFlicker 4s steps(4, end) infinite;
}

.video-overlay {
  position: absolute;
  inset: auto 1rem 1rem;
  z-index: 3;
  display: grid;
  gap: 0.7rem;
}

.video-badge {
  justify-self: start;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(5, 10, 13, 0.72);
  color: var(--white);
  padding: 0.34rem 0.55rem;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 750;
}

.waveform {
  height: 4rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  max-width: 21rem;
}

.waveform span {
  width: 0.5rem;
  height: 1.2rem;
  border-radius: 5px;
  background: linear-gradient(180deg, var(--teal), var(--green));
  animation: wave 1.2s ease-in-out infinite;
}

.waveform span:nth-child(2) {
  animation-delay: 0.08s;
}

.waveform span:nth-child(3) {
  animation-delay: 0.16s;
}

.waveform span:nth-child(4) {
  animation-delay: 0.24s;
}

.waveform span:nth-child(5) {
  animation-delay: 0.32s;
}

.waveform span:nth-child(6) {
  animation-delay: 0.4s;
}

.waveform span:nth-child(7) {
  animation-delay: 0.48s;
}

.waveform span:nth-child(8) {
  animation-delay: 0.56s;
}

.waveform span:nth-child(9) {
  animation-delay: 0.64s;
}

.mini-timeline {
  position: relative;
  height: 3.4rem;
  max-width: 22rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.mini-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: rgba(255, 255, 255, 0.24);
}

.mini-timeline span {
  position: relative;
  z-index: 1;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(25, 199, 189, 0.42);
  animation: timelineStep 2.8s ease-out infinite;
}

.mini-timeline span:nth-child(2) {
  animation-delay: 0.45s;
}

.mini-timeline span:nth-child(3) {
  background: var(--amber);
  animation-delay: 0.9s;
}

.mini-timeline span:nth-child(4) {
  background: var(--green);
  animation-delay: 1.35s;
}

.gps-trace {
  position: relative;
  width: min(24rem, 100%);
  height: 4.5rem;
}

.gps-trace::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2.2rem;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--amber), var(--green));
}

.gps-trace span {
  position: absolute;
  top: 1.72rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.08);
  animation: gpsPing 2.4s ease-out infinite;
}

.gps-trace span:nth-child(1) {
  left: 8%;
}

.gps-trace span:nth-child(2) {
  left: 48%;
  animation-delay: 0.4s;
}

.gps-trace span:nth-child(3) {
  left: 86%;
  animation-delay: 0.8s;
}

.visual-suite {
  padding-top: 0;
}

.visual-story {
  display: grid;
  grid-template-columns: minmax(20rem, 1fr) minmax(18rem, 0.75fr);
  gap: 2rem;
  align-items: center;
}

.visual-story img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--command);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.visual-story h2 {
  max-width: 15ch;
  font-size: 2.65rem;
}

.visual-story p {
  max-width: 35rem;
}

.dual-lane {
  padding: 6rem max(1rem, calc((100% - 1180px) / 2));
  background:
    linear-gradient(90deg, rgba(227, 51, 78, 0.09), transparent 34%),
    linear-gradient(270deg, rgba(25, 199, 189, 0.1), transparent 34%), #071014;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.lane-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.lane {
  min-height: 18rem;
  padding: 1.5rem;
}

.lane-label {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.operation {
  display: grid;
  grid-template-columns: minmax(17rem, 0.58fr) minmax(32rem, 1.42fr);
  gap: 2.5rem;
  align-items: center;
  padding: 6rem max(1rem, calc((100% - 1180px) / 2));
  background: #050a0d;
  color: var(--white);
}

.operation-copy p {
  max-width: 36rem;
}

.dashboard {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: linear-gradient(180deg, #101d22, #071014);
  box-shadow: var(--shadow), var(--inner);
  overflow: hidden;
}

.dash-top,
.timeline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 1rem;
}

.dash-top {
  border-bottom: 1px solid var(--line);
}

.dash-top span {
  color: var(--teal);
  font-weight: 850;
}

.dash-body {
  display: grid;
  grid-template-columns: minmax(10.5rem, 0.52fr) minmax(26rem, 1.48fr);
  min-height: 34rem;
}

.queue {
  display: grid;
  align-content: start;
  gap: 0.7rem;
  padding: 1rem;
  border-right: 1px solid var(--line);
}

.queue-item {
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.8rem;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 750;
  text-align: left;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.queue-item.hot {
  border-color: rgba(227, 51, 78, 0.38);
  background: rgba(227, 51, 78, 0.18);
  color: #ffe0e5;
}

.queue-item.quiet {
  color: rgba(255, 255, 255, 0.62);
}

.queue-item:hover,
.queue-item:focus-visible,
.queue-item.is-active {
  border-color: rgba(25, 199, 189, 0.46);
  background: rgba(25, 199, 189, 0.1);
  color: var(--white);
  outline: none;
}

.dispatch-map {
  position: relative;
  min-height: 34rem;
  margin: 0;
  overflow: hidden;
  background: #071014;
  isolation: isolate;
}

.dispatch-map img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.08) brightness(1.04);
}

.dispatch-map::before,
.dispatch-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dispatch-map::before {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 10, 13, 0.48), transparent 42%),
    linear-gradient(0deg, rgba(5, 10, 13, 0.58), transparent 58%),
    radial-gradient(
      circle at 53% 49%,
      rgba(25, 199, 189, 0.08),
      transparent 18rem
    );
}

.dispatch-map::after {
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(25, 199, 189, 0.08);
}

.map-routes {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.dispatch-route {
  fill: none;
  stroke: rgba(255, 255, 255, 0.36);
  stroke-linecap: round;
  stroke-width: 8;
  stroke-dasharray: 14 18;
  opacity: 0.26;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
  transition:
    opacity 180ms ease,
    stroke-width 180ms ease;
}

.route-medical {
  stroke: var(--red);
}

.route-fire,
.route-iot {
  stroke: var(--teal);
}

.route-police {
  stroke: var(--green);
}

.map-pin,
.response-unit {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  font-weight: 950;
  box-shadow:
    0 0 0 8px rgba(5, 10, 13, 0.42),
    0 16px 40px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.map-pin {
  width: 2.35rem;
  height: 2.35rem;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: var(--red);
  cursor: pointer;
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: -0.85rem;
  border: 1px solid currentColor;
  border-radius: inherit;
  opacity: 0.55;
  animation: mapPing 2.6s ease-out infinite;
}

.pin-medical {
  left: 52%;
  top: 56%;
}

.pin-fire {
  left: 19%;
  top: 53%;
  background: var(--teal);
}

.pin-police {
  left: 84%;
  top: 76%;
  background: var(--green);
}

.pin-iot {
  left: 36%;
  top: 14%;
  width: 2.85rem;
  background: var(--amber);
  color: #1a1110;
  font-size: 0.7rem;
}

.response-unit {
  width: 3rem;
  height: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.9);
  color: #071014;
  font-size: 0.76rem;
}

.response-unit::before {
  content: "";
  position: absolute;
  inset: -0.35rem 0.48rem auto;
  height: 0.28rem;
  border-radius: 5px;
  background: var(--red);
}

.unit-medical {
  left: 41%;
  top: 73%;
}

.unit-fire {
  left: 34%;
  top: 74%;
}

.unit-police {
  left: 72.5%;
  top: 68%;
}

.unit-iot {
  left: 43%;
  top: 22%;
}

.dispatch-map .map-pin,
.dispatch-map .response-unit {
  opacity: 0.62;
}

.dispatch-map[data-active="medical"] .route-medical,
.dispatch-map[data-active="fire"] .route-fire,
.dispatch-map[data-active="police"] .route-police,
.dispatch-map[data-active="iot"] .route-iot {
  stroke-width: 10;
  opacity: 0.96;
  animation: routeFlow 3.4s linear infinite;
}

.dispatch-map[data-active="medical"] .pin-medical,
.dispatch-map[data-active="fire"] .pin-fire,
.dispatch-map[data-active="police"] .pin-police,
.dispatch-map[data-active="iot"] .pin-iot,
.dispatch-map[data-active="medical"] .unit-medical,
.dispatch-map[data-active="fire"] .unit-fire,
.dispatch-map[data-active="police"] .unit-police,
.dispatch-map[data-active="iot"] .unit-iot {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow:
    0 0 0 10px rgba(25, 199, 189, 0.16),
    0 18px 42px rgba(0, 0, 0, 0.46);
}

.dispatch-brief,
.dispatch-status {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(5, 10, 13, 0.86);
  box-shadow:
    var(--inner),
    0 18px 45px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(16px);
}

.dispatch-brief {
  left: 1rem;
  bottom: 1rem;
  width: min(23rem, calc(100% - 2rem));
  padding: 1rem;
}

.dispatch-brief-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}

.dispatch-brief-top span {
  border: 1px solid rgba(25, 199, 189, 0.34);
  border-radius: 6px;
  background: rgba(25, 199, 189, 0.12);
  color: var(--teal);
  padding: 0.24rem 0.42rem;
  font-size: 0.75rem;
  font-weight: 900;
}

.dispatch-brief-top em {
  color: var(--green);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 900;
}

.dispatch-brief h3 {
  color: var(--white);
  font-size: 1.12rem;
  line-height: 1.16;
}

.dispatch-brief > strong {
  display: block;
  margin-top: 0.42rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
}

.dispatch-brief p {
  margin: 0.72rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
}

.map-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 0.9rem 0 0;
}

.map-facts div {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.55rem;
}

.map-facts dt {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
}

.map-facts dd {
  margin: 0.16rem 0 0;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 850;
}

.dispatch-status {
  right: 1rem;
  top: 1rem;
  width: min(18rem, calc(100% - 2rem));
  padding: 0.9rem;
}

.dispatch-status > span {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 2rem;
  margin-bottom: 0.65rem;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.9);
  color: #071014;
  font-size: 0.82rem;
  font-weight: 950;
}

.dispatch-status > strong {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
  line-height: 1.25;
}

.dispatch-status ol {
  display: grid;
  gap: 0.48rem;
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
}

.dispatch-status li {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 0.55rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
}

.dispatch-status b {
  color: var(--teal);
  font-size: 0.72rem;
}

.dispatch-status small {
  min-width: 0;
  color: inherit;
  font-size: inherit;
}

.timeline {
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  font-weight: 750;
}

.plans {
  background: transparent;
}

.plans-lead {
  max-width: 54rem;
  margin: 0 0 2.5rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.plans-lead strong {
  color: var(--white);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.plans-status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 2rem 0;
  color: var(--muted);
  text-align: center;
}

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.6rem 1.4rem;
}

.plan-card-featured {
  border-color: rgba(227, 51, 78, 0.72);
  box-shadow:
    0 18px 46px rgba(227, 51, 78, 0.18),
    var(--inner);
}

.plan-name {
  margin: 0;
  font-size: 1.45rem;
}

.plan-price {
  margin: 0;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.plan-price-value {
  color: var(--white);
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.1;
}

.plan-period {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.plan-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.plan-features li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--ink);
  font-weight: 600;
}

.plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.85rem;
  height: 0.45rem;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.plan-feature-empty {
  color: var(--muted);
  font-weight: 500;
}

.plan-feature-empty::before {
  border-color: var(--muted);
}

.plans-fallback-note {
  grid-column: 1 / -1;
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.plans-cta {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(
    90deg,
    rgba(227, 51, 78, 0.12),
    rgba(25, 199, 189, 0.08)
  );
  box-shadow: var(--inner);
}

.plans-cta p {
  margin: 0;
  max-width: 38rem;
  color: var(--ink);
  font-weight: 600;
}

.trust-card {
  min-height: 13rem;
  padding: 1.25rem;
}

.trust-card h3 {
  margin-top: 0;
}

.closing {
  padding: 6rem 1rem;
  background:
    linear-gradient(180deg, rgba(227, 51, 78, 0.08), transparent), #071014;
  border-top: 1px solid var(--line);
}

.closing-inner {
  width: min(850px, 100%);
  margin: 0 auto;
  text-align: center;
}

.closing h2 {
  max-width: 16ch;
  margin: 0 auto;
}

.closing p {
  max-width: 44rem;
  margin: 1rem auto 2rem;
}

.site-footer {
  background: #030608;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3.5rem 0;
  display: grid;
  grid-template-columns: minmax(16rem, 0.8fr) minmax(0, 1.2fr);
  gap: 2.5rem;
}

.footer-brand img {
  display: block;
  width: 10.5rem;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  margin: 1rem 0 0;
  max-width: 26rem;
  font-size: 0.95rem;
}

.footer-legal p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-legal strong {
  color: var(--white);
}

.footer-meta {
  color: rgba(255, 255, 255, 0.58);
}

.footer-legal a {
  color: var(--teal);
  text-decoration: underline;
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(85, 214, 143, 0.48);
  }
  100% {
    box-shadow: 0 0 0 14px rgba(85, 214, 143, 0);
  }
}

@keyframes scan {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes routeTravel {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes routeFlow {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -64;
  }
}

@keyframes mapPing {
  0% {
    opacity: 0.65;
    transform: scale(0.62);
  }
  100% {
    opacity: 0;
    transform: scale(1.32);
  }
}

@keyframes orbitPulse {
  0% {
    opacity: 0.94;
    transform: scale(0.78);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

@keyframes voiceBars {
  0%,
  100% {
    height: 0.9rem;
  }
  45% {
    height: 3.5rem;
  }
}

@keyframes routeSpark {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleX(0.72);
    transform-origin: left;
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes videoFlicker {
  0%,
  100% {
    opacity: 0.48;
  }
  50% {
    opacity: 0.2;
  }
}

@keyframes wave {
  0%,
  100% {
    height: 1rem;
  }
  50% {
    height: 3.8rem;
  }
}

@keyframes timelineStep {
  0% {
    box-shadow: 0 0 0 0 rgba(25, 199, 189, 0.42);
  }
  70%,
  100% {
    box-shadow: 0 0 0 12px rgba(25, 199, 189, 0);
  }
}

@keyframes gpsPing {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
  }
  100% {
    box-shadow: 0 0 0 16px rgba(255, 255, 255, 0);
  }
}

@media (max-width: 1060px) {
  .hero-shell {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-command {
    max-width: 44rem;
  }

  .hero-metrics {
    max-width: 48rem;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 920px) {
  h1 {
    font-size: 4.5rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .site-nav {
    align-items: stretch;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .hero-metrics,
  .intro-grid,
  .trust-grid,
  .lane-grid,
  .section-heading,
  .activity-copy,
  .visual-story,
  .operation,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "voice"
      "dispatch"
      "field";
  }

  .plans-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .section,
  .activity-wall,
  .dual-lane,
  .operation,
  .closing {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .section-heading h2,
  .operation-copy h2,
  .closing h2,
  .activity-copy h2 {
    max-width: 19ch;
  }

  .dash-body {
    grid-template-columns: 1fr;
  }

  .vcore-stage {
    grid-template-columns: 1fr;
    grid-template-areas:
      "voice"
      "transcript"
      "dossier"
      "routing";
  }

  .dispatch-map {
    min-height: 34rem;
  }

  .queue {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .hero {
    min-height: 88svh;
  }

  .site-nav {
    width: min(100% - 1rem, 1180px);
  }

  .brand {
    max-width: calc(100% - 5rem);
  }

  .brand img {
    width: 8.4rem;
  }

  .nav-action {
    min-width: 4.3rem;
  }

  .hero-shell {
    width: min(100% - 1.2rem, 1180px);
    margin-bottom: 2rem;
    gap: 1.5rem;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-metrics {
    display: none;
  }

  .hero-command {
    min-height: 28rem;
  }

  .vcore-stage {
    padding: 0.75rem;
  }

  .voice-intake {
    grid-template-columns: 1fr;
    justify-items: start;
    min-height: 0;
  }

  .call-orbit {
    width: 6.6rem;
  }

  .transcript-live blockquote {
    font-size: 1.05rem;
  }

  .route-chain {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .route-chain i {
    width: 2px;
    height: 1.2rem;
    margin-left: 0.7rem;
    background: linear-gradient(180deg, var(--vcore-accent), transparent);
  }

  .console-statusbar,
  .console-rail {
    grid-template-columns: 1fr;
  }

  .console-statusbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .console-statusbar strong {
    margin-left: 0;
  }

  .command-queue {
    grid-template-columns: 1fr;
  }

  .command-queue button {
    min-height: 5.2rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .command-queue button:last-child {
    border-bottom: 0;
  }

  .signal-grid {
    width: min(100% - 1.2rem, 1180px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
  }

  .signal-grid span {
    min-height: 3.6rem;
    border-bottom: 1px solid var(--line);
    font-size: 0.78rem;
    text-align: center;
  }

  .signal-grid span:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .signal-grid span:nth-last-child(-n + 3) {
    border-bottom: 0;
  }

  .feature-card,
  .lane,
  .trust-card {
    min-height: 0;
  }

  .video-tile {
    min-height: 22rem;
  }

  .video-dispatch,
  .video-field {
    min-height: 18rem;
  }

  .dispatch-map {
    min-height: 44rem;
  }

  .dispatch-brief {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    width: auto;
  }

  .dispatch-status {
    top: 0.75rem;
    right: 0.75rem;
    width: min(17rem, calc(100% - 1.5rem));
  }

  .map-facts {
    grid-template-columns: 1fr;
  }

  .map-pin {
    width: 2rem;
    height: 2rem;
    font-size: 0.78rem;
  }

  .pin-iot {
    width: 2.45rem;
    font-size: 0.62rem;
  }

  .console-rail {
    grid-template-columns: 1fr;
  }

  .console-rail article {
    min-height: 4.8rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .console-rail article:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
