/* TITO LOGISTICS — Landing v2 (scroll-driven)
   Aesthetic: light, premium, technical. Anton + Inter + JetBrains Mono. */

:root {
  --bg: #F4F2ED;
  --bg-2: #ECE9E2;
  --bg-3: #DEDAD0;
  --paper: #FFFFFF;
  --ink: #0B0B0B;
  --ink-2: #1A1A1A;
  --ink-3: #4A4845;
  --ink-4: #8B8884;
  --line: #D8D3CA;
  --line-2: #BFB9AD;
  --red: #E40914;
  --red-2: #C40811;
  --black: #050505;

  --font-display: "Anton", "Bebas Neue", Impact, sans-serif;
  --font-body: "Inter", -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }

.mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}

/* =====================================================
   GLOBAL CHROME — top progress bar + side rails
   ===================================================== */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 100;
  background: transparent;
}
.scroll-progress::before {
  content: ""; display: block; height: 100%;
  width: var(--p, 0%);
  background: var(--red);
  transition: width 0.05s linear;
}

.rail {
  position: fixed; top: 0; bottom: 0;
  width: 1px; background: var(--line);
  z-index: 5; pointer-events: none;
}
.rail.l { left: 32px; }
.rail.r { right: 32px; }

.tick {
  position: fixed; left: 32px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  z-index: 6;
  display: flex; align-items: center; gap: 8px;
  transform: translateX(-50%) rotate(-90deg) translateX(-50%);
  transform-origin: left center;
  pointer-events: none;
}
.tick .dot { width: 5px; height: 5px; background: var(--red); display: inline-block; }

/* =====================================================
   NAV
   ===================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 60;
  padding: 18px 56px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background-color 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(244, 242, 237, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding-top: 10px;
  padding-bottom: 10px;
}
/* When nav sits over the dark hero (default state, before scroll), text is white */
.nav:not(.scrolled) .nav-links a,
.nav:not(.scrolled) .nav-status {
  color: rgba(255,255,255,0.92);
}
.nav:not(.scrolled) .nav-status { border-left-color: rgba(255,255,255,0.25); }
.nav:not(.scrolled) .nav-links a:hover { background: rgba(255,255,255,0.12); }
.nav-left { display: flex; align-items: center; gap: 32px; }
.nav-logo {
  display: flex; align-items: center;
  padding-right: 8px;
}
.nav-logo-img { height: 64px; width: auto; max-width: 280px; display: block; object-fit: contain; }
.nav-logo-dark { display: none; }
.nav.scrolled .nav-logo-light { display: none; }
.nav.scrolled .nav-logo-dark { display: block; height: 80px; }
.nav-logo .red { color: var(--red); }
.nav-status {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-3);
  display: flex; align-items: center; gap: 8px;
  padding-left: 20px; border-left: 1px solid var(--line);
}
.live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #16A34A;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(22,163,74,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(22,163,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
}
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-2);
  padding: 8px 14px; border-radius: 4px;
  transition: background 0.15s;
}
.nav-links a:hover { background: var(--bg-2); }
.nav-cta {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 700;
  background: var(--red); color: #ffffff !important;
  padding: 10px 18px; border-radius: 4px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.15s, transform 0.15s;
}
.nav-cta:hover,
.nav-links a.nav-cta:hover { background: #b91c1c; color: #ffffff !important; transform: translateY(-1px); }
.nav-cta .arrow { transition: transform 0.2s; color: #ffffff !important; }
.nav-cta:hover .arrow { transform: translateX(2px); }

/* ---- Hamburger burger button (hidden on desktop) ---- */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  z-index: 120;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.92);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease, background 0.2s;
  transform-origin: center;
}
.nav.scrolled .nav-burger span { background: var(--ink); }
.nav.menu-open .nav-burger span { background: var(--ink); }
.nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 600;
  padding: 16px 26px; border-radius: 4px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.2s;
  cursor: pointer; border: 1px solid transparent;
}
.btn-primary { background: var(--red); color: white; }
.btn-primary:hover { background: var(--red-2); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn-ghost.dark { color: white; border-color: rgba(255,255,255,0.2); }
.btn-ghost.dark:hover { background: white; color: var(--ink); border-color: white; }
.btn-dark { background: var(--ink); color: var(--bg); }
.btn-dark:hover { background: var(--red); }
.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* =====================================================
   HERO — single screen, no overlap, image w/ overlay
   ===================================================== */
.hero {
  position: relative;
  height: 100vh; min-height: 720px;
  width: 100%;
  overflow: hidden;
  background: var(--ink);
  color: white;
}
.hero-media {
  position: absolute; inset: 0;
  background:
    /* horizon glow */
    radial-gradient(ellipse 70% 40% at 50% 58%, rgba(220,38,38,0.18) 0%, transparent 60%),
    /* sky-to-ground */
    linear-gradient(180deg, #0a0a0a 0%, #1a1411 45%, #2a1f1a 58%, #0d0a08 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
/* SVG truck silhouette + road backdrop layer */
.hero-media-img {
  position: absolute; inset: 0;
  background-image: url('assets/hero-truck-highway.jpg');
  background-size: cover;
  background-position: center 35%;
  filter: contrast(1.05) saturate(0.85) brightness(0.85);
  z-index: 0;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.75) contrast(1.05) saturate(0.9);
}
/* placeholder caption (top-right) — hidden when real photo is loaded */
.hero-media::before {
  content: "";
  display: none;
}
/* dark gradient for text legibility — sits ABOVE video */
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 30%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.92) 100%),
    linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 55%);
  z-index: 3;
  pointer-events: none;
}
/* animated road lines through center */
.hero-road {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  pointer-events: none;
  z-index: 1;
  perspective: 700px;
  perspective-origin: 50% 0%;
}
.hero-road-floor {
  position: absolute;
  bottom: 0; left: -50%; width: 200%; height: 100%;
  transform: rotateX(70deg);
  transform-origin: 50% 100%;
  background-image:
    repeating-linear-gradient(
      to bottom,
      transparent 0, transparent 80px,
      rgba(228,9,20,0.55) 80px, rgba(228,9,20,0.55) 120px
    );
  background-size: 4px 200px;
  background-position: 50% 0;
  background-repeat: no-repeat;
  animation: roadScroll 1.2s linear infinite;
  opacity: 0.7;
}
@keyframes roadScroll {
  from { background-position-y: 0; }
  to { background-position-y: 200px; }
}
.hero-road-floor::before,
.hero-road-floor::after {
  content: ""; position: absolute; top: 0; bottom: 0;
  width: 1px; background: rgba(255,255,255,0.2);
}
.hero-road-floor::before { left: 30%; }
.hero-road-floor::after { right: 30%; }

.hero-grid-fg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: calc(100%/12) 100%;
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 5;
  height: 100%;
  padding: 120px 56px 56px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 32px;
}

/* Hero meta strip top */
.hero-meta {
  display: flex; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.hero-meta span strong { color: white; font-weight: 500; }

/* Hero title — bottom left */
.hero-title-wrap { align-self: end; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 8.5vw, 124px);
  line-height: 0.88;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: white;
  max-width: 1100px;
}
.hero-title .row { display: block; overflow: hidden; }
.hero-title .row > span {
  display: inline-block;
  transform: translateY(0);
}
.hero-title .accent { color: var(--red); }
.hero-title .italic { font-style: italic; }

.hero-bottom {
  display: flex; justify-content: space-between;
  align-items: flex-end; gap: 32px; flex-wrap: wrap;
}
.hero-tagline {
  max-width: 460px;
  font-size: 15px; line-height: 1.5;
  color: rgba(255,255,255,0.85);
}
.hero-tagline strong { color: white; font-weight: 600; }
.hero-actions { display: flex; gap: 12px; }

.scroll-cue {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  z-index: 5;
}
.scroll-cue .line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, transparent 0%, white 50%, transparent 100%);
  animation: cue 1.6s ease-in-out infinite;
}
@keyframes cue {
  0% { transform: translateY(-12px); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* =====================================================
   MARQUEE
   ===================================================== */
.marquee {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  overflow: hidden;
  background: var(--bg);
}
.marquee-track {
  display: flex; gap: 56px;
  animation: marquee 50s linear infinite;
  white-space: nowrap; width: max-content;
}
.marquee-item {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-2);
  display: flex; align-items: center; gap: 18px;
}
.marquee-item .dot { width: 4px; height: 4px; background: var(--red); border-radius: 50%; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =====================================================
   CHAPTER HEADER
   ===================================================== */
.chapter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px; align-items: center;
  padding: 28px 56px 48px;
  position: relative;
}
.chapter::after { display: none; }
.chapter-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.14em;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
  padding: 12px 16px;
  display: inline-flex; align-items: center; gap: 12px;
  white-space: nowrap;
  align-self: center;
  justify-self: start;
}
.chapter-eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--red);
  display: inline-block;
  flex-shrink: 0;
}
.chapter-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.8vw, 72px);
  line-height: 0.92;
  letter-spacing: -0.005em;
  text-transform: uppercase; color: var(--ink);
}
.chapter-title br { display: none; }
.chapter-title .accent { color: var(--red); }
.chapter-title .italic { font-style: italic; }
.chapter-meta {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-3);
  text-align: right;
  line-height: 1.6;
  border-left: 1px solid var(--line);
  padding-left: 24px;
  align-self: center;
}
.chapter-meta strong { color: var(--ink); font-weight: 700; }

/* Dark variant — when chapter sits on dark section (Stats) */
.stats-chapter {
  border-top-color: var(--red);
  padding-left: 0;
  padding-right: 0;
  padding-top: 24px;
  padding-bottom: 64px;
}
.stats-chapter::after {
  left: 0; right: 0;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.5) 0, rgba(255,255,255,0.5) 8px, transparent 8px, transparent 16px);
}
.stats-chapter .chapter-eyebrow {
  background: var(--red);
  border-color: var(--red);
  color: #ffffff;
}
.stats-chapter .chapter-title { color: #ffffff; }
.stats-chapter .chapter-meta {
  color: rgba(255,255,255,0.6);
  border-left-color: rgba(255,255,255,0.18);
}
.stats-chapter .chapter-meta strong { color: #ffffff; }

/* =====================================================
   STICKY: Sticky-text on left, changing visual on right
   ===================================================== */
.pin-section {
  position: relative;
  background: var(--bg);
}
.pin-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 0 56px 120px;
}
.pin-left {
  position: relative;
}
.pin-left-sticky {
  position: sticky;
  top: 120px;
  display: flex; flex-direction: column;
  gap: 24px;
}
.pin-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-3);
  display: flex; align-items: center; gap: 12px;
}
.pin-eyebrow::before { content:""; width: 8px; height: 8px; background: var(--red); }
.pin-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 110px);
  line-height: 0.9; letter-spacing: -0.01em;
  text-transform: uppercase; color: var(--ink);
}
.pin-headline .accent { color: var(--red); }
.pin-counter {
  font-family: var(--font-mono);
  font-size: 11px; color: var(--ink-3);
  letter-spacing: 0.08em;
}
.pin-counter strong { color: var(--ink); font-weight: 600; }

.pin-right {
  position: relative;
}
.pin-right-sticky {
  position: sticky;
  top: 120px;
  height: calc(100vh - 160px);
  min-height: 480px;
  display: flex; align-items: center; justify-content: center;
}
.pin-frame {
  position: relative;
  width: 100%; height: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.pin-frame-corner {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.1em;
  color: var(--ink-3);
  z-index: 4;
}
.pin-frame-corner.tl { top: 16px; left: 16px; }
.pin-frame-corner.tr { top: 16px; right: 16px; }
.pin-frame-corner.bl { bottom: 16px; left: 16px; }
.pin-frame-corner.br { bottom: 16px; right: 16px; }

/* the placeholder image area inside pin-frame */
.pin-shot {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(135deg, var(--bg-2) 0, var(--bg-2) 8px, var(--bg-3) 8px, var(--bg-3) 16px);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.pin-shot.dark {
  background-image:
    repeating-linear-gradient(135deg, #1a1a1a 0, #1a1a1a 8px, #131313 8px, #131313 16px);
  color: rgba(255,255,255,0.45);
}
.pin-shot.photo {
  background-image: var(--photo);
  background-size: cover;
  background-position: center;
  color: rgba(255,255,255,0.9);
}
.pin-shot.photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 50%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}
.pin-shot.photo .pin-shot-label {
  position: relative;
  z-index: 1;
  background: rgba(0,0,0,0.55);
  border-color: rgba(255,255,255,0.3);
}
.pin-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}
.frame-visual.active .pin-video { /* play only when visible */ }
.pin-shot-label {
  border: 1px solid currentColor;
  padding: 8px 14px;
  background: rgba(0,0,0,0.0);
}

/* steps that drive the pin frame */
.pin-steps {
  display: flex; flex-direction: column;
  gap: 0;
}
.pin-step {
  min-height: 80vh;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 64px 0;
  border-top: 1px solid var(--line);
  position: relative;
  opacity: 0.35;
  transition: opacity 0.5s;
}
.pin-step.active { opacity: 1; }
.pin-step:first-child { border-top: none; }
.pin-step-img { display: none; }
.pin-step-vid { display: none; }
.pin-step-num {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 12px;
}
.pin-step-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.8vw, 64px); line-height: 0.95;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pin-step-desc {
  font-size: 16px; line-height: 1.55;
  color: var(--ink-3);
  max-width: 460px;
}
.pin-step-meta {
  margin-top: 20px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 460px;
}
.pin-step-meta .k {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.1em;
  color: var(--ink-4); text-transform: uppercase;
  margin-bottom: 4px;
}
.pin-step-meta .v {
  font-family: var(--font-mono);
  font-size: 13px; color: var(--ink); font-weight: 500;
}

/* visual layers inside pin-frame, switched by .active */
.frame-visual {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  display: flex; align-items: center; justify-content: center;
  transform: scale(1.05);
}
.frame-visual.active { opacity: 1; transform: scale(1); z-index: 2; }

/* =====================================================
   HORIZONTAL SCROLL — fleet specs reel
   ===================================================== */
.hscroll-wrap {
  position: relative;
  height: 320vh; /* tall outer to drive horizontal motion */
}
.hscroll-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
  color: white;
}
.hscroll-pin::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: calc(100%/12) 100%;
  pointer-events: none;
}
.hscroll-head {
  position: relative;
  z-index: 2;
  padding: 32px 56px 16px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hscroll-head .red { color: var(--red); }
.hscroll-track {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  gap: 24px;
  padding: 0 56px;
  will-change: transform;
}
.hscroll-card {
  flex: 0 0 auto;
  width: 480px;
  height: 60vh;
  min-height: 420px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 32px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.hscroll-card.first {
  border: none; background: transparent;
  width: 520px;
}
.hscroll-num {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.12em;
  color: var(--red);
}
.hscroll-card-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 4.6vw, 64px); line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: white;
}
.hscroll-card-title .accent { color: var(--red); }
.hscroll-desc {
  font-size: 14px; color: rgba(255,255,255,0.65);
  line-height: 1.5;
  max-width: 360px;
}
.hscroll-card-shot {
  flex: 1;
  position: relative;
  overflow: hidden;
  background-image:
    repeating-linear-gradient(135deg, #1a1a1a 0, #1a1a1a 8px, #131313 8px, #131313 16px);
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  text-align: center; padding: 24px;
  margin-bottom: 20px;
}
.hscroll-card-shot.photo {
  background-image: var(--photo);
  background-size: cover;
  background-position: center;
  border-style: solid;
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
}
.hscroll-card-shot.photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
}
.hscroll-specs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 16px;
}
.hscroll-specs .k {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}
.hscroll-specs .v {
  font-family: var(--font-mono);
  font-size: 14px; color: white;
  margin-top: 4px;
}
.hscroll-specs .v .accent { color: var(--red); }

.hscroll-progress {
  position: relative;
  z-index: 2;
  margin: 24px 56px 32px;
  height: 1px; background: rgba(255,255,255,0.12);
  overflow: hidden;
}
.hscroll-progress::after {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: var(--hp, 0%);
  background: var(--red);
}

/* =====================================================
   STATS — sticky big counters w/ scroll-progress fill
   ===================================================== */
.stats {
  background: var(--ink);
  color: white;
  padding: 120px 56px;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: calc(100%/12) 100%;
  pointer-events: none;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  position: relative;
}
.stat-cell {
  border-left: 1px solid rgba(255,255,255,0.12);
  padding: 32px 32px 32px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 360px;
}
.stat-cell:first-child { border-left: none; }
.stat-key {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(80px, 11vw, 160px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: white;
}
.stat-num .unit { color: var(--red); font-size: 0.32em; vertical-align: top; margin-left: 8px; }
.stat-sub {
  font-size: 14px; color: rgba(255,255,255,0.6);
  max-width: 380px; line-height: 1.4;
  margin-top: auto;
}
.stat-bar {
  height: 2px; background: rgba(255,255,255,0.1);
  position: relative; overflow: hidden;
}
.stat-bar::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: var(--pct, 0%);
  background: var(--red);
  transition: width 1.4s cubic-bezier(0.2,0.8,0.2,1);
}

/* =====================================================
   CAREERS / DRIVERS — primary CTA, dark, sticky letter wall
   ===================================================== */
.careers {
  position: relative;
  background: var(--ink);
  color: white;
  padding: 120px 56px;
  overflow: hidden;
}
.careers::after {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: calc(100%/12) 100%;
  pointer-events: none;
}
.careers-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px; align-items: start;
  position: relative; z-index: 2;
}
.careers-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.careers-eyebrow::before { content: ""; width: 8px; height: 8px; background: var(--red); }
.careers-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 6.5vw, 96px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.careers-title .accent { color: var(--red); }
.careers-title .italic { font-style: italic; }
.careers-desc {
  margin-top: 28px;
  font-size: 17px; line-height: 1.55;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
}
.careers-actions {
  margin-top: 32px;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.perks {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.perk {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.2s, background 0.2s;
}
.perk:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.04); }
.perk .num {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.12em;
  color: var(--red);
}
.perk .name {
  font-family: var(--font-display);
  font-size: 28px; line-height: 1;
  letter-spacing: -0.005em;
}
.perk .desc {
  font-size: 13px; color: rgba(255,255,255,0.6);
  line-height: 1.45;
}

/* big background letters — careers */
.bg-mega {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(140px, 22vw, 360px);
  line-height: 0.85;
  letter-spacing: -0.025em;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
}
.bg-mega.top { top: -60px; left: -40px; }
.bg-mega.bot { bottom: -120px; right: -40px; text-align: right; }

/* =====================================================
   CONTACT
   ===================================================== */
.contact {
  padding: 120px 56px;
  background: var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
}
.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 40px;
  display: flex; flex-direction: column; gap: 22px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--bg);
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--ink); background: var(--paper);
}
.field textarea { resize: vertical; min-height: 110px; }

.contact-side { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 10px;
  background: var(--paper);
  transition: border-color 0.2s;
}
.contact-card:hover { border-color: var(--ink); }
.contact-key {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-3);
}
.contact-val {
  font-family: var(--font-display);
  font-size: 28px; line-height: 1.05;
  color: var(--ink);
  letter-spacing: 0.005em;
}
.contact-val .accent { color: var(--red); }
.contact-detail { font-size: 13px; color: var(--ink-3); margin-top: 4px; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--ink); color: var(--bg);
  padding: 80px 56px 24px;
  position: relative; overflow: hidden;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand-text {
  font-family: var(--font-display);
  font-size: 32px; letter-spacing: 0.02em;
}
.footer-brand-text .red { color: var(--red); }
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  max-width: 320px;
  margin-top: 12px;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col li {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--red); }
.footer-mega-line {
  font-family: var(--font-display);
  font-size: clamp(64px, 13vw, 200px);
  line-height: 0.85; letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: center;
  margin: 64px 0 40px;
}
.footer-mega-line .stroke {
  -webkit-text-stroke: 1px var(--bg); color: transparent;
}
.footer-mega-line .accent { color: var(--red); }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
}
.footer-bottom .coords { display: flex; gap: 16px; }

/* =====================================================
   REVEAL
   ===================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s cubic-bezier(0.2,0.8,0.2,1), transform 0.9s cubic-bezier(0.2,0.8,0.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(18px); transition: opacity 0.7s cubic-bezier(0.2,0.8,0.2,1), transform 0.7s cubic-bezier(0.2,0.8,0.2,1); }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.24s; }

/* =====================================================
   SECTION SPACING
   ===================================================== */
.block { padding: 120px 0; }
.section-tag {
  position: sticky; top: 80px;
  z-index: 4;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =====================================================
   RESPONSIVE — TABLET (≤1100px)
   ===================================================== */
@media (max-width: 1100px) {
  .rail { display: none; }
  .nav { padding: 14px 32px; }
  .nav.scrolled { padding-top: 8px; padding-bottom: 8px; }
  .nav-logo-img { height: 52px; }
  .nav.scrolled .nav-logo-dark { height: 68px; }

  .hero-content { padding: 100px 40px 40px; }
  .hero-meta { gap: 16px; font-size: 10px; }
  .hero-tagline { font-size: 14px; max-width: 380px; }

  .chapter { grid-template-columns: 1fr; padding: 28px 32px 40px; gap: 14px; }
  .chapter-meta { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 12px; text-align: left; }
  .stats-chapter .chapter-meta { border-top-color: rgba(255,255,255,0.18); }

  .pin-stage { grid-template-columns: 1fr; gap: 0; padding: 0 32px 80px; }
  .pin-right { order: -1; }
  .pin-right-sticky { position: relative; top: 0; height: 55vh; min-height: 340px; margin-bottom: 32px; }
  .pin-step { min-height: auto; padding: 40px 0; }
  .pin-step-title { font-size: clamp(36px, 5.5vw, 56px); }

  .careers-grid { grid-template-columns: 1fr; gap: 48px; }
  .perks { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-cell { border-left: none; border-top: 1px solid rgba(255,255,255,0.12); padding: 32px 0 0; }
  .stat-cell:first-child, .stat-cell:nth-child(2) { border-top: none; }
  .stats, .careers, .contact { padding: 80px 32px; }

  .hscroll-card { width: 380px; }
  .hscroll-head { padding: 24px 32px 12px; }
  .hscroll-track { padding: 0 32px; }

  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* =====================================================
   RESPONSIVE — PHONE (≤720px)
   ===================================================== */
@media (max-width: 720px) {
  .rail { display: none; }
  .nav { padding: 16px 20px; }
  .nav.scrolled { padding-top: 16px; padding-bottom: 16px; }
  .nav-status { display: none; }
  .nav.scrolled .nav-status { display: flex; font-size: 8px; gap: 5px; padding-left: 10px; border-left: 1px solid var(--line); }
  .nav-left { gap: 12px; }
  .nav-logo-img { height: 44px; }
  .nav.scrolled .nav-logo-dark { height: 56px; }

  /* Mobile hamburger menu */
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    z-index: 110;
    padding: 120px 40px 60px;
  }
  .nav.menu-open .nav-links { display: flex; }
  .nav.menu-open .nav-links a:not(.nav-cta) { color: var(--ink) !important; }
  .nav-links a:not(.nav-cta) {
    display: block;
    font-size: clamp(28px, 8vw, 44px);
    font-family: var(--font-display);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink);
    padding: 12px 20px;
    width: 100%;
    text-align: center;
    border-radius: 4px;
  }
  .nav-links a:not(.nav-cta):hover { background: var(--bg-2); }
  .nav-links a.nav-cta {
    margin-top: 24px;
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 18px 32px;
    font-size: 14px;
    color: #ffffff !important;
  }

  .hero { min-height: 100svh; }
  .hero-content { display: flex; flex-direction: column; padding: 80px 20px 40px; gap: 0; grid-template-rows: unset; }
  .hero-meta { flex-direction: column; gap: 4px; font-size: 9px; margin-bottom: 15vh; }
  .hero-meta span { display: none; }
  .hero-meta span:nth-child(2) { display: block; }
  .hero-title-wrap { margin-bottom: 18px; align-self: auto; }
  .hero-title { font-size: clamp(38px, 11vw, 60px); line-height: 1.05; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero-tagline { font-size: 13px; max-width: 100%; margin-bottom: 4px; }
  .hero-actions { flex-direction: column; width: 100%; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .scroll-cue { display: none; }

  .marquee-item { font-size: 11px; }

  .chapter { grid-template-columns: 1fr; padding: 24px 20px 32px; gap: 12px; }
  .chapter-title { font-size: clamp(30px, 9vw, 48px); line-height: 1; }
  .chapter-meta { display: none; }

  .pin-stage { grid-template-columns: 1fr; gap: 0; padding: 0 20px 56px; }
  .pin-right { order: -1; }
  .pin-right-sticky { position: relative; top: 0; height: 48vw; min-height: 240px; margin-bottom: 24px; }
  .pin-step { min-height: auto; padding: 32px 0; }
  .pin-step-title { font-size: clamp(32px, 8vw, 48px); }
  .pin-step-desc { font-size: 14px; }
  .pin-step-meta { grid-template-columns: 1fr 1fr; gap: 12px; }
  .pin-frame-corner.tr, .pin-frame-corner.bl { display: none; }

  .stats-chapter { text-align: center; padding-left: 0; padding-right: 0; }
  .stats-chapter .chapter-title { font-size: clamp(28px, 8vw, 44px); }
  .stats-row { grid-template-columns: 1fr; }
  .stat-cell { border-left: none; border-top: 1px solid rgba(255,255,255,0.12); padding: 28px 0 0; min-height: 0; }
  .stat-cell:first-child { border-top: none; }
  .stat-sub { margin-top: 12px; }
  .stats, .careers, .contact { padding: 56px 20px; }

  .pin-right { display: none !important; }

  .pin-step-img {
    display: block;
    width: 100%;
    height: 52vw;
    min-height: 200px;
    max-height: 280px;
    background-image: var(--photo);
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    margin-bottom: 20px;
  }
  .pin-step-vid {
    display: block;
    width: 100%;
    height: 52vw;
    min-height: 200px;
    max-height: 280px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
  }

  .hscroll-card { width: calc(100vw - 40px); min-height: 360px; }
  .hscroll-card.first { width: calc(100vw - 40px); }
  .hscroll-head { padding: 20px 20px 10px; font-size: 10px; }
  .hscroll-track { padding: 0 20px; gap: 16px; }
  .hscroll-card-title { font-size: clamp(36px, 10vw, 52px); line-height: 1; }

  .careers-grid { grid-template-columns: 1fr; gap: 40px; }
  .perks { grid-template-columns: 1fr; gap: 16px; }
  .careers-title { font-size: clamp(44px, 13vw, 72px); line-height: 1; }

  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-side { gap: 12px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-mega-line { font-size: clamp(48px, 14vw, 100px); margin: 40px 0 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-bottom .coords { flex-wrap: wrap; gap: 10px; }
}
