/* =========================================================
   MovR — Dispatch Grid
   Swiss / brutalist / logistics-terminal
   ========================================================= */

:root {
  --paper:   #F2F2EE;
  --paper-2: #FFFFFF;
  --ink:     #0A0A0A;
  --ink-2:   #1A1A1A;
  --muted:   rgba(10, 10, 10, 0.6);
  --rule:    rgba(10, 10, 10, 0.16);
  --rule-2:  rgba(10, 10, 10, 0.32);

  --blue:    #2196F3;
  --blue-2:  #0B3D8C;
  --viz:     #EFE600;     /* hi-viz safety yellow */
  --signal:  #E53935;     /* dispatch alert red */
  --orange:  #FF7A1A;
  --green:   #1FB36E;

  /* accent (tweakable) */
  --accent:    var(--blue);
  --accent-ink:#FFFFFF;

  --maxw: 1360px;
  --pad: clamp(16px, 3vw, 40px);
  --gridc: 12;

  --display: "Space Grotesk", "Inter", sans-serif;
  --body: "IBM Plex Sans", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;
}

body.theme-night {
  --paper:   #0A0A0A;
  --paper-2: #161616;
  --ink:     #F2F2EE;
  --ink-2:   #D0D0CC;
  --muted:   rgba(242, 242, 238, 0.55);
  --rule:    rgba(242, 242, 238, 0.16);
  --rule-2:  rgba(242, 242, 238, 0.30);
}

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* monospace label primitive */
.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.label-ink {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

/* crosshair corner marker */
.xhair {
  position: relative;
}
.xhair::before,
.xhair::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1px solid var(--ink);
  background: var(--paper);
  z-index: 2;
}
.xhair::before { top: -5px; left: -5px; }
.xhair::after  { bottom: -5px; right: -5px; }
.xhair--small::before,
.xhair--small::after { width: 6px; height: 6px; border-width: 1px; }

/* =========================================================
   TOP UTILITY STRIP
   ========================================================= */
.topbar {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
}
.topbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 32px;
  align-items: center;
  gap: 16px;
}
.topbar-left { display: flex; gap: 16px; opacity: .85; }
.topbar-left .live::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--viz);
  margin-right: 6px;
  box-shadow: 0 0 8px var(--viz);
  animation: blink 1.4s ease-in-out infinite;
  vertical-align: 1px;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.topbar-center { opacity: .75; }
.topbar-right { display: flex; gap: 16px; justify-content: flex-end; opacity: .85; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 64px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.03em;
}
.brand-mark {
  width: 30px; height: 30px;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
}
.nav {
  display: flex;
  gap: 4px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  justify-self: center;
}
.nav a {
  padding: 8px 14px;
  border-radius: 2px;
  color: var(--ink);
  opacity: .7;
  transition: all .15s;
}
.nav a:hover { opacity: 1; background: rgba(10,10,10,0.05); }
.nav a.active {
  opacity: 1;
  background: var(--ink);
  color: var(--paper);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 0;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  transition: transform .15s, background .15s, color .15s;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 2px 2px 0 0 var(--ink); }
.btn-ink {
  background: var(--ink);
  color: var(--paper);
}
.btn-ink:hover { box-shadow: 2px 2px 0 0 var(--accent); }
.btn-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}
.btn-viz {
  background: var(--viz);
  border-color: var(--ink);
  color: var(--ink);
}
.btn + .btn { border-left: 0; }
.btn:hover + .btn { /* keep neighbor stable */ }
.btn-lg {
  padding: 16px 24px;
  font-size: 12px;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  border-bottom: 1px solid var(--ink);
  padding: clamp(24px, 4vw, 48px) 0 clamp(40px, 6vw, 72px);
}
/* visible 12-col grid lines (decorative, behind content) */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  max-width: var(--maxw);
  left: 50%;
  transform: translateX(-50%);
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  z-index: 0;
}
.hero-grid-lines span {
  border-left: 1px dashed var(--rule);
}
.hero-grid-lines span:first-child { border-left: none; }
.hero-grid-lines span:last-child {
  border-right: 1px dashed var(--rule);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.hero-eyebrow-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 10px 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-eyebrow-row > span { display: flex; align-items: center; gap: 8px; }
.hero-eyebrow-row .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--signal);
  animation: blink 1.4s ease-in-out infinite;
}

.hero-headline {
  grid-column: 1 / span 8;
}
.hero-headline h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(64px, 12vw, 200px);
  line-height: 0.86;
  letter-spacing: -0.045em;
  margin: 0;
}
.hero-headline h1 .block {
  display: block;
}
.hero-headline h1 .ix {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.hero-headline h1 .num {
  font-family: var(--mono);
  font-style: normal;
  font-weight: 500;
  font-size: 0.38em;
  letter-spacing: 0;
  vertical-align: 0.7em;
  color: var(--ink);
  opacity: .55;
  margin-left: 0.3em;
}

.hero-meta {
  grid-column: 9 / -1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 8px;
}
.hero-meta .row {
  border-top: 1px solid var(--rule);
  padding-top: 10px;
}
.hero-meta .row:first-child { border-top: none; padding-top: 0; }
.hero-meta .row .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.hero-meta .row .v {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
}

/* route diagram */
.hero-route {
  grid-column: 1 / span 8;
  margin-top: clamp(24px, 4vw, 48px);
  border-top: 1px solid var(--ink);
  padding-top: 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  gap: 16px;
}
.hero-route .pt { display: flex; flex-direction: column; gap: 4px; }
.hero-route .pt .pt-label { font-family: var(--mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.hero-route .pt .pt-place { font-family: var(--display); font-size: 18px; font-weight: 500; }
.hero-route .pt .pt-sub { font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; color: var(--ink); opacity: .6; }
.hero-route .arrow {
  flex: 1;
  position: relative;
  height: 20px;
  display: flex;
  align-items: center;
  min-width: 80px;
  width: 100%;
}
.hero-route .arrow::before {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--ink);
  border-top: 1px dashed var(--ink);
  background: none;
}
.hero-route .arrow::after {
  content: "";
  width: 0; height: 0;
  border-left: 8px solid var(--ink);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.hero-route .spec {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: right;
}
.hero-route .spec .big {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.02em;
  text-transform: none;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

/* hero CTA block */
.hero-cta {
  grid-column: 1 / span 8;
  margin-top: clamp(20px, 3vw, 36px);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-cta .lede {
  margin: 0 0 0 0;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.45;
  max-width: 44ch;
  color: var(--muted);
  flex: 0 1 100%;
  margin-bottom: 8px;
}

/* hero spec card (right column, image + spec block) */
.hero-card {
  grid-column: 9 / -1;
  margin-top: clamp(24px, 4vw, 48px);
  border: 1px solid var(--ink);
  background: var(--paper-2);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-card .hc-img {
  background: #FFFFFF;
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}
.hero-card .hc-img img {
  width: 92%;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.15));
}
.hero-card .hc-img .grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to right, var(--rule) 1px, transparent 1px) 0 0/ 12.5% 100%,
    linear-gradient(to bottom, var(--rule) 1px, transparent 1px) 0 0/ 100% 25%;
  opacity: .6;
}
.hero-card .hc-stamp {
  position: absolute;
  top: 10px; left: 10px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--viz);
  color: var(--ink);
  padding: 4px 7px;
  border: 1px solid var(--ink);
}
.hero-card .hc-rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--ink);
}
.hero-card .hc-row {
  padding: 10px 12px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.hero-card .hc-row:nth-child(2n) { border-right: none; }
.hero-card .hc-row:nth-last-child(-n+2) { border-bottom: none; }
.hero-card .hc-row .k { font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.hero-card .hc-row .v { font-family: var(--display); font-size: 16px; font-weight: 600; letter-spacing: -0.02em; }

/* =========================================================
   LIVE DISPATCH FEED
   ========================================================= */
.feed {
  border-bottom: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
.feed-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 48px;
  gap: 24px;
}
.feed-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: var(--viz);
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.feed-title::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--signal);
  animation: blink 1s ease-in-out infinite;
}
.feed-track-wrap {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 60px, #000 calc(100% - 60px), transparent);
}
.feed-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
  width: max-content;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}
.feed-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  border-right: 1px solid rgba(242,242,238,0.18);
  color: rgba(242,242,238,0.85);
}
.feed-item .code { color: var(--viz); }
.feed-item .ok { color: #7CFFAA; }
.feed-item .alert { color: var(--signal); }
.feed-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: .65;
}

/* =========================================================
   SECTION CHROME
   ========================================================= */
section { position: relative; }
.section {
  padding: clamp(64px, 8vw, 120px) 0;
  border-bottom: 1px solid var(--ink);
}
.section-head {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-bottom: 56px;
  align-items: end;
}
.section-num {
  grid-column: 1 / span 2;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.section-num .big {
  display: block;
  font-family: var(--display);
  font-size: 64px;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.section-num .tag {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  padding: 3px 6px;
  margin-left: -2px;
}
.section-title {
  grid-column: 3 / span 7;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin: 0;
}
.section-title .ix { font-style: italic; font-weight: 500; color: var(--accent); }
.section-desc {
  grid-column: 10 / -1;
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  max-width: 28ch;
}

/* =========================================================
   FLEET (spec sheet table)
   ========================================================= */
.fleet-table {
  border: 1px solid var(--ink);
  background: var(--paper-2);
}
.fleet-row {
  display: grid;
  grid-template-columns: 80px 200px 1.2fr 1fr 1fr 110px;
  align-items: center;
  border-bottom: 1px solid var(--rule);
  transition: background .15s;
  cursor: pointer;
}
.fleet-row:last-child { border-bottom: none; }
.fleet-row:hover { background: var(--viz); }
.fleet-row.head {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  height: 40px;
  cursor: default;
}
.fleet-row.head:hover { background: var(--ink); }
.fleet-row.head > div { padding: 0 20px; }
.fleet-row > .col { padding: 16px 20px; }
.fleet-row .col-code {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
}
.fleet-row .col-img {
  background: #FFFFFF;
  padding: 8px;
  display: grid;
  place-items: center;
  height: 90px;
  border-right: 1px solid var(--rule);
}
.fleet-row .col-img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.12));
}
.fleet-row .col-name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.fleet-row .col-name .sub {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 400;
}
.fleet-row .col-cap,
.fleet-row .col-use {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.03em;
}
.fleet-row .col-action {
  display: flex;
  justify-content: flex-end;
  padding-right: 20px;
}
.fleet-row .col-action .arrow {
  width: 36px; height: 36px;
  border: 1px solid var(--ink);
  display: grid; place-items: center;
  transition: transform .15s, background .15s;
}
.fleet-row:hover .col-action .arrow {
  background: var(--ink);
  color: var(--paper);
  transform: translate(-2px, -2px);
}

/* =========================================================
   HOW IT WORKS — three big panels
   ========================================================= */
.steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border: 1px solid var(--ink);
  background: var(--paper-2);
}
.step {
  padding: 32px;
  border-right: 1px solid var(--ink);
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step:last-child { border-right: none; }
.step-num-block {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 16px;
  margin-bottom: 8px;
}
.step-num-block .n {
  font-family: var(--display);
  font-size: 88px;
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.04em;
}
.step-num-block .stat {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: right;
  color: var(--muted);
}
.step-num-block .stat .ok { color: var(--green); }
.step h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
}
.step p { margin: 0; color: var(--muted); font-size: 15px; max-width: 32ch; }
.step-img {
  margin-top: auto;
  background: var(--paper);
  border: 1px solid var(--rule);
  aspect-ratio: 5/3;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.step-img img { width: 70%; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15)); }
.step.is-yellow { background: var(--viz); }
.step.is-yellow p { color: rgba(0,0,0,0.7); }

/* =========================================================
   FEATURES — bold color blocks
   ========================================================= */
.feats {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 0;
  border: 1px solid var(--ink);
}
.feat {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 420px;
  border-right: 1px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.feat:last-child { border-right: none; }
.feat.is-blue {
  background: var(--blue);
  color: #FFFFFF;
}
.feat.is-blue .label-ink { color: #FFFFFF; opacity: .8; }
.feat.is-blue p { color: rgba(255,255,255,0.85); }
.feat.is-ink {
  background: var(--ink);
  color: var(--paper);
}
.feat.is-ink p { color: rgba(242,242,238,0.7); }
.feat.is-viz {
  background: var(--viz);
  color: var(--ink);
}
.feat .feat-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.feat h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 4.6vw, 56px);
  letter-spacing: -0.035em;
  line-height: 0.92;
  margin: 0;
  max-width: 14ch;
}
.feat p {
  margin: 0;
  font-size: 15px;
  max-width: 30ch;
  line-height: 1.5;
}
.feat ul {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid currentColor;
  padding-top: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}
.feat ul li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed currentColor;
  padding-bottom: 8px;
  opacity: .85;
}
.feat ul li:last-child { border-bottom: none; padding-bottom: 0; }
.feat ul li .v { font-weight: 600; opacity: 1; }

/* =========================================================
   APP SECTION
   ========================================================= */
.app-section {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  align-items: center;
}
.app-copy {
  grid-column: 1 / span 6;
}
.app-copy .section-num { margin-bottom: 24px; }
.app-copy h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin: 0 0 24px;
}
.app-copy h2 .ix { font-style: italic; font-weight: 500; color: var(--accent); }
.app-copy > p {
  color: var(--muted);
  font-size: 17px;
  max-width: 42ch;
  margin: 0 0 32px;
}
.app-feats {
  border-top: 1px solid var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 32px;
}
.app-feat {
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  padding: 18px 20px 18px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.app-feat:nth-child(2n) { border-right: none; padding-right: 0; }
.app-feat:nth-last-child(-n+2) { border-bottom: none; }
.app-feat .ico {
  width: 32px; height: 32px;
  border: 1px solid var(--ink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.app-feat h4 { margin: 0; font-family: var(--display); font-size: 16px; font-weight: 600; letter-spacing: -0.01em; }
.app-feat p { margin: 4px 0 0; font-size: 13px; color: var(--muted); }

.store-buttons { display: flex; gap: 0; flex-wrap: wrap; }
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  transition: background .15s;
}
.store-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.store-btn.disabled { background: transparent; color: var(--ink); }
.store-btn .ico { font-size: 22px; }
.store-btn .txt { display: flex; flex-direction: column; line-height: 1; gap: 3px; }
.store-btn .t-sm { font-size: 10px; font-family: var(--mono); letter-spacing: 0.08em; text-transform: uppercase; opacity: .7; }
.store-btn .t-md { font-size: 13px; font-weight: 600; }
.store-btn + .store-btn { border-left: 0; }

.app-visual {
  grid-column: 8 / -1;
  position: relative;
  height: 600px;
}
.app-visual .grid-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--rule) 1px, transparent 1px) 0 0 / 25% 100%,
    linear-gradient(to bottom, var(--rule) 1px, transparent 1px) 0 0 / 100% 16.6%;
}
.app-visual .phone {
  position: absolute;
  width: 240px;
  aspect-ratio: 9 / 18.5;
  background: var(--ink);
  border-radius: 28px;
  padding: 8px;
  box-shadow: 0 30px 50px -20px rgba(0,0,0,0.4);
}
.app-visual .phone-screen {
  width: 100%; height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #E9EDF3;
  position: relative;
}
.app-visual .phone-screen img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.app-visual .phone-notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 88px; height: 22px;
  background: var(--ink);
  border-radius: 12px;
  z-index: 2;
}
.app-visual .phone-back {
  top: 0;
  right: 40px;
  transform: rotate(4deg);
}
.app-visual .phone-front {
  bottom: 0;
  left: 0;
  transform: rotate(-2deg);
}
.app-visual .corner-stamp {
  position: absolute;
  top: 0; left: 0;
  background: var(--viz);
  border: 1px solid var(--ink);
  padding: 6px 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 3;
}
.app-visual .signal-stamp {
  position: absolute;
  bottom: 80px; right: 20px;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 140px;
}
.app-visual .signal-stamp .v { font-family: var(--display); font-size: 16px; letter-spacing: -0.02em; text-transform: none; }
.app-visual .signal-stamp .ok { color: var(--viz); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.tests-band {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
  border: 1px solid var(--ink);
}
.test {
  grid-column: span 4;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-right: 1px solid var(--rule);
  background: var(--paper-2);
}
.test:last-child { border-right: none; }
.test-rating {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: space-between;
}
.test-rating .stars { color: var(--accent); }
.test blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.test blockquote::before {
  content: "“";
  display: block;
  font-family: var(--display);
  font-size: 56px;
  line-height: 0.5;
  color: var(--accent);
  margin-bottom: 12px;
}
.test-author {
  display: flex;
  gap: 12px;
  align-items: center;
  border-top: 1px solid var(--rule);
  padding-top: 14px;
  margin-top: auto;
}
.test-author img { width: 40px; height: 40px; border-radius: 0; object-fit: cover; }
.test-author h4 { margin: 0; font-size: 14px; font-weight: 600; }
.test-author span { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

/* =========================================================
   FAQ
   ========================================================= */
.faq-band {
  display: grid;
  grid-template-columns: 1fr 2fr;
  border: 1px solid var(--ink);
}
.faq-left {
  padding: 36px;
  background: var(--ink);
  color: var(--paper);
  border-right: 1px solid var(--ink);
}
.faq-left h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin: 0 0 20px;
}
.faq-left h2 .ix { font-style: italic; font-weight: 500; color: var(--accent); }
.faq-left p { color: rgba(242,242,238,0.65); margin: 0 0 24px; max-width: 28ch; font-size: 15px; }
.faq-left .btn { border-color: var(--paper); color: var(--paper); }
.faq-left .btn:hover { background: var(--viz); color: var(--ink); border-color: var(--viz); box-shadow: 2px 2px 0 0 var(--viz); }
.faq-list { background: var(--paper-2); }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.faq-q .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-right: 16px;
}
.faq-q .toggle {
  width: 30px; height: 30px;
  border: 1px solid var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-weight: 400;
  font-size: 16px;
  flex-shrink: 0;
  transition: background .15s, color .15s;
}
.faq-item.open .faq-q .toggle { background: var(--viz); transform: rotate(45deg); }
.faq-q .q-text { flex: 1; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-a { max-height: 240px; }
.faq-a p {
  margin: 0;
  padding: 0 32px 24px 80px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 60ch;
}

/* =========================================================
   CTA BLOCK
   ========================================================= */
.cta-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--ink);
  border-bottom: none;
  position: relative;
  overflow: hidden;
}
.cta-l {
  background: var(--viz);
  color: var(--ink);
  padding: clamp(48px, 7vw, 96px) clamp(32px, 5vw, 64px);
  position: relative;
}
.cta-l h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(64px, 11vw, 180px);
  letter-spacing: -0.05em;
  line-height: 0.84;
  margin: 0;
}
.cta-l h2 .ix { font-style: italic; font-weight: 500; color: var(--signal); }
.cta-l .stamp {
  position: absolute;
  bottom: 32px; left: 32px; right: 32px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cta-r {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(48px, 7vw, 96px) clamp(32px, 5vw, 64px);
  border-left: 1px solid var(--ink);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cta-r .lede {
  font-family: var(--display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 24ch;
  margin: 0;
}
.cta-r .actions { display: flex; flex-direction: column; gap: 0; max-width: 320px; }
.cta-r .actions .btn { border-color: var(--paper); color: var(--paper); }
.cta-r .actions .btn:first-child {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.cta-r .actions .btn:first-child:hover { box-shadow: 2px 2px 0 0 var(--viz); }
.cta-r .actions .btn + .btn { border-top: 0; }
.cta-r .actions .btn:hover { background: var(--paper); color: var(--ink); }
.cta-r .checklist {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-top: 1px solid rgba(242,242,238,0.18);
  padding-top: 24px;
  color: rgba(242,242,238,0.75);
}
.cta-r .checklist span::before {
  content: "✓ ";
  color: var(--viz);
  font-weight: 600;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid var(--ink);
  padding: clamp(40px, 5vw, 72px) 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}
.footer-brand p { color: var(--muted); margin: 12px 0 18px; max-width: 32ch; font-size: 14px; }
.footer-socials { display: flex; gap: 0; }
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--ink);
  display: grid; place-items: center;
  transition: background .15s, color .15s;
}
.footer-socials a + a { border-left: 0; }
.footer-socials a:hover { background: var(--ink); color: var(--paper); }
.footer-col h5 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-col a:hover { color: var(--accent); }

.footer-mega {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(120px, 25vw, 380px);
  letter-spacing: -0.06em;
  line-height: 0.85;
  margin: 32px 0 24px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.footer-mega .ix { font-style: italic; font-weight: 500; color: var(--accent); }
.footer-mega .dot { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--ink);
  padding-top: 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  gap: 24px;
  flex-wrap: wrap;
}

/* =========================================================
   TWEAKS PANEL
   ========================================================= */
.tweaks {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 280px;
  background: var(--paper-2);
  border: 1px solid var(--ink);
  box-shadow: 6px 6px 0 0 var(--ink);
  padding: 18px;
  z-index: 200;
  font-size: 13px;
  display: none;
  flex-direction: column;
  gap: 18px;
}
.tweaks.open { display: flex; }
.tweaks-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 12px;
  margin-bottom: 0;
}
.tweaks-head h4 { margin: 0; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.tweaks-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--ink);
  width: 24px; height: 24px;
  display: grid; place-items: center;
}
.tweak-row { display: flex; flex-direction: column; gap: 8px; }
.tweak-row > label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.tweak-seg {
  display: grid;
  grid-template-columns: repeat(var(--cols, 3), 1fr);
  gap: 0;
  border: 1px solid var(--ink);
}
.tweak-seg button {
  background: transparent;
  border: none;
  padding: 8px 8px;
  border-right: 1px solid var(--ink);
  font-size: 11px;
  color: var(--ink);
  font-family: var(--mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.tweak-seg button:last-child { border-right: none; }
.tweak-seg button.active { background: var(--ink); color: var(--paper); }
.tweak-swatches { display: flex; gap: 0; border: 1px solid var(--ink); }
.tweak-swatches button {
  flex: 1;
  height: 30px;
  border: none;
  border-right: 1px solid var(--ink);
  cursor: pointer;
  background: var(--c);
  position: relative;
}
.tweak-swatches button:last-child { border-right: none; }
.tweak-swatches button.active::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--ink);
  font-weight: 700;
}
.tweak-row input[type="text"] {
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  border-radius: 0;
  padding: 8px 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .fleet-row { grid-template-columns: 70px 1.4fr 1fr 1fr 70px; }
  .fleet-row .col-cap { display: none; }
}
@media (max-width: 900px) {
  .nav { display: none; }
  .topbar-center { display: none; }
  .hero-headline { grid-column: 1 / -1; }
  .hero-headline h1 { font-size: clamp(56px, 14vw, 120px); }
  .hero-meta { grid-column: 1 / -1; }
  .hero-route { grid-column: 1 / -1; grid-template-columns: 1fr 24px 1fr; gap: 12px; }
  .hero-route .spec { grid-column: 1 / -1; text-align: left; }
  .hero-cta { grid-column: 1 / -1; }
  .hero-card { grid-column: 1 / -1; }
  .section-head { grid-template-columns: 1fr; }
  .section-num { grid-column: 1; }
  .section-title { grid-column: 1; }
  .section-desc { grid-column: 1; max-width: 100%; }
  .steps, .feats { grid-template-columns: 1fr; }
  .step, .feat { border-right: none; border-bottom: 1px solid var(--ink); }
  .step:last-child, .feat:last-child { border-bottom: none; }
  .fleet-row { grid-template-columns: 80px 1fr 70px; }
  .fleet-row .col-use,
  .fleet-row .col-cap,
  .fleet-row .col-code { display: none; }
  .fleet-row.head .col-use,
  .fleet-row.head .col-cap,
  .fleet-row.head .col-code { display: none; }
  .app-section { grid-template-columns: 1fr; }
  .app-copy { grid-column: 1; }
  .app-visual { grid-column: 1; height: 420px; }
  .app-visual .phone { width: 200px; }
  .test { grid-column: span 12; border-right: none; border-bottom: 1px solid var(--rule); }
  .test:last-child { border-bottom: none; }
  .faq-band { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .cta-r { border-left: none; border-top: 1px solid var(--ink); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 520px) {
  .topbar-left .place { display: none; }
  .topbar-right { display: none; }
  .header-cta .btn:first-child { display: none; }
  .hero-meta .row { font-size: 13px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }
}
