/* ============ TOKENS ============ */
:root {
  --navy-900: #060E1F;
  --navy-800: #0A1733;
  --navy-700: #0F1F44;
  --navy-600: #162A56;
  --navy-500: #1E3668;
  --navy-400: #2A4680;
  --navy-line: rgba(255,255,255,0.08);
  --navy-line-strong: rgba(255,255,255,0.14);

  --orange: #FF6B35;
  --orange-hot: #FF824F;
  --orange-deep: #E55420;

  --cream: #F5F1EA;
  --cream-2: #EDE8DF;
  --paper: #FBF8F2;

  --ink: #0A1733;
  --ink-soft: #2A3550;
  --gray: #6E6A62;        /* warm gray body */
  --gray-soft: #8F8A80;
  --gray-line: #D9D4C8;

  --green: #22C55E;
  --green-dark: #16A34A;
  --red-soft: #E05B4A;

  --mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  --display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --sans: 'Inter', system-ui, sans-serif;

  --maxw: 1280px;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
}

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

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, border-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn-big { padding: 18px 28px; font-size: 17px; }

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.35) inset, 0 10px 24px -8px rgba(255,107,53,0.55);
}
.btn-primary:hover { background: var(--orange-hot); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  border: 1px solid var(--navy-line-strong);
  color: #fff;
  background: rgba(255,255,255,0.03);
}
.hero .btn-ghost:hover { background: rgba(255,255,255,0.08); }

/* ============ TOP BAR ============ */
.top-bar {
  background: var(--navy-900);
  color: #fff;
  font-size: 13px;
  border-bottom: 1px solid var(--navy-line);
  position: sticky;
  top: 0;
  z-index: 80;
}
.top-bar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); display: inline-block; }
.dot-pulse {
  box-shadow: 0 0 0 0 rgba(255,107,53,0.7);
  animation: pulseDot 1.8s infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(255,107,53,0.65); }
  70% { box-shadow: 0 0 0 10px rgba(255,107,53,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,107,53,0); }
}
.top-bar-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--orange);
  font-weight: 600;
}
.top-bar-text { color: rgba(255,255,255,0.85); }
.top-bar-text b { color: #fff; font-variant-numeric: tabular-nums; }
.top-bar-cta {
  font-weight: 600;
  color: var(--orange);
  border-bottom: 1px solid transparent;
}
.top-bar-cta:hover { border-bottom-color: var(--orange); }

/* ============ NAV ============ */
.nav {
  background: var(--navy-800);
  color: #fff;
  border-bottom: 1px solid var(--navy-line);
  position: sticky;
  top: 39px;
  z-index: 70;
  backdrop-filter: blur(8px);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-logo {
  width: 32px; height: 32px;
  border-radius: 7px;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--navy-line-strong);
}
.brand-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.nav-links { display: flex; gap: 28px; font-size: 14px; color: rgba(255,255,255,0.75); }
.nav-links a:hover { color: #fff; }

/* ============ HERO ============ */
.hero {
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(255,107,53,0.08), transparent 60%),
    radial-gradient(800px 600px at 20% 120%, rgba(30,54,104,0.6), transparent 60%),
    var(--navy-800);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 72px 28px 96px;
}
.scan-lines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.015) 0 1px,
    transparent 1px 3px
  );
  pointer-events: none;
  mix-blend-mode: overlay;
}
.hero-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 35fr) minmax(0, 65fr);
  gap: 56px;
  align-items: start;
  min-width: 0;
}
.hero-left { padding-top: 16px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  border: 1px solid var(--navy-line-strong);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
  text-transform: uppercase;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

.hero-headline {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(44px, 5.6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 24px 0 20px;
  text-wrap: balance;
}
.headline-accent {
  color: var(--orange);
  font-style: italic;
  font-weight: 500;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  max-width: 48ch;
  margin: 0 0 28px;
  text-wrap: pretty;
}
.hero-sub b { color: #fff; }

.ea-callout {
  display: grid;
  grid-template-columns: 4px 1fr;
  gap: 16px;
  background: linear-gradient(90deg, rgba(255,107,53,0.14), rgba(255,107,53,0.02));
  border: 1px solid rgba(255,107,53,0.35);
  padding: 16px 18px;
  border-radius: 12px;
  margin-bottom: 28px;
}
.ea-callout-bar {
  background: var(--orange);
  border-radius: 2px;
}
.ea-callout-title {
  font-weight: 600;
  font-size: 15.5px;
  color: #fff;
  letter-spacing: -0.01em;
}
.ea-callout-body {
  font-size: 13.5px;
  color: rgba(255,255,255,0.72);
  margin-top: 4px;
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--navy-line);
}
.trust-item { display: inline-flex; flex-direction: column; gap: 2px; }
.trust-num {
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
}
.trust-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.trust-sep { width: 1px; height: 26px; background: var(--navy-line-strong); }

/* ============ TERMINAL (hero right) ============ */
.hero-right { position: relative; min-width: 0; }
.terminal {
  background: #061026;
  border: 1px solid var(--navy-line-strong);
  border-radius: 14px;
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.03) inset;
  overflow: hidden;
  font-family: var(--sans);
  position: relative;
  min-width: 0;
  max-width: 100%;
}
.terminal::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(to bottom, rgba(255,255,255,0.02) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
}

.term-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #0A1635, #07102A);
  border-bottom: 1px solid var(--navy-line);
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}
.term-dots { display: flex; gap: 6px; }
.term-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.term-dots span:nth-child(1) { background: #FF5F57; }
.term-dots span:nth-child(2) { background: #FEBC2E; }
.term-dots span:nth-child(3) { background: #28C840; }
.term-title {
  display: inline-flex; align-items: center; gap: 8px;
  margin-left: 4px;
}
.term-status-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulseDot 1.8s infinite;
}
.term-meta { margin-left: auto; }

.term-kpis {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(0, 1.6fr) minmax(0, 1fr);
  border-bottom: 1px solid var(--navy-line);
  min-width: 0;
}
.kpi {
  padding: 14px 16px;
  border-right: 1px solid var(--navy-line);
}
.kpi:last-child { border-right: 0; }
.kpi-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}
.kpi-value {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.kpi-green { color: var(--green); }

.term-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  min-height: 360px;
  min-width: 0;
}

/* Map */
.term-map {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--navy-line);
  min-width: 0;
  overflow: hidden;
}
.map-header, .map-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-family: var(--mono);
  font-size: 10.5px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.map-header { border-bottom: 1px solid var(--navy-line); }
.map-footer {
  border-top: 1px solid var(--navy-line);
  gap: 16px;
  font-size: 10px;
}
.map-legend {
  margin-left: auto;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: rgba(255,255,255,0.55);
  font-size: 10px;
  letter-spacing: 0.08em;
}
.legend-dot {
  width: 7px; height: 7px; border-radius: 50%;
  display: inline-block;
  margin: 0 4px 0 4px;
  vertical-align: middle;
}
.legend-go { background: var(--orange); box-shadow: 0 0 6px var(--orange); }
.legend-pick { background: #FFD166; box-shadow: 0 0 6px #FFD166; }
.legend-drop { background: var(--green); box-shadow: 0 0 6px var(--green); }
.mf-item { color: rgba(255,255,255,0.55); }

.map-canvas {
  flex: 1;
  position: relative;
  background:
    radial-gradient(ellipse at 55% 55%, rgba(30,54,104,0.5) 0%, transparent 70%),
    #04091A;
  overflow: hidden;
}
.map-canvas svg.usmap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.92;
}
.map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

/* Map pins */
.pin {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.pin::before {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.25;
  animation: pinPulse 2.2s infinite;
}
.pin::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}
.pin-go { color: var(--orange); }
.pin-pick { color: #FFD166; }
.pin-drop { color: var(--green); }
@keyframes pinPulse {
  0% { transform: scale(1); opacity: 0.45; }
  100% { transform: scale(2.8); opacity: 0; }
}

.pin-label {
  position: absolute;
  transform: translate(-50%, calc(-100% - 6px));
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: #fff;
  background: rgba(6,16,38,0.9);
  border: 1px solid var(--navy-line-strong);
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
}

/* Feed */
.term-feed {
  display: flex;
  flex-direction: column;
  background: #050D22;
  min-width: 0;
  overflow: hidden;
}
.feed-head {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid var(--navy-line);
  font-family: var(--mono);
  font-size: 10.5px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.feed-title { flex: 1; }
.feed-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange);
  animation: pulseDot 1.8s infinite;
}
.feed-list {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.feed-item {
  padding: 12px 14px;
  border-bottom: 1px dashed var(--navy-line);
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  transform: translateY(-12px);
  opacity: 0;
  animation: feedEnter .5s ease forwards;
}
@keyframes feedEnter {
  to { transform: translateY(0); opacity: 1; }
}
.feed-item-row { display: flex; align-items: center; gap: 8px; }
.feed-order { color: #fff; font-weight: 600; }
.feed-status {
  font-size: 9.5px;
  letter-spacing: 0.08em;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: auto;
}
.feed-status-new { background: rgba(255,107,53,0.18); color: var(--orange); }
.feed-status-dispatch { background: rgba(255,209,102,0.18); color: #FFD166; }
.feed-status-transit { background: rgba(34,197,94,0.16); color: var(--green); }
.feed-status-delivered { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
.feed-meta {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

.term-ticker {
  border-top: 1px solid var(--navy-line);
  background: #030818;
  overflow: hidden;
  height: 32px;
  position: relative;
  width: 100%;
  min-width: 0;
}
.term-ticker-inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 28px;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  animation: tickerScroll 50s linear infinite;
  padding-left: 14px;
}
.ticker-track .tk-up { color: var(--green); }
.ticker-track .tk-hot { color: var(--orange); }
.ticker-track .tk-sep { color: rgba(255,255,255,0.2); }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ EA STRIP ============ */
.ea-strip {
  background: var(--orange);
  color: #fff;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 28px 0;
}
.ea-strip-marquee { overflow: hidden; }
.ea-strip-track {
  display: inline-flex;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  padding-left: 20px;
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.02em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ea-strip-item { display: inline-block; }
.ea-strip-strong { font-style: italic; font-weight: 700; }
.ea-strip-sep { opacity: 0.6; font-size: 0.6em; align-self: center; }

/* ============ SECTIONS ============ */
.section-head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  margin-bottom: 48px;
}
.section-eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.02;
  max-width: 22ch;
  margin: 0 0 12px;
  text-wrap: balance;
}
.section-sub {
  color: var(--gray);
  font-size: 17px;
  max-width: 56ch;
  margin: 0;
}

/* ============ FEATURES ============ */
.features {
  background: var(--cream);
  padding: 96px 0;
}
.feature-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--paper);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.feat-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  padding: 36px;
}
.feat-wide .feat-text { display: flex; flex-direction: column; gap: 14px; }
.feat-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 600;
}
.feat-title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.15;
  margin: 0;
  text-wrap: balance;
}
.feat-wide .feat-title { font-size: 32px; }
.feat-body {
  color: var(--gray);
  font-size: 14.5px;
  margin: 0;
}
.feat-wide .feat-body { font-size: 16px; }
.feat-list {
  margin: 0; padding: 0;
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 14.5px;
  color: var(--gray);
}
.feat-list li::before {
  content: '→';
  color: var(--orange);
  margin-right: 8px;
  font-family: var(--mono);
}
.feat-list b { color: var(--ink); }

.feat-media {
  margin-top: auto;
  position: relative;
}
.media-frame {
  position: relative;
  border: 1px solid var(--gray-line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 20px -10px rgba(10,23,51,0.15);
}
.media-frame img {
  width: 100%;
  display: block;
}
.media-crop-top img { margin-top: -12%; }
.media-crop-bottom img { margin-top: -22%; }
.feat-media-dashboard .media-frame img {
  margin-top: 0;
}
.media-crop-label {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  background: rgba(10,23,51,0.9);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}
.media-hi {
  position: absolute;
  width: 20%; height: 20%;
  border: 2px solid var(--orange);
  border-radius: 8px;
  box-shadow: 0 0 0 4px rgba(255,107,53,0.12);
  pointer-events: none;
}
.media-hi-tl { top: 21.5%; left: 50%; width: 24%; height: 13%; }

/* ============ HOW ============ */
.how {
  background: var(--navy-800);
  color: #fff;
  padding: 96px 0;
}
.how .section-eyebrow { color: var(--orange); }
.how .section-title { color: #fff; }
.how-steps {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.how-step {
  position: relative;
  padding: 28px;
  border: 1px solid var(--navy-line-strong);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 240px;
}
.how-num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--orange);
  font-weight: 600;
}
.how-line {
  position: absolute;
  top: 42px;
  right: -24px;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--navy-line-strong), transparent);
}
.how-step:last-child .how-line { display: none; }
.how-label {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.how-body {
  color: rgba(255,255,255,0.65);
  font-size: 14.5px;
  flex: 1;
}
.how-body b { color: #fff; }
.how-meta {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px dashed var(--navy-line);
}
.how-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 6px var(--orange); }
.how-dot-done { background: var(--green); box-shadow: 0 0 6px var(--green); }

/* ============ PRICING ============ */
.pricing {
  background: var(--cream);
  padding: 120px 0;
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
}
.pricing-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}
.pricing-eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.pricing-headline-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  margin-bottom: 24px;
}
.pricing-mono-left, .pricing-mono-right {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--gray);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pricing-mono-right { text-align: right; }
.mono-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--gray-line);
}
.pricing-mono-right .mono-line { flex-direction: row-reverse; }
.mono-line span { color: var(--gray-soft); text-transform: uppercase; font-size: 11px; letter-spacing: 0.1em; }
.mono-line b { color: var(--ink); font-weight: 600; }

.pricing-price {
  display: inline-flex;
  align-items: flex-start;
  font-family: var(--display);
  color: var(--ink);
  letter-spacing: -0.05em;
  line-height: 0.9;
}
.price-dollar {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 500;
  margin-top: 12px;
  color: var(--gray);
}
.price-num {
  font-size: clamp(140px, 18vw, 260px);
  font-weight: 700;
}
.price-cents {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 500;
  margin-top: 12px;
  color: var(--gray);
}

.pricing-caption {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 auto 12px;
  font-weight: 500;
  text-wrap: balance;
}
.pricing-credits {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--gray);
  background: #fff;
  border: 1px solid var(--gray-line);
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  margin: 0 auto 64px;
}

.pricing-ea {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0;
  border: 1px solid var(--navy-800);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: left;
  background: var(--navy-800);
  color: #fff;
  position: relative;
}
.pea-left { padding: 40px; }
.pea-right {
  padding: 40px;
  background: linear-gradient(160deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}
.pea-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 12px;
}
.pea-title {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 12px;
  text-wrap: balance;
}
.pea-body {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  margin-bottom: 24px;
}
.pea-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.85);
}
.pea-list li { border-bottom: 1px dashed var(--navy-line); padding-bottom: 10px; }
.pea-list li:last-child { border-bottom: 0; padding-bottom: 0; }

.pea-counter { margin-bottom: 8px; }
.pea-counter-num {
  font-family: var(--display);
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.pea-counter-of { font-size: 32px; opacity: 0.65; margin-left: 4px; }
.pea-counter-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 4px;
  color: rgba(255,255,255,0.82);
}
.pea-bar {
  margin-top: 14px;
  height: 6px;
  background: rgba(0,0,0,0.2);
  border-radius: 4px;
  overflow: hidden;
}
.pea-bar-fill {
  height: 100%;
  background: #fff;
  transition: width 1s ease;
}
.pea-right .btn-primary {
  background: #0A1733;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.5);
  justify-content: center;
  text-align: center;
}
.pea-right .btn-primary:hover {
  background: #060E1F;
}
.pea-fine {
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  text-align: center;
}

/* ============ COMPARE ============ */
.compare {
  background: var(--paper);
  padding: 96px 0;
}
.compare-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.compare-col {
  padding: 36px;
  border-radius: 14px;
  border: 1px solid var(--gray-line);
  background: #fff;
}
.compare-before { background: #fff; }
.compare-after { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
.compare-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  padding: 6px 10px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.compare-tag-red { background: rgba(224,91,74,0.1); color: var(--red-soft); }
.compare-tag-green { background: rgba(34,197,94,0.14); color: #4ADE80; }
.compare-title {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 20px;
  text-wrap: balance;
}
.compare-after .compare-title { color: #fff; }
.compare-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
  font-size: 15px;
}
.compare-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.compare-list .x, .compare-list .ok {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.compare-list .x { background: rgba(224,91,74,0.12); color: var(--red-soft); }
.compare-list .ok { background: rgba(34,197,94,0.18); color: #4ADE80; }
.compare-before .compare-list li { color: var(--gray); }
.compare-after .compare-list li { color: rgba(255,255,255,0.82); }

/* ============ COVERAGE / VERTICALS ============ */
.coverage {
  background: var(--paper);
  padding: 96px 0;
  border-top: 1px solid var(--gray-line);
}
.coverage-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}
.vert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.vert-card {
  background: #fff;
  border: 1px solid var(--gray-line);
  border-radius: 12px;
  padding: 22px 22px 24px;
  transition: border-color .15s ease, transform .15s ease;
}
.vert-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.vert-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 8px;
}
.vert-body { color: var(--gray); font-size: 14.5px; }

.cities-wrap {
  background: var(--navy-800);
  color: #fff;
  border-radius: 16px;
  padding: 32px 36px;
  text-align: center;
}
.cities-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--orange);
  margin-bottom: 20px;
}
.cities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.cities-list span {
  font-family: var(--mono);
  font-size: 13px;
  padding: 8px 14px;
  border: 1px solid var(--navy-line-strong);
  border-radius: 999px;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.02);
}
.cities-note {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
@media (max-width: 900px) {
  .vert-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .vert-grid { grid-template-columns: 1fr; }
}

/* ============ CONTACT PAGE ============ */
.contact-wrap {
  min-height: calc(100vh - 180px);
  background: var(--cream);
  padding: 80px 28px 120px;
}
.contact-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-left .section-eyebrow { color: var(--orange); margin-bottom: 14px; }
.contact-title {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 20px;
  text-wrap: balance;
}
.contact-sub {
  color: var(--gray);
  font-size: 17px;
  margin: 0 0 36px;
  max-width: 52ch;
}
.contact-email-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--navy-800);
  color: #fff;
  padding: 22px 26px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform .15s ease;
}
.contact-email-card:hover { transform: translateY(-2px); }
.contact-email-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--orange);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 20px;
}
.contact-email-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
}
.contact-email-value {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  margin-top: 2px;
}
.contact-meta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-meta-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--gray-line);
  font-size: 14.5px;
}
.contact-meta-row b {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gray-soft);
  text-transform: uppercase;
  font-weight: 600;
  padding-top: 2px;
}
.contact-meta-row span { color: var(--ink); }

.contact-form {
  background: var(--paper);
  border: 1px solid var(--gray-line);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form-head {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.contact-form-sub {
  color: var(--gray);
  font-size: 14px;
  margin: 0 0 12px;
}
.cf-row { display: flex; flex-direction: column; gap: 6px; }
.cf-row label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gray-soft);
  text-transform: uppercase;
}
.cf-row input, .cf-row textarea, .cf-row select {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--gray-line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .15s ease;
}
.cf-row input:focus, .cf-row textarea:focus, .cf-row select:focus { border-color: var(--orange); }
.cf-row textarea { resize: vertical; min-height: 120px; }
.cf-submit {
  margin-top: 8px;
  justify-content: center;
  width: 100%;
  text-align: center;
}
.cf-fine {
  font-size: 12px;
  color: var(--gray-soft);
  text-align: center;
  margin-top: 4px;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
/* ============ FAQ ============ */
.faq {
  background: var(--cream);
  padding: 96px 0;
}
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--gray-line);
}
.faq-item {
  border-bottom: 1px solid var(--gray-line);
}
.faq-q {
  width: 100%;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.faq-q:hover { color: var(--orange); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gray-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--gray);
  transition: transform .2s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--orange); color: #fff; border-color: var(--orange); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  color: var(--gray);
  font-size: 15.5px;
  line-height: 1.6;
}
.faq-a-inner { padding: 0 0 24px; max-width: 72ch; }
.faq-item.open .faq-a { max-height: 420px; }

/* ============ FINAL CTA ============ */
.final-cta {
  background:
    radial-gradient(900px 500px at 50% -20%, rgba(255,107,53,0.25), transparent 60%),
    var(--navy-900);
  color: #fff;
  padding: 120px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.final-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--orange);
  padding: 8px 14px;
  border: 1px solid rgba(255,107,53,0.4);
  border-radius: 999px;
  margin-bottom: 32px;
}
.final-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); animation: pulseDot 1.8s infinite; }
.final-cta-title {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0 0 20px;
}
.final-cta-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  margin: 0 auto 36px;
  max-width: 54ch;
}
.final-cta-fine {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 18px;
  font-family: var(--mono);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.7);
  padding: 48px 28px 32px;
  border-top: 1px solid var(--navy-line);
}
.footer-top {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--navy-line);
}
.footer .brand-name { color: #fff; }
.footer-tag { max-width: 42ch; font-size: 14px; margin-top: 12px; color: rgba(255,255,255,0.6); }
.footer-badges {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.badge {
  border: 1px solid var(--navy-line-strong);
  padding: 12px 18px;
  border-radius: 10px;
  min-width: 160px;
}
.badge-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 4px;
}
.badge-value {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.015em;
}
.footer-bot {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-links { display: flex; gap: 20px; }
.footer-links a:hover { color: #fff; }

/* ============ BOTTOM BAR ============ */
.bottom-bar {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translate(-50%, 120%);
  z-index: 90;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.bottom-bar.visible { transform: translate(-50%, 0); }
.bottom-bar-inner {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px 10px 16px;
  background: var(--navy-900);
  color: #fff;
  border: 1px solid var(--navy-line-strong);
  border-radius: 999px;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.4);
  font-size: 14px;
}
.bb-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); animation: pulseDot 1.8s infinite; }
.bb-text b { font-variant-numeric: tabular-nums; }
.bb-cta {
  background: var(--orange);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13.5px;
}
.bb-cta:hover { background: var(--orange-hot); }
.bb-close {
  width: 24px; height: 24px;
  border-radius: 50%;
  color: rgba(255,255,255,0.5);
  font-size: 16px;
}
.bb-close:hover { color: #fff; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .term-body { grid-template-columns: 1fr; }
  .term-feed { border-top: 1px solid var(--navy-line); }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .how-line { display: none; }
  .pricing-headline-wrap { grid-template-columns: 1fr; gap: 16px; }
  .pricing-mono-left, .pricing-mono-right { text-align: left; }
  .pricing-mono-right .mono-line { flex-direction: row; }
  .pricing-ea { grid-template-columns: 1fr; }
  .feat-wide { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .hero { padding: 56px 20px 72px; }
  .section-head { padding: 0 20px; }
  .term-kpis { grid-template-columns: 1fr 1fr; }
  .kpi { border-bottom: 1px solid var(--navy-line); }
  .kpi:nth-child(2) { border-right: 0; }
  .top-bar-inner { flex-direction: column; align-items: flex-start; padding: 10px 20px; }
  .nav { top: 0; }
}
