/* ============================================
   STRATEGY REPORT — DESIGN SYSTEM
   Palette: Copper & Slate | Playfair + DM Sans
   ============================================ */

:root {
  --copper: #B87333;
  --copper-light: #D4A574;
  --copper-pale: #F0DCC8;
  --slate-dark: #1E2530;
  --slate: #2F3640;
  --slate-mid: #3D4A5C;
  --slate-light: #6B7A8D;
  --cream: #F5F0EB;
  --cream-dark: #EDE5D8;
  --white: #FAFAF8;
  --text-primary: #1E2530;
  --text-secondary: #4A5568;
  --text-muted: #8A9BB0;
  --green: #4CAF50;
  --yellow: #F5A623;
  --red: #E53E3E;
  --border: rgba(184, 115, 51, 0.15);
  --shadow-sm: 0 2px 8px rgba(30,37,48,0.06);
  --shadow-md: 0 8px 32px rgba(30,37,48,0.10);
  --shadow-lg: 0 20px 60px rgba(30,37,48,0.14);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--copper); border-radius: 3px; }

/* ---- CONTAINER ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(245, 240, 235, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow-md); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--slate-dark);
  letter-spacing: 0.02em;
}
.nav-logo-mark { color: var(--copper); font-size: 0.9rem; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--copper); }

.nav-badge {
  font-size: 0.75rem;
  font-weight: 600;
  font-family: 'DM Mono', monospace;
  color: var(--copper);
  background: rgba(184,115,51,0.1);
  border: 1px solid rgba(184,115,51,0.25);
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 48px 80px;
  position: relative;
  overflow: hidden;
  background: var(--slate-dark);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(184,115,51,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(212,165,116,0.10) 0%, transparent 50%);
  pointer-events: none;
}

.hero-bg-text {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(120px, 18vw, 260px);
  font-weight: 900;
  color: rgba(255,255,255,0.025);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  font-family: 'DM Mono', monospace;
  color: var(--copper-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.dot--green { background: #4CAF50; box-shadow: 0 0 8px #4CAF50; animation: pulse 2s infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 900;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--copper-light);
}

.hero-sub {
  max-width: 520px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 56px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-stats {
  display: flex;
  gap: 0;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.hero-stat {
  padding: 24px 36px;
  border-left: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.hero-stat:first-child { border-left: none; padding-left: 0; }

.hero-stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat-unit {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--copper-light);
}
.hero-stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 48px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  font-family: 'DM Mono', monospace;
  animation: fadeUp 1s 1.2s forwards;
  opacity: 0;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   SECTION SHARED
   ============================================ */
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--copper);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--copper);
  opacity: 0.4;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--slate-dark);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  color: var(--copper);
}

.section-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 52px;
  font-weight: 400;
}

/* ============================================
   EXECUTIVE SUMMARY
   ============================================ */
.exec-summary {
  padding: 100px 0;
  background: var(--white);
}

.exec-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.exec-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--slate-dark);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.exec-text h2 em { font-style: italic; color: var(--copper); }

.exec-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.exec-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.exec-card {
  padding: 24px 28px;
  border-radius: var(--radius);
  border-left: 4px solid transparent;
}
.exec-card--positive { background: rgba(76,175,80,0.06); border-color: #4CAF50; }
.exec-card--warning { background: rgba(245,166,35,0.06); border-color: var(--yellow); }
.exec-card--opportunity { background: rgba(184,115,51,0.06); border-color: var(--copper); }

.exec-card-icon {
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.exec-card-title {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-dark);
  margin-bottom: 10px;
}
.exec-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.exec-card ul li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding-left: 14px;
  position: relative;
}
.exec-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--copper);
  font-size: 0.7rem;
}

/* ============================================
   METRICS
   ============================================ */
.metrics {
  padding: 100px 0;
  background: var(--cream);
}

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

.metric-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(184,115,51,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.metric-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.metric-card--wide {
  grid-column: span 2;
}
.metric-card--dark {
  background: var(--slate-dark);
  border-color: transparent;
}

.metric-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.metric-card-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--slate-dark);
  margin-bottom: 4px;
}
.metric-card-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.metric-card-badge {
  font-size: 0.68rem;
  font-weight: 600;
  font-family: 'DM Mono', monospace;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.metric-card-badge--good { background: rgba(76,175,80,0.12); color: #2E7D32; }
.metric-card-badge--warn { background: rgba(245,166,35,0.12); color: #B8860B; }
.metric-card-badge--bad { background: rgba(229,62,62,0.12); color: #C53030; }

.chart-container { position: relative; height: 200px; }
.chart-container--sm { height: 160px; }

.metric-insight {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(184,115,51,0.06);
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.metric-insight--light {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
}
.insight-icon { flex-shrink: 0; }

/* Gauge */
.gauge-container {
  position: relative;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gauge-center {
  position: absolute;
  text-align: center;
}
.gauge-value {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--slate-dark);
}
.gauge-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.churn-benchmarks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.churn-bm {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.churn-bm strong { margin-left: auto; font-weight: 600; color: var(--slate-dark); }
.bm-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.bm-dot--green { background: #4CAF50; }
.bm-dot--yellow { background: var(--yellow); }
.bm-dot--red { background: var(--red); }

/* Rule of 40 */
.rule40-display {
  margin: 24px 0 20px;
  position: relative;
}
.rule40-bar-wrap {
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  height: 48px;
  position: relative;
  overflow: visible;
  margin-bottom: 12px;
}
.rule40-bar {
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--copper), var(--copper-light));
  width: 0%;
  transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
}
.rule40-target-line {
  position: absolute;
  top: -8px;
  bottom: -8px;
  left: 74%;
  width: 2px;
  background: rgba(255,255,255,0.4);
  border-radius: 1px;
}
.rule40-target-label {
  position: absolute;
  top: -24px;
  left: 74%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  font-family: 'DM Mono', monospace;
  white-space: nowrap;
}
.rule40-score {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  line-height: 1;
}
.rule40-breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.r40-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.r40-item strong { color: var(--white); }
.r40-total { border-bottom: none; }
.r40-total span { color: rgba(255,255,255,0.8); font-weight: 500; }
.r40-total strong { color: var(--copper-light); font-size: 1rem; }

/* GRR Ring */
.grr-visual {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}
.grr-ring-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}
.grr-ring {
  width: 120px;
  height: 120px;
  transform: rotate(-90deg);
}
.grr-track {
  fill: none;
  stroke: var(--cream-dark);
  stroke-width: 10;
}
.grr-fill {
  fill: none;
  stroke: var(--copper);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 314;
  stroke-dashoffset: 314;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.4,0,0.2,1);
}
.grr-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.grr-pct {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--slate-dark);
}
.grr-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.grr-legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.grr-leg-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-secondary);
}
.grr-leg-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   COMPETITORS
   ============================================ */
.competitors {
  padding: 100px 0;
  background: var(--white);
}

.comp-table-wrap {
  overflow-x: auto;
  margin-bottom: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.comp-table thead tr {
  background: var(--slate-dark);
}
.comp-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 600;
  font-family: 'DM Mono', monospace;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.comp-table tbody tr {
  border-bottom: 1px solid rgba(184,115,51,0.08);
  transition: background 0.2s;
}
.comp-table tbody tr:hover { background: rgba(184,115,51,0.03); }
.comp-table tbody tr:last-child { border-bottom: none; }
.comp-table td { padding: 16px 20px; }

.comp-row--us { background: rgba(184,115,51,0.04); }
.comp-row--us td { font-weight: 500; }

.comp-name { font-weight: 500; color: var(--slate-dark); }
.comp-name--us { color: var(--copper); font-weight: 700; }

.comp-val { font-family: 'DM Mono', monospace; font-size: 0.85rem; color: var(--text-secondary); }
.comp-val--best { color: #2E7D32; font-weight: 600; }
.comp-val--good { color: #1565C0; font-weight: 600; }
.comp-val--warn { color: #B8860B; font-weight: 600; }
.comp-val--bad { color: #C53030; font-weight: 600; }

.comp-badge {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.comp-badge--leader { background: rgba(76,175,80,0.12); color: #2E7D32; }
.comp-badge--mid { background: rgba(184,115,51,0.12); color: var(--copper); }
.comp-badge--avg { background: rgba(107,122,141,0.12); color: var(--slate-light); }
.comp-badge--threat { background: rgba(229,62,62,0.10); color: #C53030; }
.comp-badge--risk { background: rgba(229,62,62,0.06); color: #E53E3E; }

.comp-radar-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.comp-radar-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
}
.comp-radar-title {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--slate-dark);
  margin-bottom: 20px;
  text-align: center;
}

.comp-insights h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--slate-dark);
  margin-bottom: 24px;
}

.comp-insight-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.comp-insight-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.ci-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--copper-pale);
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
}
.ci-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.ci-text strong { color: var(--slate-dark); }

/* ============================================
   TRENDS
   ============================================ */
.trends {
  padding: 100px 0;
  background: var(--cream);
}

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

.trend-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(184,115,51,0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.trend-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.trend-card--featured {
  grid-column: span 2;
  background: var(--slate-dark);
  border-color: transparent;
}
.trend-card--featured h3 { color: var(--white); }
.trend-card--featured p { color: rgba(255,255,255,0.6); }

.trend-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.trend-tag {
  font-size: 0.68rem;
  font-weight: 600;
  font-family: 'DM Mono', monospace;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.trend-card--featured .trend-tag { color: var(--copper-light); }

.trend-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--slate-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.trend-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.trend-stat-row {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.trend-mini-stat span {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--copper-light);
}
.trend-mini-stat small {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.trend-bar-wrap { margin-top: 16px; }
.trend-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.trend-bar-track {
  height: 6px;
  background: var(--cream-dark);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 12px;
}
.trend-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--copper), var(--copper-light));
  border-radius: 3px;
  transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
}

.trend-compare { margin-top: 16px; }
.tc-item { margin-bottom: 10px; }
.tc-label { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 4px; display: block; }
.tc-bar-wrap { height: 28px; background: var(--cream-dark); border-radius: 6px; overflow: hidden; }
.tc-bar {
  height: 100%;
  width: var(--w, 0%);
  background: var(--slate-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
}
.tc-bar--accent { background: var(--copper); }

/* Macro Strip */
.macro-strip {
  background: var(--slate-dark);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
}
.macro-title {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  color: var(--copper-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.macro-items {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.macro-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
  flex: 1;
  min-width: 120px;
}
.macro-val {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.macro-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  line-height: 1.3;
}
.macro-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ============================================
   RECOMMENDATIONS
   ============================================ */
.recommendations {
  padding: 100px 0;
  background: var(--white);
}

.rec-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 60px;
  position: relative;
}
.rec-timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--copper), var(--copper-pale));
  opacity: 0.3;
}

.rec-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.rec-item:last-child { border-bottom: none; }

.rec-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  padding-top: 4px;
  position: relative;
}
.rec-meta::after {
  content: '';
  position: absolute;
  right: -33px;
  top: 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--copper);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--copper);
  z-index: 1;
}

.rec-priority {
  font-size: 0.68rem;
  font-weight: 700;
  font-family: 'DM Mono', monospace;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.rec-priority--critical { background: rgba(229,62,62,0.1); color: #C53030; }
.rec-priority--high { background: rgba(184,115,51,0.12); color: var(--copper); }
.rec-priority--medium { background: rgba(107,122,141,0.12); color: var(--slate-light); }

.rec-timeline-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: 'DM Mono', monospace;
  text-align: right;
}

.rec-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.rec-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rec-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--slate-dark);
  margin-bottom: 10px;
}
.rec-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}
.rec-outcomes {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rec-outcome {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.ro-icon { color: var(--copper); font-weight: 700; flex-shrink: 0; }

/* Scorecard */
.scorecard {
  background: var(--slate-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.scorecard-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 32px;
  text-align: center;
}
.scorecard-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
}
.sc-item {
  background: rgba(255,255,255,0.03);
  padding: 24px 16px;
  text-align: center;
  transition: background 0.2s;
}
.sc-item:hover { background: rgba(255,255,255,0.07); }
.sc-metric {
  font-size: 0.68rem;
  font-weight: 600;
  font-family: 'DM Mono', monospace;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.sc-current {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}
.sc-arrow {
  font-size: 1rem;
  color: var(--copper);
  margin-bottom: 4px;
}
.sc-target {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--copper-light);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--slate-dark);
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
}
.footer-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  justify-content: center;
}
.footer-dot { opacity: 0.4; }
.footer-date {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .metric-card--wide { grid-column: span 2; }
  .trends-grid { grid-template-columns: repeat(2, 1fr); }
  .trend-card--featured { grid-column: span 2; }
  .comp-radar-wrap { grid-template-columns: 1fr; }
  .scorecard-grid { grid-template-columns: repeat(3, 1fr); }
  .exec-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .hero { padding: 120px 20px 60px; }
  .hero-stats { flex-wrap: wrap; gap: 0; }
  .hero-stat { padding: 16px 20px; }
  .metrics-grid { grid-template-columns: 1fr; }
  .metric-card--wide { grid-column: span 1; }
  .trends-grid { grid-template-columns: 1fr; }
  .trend-card--featured { grid-column: span 1; }
  .rec-item { grid-template-columns: 1fr; }
  .rec-timeline::before { display: none; }
  .rec-meta { flex-direction: row; align-items: center; }
  .rec-meta::after { display: none; }
  .scorecard-grid { grid-template-columns: repeat(2, 1fr); }
  .macro-items { gap: 16px; }
  .macro-item { min-width: 100px; padding: 0 16px; }
  .macro-divider { display: none; }
}