/* ============================================================
   CBC COMMODITIES — Website
   Colour: copper/amber primary, teal secondary, blue tertiary
   Fonts: Fraunces (headings) + Inter (body) + JetBrains Mono (data)
   ============================================================ */

/* ===== CUSTOM PROPERTIES ===== */
:root {
  /* Backgrounds */
  --bg-primary: #0B1926;
  --bg-deep: #071018;
  --bg-elevated: #0F2233;
  --bg-section-alt: #091620;

  /* Surfaces (glass) */
  --surface: rgba(15, 34, 51, 0.55);
  --surface-hover: rgba(20, 45, 66, 0.65);
  --surface-border: rgba(148, 195, 220, 0.10);
  --surface-border-hover: rgba(148, 195, 220, 0.20);

  /* Text */
  --text-primary: #F0F4F8;
  --text-secondary: #94B8CC;
  --text-muted: #5E8BA3;

  /* Accents */
  --copper: #E8973A;
  --copper-hover: #F0A84E;
  --copper-dim: rgba(232, 151, 58, 0.12);
  --teal: #2DD4BF;
  --teal-dim: rgba(45, 212, 191, 0.12);
  --blue: #4FC3F7;
  --blue-dim: rgba(79, 195, 247, 0.12);

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --text-xs: clamp(0.68rem, 0.64rem + 0.2vw, 0.78rem);
  --text-sm: clamp(0.78rem, 0.73rem + 0.25vw, 0.88rem);
  --text-base: clamp(0.88rem, 0.82rem + 0.3vw, 1.02rem);
  --text-lg: clamp(1.02rem, 0.92rem + 0.5vw, 1.22rem);
  --text-xl: clamp(1.25rem, 1.05rem + 1vw, 1.7rem);
  --text-2xl: clamp(1.6rem, 1.2rem + 2vw, 2.6rem);
  --text-3xl: clamp(2.2rem, 1.5rem + 3.5vw, 4.2rem);

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  --section-pad: clamp(64px, 8vw, 120px);

  /* Misc */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 999px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: rgba(232, 151, 58, 0.3); }
img { max-width: 100%; }
a { color: var(--copper); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--copper-hover); }

/* ===== CONTAINER ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 var(--space-lg); }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 var(--space-lg);
  background: rgba(11, 25, 38, 0.75);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
nav.nav--scrolled { border-bottom-color: var(--surface-border); background: rgba(11, 25, 38, 0.92); }
.nav-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-mark {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--copper), #D97706);
  display: flex; align-items: center; justify-content: center;
  font: 700 11px var(--font-mono); color: #000; letter-spacing: 0.5px;
}
.nav-name { font: 600 17px var(--font-body); letter-spacing: -0.3px; color: var(--text-primary); }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  color: var(--text-muted); font-size: 13px; font-weight: 500;
  letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover { color: var(--copper); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--text-secondary);
  margin: 5px 0; transition: all 0.3s;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(30px); 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-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ===== SECTION COMMON ===== */
.section { padding: var(--section-pad) 0; }
.section--alt { background: var(--bg-section-alt); }
.section-label {
  display: block; font: 600 11px var(--font-mono);
  color: var(--copper); letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: var(--space-md);
}
.section-title {
  font: 900 var(--text-2xl)/1.15 var(--font-display);
  color: var(--text-primary); margin-bottom: var(--space-lg);
  max-width: 700px;
}
.section-title em { font-style: italic; color: var(--copper); }
.section-intro {
  font-size: var(--text-lg); color: var(--text-secondary);
  max-width: 640px; line-height: 1.7; margin-bottom: var(--space-2xl);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font: 600 14px var(--font-body); padding: 14px 32px;
  border-radius: var(--radius-full); transition: all 0.25s; cursor: pointer;
  border: none; text-decoration: none;
}
.btn-primary {
  background: var(--copper); color: #000;
}
.btn-primary:hover { background: var(--copper-hover); color: #000; transform: translateY(-1px); box-shadow: 0 8px 30px rgba(232,151,58,0.25); }
.btn-ghost {
  background: transparent; color: var(--text-secondary);
  border: 1px solid var(--surface-border);
}
.btn-ghost:hover { border-color: var(--surface-border-hover); color: var(--text-primary); }
.btn-lg { padding: 18px 40px; font-size: 16px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 100px 0 var(--section-pad); position: relative; overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-2xl); align-items: center;
}
.hero-eyebrow {
  font: 600 12px var(--font-mono); color: var(--copper);
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: var(--space-lg);
}
.hero h1 {
  font: 900 var(--text-3xl)/1.08 var(--font-display);
  margin-bottom: var(--space-lg);
}
.hero h1 em { font-style: italic; color: var(--copper); }
.hero-desc {
  font-size: var(--text-lg); color: var(--text-secondary);
  line-height: 1.7; margin-bottom: var(--space-xl); max-width: 540px;
}
.hero-actions { display: flex; gap: var(--space-md); flex-wrap: wrap; }
.hero-glow {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-glow--1 {
  top: -200px; right: -150px; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,151,58,0.06) 0%, transparent 70%);
}
.hero-glow--2 {
  bottom: -150px; left: -100px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(45,212,191,0.04) 0%, transparent 70%);
}

/* Gauge */
.gauge-wrapper { position: relative; display: flex; justify-content: center; align-items: center; }
.gauge-glow {
  position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,151,58,0.06) 0%, transparent 70%);
}
.gauge-svg { position: relative; }
.gauge-fill { transition: stroke-dasharray 2s cubic-bezier(0.16,1,0.3,1); }
.gauge-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -38%); text-align: center; }
.gauge-number { font: 700 56px var(--font-mono); color: var(--copper); letter-spacing: -2px; line-height: 1; }
.gauge-label {
  margin-top: 8px; font: 600 10px var(--font-mono); color: var(--teal);
  letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--teal-dim); padding: 4px 14px; border-radius: 20px;
  display: inline-block;
}

/* ===== STATS RIBBON ===== */
.stats { padding: var(--space-xl) 0; background: var(--bg-deep); border-top: 1px solid var(--surface-border); border-bottom: 1px solid var(--surface-border); }
.stats-grid { display: flex; justify-content: space-between; gap: var(--space-lg); flex-wrap: wrap; }
.stat { text-align: center; flex: 1; min-width: 140px; }
.stat-num { font: 700 28px var(--font-mono); color: var(--copper); letter-spacing: -1px; }
.stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== MARKET OPPORTUNITY (Radar + Cards) ===== */
.opp-layout { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); align-items: start; }
.radar-wrapper {
  background: var(--surface); border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg); padding: var(--space-xl);
  text-align: center; position: sticky; top: 100px;
}
.radar-title { font: 700 16px var(--font-body); margin-bottom: 4px; }
.radar-subtitle { font-size: 13px; color: var(--text-muted); margin-bottom: var(--space-lg); }
#radarChart { max-width: 100%; height: auto; }

.opp-cards { display: flex; flex-direction: column; gap: var(--space-md); }
.opp-card {
  display: flex; gap: var(--space-md); padding: var(--space-lg);
  background: var(--surface); border: 1px solid var(--surface-border);
  border-radius: var(--radius-md); transition: all 0.3s;
  cursor: default;
}
.opp-card:hover { border-color: var(--surface-border-hover); transform: translateX(4px); }
.opp-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.opp-card-title { font: 600 16px var(--font-body); margin-bottom: 6px; }
.opp-card-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ===== TEAM ===== */
.team-grid { display: flex; flex-direction: column; gap: var(--space-xl); }
.team-card--featured {
  display: grid; grid-template-columns: auto 1fr; gap: var(--space-xl);
  background: var(--surface); border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg); padding: var(--space-xl);
}
.team-photo-placeholder {
  width: 120px; height: 120px; border-radius: 50%;
  background: linear-gradient(135deg, var(--copper-dim), var(--teal-dim));
  border: 2px solid var(--surface-border);
  display: flex; align-items: center; justify-content: center;
  font: 700 32px var(--font-mono); color: var(--copper);
}
.team-name { font: 700 22px var(--font-display); margin-bottom: 4px; }
.team-role { font: 600 13px var(--font-mono); color: var(--copper); letter-spacing: 1px; text-transform: uppercase; margin-bottom: var(--space-md); }
.team-bio { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: var(--space-md); }
.team-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.team-tag {
  font: 500 12px var(--font-body); color: var(--teal);
  background: var(--teal-dim); padding: 4px 12px;
  border-radius: var(--radius-full);
}
.team-advisory-title {
  font: 600 13px var(--font-mono); color: var(--text-muted);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: var(--space-md);
}
.team-advisory-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.advisory-card {
  background: var(--surface); border: 1px solid var(--surface-border);
  border-radius: var(--radius-md); padding: var(--space-lg); text-align: center;
}
.advisory-icon { font-size: 28px; margin-bottom: 12px; }
.advisory-label { font: 600 14px var(--font-body); margin-bottom: 6px; }
.advisory-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ===== APPROACH (Problem-Solution Map — Row-Aligned Grid) ===== */
.psmap-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 0;
  margin-bottom: var(--space-2xl);
}

/* Header cells */
.psmap-hdr {
  display: flex; align-items: center; gap: 12px;
  padding: var(--space-md) var(--space-lg); margin-bottom: var(--space-sm);
  border-radius: var(--radius-md); border: 1px solid var(--surface-border);
}
.psmap-hdr--supply { background: rgba(232,151,58,0.04); border-color: rgba(232,151,58,0.12); }
.psmap-hdr--solution { background: rgba(45,212,191,0.04); border-color: rgba(45,212,191,0.12); }
.psmap-hdr--demand { background: rgba(79,195,247,0.04); border-color: rgba(79,195,247,0.12); }
.psmap-hdr-icon { font-size: 22px; }
.psmap-hdr-title { font: 600 15px var(--font-body); }
.psmap-hdr-sub { font-size: 11px; color: var(--text-muted); }

/* Content cells — all aligned in same row */
.psmap-cell {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px var(--space-md); border-radius: 10px;
  border: 1px solid transparent; transition: all 0.3s; cursor: default;
  align-self: stretch;
}
.psmap-cell:hover { border-color: var(--surface-border); background: rgba(255,255,255,0.02); }
.psmap-cell.active.psmap-cell--supply { border-color: rgba(232,151,58,0.3); background: rgba(232,151,58,0.04); }
.psmap-cell.active.psmap-cell--solution { border-color: rgba(45,212,191,0.3); background: rgba(45,212,191,0.04); }
.psmap-cell.active.psmap-cell--demand { border-color: rgba(79,195,247,0.3); background: rgba(79,195,247,0.04); }

/* Demand cells: right-aligned text, icon on right */
.psmap-cell--demand { flex-direction: row-reverse; text-align: right; }

.psmap-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 5px; transition: all 0.3s; }
.dot-supply { background: var(--copper); }
.dot-demand { background: var(--blue); }
.psmap-cell.active .dot-supply { transform: scale(1.4); box-shadow: 0 0 12px rgba(232,151,58,0.5); }
.psmap-cell.active .dot-demand { transform: scale(1.4); box-shadow: 0 0 12px rgba(79,195,247,0.5); }

.psmap-sol-badge {
  width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
  background: var(--teal-dim); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font: 700 12px var(--font-mono); margin-top: 2px; transition: all 0.3s;
}
.psmap-cell.active.psmap-cell--solution .psmap-sol-badge { background: var(--teal); color: #000; transform: scale(1.1); }

.psmap-cell-title { font: 600 14px var(--font-body); margin-bottom: 4px; }
.psmap-cell-desc { font-size: 12.5px; color: var(--text-muted); line-height: 1.55; }
.psmap-cell.active .psmap-cell-desc { color: var(--text-secondary); }

/* Row separator lines */
.psmap-grid > .psmap-cell:nth-child(3n+2),
.psmap-grid > .psmap-cell:nth-child(3n+3),
.psmap-grid > .psmap-cell:nth-child(3n+4) {
  border-top: 1px solid rgba(148,195,220,0.04);
}

/* Architecture flow */
.arch-flow { display: flex; gap: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--surface-border); }
.arch-col { flex: 1; padding: var(--space-xl); }
.arch-col--source { background: rgba(232,151,58,0.03); }
.arch-col--trade { background: rgba(45,212,191,0.03); border-left: 1px solid var(--surface-border); border-right: 1px solid var(--surface-border); }
.arch-col--deliver { background: rgba(79,195,247,0.03); }
.arch-col-title {
  font: 700 12px var(--font-mono); letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: var(--space-md);
}
.arch-col--source .arch-col-title { color: var(--copper); }
.arch-col--trade .arch-col-title { color: var(--teal); }
.arch-col--deliver .arch-col-title { color: var(--blue); }
.arch-item {
  font-size: 14px; color: var(--text-secondary); padding: 8px 0;
  border-bottom: 1px solid rgba(148,195,220,0.06);
}
.arch-item:last-child { border-bottom: none; }

/* ===== MARKETS ===== */
.market-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.market-card {
  background: var(--surface); border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg); overflow: hidden; transition: all 0.3s;
}
.market-card:hover { border-color: var(--surface-border-hover); transform: translateY(-3px); }
.market-card-top { padding: var(--space-xl) var(--space-lg) var(--space-lg); }
.market-icon { font-size: 32px; margin-bottom: var(--space-md); }
.market-title { font: 700 18px var(--font-body); margin-bottom: 4px; }
.market-subtitle { font-size: 12px; color: var(--text-muted); letter-spacing: 0.3px; }
.market-card-body { padding: 0 var(--space-lg) var(--space-lg); }
.market-bars { display: flex; flex-direction: column; gap: 10px; margin-bottom: var(--space-md); }
.market-bar-row { display: flex; align-items: center; gap: 12px; }
.market-bar-label { font-size: 11px; color: var(--text-muted); min-width: 100px; text-transform: uppercase; letter-spacing: 0.5px; }
.market-bar-track { flex: 1; height: 6px; background: rgba(148,195,220,0.08); border-radius: 3px; overflow: hidden; }
.market-bar-fill { height: 100%; border-radius: 3px; transition: width 1.2s cubic-bezier(0.16,1,0.3,1); }
.market-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ===== STRATEGY & ROADMAP ===== */
.strat-block { margin-bottom: var(--space-3xl); }
.strat-block-header { margin-bottom: var(--space-xl); padding-bottom: var(--space-md); border-bottom: 1px solid var(--surface-border); }
.strat-block-title { font: 900 var(--text-xl)/1.2 var(--font-display); color: var(--text-primary); margin-bottom: 6px; }
.strat-block-sub { font-size: var(--text-base); color: var(--text-secondary); line-height: 1.6; }

/* Tree cards */
.tree-card {
  background: var(--surface); border: 1px solid var(--surface-border);
  border-radius: var(--radius-md); margin-bottom: var(--space-md);
  overflow: hidden; transition: border-color 0.3s;
}
.tree-card:hover { border-color: var(--surface-border-hover); }
.tree-card--fire { border-left: 3px solid var(--copper); }
.tree-card--double-fire { border-left: 3px solid #FF6B35; }
.tree-card--thesis { border-left: 3px solid var(--teal); }
.tree-card--phase { border-left: 3px solid var(--blue); }

.tree-card-head {
  display: flex; align-items: flex-start; gap: 14px;
  padding: var(--space-lg); background: rgba(255,255,255,0.01);
  border-bottom: 1px solid rgba(148,195,220,0.06);
}
.tree-fire { font-size: 24px; flex-shrink: 0; line-height: 1.2; }
.tree-card-title { font: 600 16px var(--font-body); margin-bottom: 4px; }
.tree-card-verdict {
  font: 600 11px var(--font-mono); color: var(--teal);
  letter-spacing: 0.5px; text-transform: uppercase;
}

.tree-body { padding: var(--space-md) var(--space-lg) var(--space-lg); }

.tree-node {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 6px 0; font-size: 14px; color: var(--text-secondary); line-height: 1.6;
}
.tree-node--why { color: var(--text-primary); }

.tree-branch {
  font-family: var(--font-mono); font-size: 13px;
  color: var(--text-muted); flex-shrink: 0; line-height: 1.6;
  user-select: none; opacity: 0.5;
}

.tree-sub {
  margin-top: 4px; padding-left: 20px;
  font-size: 13px; color: var(--text-muted); line-height: 1.8;
}

.tree-stat {
  color: var(--copper); font-weight: 600;
  font-family: var(--font-mono); font-size: 0.95em;
}

/* Phase badges */
.phase-badge {
  font: 700 11px var(--font-mono); letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--radius-full); flex-shrink: 0;
}
.phase-badge--1 { background: rgba(232,151,58,0.15); color: var(--copper); }
.phase-badge--2 { background: rgba(45,212,191,0.15); color: var(--teal); }
.phase-badge--3 { background: rgba(79,195,247,0.15); color: var(--blue); }

/* Synergy grid */
.synergy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); margin-bottom: var(--space-lg); }
.synergy-verdict {
  display: flex; align-items: flex-start; gap: var(--space-md);
  background: linear-gradient(135deg, rgba(232,151,58,0.06), rgba(45,212,191,0.06));
  border: 1px solid rgba(232,151,58,0.2);
  border-radius: var(--radius-md); padding: var(--space-xl);
}
.synergy-verdict-icon { font-size: 32px; flex-shrink: 0; color: var(--copper); }
.synergy-verdict-title { font: 700 16px var(--font-body); margin-bottom: 6px; color: var(--copper); }
.synergy-verdict-text { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

@media (max-width: 768px) {
  .synergy-grid { grid-template-columns: 1fr; }
}

/* ===== CTA ===== */
.cta-section {
  padding: var(--space-3xl) 0;
  background: linear-gradient(180deg, var(--bg-section-alt), var(--bg-primary));
}
.cta-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.cta-title { font: 900 var(--text-2xl)/1.15 var(--font-display); margin-bottom: var(--space-md); }
.cta-title em { font-style: italic; color: var(--copper); }
.cta-desc { font-size: var(--text-lg); color: var(--text-secondary); line-height: 1.7; margin-bottom: var(--space-xl); }

/* ===== FOOTER ===== */
footer {
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--surface-border);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--space-md);
}
.footer-brand { display: flex; align-items: center; gap: 12px; font: 500 14px var(--font-body); }
.footer-brand .nav-mark { width: 32px; height: 32px; font-size: 9px; border-radius: 8px; }
.footer-note { color: var(--text-muted); font-size: 12px; }
.footer-legal { text-align: right; }
.footer-legal p { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }
  .opp-layout { grid-template-columns: 1fr; }
  .radar-wrapper { position: static; }
  .psmap-grid { grid-template-columns: 1fr; gap: var(--space-sm); }
  .psmap-cell--demand { flex-direction: row; text-align: left; }
  .psmap-hdr--demand, .psmap-hdr--solution { margin-top: var(--space-md); }
  .market-cards { grid-template-columns: 1fr; }
  .arch-flow { flex-direction: column; }
  .arch-col--trade { border-left: none; border-right: none; border-top: 1px solid var(--surface-border); border-bottom: 1px solid var(--surface-border); }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 64px; left: 0; right: 0; background: rgba(11,25,38,0.97); flex-direction: column; padding: var(--space-lg); gap: var(--space-md); border-bottom: 1px solid var(--surface-border); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .stats-grid { flex-direction: column; gap: var(--space-md); }
  .stat { display: flex; align-items: center; gap: var(--space-md); text-align: left; }
  .team-card--featured { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .team-tags { justify-content: center; }
  .team-advisory-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-legal { text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .section-title { font-size: clamp(1.5rem, 5vw, 2.2rem); }
  .gauge-number { font-size: 40px; }
}
