:root {
  --bg: #07111f;
  --bg-deep: #040a12;
  --panel: #0d1a29;
  --panel-light: #f5f8fb;
  --text: #eef5fb;
  --muted: #9fb0c0;
  --ink: #142234;
  --ink-soft: #607185;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(20, 34, 52, 0.14);
  --teal: #4f8cff;
  --mint: #eef4ff;
  --blue: #4fa3ff;
  --amber: #f5b94c;
  --danger: #ff6b6b;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

.section-wrap {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

section[id] {
  scroll-margin-top: 112px;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1160px, calc(100% - 32px));
  min-height: 72px;
  margin: 16px auto 0;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(7, 17, 31, 0.76);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(7, 17, 31, 0.95);
}

.brand {
  display: flex;
  align-items: center;
  width: 170px;
}

.brand img,
.footer-brand img {
  width: 100%;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 25px;
  color: #d9e6ef;
  font-size: 0.92rem;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 760;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.button-primary {
  background: var(--mint);
  color: #10254a;
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(7, 17, 31, 0.28);
  color: var(--text);
  backdrop-filter: blur(8px);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.button-primary:hover,
.header-cta:hover {
  box-shadow: 0 15px 34px rgba(79, 140, 255, 0.2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: transparent;
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.parking-hero {
  position: relative;
  display: flex;
  min-height: 94vh;
  align-items: flex-end;
  overflow: hidden;
  padding: 142px 0 56px;
  isolation: isolate;
}

.parking-hero::before,
.parking-hero::after {
  position: absolute;
  z-index: -1;
  content: "";
}

.parking-hero::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 10, 18, 0.98) 0%, rgba(4, 10, 18, 0.88) 43%, rgba(4, 10, 18, 0.2) 78%),
    linear-gradient(0deg, var(--bg) 0%, rgba(7, 17, 31, 0) 28%);
}

.parking-hero::after {
  right: 4vw;
  bottom: 14vh;
  width: 36vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79, 140, 255, 0.86), transparent);
  box-shadow: 0 0 22px rgba(79, 140, 255, 0.52);
}

.hero-media {
  position: absolute;
  z-index: -2;
  inset: -3%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.86;
  transform: translate3d(var(--hero-x, 0), calc(var(--hero-y, 0) + var(--hero-scroll, 0px)), 0) scale(1.08);
  transition: transform 220ms ease-out;
  will-change: transform;
}

.scan-grid,
.cta-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent 74%);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: end;
  gap: 56px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-copy {
  max-width: 780px;
}

.live-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #dbeaf2;
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.status-light {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(79, 140, 255, 0.14), 0 0 18px rgba(79, 140, 255, 0.82);
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  50% { opacity: 0.45; }
}

.hero-copy h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(4.5rem, 9.5vw, 8.6rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy > p {
  max-width: 650px;
  margin: 28px 0 0;
  color: #d7e5ee;
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-telemetry {
  align-self: end;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(5, 13, 22, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.telemetry-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
}

.signal-bars {
  display: flex;
  align-items: end;
  gap: 3px;
  height: 14px;
}

.signal-bars i {
  display: block;
  width: 3px;
  background: var(--teal);
}

.signal-bars i:nth-child(1) { height: 5px; }
.signal-bars i:nth-child(2) { height: 9px; }
.signal-bars i:nth-child(3) { height: 14px; }

.hero-telemetry dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
}

.hero-telemetry dl div {
  padding: 18px 14px;
  border-right: 1px solid var(--line);
}

.hero-telemetry dl div:last-child {
  border-right: 0;
}

.hero-telemetry dt {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 820;
}

.hero-telemetry dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
}

.telemetry-line {
  height: 42px;
  margin: 0 16px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.telemetry-line span {
  display: block;
  width: 130%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 26 L52 26 L70 12 L88 31 L116 26 L185 26 L202 8 L223 33 L246 26 L400 26' fill='none' stroke='%234f8cff' stroke-width='2'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  animation: dataMove 5s linear infinite;
}

@keyframes dataMove {
  to { transform: translateX(-20%); }
}

.hero-telemetry > p {
  margin: 0;
  padding: 13px 16px 15px;
  color: #7f93a6;
  font-size: 0.68rem;
}

.hero-scroll {
  position: absolute;
  right: max(20px, calc((100vw - 1160px) / 2));
  bottom: 22px;
  display: flex;
  gap: 14px;
  color: #aebdca;
  font-size: 0.76rem;
  font-weight: 720;
  text-transform: uppercase;
}

.signal-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #091524;
}

.signal-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  min-height: 132px;
}

.signal-inner > p {
  max-width: 460px;
  margin: 0;
  color: #dbe8f0;
  font-size: 1.05rem;
  font-weight: 680;
}

.signal-inner dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  margin: 0;
}

.signal-inner dl div {
  padding: 8px 22px;
  border-left: 1px solid var(--line);
}

.signal-inner dt {
  color: var(--teal);
  font-size: 1.2rem;
  font-weight: 850;
}

.signal-inner dd {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.77rem;
}

.system-section,
.operations-section {
  padding-top: 112px;
  padding-bottom: 112px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading.compact {
  margin-bottom: 42px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 820;
  text-transform: uppercase;
}

.section-heading h2,
.operations-intro h2,
.implementation-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.8vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-heading > p,
.operations-intro > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.operation-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.operation-map article {
  position: relative;
  min-height: 330px;
  padding: 25px 23px 28px;
  border-right: 1px solid var(--line);
}

.operation-map article:last-child {
  border-right: 0;
}

.operation-map article:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 48%;
  right: -9px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: #10254a;
  content: ">";
  font-size: 0.65rem;
  font-weight: 900;
}

.map-index,
.operation-feature > span {
  color: #72879a;
  font-size: 0.68rem;
  font-weight: 820;
}

.map-icon {
  display: grid;
  width: 78px;
  height: 78px;
  margin: 66px 0 34px;
  place-items: center;
  border: 1px solid rgba(79, 140, 255, 0.38);
  border-radius: 50%;
  background: rgba(79, 140, 255, 0.07);
  color: var(--teal);
  box-shadow: inset 0 0 25px rgba(79, 140, 255, 0.1), 0 0 40px rgba(79, 140, 255, 0.08);
  font-size: 0.76rem;
  font-weight: 850;
}

.operation-map h3,
.operation-feature h3,
.deployment-list h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.2;
}

.operation-map p,
.operation-feature p,
.deployment-list p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.configuration-band {
  padding: 108px 0;
  background: var(--panel-light);
  color: var(--ink);
}

.configuration-band .section-heading > p {
  color: var(--ink-soft);
}

.configuration-band .eyebrow {
  color: #2864d7;
}

.configurator {
  border-top: 1px solid var(--line-dark);
}

.segment-control {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(620px, 100%);
  margin: 30px 0;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #edf2f7;
  padding: 4px;
}

.segment-control button {
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #596b7d;
  cursor: pointer;
  font-weight: 780;
}

.segment-control button[aria-selected="true"] {
  background: var(--ink);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(20, 34, 52, 0.14);
}

.config-output {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) 270px;
  min-height: 390px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 25px 70px rgba(22, 35, 52, 0.1);
}

.config-identity,
.config-copy,
.config-specs {
  padding: 38px;
}

.config-identity {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line-dark);
  background: var(--ink);
  color: #ffffff;
}

.config-identity > span {
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 850;
}

.config-identity > p {
  margin: 0;
  color: #b9c8d4;
  font-size: 0.8rem;
  font-weight: 740;
}

.config-orbit {
  position: relative;
  width: 136px;
  height: 136px;
  margin: 30px auto;
}

.config-orbit i,
.config-orbit b {
  position: absolute;
  border-radius: 50%;
}

.config-orbit i {
  inset: 0;
  border: 1px solid rgba(79, 140, 255, 0.38);
}

.config-orbit i:nth-child(2) {
  inset: 22px;
  border-color: rgba(79, 163, 255, 0.5);
}

.config-orbit b {
  inset: 49px;
  background: var(--teal);
  box-shadow: 0 0 30px rgba(79, 140, 255, 0.82);
}

.config-copy {
  align-self: center;
}

.config-kicker {
  margin: 0 0 12px;
  color: #2864d7;
  font-size: 0.74rem;
  font-weight: 820;
  text-transform: uppercase;
}

.config-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.config-copy > p:not(.config-kicker) {
  max-width: 580px;
  margin: 18px 0 0;
  color: var(--ink-soft);
}

.config-copy ul {
  display: grid;
  gap: 10px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.config-copy li {
  position: relative;
  padding-left: 20px;
  color: #34485b;
  font-size: 0.9rem;
}

.config-copy li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.config-specs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  border-left: 1px solid var(--line-dark);
}

.config-specs div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
}

.config-specs div:last-child {
  border-bottom: 0;
}

.config-specs dt {
  color: #7b8b9a;
  font-size: 0.69rem;
  font-weight: 820;
  text-transform: uppercase;
}

.config-specs dd {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 780;
}

.config-note {
  margin: 15px 0 0;
  color: #758696;
  font-size: 0.76rem;
}

.operations-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  column-gap: 70px;
  align-items: end;
  margin-bottom: 58px;
}

.operations-intro .eyebrow {
  grid-column: 1 / -1;
}

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

.operation-feature {
  min-height: 285px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.01);
}

.operation-feature h3 {
  margin-top: 72px;
}

.feature-primary {
  grid-row: span 2;
  min-height: 570px;
  background: #0b1a2a;
}

.feature-primary h3 {
  margin-top: 190px;
  font-size: 1.8rem;
}

.feature-wide {
  grid-column: span 2;
}

.feature-wide h3 {
  max-width: 680px;
  font-size: 1.5rem;
}

.data-stream {
  display: flex;
  height: 110px;
  align-items: flex-end;
  gap: 7px;
  margin-top: 36px;
}

.data-stream i {
  width: 9px;
  height: var(--level);
  background: linear-gradient(180deg, var(--teal), rgba(79, 140, 255, 0.1));
  transform-origin: bottom;
  animation: streamPulse 2.5s ease-in-out infinite alternate;
}

.data-stream i:nth-child(even) { animation-delay: -1.2s; }

@keyframes streamPulse {
  to { transform: scaleY(0.65); opacity: 0.55; }
}

.implementation-band {
  padding: 110px 0;
  background: #ecf2f7;
  color: var(--ink);
}

.implementation-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
}

.implementation-copy {
  position: sticky;
  top: 125px;
  align-self: start;
}

.implementation-copy .eyebrow {
  color: #2864d7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px;
  font-weight: 780;
}

.deployment-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.deployment-list li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-top: 1px solid var(--line-dark);
}

.deployment-list li:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.deployment-list li > span {
  color: #2864d7;
  font-size: 1.55rem;
  font-weight: 850;
}

.deployment-list p {
  color: var(--ink-soft);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  isolation: isolate;
  background: #081421;
}

.final-cta::after {
  position: absolute;
  z-index: -1;
  right: -12%;
  bottom: -50%;
  width: 55%;
  aspect-ratio: 1;
  border: 1px solid rgba(79, 140, 255, 0.25);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(79, 140, 255, 0.06);
  content: "";
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 60px;
}

.final-cta h2 {
  max-width: 850px;
}

.cta-actions {
  min-width: 230px;
  margin: 0;
}

.cta-actions .button {
  width: 100%;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 35px 0 44px;
  background: var(--bg-deep);
}

.footer-inner {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 38px;
}

.footer-brand {
  display: block;
  width: 170px;
}

.footer-inner > p {
  margin: 0;
  color: #9aabba;
  font-size: 0.86rem;
}

.footer-inner > div {
  display: grid;
  justify-items: end;
  color: #8396a8;
  font-size: 0.74rem;
}

.floating-contact {
  position: fixed;
  z-index: 45;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 7px 14px 7px 7px;
  background: rgba(7, 17, 31, 0.9);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
  font-size: 0.78rem;
}

.floating-contact span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 6px;
  background: var(--teal);
  color: #10254a;
  font-size: 0.68rem;
  font-weight: 900;
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    top: 96px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(7, 17, 31, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .nav-toggle {
    display: block;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .header-cta {
    justify-self: end;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-telemetry {
    width: min(480px, 100%);
  }

  .signal-inner {
    grid-template-columns: 1fr;
    padding: 28px 0;
  }

  .signal-inner dl {
    width: 100%;
  }

  .signal-inner dl div:first-child {
    border-left: 0;
    padding-left: 0;
  }

  .operation-map {
    grid-template-columns: repeat(2, 1fr);
  }

  .operation-map article:nth-child(2) {
    border-right: 0;
  }

  .operation-map article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .operation-map article:nth-child(2)::after {
    display: none;
  }

  .config-output {
    grid-template-columns: 210px minmax(0, 1fr);
  }

  .config-specs {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .config-specs div {
    padding: 10px 20px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 0;
  }

  .config-specs div:last-child {
    border-right: 0;
  }

  .operations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-primary {
    grid-row: span 1;
    min-height: 360px;
  }

  .feature-primary h3 {
    margin-top: 90px;
  }

  .feature-wide {
    grid-column: span 2;
  }

  .implementation-grid,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .implementation-copy {
    position: static;
  }

  .cta-actions {
    width: min(440px, 100%);
  }

  .footer-inner {
    grid-template-columns: 170px 1fr;
  }

  .footer-inner > div {
    grid-column: 1 / -1;
    justify-items: start;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 92px;
  }

  .section-wrap,
  .hero-shell {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    width: calc(100% - 20px);
    min-height: 64px;
    margin-top: 10px;
    padding: 8px 9px 8px 12px;
  }

  .brand {
    width: 135px;
  }

  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .parking-hero {
    min-height: 920px;
    padding: 124px 0 84px;
  }

  .parking-hero::before {
    background:
      linear-gradient(180deg, rgba(4, 10, 18, 0.42) 0%, rgba(4, 10, 18, 0.76) 38%, rgba(4, 10, 18, 0.98) 78%),
      linear-gradient(0deg, var(--bg) 0%, transparent 20%);
  }

  .hero-media {
    inset: 0;
  }

  .hero-media img {
    height: 56%;
    object-position: 58% center;
    transform: translate3d(0, var(--hero-scroll, 0px), 0) scale(1.04);
  }

  .hero-shell {
    gap: 38px;
  }

  .hero-copy h1 {
    font-size: clamp(3.9rem, 21vw, 5.8rem);
  }

  .hero-copy > p {
    font-size: 1rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-telemetry {
    width: 100%;
  }

  .hero-scroll {
    right: 14px;
    bottom: 22px;
  }

  .signal-inner dl {
    grid-template-columns: 1fr;
  }

  .signal-inner dl div,
  .signal-inner dl div:first-child {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding: 14px 0;
  }

  .system-section,
  .operations-section,
  .configuration-band,
  .implementation-band,
  .final-cta {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .section-heading,
  .operations-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }

  .section-heading h2,
  .operations-intro h2,
  .implementation-copy h2,
  .final-cta h2 {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

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

  .operation-map article,
  .operation-map article:nth-child(2) {
    min-height: 270px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .operation-map article::after {
    display: none;
  }

  .map-icon {
    margin: 42px 0 30px;
  }

  .segment-control {
    width: 100%;
  }

  .config-output {
    grid-template-columns: 1fr;
  }

  .config-identity {
    min-height: 250px;
    border-right: 0;
  }

  .config-copy,
  .config-identity,
  .config-specs {
    padding: 28px;
  }

  .config-specs {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .config-specs div {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
    padding: 15px 0;
  }

  .operations-grid {
    grid-template-columns: 1fr;
  }

  .feature-primary,
  .feature-wide {
    grid-column: auto;
    min-height: 320px;
  }

  .feature-primary h3 {
    margin-top: 70px;
  }

  .operation-feature h3 {
    margin-top: 54px;
  }

  .implementation-grid {
    gap: 45px;
  }

  .deployment-list li {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-inner > div {
    grid-column: auto;
  }

  .floating-contact strong {
    display: none;
  }

  .floating-contact {
    padding-right: 7px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-media img {
    transform: scale(1.04);
  }
}
