/* ═══════════════════════════════════════════════════════════════════════════
   CPG AI-First Competency Framework — "Verdant Precision" Design System
   C.P. Group Brand · Meticulously Crafted
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  /* Surface system — light, airy, paper-like */
  --bg: #F4F7F2;
  --bg-elevated: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F0F4EE;
  --surface: #E6ECE3;
  --surface-bright: #D8E0D4;
  --border: rgba(0,100,45,0.10);
  --border-bright: rgba(0,100,45,0.20);
  --border-card: rgba(0,100,45,0.08);

  /* Text — deep forest tones, high contrast */
  --text: #0B1A0B;
  --text-secondary: #1E3A1E;
  --text-muted: #3D6B3D;
  --text-dim: #5A8A5A;

  /* C.P. Group brand greens */
  --cp-green: #00843D;
  --cp-green-dark: #006B31;
  --cp-green-light: #00A34B;
  --cp-green-soft: rgba(0,132,61,0.07);
  --cp-green-softer: rgba(0,132,61,0.035);

  /* Persona accent ecosystem — tonal greens with distinction */
  --cyan: #007A5E;
  --cyan-soft: rgba(0,122,94,0.08);
  --blue: #2B6B5E;
  --blue-soft: rgba(43,107,94,0.08);
  --purple: #3E6B48;
  --purple-soft: rgba(62,107,72,0.08);
  --amber: #6B8A2E;
  --amber-soft: rgba(107,138,46,0.08);
  --rose: #A67B1B;
  --rose-soft: rgba(166,123,27,0.08);
  --teal: #00843D;
  --teal-soft: rgba(0,132,61,0.08);

  /* Functional */
  --green: #00A34B;
  --red: #B83220;
  --aws: #E68A00;
  --aws-soft: rgba(230,138,0,0.07);

  /* Typography — Outfit (geometric, hefty) + Source Serif 4 (editorial display) */
  --font: 'Outfit', -apple-system, sans-serif;
  --display: 'Source Serif 4', Georgia, serif;
  --mono: 'JetBrains Mono', monospace;

  /* Radii — softened, organic */
  --r: 14px;
  --r-sm: 8px;
  --r-xs: 5px;
  --r-lg: 20px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 500;
  line-height: 1.55;
  font-size: 15px;
}

/* ─── Noise texture overlay — paper grain ───────────────────────────────── */
.noise-overlay {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0.025;
  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");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ─── Stem line — vertical axis motif ───────────────────────────────────── */
.stem-line {
  position: fixed; left: 50%; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(to bottom, transparent, rgba(0,132,61,0.06) 20%, rgba(0,132,61,0.06) 80%, transparent);
  z-index: 0; pointer-events: none;
}

/* ─── Ambient Glows — verdant atmosphere ────────────────────────────────── */
.glow {
  position: fixed; border-radius: 50%;
  filter: blur(160px); pointer-events: none; z-index: 0;
}
.glow-1 { width: 600px; height: 600px; top: -250px; left: -150px; background: #00843D; opacity: 0.05; animation: glowDrift1 22s ease-in-out infinite; }
.glow-2 { width: 450px; height: 450px; bottom: -180px; right: -80px; background: #00A34B; opacity: 0.04; animation: glowDrift2 28s ease-in-out infinite; }
.glow-3 { width: 350px; height: 350px; top: 45%; left: 50%; transform: translateX(-50%); background: #006B31; opacity: 0.025; animation: glowPulse 18s ease-in-out infinite; }

@keyframes glowDrift1 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(50px, 35px); } }
@keyframes glowDrift2 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-40px, -25px); } }
@keyframes glowPulse { 0%, 100% { opacity: 0.025; transform: translateX(-50%) scale(1); } 50% { opacity: 0.05; transform: translateX(-50%) scale(1.12); } }

/* ─── Entrance animations — growth from soil ────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.94); } to { opacity: 1; transform: scale(1); } }
@keyframes slideRight { from { opacity: 0; transform: translateX(-16px); } to { opacity: 1; transform: translateX(0); } }

.anim-fade-up { opacity: 0; animation: fadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.anim-scale-in { opacity: 0; animation: scaleIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.anim-slide-right { opacity: 0; animation: slideRight 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.stagger { opacity: 0; animation: fadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards; animation-delay: var(--d, 0s); }

/* ─── DARK IMMERSIVE HERO — orbital cosmos ──────────────────────────────── */
.ov-hero {
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 50% 40%, #0a2e1a 0%, #061a0f 50%, #030d07 100%);
  margin: -0px -48px 0; padding: 100px 48px 80px;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
}
.ov-hero-orbital {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  opacity: 0; animation: fadeIn 2s ease forwards 0.2s;
}
.ov-hero > *:not(.ov-hero-orbital) { position: relative; z-index: 1; }
.ov-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 18px; border-radius: 24px;
  background: rgba(0,132,61,0.15); border: 1px solid rgba(0,132,61,0.3);
  font-size: 12px; font-weight: 700; color: #4ade80;
  margin-bottom: 28px; letter-spacing: 0.03em;
  backdrop-filter: blur(8px);
}
.ov-hero-badge svg { stroke: #4ade80; }
.ov-hero h1 {
  font-family: var(--display); font-size: 56px; font-weight: 800; letter-spacing: -0.035em;
  line-height: 1.08; margin-bottom: 20px;
  background: linear-gradient(145deg, #4ade80 0%, #22c55e 30%, #ffffff 70%, #86efac 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  background-size: 200% 200%;
  animation: heroShimmer 6s ease-in-out infinite;
}
@keyframes heroShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.ov-hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.65); line-height: 1.7;
  max-width: 620px; margin: 0 auto 0; font-weight: 500;
}

/* ─── Animated flowing arrows in learning journey ───────────────────────── */
.journey-courses .j-arrow {
  display: inline-flex; align-items: center; margin: 0 6px;
  color: var(--cp-green); opacity: 0.7;
  vertical-align: middle;
  position: relative;
}
.journey-courses .j-arrow svg { width: 28px; height: 14px; }
.journey-courses .j-arrow .j-arrow-dot {
  position: absolute; width: 5px; height: 5px; border-radius: 50%;
  background: var(--cp-green);
  box-shadow: 0 0 6px rgba(0,132,61,0.6);
  -webkit-animation: arrowFlow 1.4s ease-in-out infinite;
  animation: arrowFlow 1.4s ease-in-out infinite;
  opacity: 0;
  top: 50%; -webkit-transform: translateY(-50%); transform: translateY(-50%);
  left: 0;
}
.journey-courses .j-arrow .j-arrow-dot:nth-child(2) { -webkit-animation-delay: 0.35s; animation-delay: 0.35s; }
.journey-courses .j-arrow .j-arrow-dot:nth-child(3) { -webkit-animation-delay: 0.7s; animation-delay: 0.7s; }

@-webkit-keyframes arrowFlow {
  0% { left: 0; opacity: 0; }
  15% { opacity: 0.9; }
  85% { opacity: 0.9; }
  100% { left: calc(100% - 5px); opacity: 0; }
}
@keyframes arrowFlow {
  0% { left: 0; opacity: 0; }
  15% { opacity: 0.9; }
  85% { opacity: 0.9; }
  100% { left: calc(100% - 5px); opacity: 0; }
}

/* Arrow trail glow */
.journey-courses .j-arrow::after {
  content: ''; position: absolute; inset: 2px 4px;
  background: linear-gradient(90deg, transparent, rgba(0,132,61,0.08), transparent);
  border-radius: 4px;
  animation: arrowGlow 2s ease-in-out infinite;
}
@keyframes arrowGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* ─── Animated stat number counter ──────────────────────────────────────── */
.ov-stat-num {
  font-family: var(--display); font-size: 48px; font-weight: 800;
  letter-spacing: -0.03em; margin-bottom: 6px; color: var(--cp-green);
  transform: translateZ(30px);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.ov-stat:hover .ov-stat-num { transform: translateZ(45px) scale(1.1); }
.ov-stat-label {
  font-size: 13px; color: var(--text-muted); font-weight: 600; letter-spacing: 0.02em;
  transform: translateZ(15px);
}

/* ─── 3D Stat Cards — perspective tilt on hover ─────────────────────────── */
.ov-stats { perspective: 1200px; }
.ov-stat {
  text-align: center; padding: 32px 20px;
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: var(--r); transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
  overflow: hidden;
}
.ov-stat::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0,132,61,0.10), transparent 50%);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.ov-stat:hover::after { opacity: 1; }
.ov-stat:hover {
  border-color: var(--border-bright);
  box-shadow: 0 24px 70px rgba(0,132,61,0.14), 0 6px 16px rgba(0,0,0,0.05);
}

/* ─── 3D Talent Tier Cards — premium glassmorphism ──────────────────────── */
.ov-talent-grid { perspective: 1400px; }
.ov-talent-card {
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: var(--r); overflow: hidden;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 0 0 1px rgba(0,132,61,0.04);
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
}
.ov-talent-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,132,61,0.015) 100%);
  pointer-events: none; z-index: 0;
}
.ov-talent-card:hover {
  box-shadow: 0 25px 60px rgba(0,132,61,0.12), 0 8px 20px rgba(0,0,0,0.05), 0 0 0 1px rgba(0,132,61,0.1);
  transform: translateY(-8px) rotateX(2deg);
}
.ov-talent-tier {
  padding: 20px 18px; color: #FFFFFF; font-size: 18px; font-weight: 800;
  font-family: var(--display); line-height: 1.25;
  transform: translateZ(20px);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative; overflow: hidden;
}
/* Shimmer overlay on tier header */
.ov-talent-tier::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  animation: tierShimmer 4s ease-in-out infinite;
}
@keyframes tierShimmer {
  0% { left: -100%; }
  50%, 100% { left: 200%; }
}
.ov-talent-card:hover .ov-talent-tier { transform: translateZ(35px); }
/* Glassmorphism sub-persona cards */
.ov-talent-sub {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 14px; 
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0,132,61,0.08);
  border-radius: var(--r-sm); cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateZ(10px);
  position: relative;
}
.ov-talent-sub:hover {
  background: rgba(255,255,255,0.85);
  border-color: rgba(0,132,61,0.18);
  transform: translateX(4px) translateZ(20px);
  box-shadow: 0 8px 24px rgba(0,132,61,0.08);
}
/* Icon glow ring */
.ov-talent-sub-icon {
  font-size: 20px; flex-shrink: 0;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cp-green-softer);
  border-radius: 10px;
  box-shadow: 0 0 0 3px rgba(0,132,61,0.06);
  transition: all 0.3s ease;
}
.ov-talent-sub:hover .ov-talent-sub-icon {
  box-shadow: 0 0 0 4px rgba(0,132,61,0.12), 0 0 12px rgba(0,132,61,0.08);
  transform: scale(1.05);
}

/* ─── 3D Delivery Cards — perspective hover ─────────────────────────────── */
.ov-delivery { perspective: 1200px; }
.ov-delivery-card {
  padding: 36px; background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: var(--r); position: relative; overflow: hidden;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
  transform-style: preserve-3d;
  will-change: transform;
}
.ov-delivery-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-6px) rotateY(-2deg) rotateX(1deg);
  box-shadow: 0 20px 50px rgba(0,132,61,0.08), 0 6px 16px rgba(0,0,0,0.03);
}
.ov-delivery-icon {
  width: 50px; height: 50px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 25px; margin-bottom: 18px;
  transform: translateZ(25px);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.ov-delivery-card:hover .ov-delivery-icon { transform: translateZ(40px) scale(1.08); }
.ov-delivery-title {
  font-family: var(--display); font-size: 22px; font-weight: 700; margin-bottom: 10px;
  transform: translateZ(15px);
}

/* ─── 3D Persona Hero — dark accent panel with persona color ────────────── */
.p-hero {
  display: grid; grid-template-columns: 1fr 320px; gap: 0;
  align-items: stretch; perspective: 1000px;
  margin: 0 -48px; overflow: hidden;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
}
.p-hero-content {
  padding: 56px 48px 48px;
  background: var(--p-hero-bg, linear-gradient(135deg, #0a2e1a 0%, #061a0f 100%));
  position: relative; overflow: hidden;
}
/* Persona-colored ambient glow in hero */
.p-hero-content::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 60%; height: 200%;
  background: radial-gradient(ellipse, var(--p-glow, rgba(0,132,61,0.15)), transparent 70%);
  pointer-events: none;
}
.p-hero-content::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--p-accent, rgba(0,132,61,0.3)), transparent);
}
.p-hero-breadcrumb {
  font-size: 12px; font-family: var(--mono); font-weight: 600;
  letter-spacing: 0.04em; margin-bottom: 8px; color: rgba(255,255,255,0.4);
}
.p-hero-breadcrumb-tier { font-weight: 700; color: var(--p-light, #4ade80); }
.p-hero-breadcrumb-sep { margin: 0 4px; opacity: 0.4; }
.p-hero-eyebrow {
  font-size: 11px; font-family: var(--mono); text-transform: uppercase;
  letter-spacing: 0.12em; margin-bottom: 16px; font-weight: 700;
  color: var(--p-light, #4ade80) !important;
  display: inline-flex; align-items: center; gap: 8px;
}
.p-hero-eyebrow::before {
  content: ''; width: 24px; height: 2px;
  background: var(--p-light, #4ade80); border-radius: 1px;
}
.p-hero h1 {
  font-family: var(--display); font-size: 42px; font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px;
  color: #FFFFFF;
  transform: translateZ(20px);
}
.p-hero-purpose {
  font-size: 17px; color: rgba(255,255,255,0.6); line-height: 1.65;
  margin-bottom: 28px; max-width: 600px; font-weight: 500;
}
.p-hero-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.p-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 16px; border-radius: 24px; font-size: 12.5px; font-weight: 600;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  backdrop-filter: blur(4px);
}
.p-chip-icon { font-size: 14px; }

/* Right panel — stats on dark bg */
.p-hero-stats {
  display: flex; flex-direction: column; gap: 0;
  background: linear-gradient(180deg, rgba(6,26,15,0.95) 0%, rgba(3,13,7,0.98) 100%);
  padding: 56px 32px 48px;
  border-left: 1px solid rgba(255,255,255,0.06);
}
.p-stat-card {
  padding: 22px 20px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-sm); margin-bottom: 12px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transform-style: preserve-3d;
  backdrop-filter: blur(4px);
}
.p-stat-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
  border-color: rgba(255,255,255,0.1);
}
.p-stat-label {
  font-size: 10px; font-family: var(--mono); text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--p-light, #4ade80); margin-bottom: 8px; font-weight: 700;
}
.p-stat-value { font-size: 15px; font-weight: 600; line-height: 1.45; color: rgba(255,255,255,0.85); }

/* ─── 3D Competency Cards — subtle lift ─────────────────────────────────── */
.comp-grid { perspective: 1200px; }
.comp-card {
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transform-style: preserve-3d;
  will-change: transform;
}
.comp-card:hover {
  transform: translateY(-6px) rotateX(2deg) rotateY(-1deg);
  box-shadow: 0 16px 40px rgba(0,132,61,0.08), 0 4px 12px rgba(0,0,0,0.03);
}

/* ─── Header ────────────────────────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(28px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  padding: 16px 48px;
  display: flex; align-items: center; justify-content: space-between;
}
.header-left { display: flex; align-items: center; gap: 16px; }
.logo { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; }
.header-title { font-family: var(--display); font-size: 17px; font-weight: 700; letter-spacing: -0.01em; color: var(--cp-green-dark); }
.header-sub { font-size: 11px; color: var(--text-dim); font-family: var(--mono); letter-spacing: 0.05em; font-weight: 500; margin-top: 1px; }
.header-actions { display: flex; gap: 10px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border: none; border-radius: var(--r-sm);
  font-family: var(--font); font-weight: 700; font-size: 13px;
  cursor: pointer; transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1); white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn svg { flex-shrink: 0; }
.btn-primary {
  background: var(--cp-green);
  color: #FFFFFF; box-shadow: 0 2px 12px rgba(0,132,61,0.2), 0 1px 2px rgba(0,0,0,0.06);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 28px rgba(0,132,61,0.28); background: var(--cp-green-dark); }
.btn-ghost { background: var(--bg-card); color: var(--text-secondary); border: 1px solid var(--border); }
.btn-ghost:hover { color: var(--text); border-color: var(--border-bright); background: var(--bg-card-hover); }

/* ─── Navigation ────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 73px; z-index: 99;
  display: flex; align-items: center; gap: 6px;
  padding: 10px 48px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}
.nav::-webkit-scrollbar { height: 0; }
.nav-divider { width: 1px; height: 24px; background: var(--surface-bright); margin: 0 10px; flex-shrink: 0; }
.nav-personas { display: flex; gap: 5px; }
.nav-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 18px; border: 1px solid transparent; border-radius: var(--r-sm);
  background: transparent; color: var(--text-muted);
  font-family: var(--font); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1); white-space: nowrap;
}
.nav-btn:hover { color: var(--text-secondary); background: var(--cp-green-softer); }
.nav-btn.active { color: #FFFFFF; font-weight: 700; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.nav-btn[data-color="cyan"].active { background: var(--cyan); }
.nav-btn[data-color="blue"].active { background: var(--blue); }
.nav-btn[data-color="purple"].active { background: var(--purple); }
.nav-btn[data-color="amber"].active { background: var(--amber); }
.nav-btn[data-color="rose"].active { background: var(--rose); }
.nav-btn[data-color="teal"].active { background: var(--teal); }
.nav-btn[data-color="overview"].active, .nav-btn[data-view="overview"].active { background: var(--cp-green); }
.nav-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.nav-btn.active .nav-dot { background: #FFFFFF !important; }
.nav-tier-label {
  font-size: 11px; font-family: var(--mono); font-weight: 700; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap;
  padding: 6px 4px 6px 8px; flex-shrink: 0;
}
.nav-tier-sep {
  color: var(--surface-bright); font-size: 18px; font-weight: 300;
  margin: 0 4px; flex-shrink: 0; line-height: 1;
}
.nav-btn-sub { font-size: 12px; padding: 7px 14px; }

/* ─── Main ──────────────────────────────────────────────────────────────── */
.main {
  position: relative; z-index: 1;
  max-width: 1320px; margin: 0 auto;
  padding: 0 48px 100px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   OVERVIEW PAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.ov-hero { text-align: center; }
/* Hero badge/h1/sub — styled in dark hero section above */

/* Stats — computed dynamically, styled above in 3D section */
.ov-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 72px; }

/* Tiers — branching structure */
.ov-section-title {
  font-size: 11px; font-family: var(--mono); text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--text-dim); margin-bottom: 22px; font-weight: 600;
}
.ov-tiers { display: flex; flex-direction: column; gap: 10px; margin-bottom: 72px; }
.ov-tier {
  display: grid; grid-template-columns: 210px 1fr auto; gap: 24px;
  align-items: center; padding: 22px 28px;
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: var(--r); cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.ov-tier:hover { border-color: var(--border-bright); transform: translateX(6px); box-shadow: 0 10px 36px rgba(0,132,61,0.07); }
.ov-tier-left { display: flex; align-items: center; gap: 16px; }
.ov-tier-icon {
  width: 46px; height: 46px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 23px; flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.ov-tier:hover .ov-tier-icon { transform: scale(1.1) rotate(-3deg); }
.ov-tier-name { font-size: 16px; font-weight: 800; letter-spacing: -0.01em; }
.ov-tier-tag { font-size: 10px; font-family: var(--mono); color: var(--text-dim); letter-spacing: 0.06em; font-weight: 600; margin-top: 2px; }
.ov-tier-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.55; font-weight: 500; }
.ov-tier-arrow { color: var(--text-dim); font-size: 18px; transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1); }
.ov-tier:hover .ov-tier-arrow { transform: translateX(6px); color: var(--cp-green); }

/* Talent grid layout — replaced by orbital */
.ov-talent-grid { display: none; }

/* ─── Orbital Tier Visualization — 3D perspective ───────────────────────── */
.ov-orbit-wrap {
  position: relative; width: 100%; height: 640px;
  margin-bottom: 72px;
  display: flex; align-items: center; justify-content: center;
  perspective: 900px;
}
.ov-orbit-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.ov-orbit-center {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 88px; height: 88px; border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #0a2e1a, #040f08);
  border: 2px solid rgba(0,132,61,0.25);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 36px; z-index: 2;
  box-shadow: 0 0 40px rgba(0,132,61,0.2), 0 0 80px rgba(0,132,61,0.1), inset 0 0 20px rgba(0,132,61,0.1);
  animation: centerPulse 3s ease-in-out infinite;
}
.ov-orbit-center-label {
  font-size: 8px; font-family: var(--mono); font-weight: 700;
  color: rgba(255,255,255,0.45); letter-spacing: 0.1em;
  text-transform: uppercase; margin-top: 1px;
}
@keyframes centerPulse {
  0%, 100% { box-shadow: 0 0 40px rgba(0,132,61,0.2), 0 0 80px rgba(0,132,61,0.1), inset 0 0 20px rgba(0,132,61,0.1); }
  50% { box-shadow: 0 0 60px rgba(0,132,61,0.3), 0 0 120px rgba(0,132,61,0.15), inset 0 0 30px rgba(0,132,61,0.15); }
}

/* Main tier nodes */
.ov-orbit-node {
  position: absolute; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  cursor: pointer; transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 16px 22px; border-radius: var(--r);
  background: rgba(255,255,255,0.95);
  border: 1.5px solid rgba(0,132,61,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  min-width: 120px; text-align: center;
  opacity: 0; animation: nodeAppear 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.ov-orbit-node[data-tier="0"] { animation-delay: 0.5s; }
.ov-orbit-node[data-tier="1"] { animation-delay: 0.65s; }
.ov-orbit-node[data-tier="2"] { animation-delay: 0.8s; }
.ov-orbit-node[data-tier="3"] { animation-delay: 0.95s; }

@keyframes nodeAppear {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.6); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.ov-orbit-node:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 16px 48px rgba(0,132,61,0.14), 0 0 0 2px var(--node-color);
  border-color: var(--node-color);
  z-index: 5;
}
.ov-orbit-node-icon {
  font-size: 26px; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--node-color); border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}
.ov-orbit-node:hover .ov-orbit-node-icon { transform: scale(1.1) rotate(-3deg); }
.ov-orbit-node-label {
  font-family: var(--display); font-size: 16px; font-weight: 800;
  color: var(--text); letter-spacing: -0.01em;
}
.ov-orbit-node-level {
  font-size: 10px; font-family: var(--mono); font-weight: 700;
  color: var(--node-color); text-transform: uppercase; letter-spacing: 0.08em;
}

/* Satellite sub-nodes — smaller boxes branching from parent */
.ov-orbit-sat {
  position: absolute; z-index: 4;
  display: flex; align-items: center; gap: 8px;
  cursor: pointer; transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 10px 16px; border-radius: var(--r-sm);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(0,132,61,0.06);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  white-space: nowrap;
  opacity: 0; animation: satAppear 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.ov-orbit-sat[data-parent="1"][data-sub="0"] { animation-delay: 0.9s; }
.ov-orbit-sat[data-parent="1"][data-sub="1"] { animation-delay: 1.0s; }
.ov-orbit-sat[data-parent="2"][data-sub="0"] { animation-delay: 1.1s; }
.ov-orbit-sat[data-parent="2"][data-sub="1"] { animation-delay: 1.2s; }

@keyframes satAppear {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.ov-orbit-sat:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 8px 28px rgba(0,132,61,0.12), 0 0 0 2px var(--sat-color);
  border-color: var(--sat-color);
  z-index: 6;
}
.ov-orbit-sat-icon {
  font-size: 18px; width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--sat-color); border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  flex-shrink: 0;
}
.ov-orbit-sat-name {
  font-size: 13px; font-weight: 700; color: var(--text);
}
.ov-talent-tier span { font-size: 14px; font-weight: 600; opacity: 0.85; }
.ov-talent-def {
  padding: 16px 18px 0; font-size: 13px; color: var(--text-secondary);
  line-height: 1.6;
}
.ov-talent-def strong { color: var(--cp-green-dark); font-weight: 700; }
.ov-talent-purpose {
  padding: 10px 18px 0; font-size: 13px; color: var(--text-secondary);
  line-height: 1.6;
}
.ov-talent-purpose strong { color: var(--cp-green-dark); font-weight: 700; }
/* Talent sub-cards — styled in 3D section above */
.ov-talent-subs { padding: 14px 18px 18px; display: flex; flex-direction: column; gap: 8px; }
.ov-talent-sub-icon { font-size: 20px; flex-shrink: 0; }
.ov-talent-sub-name { font-size: 13px; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.ov-talent-sub-desc { font-size: 11px; color: var(--text-dim); line-height: 1.4; margin-top: 2px; }
.ov-talent-sub-arrow {
  color: var(--text-dim); font-size: 16px; margin-left: auto; flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: transparent;
}
.ov-talent-sub:hover .ov-talent-sub-arrow {
  transform: translateX(4px);
  color: var(--cp-green);
  background: var(--cp-green-softer);
}

/* Persona hero breadcrumb */
.p-hero-breadcrumb {
  font-size: 12px; font-family: var(--mono); font-weight: 600;
  letter-spacing: 0.04em; margin-bottom: 6px; color: var(--text-dim);
}
.p-hero-breadcrumb-tier { font-weight: 700; }
.p-hero-breadcrumb-sep { margin: 0 4px; opacity: 0.4; }

/* Delivery layout */
.ov-delivery { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 72px; }
.ov-delivery-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.ov-delivery-card.ilt::before { background: linear-gradient(90deg, var(--amber), var(--rose)); }
.ov-delivery-card.digital::before { background: linear-gradient(90deg, var(--cp-green), var(--cp-green-light)); }
/* Delivery details */
.ov-delivery-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 22px; font-weight: 500; }
.ov-delivery-features { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.ov-delivery-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-secondary); line-height: 1.45; font-weight: 500;
}
.ov-delivery-features li::before {
  content: '✓'; font-weight: 800; flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 11px;
}
.ov-delivery-card.ilt .ov-delivery-features li::before { background: var(--amber-soft); color: var(--amber); }
.ov-delivery-card.digital .ov-delivery-features li::before { background: var(--cp-green-soft); color: var(--cp-green); }

/* ═══════════════════════════════════════════════════════════════════════════
   PERSONA PAGE
   ═══════════════════════════════════════════════════════════════════════════ */
/* Persona hero — styled in dark hero section above */

/* Section headers */
.p-section { margin-top: 52px; }
.p-section-head { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.p-section-icon {
  width: 38px; height: 38px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0;
}
.p-section-title { font-family: var(--display); font-size: 24px; font-weight: 700; letter-spacing: -0.02em; }
.p-section-count { margin-left: auto; font-size: 11px; font-family: var(--mono); color: var(--text-dim); font-weight: 600; }

/* Competency grid — 2×3 seed pods */
.comp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.comp-card {
  padding: 24px; background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: var(--r); transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative; overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.comp-card:hover { border-color: var(--border-bright); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,132,61,0.06); }
.comp-card-domain { font-size: 15px; font-weight: 800; margin-bottom: 7px; }
.comp-card-level {
  display: inline-block; padding: 4px 12px; border-radius: var(--r-xs);
  font-size: 10px; font-family: var(--mono); font-weight: 700;
  letter-spacing: 0.04em; margin-bottom: 14px;
}
.comp-card-def { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; font-weight: 500; }
.comp-card-outcome {
  font-size: 13px; color: var(--text-muted); line-height: 1.45;
  padding-top: 14px; border-top: 1px solid var(--border); font-weight: 500;
}
.comp-card-outcome span { color: var(--text-secondary); font-weight: 700; }

/* Learning journey — elevated growth timeline */
.journey { display: flex; flex-direction: column; gap: 0; position: relative; padding-left: 52px; }
/* Remove stem line — using animated arrows between steps instead */
.journey::before { display: none; }
.journey::after { display: none; }

/* Animated down arrow between phases — aligned under number circles */
.journey-arrow-down {
  display: flex; justify-content: center; align-items: center;
  width: 34px; height: 16px; margin: -6px 0 -6px 0;
  position: relative; z-index: 2;
  margin-left: -52px;
  padding-left: 0;
}
.journey-arrow-down svg {
  width: 14px; height: 14px;
  color: var(--cp-green);
  opacity: 0.4;
  -webkit-animation: bounceDown 2s ease-in-out infinite;
  animation: bounceDown 2s ease-in-out infinite;
}
.journey-arrow-down:nth-of-type(2) svg { animation-delay: 0.15s; }
.journey-arrow-down:nth-of-type(3) svg { animation-delay: 0.3s; }
.journey-arrow-down:nth-of-type(4) svg { animation-delay: 0.45s; }
.journey-arrow-down:nth-of-type(5) svg { animation-delay: 0.6s; }

@-webkit-keyframes bounceDown {
  0%, 100% { -webkit-transform: translateY(0); transform: translateY(0); opacity: 0.3; }
  50% { -webkit-transform: translateY(4px); transform: translateY(4px); opacity: 0.7; }
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(4px); opacity: 0.7; }
}
/* Journey number circles — no stem line, positioned inline */
.journey-step {
  position: relative; padding: 20px 24px 20px 20px; margin-bottom: 4px;
  background: var(--bg-card); border: 1px solid var(--border-card); border-radius: var(--r);
  display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: start;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.journey-step:hover { border-color: var(--border-bright); transform: translateX(4px); box-shadow: 0 10px 36px rgba(0,132,61,0.06); }
.journey-num {
  position: absolute; left: -52px; top: 18px;
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: #FFFFFF; z-index: 2;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}
.journey-step:hover .journey-num { transform: scale(1.18); }
.journey-step-icon {
  font-size: 22px; line-height: 1; flex-shrink: 0;
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  border-radius: 10px; background: var(--cp-green-softer);
}
.journey-phase { font-size: 10px; font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; font-weight: 600; }
.journey-courses { font-size: 14px; font-weight: 500; line-height: 1.6; color: var(--text-secondary); }
.journey-courses .j-course {
  display: inline; font-weight: 600; color: var(--text);
}
/* j-arrow styled in 3D animation section above */
.journey-courses .j-arrow svg { width: 28px; height: 14px; }
.journey-hours {
  font-size: 12px; font-family: var(--mono); font-weight: 700;
  white-space: nowrap; padding: 6px 14px; border-radius: 20px;
  align-self: center;
  display: flex; align-items: center; gap: 5px;
}
.journey-hours::before {
  content: '⏱'; font-size: 11px;
}
.journey-connector {
  position: absolute; left: -36px; top: 52px; bottom: -16px;
  width: 2px; display: flex; flex-direction: column; align-items: center;
}
.journey-step:last-child .journey-connector { display: none; }
/* Animated pulse on the timeline dots */
.journey-num::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid currentColor; opacity: 0; animation: journey-pulse 2s ease-out infinite;
  animation-delay: calc(var(--d, 0) * 1s);
}
@keyframes journey-pulse {
  0% { opacity: 0.4; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.6); }
}
/* Phase type badges */
.journey-type {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 9px; font-family: var(--mono); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 3px 8px; border-radius: 4px; margin-left: 8px;
  vertical-align: middle;
}
.journey-type-free { background: rgba(34,197,94,0.1); color: #16a34a; }
.journey-type-paid { background: rgba(239,68,68,0.08); color: #dc2626; }
.journey-type-ilt { background: rgba(230,138,0,0.1); color: #b45309; }
.journey-type-cert { background: rgba(99,102,241,0.1); color: #4f46e5; }

/* Offerings — structured emergence */
.offerings { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.offering-item-icon {
  font-size: 16px; line-height: 1; flex-shrink: 0;
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
  border-radius: 6px; background: var(--cp-green-softer);
}
.offering-block {
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: var(--r); overflow: hidden;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.offering-block:hover { border-color: var(--border-bright); box-shadow: 0 10px 36px rgba(0,132,61,0.06); }
.offering-header {
  padding: 22px 28px; display: flex; align-items: center; gap: 14px;
  border-bottom: 1px solid var(--border);
}
.offering-icon {
  width: 38px; height: 38px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; font-size: 19px;
}
.offering-title { font-size: 16px; font-weight: 800; }
.offering-subtitle { font-size: 12px; color: var(--text-dim); font-weight: 500; }
.offering-list { padding: 4px 0; }
.offering-item {
  display: grid; grid-template-columns: auto 1fr auto auto; gap: 12px;
  align-items: center; padding: 12px 28px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.offering-item:last-child { border-bottom: none; }
.offering-item:hover { background: var(--cp-green-softer); }
.offering-item-name { font-size: 14px; font-weight: 600; }
.offering-item-name a { color: inherit; text-decoration: none; transition: color 0.2s; }
.offering-item-name a:hover { color: var(--cp-green); }
.offering-item-name a .link-icon {
  display: inline-block; opacity: 0; margin-left: 4px;
  transition: opacity 0.2s, transform 0.2s;
  font-size: 11px; vertical-align: middle;
}
.offering-item:hover .offering-item-name a .link-icon { opacity: 0.5; transform: translateX(2px); }
.offering-item-meta { font-size: 11px; color: var(--text-dim); font-family: var(--mono); font-weight: 500; }
.offering-item-badge { padding: 4px 11px; border-radius: var(--r-xs); font-size: 10px; font-weight: 700; letter-spacing: 0.02em; }
.badge-ilt { background: var(--amber-soft); color: var(--amber); }
.badge-free { background: rgba(0,163,75,0.08); color: var(--green); }
.badge-paid { background: rgba(184,50,32,0.06); color: var(--red); }

/* Cert cards — gold-accented distinction */
.cert-row { display: flex; gap: 14px; flex-wrap: wrap; }
.cert-card {
  flex: 1; min-width: 260px; padding: 26px;
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: var(--r); position: relative; overflow: hidden;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.cert-card-icon {
  width: 120px; height: 120px; margin-bottom: 16px;
}
.cert-card-icon img {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
}
  flex: 1; min-width: 260px; padding: 26px;
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: var(--r); transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative; overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.cert-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--aws), var(--amber));
}
.cert-card:hover { transform: translateY(-4px); border-color: var(--border-bright); box-shadow: 0 16px 48px rgba(0,132,61,0.06); }
.cert-card-name { font-size: 16px; font-weight: 800; margin-bottom: 9px; }
.cert-card-name a { color: inherit; text-decoration: none; transition: color 0.2s; }
.cert-card-name a:hover { color: var(--aws); }
.cert-card-level {
  display: inline-block; padding: 4px 12px; border-radius: var(--r-xs);
  font-size: 10px; font-family: var(--mono); font-weight: 700;
  background: var(--aws-soft); color: var(--aws); margin-bottom: 12px;
}
.cert-card-notes { font-size: 14px; color: var(--text-secondary); line-height: 1.45; font-weight: 500; }

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile-first, touch-friendly
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Tablet (≤1024px) ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .comp-grid { grid-template-columns: repeat(2, 1fr); }
  .offerings { grid-template-columns: 1fr; }
  .ov-tier { grid-template-columns: 180px 1fr auto; }
  .ov-talent-grid { grid-template-columns: repeat(2, 1fr); }
  .p-hero { grid-template-columns: 1fr 280px; }
}

/* ─── Small tablet / large phone (≤768px) ───────────────────────────────── */
@media (max-width: 768px) {
  body { font-size: 14px; }

  .ov-orbit-wrap { height: 480px; }
  .ov-orbit-node { min-width: 100px; padding: 12px 14px; }
  .ov-orbit-node-icon { font-size: 22px; width: 40px; height: 40px; border-radius: 12px; }
  .ov-orbit-node-label { font-size: 14px; }
  .ov-orbit-center { width: 64px; height: 64px; font-size: 26px; }
  .ov-orbit-sat { padding: 8px 12px; }
  .ov-orbit-sat-icon { width: 28px; height: 28px; font-size: 15px; border-radius: 8px; }
  .ov-orbit-sat-name { font-size: 11px; }

  .header { padding: 12px 16px; }
  .header-left { gap: 10px; }
  .logo { width: 36px; height: 36px; }
  .logo svg { width: 30px; height: 30px; }
  .header-title { font-size: 14px; }
  .header-sub { font-size: 10px; }
  .header-actions { display: flex; gap: 8px; }
  .btn { padding: 8px 14px; font-size: 12px; gap: 6px; }
  .btn svg { width: 14px; height: 14px; }

  .nav { padding: 8px 16px; top: 61px; gap: 4px; -webkit-overflow-scrolling: touch; }
  .nav-btn { padding: 7px 12px; font-size: 12px; gap: 5px; }
  .nav-divider { margin: 0 6px; }

  .main { padding: 0 16px 80px; }

  /* Overview */
  .ov-hero { padding: 48px 24px 36px; margin: 0 -24px; }
  .ov-hero h1 { font-size: 32px; line-height: 1.12; }
  .ov-hero-sub { font-size: 15px; margin-bottom: 0; }
  .ov-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 48px; }
  .ov-stat { padding: 22px 14px; }
  .ov-stat-num { font-size: 34px; }
  .ov-stat-label { font-size: 11.5px; }

  .ov-tiers { margin-bottom: 48px; }
  .ov-tier { grid-template-columns: 1fr; gap: 10px; padding: 18px 20px; }
  .ov-talent-grid { grid-template-columns: 1fr; }
  .ov-talent-tier { font-size: 16px; padding: 14px 16px; }
  .ov-tier-left { gap: 12px; }
  .ov-tier-icon { width: 40px; height: 40px; font-size: 20px; }
  .ov-tier-desc { font-size: 13px; }
  .ov-tier-arrow { display: none; }

  .ov-delivery { grid-template-columns: 1fr; margin-bottom: 48px; }
  .ov-delivery-card { padding: 24px; }
  .ov-delivery-title { font-size: 19px; }
  .ov-delivery-desc { font-size: 14px; }

  /* Persona */
  .p-hero { grid-template-columns: 1fr; gap: 0; margin: 0 -24px; }
  .p-hero-content { padding: 36px 24px 28px; }
  .p-hero-stats { padding: 24px; border-left: none; border-top: 1px solid rgba(255,255,255,0.06); flex-direction: row; flex-wrap: wrap; gap: 10px; }
  .p-hero h1 { font-size: 28px; }
  .p-hero-purpose { font-size: 15px; }
  .p-hero-eyebrow { font-size: 10px; }
  .p-stat-card { flex: 1; min-width: 140px; padding: 16px; }
  .p-stat-label { font-size: 9px; }
  .p-stat-value { font-size: 13px; }

  .p-section { margin-top: 36px; }
  .p-section-title { font-size: 20px; }
  .p-section-icon { width: 34px; height: 34px; font-size: 17px; }

  .comp-grid { grid-template-columns: 1fr; gap: 10px; }
  .comp-card { padding: 20px; }
  .comp-card-domain { font-size: 14px; }
  .comp-card-def { font-size: 13px; }

  .journey { padding-left: 44px; }
  .journey-arrow-down { margin-left: -44px; width: 30px; }
  .journey-num { left: -44px; width: 30px; height: 30px; font-size: 11px; }
  .journey-step { padding: 16px 18px 16px 16px; grid-template-columns: auto 1fr auto; }
  .journey-step-icon { width: 32px; height: 32px; font-size: 18px; border-radius: 8px; }
  .journey-courses { font-size: 13px; }
  .journey-hours { font-size: 11px; padding: 5px 10px; }

  .offering-header { padding: 16px 18px; }
  .offering-item { padding: 10px 18px; gap: 10px; grid-template-columns: auto 1fr auto; }
  .offering-item-meta { display: none; }
  .offering-item-name { font-size: 13px; }

  .cert-row { flex-direction: column; }
  .cert-card { min-width: unset; padding: 20px; }
  .cert-card-name { font-size: 14px; }
  .cert-card-icon { width: 96px; height: 96px; margin-bottom: 12px; }

  .stem-line { display: none; }
  .glow-1 { width: 300px; height: 300px; }
  .glow-2 { width: 250px; height: 250px; }
  .glow-3 { display: none; }
}

/* ─── Phone (≤480px) ────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .ov-orbit-wrap { height: 400px; }
  .ov-orbit-node { min-width: 80px; padding: 10px 12px; }
  .ov-orbit-node-icon { font-size: 18px; width: 34px; height: 34px; border-radius: 10px; }
  .ov-orbit-node-label { font-size: 12px; }
  .ov-orbit-node-level { font-size: 9px; }
  .ov-orbit-sat { padding: 6px 10px; }
  .ov-orbit-sat-icon { width: 24px; height: 24px; font-size: 13px; border-radius: 7px; }
  .ov-orbit-sat-name { font-size: 10px; }
  .ov-orbit-center { width: 54px; height: 54px; font-size: 22px; }
  .ov-orbit-center-label { font-size: 8px; }

  .header { padding: 10px 12px; flex-wrap: wrap; }
  .header-left { width: 100%; }
  .header-actions { width: 100%; justify-content: stretch; }
  .header-actions .btn { flex: 1; justify-content: center; padding: 10px 10px; }

  .nav { padding: 6px 12px; top: auto; position: relative; }
  .nav-btn { padding: 6px 10px; font-size: 11px; }
  .nav-dot { width: 6px; height: 6px; }

  .main { padding: 0 12px 60px; }

  .ov-hero { padding: 32px 12px 24px; margin: 0 -12px; }
  .ov-hero h1 { font-size: 26px; }
  .ov-hero-sub { font-size: 14px; line-height: 1.6; }
  .ov-hero-badge { font-size: 11px; padding: 5px 12px; }
  .ov-stats { grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 36px; }
  .ov-stat { padding: 18px 10px; }
  .ov-stat-num { font-size: 28px; }
  .ov-stat-label { font-size: 10.5px; }

  .ov-tier { padding: 14px 16px; }
  .ov-tier-name { font-size: 14px; }
  .ov-tier-tag { font-size: 9px; }
  .ov-tier-desc { font-size: 12px; }
  .ov-tier-icon { width: 36px; height: 36px; font-size: 18px; border-radius: 10px; }

  .ov-delivery-card { padding: 18px; }
  .ov-delivery-title { font-size: 17px; }
  .ov-delivery-desc { font-size: 13px; }
  .ov-delivery-features li { font-size: 12.5px; }

  .p-hero { margin: 0 -12px; }
  .p-hero-content { padding: 24px 12px 20px; }
  .p-hero-stats { padding: 16px 12px; flex-direction: column; }
  .p-hero h1 { font-size: 24px; }
  .p-hero-purpose { font-size: 14px; }
  .p-hero-chips { gap: 6px; }
  .p-chip { font-size: 11px; padding: 5px 10px; }
  .p-stat-card { min-width: unset; }

  .p-section-title { font-size: 18px; }

  .comp-card { padding: 16px; }
  .comp-card-domain { font-size: 13px; }
  .comp-card-level { font-size: 9px; padding: 3px 8px; }
  .comp-card-def { font-size: 12.5px; }
  .comp-card-outcome { font-size: 12px; }

  .journey { padding-left: 36px; }
  .journey-arrow-down { margin-left: -36px; width: 26px; }
  .journey-num { left: -36px; width: 26px; height: 26px; font-size: 10px; }
  .journey-step { padding: 14px 14px; grid-template-columns: 1fr; gap: 8px; }
  .journey-step-icon { display: none; }
  .journey-courses { font-size: 12.5px; }
  .journey-hours { font-size: 10.5px; justify-self: start; }

  .offering-header { padding: 14px 14px; gap: 10px; }
  .offering-icon { width: 32px; height: 32px; font-size: 16px; }
  .offering-title { font-size: 14px; }
  .offering-item { padding: 10px 14px; }
  .offering-item-name { font-size: 12.5px; }
  .offering-item-badge { font-size: 9px; padding: 3px 8px; }

  .cert-card { padding: 16px; }
  .cert-card-name { font-size: 13px; }
  .cert-card-notes { font-size: 12.5px; }
  .cert-card-icon { width: 80px; height: 80px; margin-bottom: 10px; }
}

/* ─── Touch-friendly enhancements ───────────────────────────────────────── */
@media (hover: none) and (pointer: coarse) {
  .ov-tier:hover, .comp-card:hover, .journey-step:hover,
  .offering-block:hover, .cert-card:hover, .ov-stat:hover,
  .ov-delivery-card:hover, .ov-talent-card:hover, .ov-talent-sub:hover {
    transform: none !important; box-shadow: 0 1px 3px rgba(0,0,0,0.03) !important;
  }
  .ov-stat:hover .ov-stat-num, .ov-talent-card:hover .ov-talent-tier,
  .ov-delivery-card:hover .ov-delivery-icon { transform: none !important; }
  .ov-stat::after { display: none; }
  .ov-hero-orbital { display: none; }
  /* Keep journey pulse dots and arrow flow dots on mobile — they show direction */
  .ov-tier:active { background: var(--bg-card-hover); }
  .comp-card:active { background: var(--bg-card-hover); }
  .nav-btn { -webkit-tap-highlight-color: transparent; }
  .btn { -webkit-tap-highlight-color: transparent; }
  .offering-item-name a .link-icon { opacity: 0.4 !important; }
}

::-webkit-scrollbar { width: 6px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--surface-bright); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-dim); }
