/* ═══════════════════════════════════════════════════════════════
   TGIC — The Great Indian Campus  |  Main Stylesheet
   campus.ivirth.in  |  iViRTH Pvt. Ltd.
   Font: DM Sans  |  Theme: Gold + Deep Black
═══════════════════════════════════════════════════════════════ */

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  /* Palette */
  --gold-100:   #eff6ff;
  --gold-200:   #bfdbfe;
  --gold-300:   #93c5fd;
  --gold-400:   #60a5fa;
  --gold-500:   #3b82f6;
  --gold-600:   #9a6f07;
  --gold-primary: #c9a84c;
  --gold-shine:   #f0d060;
  --gold-muted:   #8a6f2e;

  --black-true:  #000000;
  --black-deep:  #0a0a0f;
  --black-rich:  #111118;
  --black-card:  #16161f;
  --black-border:#222230;
  --black-hover: #1e1e2a;

  --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-10:    rgba(255,255,255,0.08);

  --text-primary:   #f0ece0;
  --text-secondary: #a89e82;
  --text-muted:     #6b6258;

  /* Typography */
  --font-sans:    'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-lg:   1.125rem;
  --fs-xl:   1.25rem;
  --fs-2xl:  1.5rem;
  --fs-3xl:  1.875rem;
  --fs-4xl:  2.25rem;
  --fs-5xl:  3rem;
  --fs-6xl:  3.75rem;
  --fs-7xl:  4.5rem;
  --fs-8xl:  6rem;

  --fw-light:    300;
  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;
  --fw-extrabold:800;

  --lh-tight:  1.2;
  --lh-snug:   1.35;
  --lh-normal: 1.6;
  --lh-loose:  1.75;

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Borders & Radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-gold:  0 0 30px rgba(201,168,76,0.15);
  --shadow-card:  0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow:  0 0 60px rgba(201,168,76,0.08);

  /* Transitions */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);
  --ease-inout: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:   150ms;
  --dur-base:   250ms;
  --dur-slow:   450ms;

  /* Layout */
  --container-max: 1280px;
  --nav-height:    72px;
  --section-pad:   var(--sp-24);
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--black-deep);
  color: var(--text-primary);
  line-height: var(--lh-normal);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Skip Link ──────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--sp-4);
  z-index: 9999;
  background: var(--gold-primary);
  color: var(--black-deep);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-sm);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  transition: top var(--dur-fast);
}
.skip-link:focus { top: var(--sp-4); }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--white);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(var(--fs-4xl), 6vw, var(--fs-7xl)); font-weight: var(--fw-extrabold); }
h2 { font-size: clamp(var(--fs-3xl), 4vw, var(--fs-5xl)); }
h3 { font-size: clamp(var(--fs-2xl), 3vw, var(--fs-3xl)); }
h4 { font-size: var(--fs-xl); }
h5 { font-size: var(--fs-lg); }
h6 { font-size: var(--fs-base); }

p { margin-bottom: var(--sp-4); color: var(--text-secondary); }
p:last-child { margin-bottom: 0; }

a { color: var(--gold-primary); text-decoration: none; transition: color var(--dur-fast); }
a:hover { color: var(--gold-shine); }
a:focus-visible { outline: 2px solid var(--gold-primary); outline-offset: 3px; border-radius: 2px; }

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ── Gold Text Utility ───────────────────────────────────────── */
.text-gold { color: var(--gold-primary); }
.text-gold-shine { color: var(--gold-shine); }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }

/* ── Container ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
@media (max-width: 768px) { .container { padding: 0 var(--sp-4); } }

/* ── Section Base ───────────────────────────────────────────── */
.section { padding: var(--section-pad) 0; }
.section-sm { padding: var(--sp-16) 0; }

.section-label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: var(--sp-4);
}

.section-title {
  margin-bottom: var(--sp-6);
  color: var(--white);
}
.section-title span { color: var(--gold-primary); }

.section-desc {
  font-size: var(--fs-lg);
  color: var(--text-secondary);
  max-width: 56ch;
  line-height: var(--lh-loose);
}

/* ── Divider ────────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-muted), transparent);
  border: none;
  margin: var(--sp-16) 0;
  opacity: 0.4;
}

/* ════════════════════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--black-border);
  transition: background var(--dur-base), box-shadow var(--dur-base);
}
.site-header.scrolled {
  background: rgba(10,10,15,0.96);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

.navbar { height: 100%; }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  gap: var(--sp-6);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo { width: 40px; height: 40px; object-fit: contain; }
.nav-wordmark { height: 28px; width: auto; object-fit: contain; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  list-style: none;
  margin: 0; padding: 0;
}

.nav-link {
  display: block;
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--white-70);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: var(--white-10); }
.nav-link.active { color: var(--gold-primary); }

.dropdown-arrow {
  font-size: 0.65em;
  margin-left: 2px;
  display: inline-block;
  transition: transform var(--dur-fast);
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: var(--sp-2);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(201,168,76,0.08);
  list-style: none;
  z-index: 100;
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  background: var(--black-card);
  border-top: 1px solid var(--black-border);
  border-left: 1px solid var(--black-border);
  rotate: 45deg;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { display: block; }
.has-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.dropdown a {
  display: block;
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--white-70);
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.dropdown a:hover { color: var(--gold-primary); background: var(--white-10); }

.nav-actions { display: flex; align-items: center; gap: var(--sp-3); flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--dur-base) var(--ease-out);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.nav-mobile {
  display: none;
  position: absolute;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--black-rich);
  border-bottom: 1px solid var(--black-border);
  padding: var(--sp-4);
  box-shadow: var(--shadow-card);
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; }
.nav-mobile li { border-bottom: 1px solid var(--black-border); }
.nav-mobile li:last-child { border-bottom: none; }
.nav-mobile a {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  color: var(--white-70);
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  text-decoration: none;
  transition: color var(--dur-fast);
}
.nav-mobile a:hover { color: var(--gold-primary); }
.mobile-cta { padding: var(--sp-4) 0 var(--sp-2); border-top: 1px solid var(--black-border) !important; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--dur-base) var(--ease-out);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn:focus-visible { outline: 2px solid var(--gold-primary); outline-offset: 3px; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-400));
  color: var(--black-deep);
  box-shadow: 0 2px 12px rgba(201,168,76,0.25);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-shine), var(--gold-300));
  color: var(--black-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
}
.btn-outline:hover {
  background: rgba(201,168,76,0.08);
  color: var(--gold-shine);
  border-color: var(--gold-shine);
  transform: translateY(-1px);
}

.btn-ghost {
  background: var(--white-10);
  color: var(--white-90);
  border: 1px solid var(--white-10);
}
.btn-ghost:hover { background: var(--white); color: var(--black-deep); }

.btn-sm { padding: var(--sp-2) var(--sp-4); font-size: var(--fs-xs); }
.btn-lg { padding: var(--sp-4) var(--sp-8); font-size: var(--fs-lg); }
.btn-xl { padding: var(--sp-5) var(--sp-10); font-size: var(--fs-xl); }

/* ── Cards ───────────────────────────────────────────────────── */
.card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  transition: border-color var(--dur-base), box-shadow var(--dur-base), transform var(--dur-base);
}
.card:hover {
  border-color: rgba(201,168,76,0.25);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}
.card-gold { border-color: rgba(201,168,76,0.2); }

/* ── Grid Utilities ──────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ── Badges ──────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--sp-1) var(--sp-3);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  border: 1px solid;
}
.badge-nep { color: #4ade80; border-color: #4ade80; background: rgba(74,222,128,0.08); }
.badge-phygital { color: var(--gold-primary); border-color: var(--gold-primary); background: rgba(201,168,76,0.08); }
.badge-india { color: #f97316; border-color: #f97316; background: rgba(249,115,22,0.08); }
.badge-new { color: #60a5fa; border-color: #60a5fa; background: rgba(96,165,250,0.08); }

/* ══════════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(201,168,76,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(201,168,76,0.06) 0%, transparent 50%),
    var(--black-deep);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--sp-16) var(--sp-6);
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
  border: 1px solid rgba(201,168,76,0.3);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-8);
  background: rgba(201,168,76,0.06);
}
.hero-eyebrow::before { content: '⬡'; font-size: 0.8em; }

.hero-title {
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: var(--fw-extrabold);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: var(--sp-6);
}
.hero-title .gold-word { color: var(--gold-primary); }
.hero-title .thin-word { font-weight: var(--fw-light); color: var(--white-70); }

.hero-subtitle {
  font-size: clamp(var(--fs-lg), 2.5vw, var(--fs-2xl));
  color: var(--text-secondary);
  max-width: 64ch;
  margin: 0 auto var(--sp-10);
  line-height: var(--lh-loose);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: center;
  margin-bottom: var(--sp-16);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-8);
  justify-content: center;
  padding-top: var(--sp-10);
  border-top: 1px solid var(--black-border);
}
.hero-stat { text-align: center; }
.hero-stat-num {
  display: block;
  font-size: clamp(var(--fs-2xl), 3vw, var(--fs-4xl));
  font-weight: var(--fw-extrabold);
  color: var(--gold-primary);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: var(--sp-1);
}
.hero-stat-label {
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════════
   TICKER / MARQUEE
══════════════════════════════════════════════════════════════ */
.ticker-wrap {
  overflow: hidden;
  background: var(--black-rich);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  padding: var(--sp-3) 0;
}
.ticker-inner {
  display: flex;
  gap: var(--sp-8);
  animation: ticker 40s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  white-space: nowrap;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  font-weight: var(--fw-medium);
}
.ticker-item span { color: var(--gold-primary); }
.ticker-sep { color: var(--gold-muted); }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════════
   PILLARS SECTION
══════════════════════════════════════════════════════════════ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-5);
}

.pillar-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  position: relative;
  overflow: hidden;
  transition: all var(--dur-slow) var(--ease-out);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  opacity: 0;
  transition: opacity var(--dur-base);
}
.pillar-card:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), var(--shadow-gold);
  transform: translateY(-6px);
}
.pillar-card:hover::before { opacity: 1; }

.pillar-num {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.15em;
  color: var(--gold-muted);
  margin-bottom: var(--sp-4);
}
.pillar-icon {
  font-size: 2rem;
  margin-bottom: var(--sp-4);
  display: block;
}
.pillar-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--white);
  margin-bottom: var(--sp-3);
}
.pillar-desc {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: var(--lh-loose);
  margin-bottom: 0;
}
.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--gold-primary);
}
.pillar-link::after { content: '→'; transition: transform var(--dur-fast); }
.pillar-card:hover .pillar-link::after { transform: translateX(4px); }

/* ══════════════════════════════════════════════════════════════
   PHYGITAL SECTION
══════════════════════════════════════════════════════════════ */
.phygital-section {
  background: var(--black-rich);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
}
.phygital-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
@media (max-width: 768px) { .phygital-split { grid-template-columns: 1fr; gap: var(--sp-10); } }

.phygital-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phygital-logo-wrap {
  position: relative;
  width: 260px; height: 260px;
  display: flex; align-items: center; justify-content: center;
}
.phygital-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.15), transparent 70%);
  animation: pulse-glow 4s ease-in-out infinite;
}
.phygital-logo-wrap img { width: 180px; height: 180px; object-fit: contain; position: relative; z-index: 1; }

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

.feature-list { list-style: none; margin-top: var(--sp-6); }
.feature-list li {
  display: flex;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--black-border);
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before { content: '✦'; color: var(--gold-primary); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════
   VISION TIMELINE
══════════════════════════════════════════════════════════════ */
.vision-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  position: relative;
}
.vision-timeline::before {
  content: '';
  position: absolute;
  top: 52px; left: calc(16.67% + 16px); right: calc(16.67% + 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-muted), var(--gold-primary));
  opacity: 0.3;
}
@media (max-width: 768px) { .vision-timeline { grid-template-columns: 1fr; } .vision-timeline::before { display: none; } }

.vision-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  text-align: center;
  position: relative;
  transition: all var(--dur-base);
}
.vision-card:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.vision-year {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-extrabold);
  color: var(--gold-primary);
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: var(--sp-2);
}
.vision-phase {
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: var(--sp-4);
}
.vision-heading { font-size: var(--fs-lg); font-weight: var(--fw-bold); color: var(--white); margin-bottom: var(--sp-3); }
.vision-desc { font-size: var(--fs-sm); color: var(--text-secondary); line-height: var(--lh-loose); margin-bottom: 0; }

/* ══════════════════════════════════════════════════════════════
   NEP COMPLIANCE BANNER
══════════════════════════════════════════════════════════════ */
.nep-banner {
  background: linear-gradient(135deg, rgba(74,222,128,0.06), rgba(201,168,76,0.06));
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.nep-icon { font-size: 2.5rem; flex-shrink: 0; }
.nep-content h3 { font-size: var(--fs-xl); color: var(--white); margin-bottom: var(--sp-2); }
.nep-content p { color: var(--text-secondary); margin-bottom: 0; font-size: var(--fs-sm); }
.nep-badges { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-3); }

/* ══════════════════════════════════════════════════════════════
   PLATFORM CTA
══════════════════════════════════════════════════════════════ */
.cta-section {
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,168,76,0.08), transparent);
  text-align: center;
  padding: var(--sp-32) 0;
}
.cta-title {
  font-size: clamp(var(--fs-3xl), 5vw, var(--fs-6xl));
  font-weight: var(--fw-extrabold);
  margin-bottom: var(--sp-6);
  letter-spacing: -0.03em;
}
.cta-desc {
  font-size: var(--fs-xl);
  color: var(--text-secondary);
  max-width: 52ch;
  margin: 0 auto var(--sp-10);
}
.cta-platform-note {
  margin-top: var(--sp-6);
  font-size: var(--fs-sm);
  color: var(--text-muted);
}
.cta-platform-note a { color: var(--gold-primary); }

/* ══════════════════════════════════════════════════════════════
   FORMS
══════════════════════════════════════════════════════════════ */
.form-group { margin-bottom: var(--sp-5); }
.form-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
}
.form-label .required { color: var(--gold-primary); margin-left: 2px; }

.form-control {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  background: var(--black-hover);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  outline: none;
  -webkit-appearance: none;
}
.form-control::placeholder { color: var(--text-muted); }
.form-control:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-control:invalid:not(:placeholder-shown) { border-color: #ef4444; }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 120px; }

.form-hint { font-size: var(--fs-xs); color: var(--text-muted); margin-top: var(--sp-1); }
.form-error { font-size: var(--fs-xs); color: #ef4444; margin-top: var(--sp-1); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

/* Alert */
.alert {
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-5);
  border: 1px solid;
}
.alert-success { background: rgba(74,222,128,0.08); border-color: rgba(74,222,128,0.3); color: #4ade80; }
.alert-error   { background: rgba(239,68,68,0.08);  border-color: rgba(239,68,68,0.3);  color: #f87171; }
.alert-info    { background: rgba(96,165,250,0.08); border-color: rgba(96,165,250,0.3); color: #60a5fa; }

/* ══════════════════════════════════════════════════════════════
   PAGE HEADER (inner pages)
══════════════════════════════════════════════════════════════ */
.page-header {
  padding: calc(var(--nav-height) + var(--sp-16)) 0 var(--sp-16);
  background:
    radial-gradient(ellipse 60% 40% at 50% -10%, rgba(201,168,76,0.1), transparent 60%),
    var(--black-deep);
  border-bottom: 1px solid var(--black-border);
  text-align: center;
}
.page-header-breadcrumb {
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
}
.page-header-breadcrumb a { color: var(--gold-primary); }
.page-header-breadcrumb span { margin: 0 var(--sp-2); }
.page-header h1 { margin-bottom: var(--sp-4); }
.page-header .lead {
  font-size: var(--fs-xl);
  color: var(--text-secondary);
  max-width: 60ch;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer-platform-bar {
  background: rgba(201,168,76,0.06);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: var(--sp-3) 0;
  text-align: center;
}
.footer-platform-bar p { font-size: var(--fs-sm); color: var(--text-secondary); margin: 0; }
.footer-platform-bar .platform-bar-label { color: var(--white-70); }
.footer-platform-bar .platform-bar-link { color: var(--gold-primary); font-weight: var(--fw-semibold); }

.footer-main {
  background: var(--black-rich);
  border-top: 1px solid var(--black-border);
  padding: var(--sp-16) 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--sp-10);
}
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

.footer-brand img.nav-logo { width: 52px; height: 52px; }
.footer-tagline {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--white);
  margin: var(--sp-4) 0 var(--sp-2);
  line-height: 1.4;
}
.footer-org { font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: var(--sp-4); }
.footer-badges { display: flex; flex-wrap: wrap; gap: var(--sp-2); }

.footer-heading {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: var(--sp-4);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: var(--sp-2); }
.footer-col a {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  transition: color var(--dur-fast);
}
.footer-col a:hover { color: var(--gold-primary); }

.footer-wordmark { height: 32px; width: auto; margin-top: var(--sp-2); }

.footer-social {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--black-border);
  color: var(--text-secondary);
  transition: background var(--dur-fast), color var(--dur-fast);
}
.footer-social a:hover { background: rgba(201,168,76,0.15); color: var(--gold-primary); }

.footer-bottom {
  background: var(--black-deep);
  border-top: 1px solid var(--black-border);
  padding: var(--sp-6) 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  flex-wrap: wrap;
  margin-bottom: var(--sp-3);
}
.footer-copy { font-size: var(--fs-xs); color: var(--text-muted); margin: 0; }
.footer-legal-nav { display: flex; gap: var(--sp-4); flex-wrap: wrap; }
.footer-legal-nav a { font-size: var(--fs-xs); color: var(--text-muted); }
.footer-legal-nav a:hover { color: var(--gold-primary); }
.footer-compliance {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  margin: 0;
  text-align: center;
  opacity: 0.7;
}

/* ══════════════════════════════════════════════════════════════
   SEARCH BAR
══════════════════════════════════════════════════════════════ */
.search-bar-wrap {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}
.search-bar {
  width: 100%;
  padding: var(--sp-4) var(--sp-6) var(--sp-4) var(--sp-12);
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-full);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  outline: none;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.search-bar:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.search-icon {
  position: absolute;
  left: var(--sp-4);
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; --section-pad: var(--sp-16); }
  .hero-content { padding: var(--sp-10) var(--sp-4); }
  .hero-stats { gap: var(--sp-6); }
  .hero-actions { gap: var(--sp-3); }
  .hero-actions .btn { width: 100%; max-width: 280px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Utility ─────────────────────────────────────────────────── */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.mt-8  { margin-top: var(--sp-8); }
.mt-10 { margin-top: var(--sp-10); }
.mb-8  { margin-bottom: var(--sp-8); }
.pt-section { padding-top: var(--section-pad); }
.pb-section { padding-bottom: var(--section-pad); }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-4 { gap: var(--sp-4); }

/* FORCE BLUE THEME */
*[style*="gold"],
*[style*="#b8860b"],
*[style*="#d4a017"] {
  color: #3b82f6 !important;
  border-color: #3b82f6 !important;
  background-color: #3b82f6 !important;
}
