@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=JetBrains+Mono:wght@400;500;700&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  --bg-void: #060810;
  --bg-deep: #0b0e17;
  --bg-surface: #101420;
  --bg-card: #141928;
  --bg-card-hi: #1a2035;
  --bg-elevated: #1e2540;
  --border-dim: #1e2540;
  --border: #2a3555;
  --border-hi: #354068;
  --text-bright: #f4f5fa;
  --text-primary: #dce0ea;
  --text-secondary: #a3adc5;
  --text-dim: #8090aa;
  --gold: #dba84e;
  --gold-soft: #c99b3f;
  --gold-glow: rgba(219, 168, 78, 0.12);
  --teal: #40dbc9;
  --teal-soft: #2cb8a8;
  --teal-glow: rgba(64, 219, 201, 0.10);
  --coral: #f06449;
  --coral-glow: rgba(240, 100, 73, 0.10);
  --blue: #6494f0;
  --blue-glow: rgba(100, 148, 240, 0.10);
  --purple: #a07cf0;
  --purple-glow: rgba(160, 124, 240, 0.10);
  --amber: #f0b840;
  --rose: #f07098;
  --green: #50d0a0;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

/* ============================================================
   2. RESET
   ============================================================ */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--border) var(--bg-deep);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

body {
  font-family: var(--font-body);
  background: var(--bg-void);
  color: var(--text-primary);
  line-height: 1.65;
  font-size: 0.92rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  scroll-padding-top: 90px;
}

/* ============================================================
   MOBILE NOTICE OVERLAY
   ============================================================ */
.mobile-notice {
  position: fixed; inset: 0; z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  background: rgba(6,8,16,0.85);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: 1.5rem;
}

.mobile-notice-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  max-width: 320px;
}

.mobile-notice-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.mobile-notice-text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.mobile-notice-btn {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--bg-void);
  background: var(--gold);
  border: none;
  border-radius: 8px;
  padding: 0.65rem 1.6rem;
  cursor: pointer;
}

/* ============================================================
   3. GRAIN OVERLAY
   ============================================================ */
.grain-overlay {
  position: fixed; inset: 0; z-index: 10000;
  pointer-events: none; opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   4. SCROLL PROGRESS
   ============================================================ */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; z-index: 9999;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transition: width 0.15s linear;
}

/* ============================================================
   5. NAVIGATION
   ============================================================ */
.nav-container {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(6, 8, 16, 0.88);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dim);
}

.nav-inner {
  max-width: 1340px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  padding-top: 0.6rem;
  padding-bottom: 0.35rem;
}

.nav-inner .brand-mark {
  margin-bottom: 0.3rem;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--text-bright);
  text-decoration: none;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.brand-logo {
  height: 24px;
  width: auto;
  opacity: 0.92;
}

.brand-separator {
  width: 1px;
  height: 18px;
  background: var(--border-dim);
  flex-shrink: 0;
}

.brand-dot {
  display: inline-block; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  margin-left: 2px; vertical-align: baseline;
}

.nav-scroll {
  display: flex; gap: 0.25rem;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  padding: 6px 12px; border-radius: 6px;
  transition: color 0.25s, background 0.25s;
}

.nav-link:hover { color: var(--text-secondary); background: var(--bg-card); }
.nav-link.active { color: var(--gold); background: var(--gold-glow); }

.mobile-toggle {
  display: none;
  background: none; border: none;
  color: var(--text-secondary); cursor: pointer;
  padding: 8px;
}

.mobile-menu {
  display: none;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border-dim);
  padding: 1rem 2rem;
  flex-direction: column; gap: 0.5rem;
}

.mobile-menu.show { display: flex; }
.hidden { display: none !important; }

/* ============================================================
   6. SECTION LAYOUT
   ============================================================ */
.section-container {
  max-width: 1340px; margin: 0 auto;
  padding: 4rem 2rem;
  overflow: hidden;
}

.section-header { margin-bottom: 2.5rem; }

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  color: var(--text-bright);
  line-height: 1.15;
  margin-bottom: 0.6rem;
}

.section-copy {
  font-size: 0.9rem; color: var(--text-primary);
  max-width: 680px; line-height: 1.75;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--border-dim), var(--border), var(--border-dim));
  margin: 0;
}

.section-alt { background: var(--bg-deep); }

/* ============================================================
   7. HERO
   ============================================================ */
.hero-gradient {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-void) 100%);
  padding-top: 80px;
}

.hero-block {
  max-width: 1340px; margin: 0 auto;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.6rem; font-weight: 700;
  color: var(--text-bright);
  line-height: 1.08;
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}

.hero-number {
  font-family: var(--font-display);
  font-size: 4.2rem; font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-caption {
  font-family: var(--font-mono);
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 1.2rem;
}

.lede {
  font-size: 1.05rem; color: var(--text-primary);
  max-width: 720px; line-height: 1.78;
  margin-top: 1.5rem;
}

/* ============================================================
   8. GRIDS
   ============================================================ */
.kpi-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem; margin-bottom: 1.75rem;
}

.grid-2 {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem; margin-bottom: 1.75rem;
}

.grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-bottom: 1.75rem;
}

.grid-4 {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem; margin-bottom: 1.75rem;
}

/* Grid/flex children overflow prevention */
.kpi-grid > *,
.grid-2 > *,
.grid-3 > *,
.grid-4 > *,
.grid-5 > *,
.comparison-grid > *,
.phase-timeline > * {
  min-width: 0;
}

/* ============================================================
   9. STAT CARDS
   ============================================================ */
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  position: relative; overflow: hidden;
  min-width: 0;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
  border-color: var(--border);
}

.stat-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 1.5rem; right: 1.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s;
}

.stat-card:hover::after { opacity: 1; }

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  color: var(--text-bright);
  line-height: 1.1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 0.35rem;
}

/* ============================================================
   10. DATA CARDS
   ============================================================ */
.data-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
  min-width: 0;
}
.data-card:last-child { margin-bottom: 0; }
.grid-2 > .data-card,
.grid-3 > .data-card,
.grid-4 > .data-card,
.grid-5 > .data-card { margin-bottom: 0; }

.data-card:hover {
  border-color: var(--border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 0.6rem;
}

.card-copy {
  font-size: 0.84rem; color: var(--text-primary);
  line-height: 1.7;
  overflow-wrap: break-word;
  word-break: break-word;
}

.card-note {
  font-family: var(--font-mono);
  font-size: 0.65rem; color: var(--text-secondary);
  margin-top: 0.75rem;
  letter-spacing: 0.02em;
  line-height: 1.55;
}

.chart-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  overflow: hidden;
  min-width: 0;
}

/* ============================================================
   11. CHART CONTAINERS
   ============================================================ */
.chart-container {
  width: 100%; position: relative;
  overflow: hidden;
}

.chart-h-200 { height: 200px; }
.chart-h-250 { height: 250px; }
.chart-h-280 { height: 280px; }
.chart-h-300 { height: 300px; }
.chart-h-320 { height: 320px; }
.chart-h-350 { height: 350px; }
.chart-h-360 { height: 360px; }
.chart-h-400 { height: 400px; }

.chart-container canvas {
  max-width: 100%;
}

/* ============================================================
   12. INSIGHT BOXES
   ============================================================ */
.insight-box {
  background: rgba(219, 168, 78, 0.08);
  border: 1px solid rgba(219, 168, 78, 0.22);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.4rem;
  font-size: 0.86rem; color: var(--text-primary);
  line-height: 1.7;
  margin: 1.5rem 0;
  overflow-wrap: break-word;
  word-break: break-word;
  box-shadow: 0 2px 12px rgba(219, 168, 78, 0.06);
}

.insight-box strong {
  color: var(--text-bright);
}

.insight-box.danger {
  background: rgba(240, 100, 73, 0.07);
  border-color: rgba(240, 100, 73, 0.22);
  border-left-color: var(--coral);
  box-shadow: 0 2px 12px rgba(240, 100, 73, 0.06);
}

.insight-box.success {
  background: rgba(64, 219, 201, 0.07);
  border-color: rgba(64, 219, 201, 0.22);
  border-left-color: var(--teal);
  box-shadow: 0 2px 12px rgba(64, 219, 201, 0.06);
}

/* ============================================================
   13. TABLES
   ============================================================ */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-dim);
  margin: 1rem 0;
  max-width: 100%;
}

.data-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.78rem;
  min-width: 0;
}

.data-table thead {
  position: sticky; top: 0;
  background: var(--bg-elevated);
  z-index: 2;
}

.data-table th {
  font-family: var(--font-mono);
  font-size: 0.55rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-secondary);
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.data-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border-dim);
  color: var(--text-primary);
}

.data-table tbody tr {
  transition: background 0.2s;
}

.data-table tbody tr:hover {
  background: var(--bg-card-hi);
}

.td-highlight {
  color: var(--text-bright) !important;
  font-weight: 600;
}

.td-accent {
  color: var(--gold) !important;
  font-weight: 600;
}

.td-danger {
  color: var(--coral) !important;
  font-weight: 600;
}

/* ============================================================
   14. TAGS
   ============================================================ */
.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.52rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px;
  background: var(--bg-elevated);
  color: var(--text-dim);
  border: 1px solid var(--border-dim);
}

.tag-success { color: var(--teal); background: var(--teal-glow); border-color: rgba(64, 219, 201, 0.2); }
.tag-danger { color: var(--coral); background: var(--coral-glow); border-color: rgba(240, 100, 73, 0.2); }
.tag-primary { color: var(--gold); background: var(--gold-glow); border-color: rgba(219, 168, 78, 0.2); }
.tag-blue { color: var(--blue); background: var(--blue-glow); border-color: rgba(100, 148, 240, 0.2); }
.tag-purple { color: var(--purple); background: var(--purple-glow); border-color: rgba(160, 124, 240, 0.2); }

/* ============================================================
   15. HEATMAP CELLS
   ============================================================ */
.heatmap-cell {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.62rem; font-weight: 600;
  padding: 4px 8px; border-radius: 4px;
  min-width: 48px; text-align: center;
}

.heat-0 { background: var(--bg-surface); color: var(--text-dim); }
.heat-1 { background: rgba(64, 219, 201, 0.08); color: var(--teal-soft); }
.heat-2 { background: rgba(64, 219, 201, 0.16); color: var(--teal); }
.heat-3 { background: rgba(219, 168, 78, 0.12); color: var(--gold-soft); }
.heat-4 { background: rgba(219, 168, 78, 0.22); color: var(--gold); }
.heat-5 { background: rgba(240, 100, 73, 0.16); color: var(--coral); }
.heat-6 { background: rgba(240, 100, 73, 0.28); color: var(--coral); }

.heat-empty { background: var(--bg-surface); color: var(--text-dim); }
.heat-ws { background: rgba(160, 124, 240, 0.12); color: var(--purple); }
.heat-low { background: rgba(64, 219, 201, 0.08); color: var(--teal-soft); }
.heat-mid { background: rgba(64, 219, 201, 0.18); color: var(--teal); }
.heat-high { background: rgba(219, 168, 78, 0.16); color: var(--gold); }
.heat-hot { background: rgba(240, 100, 73, 0.14); color: var(--coral); }
.heat-fire { background: rgba(240, 100, 73, 0.28); color: var(--coral); }
.heat-fortress { background: rgba(240, 100, 73, 0.35); color: #ff8a75; }
.heat-open { background: rgba(80, 208, 160, 0.14); color: var(--green); }
.heat-contested { background: rgba(240, 184, 64, 0.14); color: var(--amber); }

/* ============================================================
   15b. WHITESPACE PENETRATION MATRIX
   ============================================================ */
.ws-matrix {
  display: grid;
  grid-template-columns: 140px repeat(5, 1fr);
  gap: 3px;
  margin: 0.5rem 0 1.25rem;
}

.ws-matrix-header {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-align: center;
  padding: 0.6rem 0.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.ws-seg-size {
  display: block;
  font-size: 0.52rem;
  font-weight: 400;
  color: var(--text-dim);
  letter-spacing: 0.02em;
  text-transform: none;
}

.ws-matrix-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 0.6rem 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  border-right: 1px solid var(--border-dim);
}

.ws-claim-size {
  display: block;
  font-size: 0.52rem;
  font-weight: 400;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

.ws-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 0.55rem 0.35rem;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
  min-height: 56px;
}

.ws-cell:hover {
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.ws-cell-note {
  display: block;
  font-size: 0.48rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
  line-height: 1.2;
}

/* Whitespace: <1% -- bright red/coral background, signals opportunity */
.ws-whitespace {
  background: rgba(240, 100, 73, 0.18);
  color: var(--coral);
  border: 1px solid rgba(240, 100, 73, 0.25);
}
.ws-whitespace .ws-cell-note { color: #ff8a75; }

/* Sparse: 1-5% -- muted teal, underserved */
.ws-sparse {
  background: rgba(64, 219, 201, 0.08);
  color: var(--teal-soft);
  border: 1px solid rgba(64, 219, 201, 0.12);
}

/* Emerging: 5-10% -- stronger teal */
.ws-emerging {
  background: rgba(64, 219, 201, 0.16);
  color: var(--teal);
  border: 1px solid rgba(64, 219, 201, 0.22);
}

/* Contested: 10-20% -- gold/amber, crowding */
.ws-contested {
  background: rgba(219, 168, 78, 0.14);
  color: var(--gold);
  border: 1px solid rgba(219, 168, 78, 0.22);
}

/* Fortress: >20% -- deep red, avoid */
.ws-fortress {
  background: rgba(240, 100, 73, 0.32);
  color: #ff8a75;
  border: 1px solid rgba(240, 100, 73, 0.4);
}

/* Legend */
.ws-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.75rem 0;
  margin: 0.5rem 0;
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
}

.ws-legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}

.ws-legend-swatch {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  flex-shrink: 0;
}

.ws-legend-swatch.ws-fortress { background: rgba(240, 100, 73, 0.32); border: 1px solid rgba(240, 100, 73, 0.4); }
.ws-legend-swatch.ws-contested { background: rgba(219, 168, 78, 0.14); border: 1px solid rgba(219, 168, 78, 0.22); }
.ws-legend-swatch.ws-emerging { background: rgba(64, 219, 201, 0.16); border: 1px solid rgba(64, 219, 201, 0.22); }
.ws-legend-swatch.ws-sparse { background: rgba(64, 219, 201, 0.08); border: 1px solid rgba(64, 219, 201, 0.12); }
.ws-legend-swatch.ws-whitespace { background: rgba(240, 100, 73, 0.18); border: 1px solid rgba(240, 100, 73, 0.25); }

/* Opportunity tags for whitespace cards */
.ws-opp-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 0.6rem;
}

.ws-opp-high {
  background: rgba(64, 219, 201, 0.12);
  color: var(--teal);
  border: 1px solid rgba(64, 219, 201, 0.2);
}

.ws-opp-med {
  background: rgba(219, 168, 78, 0.1);
  color: var(--gold-soft);
  border: 1px solid rgba(219, 168, 78, 0.18);
}

/* Responsive: stack matrix on mobile */
@media (max-width: 900px) {
  .ws-matrix {
    grid-template-columns: 100px repeat(5, 1fr);
    gap: 2px;
  }
  .ws-matrix-header { font-size: 0.5rem; padding: 0.4rem 0.2rem; }
  .ws-matrix-label { font-size: 0.52rem; padding: 0.4rem 0.3rem; }
  .ws-cell { font-size: 0.6rem; padding: 0.4rem 0.2rem; min-height: 44px; }
  .ws-cell-note { font-size: 0.4rem; }
  .ws-legend { gap: 0.6rem; }
  .ws-legend-item { font-size: 0.48rem; }
}

@media (max-width: 640px) {
  .ws-matrix {
    grid-template-columns: 80px repeat(5, 1fr);
    gap: 1px;
  }
  .ws-cell-note { display: none; }
  .ws-seg-size { display: none; }
  .ws-claim-size { display: none; }
}

/* ============================================================
   16. GAUGES
   ============================================================ */
.gauge-container {
  margin: 0.6rem 0;
}

.gauge-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  overflow: hidden;
}

.gauge-fill {
  height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   17. PRICE ZONES
   ============================================================ */
.price-zone {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  position: relative;
  transition: border-color 0.3s;
}

.price-zone.target {
  border-color: var(--gold);
  background: var(--gold-glow);
}

.zone-label {
  font-family: var(--font-mono);
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-secondary);
}

.zone-number {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700;
  color: var(--text-bright);
  margin: 0.25rem 0;
}

.zone-copy {
  font-size: 0.78rem; color: var(--text-secondary);
  line-height: 1.55;
}

/* ============================================================
   18. PACK LADDER
   ============================================================ */
.pack-ladder {
  display: flex; flex-direction: column;
  gap: 0.5rem;
}

.pack-step {
  display: flex; align-items: center; gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  transition: border-color 0.25s;
}

.pack-step.core {
  border-color: var(--gold);
  background: var(--gold-glow);
}

/* ============================================================
   19. TIMELINE
   ============================================================ */
.timeline-item {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.timeline-item::before {
  content: '';
  position: absolute; left: 0; top: 0.55rem;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* ============================================================
   20. BULLET LIST
   ============================================================ */
.bullet-list {
  list-style: none; padding: 0;
}

.bullet-list li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.84rem;
  color: var(--text-primary);
  line-height: 1.65;
}

.bullet-list li::before {
  content: '';
  position: absolute; left: 0; top: 0.55rem;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

/* ============================================================
   21. VERSUS BLOCK
   ============================================================ */
.vs-block {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.vs-block > div:not(.vs-divider) {
  min-width: 0;
  flex: 1;
}

.vs-number {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 700;
  color: var(--text-bright);
  line-height: 1;
}

.vs-label {
  font-family: var(--font-mono);
  font-size: 0.55rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-dim);
}

.vs-brand {
  font-size: 0.82rem; color: var(--text-secondary);
}

.vs-divider {
  width: 1px; height: 40px;
  background: var(--border);
}

/* ============================================================
   22. TAKEAWAY
   ============================================================ */
.takeaway {
  display: flex; align-items: flex-start; gap: 1rem;
  background: linear-gradient(135deg, rgba(219, 168, 78, 0.07) 0%, rgba(64, 219, 201, 0.04) 100%);
  border: 1px solid rgba(219, 168, 78, 0.2);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  margin: 1.25rem 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 24px rgba(219, 168, 78, 0.06), 0 1px 3px rgba(0, 0, 0, 0.2);
}

.takeaway::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle at top right, rgba(219, 168, 78, 0.06), transparent 70%);
  pointer-events: none;
}

.takeaway > div {
  min-width: 0;
}

.takeaway p {
  color: var(--text-primary);
  font-size: 0.86rem;
  line-height: 1.72;
}

.takeaway strong {
  color: var(--text-bright);
}

.takeaway-icon {
  font-size: 1.1rem; line-height: 1;
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(219, 168, 78, 0.12);
  border: 1px solid rgba(219, 168, 78, 0.2);
  border-radius: 8px;
  color: var(--gold);
  font-weight: 700;
  margin-top: 1px;
}

.takeaway-label {
  font-family: var(--font-mono);
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
}

/* ============================================================
   23. REVEALS (scroll animations)
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1; transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* Preserve vertical separation when a card is wrapped by .reveal */
.flavor-matrix-gap {
  margin-bottom: 1.25rem;
}

/* ============================================================
   24. PULSE ANIMATION
   ============================================================ */
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(219, 168, 78, 0.25); }
  50% { box-shadow: 0 0 0 8px rgba(219, 168, 78, 0); }
}

.pulse-gold { animation: pulse-gold 2.5s infinite; }

/* ============================================================
   25. GRID BACKGROUND
   ============================================================ */
.grid-bg {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ============================================================
   26. FOOTNOTE
   ============================================================ */
.footnote {
  font-family: var(--font-mono);
  font-size: 0.65rem; color: var(--text-dim);
  letter-spacing: 0.02em;
  margin-top: 1rem;
  line-height: 1.55;
}

/* 27. FOOTER — see end of file */

/* ============================================================
   28. TAB CONTAINER
   ============================================================ */
.tab-container {
  margin-bottom: 1.25rem;
}

.tab-hint {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  animation: tab-hint-fade 3s ease-in-out;
}

.tab-hint-arrow {
  display: inline-block;
  animation: tab-hint-bounce 1.5s ease-in-out infinite;
}

@keyframes tab-hint-bounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

@keyframes tab-hint-fade {
  0% { opacity: 0; transform: translateY(-8px); }
  15% { opacity: 1; transform: translateY(0); }
}

.tab-nav {
  display: flex; gap: 0.6rem; flex-wrap: wrap;
  margin-bottom: 1.75rem; padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--border-dim);
}

.tab-btn {
  font-family: var(--font-mono);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.tab-btn:hover {
  color: var(--text-bright);
  border-color: var(--border-hi);
  background: var(--bg-card-hi);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.tab-btn.active {
  color: var(--bg-void);
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(219, 168, 78, 0.3);
  transform: translateY(-1px);
}

.tab-btn.active:hover {
  box-shadow: 0 6px 24px rgba(219, 168, 78, 0.4);
}

/* Initial load pulse on inactive tabs */
@keyframes tab-pulse-once {
  0% { box-shadow: 0 0 0 0 rgba(219, 168, 78, 0.3); }
  50% { box-shadow: 0 0 0 6px rgba(219, 168, 78, 0); }
  100% { box-shadow: 0 0 0 0 rgba(219, 168, 78, 0); }
}

.tab-btn:not(.active).tab-pulse {
  animation: tab-pulse-once 2s ease-out 0.5s 1;
}

.tab-panel { display: none; overflow: hidden; }
.tab-panel.active { display: block; }

/* ============================================================
   29. BRAND PROFILE CARDS
   ============================================================ */
.brand-profile {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all 0.3s;
  overflow: hidden;
  min-width: 0;
}

.brand-profile:hover {
  border-color: var(--border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
}

.brand-profile-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 1rem; gap: 1rem;
}

.brand-profile-name {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  color: var(--text-bright);
}

.brand-profile-revenue {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.brand-profile-revenue-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-dim);
}

.brand-profile-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem; margin: 1rem 0;
}

.brand-metric {
  text-align: center;
  padding: 0.75rem 0.5rem;
  background: var(--bg-surface);
  border-radius: var(--radius-sm);
}

.brand-metric-value {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700;
  color: var(--text-bright);
}

.brand-metric-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 0.2rem;
}

.brand-profile-desc {
  font-size: 0.82rem; color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 0.75rem;
}

.brand-profile-tags {
  display: flex; gap: 0.4rem; flex-wrap: wrap;
  margin-top: 0.75rem;
}

/* ============================================================
   30. CITY CARDS
   ============================================================ */
.city-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all 0.3s;
  position: relative; overflow: hidden;
  min-width: 0;
}

.city-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
}

.city-card-rank {
  position: absolute; top: 0.75rem; right: 0.75rem;
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  color: var(--border-dim);
  line-height: 1;
}

.city-card-name {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--text-bright);
}

.city-card-value {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700;
  color: var(--gold);
  margin: 0.3rem 0;
}

.city-card-metrics {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem; margin: 0.75rem 0;
}

.city-card-metric-value {
  font-family: var(--font-mono);
  font-size: 0.75rem; font-weight: 700;
  color: var(--text-bright);
}

.city-card-metric-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-secondary);
}

.city-card-insight {
  font-size: 0.78rem; color: var(--text-secondary);
  line-height: 1.55;
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--border-dim);
}

/* ============================================================
   31. TIER CARDS (Discount Efficiency)
   ============================================================ */
.tier-section {
  margin-bottom: 1.5rem;
}

.tier-label {
  font-family: var(--font-mono);
  font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 0.6rem;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
}

.tier-1 .tier-label { color: var(--teal); background: var(--teal-glow); border: 1px solid rgba(64, 219, 201, 0.2); }
.tier-2 .tier-label { color: var(--gold); background: var(--gold-glow); border: 1px solid rgba(219, 168, 78, 0.2); }
.tier-3 .tier-label { color: var(--amber); background: rgba(240, 184, 64, 0.1); border: 1px solid rgba(240, 184, 64, 0.2); }
.tier-4 .tier-label { color: var(--coral); background: var(--coral-glow); border: 1px solid rgba(240, 100, 73, 0.2); }

.tier-brands {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  padding-left: 0.5rem;
}

.tier-brand-chip {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--bg-surface);
  color: var(--text-secondary);
  border: 1px solid var(--border-dim);
}

/* ============================================================
   32. METRIC INLINE BARS
   ============================================================ */
.metric-bar-inline {
  margin: 0.4rem 0;
}

.metric-bar-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 0.3rem;
}

.metric-bar-label {
  font-size: 0.78rem; color: var(--text-secondary);
}

.metric-bar-value {
  font-family: var(--font-mono);
  font-size: 0.72rem; font-weight: 600;
  color: var(--text-bright);
}

.metric-bar-track-inline {
  height: 6px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 3px;
  overflow: hidden;
}

.metric-bar-fill-inline {
  height: 100%; border-radius: 3px;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.metric-bar-fill-inline.coral { background: linear-gradient(90deg, var(--coral), var(--amber)); }
.metric-bar-fill-inline.teal { background: var(--teal); }
.metric-bar-fill-inline.gold { background: var(--gold); }

/* ============================================================
   33. OPPORTUNITY CARDS
   ============================================================ */
.opportunity-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: relative; overflow: hidden;
  transition: all 0.3s;
}

.opportunity-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(219, 168, 78, 0.06);
}

.opportunity-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}

.opportunity-value {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.opportunity-title {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--text-bright);
  margin: 0.5rem 0 0.4rem;
}

.opportunity-desc {
  font-size: 0.82rem; color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   34. COMPARISON GRID
   ============================================================ */
.comparison-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin: 1rem 0;
}

.comparison-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  overflow: hidden;
  min-width: 0;
}

.comparison-card.highlight {
  border-color: var(--teal);
  background: var(--teal-glow);
}

.comparison-card.danger {
  border-color: var(--coral);
  background: var(--coral-glow);
}

.comparison-title {
  font-family: var(--font-mono);
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1rem;
}

.comparison-card.highlight .comparison-title { color: var(--teal); }
.comparison-card.danger .comparison-title { color: var(--coral); }

/* ============================================================
   35. PLATFORM CARDS
   ============================================================ */
.platform-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all 0.3s;
  overflow: hidden;
  min-width: 0;
}

.platform-card:hover {
  border-color: var(--border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
}

.platform-name {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--text-bright);
}

.platform-share {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  color: var(--gold);
}

.platform-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem; margin: 0.75rem 0;
}

/* ============================================================
   36. PHASE TIMELINE
   ============================================================ */
.phase-timeline {
  display: flex; gap: 0;
  margin: 1rem 0;
}

.phase-block {
  flex: 1;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.phase-block:first-child {
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.phase-block:last-child {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.phase-block.active {
  border-color: var(--gold);
  background: var(--gold-glow);
}

.phase-number {
  font-family: var(--font-mono);
  font-size: 0.55rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-dim);
}

.phase-block.active .phase-number { color: var(--gold); }

.phase-cities {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--text-bright);
  margin: 0.3rem 0;
}

.phase-meta {
  font-size: 0.72rem; color: var(--text-dim);
}

/* ============================================================
   37. GRID-5
   ============================================================ */
.grid-5 {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1rem; margin-bottom: 1.25rem;
}

/* ============================================================
   38. CHART DATA SUMMARIES (mobile-friendly, no hover needed)
   ============================================================ */
.chart-data-summary {
  display: flex; flex-wrap: wrap; gap: 0.4rem 1rem;
  margin-top: 0.75rem; padding-top: 0.75rem;
  border-top: 1px solid var(--border-dim);
}
.chart-data-summary span {
  font-family: var(--font-mono);
  font-size: 0.65rem; font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}

/* ============================================================
   39. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .hero-title { font-size: 2.6rem; }
  .hero-number { font-size: 3rem; }
  .nav-scroll { display: none; }
  .mobile-toggle { display: block; }
  .brand-profile-metrics { grid-template-columns: repeat(2, 1fr); }
  .comparison-grid { grid-template-columns: 1fr; }
  .phase-timeline { flex-direction: column; }
  .phase-block:first-child { border-radius: var(--radius-md) var(--radius-md) 0 0; }
  .phase-block:last-child { border-radius: 0 0 var(--radius-md) var(--radius-md); }
}

@media (max-width: 768px) {
  .section-container { padding: 2.5rem 1.25rem; }
  .hero-block { padding: 4rem 1.25rem 2.5rem; }
  .hero-title { font-size: 2rem; }
  .hero-number { font-size: 2.4rem; }
  .section-title { font-size: 1.5rem; }
  .kpi-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: 1fr; }
  .vs-block { flex-direction: column; text-align: center; }
  .vs-divider { width: 40px; height: 1px; }
  .tab-nav { gap: 0.4rem; }
  .tab-btn { font-size: 0.62rem; padding: 8px 14px; }
  .brand-profile-metrics { grid-template-columns: 1fr; }
  .platform-metrics { grid-template-columns: 1fr; }
  .city-card-metrics { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.6rem; }
  .hero-number { font-size: 1.9rem; }
  .section-title { font-size: 1.25rem; }
  .stat-number { font-size: 1.5rem; }
  .nav-inner { padding: 0 1rem; }
  .brand-separator { display: none; }
  .brand-mark { font-size: 0.9rem; gap: 0.4rem; }
  .brand-logo { height: 20px; }
  .cta-title { font-size: 1.5rem; }
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 5rem 2rem;
  background: linear-gradient(170deg, var(--bg-void) 0%, rgba(219,168,78,0.06) 100%);
  border-top: 1px solid var(--border-dim);
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cta-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.5rem;
}

.cta-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-bright);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-copy {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-actions {
  margin-bottom: 1.25rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--bg-void);
  background: var(--gold);
  border: none;
  border-radius: 8px;
  padding: 0.85rem 1.8rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(219,168,78,0.3);
}

.cta-note {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.03em;
}

/* ============================================================
   FOOTER (ENHANCED)
   ============================================================ */
.report-footer {
  text-align: center;
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border-dim);
  color: var(--text-dim);
  font-size: 0.78rem;
}

.footer-inner {
  max-width: 640px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}

.footer-brand .brand-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  vertical-align: baseline;
  margin-right: 2px;
}

.footer-disclaimer {
  font-size: 0.68rem;
  color: var(--text-dim);
  opacity: 0.6;
  margin-top: 0.5rem;
}
