/* ==========================================================================
   PLUMB TIRED LLC — frontterritorycontract.co
   Design system v2 — editorial / atelier. Warm paper, ink, vermillion.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --paper: #F5F0E6;
  --paper-2: #EBE3D4;
  --card: #FFFDF7;
  --ink: #15202C;
  --ink-2: #2C3A49;
  --muted: #616D7B;
  --line: rgba(21, 32, 44, 0.14);
  --line-soft: rgba(21, 32, 44, 0.08);
  --accent: #E74A2A;
  --accent-2: #C2391C;
  --accent-soft: rgba(231, 74, 42, 0.10);
  --teal: #17776E;
  --teal-soft: rgba(23, 119, 110, 0.10);
  --amber: #E8A33D;
  --white: #FFFFFF;

  --font-display: "Fraunces", Georgia, serif;
  --font-sans: "Space Grotesk", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 999px;

  --maxw: 1240px;
  --header-h: 92px;

  --shadow-sm: 0 2px 10px rgba(21, 32, 44, 0.06);
  --shadow-md: 0 18px 46px rgba(21, 32, 44, 0.12);
  --shadow-lg: 0 34px 80px rgba(21, 32, 44, 0.18);

  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* paper grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1.1em; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 0.4em;
  line-height: 1.04;
  letter-spacing: -0.015em;
}
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--accent); color: var(--paper); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--paper);
  padding: 14px 20px; z-index: 3000;
  font-family: var(--font-mono); font-size: 13px;
}
.skip-link:focus { left: 0; color: var(--paper); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   CURSOR + PROGRESS
   ========================================================================== */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 3000;
  border-radius: 50%;
  opacity: 0;
  transition: opacity .3s ease;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(21, 32, 44, 0.35);
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease), height .25s var(--ease), border-color .25s ease, opacity .3s ease;
}
.cursor-ring.is-active {
  width: 62px; height: 62px;
  border-color: var(--accent);
  background: var(--accent-soft);
}
@media (pointer: coarse), (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
}

.progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--accent);
  z-index: 4000;
  pointer-events: none;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 17px 28px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex: none; transition: transform .3s var(--ease); }
.btn:hover svg.arrow { transform: translateX(4px); }
.btn:active { transform: scale(0.97); }

.btn--primary { background: var(--ink); color: var(--paper); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(21, 32, 44, 0.28); color: var(--paper); }

.btn--accent { background: var(--accent); color: var(--paper); box-shadow: 0 10px 26px rgba(231, 74, 42, 0.3); }
.btn--accent:hover { transform: translateY(-2px); background: var(--accent-2); color: var(--paper); box-shadow: 0 16px 40px rgba(231, 74, 42, 0.38); }

.btn--outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--outline:hover { border-color: var(--ink); transform: translateY(-2px); }

.btn--paper { background: var(--paper); color: var(--ink); }
.btn--paper:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3); }

.btn--ghost-light { background: transparent; color: var(--paper); border-color: rgba(245, 240, 230, 0.4); }
.btn--ghost-light:hover { background: rgba(245, 240, 230, 0.1); color: var(--paper); }

/* ==========================================================================
   MONO EYEBROW / SECTION HEAD
   ========================================================================== */
.mono-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 22px;
}
.mono-eyebrow .sq {
  width: 9px; height: 9px;
  background: var(--accent);
  border-radius: 2px;
  flex: none;
}
.mono-eyebrow .num { color: var(--accent); }
.mono-eyebrow--center { justify-content: center; }
.mono-eyebrow--light { color: rgba(245, 240, 230, 0.75); }

.section { padding: 120px 0; position: relative; }
.section--tight { padding: 70px 0; }

.sec-head { max-width: 860px; margin-bottom: 60px; }
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head--center .mono-eyebrow { justify-content: center; }

.sec-title {
  font-size: clamp(38px, 5.4vw, 76px);
  line-height: 1.02;
  margin-bottom: 22px;
  font-weight: 400;
}
.sec-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.sec-title .mark {
  position: relative;
  white-space: nowrap;
}
.sec-title .mark::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 6px;
  height: 11px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='12' viewBox='0 0 200 12'%3E%3Cpath d='M2 9 Q 50 2 100 6 T 198 5' fill='none' stroke='%23E74A2A' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
  z-index: -1;
}
.sec-sub { font-size: 17.5px; color: var(--muted); max-width: 620px; }
.sec-head--center .sec-sub { margin: 0 auto; }

.sec-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 26px;
}

/* ==========================================================================
   SIGNAL BAR
   ========================================================================== */
.signalbar {
  background: var(--ink);
  color: rgba(245, 240, 230, 0.82);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 0;
  overflow: hidden;
}
.signalbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.signalbar__items { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.signalbar__item { display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; }
.signalbar__item a:hover { color: var(--paper); }
.signalbar__item svg { width: 13px; height: 13px; color: var(--accent); flex: none; }
.signalbar__status { display: inline-flex; align-items: center; gap: 9px; color: var(--paper); }
.signalbar__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(231, 74, 42, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(231, 74, 42, 0); }
  100% { box-shadow: 0 0 0 0 rgba(231, 74, 42, 0); }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(245, 240, 230, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.site-header.is-scrolled {
  background: rgba(245, 240, 230, 0.94);
  border-bottom-color: var(--line-soft);
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo { display: inline-flex; align-items: center; gap: 14px; }
.logo__mark { width: 42px; height: 42px; flex: none; border-radius: 12px; box-shadow: var(--shadow-sm); }
.logo__text { display: flex; flex-direction: column; line-height: 1.12; }
.logo__word {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
.logo__mono {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 34px; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__link {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  position: relative;
  padding: 6px 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__cta { margin-left: 6px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 10px;
}
.nav__toggle span {
  width: 26px; height: 2px;
  background: var(--ink);
  border-radius: 3px;
  transition: transform .3s var(--ease), opacity .3s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding: 70px 0 0;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__routes {
  position: absolute;
  top: -40px; right: -120px;
  width: 760px; height: 760px;
  opacity: 0.6;
}
.hero__routes svg { width: 100%; height: 100%; }
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
}
.hero__blob--1 { width: 520px; height: 520px; top: -140px; right: 6%; background: radial-gradient(circle, #f0dfc4, transparent 70%); }
.hero__blob--2 { width: 460px; height: 460px; bottom: -200px; left: -120px; background: radial-gradient(circle, #f8e6d2, transparent 70%); }

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 11px 18px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
}
.hero__badge .sq { width: 8px; height: 8px; background: var(--accent); border-radius: 2px; }

.hero__title {
  font-size: clamp(52px, 7.6vw, 118px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 400;
  margin-bottom: 30px;
}
.hero__title em {
  font-style: italic;
  color: var(--accent);
}
.hero__lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 36px;
}
.hero__cta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 54px; }
.hero__route-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: var(--r-pill);
  padding: 12px 18px;
}
.hero__route-chip svg { width: 60px; height: 14px; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 0;
  justify-content: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: 620px;
}
.hero__stat { padding: 24px 38px 24px 0; }
.hero__stat + .hero__stat { padding-left: 38px; border-left: 1px solid var(--line-soft); }
.hero__stat-num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero__stat-num .suf { color: var(--accent); }
.hero__stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 9px;
}

/* hero visual (3D + chips) */
.hero__visual { position: relative; min-height: 560px; }
.hero__canvas {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
}
.hero__visual.is-fallback .hero__canvas { display: none; }
.hero__visual.is-3d .hero__visual-fallback { display: none; }
.hero__visual-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__visual-fallback img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
}
.hero__chips { position: absolute; inset: 0; pointer-events: none; z-index: 3; }
.chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-md);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 12px 18px;
  animation: floaty 6s ease-in-out infinite;
}
.chip .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
}
.chip--tl { top: 8%; left: 0; animation-delay: .4s; }
.chip--tr { top: 20%; right: -2%; animation-delay: 1s; }
.chip--bl { bottom: 14%; left: 4%; animation-delay: 1.6s; }
.chip--br { bottom: 4%; right: 6%; animation-delay: 2.2s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* hero marquee */
.hero__marquee { margin-top: 60px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.marquee { overflow: hidden; padding: 20px 0; }
.marquee__track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; }
.marquee__item {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(26px, 3.4vw, 40px);
  color: var(--ink-2);
  padding: 0 26px;
  white-space: nowrap;
}
.marquee__item .dotm { color: var(--accent); font-style: normal; padding-right: 4px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   SERVICES — BENTO
   ========================================================================== */
.services { background: var(--paper); }
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.bcard {
  position: relative;
  grid-column: span 4;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 34px 30px;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s ease, border-color .4s ease;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.bcard::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 8%, var(--accent-soft), transparent 42%),
    radial-gradient(circle at 6% 100%, var(--teal-soft), transparent 40%);
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
}
.bcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(21,32,44,.22); }
.bcard:hover::before { opacity: 1; }
.bcard--wide { grid-column: span 6; }
.bcard--tall { grid-column: span 4; grid-row: span 2; min-height: 658px; }
.bcard__top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 34px; position: relative; }
.bcard__icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--paper-2);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-soft);
  transition: background .3s ease, color .3s ease, transform .4s var(--ease);
}
.bcard__icon svg { width: 30px; height: 30px; }
.bcard:hover .bcard__icon { background: var(--ink); color: var(--paper); transform: rotate(-6deg); }
.bcard__num { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.14em; color: var(--muted); }
.bcard__body { position: relative; margin-top: auto; }
.bcard__title { font-size: clamp(24px, 2.4vw, 32px); line-height: 1.08; margin-bottom: 12px; }
.bcard__title em { font-style: italic; color: var(--accent); }
.bcard__desc { font-size: 15px; color: var(--muted); margin-bottom: 20px; max-width: 460px; }
.bcard__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 4px;
}
.bcard__link svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.bcard__link:hover svg { transform: translateX(5px); }
.bcard__route {
  position: absolute;
  bottom: 26px; right: 26px;
  width: 150px; height: 90px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s ease, transform .5s var(--ease);
}
.bcard:hover .bcard__route { opacity: 1; transform: none; }
.bcard__route svg { width: 100%; height: 100%; }
.bcard__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; position: relative; }
.bcard__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 6px 12px;
}

/* ==========================================================================
   MANIFEST (about)
   ========================================================================== */
.manifest { background: var(--paper); }
.manifest__grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 72px; align-items: start; }
.manifest__media { position: relative; }
.manifest__frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.6deg);
}
.manifest__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 55%, rgba(21,32,44,0.28));
}
.manifest__frame img { width: 100%; height: 520px; object-fit: cover; transition: transform .8s var(--ease); }
.manifest__frame:hover img { transform: scale(1.05); }
.manifest__frame-tag {
  position: absolute;
  bottom: 18px; left: 18px;
  z-index: 3;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  padding: 10px 16px;
}
.manifest__coords {
  position: absolute;
  top: 22px; right: 20px;
  z-index: 3;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  padding: 10px 14px;
  border-radius: 10px;
  transform: rotate(2deg);
}
.manifest__body .sec-title { font-size: clamp(34px, 4.4vw, 60px); }
.manifest__lead {
  font-size: 19px;
  color: var(--ink-2);
  font-weight: 500;
  margin-bottom: 18px;
}
.manifest__p { color: var(--muted); margin-bottom: 34px; }

.values { display: grid; gap: 0; border-top: 1px solid var(--line); margin-bottom: 40px; }
.value {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .35s var(--ease);
}
.value:hover { padding-left: 14px; }
.value__num { font-family: var(--font-mono); font-size: 12.5px; color: var(--accent); letter-spacing: 0.1em; flex: none; width: 40px; }
.value__title { font-family: var(--font-sans); font-weight: 600; font-size: 18px; color: var(--ink); flex: 0 0 230px; }
.value__desc { font-size: 14.5px; color: var(--muted); }

/* ==========================================================================
   STATS BAND
   ========================================================================== */
.statsband {
  background: var(--ink);
  color: var(--paper);
  padding: 84px 0;
  position: relative;
  overflow: hidden;
}
.statsband::before {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  top: -200px; right: -80px;
  background: radial-gradient(circle, rgba(231,74,42,0.28), transparent 70%);
  filter: blur(40px);
}
.statsband__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.sband { text-align: center; padding: 20px 10px; border-left: 1px solid rgba(245,240,230,0.14); }
.sband:first-child { border-left: none; }
.sband__num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  color: var(--paper);
  letter-spacing: -0.02em;
}
.sband__num .suf { color: var(--accent); }
.sband__label {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.6);
}

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.pstep { position: relative; padding: 40px 30px 40px 0; border-top: 2px solid var(--line); }
.pstep__line {
  position: absolute;
  top: -2px; left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .7s var(--ease) .2s;
}
.pstep.is-in .pstep__line { width: 100%; }
.pstep__num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 60px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.pstep__num::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ink);
}
.pstep__title { font-size: 25px; line-height: 1.1; margin-bottom: 12px; }
.pstep__desc { font-size: 14.5px; color: var(--muted); }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq { max-width: 880px; margin: 0 auto; }
.faq__item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.faq__item.is-open { border-color: rgba(21,32,44,.22); box-shadow: var(--shadow-sm); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  padding: 26px 28px;
}
.faq__icon {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s var(--ease), background .3s ease, color .3s ease, border-color .3s ease;
}
.faq__icon svg { width: 15px; height: 15px; }
.faq__item.is-open .faq__icon { transform: rotate(45deg); background: var(--ink); color: var(--paper); border-color: var(--ink); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq__a-inner { padding: 0 28px 26px; }
.faq__a-inner p { margin: 0; font-size: 15px; color: var(--muted); line-height: 1.7; }
.faq__a-inner a { font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); }
.faq__a-inner a:hover { color: var(--accent); border-color: var(--accent); }

/* ==========================================================================
   FLEET — horizontal scroller
   ========================================================================== */
.fleet { background: var(--paper-2); overflow: hidden; }
.fleet__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 50px; }
.fleet__controls { display: flex; gap: 12px; }
.fleet__btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--card);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease, color .3s ease, transform .3s var(--ease), border-color .3s ease;
}
.fleet__btn:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateY(-2px); }
.fleet__btn svg { width: 22px; height: 22px; }
.fleet__btn.is-disabled { opacity: 0.35; pointer-events: none; }

.fleet__scroller {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  cursor: grab;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.fleet__scroller::-webkit-scrollbar { display: none; }
.fleet__scroller.is-dragging { cursor: grabbing; }
.fleet__track { display: flex; gap: 22px; width: max-content; }
.fleet-card {
  scroll-snap-align: start;
  width: 420px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s ease;
  flex: none;
}
.fleet-card:hover { transform: translateY(-8px) rotate(-0.6deg); box-shadow: var(--shadow-lg); }
.fleet-card__media { position: relative; height: 300px; overflow: hidden; }
.fleet-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.02);
  transition: filter .5s ease, transform .7s var(--ease);
}
.fleet-card:hover .fleet-card__media img { filter: grayscale(0); transform: scale(1.06); }
.fleet-card__index {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  padding: 8px 12px;
  border-radius: var(--r-pill);
}
.fleet-card__type {
  position: absolute;
  bottom: 16px; left: 16px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 14px;
  border-radius: var(--r-pill);
}
.fleet-card__body { padding: 26px 28px 28px; }
.fleet-card__title { font-size: 26px; margin-bottom: 8px; }
.fleet-card__desc { font-size: 14.5px; color: var(--muted); margin-bottom: 18px; }
.fleet-card__specs { display: flex; gap: 8px; flex-wrap: wrap; }
.fleet-card__spec {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 7px 12px;
  background: var(--paper);
}

/* ==========================================================================
   COVERAGE — map
   ========================================================================== */
.coverage__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px; align-items: center; }
.coverage__map {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: 40px;
  position: relative;
}
.coverage__map svg { width: 100%; height: auto; display: block; }
.coverage__map-label {
  position: absolute;
  top: 26px; left: 34px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.coverage__map-label .sq { display: inline-block; width: 8px; height: 8px; background: var(--accent); border-radius: 2px; margin-right: 9px; }
.coverage__note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.coverage__note .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); animation: pulse 2.4s infinite; }

.coverage__list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.region {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 6px;
  border-bottom: 1px solid var(--line);
  transition: padding-left .35s var(--ease);
}
.region:hover { padding-left: 16px; }
.region__name { font-family: var(--font-sans); font-weight: 600; font-size: 17px; color: var(--ink); }
.region__states {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 5px;
}
.region__time {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--accent);
  white-space: nowrap;
}
.region__time span { display: block; font-size: 10px; letter-spacing: 0.12em; color: var(--muted); text-transform: uppercase; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials__wrap { max-width: 980px; margin: 0 auto; }
.tquote {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: 70px 74px 60px;
}
.tquote__slide { display: none; }
.tquote__slide.is-active { display: block; animation: tFade .6s var(--ease); }
@keyframes tFade {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
.tquote__mark {
  position: absolute;
  top: 44px; left: 52px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tquote__mark svg { width: 24px; height: 24px; }
.tquote__text {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.28;
  font-weight: 400;
  color: var(--ink);
  margin: 26px 0 36px;
}
.tquote__text em { color: var(--accent); font-style: italic; }
.tquote__author { display: flex; align-items: center; gap: 16px; }
.tquote__avatar {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 16px;
  color: var(--paper);
  flex: none;
}
.tquote__avatar--a { background: var(--ink); }
.tquote__avatar--b { background: var(--accent); }
.tquote__avatar--c { background: var(--teal); }
.tquote__name { font-family: var(--font-sans); font-weight: 600; font-size: 16.5px; color: var(--ink); }
.tquote__role { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.tquote__meta { margin-left: auto; text-align: right; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; }

.t-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 34px; }
.t-nav__btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease, color .3s ease, transform .3s var(--ease);
}
.t-nav__btn:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.t-nav__btn svg { width: 20px; height: 20px; }
.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 9px; height: 9px;
  border: none;
  border-radius: 50%;
  background: var(--line);
  transition: background .3s ease, transform .3s var(--ease);
}
.t-dot.is-active { background: var(--accent); transform: scale(1.35); }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
  background: var(--ink);
  color: var(--paper);
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 620px; height: 620px;
  border-radius: 50%;
  top: -260px; right: -140px;
  background: radial-gradient(circle, rgba(231,74,42,0.3), transparent 68%);
  filter: blur(40px);
}
.cta-band::after {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  bottom: -240px; left: -120px;
  background: radial-gradient(circle, rgba(23,119,110,0.28), transparent 68%);
  filter: blur(40px);
}
.cta-band__inner { position: relative; z-index: 1; text-align: center; max-width: 900px; margin: 0 auto; }
.cta-band__title {
  font-size: clamp(44px, 7vw, 104px);
  line-height: 0.98;
  color: var(--paper);
  margin-bottom: 26px;
}
.cta-band__title em { font-style: italic; color: var(--accent); }
.cta-band__sub { font-size: 18px; color: rgba(245,240,230,0.72); max-width: 620px; margin: 0 auto 42px; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band__mono {
  margin-top: 40px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.5);
}
.cta-band__mono .sq { color: var(--accent); }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: start; }
.contact__lead { font-size: 19px; color: var(--muted); margin-bottom: 40px; }
.cinfo { padding: 26px 0; border-top: 1px solid var(--line); display: flex; gap: 22px; align-items: flex-start; }
.cinfo__icon {
  width: 46px; height: 46px;
  flex: none;
  border-radius: 13px;
  background: var(--paper-2);
  border: 1px solid var(--line-soft);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cinfo__icon svg { width: 22px; height: 22px; }
.cinfo__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.cinfo__value { font-size: 17px; color: var(--ink); font-weight: 500; line-height: 1.45; }
.cinfo__value a:hover { color: var(--accent); }
.cinfo__value .muted { color: var(--muted); font-weight: 400; }

.contact__form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: 46px 48px;
}
.contact__form h3 { font-size: 34px; margin-bottom: 8px; }
.contact__form > p { font-size: 15px; color: var(--muted); margin-bottom: 32px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 24px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2); }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  font-family: var(--font-sans);
  font-size: 15.5px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--line);
  border-radius: 0;
  padding: 12px 2px;
  transition: border-color .3s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}
.field-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: var(--muted);
}
.field-check input { width: 17px; height: 17px; margin-top: 3px; accent-color: var(--accent); flex: none; }
.field-check a { color: var(--ink); font-weight: 600; border-bottom: 1px solid var(--line); }
.field-check a:hover { color: var(--accent); border-color: var(--accent); }
.form-actions { margin-top: 30px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.form-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 22px;
}
.form-note svg { width: 16px; height: 16px; color: var(--teal); flex: none; }
.form-status { display: none; margin-top: 20px; padding: 16px 18px; border-radius: 12px; font-size: 14.5px; font-weight: 500; }
.form-status.is-success { display: block; background: var(--teal-soft); color: var(--teal); border: 1px solid rgba(23,119,110,.35); }
.form-status.is-error { display: block; background: var(--accent-soft); color: var(--accent-2); border: 1px solid rgba(231,74,42,.35); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--ink); color: rgba(245,240,230,0.66); }
.footer__top { padding: 96px 0 60px; }
.footer__wordmark {
  font-family: var(--font-display);
  font-size: clamp(54px, 10vw, 150px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 30px;
  font-weight: 400;
}
.footer__wordmark em { color: var(--accent); font-style: italic; }
.footer__grid { display: grid; grid-template-columns: 1.3fr 0.9fr 1fr 1.4fr; gap: 44px; padding: 54px 0 20px; border-top: 1px solid rgba(245,240,230,0.12); }
.footer__brandline { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,240,230,0.5); margin-bottom: 18px; }
.footer__desc { font-size: 14.5px; color: rgba(245,240,230,0.6); max-width: 320px; margin-bottom: 24px; }
.footer__badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.8);
  border: 1px solid rgba(245,240,230,0.2);
  border-radius: var(--r-pill);
  padding: 8px 13px;
}
.footer__badge svg { width: 13px; height: 13px; color: var(--accent); }
.footer__heading {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.5);
  margin-bottom: 24px;
  font-weight: 500;
}
.footer__links { display: grid; gap: 13px; }
.footer__link {
  font-size: 14.5px;
  color: rgba(245,240,230,0.7);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
}
.footer__link svg { width: 13px; height: 13px; color: var(--accent); opacity: 0; transform: translateX(-5px); transition: opacity .25s ease, transform .25s ease; }
.footer__link:hover { color: var(--paper); }
.footer__link:hover svg { opacity: 1; transform: none; }
.footer__contact { display: grid; gap: 18px; }
.footer__contact-item { display: flex; gap: 13px; }
.footer__contact-item svg { width: 17px; height: 17px; color: var(--accent); flex: none; margin-top: 4px; }
.footer__contact-item strong { display: block; color: var(--paper); font-family: var(--font-sans); font-size: 14.5px; margin-bottom: 3px; }
.footer__contact-item span, .footer__contact-item a { font-size: 14px; line-height: 1.55; color: rgba(245,240,230,0.66); }
.footer__contact-item a:hover { color: var(--accent); }
.footer__mono {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(245,240,230,0.12);
  padding-top: 26px;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.45);
}
.footer__mono a:hover { color: var(--paper); }
.footer__marquee { border-top: 1px solid rgba(245,240,230,0.12); }
.footer__marquee .marquee__item { color: rgba(245,240,230,0.35); }

/* ==========================================================================
   PAGE HERO + LEGAL (policy pages)
   ========================================================================== */
.page-hero {
  background: var(--paper);
  padding: 90px 0 70px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  top: -200px; right: -100px;
  background: radial-gradient(circle, #f0dfc4, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__crumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 26px;
}
.page-hero__crumb a { color: var(--ink); }
.page-hero__crumb a:hover { color: var(--accent); }
.page-hero__crumb svg { width: 13px; height: 13px; color: var(--accent); }
.page-hero h1 {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
  margin-bottom: 18px;
}
.page-hero p { font-size: 18px; color: var(--muted); max-width: 640px; margin: 0; }
.page-hero__meta {
  display: flex;
  gap: 26px;
  margin-top: 30px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.page-hero__meta span { display: inline-flex; align-items: center; gap: 9px; }
.page-hero__meta svg { width: 14px; height: 14px; color: var(--accent); }

.legal { padding: 90px 0 130px; }
.legal__wrap {
  max-width: 900px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: 64px 72px;
}
.legal__toc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px 30px;
  margin-bottom: 40px;
}
.legal__toc strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.legal__toc ol { margin: 0; padding-left: 20px; display: grid; gap: 7px; }
.legal__toc li a { font-size: 14.5px; color: var(--ink-2); }
.legal__toc li a:hover { color: var(--accent); }
.legal h2 {
  font-family: var(--font-display);
  font-size: 29px;
  font-weight: 500;
  margin: 46px 0 16px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.legal h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.legal h3 { font-family: var(--font-display); font-size: 22px; font-weight: 500; margin: 28px 0 10px; }
.legal p, .legal li { font-size: 15.5px; color: var(--muted); line-height: 1.7; }
.legal ul, .legal ol { margin: 0 0 20px; padding-left: 22px; display: grid; gap: 8px; }
.legal ul { list-style: none; }
.legal ul li { position: relative; padding-left: 18px; }
.legal ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 7px; height: 7px;
  border-radius: 2px;
  background: var(--accent);
}
.legal ol { list-style: decimal; }
.legal a { font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); }
.legal a:hover { color: var(--accent); border-color: var(--accent); }
.legal table { width: 100%; border-collapse: collapse; margin: 20px 0 28px; font-size: 14px; }
.legal table th, .legal table td {
  text-align: left;
  padding: 13px 14px;
  border: 1px solid var(--line);
}
.legal table th { background: var(--paper); font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); }
.legal table td { color: var(--muted); }
.legal .updated {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: var(--accent-soft);
  border: 1px solid rgba(231,74,42,.25);
  padding: 9px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 30px;
}
.legal .updated svg { width: 14px; height: 14px; }
.legal blockquote {
  margin: 24px 0;
  padding: 20px 26px;
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  color: var(--ink);
  font-weight: 500;
}

/* ==========================================================================
   COOKIE CONSENT + BACK TOP
   ========================================================================== */
.cookie-consent {
  position: fixed;
  left: 26px; bottom: 26px;
  z-index: 2500;
  max-width: 420px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 26px 28px;
  transform: translateY(130%);
  opacity: 0;
  transition: transform .5s var(--ease), opacity .5s ease;
}
.cookie-consent.is-visible { transform: none; opacity: 1; }
.cookie-consent__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.cookie-consent__icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-consent__icon svg { width: 21px; height: 21px; }
.cookie-consent strong { font-family: var(--font-sans); font-weight: 600; font-size: 16px; color: var(--ink); }
.cookie-consent p { font-size: 13.5px; color: var(--muted); margin: 0 0 18px; }
.cookie-consent__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-consent__actions .btn { padding: 12px 20px; font-size: 11.5px; }
.cookie-consent__more { display: inline-block; margin-left: 6px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--ink); border-bottom: 1px solid var(--line); }

.back-top {
  position: fixed;
  right: 26px; bottom: 26px;
  z-index: 2400;
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--card);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, background .3s ease, color .3s ease;
}
.back-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.back-top:hover { background: var(--ink); color: var(--paper); }
.back-top svg { width: 20px; height: 20px; }

/* ==========================================================================
   REVEAL
   ========================================================================== */
.reveal { transition: opacity .9s var(--ease), transform .9s var(--ease); will-change: opacity, transform; }
html.js-ready .reveal { opacity: 0; transform: translateY(40px); }
html.js-ready .reveal.is-in { opacity: 1; transform: none; }
.reveal-1 { transition-delay: .08s; }
.reveal-2 { transition-delay: .16s; }
.reveal-3 { transition-delay: .24s; }
.reveal-4 { transition-delay: .32s; }

/* draw-on route lines */
.draw path.route { stroke-dasharray: 900; stroke-dashoffset: 900; transition: stroke-dashoffset 1.8s var(--ease); }
.is-in .draw path.route { stroke-dashoffset: 0; }
.route-line {
  stroke-dasharray: 6 9;
  animation: dashflow 2.4s linear infinite;
}
@keyframes dashflow { to { stroke-dashoffset: -60; } }

section[id] { scroll-margin-top: calc(var(--header-h) + 20px); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; gap: 10px; }
  .hero__visual { min-height: 480px; }
  .hero__canvas { min-height: 480px; }
  .manifest__grid { grid-template-columns: 1fr; gap: 56px; }
  .coverage__grid { grid-template-columns: 1fr; gap: 48px; }
  .contact__grid { grid-template-columns: 1fr; gap: 52px; }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .bcard--tall { grid-row: auto; min-height: 340px; }
  .bento { grid-template-columns: repeat(6, 1fr); }
  .bcard, .bcard--tall, .bcard--wide { grid-column: span 6; }
  .bcard--wide { grid-column: span 6; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 88px 0; }
  .container { padding: 0 20px; }
  .nav__links {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 22px 24px 28px;
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: transform .35s var(--ease), opacity .3s ease;
    z-index: 950;
  }
  .nav__links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__link { padding: 13px 0; font-size: 14px; border-bottom: 1px solid var(--line-soft); }
  .nav__link::after { display: none; }
  .nav__cta { margin: 12px 0 0; }
  .nav__toggle { display: flex; }
  .signalbar__items { gap: 14px; }
  .hero { padding-top: 46px; }
  .hero__title { font-size: clamp(44px, 13vw, 64px); }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .hero__stat { padding: 20px 18px 20px 0; }
  .hero__stat + .hero__stat { padding-left: 18px; }
  .hero__stat:nth-child(3) { padding-left: 0; border-left: none; grid-column: 1 / -1; border-top: 1px solid var(--line-soft); padding-top: 20px; }
  .hero__visual { min-height: 380px; }
  .hero__canvas { min-height: 380px; }
  .hero__routes { width: 520px; height: 520px; right: -220px; }
  .bento { gap: 14px; }
  .bcard { padding: 26px 24px 24px; min-height: 300px; }
  .bcard__route { display: none; }
  .process__grid { grid-template-columns: 1fr; gap: 10px; }
  .statsband__grid { grid-template-columns: 1fr 1fr; gap: 34px 14px; }
  .sband:nth-child(2) { border-left: none; }
  .value { flex-direction: column; gap: 8px; }
  .value__title { flex: none; }
  .fleet-card { width: 300px; }
  .fleet__head { flex-direction: column; align-items: flex-start; }
  .tquote { padding: 56px 28px 44px; }
  .tquote__mark { top: 26px; left: 28px; }
  .tquote__meta { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .contact__form { padding: 30px 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__wordmark { font-size: clamp(46px, 14vw, 70px); }
  .legal__wrap { padding: 36px 26px; }
  .legal table { font-size: 12.5px; }
  .cookie-consent { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .back-top { right: 16px; bottom: 16px; width: 48px; height: 48px; }
  .chip--tr { right: 0; }
  .chip--br { right: 0; }
}
