/* ═══════════════════════════════════════════════════════════════════════════
   Telkomsel Cloud Zone — AI & Security Learning Path
   Design: Warm corporate-tech, red/gray Cloud Zone branding
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  /* Cloud Zone brand */
  --cz-red: #E63312;
  --cz-red-dark: #CC1B28;
  --cz-red-light: #F05A3B;
  --cz-orange: #F7941D;
  --cz-yellow: #FCAF17;
  --cz-gray: #9D9D9C;
  --cz-gray-dark: #6B6B6B;
  --cz-gray-light: #C8C8C8;

  /* Persona accent colors */
  --red: #E63312;
  --orange: #F7941D;
  --crimson: #7B2D8E;
  --gold: #8B7355;
  --steel: #2E6B9E;

  /* Soft backgrounds */
  --red-soft: rgba(230,51,18,0.06);
  --orange-soft: rgba(247,148,29,0.06);
  --crimson-soft: rgba(123,45,142,0.06);
  --gold-soft: rgba(139,115,85,0.06);
  --steel-soft: rgba(46,107,158,0.06);
  --aws-soft: rgba(255,153,0,0.06);

  /* Surface */
  --bg: #F2F2F2;
  --card: #FFFFFF;
  --surface: #E8E8E8;
  --text: #2D2D2D;
  --muted: #6B6B6B;
  --dim: #9D9D9C;
  --border: rgba(0,0,0,0.06);

  /* Animation */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Reset & Base ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--cz-red); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--cz-red-dark); }

/* ─── Ambient Effects ─────────────────────────────────────────────────── */
.glow {
  position: fixed; border-radius: 50%; pointer-events: none; z-index: 0;
  filter: blur(120px); opacity: 0.4;
}
.glow-1 { width: 500px; height: 500px; top: -100px; right: -100px; background: radial-gradient(circle, rgba(230,51,18,0.10), transparent 70%); }
.glow-2 { width: 400px; height: 400px; bottom: 10%; left: -80px; background: radial-gradient(circle, rgba(247,148,29,0.08), transparent 70%); }
.glow-3 { width: 350px; height: 350px; top: 40%; right: 20%; background: radial-gradient(circle, rgba(46,107,158,0.06), transparent 70%); }

.noise-overlay {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.03;
  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");
}

/* ─── Header ──────────────────────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 32px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.header-left { display: flex; align-items: center; gap: 14px; }
.logo { display: flex; align-items: center; }
.header-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 18px; font-weight: 700; color: var(--text);
  letter-spacing: -0.02em;
}
.header-sub {
  font-size: 11px; color: var(--muted); font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.header-actions { display: flex; gap: 10px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 8px; border: none;
  font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all 0.2s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--cz-red); color: #fff;
  box-shadow: 0 2px 8px rgba(230,51,18,0.2);
}
.btn-primary:hover { background: var(--cz-red-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(230,51,18,0.3); }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--red-soft); border-color: var(--cz-red); color: var(--cz-red); }

/* ─── Navigation ──────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 57px; z-index: 90;
  display: flex; align-items: center; gap: 4px;
  padding: 8px 32px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.nav::-webkit-scrollbar { height: 0; }
.nav-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 6px; border: none;
  font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 500;
  color: var(--muted); background: transparent;
  cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.nav-btn:hover { background: rgba(0,0,0,0.04); color: var(--text); }
.nav-btn.active { background: var(--cz-red); color: #fff; font-weight: 600; }
.nav-btn svg { opacity: 0.6; }
.nav-btn.active svg { opacity: 1; }
.nav-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.nav-divider { width: 1px; height: 20px; background: var(--border); margin: 0 6px; flex-shrink: 0; }
.nav-track-label {
  font-size: 10px; font-weight: 700; color: var(--dim);
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 4px 8px; white-space: nowrap;
}
.nav-track-sep { width: 1px; height: 20px; background: var(--border); margin: 0 8px; flex-shrink: 0; }

/* ─── Main Content ────────────────────────────────────────────────────── */
.main {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  padding: 32px 32px 80px;
}

/* ─── Animations ──────────────────────────────────────────────────────── */
.anim-fade-up {
  animation: fadeUp 0.7s var(--ease-out) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.stagger { animation: fadeUp 0.6s var(--ease-out) both; animation-delay: var(--d, 0s); }

/* ═══════════════════════════════════════════════════════════════════════════
   OVERVIEW PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

.ov-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #2D2D2D 0%, #1a1a1a 100%);
  border-radius: 20px; padding: 64px 48px;
  margin-bottom: 40px;
  color: #fff;
}
.ov-hero-orbital {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; opacity: 0.7;
}
.ov-hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 20px;
  background: rgba(230,51,18,0.15); color: var(--cz-red-light);
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 20px;
  position: relative; z-index: 1;
}
.ov-hero h1 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 52px; font-weight: 800; line-height: 1.1;
  letter-spacing: -0.03em; margin-bottom: 16px;
  position: relative; z-index: 1;
}
.ov-hero-sub {
  font-size: 16px; color: rgba(255,255,255,0.65);
  max-width: 600px; line-height: 1.6;
  position: relative; z-index: 1;
}

/* Stats */
.ov-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-bottom: 48px;
}
.ov-stat {
  background: var(--card); border-radius: 14px; padding: 24px;
  text-align: center; position: relative; overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
  transform-style: preserve-3d;
}
.ov-stat:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.ov-stat::after {
  content: ''; position: absolute; inset: 0; border-radius: 14px;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(230,51,18,0.06), transparent 60%);
  pointer-events: none; opacity: 0; transition: opacity 0.3s;
}
.ov-stat:hover::after { opacity: 1; }
.ov-stat-num {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 42px; font-weight: 800; line-height: 1;
  margin-bottom: 6px;
}
.ov-stat-label { font-size: 13px; color: var(--muted); font-weight: 500; }

/* Constellation — orbital persona map */
.ov-constellation {
  position: relative;
  height: 560px;
  margin-bottom: 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
  overflow: hidden;
}
.ov-constellation-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

/* Orbit rings — dashed circles */
.ov-orbit-ring {
  position: absolute; border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.06);
  top: 50%; left: 50%;
  pointer-events: none; z-index: 1;
}
.ov-orbit-ring-1 {
  width: 420px; height: 420px;
  transform: translate(-50%, -50%);
}
.ov-orbit-ring-2 {
  width: 520px; height: 520px;
  transform: translate(-50%, -50%);
}

/* Center hub */
.ov-constellation-hub {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 110px; height: 110px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(230,51,18,0.15), rgba(247,148,29,0.1));
  border: 2px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 5;
  box-shadow: 0 0 60px rgba(230,51,18,0.15), 0 0 120px rgba(247,148,29,0.08);
}
.ov-hub-flame { font-size: 36px; line-height: 1; filter: drop-shadow(0 0 8px rgba(255,255,255,0.3)); }
.ov-hub-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; font-weight: 700; color: rgba(255,255,255,0.7);
  text-align: center; letter-spacing: 0.14em; line-height: 1.2;
  margin-top: 2px;
}

/* Orbit track — JS-driven positioning, no CSS animation */
.ov-orbit-card {
  position: absolute;
  z-index: 4;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: 12px; padding: 12px 18px;
  display: flex; align-items: center; gap: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: box-shadow 0.3s, border-color 0.3s;
  white-space: nowrap;
  /* JS sets top/left via transform */
  will-change: transform;
}
.ov-orbit-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  border-color: var(--orbit-color);
}
.ov-orbit-card-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.ov-orbit-card-name {
  font-size: 15px; font-weight: 700; color: var(--text);
}
.ov-orbit-card-tier {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Track summary cards below constellation */
.ov-track-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 48px;
}
.ov-track-summary {
  background: var(--card); border-radius: 14px;
  border: 1px solid var(--border); padding: 20px 24px;
}
.ov-track-summary-header {
  display: flex; align-items: center; gap: 12px;
  padding-left: 12px; margin-bottom: 16px;
}
.ov-track-summary-icon { font-size: 20px; }
.ov-track-summary-title { font-size: 16px; font-weight: 700; }
.ov-track-summary-sub { font-size: 12px; color: var(--dim); }
.ov-track-summary-personas { display: flex; flex-direction: column; gap: 8px; }
.ov-track-persona-chip {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px; border-radius: 8px;
  background: var(--bg); cursor: pointer;
  transition: all 0.2s;
  font-size: 13px; font-weight: 500;
}
.ov-track-persona-chip:hover { background: var(--surface); }
.ov-track-persona-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.ov-track-persona-count {
  margin-left: auto; font-size: 11px; color: var(--dim);
  font-family: 'JetBrains Mono', monospace;
}

/* Section titles */
.ov-section-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 28px; font-weight: 700; color: var(--text);
  margin-bottom: 24px; letter-spacing: -0.02em;
}

/* Track sections */
.ov-track-section { margin-bottom: 48px; }
.ov-track-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.ov-track-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.ov-track-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 22px; font-weight: 700;
}
.ov-track-sub { font-size: 13px; color: var(--muted); }

/* Persona cards grid */
.ov-persona-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px;
}
.ov-persona-card {
  background: var(--card); border-radius: 14px; padding: 24px;
  border: 1px solid var(--border); cursor: pointer;
  transition: all 0.3s var(--ease-out); position: relative; overflow: hidden;
}
.ov-persona-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.ov-persona-card-icon { font-size: 28px; margin-bottom: 12px; }
.ov-persona-card-name {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 18px; font-weight: 700; margin-bottom: 4px;
}
.ov-persona-card-tier {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 10px;
}
.ov-persona-card-desc { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 14px; }
.ov-persona-card-stats {
  display: flex; gap: 12px; font-size: 11px; color: var(--dim);
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
}
.ov-persona-card-arrow {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  font-size: 18px; color: var(--dim); transition: all 0.3s;
}
.ov-persona-card:hover .ov-persona-card-arrow { color: var(--cz-red); transform: translateY(-50%) translateX(4px); }

/* Delivery model */
.ov-delivery { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 48px; }
.ov-delivery-card {
  background: var(--card); border-radius: 14px; padding: 28px;
  border: 1px solid var(--border);
}
.ov-delivery-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 16px;
}
.ov-delivery-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.ov-delivery-desc { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.ov-delivery-features { list-style: none; }
.ov-delivery-features li {
  font-size: 13px; color: var(--text); padding: 4px 0;
  padding-left: 20px; position: relative;
}
.ov-delivery-features li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--cz-red); font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PERSONA PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

/* Hero */
.p-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #2D2D2D 0%, #1a1a1a 100%);
  border-radius: 20px; padding: 48px;
  margin-bottom: 32px; color: #fff;
}
.p-hero::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 500px; height: 500px; border-radius: 50%;
  background: var(--p-glow, rgba(237,28,36,0.1));
  filter: blur(80px); pointer-events: none;
}
.p-hero-content { position: relative; z-index: 1; }
.p-hero-breadcrumb {
  font-size: 12px; color: rgba(255,255,255,0.5);
  margin-bottom: 8px; font-weight: 500;
}
.p-hero-breadcrumb-tier { color: rgba(255,255,255,0.7); }
.p-hero-breadcrumb-sep { margin: 0 6px; }
.p-hero-eyebrow {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 12px;
  color: var(--p-light, #FF6B6B);
}
.p-hero h1 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 40px; font-weight: 800; line-height: 1.15;
  letter-spacing: -0.02em; margin-bottom: 12px;
}
.p-hero-purpose {
  font-size: 16px; color: rgba(255,255,255,0.65);
  max-width: 700px; line-height: 1.6; margin-bottom: 20px;
}
.p-hero-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.p-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 8px;
  background: rgba(255,255,255,0.08); font-size: 12px;
  color: rgba(255,255,255,0.8); font-weight: 500;
}
.p-chip-icon { font-size: 14px; }
.p-hero-stats {
  display: flex; gap: 16px; margin-top: 24px;
  position: relative; z-index: 1;
}
.p-stat-card {
  flex: 1; background: rgba(255,255,255,0.06);
  border-radius: 12px; padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.08);
}
.p-stat-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.p-stat-value { font-size: 14px; color: rgba(255,255,255,0.9); line-height: 1.5; }

/* Sections */
.p-section { margin-bottom: 36px; }
.p-section-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.p-section-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.p-section-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 22px; font-weight: 700; flex: 1;
}
.p-section-count {
  font-size: 12px; color: var(--dim); font-weight: 500;
  font-family: 'JetBrains Mono', monospace;
}

/* Competency grid */
.comp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.comp-card {
  background: var(--card); border-radius: 12px; padding: 20px;
  border: 1px solid var(--border); position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.comp-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.comp-card-domain { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.comp-card-level {
  display: inline-block; padding: 3px 10px; border-radius: 6px;
  font-size: 11px; font-weight: 600; margin-bottom: 10px;
}
.comp-card-def { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 10px; }
.comp-card-outcome {
  font-size: 12px; color: var(--dim); line-height: 1.4;
  padding-top: 10px; border-top: 1px solid var(--border);
}
.comp-card-outcome span { font-weight: 600; color: var(--muted); }

/* Learning Journey */
.journey { position: relative; padding-left: 18px; }
.journey-step {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0; position: relative;
}
.journey-num {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; font-weight: 700;
  flex-shrink: 0; position: relative; z-index: 2;
}
.journey-step-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.journey-phase {
  font-size: 15px; font-weight: 700; margin-bottom: 6px;
  display: flex; align-items: center; gap: 10px;
}
.journey-type {
  font-size: 10px; font-weight: 700; padding: 2px 8px;
  border-radius: 4px; text-transform: uppercase; letter-spacing: 0.04em;
}
.journey-type-free { background: rgba(34,197,94,0.12); color: #16a34a; }
.journey-type-paid { background: rgba(230,51,18,0.08); color: var(--cz-red); }
.journey-type-mixed { background: linear-gradient(135deg, rgba(34,197,94,0.12), rgba(247,148,29,0.12)); color: #b45309; }
.journey-type-ilt { background: rgba(247,148,29,0.1); color: #d97706; }
.journey-type-cert { background: rgba(255,153,0,0.1); color: #ea580c; }
.journey-courses { font-size: 13px; color: var(--muted); line-height: 1.8; }
.journey-hours {
  padding: 4px 12px; border-radius: 6px;
  font-size: 12px; font-weight: 600; white-space: nowrap;
  margin-left: auto; flex-shrink: 0;
}

/* Between-course arrows — bold chevron style */
.j-course { font-weight: 500; color: var(--text); }
.j-arrow {
  display: inline-flex; align-items: center;
  margin: 0 6px; vertical-align: middle;
}
.j-arrow svg { width: 24px; height: 12px; }

/* Phase-to-phase down arrow — aligned left under the number circle */
.journey-connector {
  display: flex; align-items: center;
  padding: 2px 0; margin-left: 0; /* align with number circle */
  width: 36px; justify-content: center;
}
.journey-connector svg { width: 16px; height: 28px; }

/* Offerings */
.offerings { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.offering-block {
  background: var(--card); border-radius: 14px;
  border: 1px solid var(--border); overflow: hidden;
}
.offering-header {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 24px; border-bottom: 1px solid var(--border);
}
.offering-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.offering-title { font-size: 16px; font-weight: 700; }
.offering-subtitle { font-size: 12px; color: var(--dim); }
.offering-list { padding: 8px 0; }
.offering-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 24px; transition: background 0.15s;
}
.offering-item:hover { background: rgba(0,0,0,0.02); }
.offering-item-icon { font-size: 16px; flex-shrink: 0; width: 24px; text-align: center; }
.offering-item-name { flex: 1; font-size: 13px; font-weight: 500; }
.offering-item-name a { color: var(--text); }
.offering-item-name a:hover { color: var(--cz-red); }
.link-icon {
  font-size: 11px; opacity: 0; transition: opacity 0.2s;
  color: var(--cz-red);
}
.offering-item:hover .link-icon { opacity: 1; }
.offering-item-meta {
  font-size: 11px; color: var(--dim);
  font-family: 'JetBrains Mono', monospace;
  white-space: nowrap;
}
.offering-item-badge {
  font-size: 10px; font-weight: 700; padding: 2px 8px;
  border-radius: 4px; text-transform: uppercase;
  letter-spacing: 0.04em; white-space: nowrap;
}
.badge-free { background: rgba(34,197,94,0.1); color: #16a34a; }
.badge-paid { background: rgba(230,51,18,0.06); color: var(--cz-red); }
.badge-ilt { background: rgba(247,148,29,0.1); color: #d97706; }

/* Cert cards */
.cert-row { display: flex; gap: 16px; }
.cert-card {
  background: var(--bg); border-radius: 12px; padding: 20px;
  text-align: center; border: 1px solid var(--border);
}
.cert-card-icon { margin-bottom: 16px; }
.cert-card-icon img { width: 140px; height: 140px; object-fit: contain; }
.cert-card-name { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.cert-card-name a { color: var(--text); }
.cert-card-name a:hover { color: var(--cz-red); }
.cert-card-level {
  font-size: 11px; font-weight: 600; color: #FF9900;
  text-transform: uppercase; letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.cert-card-notes { font-size: 12px; color: var(--muted); line-height: 1.4; }

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .ov-stats { grid-template-columns: repeat(2, 1fr); }
  .ov-track-cards { grid-template-columns: 1fr; }
  .comp-grid { grid-template-columns: repeat(2, 1fr); }
  .offerings { grid-template-columns: 1fr; }
  .ov-delivery { grid-template-columns: 1fr; }
  .p-hero-stats { flex-direction: column; }
  .ov-constellation { height: 480px; }
  .orbit-pos-1 { top: 70%; left: 55%; }
  .orbit-pos-2 { top: 65%; left: 5%; }
  .orbit-pos-3 { top: 10%; left: 3%; }
  .orbit-pos-4 { top: 6%; left: 50%; }
  .orbit-pos-5 { top: 38%; left: 70%; }
}

@media (max-width: 768px) {
  .header { padding: 10px 16px; flex-wrap: wrap; gap: 10px; }
  .header-actions { width: 100%; }
  .header-actions .btn { flex: 1; justify-content: center; }
  .nav { padding: 8px 16px; top: auto; position: relative; }
  .main { padding: 20px 16px 60px; }
  .ov-hero { padding: 40px 24px; }
  .ov-hero h1 { font-size: 36px; }
  .ov-constellation { height: auto; min-height: 400px; padding: 24px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
  .ov-constellation-canvas { display: none; }
  .ov-constellation-hub { position: relative; top: auto; left: auto; transform: none; margin-bottom: 16px; }
  .ov-orbit-card { position: relative !important; transform: none !important; width: 100%; }
  .ov-orbit-ring { display: none; }
  .p-hero { padding: 32px 24px; }
  .p-hero h1 { font-size: 28px; }
  .comp-grid { grid-template-columns: 1fr; }
  .cert-row { flex-direction: column; }
}

@media (max-width: 480px) {
  .ov-stats { grid-template-columns: 1fr 1fr; }
  .ov-hero h1 { font-size: 28px; }
  .header-title { font-size: 15px; }
  .glow-3 { display: none; }
}

/* Touch devices */
@media (hover: none) and (pointer: coarse) {
  .ov-stat:hover, .ov-persona-card:hover, .comp-card:hover { transform: none; box-shadow: none; }
  .link-icon { opacity: 0.6; }
  .offering-item-meta { display: none; }
}
