/* ============================================================
   Everything's AI — Main Stylesheet
   Deep Navy + Electric Blue + White
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --navy: #050d1a;
  --navy-2: #0a1628;
  --navy-3: #0f1f3d;
  --navy-4: #162847;
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --blue-bright: #60a5fa;
  --blue-glow: rgba(37, 99, 235, 0.35);
  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --white: #ffffff;
  --white-90: rgba(255, 255, 255, 0.9);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-40: rgba(255, 255, 255, 0.4);
  --white-15: rgba(255, 255, 255, 0.15);
  --white-08: rgba(255, 255, 255, 0.08);
  --white-05: rgba(255, 255, 255, 0.05);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --border: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(99, 179, 237, 0.4);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-blue: 0 8px 32px rgba(37, 99, 235, 0.3);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ---- Container ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Section Labels ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-bright);
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.3);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--blue-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.section-label--light {
  color: var(--white-90);
  background: var(--white-15);
  border-color: var(--white-40);
}

.section-label--light::before {
  background: var(--white);
}

/* ---- Section Titles ---- */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.section-title--center {
  text-align: center;
}

.text-accent {
  background: linear-gradient(135deg, var(--blue-light), var(--blue-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.5);
  filter: brightness(1.1);
}

.btn--secondary {
  background: var(--white-08);
  color: var(--white);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.btn--secondary:hover {
  background: var(--white-15);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--blue-bright);
  border: 1px solid rgba(99, 179, 237, 0.3);
}

.btn--ghost:hover {
  background: rgba(37, 99, 235, 0.1);
  border-color: var(--blue-light);
}

.btn--ghost-light {
  background: transparent;
  color: var(--white-90);
  border: 1px solid var(--white-40);
}

.btn--ghost-light:hover {
  background: var(--white-15);
  border-color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--navy-3);
  font-weight: 700;
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.btn--full {
  width: 100%;
}

/* ---- Animations ---- */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

@keyframes scroll-line {
  0% { height: 0; opacity: 1; }
  100% { height: 60px; opacity: 0; }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Scroll-triggered animation */
[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: var(--transition);
}

.nav.nav--scrolled {
  background: rgba(5, 13, 26, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav__container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
}

.nav__logo-icon {
  height: 36px;
  width: auto;
  border-radius: 8px;
}

.nav__logo-img {
  height: 50px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--white-70);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav__link:hover {
  color: var(--white);
  background: var(--white-08);
}

.nav__link--cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  padding: 8px 20px;
}

.nav__link--cta:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__burger.nav__burger--active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__burger.nav__burger--active span:nth-child(2) {
  opacity: 0;
}
.nav__burger.nav__burger--active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('hero-bg.png') center center / cover no-repeat;
  opacity: 0.4;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: glow-pulse 4s ease-in-out infinite;
}

.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.35), transparent 70%);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero__orb--2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.25), transparent 70%);
  bottom: 50px;
  left: -80px;
  animation-delay: 1.5s;
}

.hero__orb--3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.2), transparent 70%);
  top: 40%;
  left: 50%;
  animation-delay: 3s;
}

.hero__container {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.35);
  color: var(--blue-bright);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
  animation: float 4s ease-in-out infinite;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--blue-light);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__title-line {
  white-space: nowrap;
}

.hero__title-accent {
  background: linear-gradient(135deg, #60a5fa, #818cf8, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--white-70);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero__actions .btn {
  padding: 16px 32px;
  font-size: 16px;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero__stat {
  text-align: center;
}

.hero__stat-icon {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 6px;
}

.hero__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
}

.hero__stat-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1;
}

.hero__scroll span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 0;
  background: var(--blue-light);
  animation: scroll-line 2s ease-in-out infinite;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 100px 0;
  background: var(--navy);
}

.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 16px;
}

.about__lead {
  font-size: 18px;
  color: var(--white-90);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about__body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

.about__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--white-05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.pillar:hover {
  background: var(--white-08);
  border-color: var(--border-hover);
}

.pillar__icon {
  font-size: 28px;
  flex-shrink: 0;
}

.pillar strong {
  display: block;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 2px;
}

.pillar p {
  font-size: 13px;
  color: var(--text-muted);
}

.about__visual--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about__grid-card {
  background: linear-gradient(135deg, var(--navy-3), var(--navy-4));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}

.about__grid-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
}

.about__grid-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
}

.about__grid-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.about__grid-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   PROGRAMS HEADER
   ============================================================ */
.programs-header {
  padding: 20px 0 0;
  text-align: center;
}

.programs-header__sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   PROGRAM SECTIONS
   ============================================================ */
.program {
  padding: 100px 0;
}

.program--incubator {
  background: var(--navy);
}

.program--academy {
  background: var(--navy-2);
}

.program__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.program__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.program__badge--incubator {
  background: rgba(37, 99, 235, 0.15);
  color: var(--blue-bright);
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.program__badge--academy {
  background: rgba(124, 58, 237, 0.15);
  color: var(--purple-light);
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.program__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.program__lead {
  font-size: 17px;
  color: var(--white-70);
  line-height: 1.7;
  margin-bottom: 32px;
}

.program__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.program__feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.program__feature-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.program__feature strong {
  display: block;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 4px;
}

.program__feature p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.program__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Program Visual */
.program__visual {
  position: relative;
}

.program__visual-box {
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.program__visual-box--blue {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(59, 130, 246, 0.1));
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.program__visual-box--purple {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(167, 139, 250, 0.1));
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.program__icon-large {
  font-size: 80px;
  filter: drop-shadow(0 0 30px rgba(37, 99, 235, 0.5));
  animation: float 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.program__visual-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.program__visual-lines span {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.4), transparent);
  width: 100%;
  animation: slide-right 3s linear infinite;
}

.program__visual-lines span:nth-child(1) { top: 30%; animation-delay: 0s; }
.program__visual-lines span:nth-child(2) { top: 50%; animation-delay: 1s; }
.program__visual-lines span:nth-child(3) { top: 70%; animation-delay: 2s; }

@keyframes slide-right {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.program__visual-dots {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  padding: 24px;
  gap: 8px;
}

.program__visual-dots span {
  width: 6px;
  height: 6px;
  background: rgba(167, 139, 250, 0.4);
  border-radius: 50%;
  justify-self: center;
  align-self: center;
  animation: pulse 2s infinite;
}

.program__visual-dots span:nth-child(odd) { animation-delay: 0.5s; }

/* Feature Cards */
.program__feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--white-05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--white-90);
  transition: var(--transition);
}

.feature-card:hover {
  background: var(--white-08);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.feature-card__icon {
  font-size: 22px;
}

/* Academy Tracks */
.academy__tracks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.academy__track {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white-05);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.academy__track:hover {
  background: var(--white-08);
  border-color: rgba(124, 58, 237, 0.3);
}

.academy__track-age {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-bright);
  text-align: center;
  line-height: 1.3;
}

.academy__track-age--advanced {
  background: rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.3);
  color: var(--purple-light);
}

.academy__track-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.academy__track-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.academy__track-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.academy__track-list li {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.academy__track-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--blue-bright);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Academy Visual Stats */
.academy__visual-stats {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.academy__stat {
  flex: 1;
  text-align: center;
  padding: 16px;
  background: var(--white-05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.academy__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.academy__stat span {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   COMMUNITY
   ============================================================ */
.community {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.community__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.community__orb {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.community .container {
  position: relative;
  z-index: 1;
}

.community__sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 60px;
  text-align: center;
  line-height: 1.7;
}

.community__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.community__card {
  padding: 32px 24px;
  background: var(--white-05);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  cursor: default;
}

.community__card:hover {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.community__card-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: rgba(37, 99, 235, 0.25);
  margin-bottom: 16px;
  line-height: 1;
}

.community__card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.community__card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy-2), var(--navy-3));
}

.cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.cta__glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.2), transparent 70%);
  filter: blur(40px);
}

.cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.cta__sub {
  font-size: 18px;
  color: var(--white-70);
  max-width: 580px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.cta__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.cta__card {
  position: relative;
  padding: 40px 32px;
  background: var(--white-08);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: var(--transition);
}

.cta__card:hover {
  background: var(--white-15);
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.cta__card--featured {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.25), rgba(59, 130, 246, 0.15));
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 0 60px rgba(37, 99, 235, 0.15);
}

.cta__card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.cta__card-icon {
  font-size: 48px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 16px rgba(37, 99, 235, 0.4));
}

.cta__card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.cta__card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.cta__email {
  font-size: 14px;
  color: var(--text-muted);
}

.cta__email a {
  color: var(--blue-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta__email a:hover {
  color: var(--white);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 60px 0 40px;
  background: var(--navy);
  border-top: 1px solid var(--border);
}

.footer__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 48px;
}

.footer__logo {
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
  max-width: 240px;
}

.footer__location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}

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

.footer__col h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-70);
  margin-bottom: 16px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer__col a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .community__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta__cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 900px) {
  .about__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__visual--grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .program__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .program__layout--right .program__content {
    order: 1;
  }

  .program__layout--right .program__visual {
    order: 2;
  }

  .footer__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

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

  .hero__title-line {
    white-space: normal;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(280px, 80vw);
    height: 100vh;
    background: var(--navy-2);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 40px;
    transition: right 0.3s ease;
    z-index: 99;
  }

  .nav__links.nav__links--open {
    right: 0;
  }

  .nav__link {
    width: 100%;
    padding: 12px 16px;
  }

  .nav__link--cta {
    margin-top: 8px;
  }

  .nav__burger {
    display: flex;
    z-index: 100;
  }

  .hero__stats {
    gap: 20px;
  }

  .hero__stat-divider {
    display: none;
  }

  .community__grid {
    grid-template-columns: 1fr;
  }

  .footer__links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .academy__track {
    flex-direction: column;
  }

  .academy__track-age {
    width: 100%;
    height: auto;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    text-align: center;
  }

  .program__feature-cards {
    grid-template-columns: 1fr;
  }

  .footer__links {
    grid-template-columns: 1fr;
  }

  .program__actions {
    flex-direction: column;
  }

  .academy__visual-stats {
    flex-direction: column;
  }
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--navy);
}
::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--blue-light);
}

/* ============================================================
   SELECTION
   ============================================================ */
::selection {
  background: rgba(37, 99, 235, 0.4);
  color: var(--white);
}

/* ============================================================
   NEWS PAGE
   ============================================================ */
.news-hero {
  padding: 140px 0 60px;
  background: linear-gradient(180deg, var(--navy-2), var(--navy));
  text-align: center;
}

.news-hero__sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.news-grid-section {
  padding: 40px 0 100px;
  background: var(--navy);
}

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

.news-grid__loading,
.news-grid__empty {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 16px;
  color: var(--text-muted);
  padding: 60px 0;
}

.news-card {
  display: flex;
  flex-direction: column;
  background: var(--white-08);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
}

.news-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.news-card__img-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy-3);
}

.news-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .news-card__img {
  transform: scale(1.05);
}

.news-card__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-card__date {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-bright);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.news-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
}

.news-card__summary {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.news-card__read {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-bright);
}

/* ---- Active nav link ---- */
.nav__link--active {
  color: var(--blue-bright);
  font-weight: 600;
}

/* ---- Article Page ---- */
.article {
  padding: 120px 0 80px;
  max-width: 760px;
  margin: 0 auto;
}

.article__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--blue-bright);
  margin-bottom: 32px;
  transition: var(--transition);
}

.article__back:hover {
  opacity: 0.7;
}

.article__hero-img {
  width: 100%;
  border-radius: var(--radius-xl);
  margin-bottom: 32px;
  object-fit: cover;
  max-height: 400px;
}

.article__date {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-bright);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.article__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.article__author {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.article__body {
  font-size: 16px;
  color: var(--text);
  line-height: 1.8;
}

.article__body h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin: 32px 0 12px;
}

.article__body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin: 24px 0 8px;
}

.article__body p {
  margin-bottom: 16px;
}

.article__body ul {
  margin: 12px 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article__body li {
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
}

.article__body a {
  color: var(--blue-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article__body a:hover {
  color: var(--blue-light);
}

.article__loading {
  font-size: 16px;
  color: var(--text-muted);
}

/* ---- News Responsive ---- */
@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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