/* ================================================================
   RigFix — single-page site
   Dark-first. No light mode. Hi-vis yellow accent.
   ================================================================ */

:root {
  --bg: #0e1015;
  --surface: #15181f;
  --elevated: #1b1e26;
  --border: #232831;
  --border-strong: #303644;
  --text: #f4f2ee;
  --muted: #aeb3c1;
  --subtle: #85899a;
  --navy: #3f6fb3;
  --yellow: #e5b500;
  --yellow-fg: #15181f;
  --green: #2da45e;
  --pulse: #4ade80;

  --container: 1200px;
  --container-wide: 1440px;

  --r-btn: 14px;
  --r-card: 18px;
  --r-pill: 9999px;

  --t-fast: 150ms cubic-bezier(0.2, 0.7, 0.2, 1);
  --t-spring: 420ms cubic-bezier(0.16, 1.05, 0.31, 1);
}

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

html {
  background: var(--bg);
  color: var(--text);
  font-family:
    "Inter",
    "Inter Variable",
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 17px;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background:
    radial-gradient(
      1200px 600px at 85% -10%,
      rgba(63, 111, 179, 0.1),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at -10% 20%,
      rgba(229, 181, 0, 0.04),
      transparent 70%
    ),
    var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

::selection {
  background: var(--yellow);
  color: var(--yellow-fg);
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

/* tabular nums everywhere a number sits */
.num,
time,
[data-num] {
  font-variant-numeric: tabular-nums;
}

/* ---------- Skip link / focus ---------- */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--yellow);
  color: var(--yellow-fg);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  z-index: 9999;
}
.skip:focus {
  left: 12px;
  top: 12px;
}

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

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--wide {
  max-width: var(--container-wide);
}

section {
  padding: 128px 0;
  position: relative;
}
@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--yellow);
  display: inline-block;
}
.eyebrow.no-bar::before {
  display: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 {
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
}
h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h3 {
  font-size: clamp(22px, 1.8vw, 26px);
  font-weight: 600;
  line-height: 1.25;
}

p {
  margin: 0;
}

.lead {
  font-size: 20px;
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.5;
}

.muted {
  color: var(--muted);
}
.subtle {
  color: var(--subtle);
}
.yellow-text {
  color: var(--yellow);
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 24px;
  background: rgba(14, 16, 21, 0.65);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition:
    border-color var(--t-fast),
    background var(--t-fast);
}
.header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(14, 16, 21, 0.85);
}
.header__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.brand__mark {
  width: 26px;
  height: 26px;
}
.brand__logo {
  height: 30px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.footer__brand .brand__logo {
  height: 36px;
}
.brand__pill {
  margin-left: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 4px 9px 4px 10px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .brand__pill {
    display: none;
  }
}

/* ---------- Audience toggle ---------- */
.aud-toggle {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 3px;
  font-size: 12px;
  font-weight: 600;
  gap: 0;
  margin-left: 8px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.02);
}
.aud-toggle a {
  padding: 6px 12px;
  border-radius: var(--r-pill);
  color: var(--subtle);
  transition:
    color var(--t-fast),
    background var(--t-fast);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.aud-toggle a:hover {
  color: var(--text);
}
.aud-toggle a.active {
  background: var(--text);
  color: var(--bg);
}
@media (max-width: 640px) {
  .aud-toggle {
    font-size: 11px;
  }
  .aud-toggle a {
    padding: 5px 9px;
  }
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pulse);
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
  animation: pulse 2.2s infinite;
  display: inline-block;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .dot,
  [data-reveal] {
    animation: none !important;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 32px;
}
.nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--t-fast);
}
.nav a:hover {
  color: var(--text);
}
.header__cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-btn {
  display: none;
}
@media (max-width: 960px) {
  .nav {
    display: none;
  }
  .header__cta .btn--ghost {
    display: none;
  }
  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--border);
    color: var(--text);
  }
}

/* mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(14, 16, 21, 0.96);
  backdrop-filter: blur(20px);
  padding: 80px 24px 24px;
  display: none;
  flex-direction: column;
}
.mobile-menu.is-open {
  display: flex;
}
.mobile-menu a {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.mobile-menu .menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.mobile-menu__cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: var(--r-btn);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition:
    transform var(--t-fast),
    background var(--t-fast),
    border-color var(--t-fast),
    color var(--t-fast);
  min-height: 44px;
  white-space: nowrap;
}
.btn--lg {
  min-height: 56px;
  padding: 16px 24px;
  font-size: 16px;
}
.btn--primary {
  background: var(--yellow);
  color: var(--yellow-fg);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 10px 30px -10px rgba(229, 181, 0, 0.55);
}
.btn--primary:hover {
  transform: translateY(-1px);
  background: #f0c418;
}
.btn--primary:active {
  transform: translateY(0);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn--ghost:hover {
  border-color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}
.btn .arrow {
  transition: transform var(--t-fast);
}
.btn:hover .arrow {
  transform: translateX(3px);
}

/* ---------- Hero ---------- */
.hero {
  padding-top: 160px;
  padding-bottom: 96px;
}
@media (max-width: 768px) {
  .hero {
    padding-top: 120px;
  }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.02);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}
.hero__pill .num {
  color: var(--text);
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(44px, 7.2vw, 88px);
  margin-bottom: 28px;
}
.hero h1 .accent {
  color: var(--yellow);
}
.hero h1 .muted {
  color: var(--subtle);
  display: block;
  font-weight: 700;
}

.hero__sub {
  font-size: 20px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.5;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero__meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--subtle);
  font-size: 13px;
  align-items: center;
}
.hero__meta .dot-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--border-strong);
  display: inline-block;
}

/* ---------- Phone frame ---------- */
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone-wrap::before {
  content: "";
  position: absolute;
  inset: -10% -20%;
  background: radial-gradient(
    closest-side,
    rgba(229, 181, 0, 0.1),
    transparent 70%
  );
  z-index: -1;
  pointer-events: none;
}
.phone {
  width: 360px;
  border-radius: 48px;
  background: #05070a;
  padding: 12px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 0 0 1px #2a2f3a,
    0 30px 80px -30px rgba(0, 0, 0, 0.7),
    0 50px 120px -40px rgba(63, 111, 179, 0.18);
  position: relative;
}
.phone::before {
  /* side button */
  content: "";
  position: absolute;
  left: -2px;
  top: 130px;
  width: 3px;
  height: 60px;
  background: #2a2f3a;
  border-radius: 2px;
}
.phone::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 110px;
  width: 3px;
  height: 90px;
  background: #2a2f3a;
  border-radius: 2px;
}
.phone__screen {
  background: var(--surface);
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9 / 19.5;
  display: flex;
  flex-direction: column;
}
.phone__notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 28px;
  background: #000;
  border-radius: 999px;
  z-index: 5;
}
.phone__status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px 6px;
  font-size: 12px;
  color: var(--text);
  font-weight: 600;
}
.phone__status .icons {
  display: inline-flex;
  gap: 5px;
  align-items: center;
}

/* phone screen — hero offer */
.offer {
  padding: 32px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  overflow: hidden;
}
.offer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}
.offer__head .eyebrow {
  color: var(--yellow);
  font-size: 10px;
}
.offer__timer {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  padding: 5px 9px;
  border-radius: var(--r-pill);
}
.offer__amount {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.offer__amount .currency {
  color: var(--subtle);
  font-weight: 500;
  font-size: 22px;
  margin-right: 2px;
}
.offer__issue {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-top: -8px;
}
.offer__customer {
  font-size: 13px;
  color: var(--muted);
  margin-top: -10px;
}

.offer__rows {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 4px;
}
.offer__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 12.5px;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}
.offer__row:last-child {
  border-bottom: 0;
}
.offer__row .label {
  color: var(--subtle);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}
.offer__row .value {
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
  text-align: right;
  font-size: 12.5px;
}
.offer__row .value.net {
  color: var(--green);
}

.offer__note {
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 12.5px;
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.4;
}
.offer__note .badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--yellow);
  background: rgba(229, 181, 0, 0.08);
  padding: 3px 6px;
  border-radius: 4px;
  white-space: nowrap;
  margin-top: 1px;
}

.offer__cta {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 8px;
  margin-top: auto;
}
.offer__cta .btn {
  font-size: 14px;
  padding: 13px;
}
.offer__cta .btn--ghost {
  border-color: var(--border-strong);
  color: var(--muted);
}

.offer__footer {
  text-align: center;
  font-size: 11px;
  color: var(--subtle);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  padding: 8px 0 4px;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-stat {
  padding: 8px 24px;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.trust-stat:first-child {
  border-left: 0;
  padding-left: 0;
}
.trust-stat .num {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}
.trust-stat .num .yellow-text {
  color: var(--yellow);
}
.trust-stat .desc {
  color: var(--muted);
  font-size: 14px;
}
@media (max-width: 768px) {
  .trust-strip__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
  .trust-stat {
    border-left: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

/* ---------- Problem ---------- */
.problem {
  padding-top: 144px;
  padding-bottom: 144px;
}
.problem__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
}
.problem h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.18;
  margin: 20px 0 32px;
  letter-spacing: -0.025em;
}
.problem h2 .primary-fragment {
  color: var(--text);
}
.problem h2 .muted-fragment {
  color: var(--subtle);
}
.problem p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
  max-width: 70ch;
}
.problem p.closing {
  color: var(--text);
  font-weight: 500;
  border-left: 2px solid var(--yellow);
  padding-left: 20px;
  margin-top: 32px;
  margin-bottom: 0;
}

/* ---------- How it works ---------- */
.section-head {
  max-width: 760px;
  margin: 0 0 64px;
}
.section-head h2 {
  margin: 16px 0 18px;
}
.section-head .lead {
  color: var(--muted);
}

.howitworks__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 880px) {
  .howitworks__grid {
    grid-template-columns: 1fr;
  }
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition:
    transform var(--t-spring),
    border-color var(--t-fast),
    background var(--t-fast);
  position: relative;
  overflow: hidden;
}
.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: var(--elevated);
}
.step-card__num {
  font-size: 13px;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}
.step-card h3 {
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.step-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}
.step-card__rule {
  height: 1px;
  background: var(--border);
  margin-top: 8px;
}

/* ---------- Bilingual ---------- */
.bilingual__chats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 56px;
}
@media (max-width: 880px) {
  .bilingual__chats {
    grid-template-columns: 1fr;
  }
}
.chat-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 22px;
}
.chat-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.chat-panel__who {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.chat-panel__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.chat-panel__role {
  font-size: 12px;
  color: var(--subtle);
}
.chat-panel__lang {
  font-size: 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 5px 10px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.chat-feed {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bubble {
  max-width: 88%;
  padding: 11px 14px;
  border-radius: 14px;
  font-size: 14.5px;
  line-height: 1.45;
}
.bubble.sent {
  align-self: flex-end;
  background: var(--navy);
  color: #fff;
  border-bottom-right-radius: 5px;
}
.bubble.recv {
  align-self: flex-start;
  background: var(--elevated);
  color: var(--text);
  border: 1px solid var(--border);
  border-bottom-left-radius: 5px;
}
.bubble.voice {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bubble.voice .text {
  flex: 1;
}
.bubble .wave {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.bubble .wave i {
  display: inline-block;
  width: 2px;
  background: currentColor;
  border-radius: 1px;
  opacity: 0.7;
}
.translated-badge {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--subtle);
  margin-top: 5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.bubble-wrap {
  display: flex;
  flex-direction: column;
  max-width: 88%;
}
.bubble-wrap.sent {
  align-self: flex-end;
  align-items: flex-end;
}
.bubble-wrap.recv {
  align-self: flex-start;
  align-items: flex-start;
}
.bubble-wrap .bubble {
  max-width: 100%;
}

.bilingual__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
@media (max-width: 880px) {
  .bilingual__features {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.feature-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-row__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(229, 181, 0, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
}
.feature-row h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}
.feature-row p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* ---------- Live tracking ---------- */
.tracking__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1024px) {
  .tracking__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .tracking__phone {
    order: 2;
  }
}
.tracking__phone .phone {
  width: 340px;
  margin: 0 auto;
}
.tracking-screen {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.tracking-banner {
  padding: 36px 16px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  white-space: nowrap;
}
.tracking-banner > span:nth-child(2) {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tracking-banner .dot {
  background: var(--pulse);
  width: 9px;
  height: 9px;
  flex-shrink: 0;
}
.tracking-banner .eta {
  margin-left: auto;
  color: var(--muted);
  font-weight: 500;
  flex-shrink: 0;
}

.tracking-map {
  flex: 1;
  min-height: 280px;
  background: #0b0d12;
  position: relative;
  overflow: hidden;
}
.tracking-map svg {
  width: 100%;
  height: 100%;
  display: block;
}

.tracking-card {
  background: var(--elevated);
  border-top: 1px solid var(--border);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tracking-card__row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3f6fb3, #1f3a5f);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
  border: 1px solid var(--border-strong);
}
.tracking-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tracking-card__name {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
}
.tracking-card__stats {
  font-size: 12px;
  color: var(--muted);
}
.tracking-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.tracking-card__actions .btn {
  font-size: 13px;
  padding: 10px;
  min-height: 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
}
.tracking-card__actions .btn:hover {
  border-color: var(--border-strong);
}

.bullets {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 32px;
}
.bullet {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 14px;
  align-items: start;
}
.bullet::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  margin-top: 8px;
}
.bullet h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 4px;
}
.bullet p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

/* ---------- Trust & safety ---------- */
.trust__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 880px) {
  .trust__grid {
    grid-template-columns: 1fr;
  }
}
.trust-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    border-color var(--t-fast),
    background var(--t-fast),
    transform var(--t-spring);
}
.trust-card:hover {
  border-color: var(--border-strong);
  background: var(--elevated);
  transform: translateY(-3px);
}
.trust-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(229, 181, 0, 0.06);
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.trust-card h3 {
  font-size: 20px;
}
.trust-card p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.55;
}

/* ---------- Pricing ---------- */
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 880px) {
  .pricing__grid {
    grid-template-columns: 1fr;
  }
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.price-card.elevated {
  background: var(--elevated);
  border-color: var(--border-strong);
}
.price-card__badge {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  margin-bottom: -8px;
}
.price-card__badge.navy {
  background: rgba(63, 111, 179, 0.18);
  color: #87b5f2;
  border: 1px solid rgba(63, 111, 179, 0.3);
}
.price-card__badge.yellow {
  background: rgba(229, 181, 0, 0.12);
  color: var(--yellow);
  border: 1px solid rgba(229, 181, 0, 0.3);
}

.price-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}
.price-card__name {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.price-card__price {
  text-align: right;
  line-height: 1;
}
.price-card__price .figure {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.04em;
  display: inline-block;
}
.price-card__price .figure .yellow-text {
  color: var(--yellow);
}
.price-card__price .unit {
  display: block;
  font-size: 13px;
  color: var(--subtle);
  margin-top: 6px;
}
.price-card__body {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.55;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checklist li {
  display: flex;
  gap: 12px;
  font-size: 15px;
}
.checklist li .check {
  color: var(--green);
  flex-shrink: 0;
}
.checklist li.ex .check {
  color: var(--subtle);
}
.checklist li.ex {
  color: var(--subtle);
}

.price-card .btn {
  width: 100%;
}
.price-card__caption {
  font-size: 13px;
  color: var(--subtle);
  text-align: center;
}
.pricing__foot {
  text-align: center;
  font-size: 13px;
  color: var(--subtle);
  margin-top: 24px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Founder ---------- */
.founder__card {
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 880px) {
  .founder__card {
    grid-template-columns: 1fr;
  }
}
.founder__portrait {
  background: #0b0d12;
  border-radius: 18px;
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder__portrait::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(63, 111, 179, 0.35),
    transparent 55%
  );
}
.founder__initials {
  font-size: 120px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--yellow);
  position: relative;
  font-family: "Caveat", cursive;
}
.founder__caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-size: 11px;
  color: var(--subtle);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder__copy {
  padding: 16px 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.founder__copy h2 {
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.founder__copy p {
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.6;
  max-width: 60ch;
}
.founder__sign {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  padding-top: 12px;
}
.founder__sign .signature {
  font-family: "Caveat", cursive;
  font-size: 44px;
  color: var(--text);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}
.founder__sign .divider {
  width: 36px;
  height: 1px;
  background: var(--border-strong);
  flex-shrink: 0;
}
.founder__sign .who {
  font-size: 13.5px;
  color: var(--subtle);
}
.founder__sign .who strong {
  color: var(--text);
  font-weight: 600;
}

/* ---------- FAQ ---------- */
.faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 960px) {
  .faq__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.faq__intro {
  position: sticky;
  top: 120px;
}
.faq__intro h2 {
  margin: 16px 0 18px;
}
.faq__intro p {
  color: var(--muted);
  margin-bottom: 12px;
}
.faq__intro .email {
  color: var(--text);
  font-weight: 500;
}
@media (max-width: 960px) {
  .faq__intro {
    position: static;
  }
}

.faq__list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-top: 1px solid var(--border);
}
.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}
.faq-item__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  transition: color var(--t-fast);
}
.faq-item__btn:hover {
  color: var(--yellow);
}
.faq-item__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform var(--t-fast),
    border-color var(--t-fast),
    background var(--t-fast);
  color: var(--muted);
}
.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
  border-color: var(--yellow);
  color: var(--yellow);
}
.faq-item__panel {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height var(--t-spring),
    padding-bottom var(--t-spring);
}
.faq-item.is-open .faq-item__panel {
  padding-bottom: 24px;
}
.faq-item__panel p {
  color: var(--muted);
  font-size: 16px;
  max-width: 64ch;
  line-height: 1.6;
  padding-right: 40px;
}

/* ---------- Final CTA ---------- */
.final-cta__card {
  position: relative;
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(
      closest-side at 50% 0%,
      rgba(229, 181, 0, 0.12),
      transparent 70%
    ),
    var(--elevated);
  border-radius: 28px;
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
}
.final-cta__card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -40%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(
    closest-side,
    rgba(229, 181, 0, 0.1),
    transparent 70%
  );
  pointer-events: none;
}
.final-cta__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.final-cta h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.final-cta h2 .muted-fragment {
  color: var(--subtle);
  display: block;
}
.final-cta p.sub {
  color: var(--muted);
  font-size: 18px;
  max-width: 56ch;
}
.final-cta__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 14px;
}
.final-cta__note {
  color: var(--subtle);
  font-size: 13px;
  margin-top: 12px;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
  background: var(--bg);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 880px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}
.footer__brand p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5;
  max-width: 36ch;
  margin: 16px 0 18px;
}
.footer__brand .brand__pill {
  display: inline-flex;
}
.footer__col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--subtle);
  margin: 0 0 18px;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col a {
  color: var(--muted);
  font-size: 14.5px;
  transition: color var(--t-fast);
}
.footer__col a:hover {
  color: var(--text);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  margin-top: 64px;
  padding-top: 24px;
  color: var(--subtle);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Scroll reveal (progressive enhancement) ----------
   Default: fully visible. JS adds .js-reveal-pending only to items
   that begin BELOW the fold, so initial-viewport content paints instantly. */
[data-reveal].js-reveal-pending:not(.in-view) {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 320ms cubic-bezier(0.16, 1.05, 0.31, 1),
    transform 380ms cubic-bezier(0.16, 1.05, 0.31, 1);
  will-change: opacity, transform;
}
[data-reveal].js-reveal-pending.in-view {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 320ms cubic-bezier(0.16, 1.05, 0.31, 1),
    transform 380ms cubic-bezier(0.16, 1.05, 0.31, 1);
}

/* ============================================================
   TWEAKS — expressive controls
   ============================================================ */

/* ---- Accent palette: rebinds --yellow used throughout the site ---- */
html[data-accent="blue"] {
  --yellow: #3f6fb3;
  --yellow-fg: #f4f2ee;
}
html[data-accent="blue"] .btn--primary {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 10px 30px -10px rgba(63, 111, 179, 0.55);
}
html[data-accent="blue"] .ops__feed-eta.dispatched {
  background: rgba(63, 111, 179, 0.12);
  border-color: rgba(63, 111, 179, 0.35);
  color: #87b5f2;
}
html[data-accent="blue"] .feature-row__icon {
  background: rgba(63, 111, 179, 0.1);
}
html[data-accent="blue"] .trust-card__icon {
  background: rgba(63, 111, 179, 0.08);
}
html[data-accent="blue"] .price-card__badge.yellow {
  background: rgba(63, 111, 179, 0.12);
  color: #87b5f2;
  border-color: rgba(63, 111, 179, 0.3);
}

html[data-accent="mono"] {
  --yellow: #f4f2ee;
  --yellow-fg: #0e1015;
}
html[data-accent="mono"] .btn--primary {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 10px 30px -10px rgba(244, 242, 238, 0.25);
}
html[data-accent="mono"] .ops__feed-eta.dispatched {
  background: rgba(244, 242, 238, 0.06);
  border-color: var(--border-strong);
  color: var(--text);
}
html[data-accent="mono"] .feature-row__icon,
html[data-accent="mono"] .trust-card__icon {
  background: rgba(244, 242, 238, 0.05);
}
html[data-accent="mono"] .price-card__badge.yellow {
  background: rgba(244, 242, 238, 0.06);
  color: var(--text);
  border-color: var(--border-strong);
}

/* ---- Composition mode ---- */

/* Operations: dense, terminal, more data-board */
html[data-mode="operations"] section {
  padding: 72px 0;
}
html[data-mode="operations"] .hero--fleet {
  padding-top: 116px;
  padding-bottom: 56px;
}
html[data-mode="operations"] .hero--fleet h1 {
  font-size: clamp(40px, 6.2vw, 72px);
  letter-spacing: -0.028em;
}
html[data-mode="operations"] .hero--fleet .hero__sub {
  font-size: 17px;
}
html[data-mode="operations"] h2 {
  font-size: clamp(24px, 2.6vw, 30px);
}
html[data-mode="operations"] .container {
  max-width: 1280px;
}
html[data-mode="operations"] .num,
html[data-mode="operations"] [data-num] {
  font-family:
    "JetBrains Mono", "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;
  letter-spacing: -0.02em;
}
html[data-mode="operations"] .eyebrow {
  color: var(--muted);
}
html[data-mode="operations"] .step-card,
html[data-mode="operations"] .valueprop,
html[data-mode="operations"] .trust-card {
  padding: 20px 22px;
  border-radius: 10px;
}
html[data-mode="operations"] .valueprop__num {
  font-size: 40px;
}
html[data-mode="operations"] .ops {
  margin-top: 56px;
}
html[data-mode="operations"] .ops__feed-item {
  padding: 10px 16px;
}
html[data-mode="operations"] .timeline__step {
  padding: 12px 0;
}
html[data-mode="operations"] .section-eyebrow-block {
  margin-bottom: 40px;
}
html[data-mode="operations"] .trust-strip {
  padding: 36px 0;
}
html[data-mode="operations"] .trust-stat .num {
  font-size: 36px;
}
html[data-mode="operations"] body {
  background:
    radial-gradient(
      1200px 600px at 85% -10%,
      rgba(63, 111, 179, 0.04),
      transparent 60%
    ),
    var(--bg);
}

/* Awwwards: dramatic scale, more whitespace, editorial swagger */
html[data-mode="awwwards"] section {
  padding: 176px 0;
}
html[data-mode="awwwards"] .hero--fleet {
  padding-top: 200px;
  padding-bottom: 120px;
}
html[data-mode="awwwards"] .hero--fleet h1 {
  font-size: clamp(64px, 11vw, 144px);
  letter-spacing: -0.045em;
  line-height: 0.94;
}
html[data-mode="awwwards"] .hero--fleet .hero__sub {
  font-size: 22px;
  max-width: 680px;
}
html[data-mode="awwwards"] h2 {
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.028em;
  line-height: 1.04;
}
html[data-mode="awwwards"] .lead {
  font-size: 22px;
}
html[data-mode="awwwards"] .container {
  max-width: 1320px;
}
html[data-mode="awwwards"] .section-eyebrow-block {
  margin-bottom: 80px;
  max-width: 920px;
}
html[data-mode="awwwards"] .ops {
  margin-top: 128px;
  border-radius: 32px;
}
html[data-mode="awwwards"] .step-card,
html[data-mode="awwwards"] .valueprop,
html[data-mode="awwwards"] .trust-card {
  padding: 40px 36px 44px;
  border-radius: 24px;
}
html[data-mode="awwwards"] .valueprop__num {
  font-size: 72px;
}
html[data-mode="awwwards"] .trust-stat .num {
  font-size: 64px;
}
html[data-mode="awwwards"] .price-card {
  padding: 56px 44px;
  border-radius: 32px;
}
html[data-mode="awwwards"] .final-cta__card {
  padding: 120px 48px;
  border-radius: 36px;
}
html[data-mode="awwwards"] .final-cta h2 {
  font-size: clamp(40px, 6.5vw, 88px);
}
html[data-mode="awwwards"] body {
  background:
    radial-gradient(
      1400px 700px at 85% -10%,
      rgba(63, 111, 179, 0.14),
      transparent 60%
    ),
    radial-gradient(
      1000px 600px at -10% 20%,
      rgba(229, 181, 0, 0.06),
      transparent 70%
    ),
    var(--bg);
}

/* ---- Live signal ---- */

/* Quiet: kill all pulses + halos + scroll animations */
html[data-signal="quiet"] .dot {
  animation: none !important;
  box-shadow: none !important;
}
html[data-signal="quiet"] [data-reveal] {
  transition: none !important;
}
html[data-signal="quiet"] .ops__map svg animate,
html[data-signal="quiet"] .tracking-map svg animate {
  display: none !important;
}
html[data-signal="quiet"] .ops__map svg circle[fill="url(#halo)"] {
  display: none;
}
html[data-signal="quiet"] .hero__pill .dot,
html[data-signal="quiet"] .ops__feed-status .dot,
html[data-signal="quiet"] .brand__pill .dot,
html[data-signal="quiet"] .tracking-banner .dot {
  opacity: 0.7;
}

/* Operations center: amped pulses, scanline grid, faster ticker */
html[data-signal="hot"] .dot {
  animation-duration: 1.2s !important;
  box-shadow:
    0 0 0 0 rgba(74, 222, 128, 0.7),
    0 0 8px rgba(74, 222, 128, 0.5) !important;
}
html[data-signal="hot"] .ops__map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 3px,
    rgba(74, 222, 128, 0.025) 3px,
    rgba(74, 222, 128, 0.025) 4px
  );
  pointer-events: none;
  mix-blend-mode: screen;
}
html[data-signal="hot"] .ops__feed-status::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--yellow);
  border-radius: 50%;
  margin-right: 4px;
  animation: pulse 0.8s infinite;
}
html[data-signal="hot"] .hero__pill {
  border-color: rgba(74, 222, 128, 0.35);
  background: rgba(74, 222, 128, 0.03);
}
html[data-signal="hot"] .ops__map svg circle[fill="url(#halo)"] {
  /* enlarge default halo size for emphasis */
}
html[data-signal="hot"] .num {
  transition: color 200ms;
}

/* Section divider eyebrow pattern */
.section-eyebrow-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 56px;
  max-width: 760px;
}
.section-eyebrow-block.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  align-items: center;
}

/* utility */
.row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.gap-12 {
  gap: 12px;
}
.flex-col {
  display: flex;
  flex-direction: column;
}

/* ============================================================
   FLEET PAGE
   ============================================================ */

/* ---------- Type-led hero (no phone) ---------- */
.hero--fleet {
  padding-top: 144px;
  padding-bottom: 80px;
  text-align: left;
}
.hero--fleet .hero__inner-narrow {
  max-width: 980px;
  margin: 0 auto;
}
.hero--fleet h1 {
  font-size: clamp(48px, 8vw, 104px);
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin-bottom: 36px;
}
.hero--fleet h1 .accent {
  color: var(--yellow);
}
.hero--fleet h1 .muted-fragment {
  display: block;
  color: var(--subtle);
  font-weight: 700;
  letter-spacing: -0.035em;
}
.hero--fleet .hero__sub {
  font-size: 21px;
  max-width: 640px;
  margin-bottom: 40px;
}
.hero--fleet .hero__meta {
  color: var(--subtle);
}

/* ---------- Live ops illustration ---------- */
.ops {
  margin-top: 96px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    radial-gradient(
      800px 400px at 30% 0%,
      rgba(63, 111, 179, 0.06),
      transparent 60%
    ),
    var(--surface);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 360px;
}
@media (max-width: 960px) {
  .ops {
    grid-template-columns: 1fr;
  }
}

.ops__map {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 360px;
  background: #0b0d12;
  border-right: 1px solid var(--border);
}
@media (max-width: 960px) {
  .ops__map {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
}
.ops__map svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ops__map-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ops__map-overlay .eyebrow {
  color: var(--muted);
  font-size: 10px;
}
.ops__map-overlay .ops__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.ops__map-legend {
  position: absolute;
  bottom: 18px;
  left: 20px;
  display: flex;
  gap: 16px;
  font-size: 11px;
  color: var(--muted);
  background: rgba(14, 16, 21, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: var(--r-pill);
}
.ops__map-legend .key {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.ops__map-legend .swatch {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.ops__map-legend .swatch.mech {
  background: var(--yellow);
}
.ops__map-legend .swatch.truck {
  background: var(--pulse);
}

.ops__feed {
  display: flex;
  flex-direction: column;
  border-left: 1px solid transparent;
}
.ops__feed-head {
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ops__feed-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--subtle);
}
.ops__feed-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--muted);
}

.ops__feed-list {
  padding: 6px 0;
  display: flex;
  flex-direction: column;
}
.ops__feed-item {
  padding: 14px 20px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 12px;
  border-top: 1px solid transparent;
  transition: background var(--t-fast);
}
.ops__feed-item:hover {
  background: rgba(255, 255, 255, 0.02);
}
.ops__feed-item + .ops__feed-item {
  border-top: 1px solid var(--border);
}
.ops__feed-time {
  font-size: 12px;
  font-weight: 600;
  color: var(--subtle);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}
.ops__feed-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ops__feed-issue {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.ops__feed-place {
  font-size: 12px;
  color: var(--muted);
}
.ops__feed-eta {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  background: rgba(45, 164, 94, 0.12);
  border: 1px solid rgba(45, 164, 94, 0.3);
  padding: 3px 7px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.ops__feed-eta.dispatched {
  background: rgba(229, 181, 0, 0.1);
  border-color: rgba(229, 181, 0, 0.3);
  color: var(--yellow);
}
.ops__feed-eta.complete {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-strong);
  color: var(--muted);
}

/* ---------- Value props (fleet "what you get") ---------- */
.valueprop__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .valueprop__grid {
    grid-template-columns: 1fr;
  }
}
.valueprop {
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 32px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition:
    border-color var(--t-fast),
    background var(--t-fast);
}
.valueprop:hover {
  border-color: var(--border-strong);
  background: var(--elevated);
}
.valueprop__num {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.valueprop__num .yellow-text {
  color: var(--yellow);
}
.valueprop__num .unit {
  font-size: 22px;
  color: var(--subtle);
  font-weight: 500;
  margin-left: 4px;
}
.valueprop h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.valueprop p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 44ch;
}
.valueprop__rule {
  height: 1px;
  background: var(--border);
}

/* ---------- Timeline ---------- */
.timeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 960px) {
  .timeline {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.timeline__col h2 {
  margin: 16px 0 18px;
}
.timeline__col .lead {
  color: var(--muted);
}

.timeline__list {
  position: relative;
  padding-left: 24px;
}
.timeline__list::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    var(--border) 0%,
    var(--border-strong) 30%,
    var(--border) 100%
  );
}
.timeline__step {
  position: relative;
  padding: 18px 0;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  border-top: 1px solid var(--border);
}
.timeline__step:first-child {
  border-top: 0;
  padding-top: 6px;
}
.timeline__step::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 26px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border-strong);
}
.timeline__step.live::before {
  background: var(--yellow);
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(229, 181, 0, 0.15);
}
.timeline__step.done::before {
  background: var(--pulse);
  border-color: var(--pulse);
}
.timeline__time {
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--yellow);
  text-transform: uppercase;
  padding-top: 4px;
}
.timeline__step.done .timeline__time {
  color: var(--subtle);
}
.timeline__step.future .timeline__time {
  color: var(--subtle);
}
.timeline__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.timeline__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
}
.timeline__desc {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* ---------- Bilingual (text/diagram version for fleet) ---------- */
.lingo-diagram {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  background: var(--surface);
  padding: 28px;
  align-items: center;
}
@media (max-width: 768px) {
  .lingo-diagram {
    grid-template-columns: 1fr;
    padding: 22px;
  }
}
.lingo-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lingo-side .flag {
  font-size: 12px;
  color: var(--subtle);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.lingo-side .quote {
  font-size: 18px;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.lingo-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
}
.lingo-arrow svg {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .lingo-arrow {
    transform: rotate(90deg);
    padding: 8px 0;
  }
}

/* ---------- Pricing single (fleet) ---------- */
.pricing-solo {
  max-width: 720px;
  margin: 0 auto;
}
.pricing-solo .price-card {
  padding: 48px;
}
.pricing-solo .price-card__price .figure {
  font-size: 96px;
}

/* ============================================================
   MECHANIC PAGE
   ============================================================ */

/* Payouts mock card */
.payouts-card {
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 420px;
  margin: 0 auto;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.5);
}
.payouts-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.payouts-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--subtle);
}
.payouts-card__week {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.payouts-card__total {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.payouts-card__total .currency {
  font-size: 22px;
  color: var(--subtle);
  font-weight: 500;
  margin-right: 2px;
}
.payouts-card__rows {
  display: flex;
  flex-direction: column;
}
.payout-row {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.payout-row:last-child {
  border-bottom: 0;
}
.payout-row__day {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
  padding: 4px 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--subtle);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.payout-row__day strong {
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}
.payout-row__name {
  font-weight: 500;
  color: var(--text);
}
.payout-row__issue {
  color: var(--subtle);
  font-size: 12px;
  margin-top: 2px;
}
.payout-row__amount {
  font-weight: 600;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.payouts-card__foot {
  background: rgba(45, 164, 94, 0.06);
  border: 1px solid rgba(45, 164, 94, 0.2);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.payouts-card__foot .check {
  color: var(--green);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(45, 164, 94, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* What 5% gets you list */
.fivepercent-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 880px) {
  .fivepercent-list {
    grid-template-columns: 1fr;
  }
}
.fivepercent-card {
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 24px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    border-color var(--t-fast),
    background var(--t-fast);
}
.fivepercent-card:hover {
  border-color: var(--border-strong);
  background: var(--elevated);
}
.fivepercent-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(229, 181, 0, 0.08);
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.fivepercent-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.fivepercent-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* ---------- Ops Console Prototype ---------- */
.ops-console-page {
  margin: 0;
  min-height: 100vh;
  color: #dfe7f7;
  background:
    radial-gradient(
      1200px 600px at 0% -10%,
      rgba(36, 116, 255, 0.22),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 100% 0%,
      rgba(6, 190, 165, 0.16),
      transparent 52%
    ),
    #070b14;
}
.ops-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  padding: 28px clamp(16px, 3vw, 40px) 18px;
  border-bottom: 1px solid rgba(156, 177, 219, 0.2);
}
.ops-kicker {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #93a4c5;
}
.ops-topbar h1 {
  margin: 6px 0 0;
  font-size: clamp(30px, 5vw, 44px);
  letter-spacing: -0.02em;
  color: #f5f8ff;
}
.ops-topbar__meta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.pill {
  border: 1px solid rgba(156, 177, 219, 0.28);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  color: #abbcd8;
  background: rgba(15, 27, 54, 0.6);
}
.pill.live .dot {
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
}
.ops-shell {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 1.1fr;
  gap: 16px;
  padding: 16px clamp(16px, 3vw, 40px) 40px;
}
.ops-lane,
.ops-activity {
  border: 1px solid rgba(156, 177, 219, 0.18);
  border-radius: 16px;
  background: rgba(8, 16, 34, 0.82);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
}
.ops-lane__head {
  padding: 14px 14px 10px;
  border-bottom: 1px solid rgba(156, 177, 219, 0.16);
}
.ops-lane__head h2 {
  margin: 0;
  font-size: 15px;
  letter-spacing: 0.01em;
  color: #eff4ff;
}
.ops-lane__head p {
  margin: 4px 0 0;
  font-size: 12px;
  color: #9cb0d0;
}
.ops-cards {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ops-card {
  border: 1px solid rgba(156, 177, 219, 0.2);
  border-radius: 14px;
  padding: 12px;
  background: rgba(13, 23, 45, 0.8);
}
.ops-card__row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}
.ops-card__title {
  margin: 8px 0 6px;
  font-size: 14px;
  color: #f1f5ff;
}
.ops-card__meta {
  margin: 0;
  font-size: 12px;
  color: #9cb0d0;
}
.badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(118, 145, 194, 0.35);
  border-radius: 999px;
  padding: 4px 8px;
  color: #bfd0ec;
}
.badge.urgent {
  border-color: rgba(255, 112, 112, 0.45);
  color: #ffb5b5;
}
.badge.warn {
  border-color: rgba(250, 204, 21, 0.45);
  color: #ffe58f;
}
.ops-actions {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ops-actions .btn {
  font-size: 12px;
  padding: 8px 11px;
  min-height: 0;
}
.ops-activity ul {
  margin: 0;
  padding: 12px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: #dae5fb;
}
.ops-activity li {
  border-left: 2px solid rgba(53, 122, 255, 0.5);
  padding-left: 10px;
}
.ops-activity li span {
  color: #8fa6cd;
  font-size: 11px;
  letter-spacing: 0.08em;
  margin-right: 8px;
}
.ops-card.is-done {
  border-color: rgba(74, 222, 128, 0.45);
  background: rgba(16, 62, 41, 0.34);
}
.ops-card.is-hold {
  border-color: rgba(250, 204, 21, 0.45);
  background: rgba(64, 45, 10, 0.35);
}

/* ---------- Support and legal pages ---------- */
.legal-page {
  min-height: 100vh;
}
.legal-hero {
  padding: 176px 0 48px;
}
.legal-hero h1 {
  max-width: 820px;
  margin: 16px 0 0;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}
.legal-section {
  padding: 24px 0 120px;
}
.legal-card {
  max-width: 860px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-card);
  background: rgba(21, 24, 31, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}
.legal-card h2 {
  margin: 34px 0 8px;
  font-size: 18px;
  line-height: 1.2;
}
.legal-card h2:first-child {
  margin-top: 0;
}
.legal-card p {
  margin: 0 0 18px;
  color: var(--muted);
}
.legal-card a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 760px) {
  .legal-hero {
    padding-top: 128px;
  }
  .legal-card {
    padding: 28px;
  }
}
@media (max-width: 1250px) {
  .ops-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ops-activity {
    grid-column: 1 / -1;
  }
}
@media (max-width: 760px) {
  .ops-topbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .ops-shell {
    grid-template-columns: 1fr;
  }
}
