/* ═══════════════════════════════════════════════════════════════════════
   Truvald — Shared Design System
   BrkrOps · Dark theme · Barlow Condensed · Gold accents
   "Strong in Truth"
   ═══════════════════════════════════════════════════════════════════════ */

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

:root {
  --gold:         #C48400;
  --gold-dim:     #9a6600;
  --gold-bright:  #f5a800;
  --gold-glow:    rgba(196,132,0,0.14);
  --bg:           #ffffff;
  --bg2:          #f7f7f7;
  --bg3:          #eeeeee;
  --border:       rgba(0,0,0,0.10);
  --text:         #0d0d0d;
  --text-dim:     #444444;
  --radius:       4px;
  --transition:   0.2s ease;

  /* Severity palette */
  --sev-critical: #d93025;
  --sev-high:     #e8590c;
  --sev-moderate: #C48400;
  --sev-low:      #2e7ab4;
  --sev-info:     #607a99;
  --sev-good:     #1e8c4e;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── ANIMATIONS ─────────────────────────────────────────────────────── */

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 4px currentColor; opacity: 1; }
  50%       { box-shadow: 0 0 10px currentColor; opacity: 0.7; }
}

@keyframes scan-line {
  0%   { top: 0%; opacity: 0.9; }
  90%  { top: 96%; opacity: 0.9; }
  100% { top: 96%; opacity: 0; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

@keyframes severity-in {
  from { transform: scaleX(0); transform-origin: left; }
  to   { transform: scaleX(1); transform-origin: left; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ── HEADER ─────────────────────────────────────────────────────────── */

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px max(64px, calc((100vw - 1440px) / 2 + 64px));
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: #141414;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  gap: 20px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  text-decoration: none;
  cursor: pointer;
}

.logo-wrap img { cursor: pointer; }

.header-flag {
  height: 20px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.7;
}

.truvald-logo-header {
  height: 38px;
  width: auto;
  flex-shrink: 0;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

.divider-v {
  width: 1px;
  height: 38px;
  background: rgba(255,255,255,0.10);
  flex-shrink: 0;
}

.header-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}

.header-product-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── NAV ────────────────────────────────────────────────────────────── */

nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 6px 12px;
  border-radius: 2px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

nav a:hover  { color: var(--gold); }
nav a.active { color: var(--gold); background: rgba(196,132,0,0.12); }

.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #141414 !important;
  background: var(--gold) !important;
  padding: 7px 16px !important;
  border-radius: 2px;
  transition: background var(--transition), opacity var(--transition);
}

.nav-cta:hover { background: var(--gold-bright) !important; opacity: 1; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  padding: 7px 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: all 0.2s;
}

/* ── MAIN ────────────────────────────────────────────────────────────── */

main {
  flex: 1;
  width: 100%;
  padding: 68px max(64px, calc((100vw - 1440px) / 2 + 64px)) 96px;
}

/* ── PAGE WATERMARK ─────────────────────────────────────────────────── */

.page-watermark {
  position: fixed;
  right: -20px;
  top: 120px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 180px;
  font-weight: 800;
  color: rgba(0,0,0,0.035);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.02em;
  z-index: 0;
  white-space: nowrap;
}

/* ── HERO ────────────────────────────────────────────────────────────── */

.hero {
  padding: 32px 0 40px;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 32px 0 48px;
}

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-lead {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 20px;
}

/* ── BUTTONS ─────────────────────────────────────────────────────────── */

.btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
}

.btn-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196,132,0,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(0,0,0,0.15);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-dark {
  background: #141414;
  color: var(--gold);
  border: 1px solid rgba(196,132,0,0.3);
}

.btn-dark:hover {
  background: #1c1c1c;
  border-color: var(--gold);
}

/* ── SECTION LABEL ───────────────────────────────────────────────────── */

.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  margin-top: 64px;
}

.section-label .line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.section-label span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}

/* ── STAT STRIP ─────────────────────────────────────────────────────── */

.stat-strip {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
}

.stat-item {
  flex: 1;
  padding: 20px 24px;
  border-right: 1px solid var(--border);
  background: var(--bg2);
  transition: background var(--transition);
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--bg3); }

.stat-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ── CARD GRIDS ──────────────────────────────────────────────────────── */

.card-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.card:hover {
  border-color: rgba(196,132,0,0.3);
  box-shadow: 0 2px 16px rgba(196,132,0,0.06);
}

.card-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.15;
}

.card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ── FEATURE ROWS ────────────────────────────────────────────────────── */

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(196,132,0,0.07);
  position: relative;
  z-index: 1;
}

.feature-row:last-child { border-bottom: none; }

.feature-row.reversed { direction: rtl; }
.feature-row.reversed > * { direction: ltr; }

.feature-text .card-eyebrow { margin-bottom: 12px; }

.feature-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.feature-text h2 em { font-style: normal; color: var(--gold); }

.feature-text p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  margin-top: 20px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  font-size: 14px;
  color: var(--text-dim);
  border-bottom: 1px solid rgba(196,132,0,0.07);
  line-height: 1.5;
}

.feature-list li:last-child { border-bottom: none; }

.feature-list li svg {
  width: 14px; height: 14px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── MOCKUP PANELS ───────────────────────────────────────────────────── */

.mockup-panel {
  background: #111;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.08);
  position: relative;
}

.mockup-bar {
  background: #1a1a1a;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mockup-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}

.d-red    { background: #ff5f56; }
.d-yellow { background: #ffbd2e; }
.d-green  { background: #27c93f; }

.mockup-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-left: 4px;
  flex: 1;
}

.mockup-body { padding: 0; }

/* Scan line animation */
.mockup-scan {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,132,0,0.7), transparent);
  animation: scan-line 3.5s ease-in-out infinite;
  pointer-events: none;
}

/* ── FINDING ROWS ────────────────────────────────────────────────────── */

.finding-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 12px;
}

.finding-row:last-child { border-bottom: none; }

.finding-sev {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 2px;
  flex-shrink: 0;
  min-width: 68px;
  text-align: center;
}

.sev-critical { color: var(--sev-critical); background: rgba(217,48,37,0.12); border: 1px solid rgba(217,48,37,0.25); }
.sev-high     { color: var(--sev-high);     background: rgba(232,89,12,0.12); border: 1px solid rgba(232,89,12,0.25); }
.sev-moderate { color: var(--sev-moderate); background: rgba(196,132,0,0.12); border: 1px solid rgba(196,132,0,0.25); }
.sev-low      { color: var(--sev-low);      background: rgba(46,122,180,0.12); border: 1px solid rgba(46,122,180,0.25); }
.sev-info     { color: var(--sev-info);     background: rgba(96,122,153,0.12); border: 1px solid rgba(96,122,153,0.25); }
.sev-good     { color: var(--sev-good);     background: rgba(30,140,78,0.12);  border: 1px solid rgba(30,140,78,0.25); }

.finding-id {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
  width: 52px;
}

.finding-desc {
  flex: 1;
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  line-height: 1.4;
}

/* ── Language toggle ──────────────────────────────────────────────────────── */
.lang-toggle {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(196,132,0,0.06);
  border: 1px solid rgba(196,132,0,0.45);
  border-radius: 3px;
  padding: 5px 10px;
  cursor: pointer;
  color: var(--text-dim);
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lang-toggle:hover { border-color: var(--gold); background: rgba(196,132,0,0.12); }

.lang-toggle .lang-opt {
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
  cursor: pointer;
}
.lang-toggle .lang-opt:hover         { color: #fff; }
.lang-toggle .lang-opt.lang-active   { color: var(--gold); cursor: default; }
.lang-toggle .lang-sep {
  color: rgba(255,255,255,0.25);
  pointer-events: none;
}

.finding-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-glow 2s ease-in-out infinite;
}

/* ── HEALTH ROW (ops dashboard mockup) ──────────────────────────────── */

.health-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.health-row:last-child { border-bottom: none; }

.h-status {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-glow 2.5s ease-in-out infinite;
}

.h-ok   { background: #34c864; color: #34c864; }
.h-warn { background: var(--gold-bright); color: var(--gold-bright); }
.h-err  { background: #f55; color: #f55; }

.h-name  { flex: 1; color: rgba(255,255,255,0.8); font-size: 12px; letter-spacing: 0.04em; }
.h-role  { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: 0.18em; color: rgba(255,255,255,0.25); text-transform: uppercase; }

.h-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 2px;
}

.tag-ok   { color: #34c864; background: rgba(52,200,100,0.10); border: 1px solid rgba(52,200,100,0.2); }
.tag-warn { color: var(--gold-bright); background: rgba(245,168,0,0.10); border: 1px solid rgba(245,168,0,0.2); }
.tag-err  { color: #f55; background: rgba(255,80,80,0.10); border: 1px solid rgba(255,80,80,0.2); }
.tag-info { color: #50a0ff; background: rgba(80,160,255,0.10); border: 1px solid rgba(80,160,255,0.2); }

/* ── TEMPLATE ROW ─────────────────────────────────────────────────────── */

.tpl-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 11px;
}

.tpl-row:last-child { border-bottom: none; }
.tpl-name  { flex: 1; color: rgba(255,255,255,0.75); font-size: 12px; }
.tpl-algo  { color: rgba(255,255,255,0.25); font-family: 'Barlow Condensed', sans-serif; letter-spacing: 0.1em; min-width: 60px; }
.tpl-valid { color: rgba(255,255,255,0.4); font-family: 'Barlow Condensed', sans-serif; letter-spacing: 0.08em; min-width: 48px; }

/* ── GPO ROW ─────────────────────────────────────────────────────────── */

.gpo-card {
  margin: 10px 14px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}

.gpo-card.gpo-ok   { border-color: rgba(52,200,100,0.2); }
.gpo-card.gpo-warn { border-color: rgba(245,168,0,0.3); }

.gpo-hdr {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: rgba(255,255,255,0.03);
  font-size: 11px;
}

.gpo-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.12em;
  flex-shrink: 0;
}

.gpo-name { flex: 1; color: rgba(255,255,255,0.7); font-size: 12px; }

.gpo-body { padding: 0 12px 10px; }

.gpo-conflict {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 11px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.gpo-conflict:last-child { border-bottom: none; }

.gpo-key  { color: rgba(255,255,255,0.4); font-family: monospace; font-size: 11px; flex: 1; }
.gpo-vals { color: var(--sev-moderate); font-family: monospace; font-size: 11px; flex-shrink: 0; }

/* ── SURVEY SECTION ─────────────────────────────────────────────────── */

.srv-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.srv-row:last-child { border-bottom: none; }

.srv-id {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  flex-shrink: 0;
  width: 56px;
  padding-top: 1px;
}

.srv-q { flex: 1; color: rgba(255,255,255,0.7); font-size: 12px; line-height: 1.5; }

.srv-ans {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 2px;
  flex-shrink: 0;
}

.ans-yes  { color: #34c864; background: rgba(52,200,100,0.1); border: 1px solid rgba(52,200,100,0.25); }
.ans-no   { color: #f55;    background: rgba(255,80,80,0.1);   border: 1px solid rgba(255,80,80,0.25); }
.ans-pend { color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); }

/* ── STATS MATRIX ─────────────────────────────────────────────────────── */

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}

.matrix-table th {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 8px 10px;
  text-align: right;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: #151515;
}

.matrix-table th:first-child { text-align: left; }

.matrix-table td {
  padding: 9px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  text-align: right;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  vertical-align: middle;
}

.matrix-table td:first-child {
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}

.matrix-table tr:last-child td { border-bottom: none; }

.m-critical { color: var(--sev-critical); }
.m-high     { color: var(--sev-high); }
.m-moderate { color: var(--sev-moderate); }
.m-low      { color: var(--sev-low); }
.m-info     { color: var(--sev-info); }
.m-good     { color: var(--sev-good); }
.m-zero     { color: rgba(255,255,255,0.12); }

/* ── COLLECTOR WORKFLOW ───────────────────────────────────────────────── */

.workflow-steps {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.workflow-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.workflow-step:last-child { border-bottom: none; }

.wf-num {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(196,132,0,0.15);
  border: 1px solid rgba(196,132,0,0.35);
  color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.wf-content { flex: 1; }

.wf-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
}

.wf-desc { font-size: 11px; color: rgba(255,255,255,0.35); line-height: 1.5; }

.wf-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 2px;
  flex-shrink: 0;
  align-self: center;
  color: var(--gold);
  background: rgba(196,132,0,0.1);
  border: 1px solid rgba(196,132,0,0.25);
}

/* ── CONTROL CATEGORY CARDS ──────────────────────────────────────────── */

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.cat-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.cat-card:hover {
  border-color: rgba(196,132,0,0.3);
  box-shadow: 0 2px 12px rgba(196,132,0,0.06);
}

.cat-id {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.cat-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.cat-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}

.cat-count {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-top: 10px;
}

/* ── SEVERITY LEGEND ─────────────────────────────────────────────────── */

.severity-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.severity-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius);
  border: 1px solid;
  background: var(--bg2);
}

.severity-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.severity-badge .label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.sb-critical { border-color: rgba(217,48,37,0.3);  }
.sb-critical .dot { background: var(--sev-critical); }
.sb-critical .label { color: var(--sev-critical); }

.sb-high { border-color: rgba(232,89,12,0.3); }
.sb-high .dot { background: var(--sev-high); }
.sb-high .label { color: var(--sev-high); }

.sb-moderate { border-color: rgba(196,132,0,0.3); }
.sb-moderate .dot { background: var(--sev-moderate); }
.sb-moderate .label { color: var(--sev-moderate); }

.sb-low { border-color: rgba(46,122,180,0.3); }
.sb-low .dot { background: var(--sev-low); }
.sb-low .label { color: var(--sev-low); }

.sb-info { border-color: rgba(96,122,153,0.3); }
.sb-info .dot { background: var(--sev-info); }
.sb-info .label { color: var(--sev-info); }

.sb-good { border-color: rgba(30,140,78,0.3); }
.sb-good .dot { background: var(--sev-good); }
.sb-good .label { color: var(--sev-good); }

/* ── CTA STRIP ───────────────────────────────────────────────────────── */

.cta-strip {
  background: linear-gradient(135deg, #141414, #1c1c1c);
  border: 1px solid rgba(196,132,0,0.2);
  border-radius: var(--radius);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 80px;
  flex-wrap: wrap;
}

.cta-strip h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.cta-strip p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 480px;
}

.cta-strip .btn-primary { flex-shrink: 0; }

/* ── NOTICE / CALLOUT ───────────────────────────────────────────────── */

.notice {
  border: 1px solid rgba(196,132,0,0.3);
  background: rgba(196,132,0,0.05);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.notice svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; margin-top: 2px; }
.notice strong { color: var(--gold); }

/* ── PRICING ─────────────────────────────────────────────────────────── */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.price-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.price-card:hover {
  border-color: rgba(196,132,0,0.3);
  box-shadow: 0 4px 20px rgba(196,132,0,0.07);
}

.price-card.featured {
  border-color: rgba(196,132,0,0.5);
  background: #fff;
  box-shadow: 0 4px 24px rgba(196,132,0,0.1);
}

.price-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.price-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.price-amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin: 16px 0 4px;
}

.price-period {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.price-desc {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 24px;
  line-height: 1.6;
  flex: 1;
}

.price-features {
  list-style: none;
  margin-bottom: 28px;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(196,132,0,0.07);
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.4;
}

.price-features li:last-child { border-bottom: none; }
.price-features li svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ── SPEC / REQUIREMENTS TABLE ──────────────────────────────────────── */

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.spec-table th {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 10px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  background: var(--bg3);
}

.spec-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(196,132,0,0.07);
  color: var(--text-dim);
  vertical-align: top;
  line-height: 1.5;
}

.spec-table td:first-child {
  color: var(--text);
  font-weight: 500;
  width: 38%;
}

.spec-table tr:last-child td { border-bottom: none; }
.spec-table tr:hover td { background: rgba(196,132,0,0.02); }

/* ── FORM ─────────────────────────────────────────────────────────────── */

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  background: var(--bg2);
  border: 1px solid rgba(196,132,0,0.2);
  border-radius: 2px;
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  padding: 12px 16px;
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--gold); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(0,0,0,0.2); }

.form-textarea { resize: vertical; min-height: 140px; line-height: 1.6; }

/* ── CODE ────────────────────────────────────────────────────────────── */

.code-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  overflow: hidden;
}

.code-bar {
  background: #1a1a1a;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.code-body {
  padding: 20px 20px;
  overflow-x: auto;
}

.code-body pre {
  font-family: 'Consolas', 'Monaco', monospace;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  white-space: pre;
}

.code-body .cmd-prompt { color: var(--gold); }
.code-body .cmd-flag   { color: #50a0ff; }
.code-body .cmd-path   { color: rgba(255,255,255,0.5); }
.code-body .cmd-output { color: rgba(255,255,255,0.35); }

/* ── ABOUT ───────────────────────────────────────────────────────────── */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.about-text p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--text); font-weight: 600; }

.about-sidebar {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.about-sidebar h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.sidebar-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}

.sidebar-item:last-child { border-bottom: none; }
.sidebar-item strong { color: var(--text); display: block; margin-bottom: 2px; }

/* ── FOOTER ──────────────────────────────────────────────────────────── */

footer {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px max(64px, calc((100vw - 1440px) / 2 + 64px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  flex-shrink: 0;
  background: #141414;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
}

.f-left {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

.f-left a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.f-left a:hover { color: var(--gold); }

.f-sep { margin: 0 12px; opacity: 0.25; }

.f-brkrops {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  transition: opacity var(--transition);
  outline: none;
  cursor: pointer;
}

.f-brkrops:hover { opacity: 0.9; }

.f-brkrops img { height: 18px; width: auto; filter: brightness(0) invert(1); }

.f-right {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

/* ── EMAIL BLUR ──────────────────────────────────────────────────────── */

a.email-blur {
  filter: blur(5px);
  cursor: pointer;
  user-select: none;
  transition: filter 0.25s ease;
  border-radius: 2px;
}

a.email-blur.revealed { filter: none; user-select: auto; }

/* ── UTILITIES ───────────────────────────────────────────────────────── */

.text-gold  { color: var(--gold); }
.text-dim   { color: var(--text-dim); }
.mt-0       { margin-top: 0 !important; }
.mb-8       { margin-bottom: 8px; }
.mb-16      { margin-bottom: 16px; }
.mb-24      { margin-bottom: 24px; }
.mb-32      { margin-bottom: 32px; }
.mb-48      { margin-bottom: 48px; }
.mb-64      { margin-bottom: 64px; }

/* ── LIGHTBOX ────────────────────────────────────────────────────────── */

img.lightbox-trigger {
  cursor: zoom-in;
  transition: opacity 0.15s ease;
}

img.lightbox-trigger:hover { opacity: 0.9; }

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.2s ease;
  cursor: zoom-out;
}

.lightbox-overlay.visible { opacity: 1; }

.lightbox-overlay img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  transform: scale(0.96);
  transition: transform 0.2s ease;
  cursor: default;
}

.lightbox-overlay.visible img { transform: scale(1); }

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease;
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ── RESPONSIVE ─────────────────────────────────────────────────────── */

@media (max-width: 1100px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  header { padding: 16px 24px; }

  nav { display: none; flex-direction: column; width: 100%; }
  nav.open { display: flex; }

  nav a { width: 100%; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
  nav a:last-child { border-bottom: none; }

  .nav-toggle { display: flex; }
  header { flex-wrap: wrap; }
  nav.open { order: 3; padding-top: 12px; }

  main { padding: 72px 24px 88px; }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; }

  .card-grid-2,
  .card-grid-3,
  .card-grid-4 { grid-template-columns: 1fr; }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 56px;
    padding-bottom: 56px;
  }

  .feature-row.reversed { direction: ltr; }

  .pricing-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .stat-strip { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }

  .page-watermark { font-size: 90px; }
  .hero h1 { font-size: clamp(32px, 8vw, 56px); }

  .cta-strip { padding: 32px 28px; }
  .about-grid { grid-template-columns: 1fr; }

  footer { padding: 18px 24px; }
  .f-right { display: none; }
}

@media (max-width: 600px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  main { padding: 72px 16px 88px; }
  .category-grid { grid-template-columns: 1fr; }
  .severity-strip { gap: 6px; }
  .cta-strip { flex-direction: column; }
}

/* ── BLOG ──────────────────────────────────────────────────────────────── */

.blog-body main {
  padding-top: 96px;
}

.breadcrumbs {
  max-width: 760px;
  margin: 0 auto 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.breadcrumbs a { color: var(--gold); }
.breadcrumbs a:hover { color: var(--gold-bright); }
.breadcrumbs .crumb-sep { margin: 0 10px; opacity: 0.45; }
.breadcrumbs .crumb-current { color: var(--text); }

article.article {
  max-width: 760px;
  margin: 0 auto;
}

/* The site-wide `header { position: fixed }` and `footer { position: fixed }`
 * selectors target ALL header/footer elements, including the semantic
 * <header class="article-header"> and <footer class="article-footer"> inside
 * each <article>. Without these explicit resets, the article header gets
 * pinned to the top with a black background and the article footer gets
 * pinned to the bottom — overlapping the page nav/footer and hiding content.
 * Keep the resets together so future selector changes don't lose them. */
.article-header,
.article-footer {
  position: static;
  top: auto; right: auto; bottom: auto; left: auto;
  background: transparent;
  border: 0;
  z-index: auto;
  display: block;
  padding: 0;
  flex-shrink: initial;
  gap: 0;
}

.article-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.article-header .article-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.article-header h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  color: var(--text);
}

.article-dek {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-dim);
  margin-bottom: 22px;
  font-weight: 300;
}

.article-meta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.article-meta .meta-author { color: var(--text); }
.article-meta .meta-sep { opacity: 0.4; }

.article-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
}

.article-body p,
.article-body ul,
.article-body figure,
.article-body pre {
  margin: 0 0 22px;
}

.article-body h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin: 48px 0 18px;
  color: var(--text);
}

.article-body h2.article-body-h1 {
  font-size: 34px;
  margin-top: 56px;
}

.article-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.005em;
  margin: 36px 0 14px;
  color: var(--text);
}

.article-body ul {
  padding-left: 22px;
}
.article-body ul li {
  margin-bottom: 10px;
}

.article-body strong { font-weight: 600; color: var(--text); }
.article-body em { font-style: italic; }

.article-body a {
  color: var(--gold);
  border-bottom: 1px solid rgba(196,132,0,0.35);
  transition: color var(--transition), border-color var(--transition);
}
.article-body a:hover {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
}

.article-body code {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.88em;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1px 6px;
  color: #6a4500;
}

.article-body pre {
  background: #141414;
  color: #e6e6e6;
  border-radius: 4px;
  padding: 18px 20px;
  overflow-x: auto;
  border: 1px solid rgba(196,132,0,0.18);
  font-size: 13.5px;
  line-height: 1.55;
}
.article-body pre code {
  background: transparent;
  border: 0;
  padding: 0;
  color: inherit;
  font-size: inherit;
}

.article-figure {
  margin: 32px 0;
  text-align: center;
}
.article-figure img {
  max-width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: inline-block;
}
.article-figure figcaption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-dim);
  font-style: italic;
  line-height: 1.55;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.article-footer {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}
.article-footer p { margin-bottom: 10px; }
.article-footer a {
  color: var(--gold);
  border-bottom: 1px solid rgba(196,132,0,0.35);
}
.article-footer a:hover {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
}

.article-cta {
  max-width: 760px;
  margin: 56px auto 0;
  padding: 28px 32px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.article-cta h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
.article-cta p {
  font-size: 14px;
  color: var(--text-dim);
  max-width: 460px;
  margin: 0;
  line-height: 1.6;
}

/* Blog index */

.article-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.article-card {
  display: block;
  padding: 28px 32px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
  text-decoration: none;
  color: inherit;
}
.article-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.article-card-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.article-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 10px;
}

.article-card-dek {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.article-card-meta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: flex;
  gap: 8px;
  align-items: center;
}

@media (max-width: 720px) {
  .article-header h1 { font-size: 32px; }
  .article-dek { font-size: 16px; }
  .article-body { font-size: 16px; }
  .article-body h2 { font-size: 24px; }
  .article-body h2.article-body-h1 { font-size: 28px; }
  .article-body h3 { font-size: 18px; }
  .article-body pre { font-size: 12.5px; padding: 14px 16px; }
  .article-cta { flex-direction: column; align-items: flex-start; padding: 22px; }
  .article-card { padding: 22px; }
}
