:root {
  --ink: #061008;
  --ink-2: #0a170d;
  --ink-3: #112417;
  --green: #31da50;
  --green-dark: #16a334;
  --cream: #f3f5ef;
  --white: #ffffff;
  --muted: #aab9ad;
  --line: rgba(255, 255, 255, 0.12);
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--ink);
  color: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body,
button { font: inherit; }

img,
svg { display: block; }

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

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

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

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

.inner {
  width: min(1180px, calc(100% - 9vw));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 16, 8, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
  transition: min-height 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 13, 7, 0.97);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.site-header .inner {
  width: min(1180px, calc(100% - clamp(48px, 12vw, 150px)));
}

.nav {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 62px;
  height: 48px;
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  object-fit: cover;
  object-position: center;
}

.brand-name {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-name small {
  display: block;
  margin-top: 4px;
  color: var(--green);
  font-size: 8px;
  letter-spacing: 0.22em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #d9e1db;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nav-links > a:not(.nav-call) {
  position: relative;
  padding-block: 12px;
}

.nav-links > a:not(.nav-call)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--green);
  transition: transform 180ms ease;
}

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

.nav-call {
  padding: 12px 16px;
  border-radius: 3px;
  background: var(--green);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  min-width: 48px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.menu-toggle-icon { display: grid; gap: 3px; }
.menu-toggle-icon i { width: 16px; height: 2px; background: currentColor; }

.hero {
  position: relative;
  min-height: 700px;
  display: grid;
  align-items: center;
  isolation: isolate;
  background: var(--ink);
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  opacity: 0.14;
  background-image: linear-gradient(rgba(49, 218, 80, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(49, 218, 80, 0.12) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to right, #000 0, #000 30%, transparent 63%);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--green) 0 32%, rgba(49, 218, 80, 0.2) 32% 68%, transparent 68%);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: clip;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(4, 12, 6, 0.98) 0%, rgba(4, 12, 6, 0.91) 26%, rgba(4, 12, 6, 0.63) 47%, rgba(4, 12, 6, 0.14) 72%, rgba(4, 12, 6, 0.02) 100%), linear-gradient(0deg, rgba(4, 12, 6, 0.8) 0%, transparent 38%, rgba(4, 12, 6, 0.14) 100%);
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.04) saturate(0.92);
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 700px;
  grid-template-columns: minmax(0, 700px);
  align-items: center;
  padding: 92px 0 106px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 40px;
  height: 3px;
  flex: 0 0 auto;
  content: "";
  background: var(--green);
}

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

h1 {
  max-width: 680px;
  margin: 22px 0;
  font-size: clamp(52px, 6vw, 88px);
  letter-spacing: -0.065em;
  line-height: 0.92;
  text-wrap: balance;
}

.hero-copy {
  max-width: 610px;
  margin: 0;
  color: #bac5bc;
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: var(--ink); }
.btn-primary:hover { background: #55e76e; }
.btn-secondary { border-color: rgba(255, 255, 255, 0.22); background: rgba(255, 255, 255, 0.03); color: var(--white); }
.btn-secondary:hover { border-color: var(--green); background: rgba(49, 218, 80, 0.08); }

.hero-route {
  display: flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 11px 14px;
  border-left: 3px solid var(--green);
  background: rgba(4, 12, 6, 0.52);
  color: #f1f7f2;
  backdrop-filter: blur(8px);
}

.hero-route strong { font-size: 13px; letter-spacing: 0.02em; }
.hero-route small { color: #aebcb0; font-size: 9px; font-weight: 900; letter-spacing: 0.13em; text-transform: uppercase; }

.signal-strip {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #08130a;
}

.signals { display: grid; grid-template-columns: repeat(3, 1fr); }
.signal { padding: 24px 28px; border-right: 1px solid var(--line); }
.signal:first-child { padding-left: 0; }
.signal:last-child { border-right: 0; }
.signal span { display: block; color: #7f9384; font-size: 9px; font-weight: 900; letter-spacing: 0.18em; text-transform: uppercase; }
.signal strong { display: block; margin-top: 6px; color: #f3f7f3; font-size: 15px; }

.what { padding: 118px 0; background: var(--cream); color: #0a120c; }
.section-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 86px; }
.section-number { color: var(--green-dark); font-size: 11px; font-weight: 900; letter-spacing: 0.2em; text-transform: uppercase; }

h2 {
  margin: 18px 0 0;
  font-size: clamp(42px, 5vw, 72px);
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.journey-card {
  position: relative;
  margin-top: 48px;
  overflow: clip;
  padding: 25px 25px 22px;
  background: #08130a;
  box-shadow: 0 22px 60px rgba(17, 41, 22, 0.15);
  color: var(--white);
}

.journey-card::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.18;
  background-image: linear-gradient(rgba(49, 218, 80, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(49, 218, 80, 0.12) 1px, transparent 1px);
  background-size: 36px 36px;
}

.journey-top,
.journey-route,
.journey-bottom { position: relative; z-index: 1; }
.journey-top { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.journey-top span { color: var(--green); font-size: 9px; font-weight: 900; letter-spacing: 0.17em; text-transform: uppercase; }
.journey-top small { color: #78907d; font-size: 9px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.journey-route { height: 142px; margin-top: 13px; }

.route-track {
  position: absolute;
  top: 61px;
  right: 21px;
  left: 21px;
  height: 4px;
  overflow: clip;
  background: #1d3423;
}

.route-track::after {
  position: absolute;
  inset: 0;
  content: "";
  animation: routePulse 3.8s linear infinite;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  background-size: 44% 100%;
}

.route-stop {
  position: absolute;
  top: 50px;
  width: 25px;
  height: 25px;
  border: 3px solid var(--green);
  border-radius: 50%;
  background: #08130a;
  box-shadow: 0 0 0 5px rgba(49, 218, 80, 0.08);
}

.route-stop.start { left: 10px; }
.route-stop.finish { right: 10px; }
.route-stop::after { position: absolute; inset: 6px; border-radius: 50%; content: ""; background: var(--green); }
.route-name { position: absolute; top: 86px; color: #9eafa1; font-size: 9px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.route-name.start { left: 4px; }
.route-name.finish { right: 0; }

.route-truck {
  position: absolute;
  top: 33px;
  left: 13%;
  display: grid;
  width: 54px;
  height: 40px;
  place-items: center;
  animation: driveRoute 6s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
  color: var(--green);
  filter: drop-shadow(0 0 12px rgba(49, 218, 80, 0.4));
}

.route-truck svg { width: 49px; height: 32px; fill: #08130a; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.journey-bottom { padding-top: 17px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.journey-bottom strong { display: block; font-size: 14px; }
.journey-bottom span { display: block; margin-top: 6px; color: #8fa092; font-size: 11px; line-height: 1.55; }

@keyframes driveRoute { from { left: 13%; } to { left: 72%; } }
@keyframes routePulse { from { background-position: -100% 0; } to { background-position: 230% 0; } }

.lead { margin: 0 0 23px; font-size: 25px; font-weight: 800; letter-spacing: -0.025em; line-height: 1.28; }
.prose { color: #536057; font-size: 16px; line-height: 1.8; }
.prose p { margin: 0 0 20px; }
.promise { margin-top: 42px; padding: 25px 26px; border-left: 4px solid var(--green-dark); background: var(--white); box-shadow: 0 16px 50px rgba(17, 41, 22, 0.07); }
.promise-label { display: block; margin-bottom: 9px; color: var(--green-dark); font-size: 9px; font-weight: 900; letter-spacing: 0.18em; text-transform: uppercase; }
.promise strong { display: block; font-size: 18px; line-height: 1.3; }
.promise p { margin: 7px 0 0; color: #667169; font-size: 13px; line-height: 1.6; }

.services { padding: 112px 0 122px; background: #0a160d; }
.services-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 50px; }
.services-head h2 { max-width: 580px; }
.services-head p { max-width: 420px; margin: 0; color: #9bac9e; font-size: 15px; line-height: 1.7; }
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }

.service {
  min-width: 0;
  min-height: 205px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
  transition: background 180ms ease, transform 180ms ease;
}

.service:hover { background: rgba(49, 218, 80, 0.055); }
.service-icon { display: grid; width: 62px; height: 62px; flex: 0 0 auto; place-items: center; border: 1px solid rgba(49, 218, 80, 0.32); background: rgba(49, 218, 80, 0.075); color: var(--green); }
.service-icon svg { width: 36px; height: 36px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service h3 { max-width: 190px; margin: 0; font-size: 17px; line-height: 1.25; }

.purpose { position: relative; overflow: clip; padding: 118px 0; background: var(--green); color: var(--ink); }
.purpose::after { position: absolute; top: -130px; right: -180px; width: 520px; height: 520px; border: 1px solid rgba(6, 16, 8, 0.17); border-radius: 50%; box-shadow: 0 0 0 55px rgba(6, 16, 8, 0.035), 0 0 0 110px rgba(6, 16, 8, 0.025); content: ""; }
.purpose-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 70px; }
.purpose-card { padding-top: 28px; border-top: 3px solid rgba(6, 16, 8, 0.75); }
.purpose-card > span { display: block; margin-bottom: 22px; font-size: 13px; font-weight: 900; letter-spacing: 0.19em; text-transform: uppercase; }
.purpose-card h2 { margin: 0 0 17px; font-size: clamp(36px, 4vw, 48px); letter-spacing: -0.04em; line-height: 1.05; }
.purpose-card p { margin: 0; font-size: 16px; line-height: 1.76; }

.cta { position: relative; padding: 128px 0; background: radial-gradient(circle at 50% 100%, rgba(49, 218, 80, 0.12), transparent 34%), var(--ink); text-align: center; }
.cta .eyebrow { justify-content: center; }
.cta h2 { max-width: 890px; margin: 24px auto 20px; font-size: clamp(48px, 6vw, 82px); line-height: 0.94; }
.cta-line { display: block; white-space: nowrap; }
.cta > .inner > p:not(.eyebrow) { max-width: 630px; margin: 0 auto; color: #a8b6aa; font-size: 16px; line-height: 1.7; }
.cta .hero-actions { justify-content: center; }

.footer { padding: 28px 0; border-top: 1px solid var(--line); background: #050d07; }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; color: #839287; font-size: 11px; }
.footer strong { color: #e5ece6; letter-spacing: 0.07em; text-transform: uppercase; }
.footer a { color: var(--green); font-weight: 800; }
.mobile-contact { display: none; }

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.service-grid [data-reveal]:nth-child(2),
.purpose-grid [data-reveal]:nth-child(2) { transition-delay: 70ms; }
.service-grid [data-reveal]:nth-child(3) { transition-delay: 110ms; }
.service-grid [data-reveal]:nth-child(4) { transition-delay: 150ms; }

@media (max-width: 900px) {
  .site-header .inner { width: min(1180px, calc(100% - 48px)); }
  .menu-toggle { display: inline-flex; }
  .menu-toggle-label { display: none; }
  .nav-links {
    position: absolute;
    top: calc(100% + 18px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(6, 16, 8, 0.98);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  }
  .js .nav-links {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: visibility 180ms ease, opacity 180ms ease, transform 180ms ease;
  }
  .js .nav-links[data-open] {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links a { padding: 14px 12px; }
  .nav-call { margin-top: 6px; text-align: center; }
  .hero-grid,
  .section-grid,
  .purpose-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-grid { min-height: 680px; padding: 76px 0 92px; }
  .hero-media img { object-position: 57% center; }
  .hero-media::after { background: linear-gradient(90deg, rgba(4, 12, 6, 0.98), rgba(4, 12, 6, 0.76) 60%, rgba(4, 12, 6, 0.26)), linear-gradient(0deg, rgba(4, 12, 6, 0.84), transparent 55%); }
  .section-grid { gap: 60px; }
  .services-head { align-items: start; flex-direction: column; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .signals { grid-template-columns: 1fr; }
  .signal,
  .signal:first-child { padding: 18px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .signal:last-child { border-bottom: 0; }
}

@media (max-width: 560px) {
  :root { --header-height: 76px; }
  body { padding-bottom: 62px; }
  .inner { width: calc(100% - 36px); }
  .site-header .inner { width: calc(100% - 36px); }
  .brand { gap: 10px; }
  .brand img { width: 54px; height: 42px; }
  .brand-name { font-size: 10px; letter-spacing: 0.06em; }
  .brand-name small { font-size: 7px; letter-spacing: 0.16em; }
  h1 { font-size: clamp(44px, 13vw, 54px); }
  .hero-copy { font-size: 15px; }
  .hero-grid { min-height: 650px; padding: 72px 0 84px; }
  .hero-media img { object-position: 64% center; }
  .hero-media::after { background: linear-gradient(90deg, rgba(4, 12, 6, 0.96), rgba(4, 12, 6, 0.68)), linear-gradient(0deg, rgba(4, 12, 6, 0.92), transparent 50%); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .hero-route { align-items: flex-start; flex-direction: column; }
  .what,
  .services,
  .purpose,
  .cta { padding: 78px 0; }
  .section-grid { gap: 52px; }
  .journey-card { padding-inline: 18px; }
  .service-grid { grid-template-columns: 1fr; }
  .service { min-height: 170px; }
  .purpose-grid { gap: 50px; }
  .purpose-card h2 { font-size: 36px; }
  .cta h2 { font-size: clamp(31px, 9vw, 48px); }
  .footer { padding-bottom: 32px; }
  .footer-row { align-items: flex-start; flex-direction: column; }
  .mobile-contact {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 45;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 7px;
    border-top: 1px solid rgba(49, 218, 80, 0.38);
    background: rgba(5, 13, 7, 0.97);
    backdrop-filter: blur(14px);
  }
  .mobile-contact a { display: grid; min-height: 48px; place-items: center; color: var(--white); font-size: 11px; font-weight: 900; letter-spacing: 0.05em; text-transform: uppercase; }
  .mobile-contact a:first-child { background: var(--green); color: var(--ink); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .route-truck,
  .route-track::after { animation: none; }
  .route-truck { left: 43%; }
  .js [data-reveal],
  .js [data-reveal].is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
