/* ============================================================
   ParcelNow — On-Demand Logistics for the New Era
   Dark cinematic theme · Volt #CCFF00
   ============================================================ */

:root {
  --volt: #CCFF00;
  --volt-dim: #9FCC00;
  --bg: #0A0A0B;
  --bg-2: #101012;
  --bg-3: #16161A;
  --ink: #F4F4F0;
  --ink-dim: #9C9CA4;
  --ink-faint: #55555E;
  --line: rgba(244, 244, 240, 0.08);
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --pad: clamp(20px, 5vw, 80px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--volt); color: var(--bg); }

a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; color: inherit; cursor: pointer; }
em { font-style: normal; }

:focus-visible { outline: 2px solid var(--volt); outline-offset: 3px; border-radius: 2px; }

/* ============ Preloader ============ */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
}
.preloader__inner { text-align: center; width: min(420px, 80vw); }
.preloader__mark {
  height: 54px; width: auto;
  margin-bottom: 20px;
  opacity: 0; transform: translateY(12px);
}
.preloader__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 5vw, 44px);
  letter-spacing: 0.04em;
  overflow: hidden;
}
.preloader__word { display: inline-block; transform: translateY(110%); }
.preloader__word--volt { color: var(--volt); }
.preloader__bar {
  height: 2px; background: var(--line);
  margin: 28px 0 14px; border-radius: 2px; overflow: hidden;
}
.preloader__bar-fill {
  height: 100%; width: 0%;
  background: var(--volt);
  box-shadow: 0 0 16px rgba(204, 255, 0, 0.6);
}
.preloader__count {
  font-family: var(--font-mono);
  font-size: 12px; color: var(--ink-dim);
  letter-spacing: 0.2em;
}

/* ============ Custom cursor ============ */
.cursor { display: none; }
@media (pointer: fine) {
  .cursor { display: block; position: fixed; top: 0; left: 0; z-index: 999; pointer-events: none; }
  .cursor__dot {
    position: fixed; width: 6px; height: 6px;
    background: var(--volt); border-radius: 50%;
    transform: translate(-50%, -50%);
  }
  .cursor__ring {
    position: fixed; width: 36px; height: 36px;
    border: 1px solid rgba(204, 255, 0, 0.45);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out),
                border-color 0.25s, background 0.25s;
  }
  body.cursor-hover .cursor__ring {
    width: 64px; height: 64px;
    background: rgba(204, 255, 0, 0.08);
    border-color: var(--volt);
  }
}

/* ============ Buttons ============ */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 15px; letter-spacing: 0.01em;
  padding: 16px 28px; border-radius: 100px;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, background 0.35s, color 0.35s;
  white-space: nowrap;
}
.btn__arrow { transition: transform 0.35s var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn--volt {
  background: var(--volt); color: var(--bg);
}
.btn--volt:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(204, 255, 0, 0.35);
}
.btn--ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: var(--volt); color: var(--volt); transform: translateY(-2px); }
.btn--dark { background: var(--bg); color: var(--volt); }
.btn--dark:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(10, 10, 11, 0.45); }

/* ============ Header ============ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(10, 10, 11, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px var(--pad);
  border-bottom-color: var(--line);
}
.header__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 20px; letter-spacing: 0.01em;
}
.header__logo em { color: var(--volt); }
.header__mark { width: auto; height: 26px; }
.header__nav { display: flex; align-items: center; gap: clamp(16px, 2.5vw, 36px); }
.header__link {
  position: relative;
  font-size: 14px; font-weight: 500; color: var(--ink-dim);
  transition: color 0.3s;
}
.header__link::after {
  content: ""; position: absolute; left: 0; bottom: -5px;
  width: 100%; height: 1px; background: var(--volt);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.header__link:hover { color: var(--ink); }
.header__link:hover::after { transform: scaleX(1); transform-origin: left; }
.header__cta { padding: 11px 22px; font-size: 13px; }
.header__burger {
  display: none;
  flex-direction: column; gap: 7px;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  position: relative; z-index: 210;
}
.header__burger span {
  display: block; width: 26px; height: 2px;
  background: var(--ink);
  transition: transform 0.35s var(--ease-out), opacity 0.3s, background 0.3s;
}
.header__burger.is-open span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.header__burger.is-open span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

/* ============ Mobile menu ============ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10, 10, 11, 0.97);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 32px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.45s var(--ease-out), visibility 0.45s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-menu__nav { display: flex; flex-direction: column; gap: 6px; }
.mobile-menu__link {
  display: flex; align-items: baseline; gap: 16px;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(32px, 9vw, 44px);
  padding: 8px 0;
  transform: translateY(28px); opacity: 0;
  transition: transform 0.6s var(--ease-out), opacity 0.6s;
}
.mobile-menu.is-open .mobile-menu__link { transform: translateY(0); opacity: 1; }
.mobile-menu.is-open .mobile-menu__link:nth-child(2) { transition-delay: 0.05s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(3) { transition-delay: 0.1s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(4) { transition-delay: 0.15s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(5) { transition-delay: 0.2s; }
.mobile-menu__num { font-family: var(--font-mono); font-size: 13px; color: var(--volt); }
.mobile-menu__cta { margin-top: 36px; align-self: flex-start; }
.mobile-menu__foot {
  position: absolute; bottom: 32px; left: 32px; right: 32px;
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-faint); letter-spacing: 0.12em;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 28% 45%, rgba(10, 10, 11, 0.82) 0%, rgba(10, 10, 11, 0.25) 60%, transparent 100%),
    linear-gradient(to bottom, rgba(10, 10, 11, 0.55) 0%, transparent 25%, transparent 70%, var(--bg) 100%);
  pointer-events: none;
}
.hero__content {
  position: relative; z-index: 2;
  padding: 120px var(--pad) 80px;
  max-width: 1100px;
}
.hero__kicker {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.22em; color: var(--ink-dim);
  margin-bottom: 28px;
}
.hero__kicker-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--volt);
  box-shadow: 0 0 12px var(--volt);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 9.2vw, 124px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero__line { display: block; overflow: hidden; }
.hero__line-inner { display: inline-block; will-change: transform; }
.hero__title em {
  color: var(--volt);
  text-shadow: 0 0 60px rgba(204, 255, 0, 0.35);
}
.hero__sub {
  max-width: 480px;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-dim);
  margin-bottom: 40px;
}
.hero__sub strong { color: var(--volt); font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero__partner {
  display: flex; align-items: center; gap: 14px;
  font-size: 12px; color: var(--ink-faint);
  letter-spacing: 0.06em;
}
.hero__partner-logo {
  font-family: var(--font-display); font-weight: 700;
  font-size: 17px; color: var(--ink); letter-spacing: -0.01em;
}
.hero__partner-logo em { color: var(--volt); }
.hero__scroll {
  position: absolute; bottom: 36px; left: var(--pad); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.hero__scroll-label {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.3em; color: var(--ink-faint);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--volt), transparent);
  animation: scrollLine 2s var(--ease-out) infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); }
  50% { transform: scaleY(1); }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.hero__hud {
  position: absolute; bottom: 36px; right: var(--pad); z-index: 2;
  display: flex; gap: 28px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.16em; color: var(--ink-faint);
}
.hero__hud-item--right { display: flex; align-items: center; gap: 8px; color: var(--ink-dim); }
.hero__hud-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--volt); box-shadow: 0 0 8px var(--volt);
  animation: pulse 1.6s infinite;
}

/* ============ Marquee ============ */
.marquee {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  background: var(--bg);
}
.marquee__track { display: flex; width: max-content; will-change: transform; }
.marquee__item {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(15px, 2vw, 20px);
  text-transform: uppercase; letter-spacing: 0.12em;
  white-space: nowrap; padding-right: 12px;
  color: var(--ink-dim);
}
.marquee__item i { color: var(--volt); font-style: normal; padding: 0 16px; }

/* ============ Sections shared ============ */
section { position: relative; }
.section-head { padding: clamp(80px, 12vh, 140px) var(--pad) clamp(40px, 6vh, 64px); }
.section-head__label {
  display: inline-block;
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.24em; color: var(--volt);
  margin-bottom: 20px;
}
.section-head__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(34px, 6vw, 76px);
  line-height: 1.04; letter-spacing: -0.02em;
  max-width: 14em;
}

/* ============ Stats ============ */
.stats { padding: clamp(60px, 10vh, 110px) var(--pad); }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.stat {
  background: var(--bg);
  padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 40px);
  transition: background 0.4s;
}
.stat:hover { background: var(--bg-2); }
.stat__value {
  display: flex; align-items: baseline; gap: 6px;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1; color: var(--volt);
  margin-bottom: 14px;
}
.stat__unit { font-size: 0.32em; color: var(--ink-dim); font-family: var(--font-mono); }
.stat__label { font-size: 14px; color: var(--ink-dim); max-width: 220px; }

/* ============ Pinpoint ============ */
.pinpoint { background: var(--bg); }
.pinpoint__layout {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  padding: 0 var(--pad) clamp(80px, 12vh, 140px);
}
.pinpoint__item {
  display: flex; gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.pinpoint__item:first-child { border-top: 1px solid var(--line); }
.pinpoint__num {
  font-family: var(--font-mono); font-size: 13px;
  color: var(--volt);
  width: 34px; height: 34px; flex-shrink: 0;
  border: 1px solid rgba(204, 255, 0, 0.35); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.pinpoint__item h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(19px, 2.2vw, 24px);
  margin-bottom: 8px;
}
.pinpoint__item p { color: var(--ink-dim); font-size: 15px; max-width: 440px; }
.pinpoint__cta { margin-top: 36px; }
.pinpoint__visual {
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
}
.pinpoint__demo-tag {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.22em; color: var(--volt);
}
.pinpoint__demo-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--volt);
  box-shadow: 0 0 10px var(--volt);
  animation: pulse 1.8s infinite;
}
.pinpoint__visual-glow {
  position: absolute; inset: 10% 15%;
  background: radial-gradient(ellipse at center, rgba(204, 255, 0, 0.14), transparent 70%);
  filter: blur(40px); z-index: 0;
  pointer-events: none;
}

/* Phone mockup */
.phone {
  position: relative; z-index: 1;
  width: min(320px, 78vw);
  aspect-ratio: 9 / 18.5;
  background: #0D0D10;
  border: 1px solid rgba(244, 244, 240, 0.14);
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.6),
    0 40px 80px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.phone__notch {
  position: absolute; top: 22px; left: 50%;
  transform: translateX(-50%);
  width: 86px; height: 22px;
  background: #000; border-radius: 12px; z-index: 3;
}
.phone__screen {
  height: 100%; border-radius: 34px; overflow: hidden;
  background: linear-gradient(165deg, #101014 0%, #0B0B0E 100%);
  display: flex; flex-direction: column;
  padding: 18px 16px 16px;
}
.phone__status {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-dim); padding: 4px 8px 10px;
}
.phone__appbar {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 2px 0 14px;
}
.phone__applogo { height: 28px; width: auto; }
.phone__back {
  position: absolute; left: 0; top: -2px;
  width: 34px; height: 34px;
  border: 1px solid var(--line); border-radius: 50%;
  background: var(--bg-3); color: var(--ink);
  font-size: 15px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s, color 0.3s;
}
.phone__back:hover { border-color: var(--volt); color: var(--volt); }
.phone__back[hidden] { display: none; }
.phone__views { position: relative; flex: 1; }
.phone__view {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; gap: 11px;
  opacity: 0; visibility: hidden;
}
.phone__view.is-active { opacity: 1; visibility: visible; }
.phone__viewtitle {
  font-family: var(--font-display); font-weight: 600;
  font-size: 16px; text-align: center;
  margin-bottom: 2px;
}
.pi {
  width: 16px; height: 16px; flex-shrink: 0;
  fill: none; stroke: currentColor;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  color: var(--volt);
}
.phone__card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  display: flex; flex-direction: column; gap: 12px;
}
.phone__inforow { display: flex; gap: 10px; align-items: flex-start; }
.phone__inforow .pi { margin-top: 2px; }
.phone__label {
  display: block;
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 3px;
}
.phone__label--row {
  display: flex; align-items: center; gap: 7px;
  margin: 2px 0 0;
}
.phone__label--row .pi { width: 13px; height: 13px; }
.phone__value { font-size: 12.5px; font-weight: 600; color: var(--ink); line-height: 1.4; }
.phone__value--mono { font-family: var(--font-mono); color: var(--volt); font-size: 12px; letter-spacing: 0.04em; }
.phone__actions { display: flex; flex-direction: column; gap: 9px; }
.phone__btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  background: var(--ink); color: var(--bg);
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  padding: 12px 10px; border-radius: 12px;
  transition: transform 0.25s var(--ease-out), background 0.25s, box-shadow 0.25s;
}
.phone__btn .pi { color: var(--bg); }
.phone__btn:hover {
  background: var(--volt);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(204, 255, 0, 0.25);
}
.phone__hint {
  margin-top: auto;
  font-size: 10.5px; color: var(--ink-faint);
  text-align: center; line-height: 1.5;
  padding: 0 6px 2px;
}
.phone__badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(204, 255, 0, 0.1);
  border: 1px solid rgba(204, 255, 0, 0.3);
  border-radius: 12px;
  padding: 11px 13px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 13px; color: var(--volt);
}
.phone__badge-link {
  margin-left: auto;
  font-size: 11px; font-weight: 500;
  text-decoration: underline; text-underline-offset: 3px;
  color: var(--ink);
}
.phone__badge-link:hover { color: var(--volt); }
.phone__chiprow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.phone__chip {
  font-size: 10.5px; font-weight: 500;
  padding: 9px 4px;
  border: 1px solid var(--line); border-radius: 9px;
  color: var(--ink-dim); background: var(--bg-2);
  text-align: center; line-height: 1.2;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.phone__chip:hover { border-color: rgba(204, 255, 0, 0.5); color: var(--ink); }
.phone__chip.is-selected {
  background: var(--volt); color: var(--bg);
  border-color: var(--volt); font-weight: 600;
  box-shadow: 0 0 16px rgba(204, 255, 0, 0.25);
}
.phone__chip:disabled { opacity: 0.35; pointer-events: none; }
.phone__note {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--ink-dim);
  padding: 2px 2px 0;
}
.phone__confirm {
  margin-top: auto;
  width: 100%;
  background: var(--volt); color: var(--bg);
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  padding: 13px 10px; border-radius: 12px;
  transition: opacity 0.3s, transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.phone__confirm:disabled { opacity: 0.3; pointer-events: none; }
.phone__confirm:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(204, 255, 0, 0.3); }
.phone__pin {
  background: var(--bg-3);
  border: 1px solid rgba(204, 255, 0, 0.3);
  border-radius: 14px;
  padding: 13px;
  text-align: center;
}
.phone__pin .phone__label { margin-bottom: 5px; }
.phone__pin strong {
  font-family: var(--font-display); font-weight: 700;
  font-size: 26px; letter-spacing: 0.06em;
  color: var(--volt);
  text-shadow: 0 0 24px rgba(204, 255, 0, 0.35);
}
.phone__qr { display: flex; justify-content: center; padding-top: 2px; }
.phone__qr canvas {
  width: 104px; height: 104px;
  background: #fff; border-radius: 10px;
  padding: 6px; box-sizing: content-box;
  image-rendering: pixelated;
}
.phone__track {
  background: var(--bg-3);
  border: 1px solid rgba(204, 255, 0, 0.25);
  border-radius: 14px;
  padding: 14px;
}
.phone__track-head {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: var(--ink);
  margin-bottom: 10px;
}
.phone__track-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--volt); box-shadow: 0 0 10px var(--volt);
  animation: pulse 1.4s infinite;
}
.phone__track-bar {
  height: 4px; border-radius: 4px;
  background: var(--line); overflow: hidden;
  margin-bottom: 10px;
}
.phone__track-fill {
  height: 100%; width: 0%;
  background: var(--volt); border-radius: 4px;
  box-shadow: 0 0 10px rgba(204, 255, 0, 0.5);
}
.phone__track-meta {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 10px;
  color: var(--ink-dim); letter-spacing: 0.08em;
}
#phoneEta { color: var(--volt); }

/* ============ How it works ============ */
.how { background: var(--bg-2); }
.how__pin {
  min-height: 100svh;
  display: flex; flex-direction: column;
  padding-bottom: clamp(40px, 6vh, 80px);
}
.section-head--how { padding-bottom: clamp(24px, 4vh, 48px); }
.how__stage {
  position: relative; flex: 1;
  display: flex;
  padding: 0 var(--pad);
  gap: clamp(28px, 4vw, 64px);
}
.how__progress {
  width: 2px; background: var(--line);
  border-radius: 2px; flex-shrink: 0;
}
.how__progress-fill {
  width: 100%; height: 0%;
  background: var(--volt);
  box-shadow: 0 0 12px rgba(204, 255, 0, 0.5);
  border-radius: 2px;
}
.how__steps { position: relative; flex: 1; min-height: 320px; }
.how__step {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  max-width: 720px;
}
.how__step.is-active { opacity: 1; visibility: visible; }
.how__step-num {
  display: block;
  font-family: var(--font-mono); font-size: 14px;
  letter-spacing: 0.2em; color: var(--volt);
  margin-bottom: 18px;
}
.how__step-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(34px, 5.4vw, 68px);
  line-height: 1.02; letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.how__step-text {
  font-size: clamp(15px, 1.7vw, 19px);
  color: var(--ink-dim);
  max-width: 540px;
}
.how__counter {
  position: absolute; right: var(--pad); bottom: 0;
  font-family: var(--font-mono);
  font-size: clamp(14px, 2vw, 18px);
  color: var(--ink-faint); letter-spacing: 0.1em;
}
.how__counter #howCurrent { color: var(--volt); }
.how__counter-sep { padding: 0 6px; }

/* ============ Features ============ */
.features { background: var(--bg); }
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
  margin: 0 var(--pad);
}
.feature {
  position: relative;
  background: var(--bg);
  padding: clamp(28px, 3.6vw, 48px);
  min-height: 240px;
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: background 0.45s;
}
.feature::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(204, 255, 0, 0.08), transparent 55%);
  opacity: 0; transition: opacity 0.45s;
  pointer-events: none;
}
.feature:hover::before { opacity: 1; }
.feature:hover { background: var(--bg-2); }
.feature__icon {
  font-size: 26px; color: var(--volt);
  margin-bottom: auto; line-height: 1;
}
.feature h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(19px, 2vw, 23px);
  margin: 28px 0 10px;
}
.feature p { color: var(--ink-dim); font-size: 14.5px; max-width: 320px; }
.feature__index {
  position: absolute; top: 24px; right: 26px;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-faint); letter-spacing: 0.15em;
}
.features__api {
  margin: 40px var(--pad) clamp(80px, 12vh, 140px);
  padding: 24px 28px;
  border: 1px dashed rgba(204, 255, 0, 0.3);
  border-radius: 12px;
  color: var(--ink-dim); font-size: 15px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.features__api-tag {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; color: var(--bg);
  background: var(--volt);
  padding: 6px 12px; border-radius: 6px;
  font-weight: 500;
}

/* ============ Testimonials ============ */
.testimonials { background: var(--bg-2); overflow: hidden; padding-bottom: clamp(80px, 12vh, 140px); }
.testimonials__rating { margin-top: 18px; color: var(--ink-dim); font-size: 15px; }
.testimonials__rating strong { color: var(--volt); font-family: var(--font-display); font-size: 22px; margin-right: 8px; }
.testimonials__rows { display: flex; flex-direction: column; gap: 20px; }
.testimonials__row { overflow: hidden; }
.testimonials__row-track { display: flex; gap: 20px; width: max-content; will-change: transform; }
.t-card {
  width: clamp(300px, 36vw, 480px);
  flex-shrink: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(22px, 2.6vw, 34px);
  display: flex; flex-direction: column; gap: 18px;
  transition: border-color 0.4s, transform 0.4s var(--ease-out);
}
.t-card:hover { border-color: rgba(204, 255, 0, 0.4); transform: translateY(-4px); }
.t-card blockquote {
  font-size: 15px; line-height: 1.65; color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden;
}
.t-card figcaption {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 12px;
  color: var(--ink-dim); letter-spacing: 0.06em;
  margin-top: auto;
}
.t-card__avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(204, 255, 0, 0.14);
  color: var(--volt);
  border: 1px solid rgba(204, 255, 0, 0.35);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
}

/* ============ Pitstop (volt) ============ */
.pitstop { background: var(--volt); color: var(--bg); }
.pitstop__inner { padding: clamp(80px, 12vh, 150px) var(--pad); }
.pitstop__label {
  display: inline-block;
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.24em;
  color: rgba(10, 10, 11, 0.65);
  margin-bottom: 20px;
}
.pitstop__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(34px, 6vw, 76px);
  line-height: 1.02; letter-spacing: -0.02em;
  max-width: 13em;
  margin-bottom: 24px;
}
.pitstop__sub {
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(10, 10, 11, 0.75);
  max-width: 560px;
  margin-bottom: clamp(40px, 6vh, 64px);
}
.pitstop__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(10, 10, 11, 0.18);
  border: 1px solid rgba(10, 10, 11, 0.18);
  margin-bottom: clamp(36px, 5vh, 56px);
}
.pitstop__card {
  background: var(--volt);
  padding: clamp(26px, 3vw, 42px);
  transition: background 0.35s;
}
.pitstop__card:hover { background: #D6FF33; }
.pitstop__card-num {
  display: block;
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.2em; color: rgba(10, 10, 11, 0.55);
  margin-bottom: 22px;
}
.pitstop__card h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(19px, 2.1vw, 24px);
  margin-bottom: 10px;
}
.pitstop__card p { font-size: 14.5px; color: rgba(10, 10, 11, 0.72); }
.pitstop__actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.pitstop__note { font-size: 13.5px; color: rgba(10, 10, 11, 0.65); max-width: 420px; }

/* ============ Contact ============ */
.contact { background: var(--bg); }
.contact__layout {
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(40px, 6vw, 100px);
  padding: 0 var(--pad) clamp(80px, 12vh, 140px);
}
.contact__form { display: flex; flex-direction: column; gap: 26px; }
.contact__field { display: flex; flex-direction: column; gap: 10px; }
.contact__field label {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.2em; color: var(--ink-dim);
  text-transform: uppercase;
}
.contact__field input,
.contact__field textarea {
  background: transparent;
  border: none; border-bottom: 1px solid var(--line);
  padding: 12px 2px;
  font: inherit; font-size: 16px;
  color: var(--ink);
  transition: border-color 0.35s;
  resize: vertical;
  border-radius: 0;
}
.contact__field input::placeholder,
.contact__field textarea::placeholder { color: var(--ink-faint); }
.contact__field input:focus,
.contact__field textarea:focus {
  outline: none;
  border-bottom-color: var(--volt);
}
.contact__submit { align-self: flex-start; margin-top: 8px; }
.contact__success {
  display: none;
  color: var(--volt); font-size: 15px;
}
.contact__form.is-sent .contact__success { display: block; }
.contact__form.is-sent .contact__submit { display: none; }
.contact__info {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 36px; align-content: start;
}
.contact__info-label {
  display: block;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.2em; color: var(--volt);
  margin-bottom: 10px;
}
.contact__info-block p { font-size: 14.5px; color: var(--ink-dim); line-height: 1.7; }
.contact__info-block a { transition: color 0.3s; }
.contact__info-block a:hover { color: var(--volt); }

/* ============ Footer ============ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.footer__giant {
  padding: clamp(30px, 6vh, 70px) 0 0;
  display: flex; justify-content: center;
  line-height: 0.8;
}
.footer__giant-text {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(64px, 13.5vw, 230px);
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(204, 255, 0, 0.28);
  white-space: nowrap;
  transition: color 0.8s var(--ease-out), -webkit-text-stroke-color 0.6s;
  transform: translateY(0.12em);
}
.footer__giant-text:hover {
  color: var(--volt);
  -webkit-text-stroke-color: var(--volt);
  text-shadow: 0 0 80px rgba(204, 255, 0, 0.3);
}
.footer__bottom {
  position: relative; z-index: 1;
  display: flex; justify-content: space-between; align-items: center;
  gap: 18px; flex-wrap: wrap;
  padding: 28px var(--pad) 34px;
  border-top: 1px solid var(--line);
  background: var(--bg);
  font-size: 12.5px; color: var(--ink-faint);
}
.footer__links { display: flex; gap: 26px; }
.footer__links a { transition: color 0.3s; }
.footer__links a:hover { color: var(--volt); }
.footer__credit { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; }

/* ============ Reveal defaults (JS overrides) ============ */
[data-reveal] { opacity: 0; transform: translateY(36px); }
.no-anim [data-reveal], .no-js [data-reveal] { opacity: 1; transform: none; }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .pinpoint__layout { grid-template-columns: 1fr; }
  .pinpoint__visual { order: -1; padding-top: 10px; }
  .contact__layout { grid-template-columns: 1fr; }
  .pitstop__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__burger { display: flex; }
  .hero__content { padding-top: 110px; padding-bottom: 120px; }
  .hero__hud { display: none; }
  .hero__scroll { display: none; }
  .features__grid { grid-template-columns: 1fr; }
  .feature { min-height: 0; }
  .feature__icon { margin-bottom: 0; }
  .feature h3 { margin-top: 18px; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat__label { font-size: 12.5px; }
  .how__counter { position: static; margin-top: 28px; text-align: right; }
  .how__stage { flex-direction: row; }
  .t-card blockquote { font-size: 14px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .pitstop__actions { align-items: flex-start; flex-direction: column; }
}

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
