/* Atlas Verified — Organic Import Intel Microsite
   Brand tokens aligned to atlasverified.ai (Inter + gold accent) */

:root {
  --black: #0a0a0a;
  --ink: #0a0a0a;
  --muted: #6b6b6b;
  --faint: #9a9a9a;
  --line: #e4e4e4;
  --line-strong: #d0d0d0;
  --surface: #ffffff;
  --surface-2: #f7f7f5;
  --surface-3: #f0efeb;
  --gold: #c19000;
  --gold-soft: #fdf8ec;
  --gold-deep: #ab8000;
  --high: #8b1e3f;
  --high-bg: #f8e0e6;
  --med: #964219;
  --med-bg: #fff3e6;
  --low: #2f5d16;
  --low-bg: #eaf5e4;
  --ok: #1b5e3b;
  --logistics: #3d5a6c;
  --logistics-bg: #e8f0f5;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 0 rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.04);
  --header-h: 56px;
  --nav-h: 52px;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --max: 1120px;
  --pad: clamp(16px, 4vw, 28px);
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--surface-2);
  min-height: 100dvh;
}
img { max-width: 100%; display: block; }
button, input, select { font: inherit; }
a { color: inherit; }
button { cursor: pointer; border: 0; background: none; }
.tabular { font-variant-numeric: tabular-nums; }

/* Skip */
.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--black); color: #fff; padding: 8px 12px; z-index: 100;
}
.skip:focus { left: 8px; top: 8px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  height: var(--header-h);
  background: var(--black);
  color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad);
  border-bottom: 2px solid var(--gold);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: #fff;
}
.brand-logo {
  height: 28px;
  width: auto;
  max-width: min(168px, 52vw);
  object-fit: contain;
}
.header-meta {
  display: none; flex-direction: column; align-items: flex-end;
  font-size: 11px; color: rgba(255,255,255,.72); gap: 2px;
}
.header-meta b { color: #fff; font-weight: 600; }
@media (min-width: 720px) {
  .header-meta { display: flex; }
}

/* Mobile bottom nav */
.bottom-nav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  height: calc(var(--nav-h) + var(--safe-b));
  padding-bottom: var(--safe-b);
  background: var(--black);
  border-top: 1px solid rgba(199,154,0,.45);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.bottom-nav a {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; text-decoration: none; color: rgba(255,255,255,.55);
  font-size: 10px; font-weight: 600; letter-spacing: 0.02em;
  min-height: 44px;
}
.bottom-nav a svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.bottom-nav a.active { color: var(--gold); }
.bottom-nav a:active { opacity: 0.8; }

/* Desktop side rail */
.shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) calc(var(--nav-h) + var(--safe-b) + 28px);
}
@media (min-width: 960px) {
  .shell {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 28px;
    padding-bottom: 48px;
    align-items: start;
  }
  .bottom-nav { display: none; }
  .side-nav {
    display: block !important;
    position: sticky; top: calc(var(--header-h) + 16px);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px 10px;
    box-shadow: var(--shadow);
  }
}
.side-nav { display: none; }
.side-nav .nav-label {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--faint); font-weight: 700; padding: 6px 10px 10px;
}
.side-nav a {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px; border-radius: 8px;
  text-decoration: none; color: var(--muted);
  font-size: 13.5px; font-weight: 600;
}
.side-nav a:hover { background: var(--surface-2); color: var(--ink); }
.side-nav a.active {
  background: var(--black); color: #fff;
}
.side-nav a.active span.dot { background: var(--gold); }
.side-nav .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--line-strong);
}

/* Views */
.view { display: none; animation: fade .28s ease; }
.view.active { display: block; }
@keyframes fade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .view { animation: none; }
  html { scroll-behavior: auto; }
}

/* Hero */
.hero {
  margin-top: 18px;
  background: var(--black);
  color: #fff;
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(20px, 5vw, 36px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero::after {
  content: "";
  position: absolute; right: -40px; top: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(199,154,0,.28), transparent 70%);
  pointer-events: none;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.eyebrow i {
  width: 18px; height: 1px; background: var(--gold); display: inline-block;
}
.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 4.5vw, 2rem);
  line-height: 1.15; font-weight: 700; letter-spacing: -0.02em;
  max-width: 18ch;
}
.hero p {
  margin: 0; color: rgba(255,255,255,.72);
  font-size: 14.5px; max-width: 52ch; line-height: 1.55;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 0 16px; border-radius: 999px;
  font-size: 13.5px; font-weight: 700; text-decoration: none;
  transition: transform .15s ease, background .15s ease;
}
.btn:active { transform: scale(0.98); }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-ghost {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,.28);
}
.btn-dark { background: var(--black); color: #fff; }
.btn-outline {
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--line-strong);
}

/* Sections */
.section { margin-top: 22px; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 12px; margin-bottom: 12px; flex-wrap: wrap;
}
.section-head h2 {
  margin: 0; font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em;
}
.section-head p {
  margin: 4px 0 0; color: var(--muted); font-size: 13px;
}

/* Cards / grid */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 720px) {
  .kpi-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}
@media (min-width: 1024px) {
  .kpi-grid { grid-template-columns: repeat(6, 1fr); }
}
.kpi {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 14px 12px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.kpi::before {
  content: ""; position: absolute; left: 0; top: 0; right: 0; height: 3px;
  background: var(--gold);
}
.kpi .label {
  font-size: 11px; font-weight: 600; color: var(--muted);
  letter-spacing: 0.02em;
}
.kpi .value {
  margin-top: 6px;
  font-size: clamp(1.4rem, 4vw, 1.75rem);
  font-weight: 700; letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.kpi .sub {
  margin-top: 2px; font-size: 11px; color: var(--faint);
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card-hd {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.card-hd h3 {
  margin: 0; font-size: 14px; font-weight: 700;
}
.card-bd { padding: 14px 16px 16px; }
.card-bd.tight { padding: 0; }

.grid-2 {
  display: grid; gap: 12px;
}
@media (min-width: 800px) {
  .grid-2 { grid-template-columns: 1.1fr 0.9fr; }
}
.grid-3 {
  display: grid; gap: 12px;
}
@media (min-width: 800px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* Alerts */
.alert {
  display: grid; grid-template-columns: auto 1fr; gap: 12px;
  padding: 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--surface);
}
.alert + .alert { margin-top: 8px; }
.badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 54px; height: 24px; padding: 0 8px;
  border-radius: 999px; font-size: 10px; font-weight: 800;
  letter-spacing: 0.06em;
}
.badge.high { background: var(--high-bg); color: var(--high); }
.badge.medium { background: var(--med-bg); color: var(--med); }
.badge.low { background: var(--low-bg); color: var(--low); }
.badge.none { background: var(--surface-3); color: var(--muted); }
.badge.logistics { background: var(--logistics-bg); color: var(--logistics); }
.badge.commercial { background: #eef6ee; color: var(--ok); }
.alert h4 { margin: 0 0 4px; font-size: 13.5px; font-weight: 700; }
.alert p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.45; }

/* Talk list */
.talk-list { list-style: none; margin: 0; padding: 0; }
.talk-list li {
  display: grid; grid-template-columns: 28px 1fr; gap: 10px;
  padding: 12px 0; border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.talk-list li:last-child { border-bottom: 0; }
.talk-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--black); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
}

/* Charts */
.chart-wrap {
  position: relative;
  width: 100%;
  height: 240px;
}
@media (min-width: 800px) {
  .chart-wrap { height: 280px; }
}
.chart-wrap.sm { height: 200px; }

/* Toolbar / filters */
.toolbar {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 12px;
}
.search {
  flex: 1 1 180px;
  min-height: 44px; padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px; background: var(--surface);
  outline: none;
}
.search:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(199,154,0,.18); }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  min-height: 36px; padding: 0 12px; border-radius: 999px;
  border: 1px solid var(--line-strong); background: var(--surface);
  font-size: 12.5px; font-weight: 600; color: var(--muted);
}
.chip.active {
  background: var(--black); color: #fff; border-color: var(--black);
}
.chip:active { transform: scale(0.98); }

/* Tables */
.table-scroll {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  max-height: min(70vh, 640px);
}
table.data {
  width: 100%; border-collapse: collapse;
  font-size: 12.5px;
}
table.data th {
  position: sticky; top: 0; z-index: 1;
  background: var(--black); color: #fff;
  text-align: left; font-weight: 700; font-size: 11px;
  letter-spacing: 0.03em; text-transform: uppercase;
  padding: 11px 12px; white-space: nowrap;
  border-bottom: 2px solid var(--gold);
}
table.data td {
  padding: 11px 12px; border-bottom: 1px solid var(--line);
  vertical-align: top;
}
table.data tbody tr:nth-child(even) { background: var(--surface-2); }
table.data tbody tr:active { background: var(--gold-soft); }
table.data .num { text-align: right; font-variant-numeric: tabular-nums; font-weight: 600; }
table.data .name { font-weight: 700; max-width: 220px; }
.rank {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 6px;
  background: var(--surface-3); font-size: 11px; font-weight: 800;
  color: var(--muted);
}
.rank.top { background: var(--black); color: var(--gold); }

/* Port bars */
.port-row {
  display: grid; grid-template-columns: 88px 1fr 42px; gap: 10px;
  align-items: center; padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.port-row:last-child { border-bottom: 0; }
.port-name { font-weight: 700; }
.port-bar {
  height: 10px; background: var(--surface-3); border-radius: 999px; overflow: hidden;
}
.port-bar > i {
  display: block; height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
}
.port-row.muted .port-bar > i { background: var(--line-strong); opacity: 0.7; }
.port-n { text-align: right; font-weight: 700; font-variant-numeric: tabular-nums; }

/* Commodity tabs */
.seg {
  display: inline-flex; padding: 3px; background: var(--surface-3);
  border-radius: 999px; gap: 2px;
}
.seg button {
  min-height: 36px; padding: 0 14px; border-radius: 999px;
  font-size: 12.5px; font-weight: 700; color: var(--muted);
}
.seg button.active { background: var(--black); color: #fff; }

/* Compliance cards mobile */
.risk-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 14px;
  margin-bottom: 10px;
}
.risk-card .top {
  display: flex; justify-content: space-between; gap: 10px; align-items: flex-start;
  margin-bottom: 8px;
}
.risk-card h4 { margin: 0; font-size: 14px; font-weight: 700; }
.risk-card .meta { font-size: 12px; color: var(--muted); margin-top: 2px; }
.risk-card .flag {
  font-size: 13px; color: var(--ink); line-height: 1.45;
  margin: 0 0 6px;
}
.risk-card a {
  color: var(--gold-deep); font-size: 12px; font-weight: 600;
  word-break: break-all;
}

/* Empty / footer */
.note {
  font-size: 12.5px; color: var(--muted); line-height: 1.5;
  padding: 12px 14px; background: var(--surface-3);
  border-radius: var(--radius-sm); border-left: 3px solid var(--gold);
}
.site-foot {
  margin-top: 28px; padding: 18px 0 8px;
  border-top: 1px solid var(--line);
  color: var(--muted); font-size: 12px;
}
.site-foot strong { color: var(--ink); }

/* Loading */
.loading {
  min-height: 50vh; display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-weight: 600;
}

/* Stat pill row */
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.pill {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
  border-radius: 999px; padding: 6px 12px;
  font-size: 12px; font-weight: 600;
}
.pill b { color: var(--gold); font-weight: 800; }

/* Call strip */
.call-strip {
  margin-top: 16px;
  display: grid; gap: 10px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .call-strip { grid-template-columns: repeat(3, 1fr); }
}
.call-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.call-card .k {
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold-deep); margin-bottom: 6px;
}
.call-card h3 { margin: 0 0 6px; font-size: 15px; }
.call-card p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.45; }

/* ═══════════════════════════════════════════════════════════
   YoY briefing components — same font system as lead sheet
   ═══════════════════════════════════════════════════════════ */

h1, h2, h3, h4, h5, h6,
.brief-hero h1,
.verdict-card h3,
.brief-meta-card h2,
.view-section h1,
.view-section h2 {
  font-family: var(--font) !important;
  font-weight: 700;
}

.brief-hero {
  margin-top: 18px;
  background: var(--black);
  color: #fff;
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(20px, 5vw, 36px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.brief-hero::after {
  content: "";
  position: absolute; right: -40px; top: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(193,144,0,.28), transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
  font-family: var(--font);
}
.hero-eyebrow::before {
  content: "";
  width: 18px; height: 1px; background: var(--gold);
  display: inline-block;
}
.brief-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 4.5vw, 2rem);
  line-height: 1.15; font-weight: 700; letter-spacing: -0.02em;
  max-width: 22ch;
  color: #fff;
}
.hero-sub {
  margin: 0; color: rgba(255,255,255,.72);
  font-size: 14.5px; max-width: 56ch; line-height: 1.55;
  font-family: var(--font);
  font-weight: 400;
}
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.pill {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  border-radius: 999px; padding: 6px 12px;
  font-size: 12px; font-weight: 600;
  font-family: var(--font);
}
.pill b { color: var(--gold); font-weight: 800; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 16px; border-radius: 999px;
  background: var(--gold); color: var(--black);
  font-size: 13.5px; font-weight: 700; text-decoration: none;
  font-family: var(--font);
}
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 16px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28); color: #fff;
  font-size: 13.5px; font-weight: 700; text-decoration: none;
  font-family: var(--font);
  background: transparent;
}
.brief-meta-row {
  display: grid; gap: 10px; margin-top: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .brief-meta-row { grid-template-columns: repeat(3, 1fr); }
}
.brief-meta-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.brief-meta-card .k {
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold-deep); margin-bottom: 6px;
  font-family: var(--font);
}
.brief-meta-card h2 {
  margin: 0 0 6px; font-size: 15px; font-family: var(--font); font-weight: 700;
}
.brief-meta-card p {
  margin: 0; font-size: 13px; color: var(--muted); line-height: 1.45;
  font-family: var(--font); font-weight: 400;
}

.verdict-section { margin-top: 22px; }
.verdict-section h2 {
  margin: 0 0 4px; font-size: 1.05rem; font-family: var(--font); font-weight: 700;
}
.section-sub {
  margin: 0 0 12px; color: var(--muted); font-size: 13px; font-family: var(--font);
}
.verdict {
  display: grid; gap: 10px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .verdict { grid-template-columns: 1.15fr 1fr 1fr; }
}
.verdict-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.verdict-card.primary { border-top: 3px solid var(--ok); }
.verdict-card.reject { border-top: 3px solid var(--high); }
.verdict-card.secondary { border-top: 3px solid var(--gold); }
.verdict-card .k {
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold-deep); margin-bottom: 8px;
  font-family: var(--font);
}
.verdict-card h3 {
  margin: 0 0 8px; font-size: 15px; line-height: 1.3;
  font-family: var(--font); font-weight: 700;
}
.verdict-card p {
  margin: 0; font-size: 13.5px; color: var(--muted); line-height: 1.5;
  font-family: var(--font); font-weight: 400;
}

/* Override generic .kpi-grid from lead sheet when used as section after verdict */
.kpi-grid {
  display: grid; gap: 10px; margin-top: 18px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 800px) {
  .kpi-grid { grid-template-columns: repeat(3, 1fr); }
}
.kpi-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.kpi-card::before {
  content: ""; position: absolute; left: 0; top: 0; right: 0; height: 3px;
  background: var(--gold);
}
.kpi-label {
  font-size: 11px; font-weight: 600; color: var(--muted); font-family: var(--font);
}
.kpi-value {
  margin-top: 6px; font-size: 1.45rem; font-weight: 700;
  letter-spacing: -0.02em; font-variant-numeric: tabular-nums;
  font-family: var(--font);
}
.kpi-sub {
  margin-top: 2px; font-size: 11px; color: var(--faint); font-family: var(--font);
}

.takeaways-section {
  margin-top: 22px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 16px; box-shadow: var(--shadow);
}
.takeaways-section h2 {
  margin: 0 0 4px; font-size: 1.05rem; font-family: var(--font); font-weight: 700;
}
.takeaways { list-style: none; margin: 12px 0 0; padding: 0; }
.takeaways li {
  display: grid; grid-template-columns: 28px 1fr; gap: 10px;
  padding: 12px 0; border-bottom: 1px solid var(--line);
  font-size: 14px; font-family: var(--font);
}
.takeaways li:last-child { border-bottom: 0; }
.tp-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--black); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; font-family: var(--font);
}
.table-note {
  margin: 14px 0 0; font-size: 12.5px; color: var(--muted); line-height: 1.45;
  font-family: var(--font);
}
.report-footer {
  margin-top: 28px; padding: 18px 0 8px; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 12px; font-family: var(--font);
}
.report-footer strong { color: var(--ink); }

.view-section {
  margin-top: 18px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 16px; box-shadow: var(--shadow);
}
.view-section h1, .view-section h2 {
  margin: 0 0 6px; font-size: 1.1rem; font-family: var(--font); font-weight: 700;
}
.data-table {
  width: 100%; border-collapse: collapse; font-size: 13px; margin-top: 12px;
  font-family: var(--font);
}
.data-table th {
  text-align: left; background: var(--black); color: #fff;
  padding: 10px 12px; font-size: 11px; letter-spacing: .03em; text-transform: uppercase;
  border-bottom: 2px solid var(--gold); font-family: var(--font);
}
.data-table td {
  padding: 10px 12px; border-bottom: 1px solid var(--line); font-family: var(--font);
}
.data-table tr:nth-child(even) td { background: var(--surface-2); }
.data-table .num {
  text-align: right; font-variant-numeric: tabular-nums; font-weight: 600;
}

.gap-card, .signal-card, .monitor-item {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 14px; margin-bottom: 10px;
  box-shadow: var(--shadow); font-family: var(--font);
}
.gap-card h4, .signal-card h4 {
  margin: 0 0 6px; font-size: 14px; font-family: var(--font); font-weight: 700;
}
.gap-card p, .signal-card p, .monitor-item {
  margin: 0; font-size: 13px; color: var(--muted); line-height: 1.45;
  font-family: var(--font);
}
.chart-wrap { position: relative; width: 100%; height: 260px; margin: 12px 0; }

/* force-inter */
html, body, button, input, select, textarea {
  font-family: "Inter", system-ui, -apple-system, sans-serif !important;
}
