/* ==========================================================
   DashGear Lab — shared styles
   Palette:
   --ink      #101826  (asphalt navy — text, header)
   --paper    #FAFBFC  (windshield white — background)
   --line     #DDE3EA  (lane-line grey — borders)
   --amber    #E8930C  (dash-indicator amber — CTAs, scores)
   --steel    #3B6EA5  (steel blue — links, secondary)
   --mist     #EFF3F7  (panel background)
   ========================================================== */

:root {
  --ink: #101826;
  --paper: #FAFBFC;
  --line: #DDE3EA;
  --amber: #E8930C;
  --amber-dark: #C77A05;
  --steel: #3B6EA5;
  --mist: #EFF3F7;
  --max: 980px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

.display {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.mono {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
}

a { color: var(--steel); }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* ---------- Header ---------- */
.site-header {
  background: var(--ink);
  color: #fff;
  padding: 14px 0;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.logo span { color: var(--amber); }
.site-nav a {
  color: #C9D3DF;
  text-decoration: none;
  margin-left: 22px;
  font-size: 15px;
}
.site-nav a:hover { color: #fff; }

/* ---------- Disclosure bar ---------- */
.disclosure-bar {
  background: var(--mist);
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
  color: #4A5568;
  padding: 8px 0;
}
.disclosure-bar a { color: var(--steel); }

/* ---------- Hero ---------- */
.hero { padding: 52px 0 36px; }
.hero .eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--amber-dark);
  margin-bottom: 14px;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero .lede {
  font-size: 19px;
  color: #3A4657;
  max-width: 720px;
}
.hero .byline {
  margin-top: 18px;
  font-size: 14px;
  color: #66748A;
}

/* ---------- Verdict box (top pick) ---------- */
.verdict {
  border: 2px solid var(--ink);
  border-radius: 10px;
  overflow: hidden;
  margin: 28px 0 44px;
  background: #fff;
}
.verdict-head {
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.verdict-head strong { color: var(--amber); }
.verdict-body { padding: 20px 18px; display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.verdict-body p { flex: 1 1 380px; font-size: 16.5px; }

/* ---------- Gauge score (signature element) ---------- */
.gauge {
  font-family: 'IBM Plex Mono', monospace;
  background: var(--ink);
  color: var(--amber);
  border-radius: 8px;
  padding: 10px 16px;
  text-align: center;
  min-width: 110px;
}
.gauge .num { font-size: 32px; font-weight: 600; line-height: 1; }
.gauge .of { font-size: 12px; color: #8CA0BA; letter-spacing: 0.1em; }

/* ---------- Comparison table ---------- */
.compare-scroll { overflow-x: auto; margin: 20px 0 8px; border: 1px solid var(--line); border-radius: 10px; }
table.compare {
  border-collapse: collapse;
  width: 100%;
  min-width: 720px;
  font-size: 15px;
  background: #fff;
}
.compare th {
  background: var(--mist);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
  padding: 12px 14px;
  border-bottom: 2px solid var(--ink);
  white-space: nowrap;
}
.compare td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.compare tr:last-child td { border-bottom: none; }
.compare .score-cell { font-family: 'IBM Plex Mono', monospace; font-weight: 600; color: var(--amber-dark); white-space: nowrap; }
.badge {
  display: inline-block;
  background: var(--amber);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  padding: 2px 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.badge.alt { background: var(--steel); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--amber);
  color: #fff;
  font-weight: 600;
  font-size: 15.5px;
  text-decoration: none;
  padding: 11px 22px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
}
.btn:hover { background: var(--amber-dark); }
.btn.secondary {
  background: transparent;
  color: var(--steel);
  border: 1.5px solid var(--steel);
}
.btn.secondary:hover { background: var(--mist); }
.btn.small { padding: 8px 16px; font-size: 14px; }

/* ---------- Review cards ---------- */
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 38px);
  text-transform: uppercase;
  margin: 54px 0 8px;
}
.section-sub { color: #4A5568; margin-bottom: 26px; max-width: 720px; }

.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px 24px;
  margin-bottom: 28px;
}
.review-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.review h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  line-height: 1.15;
}
.review .best-for {
  font-size: 14px;
  color: var(--amber-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

/* Spec strip — mono readout */
.spec-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin: 14px 0 18px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
}
.spec {
  flex: 1 1 140px;
  padding: 10px 14px;
  border-right: 1px solid var(--line);
  background: var(--mist);
}
.spec:last-child { border-right: none; }
.spec .k { display: block; font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.1em; color: #66748A; margin-bottom: 2px; }
.spec .v { font-weight: 600; color: var(--ink); }

.pros-cons { display: flex; gap: 18px; flex-wrap: wrap; margin: 16px 0 20px; }
.pros, .cons { flex: 1 1 280px; font-size: 15.5px; }
.pros h4, .cons h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.pros h4 { color: #1E7B3C; }
.cons h4 { color: #B33636; }
.pros ul, .cons ul { list-style: none; }
.pros li::before { content: "+ "; color: #1E7B3C; font-weight: 700; }
.cons li::before { content: "– "; color: #B33636; font-weight: 700; }
.pros li, .cons li { margin-bottom: 5px; }

/* ---------- Guide & FAQ ---------- */
.guide p, .guide li { margin-bottom: 14px; }
.guide ul { padding-left: 22px; }
.guide h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  margin: 30px 0 10px;
}

details.faq {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  margin-bottom: 12px;
  padding: 0;
}
details.faq summary {
  cursor: pointer;
  font-weight: 600;
  padding: 15px 18px;
  list-style: none;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::before { content: "▸ "; color: var(--amber); }
details.faq[open] summary::before { content: "▾ "; }
details.faq .faq-body { padding: 0 18px 16px; color: #3A4657; }

/* ---------- Static pages ---------- */
.page { padding: 48px 0 20px; max-width: 760px; }
.page h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(34px, 5vw, 48px);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.page h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  text-transform: uppercase;
  margin: 30px 0 10px;
}
.page p, .page li { margin-bottom: 14px; }
.page ul { padding-left: 22px; }

/* ---------- Contact form ---------- */
.contact-form { max-width: 520px; margin-top: 24px; }
.contact-form label { display: block; font-weight: 600; font-size: 15px; margin: 16px 0 6px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 11px 12px;
  font-size: 16px;
  font-family: inherit;
  border: 1.5px solid var(--line);
  border-radius: 7px;
  background: #fff;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--steel);
  outline: none;
}
.contact-form button { margin-top: 20px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #A9B6C6;
  margin-top: 70px;
  padding: 34px 0;
  font-size: 14px;
}
.site-footer a { color: #C9D3DF; text-decoration: none; margin-right: 18px; }
.site-footer a:hover { color: #fff; }
.site-footer .foot-note { margin-top: 14px; font-size: 12.5px; color: #7C8BA0; max-width: 640px; }

@media (max-width: 640px) {
  .site-nav a { margin-left: 14px; font-size: 14px; }
  .hero { padding: 36px 0 24px; }
}
