:root {
  --bg: #050505;
  --bg-soft: #070907;
  --surface: #0a0d0a;
  --surface-2: #0e120e;
  --surface-3: #121812;
  --lime: #c8ff1a;
  --lime-bright: #e3ff73;
  --lime-dark: #7faa05;
  --white: #f5f7f2;
  --muted: #a2aaa0;
  --muted-2: #70786d;
  --border: rgba(200, 255, 26, 0.13);
  --border-strong: rgba(200, 255, 26, 0.34);
  --border-white: rgba(255, 255, 255, 0.07);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
  --shadow-lime: 0 20px 60px rgba(145, 195, 0, 0.16);
  --radius: 18px;
  --radius-small: 14px;
  --container: 1560px;
  --header-height: 88px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 9% 11%, rgba(200, 255, 26, 0.035), transparent 25%),
    var(--bg);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  content: "";
  opacity: 0.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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.metric strong,
.kpi-grid strong {
  font-family: "Space Grotesk", "Inter", sans-serif;
}

::selection {
  color: #050505;
  background: var(--lime);
}

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 10000;
  padding: 10px 16px;
  color: #050505;
  background: var(--lime);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.button svg,
.menu-toggle svg,
.metric > svg,
.rail-item > svg,
.value-card > svg,
.dashboard-nav svg,
.trust-grid article > svg,
.footer-contact svg,
.social-links svg,
.operations-pills svg,
.benefit-card svg,
.service-content a svg,
.dashboard-heading button svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-padding {
  padding-block: 128px;
}

.section-grid {
  position: relative;
  isolation: isolate;
}

.section-grid::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(200, 255, 26, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 255, 26, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 55% at 70% 48%, #000 5%, transparent 74%);
  mask-image: radial-gradient(ellipse 70% 55% at 70% 48%, #000 5%, transparent 74%);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  color: var(--lime);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lime));
  box-shadow: 0 0 10px rgba(200, 255, 26, 0.5);
}

.eyebrow.centered {
  justify-content: center;
}

.eyebrow.centered > span:last-child {
  background: linear-gradient(90deg, var(--lime), transparent);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 26px;
  overflow: hidden;
  color: #070907;
  background: linear-gradient(135deg, var(--lime-bright), var(--lime));
  border: 1px solid rgba(227, 255, 115, 0.76);
  border-radius: 14px;
  box-shadow:
    0 16px 42px rgba(138, 190, 0, 0.24),
    inset 0 1px rgba(255, 255, 255, 0.36);
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 260ms var(--ease),
    box-shadow 260ms var(--ease),
    border-color 260ms ease,
    color 260ms ease,
    background 260ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(105deg, transparent 28%, rgba(255, 255, 255, 0.48) 48%, transparent 68%);
  transform: translateX(-130%);
  transition: transform 620ms var(--ease);
}

.button span,
.button svg {
  position: relative;
  z-index: 1;
}

.button svg {
  width: 17px;
  height: 17px;
  transition: transform 260ms var(--ease);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow:
    0 22px 55px rgba(157, 211, 0, 0.34),
    0 0 26px rgba(200, 255, 26, 0.14),
    inset 0 1px rgba(255, 255, 255, 0.42);
}

.button:hover::before {
  transform: translateX(130%);
}

.button:hover svg {
  transform: translateX(4px);
}

.button:active {
  transform: translateY(-1px) scale(0.985);
}

.button-outline {
  color: var(--white);
  background: rgba(8, 11, 8, 0.66);
  border-color: rgba(200, 255, 26, 0.3);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.04),
    0 12px 34px rgba(0, 0, 0, 0.26);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.button-outline:hover {
  color: var(--lime);
  background: rgba(200, 255, 26, 0.06);
  border-color: rgba(200, 255, 26, 0.62);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.06),
    0 18px 40px rgba(0, 0, 0, 0.38),
    0 0 28px rgba(200, 255, 26, 0.1);
}

.button-small {
  min-height: 48px;
  padding-inline: 20px;
  border-radius: 12px;
  font-size: 10px;
}

.glass-card {
  background:
    linear-gradient(145deg, rgba(16, 21, 16, 0.9), rgba(6, 8, 6, 0.82)),
    rgba(8, 10, 8, 0.84);
  border: 1px solid var(--border);
  box-shadow:
    var(--shadow),
    inset 0 1px rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 760ms var(--ease) var(--delay, 0ms),
    transform 760ms var(--ease) var(--delay, 0ms);
}

.reveal-right {
  transform: translate3d(28px, 0, 0);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition:
    background-color 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    -webkit-backdrop-filter 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(4, 5, 4, 0.77);
  border-color: rgba(255, 255, 255, 0.055);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.32);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
}

.header-inner {
  display: grid;
  grid-template-columns: 240px 1fr auto;
  align-items: center;
  height: 100%;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
}

.brand img {
  width: 214px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(200, 255, 26, 0.08));
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 2.2vw, 44px);
}

.main-nav a {
  position: relative;
  padding: 31px 0 28px;
  color: rgba(245, 247, 242, 0.72);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 42%;
  bottom: 20px;
  left: 42%;
  height: 1px;
  content: "";
  background: var(--lime);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(200, 255, 26, 0.7);
  opacity: 0;
  transition:
    right 230ms var(--ease),
    left 230ms var(--ease),
    opacity 230ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  right: 20%;
  left: 20%;
  opacity: 1;
}

.header-cta svg {
  width: 15px;
  height: 15px;
}

.header-cta:hover svg {
  transform: translateY(-2px) rotate(5deg);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-white);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle svg {
  width: 21px;
  height: 21px;
}

.menu-toggle .close-icon {
  display: none;
}

/* Hero */
.hero {
  min-height: 900px;
  padding: 150px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 65% 55% at 83% 55%, rgba(177, 229, 10, 0.095), transparent 62%),
    radial-gradient(circle at 14% 40%, rgba(200, 255, 26, 0.035), transparent 28%),
    linear-gradient(180deg, #030403 0%, #050605 73%, #070907 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 180px;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent, #070907 94%);
}

.hero-glow {
  position: absolute;
  top: 12%;
  right: -15%;
  width: 60vw;
  height: 60vw;
  pointer-events: none;
  background: radial-gradient(circle, rgba(200, 255, 26, 0.08), transparent 66%);
  filter: blur(10px);
}

.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 73% 21%, rgba(200, 255, 26, 0.4) 0 1px, transparent 1.5px),
    radial-gradient(circle at 88% 38%, rgba(200, 255, 26, 0.28) 0 1px, transparent 1.5px),
    radial-gradient(circle at 58% 32%, rgba(200, 255, 26, 0.24) 0 1px, transparent 1.5px);
  opacity: 0.5;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(500px, 0.82fr) minmax(620px, 1.18fr);
  align-items: center;
  min-height: 675px;
}

.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 680px;
  padding: 20px 0 0;
}

.hero h1 {
  max-width: 660px;
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(58px, 4.35vw, 82px);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  width: max-content;
  max-width: 100%;
  padding-right: 0.08em;
  color: var(--lime);
  background: linear-gradient(95deg, var(--lime-bright) 5%, var(--lime) 48%, #9ed305 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 22px rgba(200, 255, 26, 0.12));
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 42px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 680px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.metric {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  min-width: 0;
  padding: 2px 16px;
}

.metric:first-child {
  padding-left: 0;
}

.metric + .metric::before {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 0;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(200, 255, 26, 0.23), transparent);
}

.metric > svg {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  margin-top: 2px;
  color: var(--lime);
  filter: drop-shadow(0 0 8px rgba(200, 255, 26, 0.25));
}

.metric div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.metric strong {
  color: var(--white);
  font-size: clamp(20px, 1.45vw, 28px);
  line-height: 1;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  white-space: nowrap;
}

.metric small {
  margin-top: 7px;
  color: var(--muted-2);
  font-size: 8px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-width: 0;
  height: 675px;
}

.truck-stage {
  position: absolute;
  right: clamp(-160px, -7.5vw, -70px);
  bottom: 4px;
  left: -24%;
  z-index: 1;
  transform-origin: 70% 70%;
  animation: truck-arrive 1.2s var(--ease) 120ms both;
}

.truck-stage::before {
  position: absolute;
  right: 2%;
  bottom: 2%;
  left: 18%;
  z-index: -1;
  height: 18%;
  content: "";
  background: radial-gradient(ellipse, rgba(200, 255, 26, 0.2), transparent 68%);
  filter: blur(24px);
}

.truck-stage img,
.truck-stage video {
  width: 100%;
  height: auto;
  display: block;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.52) 13%, #000 25%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.52) 13%, #000 25%, #000 94%, transparent 100%);
  filter: drop-shadow(0 32px 45px rgba(0, 0, 0, 0.55));
}

@keyframes truck-arrive {
  from {
    opacity: 0;
    transform: translate3d(64px, 12px, 0) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.truck-light-line,
.truck-speed-line {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  border-radius: 999px;
}

.truck-light-line {
  right: 7%;
  bottom: 6%;
  left: 25%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(200, 255, 26, 0.88), transparent);
  box-shadow: 0 0 18px rgba(200, 255, 26, 0.6);
  animation: light-scan 3.6s ease-in-out infinite;
}

.truck-speed-line {
  right: 1%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 255, 26, 0.6), transparent);
  transform: skewX(-28deg);
  animation: speed-line 2.8s ease-in-out infinite;
}

.truck-speed-line.line-a {
  bottom: 17%;
  width: 34%;
}

.truck-speed-line.line-b {
  right: 12%;
  bottom: 13%;
  width: 25%;
  animation-delay: -1.2s;
}

@keyframes light-scan {
  0%,
  100% { opacity: 0.55; transform: scaleX(0.78); }
  50% { opacity: 1; transform: scaleX(1); }
}

@keyframes speed-line {
  0%,
  100% { opacity: 0; transform: translateX(26px) skewX(-28deg); }
  35% { opacity: 0.8; }
  70% { opacity: 0; transform: translateX(-55px) skewX(-28deg); }
}

.benefit-card {
  position: absolute;
  top: 20px;
  left: 2%;
  z-index: 4;
  width: min(315px, 42%);
  padding: 22px 24px;
  border-radius: var(--radius-small);
  animation: benefit-float 5.5s ease-in-out 1.2s infinite;
}

.benefit-card::after {
  position: absolute;
  inset: -1px;
  z-index: -1;
  content: "";
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(200, 255, 26, 0.28), transparent 48%);
  opacity: 0.28;
}

.benefit-card > p {
  margin-bottom: 14px;
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.benefit-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.benefit-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.25;
}

.benefit-card li svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  color: var(--lime);
}

@keyframes benefit-float {
  0%,
  100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0); }
}

/* Feature rail */
.feature-strip {
  position: relative;
  z-index: 10;
  padding: 0 0 14px;
  background: #070907;
}

.feature-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(14, 18, 14, 0.95), rgba(7, 9, 7, 0.98)),
    var(--surface);
  border: 1px solid rgba(200, 255, 26, 0.18);
  border-radius: var(--radius);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.42),
    0 0 50px rgba(200, 255, 26, 0.035),
    inset 0 1px rgba(255, 255, 255, 0.045);
}

.rail-item {
  position: relative;
  display: flex;
  min-height: 104px;
  align-items: center;
  gap: 15px;
  padding: 24px clamp(18px, 1.8vw, 30px);
  transition:
    background 240ms ease,
    transform 240ms var(--ease);
}

.rail-item + .rail-item::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 0;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(200, 255, 26, 0.18), transparent);
}

.rail-item > svg {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  color: var(--lime);
  transition:
    transform 240ms var(--ease),
    filter 240ms ease;
}

.rail-item div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.rail-item strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rail-item span {
  margin-top: 5px;
  color: var(--muted-2);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rail-item:hover {
  z-index: 2;
  background: rgba(200, 255, 26, 0.045);
  transform: translateY(-3px);
}

.rail-item:hover > svg {
  transform: scale(1.08);
  filter: drop-shadow(0 0 12px rgba(200, 255, 26, 0.42));
}

/* About + command center */
.about {
  overflow: hidden;
  background:
    radial-gradient(ellipse 45% 55% at 82% 48%, rgba(200, 255, 26, 0.055), transparent 70%),
    linear-gradient(180deg, #070907, #050605 55%, #070807);
}

.about::before {
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 62% 50%, #000 4%, transparent 82%);
  mask-image: radial-gradient(ellipse 75% 65% at 62% 50%, #000 4%, transparent 82%);
}

.section-orb {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(1px);
}

.about-orb {
  top: 18%;
  left: -180px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(200, 255, 26, 0.06), transparent 68%);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(430px, 0.78fr) minmax(650px, 1.22fr);
  align-items: center;
  gap: clamp(56px, 5vw, 92px);
}

.about-copy h2,
.section-heading h2,
.operations-copy h2,
.cta-panel h2 {
  color: var(--white);
  font-size: clamp(42px, 3.3vw, 62px);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.about-copy h2 {
  max-width: 590px;
  margin-bottom: 26px;
}

.about-copy h2 em,
.section-heading h2 em,
.operations-copy h2 em {
  color: var(--lime);
  font-style: normal;
}

.about-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 15px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
}

.value-card {
  position: relative;
  min-height: 154px;
  padding: 22px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(15, 19, 15, 0.92), rgba(7, 9, 7, 0.96));
  border: 1px solid rgba(200, 255, 26, 0.105);
  border-radius: var(--radius-small);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.28),
    inset 0 1px rgba(255, 255, 255, 0.035);
  transition:
    transform 260ms var(--ease),
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.value-card::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 100px;
  height: 100px;
  content: "";
  background: radial-gradient(circle, rgba(200, 255, 26, 0.1), transparent 70%);
  transition: transform 260ms var(--ease);
}

.value-card > svg {
  width: 28px;
  height: 28px;
  margin-bottom: 17px;
  color: var(--lime);
}

.value-card h3 {
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.value-card p {
  margin: 0;
  color: var(--muted-2);
  font-size: 10px;
  line-height: 1.45;
}

.value-card:hover {
  border-color: rgba(200, 255, 26, 0.28);
  box-shadow:
    0 25px 56px rgba(0, 0, 0, 0.38),
    0 0 24px rgba(200, 255, 26, 0.045),
    inset 0 1px rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
}

.value-card:hover::after {
  transform: scale(1.2);
}

.command-center {
  position: relative;
  min-width: 0;
  padding: 1px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(200, 255, 26, 0.33), rgba(255, 255, 255, 0.055) 38%, rgba(200, 255, 26, 0.1));
  border-radius: 20px;
  box-shadow:
    0 45px 110px rgba(0, 0, 0, 0.56),
    0 0 70px rgba(200, 255, 26, 0.055);
  transform-style: preserve-3d;
}

.command-center::before {
  position: absolute;
  top: -45%;
  left: -15%;
  width: 60%;
  height: 80%;
  pointer-events: none;
  content: "";
  background: radial-gradient(ellipse, rgba(200, 255, 26, 0.1), transparent 65%);
  transform: rotate(-16deg);
}

.dashboard-topbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 18px;
  background: rgba(5, 7, 5, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 19px 19px 0 0;
}

.dashboard-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  gap: 2px;
  width: 18px;
}

.brand-mark i {
  display: block;
  height: 2px;
  background: var(--lime);
  border-radius: 99px;
  box-shadow: 0 0 7px rgba(200, 255, 26, 0.5);
  transform: skewX(-30deg);
}

.brand-mark i:nth-child(2) { width: 75%; }
.brand-mark i:nth-child(3) { width: 50%; }

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--lime);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-indicator i,
.status-top i {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(200, 255, 26, 0.8);
  animation: live-pulse 1.8s ease-in-out infinite;
}

@keyframes live-pulse {
  0%,
  100% { opacity: 0.5; transform: scale(0.75); }
  50% { opacity: 1; transform: scale(1.15); }
}

.dashboard-shell {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  min-height: 592px;
  background:
    radial-gradient(circle at 45% -10%, rgba(200, 255, 26, 0.045), transparent 34%),
    rgba(6, 8, 6, 0.97);
  border-radius: 0 0 19px 19px;
}

.dashboard-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard-nav button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0;
  color: #6f786d;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 9px;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms var(--ease);
}

.dashboard-nav button:hover,
.dashboard-nav button.active {
  color: var(--lime);
  background: rgba(200, 255, 26, 0.07);
  border-color: rgba(200, 255, 26, 0.17);
  transform: translateY(-1px);
}

.dashboard-nav svg {
  width: 15px;
  height: 15px;
}

.dashboard-main {
  min-width: 0;
  padding: 18px;
}

.dashboard-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.dashboard-heading > div {
  display: flex;
  flex-direction: column;
}

.dash-kicker {
  margin-bottom: 2px;
  color: var(--muted-2);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dashboard-heading strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 600;
}

.dashboard-heading button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 10px;
  color: var(--lime);
  background: rgba(200, 255, 26, 0.065);
  border: 1px solid rgba(200, 255, 26, 0.16);
  border-radius: 8px;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms var(--ease);
}

.dashboard-heading button:hover {
  background: rgba(200, 255, 26, 0.12);
  transform: translateY(-1px);
}

.dashboard-heading button svg {
  width: 12px;
  height: 12px;
}

.kpi-grid {
  display: grid;
  grid-template-columns: 0.8fr 0.9fr 1.3fr;
  gap: 9px;
  margin-bottom: 9px;
}

.kpi-grid article,
.chart-card,
.activity-card,
.payment-card,
.route-card {
  background: linear-gradient(145deg, rgba(16, 20, 16, 0.95), rgba(8, 10, 8, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.kpi-grid article {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 82px;
  flex-direction: column;
  justify-content: center;
  padding: 13px;
  overflow: hidden;
  border-radius: 11px;
}

.kpi-grid article::after {
  position: absolute;
  right: -22px;
  bottom: -32px;
  width: 72px;
  height: 72px;
  content: "";
  background: radial-gradient(circle, rgba(200, 255, 26, 0.09), transparent 70%);
}

.kpi-grid span {
  color: var(--muted-2);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.kpi-grid strong {
  margin-top: 4px;
  font-size: 21px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.kpi-grid small {
  position: absolute;
  right: 10px;
  bottom: 9px;
  color: var(--lime);
  font-size: 7px;
  font-weight: 700;
}

.dashboard-data-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(180px, 0.82fr);
  gap: 9px;
}

.chart-card,
.activity-card {
  min-width: 0;
  padding: 14px;
  border-radius: 11px;
}

.chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.chart-head > span {
  color: #a4aca1;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chart-head > strong {
  color: var(--lime);
  font-family: "Space Grotesk", sans-serif;
  font-size: 9px;
}

.chart-head > button {
  padding: 0;
  color: var(--lime);
  background: none;
  border: 0;
  font-size: 7px;
  cursor: pointer;
}

.line-chart {
  width: 100%;
  height: 172px;
  margin-top: 10px;
  overflow: visible;
}

.chart-grid-lines path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.055);
  stroke-width: 1;
}

.chart-area {
  fill: url(#chart-fill);
  stroke: none;
}

.chart-line {
  fill: none;
  stroke: var(--lime);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 680;
  stroke-dashoffset: 680;
  filter: drop-shadow(0 0 5px rgba(200, 255, 26, 0.45));
}

.command-center.is-visible .chart-line {
  animation: chart-draw 1.7s var(--ease) 420ms forwards;
}

@keyframes chart-draw {
  to { stroke-dashoffset: 0; }
}

.chart-dots circle {
  fill: var(--surface);
  stroke: var(--lime);
  stroke-width: 2;
  opacity: 0;
}

.command-center.is-visible .chart-dots circle {
  animation: dot-in 300ms var(--ease) forwards;
}

.command-center.is-visible .chart-dots circle:nth-child(1) { animation-delay: 650ms; }
.command-center.is-visible .chart-dots circle:nth-child(2) { animation-delay: 760ms; }
.command-center.is-visible .chart-dots circle:nth-child(3) { animation-delay: 870ms; }
.command-center.is-visible .chart-dots circle:nth-child(4) { animation-delay: 980ms; }
.command-center.is-visible .chart-dots circle:nth-child(5) { animation-delay: 1090ms; }
.command-center.is-visible .chart-dots circle:nth-child(6) { animation-delay: 1200ms; }
.command-center.is-visible .chart-dots circle:nth-child(7) { animation-delay: 1310ms; }
.command-center.is-visible .chart-dots circle:nth-child(8) { animation-delay: 1420ms; }

@keyframes dot-in {
  from { opacity: 0; transform: scale(0); transform-origin: center; }
  to { opacity: 1; transform: scale(1); transform-origin: center; }
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  color: #596058;
  font-size: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.activity-card ul {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
}

.activity-card li {
  display: grid;
  grid-template-columns: 7px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.045);
}

.activity-card li > i {
  width: 5px;
  height: 5px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 7px rgba(200, 255, 26, 0.5);
}

.activity-card li > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.activity-card li strong {
  overflow: hidden;
  font-size: 7px;
  font-weight: 600;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activity-card li span {
  overflow: hidden;
  color: var(--muted-2);
  font-size: 6px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activity-card li b {
  color: var(--lime-dark);
  font-size: 6px;
  font-weight: 700;
  white-space: nowrap;
}

.dashboard-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 9px;
}

.payment-card,
.route-card {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 11px;
}

.donut {
  position: relative;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  background: conic-gradient(var(--lime) 0 65%, #64742a 65% 90%, #232a22 90% 100%);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(200, 255, 26, 0.1);
}

.donut::after {
  position: absolute;
  inset: 10px;
  content: "";
  background: #0b0e0b;
  border-radius: 50%;
}

.payment-card > div:last-child,
.route-card > div:first-child {
  display: flex;
  flex-direction: column;
}

.payment-card span,
.route-card span {
  color: var(--muted-2);
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.payment-card strong,
.route-card strong {
  margin: 3px 0 1px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  line-height: 1;
}

.payment-card small {
  color: var(--lime-dark);
  font-size: 6px;
}

.route-card {
  justify-content: space-between;
}

.route-pulse {
  position: relative;
  width: 46%;
  height: 50px;
}

.route-pulse::before,
.route-pulse::after {
  position: absolute;
  top: 50%;
  right: 6px;
  left: 6px;
  height: 1px;
  content: "";
  background: rgba(200, 255, 26, 0.18);
}

.route-pulse::after {
  right: 12px;
  left: 12px;
  background: transparent;
  border-top: 1px dashed rgba(200, 255, 26, 0.35);
  transform: rotate(-12deg);
}

.route-pulse i {
  position: absolute;
  z-index: 2;
  width: 5px;
  height: 5px;
  background: var(--surface);
  border: 1px solid var(--lime);
  border-radius: 50%;
}

.route-pulse i:nth-child(1) { top: 31px; left: 5%; }
.route-pulse i:nth-child(2) { top: 24px; left: 34%; }
.route-pulse i:nth-child(3) { top: 17px; left: 64%; }
.route-pulse i:nth-child(4) { top: 10px; right: 3%; }

.route-pulse > span {
  position: absolute;
  top: 7px;
  right: 0;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(200, 255, 26, 0.35);
  border-radius: 50%;
  animation: live-pulse 1.8s ease-in-out infinite;
}

/* Services */
.services {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 38% 28% at 50% 0%, rgba(200, 255, 26, 0.055), transparent 72%),
    linear-gradient(180deg, #070807, #040504 52%, #070807);
}

.services::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(200, 255, 26, 0.16), transparent);
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 62px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 20px;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 486px;
  flex-direction: column;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(15, 19, 15, 0.96), rgba(6, 8, 6, 0.99)),
    var(--surface);
  border: 1px solid rgba(200, 255, 26, 0.105);
  border-radius: var(--radius);
  box-shadow:
    0 26px 62px rgba(0, 0, 0, 0.36),
    inset 0 1px rgba(255, 255, 255, 0.04);
  transition:
    transform 320ms var(--ease),
    border-color 320ms ease,
    box-shadow 320ms ease;
}

.service-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(118deg, transparent 18%, rgba(255, 255, 255, 0.045) 42%, transparent 62%);
  opacity: 0;
  transform: translateX(-60%);
  transition:
    opacity 260ms ease,
    transform 620ms var(--ease);
}

.service-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #050505;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}

.service-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 58%, rgba(5, 5, 5, 0.72)),
    radial-gradient(ellipse at 50% 90%, rgba(200, 255, 26, 0.085), transparent 58%);
  pointer-events: none;
}

.service-image picture,
.service-image img {
  width: 100%;
  height: 100%;
}

.service-image img {
  object-fit: cover;
  transition:
    transform 520ms var(--ease),
    filter 320ms ease;
}

.service-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 25px 25px 24px;
}

.service-content > span {
  position: absolute;
  top: 26px;
  right: 24px;
  color: rgba(200, 255, 26, 0.42);
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-content h3 {
  max-width: calc(100% - 40px);
  min-height: 44px;
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.service-content p {
  margin-bottom: 22px;
  color: var(--muted-2);
  font-size: 11px;
  line-height: 1.58;
}

.service-content a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--lime);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-content a svg {
  width: 14px;
  height: 14px;
  transition: transform 220ms var(--ease);
}

.service-card:hover {
  z-index: 2;
  border-color: rgba(200, 255, 26, 0.31);
  box-shadow:
    0 34px 78px rgba(0, 0, 0, 0.52),
    0 0 34px rgba(200, 255, 26, 0.055),
    inset 0 1px rgba(255, 255, 255, 0.06);
  transform: translateY(-7px) scale(1.006);
}

.service-card:hover::after {
  opacity: 1;
  transform: translateX(65%);
}

.service-card:hover .service-image img {
  filter: contrast(1.04) saturate(1.06);
  transform: scale(1.035);
}

.service-card:hover .service-content a svg {
  transform: translateX(4px);
}

/* Operations center */
.team-goal {
  position: relative;
  display: flex;
  min-height: 760px;
  align-items: center;
  overflow: hidden;
  background: #050505;
}

.team-goal::before,
.team-goal::after {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 2;
  height: 150px;
  pointer-events: none;
  content: "";
}

.team-goal::before {
  top: 0;
  background: linear-gradient(180deg, #070807, transparent);
}

.team-goal::after {
  bottom: 0;
  background: linear-gradient(0deg, #050605, transparent);
}

.operations-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.operations-backdrop::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.98) 13%, rgba(5, 5, 5, 0.67) 35%, rgba(5, 5, 5, 0.08) 63%, rgba(5, 5, 5, 0.18) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.3), transparent 35%, rgba(5, 5, 5, 0.28));
}

.operations-backdrop picture,
.operations-backdrop picture > img {
  width: 100%;
  height: 100%;
}

.operations-backdrop picture > img {
  object-fit: cover;
  object-position: center;
  filter: contrast(1.04) saturate(0.96);
  transform: scale(1.015);
}

.operations-device-logo {
  position: absolute;
  z-index: 1;
  height: auto;
  pointer-events: none;
  opacity: 0.56;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 7px rgba(200, 255, 26, 0.18));
}

.operations-laptop-logo {
  top: 55%;
  left: 39.8%;
  width: 88px;
  transform: perspective(280px) rotateY(10deg) rotateZ(1.5deg);
}

.operations-mug-logo {
  top: 56.5%;
  right: 2.3%;
  width: 34px;
  opacity: 0.48;
  transform: perspective(160px) rotateY(-14deg) rotateZ(-2deg);
}

.operations-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(420px, 0.8fr) minmax(420px, 1.2fr);
  align-items: end;
  gap: 60px;
}

.operations-copy {
  max-width: 620px;
  padding: 48px 0;
}

.operations-copy h2 {
  max-width: 590px;
  margin-bottom: 24px;
  font-size: clamp(48px, 4.2vw, 74px);
}

.operations-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 15px;
}

.operations-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.operations-pills span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 12px;
  color: #c6cbc4;
  background: rgba(10, 13, 10, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.operations-pills svg {
  width: 13px;
  height: 13px;
  color: var(--lime);
}

.operations-status {
  justify-self: end;
  width: min(100%, 490px);
  margin-bottom: 22px;
  padding: 16px;
  background: rgba(5, 7, 5, 0.76);
  border: 1px solid rgba(200, 255, 26, 0.16);
  border-radius: 16px;
  box-shadow:
    0 24px 65px rgba(0, 0, 0, 0.48),
    inset 0 1px rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.status-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 2px 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.status-top > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lime);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-top small {
  color: var(--muted-2);
  font-size: 7px;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 13px;
}

.status-grid > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 4px 15px;
}

.status-grid > div:first-child { padding-left: 2px; }
.status-grid > div + div { border-left: 1px solid rgba(255, 255, 255, 0.06); }

.status-grid span {
  overflow: hidden;
  color: var(--muted-2);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-grid strong {
  margin-top: 5px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  line-height: 1;
}

/* Trust + CTA */
.trust-section {
  padding: 38px 0;
  background: #050605;
  border-top: 1px solid rgba(255, 255, 255, 0.045);
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid article {
  position: relative;
  display: flex;
  min-height: 86px;
  align-items: center;
  gap: 17px;
  padding: 14px clamp(20px, 2vw, 34px);
}

.trust-grid article:first-child { padding-left: 0; }
.trust-grid article + article::before {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.09), transparent);
}

.trust-grid article > svg {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: var(--lime);
  filter: drop-shadow(0 0 12px rgba(200, 255, 26, 0.18));
}

.trust-grid article > div {
  display: flex;
  flex-direction: column;
}

.trust-grid strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-grid span {
  margin-top: 5px;
  color: var(--muted-2);
  font-size: 9px;
  line-height: 1.45;
}

.final-cta {
  position: relative;
  z-index: 5;
  padding: 104px 0 0;
  background: linear-gradient(180deg, #050605, #070907);
}

.cta-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 50px 58px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 45%, rgba(200, 255, 26, 0.105), transparent 34%),
    linear-gradient(135deg, #0e130e, #080a08 56%, #050705);
  border: 1px solid rgba(200, 255, 26, 0.21);
  border-radius: 20px;
  box-shadow:
    0 32px 85px rgba(0, 0, 0, 0.46),
    0 0 60px rgba(200, 255, 26, 0.04),
    inset 0 1px rgba(255, 255, 255, 0.05);
}

.cta-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(200, 255, 26, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 255, 26, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  -webkit-mask-image: radial-gradient(circle at 80% 50%, #000, transparent 56%);
  mask-image: radial-gradient(circle at 80% 50%, #000, transparent 56%);
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel .eyebrow {
  margin-bottom: 14px;
}

.cta-panel h2 {
  margin-bottom: 10px;
  font-size: clamp(36px, 3vw, 54px);
}

.cta-panel > div > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.cta-panel .button {
  flex: 0 0 auto;
}

/* Footer */
.site-footer {
  position: relative;
  padding: 112px 0 28px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 35% at 20% 15%, rgba(200, 255, 26, 0.04), transparent 70%),
    linear-gradient(180deg, #070907, #030403);
}

.footer-glow {
  position: absolute;
  right: -200px;
  bottom: -320px;
  width: 700px;
  height: 700px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(200, 255, 26, 0.055), transparent 68%);
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 1.4fr) repeat(2, minmax(150px, 0.65fr)) minmax(270px, 1fr);
  gap: clamp(40px, 5vw, 90px);
  padding-bottom: 64px;
}

.footer-brand .brand img {
  width: 238px;
}

.footer-brand > p {
  max-width: 380px;
  margin: 24px 0 27px;
  color: var(--muted);
  font-size: 13px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms var(--ease),
    box-shadow 220ms ease;
}

.social-links svg {
  width: 18px;
  height: 18px;
}

.social-links a:hover {
  color: var(--lime);
  background: rgba(200, 255, 26, 0.06);
  border-color: rgba(200, 255, 26, 0.32);
  box-shadow: 0 0 22px rgba(200, 255, 26, 0.11);
  transform: translateY(-4px) rotate(3deg);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-column h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column > a {
  position: relative;
  color: var(--muted);
  font-size: 12px;
  transition: color 180ms ease, transform 180ms var(--ease);
}

.footer-column > a:hover {
  color: var(--lime);
  transform: translateX(3px);
}

.footer-contact > a,
.footer-contact > p {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 0;
}

.footer-contact svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--lime);
}

.footer-contact span {
  overflow-wrap: anywhere;
}

.footer-contact > p {
  color: var(--muted-2);
  font-size: 12px;
}

.footer-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  color: #5f665d;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1360px) {
  :root { --container: 1280px; }
  .container { width: min(calc(100% - 64px), var(--container)); }
  .header-inner { grid-template-columns: 210px 1fr auto; gap: 20px; }
  .brand img { width: 190px; }
  .main-nav { gap: 26px; }
  .hero { min-height: 820px; padding-top: 132px; }
  .hero-layout { grid-template-columns: minmax(440px, 0.86fr) minmax(520px, 1.14fr); min-height: 620px; }
  .hero-visual { height: 620px; }
  .truck-stage { right: -120px; bottom: 25px; left: -24%; }
  .benefit-card { top: 8px; left: 0; width: 285px; }
  .hero-metrics { grid-template-columns: repeat(2, 1fr); max-width: 520px; row-gap: 18px; }
  .metric:nth-child(3)::before { display: none; }
  .metric:nth-child(3) { padding-left: 0; }
  .about-layout { grid-template-columns: minmax(390px, 0.72fr) minmax(580px, 1.28fr); gap: 52px; }
  .dashboard-shell { min-height: 560px; }
  .line-chart { height: 145px; }
  .service-card { min-height: 450px; }
  .service-content { padding: 22px; }
}

@media (max-width: 1120px) {
  :root { --header-height: 78px; }
  .container { width: min(calc(100% - 48px), 1040px); }
  .header-inner { grid-template-columns: 1fr auto auto; }
  .brand img { width: 182px; }
  .menu-toggle { display: flex; }
  .header-cta { margin-left: auto; }
  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 24px;
    left: 24px;
    display: flex;
    max-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 22px;
    overflow: hidden;
    visibility: hidden;
    background: rgba(6, 8, 6, 0.97);
    border: 1px solid rgba(200, 255, 26, 0.15);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.58);
    opacity: 0;
    transform: translateY(-8px);
    transition:
      max-height 360ms var(--ease),
      opacity 220ms ease,
      transform 300ms var(--ease),
      visibility 0s linear 360ms,
      padding 300ms ease;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }
  .main-nav.is-open {
    max-height: 440px;
    padding-block: 12px 18px;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
  }
  .main-nav a { padding: 16px 4px; border-bottom: 1px solid rgba(255, 255, 255, 0.055); }
  .main-nav a:last-child { border-bottom: 0; }
  .main-nav a::after { right: auto; bottom: 10px; left: 4px; width: 0; }
  .main-nav a:hover::after,
  .main-nav a.is-active::after { right: auto; left: 4px; width: 34px; }
  .menu-toggle[aria-expanded="true"] .menu-icon { display: none; }
  .menu-toggle[aria-expanded="true"] .close-icon { display: block; }

  .hero { min-height: auto; padding: 126px 0 78px; }
  .hero-layout { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { max-width: 740px; }
  .hero h1 { max-width: 720px; }
  .hero-visual { height: clamp(500px, 60vw, 640px); margin-top: -20px; }
  .truck-stage { right: -13vw; bottom: 0; left: -8vw; }
  .benefit-card { top: 20px; left: 4%; width: 300px; }
  .hero-metrics { max-width: 640px; grid-template-columns: repeat(4, 1fr); }
  .metric:nth-child(3)::before { display: block; }
  .metric:nth-child(3) { padding-left: 16px; }

  .feature-rail { grid-template-columns: repeat(5, minmax(175px, 1fr)); overflow-x: auto; scroll-snap-type: x proximity; }
  .rail-item { scroll-snap-align: start; }

  .section-padding { padding-block: 104px; }
  .about-layout { grid-template-columns: 1fr; }
  .about-copy { max-width: 760px; }
  .about-copy > p:not(.eyebrow) { max-width: 690px; }
  .value-grid { max-width: 740px; }
  .command-center { width: 100%; max-width: 920px; margin: 0 auto; }
  .dashboard-shell { min-height: 600px; }
  .line-chart { height: 174px; }

  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card { min-height: 520px; }
  .service-content { padding: 28px; }

  .team-goal { min-height: 780px; }
  .operations-backdrop img { object-position: 58% center; }
  .operations-device-logo { display: none; }
  .operations-layout { grid-template-columns: minmax(370px, 0.8fr) minmax(340px, 1.2fr); gap: 30px; }
  .operations-copy { padding: 30px 0 120px; }
  .operations-status { align-self: end; margin-bottom: 80px; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid article:first-child { padding-left: 24px; }
  .trust-grid article:nth-child(3)::before { display: none; }

  .footer-grid { grid-template-columns: 1.2fr repeat(2, 0.7fr); }
  .footer-contact { grid-column: 1 / -1; display: grid; grid-template-columns: auto repeat(3, minmax(0, 1fr)); align-items: center; gap: 20px; padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, 0.055); }
  .footer-contact h3 { margin: 0; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 32px), 680px); }
  .header-inner { gap: 12px; }
  .brand img { width: 164px; }
  .header-cta { display: none; }
  .main-nav { right: 16px; left: 16px; }

  .section-padding { padding-block: 84px; }
  .hero { padding-top: 114px; }
  .hero h1 { font-size: clamp(48px, 13vw, 70px); }
  .hero-lead { max-width: 580px; }
  .hero-metrics { grid-template-columns: repeat(2, 1fr); max-width: 520px; }
  .metric { min-height: 62px; }
  .metric:nth-child(3)::before { display: none; }
  .metric:nth-child(3) { padding-left: 0; }
  .hero-visual { height: clamp(390px, 66vw, 510px); margin-top: 6px; }
  .truck-stage { right: -20vw; bottom: -4px; left: -20vw; }
  .truck-stage img { -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 14%, #000 90%, transparent); }
  .benefit-card { top: 0; left: 0; width: min(280px, 52%); padding: 17px; }
  .benefit-card li { font-size: 9px; }

  .feature-strip .container { width: calc(100% - 16px); }
  .feature-rail { grid-template-columns: repeat(5, 175px); border-radius: 15px; }
  .rail-item { min-height: 92px; padding: 20px; }

  .about-copy h2,
  .section-heading h2,
  .operations-copy h2,
  .cta-panel h2 { font-size: clamp(38px, 10vw, 52px); }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .dashboard-shell { grid-template-columns: 46px minmax(620px, 1fr); min-height: 560px; overflow-x: auto; }
  .command-center { overflow-x: auto; }
  .dashboard-topbar { position: sticky; left: 0; min-width: 666px; }
  .dashboard-nav { position: sticky; left: 0; z-index: 2; background: rgba(6, 8, 6, 0.98); }

  .services-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .service-card { min-height: 0; }
  .service-content h3 { min-height: 0; }

  .team-goal { min-height: 860px; align-items: flex-start; padding-top: 105px; }
  .operations-backdrop::after { background: linear-gradient(180deg, #050505 0%, rgba(5, 5, 5, 0.86) 33%, rgba(5, 5, 5, 0.2) 64%, #050505 100%); }
  .operations-backdrop img { object-position: 64% center; }
  .operations-layout { grid-template-columns: 1fr; align-items: start; }
  .operations-copy { max-width: 600px; padding: 0; }
  .operations-status { align-self: auto; justify-self: stretch; width: 100%; margin: 260px 0 0; }

  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article { padding-inline: 10px; }
  .trust-grid article:first-child { padding-left: 10px; }
  .trust-grid article + article::before { top: 0; right: 10px; bottom: auto; left: 10px; width: auto; height: 1px; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.09), transparent); }
  .trust-grid article:nth-child(3)::before { display: block; }

  .final-cta { padding-top: 74px; }
  .cta-panel { align-items: flex-start; flex-direction: column; padding: 40px 34px; }

  .site-footer { padding-top: 84px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; display: flex; align-items: flex-start; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (max-width: 520px) {
  .container { width: calc(100% - 24px); }
  .brand img { width: 150px; }
  .menu-toggle { width: 42px; height: 42px; }

  .hero { padding: 104px 0 54px; }
  .eyebrow { margin-bottom: 18px; font-size: 9px; letter-spacing: 0.13em; }
  .hero h1 { margin-bottom: 22px; font-size: clamp(38px, 10.5vw, 48px); }
  .hero-lead { font-size: 14px; line-height: 1.65; }
  .hero-actions { align-items: stretch; flex-direction: column; margin-bottom: 34px; }
  .button { width: 100%; min-height: 54px; }
  .hero-metrics { gap: 15px 0; padding-top: 22px; }
  .metric { gap: 9px; padding: 2px 11px; }
  .metric:nth-child(odd) { padding-left: 0; }
  .metric:nth-child(3)::before { display: none; }
  .metric > svg { width: 23px; height: 23px; }
  .metric strong { font-size: 21px; }
  .metric small { font-size: 7px; }
  .hero-visual { height: 430px; margin-top: 0; }
  .truck-stage { right: -38vw; bottom: 0; left: -48vw; width: auto; }
  .benefit-card { top: 18px; left: 0; width: min(260px, 78%); }
  .benefit-card li:nth-child(3),
  .benefit-card li:nth-child(4) { display: none; }

  .section-padding { padding-block: 72px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 140px; }
  .dashboard-shell { grid-template-columns: 42px minmax(570px, 1fr); }
  .dashboard-topbar { min-width: 612px; }

  .section-heading { margin-bottom: 42px; }
  .section-heading > p:last-child { font-size: 13px; }
  .service-content { padding: 24px; }
  .service-content p { font-size: 10px; }

  .team-goal { min-height: 820px; padding-top: 82px; }
  .operations-copy > p:not(.eyebrow) { font-size: 14px; }
  .operations-pills { gap: 6px; }
  .operations-pills span { min-height: 32px; padding-inline: 10px; font-size: 8px; }
  .operations-status { margin-top: 220px; padding: 13px; }
  .status-grid > div { padding-inline: 9px; }
  .status-grid span { font-size: 6px; }
  .status-grid strong { font-size: 15px; }

  .cta-panel { gap: 30px; padding: 34px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 42px; }
  .footer-brand,
  .footer-contact { grid-column: auto; }
  .footer-contact { padding-top: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
  .chart-line { stroke-dashoffset: 0; }
  .chart-dots circle { opacity: 1; }
}
