/* ============================================================
   Gobi — Design System (v2)
   Flat industrial. Muted blue accent. Minimal gold. Dashboard feel.
   ============================================================ */

:root {
  /* Surfaces */
  --bg:        #0B0F14;
  --bg-2:      #0E141B;
  --bg-3:      #11161D;
  --panel:     #161C24;
  --panel-2:   #1A2230;
  --line:      rgba(255,255,255,0.06);
  --line-2:    rgba(255,255,255,0.10);
  --line-3:    rgba(255,255,255,0.14);

  /* Text */
  --text:      #E6EDF3;
  --text-dim:  #9DA7B3;
  --text-mute: #6B7785;

  /* Accents (used sparingly) */
  --blue:      #4F8CFF;
  --blue-2:    #3D77E0;
  --green:     #22C55E;
  --green-dim: #16A34A;
  --warn:      #F59E0B;
  --red:       #EF4444;
  --gold:      #C8A96A;     /* used <2% of UI */

  --radius:    6px;
  --radius-md: 8px;
  --radius-lg: 10px;

  --maxw: 1200px;

  --font:  ui-sans-serif, -apple-system, "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono:  ui-monospace, "JetBrains Mono", SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: #7AA8FF; }

::selection { background: rgba(79,140,255,0.30); color: #fff; }

/* ---------- Layout ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; border-top: 1px solid var(--line); }
.section.tight { padding: 48px 0; }
.section.first { border-top: none; }

.grid { display: grid; gap: 16px; }
.cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 900px) {
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { color: var(--text); margin: 0 0 12px; letter-spacing: -0.01em; line-height: 1.2; font-weight: 600; }
h1 { font-size: clamp(32px, 4.2vw, 48px); letter-spacing: -0.02em; font-weight: 700; }
h2 { font-size: clamp(24px, 2.6vw, 32px); }
h3 { font-size: 17px; font-weight: 600; }
h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.10em; color: var(--text-mute); font-weight: 600; }
p  { margin: 0 0 12px; color: var(--text-dim); }
.lead { font-size: 17px; color: var(--text-dim); max-width: 700px; }

/* Eyebrow / kicker — small uppercase label */
.eyebrow, .kicker {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 12px;
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
}
.eyebrow::before { content: "// "; opacity: 0.5; }

.gold  { color: var(--gold); }
.blue  { color: var(--blue); }
.green { color: var(--green); }
.muted { color: var(--text-mute); }
.center { text-align: center; }
.mono  { font-family: var(--mono); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .12s ease, border-color .12s ease, color .12s ease;
  text-decoration: none;
  font-family: inherit;
  line-height: 1;
}
.btn-primary  { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-primary:hover { background: #5C97FF; border-color: #5C97FF; color: #fff; }
.btn-secondary { background: transparent; color: var(--text); border-color: var(--line-3); }
.btn-secondary:hover { background: var(--panel); border-color: var(--line-3); color: var(--text); }
.btn-ghost   { background: transparent; color: var(--text-dim); border-color: transparent; padding-left: 4px; padding-right: 4px;}
.btn-ghost:hover { color: var(--text); }
.btn-blue    { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-blue:hover { background: #5C97FF; color: #fff; }
.btn-sm      { padding: 7px 12px; font-size: 13px; }
.cta-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

/* ---------- Top Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,15,20,0.85);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 56px; }
.brand { display: flex; align-items: center; gap: 9px; color: var(--text); font-weight: 600; letter-spacing: -0.01em; }
.brand:hover { color: var(--text); }
.brand-mark {
  width: 22px; height: 22px;
  border-radius: 4px;
  background: var(--panel-2);
  border: 1px solid var(--line-3);
  position: relative;
}
.brand-mark::after {
  content:""; position:absolute; left:50%; top:50%;
  width:8px; height:8px; border-radius:50%;
  background: var(--blue); transform: translate(-50%,-50%);
  box-shadow: 0 0 0 2px rgba(79,140,255,0.15);
}
.brand-name { font-size: 15px; }
.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-links a { color: var(--text-dim); padding: 6px 10px; border-radius: 4px; font-size: 13.5px; font-weight: 500; }
.nav-links a:hover, .nav-links a.active { color: var(--text); background: var(--panel); }
.nav-cta { display: flex; gap: 8px; align-items: center; }
.nav-toggle { display: none; background: transparent; border: 1px solid var(--line-3); color: var(--text); border-radius: var(--radius); padding: 6px 10px; cursor: pointer; }
@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 56px; left: 0; right: 0; flex-direction: column; padding: 8px 16px; background: var(--bg-2); border-bottom: 1px solid var(--line); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 6px; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn-secondary { display: none; }
}

/* ---------- Hero ---------- */
.hero { padding: 72px 0 56px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero > .container { position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 1000px){ .hero-grid { grid-template-columns: 1fr; } }
.hero h1 .accent { color: var(--text); }
.hero .bullets { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px; margin-top: 20px; padding: 0; }
.hero .bullets li { list-style: none; color: var(--text-dim); font-size: 13.5px; padding-left: 16px; position: relative; font-family: var(--mono); }
.hero .bullets li::before { content: ""; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; border-radius: 1px; background: var(--text-mute); }

ul.plain, ol.plain { padding: 0; margin: 0 0 12px 0; }
ul.plain li, ol.plain li { list-style: none; padding-left: 18px; position: relative; color: var(--text-dim); margin-bottom: 6px; font-size: 14px; }
ul.plain li::before { content:""; position:absolute; left:0; top:9px; width:6px; height:1px; background: var(--text-mute); }

.trust-row { margin-top: 18px; display: flex; gap: 14px; flex-wrap: wrap; color: var(--text-mute); font-size: 12px; font-family: var(--mono); }
.trust-row span { display: inline-flex; align-items: center; gap: 6px; }
.trust-row .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

/* ---------- Cards / Panels ---------- */
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
  transition: border-color .12s ease, background .12s ease;
}
.card:hover { border-color: var(--line-2); background: var(--panel-2); }
.card h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.card .icon {
  width: 26px; height: 26px; border-radius: 5px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg-3); border: 1px solid var(--line);
  color: var(--text-dim); font-size: 13px; font-family: var(--mono);
  flex: none;
}
.card.gold .icon, .card.green .icon { background: var(--bg-3); border-color: var(--line); color: var(--text-dim); }
.card p { font-size: 13.5px; margin: 0; }

.kv { display: grid; grid-template-columns: auto 1fr; gap: 6px 12px; font-family: var(--mono); font-size: 12px; color: var(--text-dim); }
.kv b { color: var(--text); font-weight: 500; }

.label-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 2px 7px;
  border-radius: 3px;
  background: var(--bg-3);
  color: var(--text-dim);
  border: 1px solid var(--line);
}
.label-chip.live { color: var(--green); }
.label-chip.live::before { content:""; width:6px; height:6px; border-radius:50%; background: var(--green); }
.label-chip.alert { color: var(--warn); }
.label-chip.alert::before { content:""; width:6px; height:6px; border-radius:50%; background: var(--warn); }

/* ---------- Hero Mock Dashboard ---------- */
.dash {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px;
  position: relative;
  overflow: hidden;
}
.dash-head { display: flex; align-items: center; justify-content: space-between; padding: 4px 4px 12px; border-bottom: 1px solid var(--line); margin-bottom: 12px; }
.dash-title { font-size: 12px; color: var(--text-dim); display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); }
.dash-title .live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.dash-tabs { display: flex; gap: 4px; }
.dash-tabs span { font-family: var(--mono); font-size: 10px; color: var(--text-mute); padding: 3px 8px; border-radius: 3px; border: 1px solid transparent; }
.dash-tabs span.active { color: var(--text); border-color: var(--line-2); background: var(--bg-3); }

.dash-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 10px; }
@media (max-width: 600px) { .dash-grid { grid-template-columns: 1fr; } }

.dash-cam {
  background: #050709;
  border-radius: var(--radius); min-height: 200px;
  position: relative; overflow: hidden;
  border: 1px solid var(--line);
  background-image: linear-gradient(180deg, #0A0F16 0%, #050709 100%);
}
.dash-cam .scan { display: none; }
.dash-cam .box { position: absolute; border: 1px solid var(--blue); border-radius: 2px; }
.dash-cam .box.person { left: 14%; top: 38%; width: 20%; height: 48%; }
.dash-cam .box.truck  { left: 50%; top: 50%; width: 36%; height: 36%; }
.dash-cam .box::after {
  content: attr(data-label);
  position: absolute; top: -16px; left: -1px;
  font-size: 9px; font-family: var(--mono); color: #fff;
  background: var(--blue); padding: 1px 5px; border-radius: 2px;
  white-space: nowrap; letter-spacing: 0.04em;
}
.dash-cam .cam-meta {
  position: absolute; bottom: 8px; left: 10px; right: 10px;
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 10px; color: var(--text-mute);
}
.dash-cam .cam-meta .rec { color: var(--text-dim); display: inline-flex; align-items: center; gap: 6px; }
.dash-cam .cam-meta .rec::before { content:""; width:6px; height:6px; border-radius:50%; background: var(--green); }

.dash-side { display: grid; gap: 10px; }
.dash-card { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius); padding: 10px 12px; }
.dash-card .label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--text-mute); }
.dash-card .value { font-size: 18px; font-weight: 600; color: var(--text); margin-top: 2px; font-family: var(--mono); }
.dash-card .sub { font-size: 11px; color: var(--text-mute); font-family: var(--mono); }
.bar-fill { height: 4px; border-radius: 2px; background: var(--line-2); margin-top: 8px; overflow: hidden; }
.bar-fill > span { display: block; height: 100%; background: var(--blue); }

.dash-search {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 8px 10px; display: flex; align-items: center; gap: 8px; margin-top: 12px;
}
.dash-search .icon { color: var(--text-mute); font-family: var(--mono); }
.dash-search input { background: transparent; border: none; color: var(--text); font-size: 12.5px; outline: none; flex: 1; font-family: var(--mono); }
.dash-search .kbd { font-family: var(--mono); font-size: 10px; color: var(--text-mute); border: 1px solid var(--line-2); padding: 1px 6px; border-radius: 3px; }

.dash-events {
  margin-top: 10px;
  display: grid; gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.dash-event {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 10px; align-items: center;
  background: var(--bg-3);
  padding: 8px 12px;
  font-size: 12px;
  border-bottom: 1px solid var(--line);
}
.dash-event:last-child { border-bottom: none; }
.dash-event .time { font-family: var(--mono); color: var(--text-mute); font-size: 11px; }
.dash-event .desc { color: var(--text-dim); }
.dash-event .tags { display: flex; gap: 4px; flex-wrap: wrap; justify-content: flex-end; }

.tag {
  font-family: var(--mono); font-size: 10px; padding: 2px 6px; border-radius: 3px;
  background: var(--bg-3); color: var(--text-dim); border: 1px solid var(--line-2);
  white-space: nowrap;
}
.tag.gold  { color: var(--text-dim); }
.tag.green { color: var(--green); border-color: rgba(34,197,94,0.25); background: rgba(34,197,94,0.06); }
.tag.red   { color: var(--red);   border-color: rgba(239,68,68,0.25);  background: rgba(239,68,68,0.06); }

/* ---------- Pipeline diagram ---------- */
.pipeline { display: grid; grid-template-columns: repeat(11, 1fr); gap: 6px; align-items: stretch; }
.pipeline .step {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 14px 10px; text-align: left;
  position: relative; grid-column: span 2;
}
.pipeline .step .ico { font-family: var(--mono); font-size: 11px; color: var(--text-mute); margin-bottom: 6px; letter-spacing: 0.1em; text-transform: uppercase; }
.pipeline .step .t  { display: none; }
.pipeline .step .d  { font-size: 13.5px; color: var(--text); margin: 0; font-weight: 500; line-height: 1.2; }
.pipeline .arrow { display: flex; align-items: center; justify-content: center; color: var(--text-mute); font-size: 14px; font-family: var(--mono); grid-column: span 1; }
@media (max-width: 1000px) {
  .pipeline { grid-template-columns: 1fr; }
  .pipeline .step, .pipeline .arrow { grid-column: span 1; }
  .pipeline .arrow { transform: rotate(90deg); padding: 4px 0; }
}

/* ---------- Pricing ---------- */
.price-card {
  position: relative;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 22px;
  display: flex; flex-direction: column;
  transition: border-color .12s ease;
}
.price-card.featured { border-color: var(--line-3); }
.price-card .tier { font-size: 14px; color: var(--text); font-weight: 600; margin-bottom: 4px; }
.price-card .tier-desc { color: var(--text-mute); font-size: 12px; margin: 0 0 14px; }
.price-card .price { font-size: 30px; font-weight: 700; margin: 0; letter-spacing: -0.02em; }
.price-card .price small { font-size: 13px; color: var(--text-mute); font-weight: 400; margin-left: 2px; }
.price-card ul { list-style: none; padding: 0; margin: 14px 0 22px; border-top: 1px solid var(--line); padding-top: 14px; }
.price-card ul li { font-size: 13.5px; color: var(--text-dim); padding-left: 18px; position: relative; margin-bottom: 8px; }
.price-card ul li::before { content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 1px; background: var(--text-mute); }
.price-card .btn { margin-top: auto; justify-content: center; }
.price-card .badge {
  position: absolute; top: 14px; right: 14px;
  font-family: var(--mono); font-size: 10px; color: var(--blue);
  letter-spacing: 0.10em; text-transform: uppercase;
}

/* ---------- Comparison table ---------- */
.compare {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden;
  font-size: 13.5px; min-width: 720px;
}
.compare th, .compare td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: middle; }
.compare th { background: var(--bg-3); color: var(--text-mute); font-weight: 500; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--mono); }
.compare tr:last-child td { border-bottom: none; }
.compare tr.gobi-row td { background: rgba(79,140,255,0.04); color: var(--text); font-weight: 500; }
.compare .yes { color: var(--green); font-family: var(--mono); }
.compare .no  { color: var(--text-mute); font-family: var(--mono); }
.compare .meh { color: var(--text-mute); font-family: var(--mono); font-style: italic; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ---------- FAQ ---------- */
.faq details {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 14px 16px; margin-bottom: 8px; cursor: pointer;
}
.faq details[open] { border-color: var(--line-2); }
.faq summary { list-style: none; font-weight: 500; font-size: 14px; color: var(--text); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--text-mute); font-size: 18px; line-height: 1; transition: transform .12s ease; flex: none; font-family: var(--mono); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin: 10px 0 0; font-size: 13.5px; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 12px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 700px) { .form .row { grid-template-columns: 1fr; } }
.form label { display: block; font-size: 11px; color: var(--text-mute); margin-bottom: 6px; font-weight: 500; font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.08em; }
.form input, .form select, .form textarea {
  width: 100%; background: var(--bg-3); color: var(--text);
  border: 1px solid var(--line-2); border-radius: var(--radius); padding: 10px 12px;
  font-family: inherit; font-size: 14px; outline: none;
  transition: border-color .12s ease;
}
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--blue); }
.form textarea { min-height: 100px; resize: vertical; }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
@media (max-width: 700px) { .checks { grid-template-columns: 1fr; } }
.checks label { display: flex; align-items: center; gap: 8px; color: var(--text); font-size: 13.5px; cursor: pointer; margin: 0; font-family: var(--font); text-transform: none; letter-spacing: 0; }
.checks input { width: auto; }
.form-note { font-size: 12px; color: var(--text-mute); font-family: var(--mono); }

/* ---------- Question / problem cards ---------- */
.q-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 14px 16px;
  color: var(--text-dim);
  font-size: 13.5px; line-height: 1.45;
  font-family: var(--mono);
}
.q-card::before { content: ">"; color: var(--text-mute); font-family: var(--mono); margin-right: 8px; }

/* ---------- Search log mockup ---------- */
.log-mock { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.log-mock .bar { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-bottom: 1px solid var(--line); background: var(--bg-3); }
.log-mock .bar input {
  background: var(--bg-2); border: 1px solid var(--line-2); color: var(--text);
  padding: 7px 10px; border-radius: var(--radius); flex: 1; font-family: var(--mono); font-size: 12.5px;
  min-width: 0;
}
.log-mock .chips { display: flex; gap: 6px; padding: 8px 14px; flex-wrap: wrap; border-bottom: 1px solid var(--line); background: var(--bg-3); }
.log-mock table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 720px; }
.log-mock th, .log-mock td { padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--line); white-space: nowrap; }
.log-mock th { background: var(--bg-3); color: var(--text-mute); font-weight: 500; font-size: 10px; text-transform: uppercase; letter-spacing: 0.10em; font-family: var(--mono); }
.log-mock td { font-family: var(--mono); font-size: 12px; color: var(--text-dim); }
.log-mock td:nth-child(4) { font-family: var(--font); color: var(--text); font-size: 13px; white-space: normal; }
.log-mock tr:last-child td { border-bottom: none; }
.log-mock .clip-btn {
  display: inline-block; font-size: 10px; padding: 3px 8px; border-radius: 3px;
  background: transparent; border: 1px solid var(--line-2); color: var(--text-dim); font-family: var(--mono); cursor: pointer;
}
.log-mock .clip-btn:hover { color: var(--text); border-color: var(--line-3); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.cta-banner h3 { font-size: 20px; margin: 0; }
.cta-banner p { margin: 4px 0 0; color: var(--text-dim); font-size: 14px; max-width: 520px; }
@media (max-width: 800px) { .cta-banner { flex-direction: column; align-items: flex-start; padding: 22px; } }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 48px 0 28px; background: var(--bg); }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-col h4 { font-size: 11px; color: var(--text-mute); margin-bottom: 12px; font-family: var(--mono); }
.foot-col a { display: block; color: var(--text-dim); padding: 3px 0; font-size: 13.5px; }
.foot-col a:hover { color: var(--text); }
.foot-bottom { margin-top: 36px; border-top: 1px solid var(--line); padding-top: 18px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; color: var(--text-mute); font-size: 12px; font-family: var(--mono); }
.foot-status { color: var(--text-dim); font-family: var(--mono); font-size: 12px; margin-top: 12px; display: inline-flex; align-items: center; gap: 8px; }
.foot-status .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

/* ---------- Status / metrics ---------- */
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 800px) { .metrics { grid-template-columns: 1fr 1fr; } }
.metric { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 16px; }
.metric .num { font-size: 22px; font-weight: 600; color: var(--text); font-family: var(--mono); letter-spacing: -0.02em; }
.metric .lbl { font-size: 11px; color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; font-family: var(--mono); }

/* ---------- Misc ---------- */
.divider { height: 1px; background: var(--line); margin: 28px 0; }
.callout {
  border-left: 2px solid var(--blue);
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 18px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--text);
}
.section-head { max-width: 720px; margin-bottom: 32px; }
.section-head .lead { margin: 0; }

/* "Replaces / Not / Best for" 3-up */
.honest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 800px) { .honest-grid { grid-template-columns: 1fr; } }
.honest-grid .panel h4 { color: var(--text-mute); margin-bottom: 10px; }
.honest-grid .panel ul { list-style: none; padding: 0; margin: 0; }
.honest-grid .panel ul li {
  font-family: var(--mono); font-size: 13px; color: var(--text-dim);
  padding: 8px 0; border-top: 1px solid var(--line);
}
.honest-grid .panel ul li:first-child { border-top: none; padding-top: 0; }

.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 16px; background: var(--blue); color: #fff; padding: 10px 14px; border-radius: var(--radius); z-index: 100; }
