/* ════════════════════════════════════════════════════════════════════
   GFS Design System 10.0 — Brand DNA Components
   Layered on top of v10.css. Globe, vibe grid, world map, hero pillars,
   ops strip, feed, temperature cards, rails, sonic wave, barcode,
   voice/tone, topology, do/don't, photo placeholders.
   ════════════════════════════════════════════════════════════════════ */

/* ─── BARCODE ACCENT STRIP ────────────────────────────────────── */
.barcode {
  display: flex;
  align-items: end;
  gap: 2px;
  height: 24px;
  margin: var(--sp-4) 0;
}
.barcode .b {
  background: var(--cobalt);
  width: 2px;
  height: 100%;
}
.barcode .b.w { width: 4px; }
.barcode .b.h2 { height: 70%; }
.barcode .b.h3 { height: 50%; }
.barcode .b.t { background: var(--tufts); }
.barcode .b.gap { background: transparent; width: 6px; }

/* Slim accent — top of hero / page section */
.accent-strip {
  height: 1px;
  background: linear-gradient(90deg, transparent 0, var(--silver) 8%, var(--silver) 92%, transparent 100%);
  border-radius: 0;
  opacity: .8;
}

/* ─── GLOBE — ANIMATED ORBITAL MARK ──────────────────────────── */
.globe {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto;
}
.globe-core {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--jordy);
  background:
    radial-gradient(circle at 35% 30%, var(--alice) 0, transparent 50%),
    radial-gradient(circle at 65% 70%, var(--ice) 0, transparent 60%);
}
.globe-ring {
  position: absolute;
  inset: -10px;
  border: 1px solid var(--tufts);
  border-radius: 50%;
  opacity: .35;
  animation: globe-spin 20s linear infinite;
}
.globe-ring.r2 {
  inset: -22px;
  border-color: var(--cobalt);
  opacity: .22;
  animation-duration: 32s;
  animation-direction: reverse;
}
.globe-ring.r3 {
  inset: -36px;
  border-color: var(--jordy);
  opacity: .15;
  animation-duration: 48s;
}
.globe-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}
.globe-orbit::before,
.globe-orbit::after {
  content: '';
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px dashed var(--silver);
  opacity: .55;
}
.globe-orbit::after { inset: 22%; border-color: var(--jordy); opacity: .4; }
.globe-pulse {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--tufts);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(70,139,230,.5);
  animation: globe-pulse 2.2s ease-out infinite;
}
.globe-pulse.p1 { top: 24%; left: 22%; }
.globe-pulse.p2 { top: 58%; right: 18%; animation-delay: .7s; background: var(--cobalt); }
.globe-pulse.p3 { bottom: 18%; left: 42%; animation-delay: 1.4s; background: var(--jordy); }
@keyframes globe-spin { to { transform: rotate(360deg); } }
@keyframes globe-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(70,139,230,.55); }
  70%  { box-shadow: 0 0 0 14px rgba(70,139,230,0); }
  100% { box-shadow: 0 0 0 0 rgba(70,139,230,0); }
}

/* ─── VIBE GRID — brand adjective stack ─────────────────────── */
.vibe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 4px;
  padding: 2px;
  background: var(--cobalt);
  border-radius: var(--r-md);
  overflow: hidden;
}
.vibe-word {
  background: var(--bg-card-10);
  text-align: center;
  padding: var(--sp-5) var(--sp-3);
  font-family: var(--font-display);
  font-size: var(--t-base);
  font-weight: 800;
  letter-spacing: -.3px;
  color: var(--cobalt);
  text-transform: uppercase;
  position: relative;
  transition: background var(--dur-fast), color var(--dur-fast);
  cursor: default;
}
.vibe-word::after {
  content: attr(data-meta);
  display: block;
  font-family: var(--font-mono);
  font-size: var(--t-3xs);
  font-weight: 500;
  letter-spacing: 1.4px;
  color: var(--slate);
  margin-top: 6px;
  text-transform: uppercase;
}
.vibe-word:hover {
  background: var(--cobalt);
  color: #fff;
}
.vibe-word:hover::after { color: var(--jordy); }

/* ─── HERO PILLARS — capability stack ────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}
.pillar {
  background: var(--bg-card-10);
  border: 1px solid var(--border-10);
  border-left: 3px solid var(--tufts);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
}
.pillar .num {
  font-family: var(--font-mono);
  font-size: var(--t-2xs);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--steel);
}
.pillar .ttl {
  font-family: var(--font-display);
  font-size: var(--t-lg);
  font-weight: 800;
  color: var(--cobalt);
  letter-spacing: -.4px;
  margin-top: 4px;
  line-height: 1.1;
}
.pillar .desc {
  font-size: var(--t-sm);
  color: var(--graphite);
  margin-top: 6px;
  line-height: 1.45;
}

/* ─── OPS STRIP — wide live metric bar ──────────────────────── */
.ops-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  background: var(--cobalt);
  border-radius: var(--r-md);
  overflow: hidden;
  color: #fff;
}
.ops-cell {
  padding: var(--sp-4) var(--sp-5);
  border-right: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.ops-cell:last-child { border-right: none; }
.ops-cell .lbl {
  font-family: var(--font-mono);
  font-size: var(--t-3xs);
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--jordy);
}
.ops-cell .val {
  font-family: var(--font-display);
  font-size: var(--t-2xl);
  font-weight: 800;
  letter-spacing: -.6px;
  color: #fff;
  font-variant-numeric: tabular-nums;
  margin-top: 4px;
  line-height: 1;
}
.ops-cell .sub {
  font-family: var(--font-mono);
  font-size: var(--t-3xs);
  color: var(--jordy);
  margin-top: 4px;
  letter-spacing: .6px;
}
.ops-cell.live::before {
  content: '';
  position: absolute;
  top: var(--sp-4); right: var(--sp-3);
  width: 6px; height: 6px;
  background: #34D399;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(52,211,153,.5);
  animation: ops-pulse 2s ease-out infinite;
}
@keyframes ops-pulse {
  0% { box-shadow: 0 0 0 0 rgba(52,211,153,.6); }
  70% { box-shadow: 0 0 0 8px rgba(52,211,153,0); }
}

/* ─── SPARKLINE — inline mini bar chart ─────────────────────── */
.sparkline {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 28px;
}
.spark-bar {
  width: 4px;
  background: var(--tufts);
  border-radius: 1px;
  transition: background var(--dur-fast);
}
.kpi .sparkline { margin-top: var(--sp-3); }

/* ─── DELTA INDICATORS ───────────────────────────────────────── */
.delta {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: .4px;
}
.delta.up { color: var(--success-10); }
.delta.down { color: var(--error-10); }
.delta.flat { color: var(--steel); }
.delta::before { display: inline-block; font-weight: 700; }
.delta.up::before { content: '▲'; font-size: var(--t-3xs); }
.delta.down::before { content: '▼'; font-size: var(--t-3xs); }
.delta.flat::before { content: '—'; }

/* ─── REAL-TIME FEED ─────────────────────────────────────────── */
.feed-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-10);
  border-radius: var(--r-md);
  overflow: hidden;
}
.feed-item {
  display: grid;
  grid-template-columns: 70px 8px 1fr auto;
  gap: var(--sp-3);
  align-items: center;
  padding: 10px var(--sp-4);
  background: var(--bg-card-10);
  border-bottom: 1px solid var(--border-10);
  font-size: var(--t-sm);
}
.feed-item:last-child { border-bottom: none; }
.feed-item .ts {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  color: var(--steel);
  letter-spacing: .4px;
}
.feed-item .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--tufts);
}
.feed-item.success .dot { background: var(--success-10); }
.feed-item.warning .dot { background: var(--warning-10); }
.feed-item.error .dot { background: var(--error-10); }
.feed-item .msg { color: var(--black-10); }
.feed-item .src {
  font-family: var(--font-mono);
  font-size: var(--t-3xs);
  color: var(--steel);
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 2px 6px;
  background: var(--fog);
  border-radius: var(--r-sm);
}

/* ─── TEMPERATURE / METRIC CARDS ──────────────────────────────── */
.temp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--sp-3);
}
.temp-card {
  background: var(--bg-card-10);
  border: 1px solid var(--border-10);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  position: relative;
  border-left: 3px solid var(--success-10);
}
.temp-card.warn { border-left-color: var(--warning-10); }
.temp-card.danger { border-left-color: var(--error-10); }
.temp-card .tc-loc {
  font-family: var(--font-mono);
  font-size: var(--t-2xs);
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.temp-card .tc-val {
  font-family: var(--font-display);
  font-size: var(--t-2xl);
  font-weight: 800;
  color: var(--cobalt);
  letter-spacing: -.6px;
  font-variant-numeric: tabular-nums;
  margin-top: 4px;
  line-height: 1;
}
.temp-card.warn .tc-val { color: var(--warning-10); }
.temp-card.danger .tc-val { color: var(--error-10); }
.temp-card .tc-range {
  font-family: var(--font-mono);
  font-size: var(--t-3xs);
  color: var(--steel);
  letter-spacing: .6px;
  margin-top: 6px;
}
.temp-card .tc-trend { margin-top: 8px; }

/* ─── RAILS — vertical metric pillars ─────────────────────────── */
.rails-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
  gap: var(--sp-3);
  align-items: end;
  padding: var(--sp-5) var(--sp-4);
  background: var(--bg-card-10);
  border: 1px solid var(--border-10);
  border-radius: var(--r-md);
  height: 240px;
}
.rail {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
.rail .bar {
  width: 100%;
  background: var(--bg-tint);
  border-radius: 1px;
  border-top: 1px solid var(--silver);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.rail .fill {
  background: linear-gradient(180deg, var(--tufts), var(--cobalt));
  border-radius: 1px 1px 0 0;
  animation: rail-rise 800ms var(--ease-out);
}
.rail .lbl {
  font-family: var(--font-mono);
  font-size: var(--t-3xs);
  color: var(--steel);
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-top: 8px;
  text-align: center;
  word-break: break-word;
}
.rail .num {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--cobalt);
  margin-top: 4px;
}
@keyframes rail-rise { from { height: 0; } }

/* ─── NETWORK TOPOLOGY ──────────────────────────────────────── */
.topo {
  position: relative;
  background: var(--bg-card-10);
  border: 1px solid var(--border-10);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  min-height: 240px;
  background-image:
    linear-gradient(0deg, var(--silver) 1px, transparent 1px),
    linear-gradient(90deg, var(--silver) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: -1px -1px;
}
.topo-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.topo-dot {
  width: 22px; height: 22px;
  background: var(--cobalt);
  border-radius: 50%;
  border: 3px solid var(--bg-card-10);
  box-shadow: 0 0 0 1px var(--cobalt), 0 0 0 6px rgba(9,47,100,.08);
}
.topo-node.tufts .topo-dot { background: var(--tufts); box-shadow: 0 0 0 1px var(--tufts), 0 0 0 6px rgba(70,139,230,.12); }
.topo-node .lbl {
  font-family: var(--font-mono);
  font-size: var(--t-3xs);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cobalt);
  background: var(--bg-card-10);
  padding: 1px 4px;
  border-radius: var(--r-sm);
}

/* ─── SONIC BRAND — audio waveform ──────────────────────────── */
.sonic {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: var(--sp-5);
  background: var(--bg-tint-soft);
  border: 1px solid var(--border-10);
  border-radius: var(--r-md);
  height: 88px;
}
.sonic .wave {
  width: 4px;
  background: var(--cobalt);
  border-radius: 2px;
  animation: sonic-wave 1.4s ease-in-out infinite;
}
.sonic .wave:nth-child(2n) { background: var(--tufts); animation-duration: 1.7s; }
.sonic .wave:nth-child(3n) { background: var(--jordy); animation-duration: 1.1s; }
@keyframes sonic-wave {
  0%, 100% { height: 14%; opacity: .6; }
  50% { height: 100%; opacity: 1; }
}

/* ─── VOICE / TONE — do / don't columns ─────────────────────── */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: var(--sp-4);
}
@media (max-width: 720px) { .voice-grid { grid-template-columns: 1fr; } }
.voice-col {
  background: var(--bg-card-10);
  border: 1px solid var(--border-10);
  border-radius: var(--r-md);
  overflow: hidden;
}
.voice-head {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 10px var(--sp-4);
  display: flex;
  align-items: center;
  gap: 8px;
}
.voice-head.do {
  background: var(--success-bg-10);
  color: var(--success-10);
  border-bottom: 1px solid rgba(15,118,110,.18);
}
.voice-head.dont {
  background: var(--error-bg-10);
  color: var(--error-10);
  border-bottom: 1px solid rgba(220,38,38,.18);
}
.voice-item {
  padding: 10px var(--sp-4);
  border-bottom: 1px solid var(--border-10);
  font-size: var(--t-sm);
  color: var(--graphite);
}
.voice-item:last-child { border-bottom: none; }
.voice-item strong {
  color: var(--cobalt);
  font-family: var(--font-display);
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

/* ─── COLOR BLOCK — large palette card ──────────────────────── */
.color-block {
  background: var(--bg-card-10);
  border: 1px solid var(--border-10);
  border-radius: var(--r-md);
  overflow: hidden;
}
.color-block .chip {
  height: 132px;
  display: flex;
  align-items: flex-end;
  padding: var(--sp-3);
  color: #fff;
  font-family: var(--font-mono);
  font-size: var(--t-3xs);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.color-block .body {
  padding: var(--sp-3) var(--sp-4) var(--sp-4);
  font-family: var(--font-mono);
}
.color-block .body b {
  display: block;
  color: var(--cobalt);
  font-size: var(--t-sm);
  letter-spacing: .4px;
}
.color-block .body span {
  display: block;
  color: var(--steel);
  font-size: var(--t-2xs);
  letter-spacing: 1.4px;
  margin-top: 2px;
}
.color-block .body em {
  display: block;
  font-style: normal;
  color: var(--graphite);
  font-family: var(--font-body);
  font-size: var(--t-xs);
  margin-top: var(--sp-2);
  letter-spacing: 0;
}

/* ─── PHOTO GRID PLACEHOLDERS ───────────────────────────────── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--sp-2);
}
.photo-cell {
  aspect-ratio: 4/3;
  background:
    linear-gradient(135deg, var(--bg-tint-soft) 0, var(--bg-tint) 100%);
  border: 1px solid var(--border-10);
  border-radius: var(--r-sm);
  position: relative;
  overflow: hidden;
}
.photo-cell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0, transparent 10px, rgba(9,47,100,.04) 10px, rgba(9,47,100,.04) 11px);
}
.photo-cell .lbl {
  position: absolute;
  bottom: 8px; left: 8px;
  font-family: var(--font-mono);
  font-size: var(--t-3xs);
  color: var(--cobalt);
  background: var(--bg-card-10);
  padding: 2px 5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--r-sm);
}

/* ─── FLOW PIPELINE — process nodes ─────────────────────────── */
.flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--sp-2);
  align-items: stretch;
}
.flow-node {
  background: var(--bg-card-10);
  border: 1px solid var(--border-10);
  border-top: 3px solid var(--cobalt);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  position: relative;
  text-align: center;
}
.flow-node .step {
  font-family: var(--font-mono);
  font-size: var(--t-3xs);
  color: var(--steel);
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.flow-node .ttl {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--cobalt);
  font-size: var(--t-sm);
  margin-top: 4px;
  letter-spacing: -.1px;
}
.flow-node .desc {
  font-size: var(--t-xs);
  color: var(--graphite);
  margin-top: 4px;
  line-height: 1.4;
}
.flow-node + .flow-node::before {
  content: '→';
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--tufts);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: var(--t-14);
  display: none;
}
@media (min-width: 720px) { .flow-node + .flow-node::before { display: block; } }

/* ─── EDITORIAL HERO ────────────────────────────────────────── */
.editorial {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--sp-6);
  align-items: stretch;
}
@media (max-width: 720px) { .editorial { grid-template-columns: 1fr; } }
.editorial-main {
  background: var(--cobalt);
  color: #fff;
  border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-8);
  position: relative;
  overflow: hidden;
}
.editorial-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(147,191,239,.15) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
}
.editorial-main * { position: relative; z-index: 1; }
.editorial-main .eyebrow {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--jordy);
}
.editorial-main h2 {
  font-family: var(--font-display);
  font-size: var(--t-3xl);
  font-weight: 800;
  letter-spacing: -1px;
  margin-top: var(--sp-3);
  line-height: 1.05;
}
.editorial-main p {
  font-size: var(--t-base);
  line-height: 1.55;
  margin-top: var(--sp-4);
  color: rgba(255,255,255,.85);
  max-width: 60ch;
}
.editorial-side {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: var(--sp-3);
}
.editorial-side .tile-side {
  background: var(--bg-card-10);
  border: 1px solid var(--border-10);
  border-left: 3px solid var(--tufts);
  border-radius: var(--r-md);
  padding: var(--sp-4);
}
.editorial-side .tile-side .lbl {
  font-family: var(--font-mono);
  font-size: var(--t-2xs);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--slate);
}
.editorial-side .tile-side .val {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  font-weight: 800;
  color: var(--cobalt);
  margin-top: 4px;
  letter-spacing: -.4px;
  font-variant-numeric: tabular-nums;
}

/* ─── WORLD MAP / US MAP ────────────────────────────────────── */
.map-wrap {
  position: relative;
  background: var(--bg-card-10);
  border: 1px solid var(--border-10);
  border-radius: var(--r-md);
  padding: var(--sp-5);
  overflow: hidden;
}
.map-wrap svg { width: 100%; height: auto; display: block; }
.map-pulse {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--cobalt);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.map-pulse::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--cobalt);
  opacity: 0;
  animation: map-pulse 2.4s ease-out infinite;
}
.map-pulse.tufts { background: var(--tufts); }
.map-pulse.tufts::after { border-color: var(--tufts); }
.map-pulse.success { background: var(--success-10); }
.map-pulse.success::after { border-color: var(--success-10); }
@keyframes map-pulse {
  0% { opacity: .6; transform: scale(.6); }
  100% { opacity: 0; transform: scale(2.2); }
}
.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-top: var(--sp-4);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border-10);
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: .6px;
}
.map-legend .lg {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--graphite);
}
.map-legend .lg::before {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--cobalt);
  display: inline-block;
}
.map-legend .lg.tufts::before { background: var(--tufts); }
.map-legend .lg.success::before { background: var(--success-10); }
.map-legend .lg.warning::before { background: var(--warning-10); }

/* ─── CHART CARDS ───────────────────────────────────────────── */
.chart-card {
  background: var(--bg-card-10);
  border: 1px solid var(--border-10);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
}
.chart-card .chart-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--sp-3);
  gap: var(--sp-3);
}
.chart-card .chart-title {
  font-family: var(--font-display);
  font-size: var(--t-base);
  font-weight: 700;
  color: var(--cobalt);
  letter-spacing: -.1px;
}
.chart-card .chart-meta {
  font-family: var(--font-mono);
  font-size: var(--t-3xs);
  color: var(--slate);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.chart-card .chart-host { position: relative; height: 220px; }

/* Legends */
.legend-row {
  display: flex; flex-wrap: wrap; gap: var(--sp-4);
  margin-top: var(--sp-3);
  font-family: var(--font-mono);
  font-size: var(--t-2xs);
  letter-spacing: .8px;
  color: var(--graphite);
}
.legend-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 2px;
  margin-right: 6px;
  vertical-align: middle;
}

/* ─── BRAND CARD (mini brand tile) ──────────────────────────── */
.brand-card {
  background: var(--bg-card-10);
  border: 1px solid var(--border-10);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  position: relative;
  overflow: hidden;
}
.brand-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--cobalt);
}
.brand-card .mark {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.brand-card .mark .swatch-pair {
  display: flex;
  gap: 4px;
}
.brand-card .mark .swatch-pair span {
  width: 18px; height: 24px;
  border-radius: 2px;
}
.brand-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--cobalt);
  font-size: var(--t-base);
  letter-spacing: -.1px;
}
.brand-card .tagline {
  font-family: var(--font-mono);
  font-size: var(--t-3xs);
  color: var(--steel);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-top: 4px;
}
.brand-card p {
  font-size: var(--t-sm);
  color: var(--graphite);
  line-height: 1.5;
  margin-top: var(--sp-3);
}

/* ─── TYPE SPECIMEN ─────────────────────────────────────────── */
.type-specimen {
  background: var(--bg-card-10);
  border: 1px solid var(--border-10);
  border-radius: var(--r-md);
  padding: var(--sp-5) var(--sp-6);
  font-family: var(--font-display);
}
.type-specimen .massive {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  letter-spacing: -3px;
  color: var(--cobalt);
  line-height: .95;
}
.type-specimen .massive .accent {
  color: var(--tufts);
}
.type-specimen .label-10 { margin-top: var(--sp-4); }

/* ─── TIMELINE ──────────────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: var(--sp-6);
}
.timeline::before {
  content: '';
  position: absolute;
  left: 4px; top: 6px; bottom: 6px;
  width: 1px;
  background: var(--border-10);
}
.timeline-item {
  position: relative;
  padding: var(--sp-2) 0 var(--sp-4);
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -25px;
  top: 14px;
  width: 9px; height: 9px;
  background: var(--cobalt);
  border-radius: 50%;
  border: 2px solid var(--bg-card-10);
  box-shadow: 0 0 0 1px var(--cobalt);
}
.timeline-item .ts {
  font-family: var(--font-mono);
  font-size: var(--t-2xs);
  color: var(--steel);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.timeline-item .ttl {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--cobalt);
  margin-top: 2px;
  font-size: var(--t-sm);
}
.timeline-item .desc {
  font-size: var(--t-sm);
  color: var(--graphite);
  margin-top: 4px;
  line-height: 1.45;
}
