/* =====================================================================
   CAPSI Digital Guardian Mission — Premium UI (v2)
   Advanced dark-cyber design system · front-end only
   ===================================================================== */

:root {
  /* Core palette */
  --navy-900: #050b1e;
  --navy-850: #071023;
  --navy-800: #0a1730;
  --navy-700: #0f2145;
  --navy-600: #16305f;
  --line:      rgba(120, 160, 220, 0.16);
  --line-2:    rgba(120, 160, 220, 0.28);

  /* Brand accents */
  --blue:   #3b82f6;
  --blue-2: #2563eb;
  --cyan:   #22d3ee;
  --violet: #8b5cf6;
  --green:  #10b981;
  --amber:  #f59e0b;
  --red:    #ef4444;
  --gold:   #fbbf24;

  /* Text */
  --ink:      #eaf1ff;
  --ink-soft: #a9b8d4;
  --ink-mute: #6b7da0;

  /* Effects */
  --grad-brand: linear-gradient(135deg, #3b82f6, #22d3ee);
  --grad-brand-2: linear-gradient(135deg, #6366f1, #22d3ee);
  --grad-gold: linear-gradient(135deg, #fbbf24, #f59e0b);
  --glow-blue: 0 0 0 1px rgba(59,130,246,.4), 0 12px 40px -8px rgba(37,99,235,.5);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1200px;
  --font-head: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "Space Grotesk", ui-monospace, monospace;
}

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--navy-900);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.12; margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---- Ambient background mesh ---- */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(900px 600px at 12% -5%, rgba(37,99,235,.22), transparent 55%),
    radial-gradient(800px 600px at 95% 8%, rgba(34,211,238,.14), transparent 55%),
    radial-gradient(1000px 700px at 60% 110%, rgba(139,92,246,.16), transparent 55%);
}
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -2; opacity: .5;
  background-image:
    linear-gradient(rgba(120,160,220,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,160,220,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 80%);
}

/* ---- Layout ---- */
.wrap { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section--tight { padding: 64px 0; }
.center { text-align: center; }

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: .74rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--cyan);
  padding: 7px 14px; border-radius: 999px;
  background: rgba(34,211,238,.08); border: 1px solid rgba(34,211,238,.22);
}
.kicker .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }

.h-sec { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 18px 0 14px; }
.h-sec .grad { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { color: var(--ink-soft); font-size: 1.05rem; max-width: 620px; }
.center .lead { margin-left: auto; margin-right: auto; }
.sec-head { margin-bottom: 52px; }

/* Gradient text util */
.grad { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.grad-gold { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  padding: 13px 24px; border-radius: 12px; position: relative;
  transition: transform .18s ease, box-shadow .18s ease, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn { white-space: nowrap; }
.btn--primary { background: var(--grad-brand); color: #04122e; box-shadow: 0 10px 30px -8px rgba(34,211,238,.5); }
.btn--primary:hover { box-shadow: 0 16px 40px -8px rgba(34,211,238,.65); }
.btn--gold { background: var(--grad-gold); color: #3a2a05; box-shadow: 0 10px 30px -8px rgba(245,158,11,.5); }
.btn--ghost { border: 1px solid var(--line-2); color: var(--ink); background: rgba(255,255,255,.02); }
.btn--ghost:hover { border-color: var(--cyan); background: rgba(34,211,238,.06); }
.btn--block { width: 100%; justify-content: center; }
.btn--sm { padding: 9px 16px; font-size: .85rem; }

/* ---- Glass card ---- */
.glass {
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  position: relative;
}
.glass:hover { border-color: var(--line-2); }

/* Scroll progress bar */
.progress-bar { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200; background: var(--grad-brand); box-shadow: 0 0 12px var(--cyan); }

/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(5,11,30,.72);
  border-bottom: 1px solid var(--line);
}
.nav__in { display: flex; align-items: center; gap: 14px; height: 72px; }
.logo { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.logo__img {
  height: 48px; width: auto; max-height: 48px; max-width: 200px; object-fit: contain;
  display: block; flex: 0 0 auto;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.5));
}
.logo__divider { width: 1px; height: 30px; background: var(--line-2); flex: 0 0 auto; }
.logo__txt { display: flex; flex-direction: column; }
.logo__txt b { font-family: var(--font-head); font-weight: 700; letter-spacing: .04em; font-size: .82rem; line-height: 1.15; text-transform: uppercase; }
.logo__txt span { font-size: .58rem; color: var(--ink-mute); letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
/* legacy gradient mark (used in footer fallback) */
.logo__mark { width: 38px; height: 38px; border-radius: 10px; background: var(--grad-brand); display: grid; place-items: center; color: #04122e; box-shadow: 0 6px 20px -6px rgba(34,211,238,.6); flex: 0 0 auto; }
.nav__links { display: flex; gap: 2px; margin-left: auto; }
.nav__links a { font-size: .85rem; color: var(--ink-soft); padding: 8px 8px; border-radius: 9px; transition: color .15s, background .15s; font-weight: 500; white-space: nowrap; }
.nav__links a:hover { color: var(--ink); background: rgba(255,255,255,.05); }
.nav__cta { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.nav__badge { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; color: var(--ink-soft); padding: 7px 13px; border-radius: 999px; border: 1px solid var(--line); white-space: nowrap; }
.nav__badge b { color: var(--cyan); }
.burger { display: none; width: 44px; height: 44px; border-radius: 11px; border: 1px solid var(--line); color: var(--ink); place-items: center; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero { padding: 84px 0 72px; position: relative; }
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero__partner {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px;
  padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line-2);
  background: rgba(255,255,255,.03); font-size: .82rem; color: var(--ink-soft);
}
.hero__partner .sh { color: var(--cyan); }
.hero h1 { font-size: clamp(2.4rem, 5.6vw, 4rem); font-weight: 800; }
.hero h1 .grad { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { color: var(--ink-soft); font-size: 1.12rem; margin: 22px 0 30px; max-width: 560px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero__stats { display: grid; grid-template-columns: repeat(4, auto); gap: 30px; }
.hero__stat b { font-family: var(--font-head); font-size: 1.7rem; font-weight: 800; display: block; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__stat span { font-size: .78rem; color: var(--ink-mute); }

/* Hero visual — ecosystem core */
.hero__visual { position: relative; aspect-ratio: 1; display: grid; place-items: center; }
.hero__visual::before {
  content: ""; position: absolute; inset: 12%; border-radius: 50%;
  background: radial-gradient(circle, rgba(34,211,238,.18), transparent 65%); filter: blur(24px);
}
.hero__rings { position: absolute; inset: 0; }
.ring { position: absolute; border-radius: 50%; }
.ring--1 { inset: 3%; border: 1px solid rgba(120,160,220,.26); }
.ring--2 { inset: 17%; border: 1px dashed rgba(34,211,238,.34); animation: spin 46s linear infinite; }
.ring--3 { inset: 31%; border: 1px solid rgba(139,92,246,.30); animation: spin 60s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }

.core {
  width: 42%; aspect-ratio: 1; border-radius: 30px; display: grid; place-items: center; text-align: center;
  background: radial-gradient(circle at 50% 28%, rgba(34,211,238,.32), rgba(37,99,235,.14) 58%, transparent 72%), var(--navy-800);
  border: 1px solid var(--line-2);
  box-shadow: inset 0 0 44px rgba(34,211,238,.16), 0 24px 70px -14px rgba(3,10,26,.9);
  position: relative; z-index: 3; padding: 10px;
}
.core svg { color: var(--cyan); filter: drop-shadow(0 0 18px rgba(34,211,238,.7)); }
.core b { font-family: var(--font-head); letter-spacing: .1em; font-size: .8rem; margin-top: 10px; }
.core small { font-size: .6rem; color: var(--ink-mute); letter-spacing: .22em; margin-top: 2px; }

/* Orbiting labelled nodes */
.onode {
  position: absolute; transform: translate(-50%,-50%); z-index: 4;
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
  padding: 8px 13px; border-radius: 12px; font-size: .74rem; font-weight: 600;
  background: rgba(9,18,38,.9); border: 1px solid var(--line-2); backdrop-filter: blur(8px);
  box-shadow: 0 10px 28px -12px rgba(0,0,0,.8); transition: transform .2s, border-color .2s, box-shadow .2s;
}
.onode:hover { transform: translate(-50%,-50%) scale(1.07); border-color: var(--cyan); box-shadow: 0 0 26px -6px rgba(34,211,238,.5); }
.onode svg { color: var(--cyan); flex: 0 0 auto; }
.onode--1 { top: 3%;  left: 52%; }
.onode--2 { top: 33%; left: 96%; }
.onode--3 { top: 84%; left: 80%; }
.onode--4 { top: 84%; left: 20%; }
.onode--5 { top: 33%; left: 4%;  color: var(--green); }
.onode--5 svg { color: var(--green); }

/* Marquee trust bar */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 20px 0; overflow: hidden; }
.trust__track { display: flex; gap: 56px; align-items: center; white-space: nowrap; animation: marquee 26s linear infinite; }
.trust__track span { font-family: var(--font-head); font-weight: 600; color: var(--ink-mute); font-size: 1rem; opacity: .7; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =====================================================================
   VISION 2030 STAT STRIP
   ===================================================================== */
.stats2030 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.stat2030 { padding: 26px 20px; text-align: center; }
.stat2030 b { font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; display: block; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat2030 span { font-size: .84rem; color: var(--ink-soft); }

/* =====================================================================
   MISSION CAROUSEL
   ===================================================================== */
.carousel { position: relative; max-width: 1000px; margin: 0 auto; }
.carousel__viewport {
  overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--line-2); background: var(--navy-850);
  box-shadow: 0 30px 80px -30px rgba(3,10,26,.9);
}
.carousel__track { display: flex; transition: transform .6s cubic-bezier(.5,.05,.2,1); }
.carousel__slide {
  min-width: 100%; position: relative;
  display: flex; align-items: center; justify-content: center;
  height: clamp(300px, 52vh, 520px); padding: 22px; overflow: hidden;
  background: radial-gradient(600px 280px at 50% 0%, rgba(37,99,235,.14), transparent 70%), var(--navy-850);
  cursor: zoom-in;
}
.carousel__slide img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  border-radius: 10px; background: #fff;
  box-shadow: 0 18px 46px -18px rgba(0,0,0,.75);
  transition: transform .25s ease;
}
.carousel__slide:hover img { transform: scale(1.015); }
.carousel__zoom {
  position: absolute; top: 14px; right: 14px; z-index: 2; pointer-events: none;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 12px; border-radius: 999px; font-size: .72rem; font-weight: 600;
  background: rgba(9,18,38,.82); border: 1px solid var(--line-2); backdrop-filter: blur(6px); color: var(--ink);
}
.carousel__zoom svg { color: var(--cyan); }
.carousel__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 44px 24px 16px; color: #fff; font-size: .9rem; font-weight: 600;
  background: linear-gradient(transparent, rgba(3,8,22,.9));
  display: flex; align-items: center; gap: 10px; pointer-events: none;
}
.carousel__cap svg { color: var(--cyan); flex: 0 0 auto; }

/* Lightbox (full image view) */
.lightbox { position: fixed; inset: 0; z-index: 300; display: none; place-items: center; padding: 24px; background: rgba(3,8,22,.92); backdrop-filter: blur(8px); }
.lightbox.open { display: grid; }
.lightbox__img { max-width: 94vw; max-height: 88vh; width: auto; height: auto; border-radius: 10px; background: #fff; box-shadow: 0 40px 100px -24px #000; }
.lightbox__close, .lightbox__nav {
  position: absolute; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid var(--line-2); color: #fff;
  display: grid; place-items: center; transition: background .2s, transform .2s, color .2s;
}
.lightbox__close { top: 20px; right: 20px; }
.lightbox__close:hover { background: var(--red); }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav:hover { background: var(--grad-brand); color: #04122e; transform: translateY(-50%) scale(1.06); }
.lightbox__nav.prev { left: 22px; }
.lightbox__nav.next { right: 22px; }
.lightbox__cap { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: #fff; font-size: .88rem; font-weight: 600; padding: 8px 18px; border-radius: 999px; background: rgba(9,18,38,.85); border: 1px solid var(--line-2); white-space: nowrap; }
@media (max-width: 620px) {
  .lightbox__nav { width: 40px; height: 40px; }
  .lightbox__nav.prev { left: 10px; } .lightbox__nav.next { right: 10px; }
  .lightbox__img { max-height: 82vh; }
  .lightbox__cap { font-size: .78rem; max-width: 80vw; overflow: hidden; text-overflow: ellipsis; }
}

/* Arrows */
.carousel__btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(9,18,38,.85); border: 1px solid var(--line-2); color: var(--ink);
  display: grid; place-items: center; backdrop-filter: blur(8px);
  transition: background .2s, border-color .2s, transform .2s; box-shadow: 0 10px 30px -10px rgba(0,0,0,.7);
}
.carousel__btn:hover { background: var(--grad-brand); color: #04122e; border-color: transparent; }
.carousel__btn:hover { transform: translateY(-50%) scale(1.06); }
.carousel__btn--prev { left: -22px; }
.carousel__btn--next { right: -22px; }

/* Dots + progress */
.carousel__dots { display: flex; gap: 10px; justify-content: center; margin-top: 22px; }
.carousel__dot {
  width: 34px; height: 5px; border-radius: 999px; background: rgba(120,160,220,.24);
  overflow: hidden; position: relative; transition: background .2s;
}
.carousel__dot.active { background: rgba(120,160,220,.35); }
.carousel__dot .bar { position: absolute; inset: 0; width: 0; background: var(--grad-brand); }
.carousel__dot.active .bar { width: 100%; transition: width var(--dur, 5s) linear; }

@media (max-width: 1080px) {
  .carousel__btn--prev { left: 8px; }
  .carousel__btn--next { right: 8px; }
}
@media (max-width: 620px) {
  .carousel__btn { width: 42px; height: 42px; }
  .carousel__cap { font-size: .82rem; padding: 32px 16px 14px; }
}

/* =====================================================================
   ECOSYSTEM WHEEL
   ===================================================================== */
.eco { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.eco__wheel { position: relative; aspect-ratio: 1; max-width: 520px; margin: 0 auto; width: 100%; }
.eco__center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 34%; aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; text-align: center;
  background: radial-gradient(circle, rgba(37,99,235,.35), rgba(7,16,35,.9)); border: 1px solid var(--line-2);
  box-shadow: 0 0 60px -10px rgba(34,211,238,.4); z-index: 3;
}
.eco__center b { font-family: var(--font-head); font-size: .8rem; letter-spacing: .06em; }
.eco__ring { position: absolute; inset: 12%; border-radius: 50%; border: 1px dashed var(--line-2); }
.eco__node {
  position: absolute; width: 110px; margin-left: -55px; margin-top: -34px; text-align: center;
  padding: 12px 8px; border-radius: 14px; background: rgba(10,23,48,.8); border: 1px solid var(--line);
  backdrop-filter: blur(6px); transition: transform .2s, border-color .2s, box-shadow .2s; cursor: default;
}
.eco__node:hover { transform: scale(1.08); border-color: var(--cyan); box-shadow: 0 0 24px -6px rgba(34,211,238,.5); z-index: 4; }
.eco__node svg { color: var(--cyan); margin: 0 auto 4px; }
.eco__node span { font-size: .72rem; font-weight: 600; line-height: 1.2; display: block; }
.eco__list li { display: flex; gap: 14px; padding: 14px 0; border-top: 1px solid var(--line); }
.eco__list li:first-child { border-top: none; }
.eco__list .ic { width: 40px; height: 40px; border-radius: 11px; background: rgba(34,211,238,.1); border: 1px solid var(--line); display: grid; place-items: center; color: var(--cyan); flex: 0 0 auto; }
.eco__list h4 { font-size: .98rem; }
.eco__list p { font-size: .85rem; color: var(--ink-soft); }

/* =====================================================================
   PILLARS
   ===================================================================== */
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.pillar { padding: 28px; overflow: hidden; }
.pillar::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--pc, var(--blue)); border-radius: 18px 18px 0 0; }
.pillar__no { font-family: var(--font-mono); font-size: 2.4rem; font-weight: 700; color: var(--pc); opacity: .35; line-height: 1; }
.pillar__ic { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; color: #fff; background: color-mix(in srgb, var(--pc) 22%, transparent); border: 1px solid color-mix(in srgb, var(--pc) 40%, transparent); margin: -40px 0 16px auto; }
.pillar h3 { font-size: 1.2rem; margin-bottom: 6px; }
.pillar__who { font-size: .8rem; color: var(--pc); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 14px; }
.pillar__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.pillar__tags span { font-size: .76rem; padding: 4px 11px; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid var(--line); color: var(--ink-soft); }
.pillar__rev { font-size: .84rem; color: var(--ink-soft); padding-top: 14px; border-top: 1px dashed var(--line); }
.pillar__rev b { color: var(--gold); }

/* =====================================================================
   REVENUE
   ===================================================================== */
.rev { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.donut { position: relative; width: 280px; aspect-ratio: 1; margin: 0 auto; border-radius: 50%;
  background: conic-gradient(var(--green) 0 60%, var(--blue) 60% 80%, var(--amber) 80% 100%);
  box-shadow: 0 0 60px -14px rgba(16,185,129,.4);
}
.donut::after { content: ""; position: absolute; inset: 26%; border-radius: 50%; background: var(--navy-850); border: 1px solid var(--line); }
.donut__c { position: absolute; inset: 0; display: grid; place-items: center; z-index: 2; text-align: center; }
.donut__c b { font-family: var(--font-head); font-size: 1.4rem; }
.donut__c span { font-size: .72rem; color: var(--ink-mute); }
.rev__legend li { display: flex; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line); align-items: flex-start; }
.rev__legend li:first-child { border-top: none; }
.rev__pct { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; min-width: 62px; }
.rev__legend h4 { font-size: 1rem; }
.rev__legend p { font-size: .84rem; color: var(--ink-soft); }
.dot-g { color: var(--green); } .dot-b { color: var(--blue); } .dot-a { color: var(--amber); }

.streams { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 44px; }
.stream { font-size: .82rem; padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,.03); color: var(--ink-soft); transition: .18s; }
.stream:hover { border-color: var(--cyan); color: var(--ink); transform: translateY(-2px); }

/* =====================================================================
   SCHOOLS (tabs)
   ===================================================================== */
.school-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.school-tab { padding: 11px 20px; border-radius: 12px; border: 1px solid var(--line); font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ink-soft); background: rgba(255,255,255,.02); transition: .18s; }
.school-tab.active { color: #04122e; background: var(--grad-brand); border-color: transparent; }
.school-tab:not(.active):hover { border-color: var(--cyan); color: var(--ink); }
.school-panel { display: none; }
.school-panel.active { display: block; animation: rise .35s ease; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.school-body { display: grid; grid-template-columns: 1fr 1.3fr; gap: 32px; padding: 34px; align-items: center; }
.school-body__head .n { font-family: var(--font-mono); color: var(--cyan); font-size: .9rem; }
.school-body h3 { font-size: 1.5rem; margin: 6px 0 10px; }
.school-body__for { font-size: .88rem; color: var(--ink-soft); margin-bottom: 16px; }
.school-body__meta { display: inline-flex; gap: 8px; align-items: center; font-size: .8rem; color: var(--cyan); padding: 6px 14px; border-radius: 999px; border: 1px solid rgba(34,211,238,.25); background: rgba(34,211,238,.06); }
.certs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.certc { display: flex; gap: 12px; align-items: center; padding: 14px; border-radius: 12px; background: rgba(255,255,255,.03); border: 1px solid var(--line); transition: .18s; }
.certc:hover { border-color: var(--cyan); transform: translateY(-2px); }
.certc .cc-ic { width: 36px; height: 36px; border-radius: 9px; background: var(--grad-brand); display: grid; place-items: center; color: #04122e; flex: 0 0 auto; }
.certc b { font-size: .84rem; display: block; }
.certc span { font-size: .72rem; color: var(--ink-mute); }

/* =====================================================================
   CAREER PATHWAYS
   ===================================================================== */
.paths { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.path { padding: 24px; }
.path__h { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.path__h .pic { width: 42px; height: 42px; border-radius: 11px; background: color-mix(in srgb, var(--cyan) 16%, transparent); border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--cyan); flex: 0 0 auto; }
.path__h b { font-size: 1rem; }
.path__flow li { position: relative; padding: 10px 0 10px 26px; font-size: .9rem; color: var(--ink-soft); }
.path__flow li::before { content: ""; position: absolute; left: 6px; top: 18px; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.path__flow li::after { content: ""; position: absolute; left: 9px; top: 26px; bottom: -2px; width: 2px; background: var(--line-2); }
.path__flow li:last-child::after { display: none; }
.path__flow li:last-child { color: var(--ink); font-weight: 600; }

/* =====================================================================
   PRICING
   ===================================================================== */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.price { padding: 30px; display: flex; flex-direction: column; }
.price--feat { border-color: var(--cyan); box-shadow: 0 0 50px -16px rgba(34,211,238,.5); }
.price__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; background: var(--grad-brand); color: #04122e; }
.price__lvl { font-family: var(--font-mono); color: var(--cyan); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }
.price h3 { font-size: 1.2rem; margin: 6px 0 4px; }
.price__dur { font-size: .82rem; color: var(--ink-mute); margin-bottom: 20px; }
.price__amt { font-family: var(--font-head); font-weight: 800; font-size: 2rem; }
.price__amt small { font-size: .8rem; color: var(--ink-mute); font-weight: 500; }
.price__intl { font-size: .8rem; color: var(--ink-soft); margin: 4px 0 20px; }
.price__list { flex: 1; margin-bottom: 22px; }
.price__list li { display: flex; gap: 10px; padding: 7px 0; font-size: .86rem; color: var(--ink-soft); }
.price__list li svg { color: var(--green); flex: 0 0 auto; margin-top: 3px; }

/* =====================================================================
   METHODOLOGY
   ===================================================================== */
.method { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.meth-bars li { margin-bottom: 20px; }
.meth-bars .r { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: .9rem; }
.meth-bars .r b { font-family: var(--font-head); }
.meth-bars .track { height: 10px; border-radius: 999px; background: rgba(255,255,255,.06); overflow: hidden; }
.meth-bars .fill { height: 100%; border-radius: 999px; background: var(--grad-brand); width: 0; transition: width 1.1s cubic-bezier(.2,.7,.2,1); }
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip2 { font-size: .8rem; padding: 8px 14px; border-radius: 10px; background: rgba(255,255,255,.03); border: 1px solid var(--line); color: var(--ink-soft); }
.chip2:hover { border-color: var(--violet); color: var(--ink); }

/* =====================================================================
   LIFECYCLE
   ===================================================================== */
.life { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.life__step { text-align: center; position: relative; padding: 22px 12px; }
.life__num { width: 52px; height: 52px; margin: 0 auto 12px; border-radius: 15px; background: var(--grad-brand); display: grid; place-items: center; color: #04122e; font-family: var(--font-head); font-weight: 800; box-shadow: 0 10px 26px -8px rgba(34,211,238,.5); }
.life__step h4 { font-size: .92rem; margin-bottom: 4px; }
.life__step p { font-size: .78rem; color: var(--ink-mute); }
.life__step:not(:last-child)::after { content: "→"; position: absolute; right: -10px; top: 34px; color: var(--line-2); font-size: 1.2rem; }

/* =====================================================================
   PARTNERS / BENEFITS
   ===================================================================== */
.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.mini { padding: 22px; }
.mini__ic { width: 44px; height: 44px; border-radius: 12px; background: color-mix(in srgb, var(--cyan) 14%, transparent); border: 1px solid var(--line); display: grid; place-items: center; color: var(--cyan); margin-bottom: 14px; }
.mini h4 { font-size: 1rem; margin-bottom: 6px; }
.mini p { font-size: .84rem; color: var(--ink-soft); }

/* =====================================================================
   ROADMAP
   ===================================================================== */
.road { position: relative; padding-left: 20px; }
.road::before { content: ""; position: absolute; left: 6px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--cyan), var(--violet)); }
.road__item { position: relative; padding: 0 0 34px 34px; }
.road__item::before { content: ""; position: absolute; left: -1px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--navy-800); border: 2px solid var(--cyan); box-shadow: 0 0 14px rgba(34,211,238,.6); }
.road__when { font-family: var(--font-mono); color: var(--cyan); font-size: .82rem; font-weight: 600; }
.road__item h4 { font-size: 1.05rem; margin: 4px 0; }
.road__item p { font-size: .88rem; color: var(--ink-soft); }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq { display: grid; gap: 12px; max-width: 860px; margin: 0 auto; }
.faq__item { padding: 0; overflow: hidden; }
.faq__q { width: 100%; text-align: left; display: flex; align-items: center; gap: 16px; padding: 20px 24px; font-family: var(--font-head); font-weight: 600; font-size: 1rem; }
.faq__q .num { font-family: var(--font-mono); color: var(--cyan); font-size: .9rem; flex: 0 0 auto; }
.faq__q .chev { margin-left: auto; transition: transform .25s; color: var(--ink-mute); flex: 0 0 auto; }
.faq__item.open .faq__q .chev { transform: rotate(180deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a-in { padding: 0 24px 22px 58px; color: var(--ink-soft); font-size: .9rem; }
.faq__a-in li { padding: 4px 0 4px 18px; position: relative; }
.faq__a-in li::before { content: "▸"; position: absolute; left: 0; color: var(--cyan); }

/* =====================================================================
   CTA + FOOTER
   ===================================================================== */
.cta {
  padding: 60px; border-radius: 28px; text-align: center; position: relative; overflow: hidden;
  background: radial-gradient(600px 300px at 50% 0%, rgba(34,211,238,.2), transparent 60%), linear-gradient(135deg, var(--navy-700), var(--navy-850));
  border: 1px solid var(--line-2);
}
.cta h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 14px; }
.cta p { color: var(--ink-soft); max-width: 560px; margin: 0 auto 28px; }
.cta__promise { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-top: 34px; }
.cta__promise span { font-size: .84rem; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; }
.cta__promise svg { color: var(--cyan); }

.footer { border-top: 1px solid var(--line); padding: 56px 0 28px; margin-top: 96px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer__about { color: var(--ink-soft); font-size: .88rem; margin: 16px 0; max-width: 300px; }
.footer h6 { font-size: .95rem; margin-bottom: 14px; }
.footer__links a { display: block; padding: 5px 0; font-size: .86rem; color: var(--ink-mute); }
.footer__links a:hover { color: var(--cyan); }
.footer__bot { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); font-size: .82rem; color: var(--ink-mute); }
.footer__bot b { color: var(--cyan); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 150; display: none; }
.drawer.open { display: block; }
.drawer__bg { position: absolute; inset: 0; background: rgba(5,11,30,.7); backdrop-filter: blur(4px); }
.drawer__panel { position: absolute; top: 0; right: 0; width: min(320px,85%); height: 100%; background: var(--navy-850); border-left: 1px solid var(--line); padding: 24px; display: flex; flex-direction: column; gap: 4px; }
.drawer__panel a { padding: 13px; border-radius: 10px; color: var(--ink-soft); font-weight: 500; }
.drawer__panel a:hover { background: rgba(255,255,255,.05); color: var(--ink); }
.drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1420px) {
  .nav .nav__badge { display: none; }
}
@media (max-width: 1080px) {
  .nav__links, .nav__badge { display: none; }
  .burger { display: grid; }
  .hero__grid, .eco, .rev, .method { grid-template-columns: 1fr; }
  .hero__visual { max-width: 420px; margin: 10px auto 0; }
  .pillars { grid-template-columns: 1fr; }
  .paths { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .school-body { grid-template-columns: 1fr; }
  .life { grid-template-columns: repeat(3, 1fr); }
  .life__step::after { display: none; }
  .grid4, .grid5 { grid-template-columns: repeat(2, 1fr); }
  .stats2030 { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .section { padding: 68px 0; }
  .hero__stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  .certs { grid-template-columns: 1fr; }
  .life { grid-template-columns: 1fr 1fr; }
  .grid4, .grid5 { grid-template-columns: 1fr; }
  .stats2030 { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .cta { padding: 36px 22px; }
  .eco__node { width: 88px; margin-left: -44px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
