/* ================================================================
   iViRTH / TGIC — Design System v5.0
   The Great Indian Campus | Phygital Civilization
   Color Philosophy: Midnight Black · Starlight White · Metallic Gold
   Typography: DM Sans + DM Mono
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,200;0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,300;1,9..40,400&family=DM+Mono:wght@300;400;500&display=swap');

/* ── CSS VARIABLES ──────────────────────────────────────────── */
:root {
  /* Metallic Gold Palette */
  --gold:           #C9A84C;
  --gold-light:     #E8C96A;
  --gold-lighter:   #F5DFA0;
  --gold-dark:      #9E7A28;
  --gold-deep:      #6B4F10;
  --gold-dim:       rgba(201,168,76,0.08);
  --gold-border:    rgba(201,168,76,0.20);
  --gold-glow:      rgba(201,168,76,0.30);
  --gold-glow-lg:   rgba(201,168,76,0.12);
  --gold-gradient:  linear-gradient(135deg, #C9A84C 0%, #E8C96A 40%, #F5DFA0 60%, #C9A84C 100%);
  --gold-metallic:  linear-gradient(135deg, #9E7A28 0%, #C9A84C 25%, #F5DFA0 50%, #E8C96A 75%, #9E7A28 100%);

  /* Base — Black & White */
  --bg:             #000000;
  --bg-1:           #030303;
  --bg-2:           #080808;
  --bg-3:           #0f0f0f;
  --bg-4:           #161616;
  --bg-5:           #1c1c1c;
  --bg-6:           #242424;
  --bg-card:        #0a0a0a;
  --bg-elevated:    #111111;

  --fg:             #FFFFFF;
  --fg-90:          rgba(255,255,255,0.90);
  --fg-70:          rgba(255,255,255,0.70);
  --fg-50:          rgba(255,255,255,0.50);
  --fg-30:          rgba(255,255,255,0.30);
  --fg-20:          rgba(255,255,255,0.20);
  --fg-10:          rgba(255,255,255,0.10);
  --fg-05:          rgba(255,255,255,0.05);

  /* Extra fg aliases */
  --fg-40:          rgba(255,255,255,0.40);
  --fg-60:          rgba(255,255,255,0.60);
  --fg-80:          rgba(255,255,255,0.80);
  --fg-muted:       rgba(255,255,255,0.40);

  --border:         rgba(255,255,255,0.08);
  --border-mid:     rgba(255,255,255,0.12);
  --border-bright:  rgba(255,255,255,0.20);

  /* Typography */
  --font:           'DM Sans', system-ui, sans-serif;
  --mono:           'DM Mono', 'Fira Mono', monospace;

  /* Spacing & Geometry */
  --radius-sm:      6px;
  --radius:         10px;
  --radius-md:      14px;
  --radius-lg:      20px;
  --radius-xl:      28px;
  --radius-full:    999px;

  --nav-h:          70px;
  --sidebar-w:      60px;
  --announce-h:     42px;
  --transition:     0.22s ease;
  --transition-md:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-lg:  0.55s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm:      0 2px 12px rgba(0,0,0,0.6);
  --shadow-md:      0 8px 32px rgba(0,0,0,0.7);
  --shadow-lg:      0 20px 60px rgba(0,0,0,0.8);
  --shadow-gold:    0 0 24px var(--gold-glow), 0 0 48px rgba(201,168,76,0.10);
  --shadow-gold-lg: 0 0 40px var(--gold-glow), 0 0 80px rgba(201,168,76,0.08);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── LAYOUT UTILITIES ───────────────────────────────────────── */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 860px; margin: 0 auto; padding: 0 32px; }
.wrap-wide { max-width: 1440px; margin: 0 auto; padding: 0 32px; }

/* ── GOLD TEXT UTILITY ──────────────────────────────────────── */
.gold { color: var(--gold); }
.gold-gradient-text {
  background: var(--gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── ANNOUNCE BAR ────────────────────────────────────────────── */
.announce-bar {
  background: var(--bg-3);
  border-bottom: 1px solid var(--gold-border);
  height: var(--announce-h);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}
.announce-bar.hidden { transform: translateY(-100%); }
.announce-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}
.announce-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fg-70);
}
.announce-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.announce-right { display: flex; align-items: center; gap: 12px; }
.announce-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  padding: 4px 10px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.announce-link:hover { background: var(--gold-dim); }
.announce-close {
  color: var(--fg-50); font-size: 0.8rem; padding: 4px 8px;
  transition: var(--transition);
}
.announce-close:hover { color: var(--fg); }

/* ── HELIX SIDEBAR ───────────────────────────────────────────── */
.helix-sidebar {
  position: fixed;
  left: 0;
  top: calc(var(--announce-h) + var(--nav-h));
  bottom: 0;
  width: var(--sidebar-w);
  background: var(--bg-2);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  gap: 6px;
  z-index: 900;
}
.hs-bindu {
  font-size: 1.3rem;
  color: var(--gold);
  cursor: pointer;
  padding: 10px;
  border-radius: var(--radius);
  transition: var(--transition);
  margin-bottom: 4px;
  text-shadow: var(--shadow-gold);
}
.hs-bindu:hover { background: var(--gold-dim); transform: scale(1.1); }
.hs-divider { width: 24px; height: 1px; background: var(--border); margin: 6px 0; }
.hs-sphere {
  position: relative;
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  color: var(--fg-50);
  font-size: 1rem;
}
.hs-sphere:hover { background: var(--bg-4); color: var(--gold); }
.hs-tooltip {
  position: absolute;
  left: calc(100% + 10px);
  background: var(--bg-5);
  border: 1px solid var(--gold-border);
  color: var(--fg-90);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 9999;
}
.hs-sphere:hover .hs-tooltip { opacity: 1; }
.hs-passport {
  margin-top: auto;
  width: 36px; height: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--gold-border);
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}
.hs-passport:hover { background: var(--gold); color: #000; box-shadow: var(--shadow-gold); }

/* ── TOP NAVIGATION ──────────────────────────────────────────── */
.topnav {
  position: fixed;
  top: var(--announce-h);
  left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: var(--transition);
}
.topnav.scrolled { background: rgba(0,0,0,0.97); border-bottom-color: var(--gold-border); }
.topnav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px 0 calc(var(--sidebar-w) + 24px);
  max-width: 100%;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-hex {
  color: var(--gold);
  display: flex;
  align-items: center;
}
.brand-hex svg polygon { stroke: var(--gold); }
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--fg);
  line-height: 1;
}
.brand-sub {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--fg-50);
  line-height: 1;
  margin-top: 3px;
}

.topnav-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-item { position: relative; }
.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--fg-70);
  padding: 8px 14px;
  transition: var(--transition);
  display: block;
}
.nav-link:hover,
.nav-link.active { color: var(--fg); }
.nav-link.active { color: var(--gold); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg-3);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 200px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: var(--transition);
  z-index: 9999;
  box-shadow: var(--shadow-md);
}
.nav-item:hover .nav-dropdown { opacity: 1; transform: translateY(0); pointer-events: all; }
.nav-dropdown a {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--fg-70);
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-dropdown a:hover { background: var(--bg-5); color: var(--gold); }
.topnav-actions { display: flex; align-items: center; gap: 8px; }
.nav-helix-btn {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  padding: 8px 16px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.nav-helix-btn:hover { background: var(--gold); color: #000; }
.nav-cta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #000;
  padding: 8px 18px;
  background: var(--gold-gradient);
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.nav-cta:hover { opacity: 0.9; box-shadow: var(--shadow-gold); }
.nav-mobile-btn {
  display: none;
  color: var(--fg); font-size: 1.2rem; padding: 8px;
}

/* ── LOADER ──────────────────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
#loader.out { opacity: 0; pointer-events: none; transition: opacity 0.5s ease; }
.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.loader-hex-wrap {
  width: 60px; height: 60px;
  color: var(--gold);
  animation: hexSpin 2s ease-in-out infinite;
}
@keyframes hexSpin {
  0%   { transform: rotate(0deg) scale(1); }
  33%  { transform: rotate(60deg) scale(1.05); }
  66%  { transform: rotate(120deg) scale(0.95); }
  100% { transform: rotate(180deg) scale(1); }
}
.loader-hex-svg { width: 100%; height: 100%; }
.loader-hex-poly { stroke: var(--gold); }
.loader-brand {
  font-family: var(--mono);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  background: var(--gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.loader-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--fg-50);
  text-transform: uppercase;
}
.loader-bar {
  width: 200px; height: 1px;
  background: var(--border);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: var(--gold-gradient);
  border-radius: var(--radius-full);
  width: 0;
  animation: loadFill 2.5s ease-in-out forwards;
}
@keyframes loadFill { to { width: 100%; } }
.loader-status {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--fg-30);
  letter-spacing: 0.08em;
}

/* ── PAGE OFFSET ─────────────────────────────────────────────── */
main {
  padding-top: calc(var(--announce-h) + var(--nav-h));
  padding-left: var(--sidebar-w);
}
body.ready main {
  padding-top: calc(var(--announce-h) + var(--nav-h));
  padding-left: var(--sidebar-w);
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-full);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-lg { font-size: 0.88rem; padding: 14px 28px; }
.btn-md { font-size: 0.82rem; padding: 10px 22px; }
.btn-sm { font-size: 0.74rem; padding: 7px 14px; }
.btn-xs { font-size: 0.68rem; padding: 5px 10px; }

.btn-solid {
  background: var(--gold-gradient);
  color: #000;
  border: 1px solid transparent;
}
.btn-solid:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border);
}
.btn-outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}
.btn-ghost {
  background: transparent;
  color: var(--fg-70);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--border-bright); color: var(--fg); }
.btn-white {
  background: var(--fg);
  color: #000;
  border: 1px solid transparent;
}
.btn-white:hover { box-shadow: 0 0 24px rgba(255,255,255,0.2); }
.btn-outline-inv {
  background: transparent;
  color: var(--fg-90);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline-inv:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }
.btn-arrow { transition: transform 0.2s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ── SECTION HEADERS ─────────────────────────────────────────── */
.section-label {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.section-h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.section-lead {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--fg-50);
  max-width: 560px;
  margin-top: 14px;
}
.section-hd {
  margin-bottom: 48px;
}

/* ── REVEAL ANIMATIONS ───────────────────────────────────────── */
.r {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.r.visible { opacity: 1; transform: none; }
.r-d1 { transition-delay: 0.08s; }
.r-d2 { transition-delay: 0.16s; }
.r-d3 { transition-delay: 0.24s; }
.r-d4 { transition-delay: 0.32s; }
.r-d5 { transition-delay: 0.40s; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: #000;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.5;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-pulse-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40px;
  background: rgba(0,0,0,0.8);
  border-bottom: 1px solid var(--gold-border);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.pulse-ticker { overflow: hidden; width: 100%; }
.pulse-ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tick-item {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 20px;
  border-right: 1px solid var(--border);
}
.tick-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 400;
  color: var(--fg-50);
  letter-spacing: 0.08em;
}
.tick-val {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--fg-90);
}
.tick-up { color: var(--gold); font-size: 0.62rem; }
.tick-down { color: var(--fg-50); font-size: 0.62rem; }

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.badge-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--fg-50);
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
}
.pulse-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 2s ease-in-out infinite;
}
.badge-sep { color: var(--fg-30); }
.badge-loc {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--fg-50);
  letter-spacing: 0.08em;
}
.hero-h1 {
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-italic {
  font-style: italic;
  font-weight: 300;
  background: var(--gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 100%;
  animation: goldShimmer 4s ease-in-out infinite;
}
@keyframes goldShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-lead {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.75;
  color: var(--fg-70);
  max-width: 580px;
  margin-bottom: 36px;
}
.hero-lead strong { color: var(--fg); font-weight: 600; }
.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-footnote {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--fg-40);
  letter-spacing: 0.06em;
}
.fn-dot { color: var(--fg-20); }
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }
.scroll-label {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: var(--fg-30);
  transform: rotate(90deg);
}
.hero-corner-text {
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--fg-20);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* ── MARQUEE ─────────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  background: var(--bg-2);
  padding: 14px 0;
}
.marquee-track { overflow: hidden; }
.marquee-inner {
  display: flex;
  align-items: center;
  gap: 0;
  animation: marqueeScroll 40s linear infinite;
  width: max-content;
}
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-inner span {
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--fg-50);
  padding: 0 18px;
}
.marquee-inner .dot { color: var(--gold); opacity: 0.6; padding: 0 4px; }

/* ── STATS SECTION ───────────────────────────────────────────── */
.stats-section { padding: 80px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  background: var(--bg-card);
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: var(--transition);
}
.stat-item:hover::after { transform: scaleX(1); }
.stat-item:hover { background: var(--bg-3); }
.stat-val {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat-unit {
  font-size: 0.55em;
  font-weight: 600;
  vertical-align: super;
  background: var(--gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--fg-50);
  line-height: 1.4;
  letter-spacing: 0.01em;
}

/* ── DNA SECTION ─────────────────────────────────────────────── */
.dna-section { padding: 100px 0; background: var(--bg-1); }
.dna-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dna-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  transition: var(--transition-md);
  position: relative;
  overflow: hidden;
  display: block;
}
.dna-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, var(--gold-dim), transparent 60%);
  opacity: 0;
  transition: var(--transition-md);
}
.dna-card:hover { border-color: var(--gold-border); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.dna-card:hover::before { opacity: 1; }
.dna-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 20px;
  line-height: 1;
}
.dna-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--fg-40);
  margin-bottom: 8px;
}
.dna-title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 14px;
}
.dna-desc {
  font-size: 0.87rem;
  line-height: 1.75;
  color: var(--fg-50);
  margin-bottom: 24px;
}
.dna-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.dna-link:hover { text-decoration: underline; }

/* ── VISION STRIP ─────────────────────────────────────────────── */
.vision-strip {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-card) 100%);
}
.vision-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.vision-quote {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--fg-80);
  max-width: 700px;
  position: relative;
  padding-left: 32px;
}
.vision-quote::before {
  content: '';
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 2px;
  background: var(--gold-gradient);
  border-radius: var(--radius-full);
}
.vision-open {
  font-size: 3em;
  line-height: 0;
  vertical-align: -0.4em;
  color: var(--gold);
  opacity: 0.5;
  margin-right: 4px;
}
.vision-meta { display: flex; flex-direction: column; gap: 14px; flex-shrink: 0; }
.vision-source {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--fg-40);
}

/* ── VISE LIVE DASHBOARD ──────────────────────────────────────── */
.vise-dashboard { padding: 100px 0; }
.vise-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.vise-live-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
  padding: 6px 14px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-full);
  background: var(--gold-dim);
}
.vise-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 1.5s ease-in-out infinite;
}
.vise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.vise-metric {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.vise-metric::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-gradient);
}
.vise-metric:hover { border-color: var(--gold-border); box-shadow: var(--shadow-gold); }
.vm-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--fg-40);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.vm-val {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 10px;
}
.vm-desc {
  font-size: 0.78rem;
  color: var(--fg-40);
  line-height: 1.5;
  margin-bottom: 12px;
}
.vm-delta { font-family: var(--mono); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.06em; }
.vm-up { color: var(--gold); }
.vm-down { color: var(--fg-40); }

/* ── miniON COMMAND ───────────────────────────────────────────── */
.minion-section { padding: 100px 0; background: var(--bg-1); }
.minion-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.minion-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
}
.minion-dots { display: flex; gap: 6px; }
.minion-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border-mid);
}
.minion-dot:first-child { background: rgba(255,80,80,0.6); }
.minion-dot:nth-child(2) { background: rgba(255,180,0,0.6); }
.minion-dot:last-child { background: rgba(0,200,80,0.6); }
.minion-title {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--fg-40);
  letter-spacing: 0.1em;
  flex: 1;
  text-align: center;
}
.minion-body {
  padding: 20px;
  min-height: 200px;
  max-height: 320px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.minion-line { display: flex; gap: 10px; align-items: flex-start; }
.minion-prompt {
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  flex-shrink: 0;
}
.minion-out {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--fg-70);
  line-height: 1.6;
}
.minion-green { color: #4dbb77; }
.minion-gold { color: var(--gold); }
.minion-input-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--bg-3);
  border-top: 1px solid var(--border);
}
.minion-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--fg);
  caret-color: var(--gold);
}
.minion-input::placeholder { color: var(--fg-30); }
.minion-send {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #000;
  background: var(--gold-gradient);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.minion-send:hover { box-shadow: var(--shadow-gold); }

/* ── BEEHIVE GRID ─────────────────────────────────────────────── */
.beehive-section { padding: 100px 0; }
.beehive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.beehive-cell {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition-md);
  position: relative;
  overflow: hidden;
  display: block;
  clip-path: none;
}
.beehive-cell:nth-child(5),
.beehive-cell:nth-child(6),
.beehive-cell:nth-child(7) {
  grid-column: span 1;
}
.beehive-cell:nth-child(7) { grid-column: 2; }
.beehive-cell::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition-md);
  z-index: -1;
}
.beehive-cell:hover { transform: translateY(-4px); border-color: transparent; box-shadow: var(--shadow-gold); }
.beehive-cell:hover::before { opacity: 0.15; }
.beehive-cell:hover .beehive-icon { color: var(--gold); }
.beehive-icon { font-size: 1.8rem; color: var(--fg-30); margin-bottom: 12px; transition: var(--transition); }
.beehive-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--fg-30);
  margin-bottom: 6px;
}
.beehive-title { font-size: 0.85rem; font-weight: 600; color: var(--fg-80); line-height: 1.3; }

/* ── HQI 9 DIMENSIONS ────────────────────────────────────────── */
.hqi-section { padding: 100px 0; background: var(--bg-1); }
.hqi-intro {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}
.hqi-dimensions-list { display: flex; flex-direction: column; gap: 10px; }
.hqi-dim {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.hqi-dim:hover { border-color: var(--gold-border); background: var(--bg-3); }
.hqi-dim-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--dim-color, var(--gold));
  flex-shrink: 0;
}
.hqi-dim-abbr {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--dim-color, var(--gold));
  width: 36px;
  flex-shrink: 0;
}
.hqi-dim-name { flex: 1; font-size: 0.82rem; color: var(--fg-70); }
.hqi-dim-score {
  font-family: var(--mono);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fg);
}
.hqi-radar-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
}
.hqi-radar-canvas { max-width: 320px; max-height: 320px; }

/* ── HPC 2.0 ──────────────────────────────────────────────────── */
.hpc-section { padding: 100px 0; }
.hpc-card-wrap { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.hpc-card {
  background: #000;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}
.hpc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, var(--gold-dim), transparent);
}
.hpc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
}
.hpc-identity { display: flex; align-items: center; gap: 14px; }
.hpc-avatar {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
}
.hpc-name { font-size: 0.95rem; font-weight: 700; color: var(--fg); }
.hpc-id { font-family: var(--mono); font-size: 0.62rem; color: var(--fg-40); margin-top: 2px; letter-spacing: 0.06em; }
.hpc-badge { text-align: right; }
.hpc-ev-label { font-family: var(--mono); font-size: 0.55rem; color: var(--fg-40); letter-spacing: 0.1em; margin-bottom: 4px; }
.hpc-ev-val {
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hpc-ev-unit { font-size: 0.6em; }
.hpc-dims {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 6px;
  margin-bottom: 24px;
  position: relative;
}
.hpc-dim-chip {
  text-align: center;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 4px;
}
.hpc-dim-val { font-size: 0.88rem; font-weight: 700; }
.hpc-dim-lbl { font-family: var(--mono); font-size: 0.52rem; color: var(--fg-40); margin-top: 2px; }
.hpc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  position: relative;
}
.hpc-footer-label { font-family: var(--mono); font-size: 0.58rem; color: var(--fg-30); letter-spacing: 0.06em; }
.hpc-helix-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 0.62rem;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}
.hpc-hex { font-size: 0.8rem; }
.hpc-swipe-hint { font-family: var(--mono); font-size: 0.68rem; color: var(--fg-30); letter-spacing: 0.08em; }

/* ── PATHWAYS MAP ─────────────────────────────────────────────── */
.pathways-section { padding: 100px 0; background: var(--bg-1); }
.pathway-line {
  position: relative;
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pathway-line::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.pathway-node {
  position: relative;
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  transition: var(--transition);
}
.pathway-node:hover { border-color: var(--gold-border); }
.pathway-node:last-child { margin-bottom: 0; }
.pathway-dot {
  position: absolute;
  left: -32px;
  top: 32px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid #000;
  box-shadow: 0 0 0 3px var(--gold-border);
}
.pathway-step { font-family: var(--mono); font-size: 0.62rem; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 6px; }
.pathway-title { font-size: 1.1rem; font-weight: 700; color: var(--fg); margin-bottom: 8px; }
.pathway-desc { font-size: 0.85rem; color: var(--fg-50); line-height: 1.65; }

/* ── PROTOTYPE GALLERY ──────────────────────────────────────── */
.proto-section { padding: 100px 0; }
.proto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.proto-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition-md);
  display: block;
}
.proto-card:hover { border-color: var(--gold-border); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.proto-thumb {
  height: 180px;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--fg-10);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.proto-card:hover .proto-thumb { color: var(--gold); background: var(--gold-dim); }
.proto-body { padding: 24px; }
.proto-domain { font-family: var(--mono); font-size: 0.62rem; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 8px; }
.proto-title { font-size: 1rem; font-weight: 700; color: var(--fg); margin-bottom: 8px; line-height: 1.3; }
.proto-meta { font-size: 0.75rem; color: var(--fg-40); margin-bottom: 12px; }
.proto-badge {
  display: inline-flex;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: var(--gold-dim);
}

/* ── MANTHAN WORKSPACE ──────────────────────────────────────── */
.manthan-section { padding: 100px 0; background: var(--bg-1); }
.manthan-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
.manthan-terminal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.mt-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
}
.mt-title {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--fg-50);
  letter-spacing: 0.1em;
}
.mt-status { font-family: var(--mono); font-size: 0.62rem; color: var(--gold); }
.mt-body { padding: 16px 20px; display: flex; flex-direction: column; gap: 10px; }
.mt-task {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--fg-60);
}
.mt-task:last-child { border-bottom: none; }
.mt-check {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--fg-30);
  width: 20px;
  flex-shrink: 0;
  text-align: center;
}
.mt-check.done { color: var(--gold); }
.mt-task-name { flex: 1; }
.mt-task-pts {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--gold);
  white-space: nowrap;
}

/* ── iON TUTOR ───────────────────────────────────────────────── */
.ion-tutor-section { padding: 100px 0; }
.ion-chat-wrap {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ion-chat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-3);
}
.ion-avatar {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
}
.ion-chat-name { font-size: 0.9rem; font-weight: 600; color: var(--fg); }
.ion-status-text { font-family: var(--mono); font-size: 0.62rem; color: var(--gold); margin-top: 3px; letter-spacing: 0.06em; }
.ion-chat-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
}
.ion-msg { display: flex; }
.ion-msg.user { justify-content: flex-end; }
.ion-msg-bubble {
  max-width: 80%;
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  font-size: 0.85rem;
  line-height: 1.65;
}
.ion-msg.ion .ion-msg-bubble {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--fg-80);
}
.ion-msg.user .ion-msg-bubble {
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--fg);
}
.ion-typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 4px 0;
}
.ion-typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: typingPulse 1.4s ease-in-out infinite;
}
.ion-typing span:nth-child(2) { animation-delay: 0.2s; }
.ion-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingPulse { 0%,80%,100%{opacity:0.3} 40%{opacity:1} }

/* ── HELIX CARD SECTION ──────────────────────────────────────── */
.helix-card-section { padding: 100px 0; background: var(--bg-1); }
.helix-card-section .two-col,
.helix-card-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.helix-card-demo { display: flex; justify-content: center; }
.helix-card {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1710 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 28px;
  width: 340px;
  box-shadow: var(--shadow-gold-lg);
  position: relative;
  overflow: hidden;
  animation: cardFloat 4s ease-in-out infinite;
}
@keyframes cardFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.helix-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(201,168,76,0.06), transparent);
}
.hc-hex-pattern {
  font-size: 0.8rem;
  color: var(--gold);
  opacity: 0.25;
  letter-spacing: 4px;
  margin-bottom: 16px;
  position: relative;
}
.hc-logo {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  background: var(--gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  position: relative;
}
.hc-id {
  font-family: var(--mono);
  font-size: 0.55rem;
  color: var(--fg-30);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  position: relative;
}
.hc-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  position: relative;
}
.hc-program {
  font-size: 0.72rem;
  color: var(--fg-50);
  margin-bottom: 20px;
  position: relative;
}
.hc-dims-row {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}
.hc-dim { text-align: center; }
.hc-dim-v { font-size: 1rem; font-weight: 800; margin-bottom: 2px; }
.hc-dim-l { font-family: var(--mono); font-size: 0.58rem; color: var(--fg-40); }
.hc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--gold-border);
  position: relative;
}
.hc-ev { display: flex; flex-direction: column; gap: 2px; }
.hc-ev-v {
  font-size: 0.88rem;
  font-weight: 700;
  background: var(--gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hc-ev span:last-child { font-family: var(--mono); font-size: 0.55rem; color: var(--fg-30); }
.hc-sync {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 0.58rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.hc-sync-pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 1.5s ease-in-out infinite;
}

/* ── SPOTLIGHT RESEARCH ──────────────────────────────────────── */
.spotlight-section { padding: 100px 0; }
.spot-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 20px; }
.spot-main {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  transition: var(--transition-md);
  display: block;
}
.spot-main:hover { border-color: var(--gold-border); box-shadow: var(--shadow-gold); }
.spot-domain { font-family: var(--mono); font-size: 0.62rem; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 14px; }
.spot-title { font-size: 1.5rem; font-weight: 700; color: var(--fg); line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.02em; }
.spot-excerpt { font-size: 0.87rem; color: var(--fg-50); line-height: 1.75; margin-bottom: 24px; }
.spot-link { font-size: 0.8rem; font-weight: 600; color: var(--gold); }
.spot-side { display: flex; flex-direction: column; gap: 12px; }
.spot-sm {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  flex: 1;
  transition: var(--transition);
  display: block;
}
.spot-sm:hover { border-color: var(--gold-border); }
.spot-sm-title { font-size: 0.95rem; font-weight: 600; color: var(--fg); margin-bottom: 6px; }
.spot-sm-lead { font-size: 0.78rem; color: var(--fg-40); line-height: 1.5; margin-bottom: 10px; }
.spot-link-sm { font-size: 0.75rem; color: var(--gold); }

/* ── COUNCILS ─────────────────────────────────────────────────── */
.councils-section { padding: 100px 0; background: var(--bg-1); }
.council-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.council-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  transition: var(--transition-md);
}
.council-card:hover { border-color: var(--gold-border); transform: translateY(-4px); }
.council-glyph { font-size: 2rem; color: var(--gold); margin-bottom: 16px; }
.council-name {
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--fg);
  margin-bottom: 4px;
}
.council-portfolio { font-size: 0.75rem; color: var(--gold); margin-bottom: 14px; letter-spacing: 0.04em; }
.council-desc { font-size: 0.83rem; color: var(--fg-50); line-height: 1.7; margin-bottom: 20px; }
.council-link { font-size: 0.78rem; font-weight: 600; color: var(--gold); }

/* ── MOVEMENTS ────────────────────────────────────────────────── */
.movements-section { padding: 100px 0; }
.movements-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.mov-pill {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  transition: var(--transition);
}
.mov-pill:hover { border-color: var(--gold-border); background: var(--bg-3); }
.mov-abbr {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.mov-name { font-size: 0.75rem; color: var(--fg-50); line-height: 1.4; }

/* ── PARTNERS ─────────────────────────────────────────────────── */
.partners-section { padding: 80px 0; background: var(--bg-1); }
.partner-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 40px;
}
.pl-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 14px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fg-50);
  transition: var(--transition);
  line-height: 1.3;
}
.pl-item:hover { border-color: var(--gold-border); color: var(--gold); background: var(--bg-3); }

/* ── EXPLORE GRID ─────────────────────────────────────────────── */
.explore-section { padding: 100px 0; }
.explore-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.explore-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: var(--transition-md);
  display: block;
}
.explore-card:hover { border-color: var(--gold-border); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.ec-icon { font-size: 1.6rem; color: var(--fg-20); margin-bottom: 12px; transition: var(--transition); }
.explore-card:hover .ec-icon { color: var(--gold); }
.ec-label { font-family: var(--mono); font-size: 0.62rem; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 6px; }
.ec-title { font-size: 1rem; font-weight: 700; color: var(--fg); margin-bottom: 8px; }
.ec-desc { font-size: 0.8rem; color: var(--fg-40); line-height: 1.65; margin-bottom: 16px; }
.ec-link { font-size: 0.78rem; font-weight: 600; color: var(--gold); }

/* ── CTA BAND ─────────────────────────────────────────────────── */
.cta-band {
  padding: 100px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, var(--gold-dim), transparent);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
}
.cta-text { max-width: 520px; }
.cta-h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px; }
.cta-lead { font-size: 0.95rem; color: var(--fg-60); line-height: 1.7; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ── FOOTER ───────────────────────────────────────────────────── */
.site-footer {
  padding: 80px 0 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.footer-logo {
  font-family: var(--mono);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  background: var(--gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.footer-tagline { font-size: 0.83rem; color: var(--fg-60); margin-bottom: 12px; line-height: 1.5; }
.footer-reg { font-family: var(--mono); font-size: 0.62rem; color: var(--fg-30); line-height: 1.8; letter-spacing: 0.04em; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.footer-col-hd {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--fg-80);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.8rem;
  color: var(--fg-40);
  padding: 5px 0;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.75rem; color: var(--fg-30); }
.footer-tagline-small {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  opacity: 0.6;
}

/* ── KIOSK BADGE ─────────────────────────────────────────────── */
.kiosk-badge {
  position: fixed;
  bottom: 24px;
  left: calc(var(--sidebar-w) + 20px);
  background: var(--bg-3);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-gold);
  z-index: 800;
  animation: slideUp 0.4s ease;
  max-width: 320px;
}
@keyframes slideUp { from { transform: translateY(24px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.kiosk-icon { font-size: 1.2rem; color: var(--gold); flex-shrink: 0; }
.kiosk-badge > div:nth-child(2) { flex: 1; }
.kiosk-badge > div:nth-child(2) > div:first-child { font-size: 0.8rem; font-weight: 600; color: var(--fg); }
.kiosk-text { font-family: var(--mono); font-size: 0.65rem; color: var(--fg-40); margin-top: 2px; }
.kiosk-close {
  color: var(--fg-30);
  font-size: 0.75rem;
  padding: 4px;
  cursor: pointer;
  flex-shrink: 0;
}
.kiosk-close:hover { color: var(--fg); }

/* ── MOBILE ACTION BAR ───────────────────────────────────────── */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 64px;
  background: rgba(0,0,0,0.95);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(20px);
  z-index: 990;
}
.mab-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 8px;
}
.mab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--fg-40);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: var(--transition);
  flex: 1;
}
.mab-btn.active { color: var(--gold); }
.mab-icon { font-size: 1.1rem; }
.mab-label { font-family: var(--mono); font-size: 0.55rem; letter-spacing: 0.06em; }
.mab-center {
  width: 48px; height: 48px;
  border-radius: var(--radius-full);
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.2rem;
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
}

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, var(--gold-dim), transparent 70%);
  pointer-events: none;
}
.page-hero-label { font-family: var(--mono); font-size: 0.65rem; color: var(--gold); letter-spacing: 0.14em; margin-bottom: 16px; }
.page-hero-h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 20px;
}
.page-hero-lead {
  font-size: 1rem;
  color: var(--fg-50);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 32px;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .vise-grid { grid-template-columns: repeat(2, 1fr); }
  .dna-cards { grid-template-columns: 1fr 1fr; }
  .hqi-intro { grid-template-columns: 1fr; }
  .hqi-radar-wrap { max-width: 300px; margin: 0 auto; }
  .manthan-inner { grid-template-columns: 1fr; }
  .spot-grid { grid-template-columns: 1fr; }
  .movements-grid { grid-template-columns: repeat(4, 1fr); }
  .partner-logos { grid-template-columns: repeat(3, 1fr); }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .beehive-grid { grid-template-columns: repeat(3, 1fr); }
  .beehive-cell:nth-child(7) { grid-column: auto; }
  .helix-card-section .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
  :root { --sidebar-w: 0px; }
  .helix-sidebar { display: none; }
  .topnav-inner { padding-left: 16px; }
  .topnav-links { display: none; }
  .nav-mobile-btn { display: flex; }
  .nav-helix-btn { display: none; }
  .dna-cards { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .vise-grid { grid-template-columns: 1fr; }
  .explore-grid { grid-template-columns: 1fr; }
  .council-grid { grid-template-columns: 1fr; }
  .proto-grid { grid-template-columns: 1fr; }
  .movements-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-logos { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { flex-direction: column; gap: 32px; }
  .vision-inner { flex-direction: column; gap: 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .beehive-grid { grid-template-columns: repeat(2, 1fr); }
  .mobile-action-bar { display: flex; }
  body.ready main { padding-bottom: 80px; }
  .hpc-dims { grid-template-columns: repeat(5, 1fr); }
  /* Helix card two-col → single on mobile */
  .helix-card-section > .wrap > div,
  .helix-card-two-col,
  .helix-card-section .two-col { grid-template-columns: 1fr !important; gap: 40px !important; }
  .helix-card { width: 100%; max-width: 340px; }
  /* Inner page sidebar layout */
  .sidebar-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  /* CTA responsive */
  .cta-btns { flex-direction: column; width: 100%; }
  .cta-btns .btn { justify-content: center; width: 100%; }
  /* Hero mobile */
  .hero-h1 { font-size: clamp(2.8rem, 10vw, 4rem); }
  .hero-corner-text { display: none; }
  .hero-scroll-hint { display: none; }
  /* Kiosk badge mobile */
  .kiosk-badge { left: 12px; right: 12px; max-width: none; }
  /* Inner hero */
  .inner-hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
}

@media (max-width: 520px) {
  .wrap { padding: 0 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .movements-grid { grid-template-columns: 1fr 1fr; }
  .partner-logos { grid-template-columns: 1fr 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .beehive-grid { grid-template-columns: 1fr 1fr; }
  .hpc-dims { grid-template-columns: repeat(3, 1fr); }
  /* Hero tiny */
  .hero-h1 { font-size: clamp(2.2rem, 11vw, 3rem); }
  .hero-lead { font-size: 0.88rem; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-footnote { gap: 8px; font-size: 0.62rem; }
  /* Section headers small */
  .section-h2 { font-size: clamp(1.5rem, 7vw, 2rem); }
  /* HPC card */
  .hpc-card { padding: 20px; }
  /* Manthan terminal */
  .minion-wrap { margin: 0 -4px; }
  /* Section padding reduce */
  .stats-section, .dna-section, .vise-dashboard, .minion-section,
  .beehive-section, .hqi-section, .hpc-section, .pathways-section,
  .proto-section, .manthan-section, .ion-tutor-section, .helix-card-section,
  .spotlight-section, .councils-section, .movements-section,
  .explore-section, .cta-band { padding: 60px 0; }
  /* Vision strip */
  .vision-strip { padding: 48px 0; }
  .vision-quote { font-size: 1rem; padding-left: 20px; }
  /* Partners */
  .partners-section { padding: 60px 0; }
  /* Form */
  .form-grid { grid-template-columns: 1fr; }
}

/* ── THEME TOGGLE ─────────────────────────────────────────────── */
#themeBtn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 40px; height: 40px;
  border-radius: var(--radius-full);
  background: var(--bg-4);
  border: 1px solid var(--border);
  color: var(--fg-60);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 800;
  transition: var(--transition);
  font-size: 0.9rem;
}
#themeBtn:hover { border-color: var(--gold-border); color: var(--gold); }

/* ── SECTION PADDING UTILITY ─────────────────────────────────── */
.pad-lg { padding: 100px 0; }
.pad-md { padding: 72px 0; }
.pad-sm { padding: 48px 0; }
.dark-bg { background: var(--bg-1); }

/* ── UTILITY ─────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-center .section-lead { margin-left: auto; margin-right: auto; }
.text-center .section-label { justify-content: center; }
.text-center .section-label::before { display: none; }
.mt-8 { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.mt-12 { margin-top: 48px; }
.no-sidebar { padding-left: 0 !important; }
br.br-desk { display: block; }

/* ── INNER PAGE STYLES ───────────────────────────────────────── */
/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 0.65rem; color: var(--fg-40);
  letter-spacing: 0.08em; margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--fg-30); }

/* Inner Hero */
.inner-hero {
  padding: 64px 0 72px;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.inner-hero::before {
  content: ''; position: absolute;
  top: 0; right: 0; width: 600px; height: 100%;
  background: radial-gradient(ellipse at top right, var(--gold-dim), transparent 70%);
  pointer-events: none;
}
.inner-hero-eyebrow {
  font-family: var(--mono); font-size: 0.68rem; color: var(--gold);
  letter-spacing: 0.12em; margin-bottom: 16px;
}
.inner-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 20px;
}
.inner-hero h1 em { font-style: italic; font-weight: 300; background: var(--gold-metallic); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.inner-hero p.lead {
  font-size: 1rem; color: var(--fg-60); line-height: 1.75; max-width: 640px; margin-bottom: 24px;
}
.inner-hero-meta {
  display: flex; flex-wrap: wrap; gap: 12px;
  font-family: var(--mono); font-size: 0.68rem; color: var(--fg-40); letter-spacing: 0.06em;
}
.inner-hero-meta span {
  padding: 5px 12px; border: 1px solid var(--border); border-radius: var(--radius-full);
}

/* Sidebar Layout */
.sidebar-layout-wrap { padding: 64px 0 100px; }
.sidebar-layout { display: grid; grid-template-columns: 220px 1fr; gap: 56px; max-width: 1240px; margin: 0 auto; padding: 0 32px; align-items: start; }
.sidebar { position: sticky; top: calc(var(--announce-h) + var(--nav-h) + 24px); }
.sidebar-nav { display: flex; flex-direction: column; gap: 2px; }
.sidebar-heading { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.14em; color: var(--fg-30); text-transform: uppercase; margin-bottom: 12px; }
.sidebar-link {
  font-size: 0.8rem; color: var(--fg-40); padding: 7px 12px;
  border-radius: var(--radius-sm); border-left: 2px solid transparent; transition: var(--transition);
}
.sidebar-link:hover, .sidebar-link.active { color: var(--gold); border-left-color: var(--gold); background: var(--gold-dim); }

/* Article Content */
.article-content { max-width: 780px; }
.article-content section { margin-bottom: 72px; scroll-margin-top: calc(var(--announce-h) + var(--nav-h) + 32px); }
.article-content h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 20px; }
.article-content h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 700; letter-spacing: -0.02em; margin: 48px 0 16px; padding-top: 48px; border-top: 1px solid var(--border); }
.article-content h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.article-content h3 { font-size: 1.1rem; font-weight: 600; color: var(--fg-90); margin: 28px 0 10px; }
.article-content p { font-size: 0.9rem; color: var(--fg-60); line-height: 1.85; margin-bottom: 16px; }
.article-content p strong { color: var(--fg-90); font-weight: 600; }
.article-content ul, .article-content ol { margin: 0 0 16px 0; padding-left: 20px; }
.article-content li { font-size: 0.88rem; color: var(--fg-60); line-height: 1.8; margin-bottom: 8px; }
.article-content li strong { color: var(--fg-90); }

/* Metric Grid */
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 32px 0; }
.metric-cell { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px 16px; text-align: center; }
.metric-value { font-size: 1.8rem; font-weight: 800; letter-spacing: -0.04em; background: var(--gold-metallic); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.metric-unit { font-size: 0.5em; vertical-align: super; }
.metric-label { font-size: 0.7rem; color: var(--fg-40); margin-top: 6px; line-height: 1.3; }

/* Zone Grid */
.zone-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 28px 0; }
.zone-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.zone-card:hover { border-color: var(--gold-border); }
.zone-card-header { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; background: var(--bg-3); border-bottom: 1px solid var(--border); }
.zone-sphere { font-family: var(--mono); font-size: 0.68rem; color: var(--gold); font-weight: 500; letter-spacing: 0.1em; }
.zone-body { padding: 16px; }
.zone-name { font-size: 0.92rem; font-weight: 700; color: var(--fg); margin-bottom: 8px; }
.zone-mandate { font-size: 0.78rem; color: var(--fg-50); line-height: 1.65; margin: 0; }

/* Callout */
.callout { background: var(--gold-dim); border: 1px solid var(--gold-border); border-radius: var(--radius-lg); padding: 20px 24px; margin: 24px 0; }
.callout-label { font-family: var(--mono); font-size: 0.6rem; color: var(--gold); letter-spacing: 0.12em; margin-bottom: 8px; }
.callout p { color: var(--fg-70); margin: 0; }
.callout p strong { color: var(--gold); }

/* Program Cards */
.program-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 32px; margin-bottom: 16px; transition: var(--transition); }
.program-card:hover { border-color: var(--gold-border); }
.program-card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 16px; }
.program-tag { font-family: var(--mono); font-size: 0.6rem; color: var(--gold); border: 1px solid var(--gold-border); padding: 4px 10px; border-radius: var(--radius-full); background: var(--gold-dim); white-space: nowrap; }
.program-title { font-size: 1.2rem; font-weight: 700; color: var(--fg); margin-bottom: 6px; }
.program-subtitle { font-size: 0.8rem; color: var(--gold); }
.program-desc { font-size: 0.85rem; color: var(--fg-50); line-height: 1.75; margin-bottom: 20px; }
.program-specs { display: flex; flex-wrap: wrap; gap: 10px; }
.prog-spec { font-family: var(--mono); font-size: 0.65rem; color: var(--fg-50); padding: 4px 10px; background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius-full); }

/* Research Card */
.research-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 32px; margin-bottom: 16px; transition: var(--transition); display: block; }
.research-card:hover { border-color: var(--gold-border); }
.research-domain { font-family: var(--mono); font-size: 0.62rem; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 10px; }
.research-title { font-size: 1.15rem; font-weight: 700; color: var(--fg); margin-bottom: 10px; line-height: 1.3; }
.research-abstract { font-size: 0.84rem; color: var(--fg-50); line-height: 1.75; margin-bottom: 16px; }
.research-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.research-meta span { font-family: var(--mono); font-size: 0.62rem; color: var(--fg-30); }
.research-status { background: var(--gold-dim); border: 1px solid var(--gold-border); color: var(--gold) !important; padding: 3px 10px; border-radius: var(--radius-full); }

/* Platform Feature Cards */
.platform-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 28px 0; }
.platform-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 28px; transition: var(--transition); }
.platform-card:hover { border-color: var(--gold-border); }
.platform-icon { font-size: 1.6rem; color: var(--gold); margin-bottom: 14px; }
.platform-card-title { font-size: 1rem; font-weight: 700; color: var(--fg); margin-bottom: 8px; }
.platform-card-desc { font-size: 0.82rem; color: var(--fg-50); line-height: 1.7; }

/* Fund Bars */
.fund-bar { background: var(--bg-3); border-radius: var(--radius-full); height: 6px; overflow: hidden; margin: 8px 0; }
.fund-bar-fill { height: 100%; background: var(--gold-gradient); border-radius: var(--radius-full); transition: width 1.2s cubic-bezier(0.4,0,0.2,1); }

/* Financial tables */
.fin-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.fin-table th { font-family: var(--mono); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em; color: var(--fg-40); text-align: left; padding: 10px 16px; border-bottom: 1px solid var(--border); text-transform: uppercase; }
.fin-table td { font-size: 0.84rem; color: var(--fg-60); padding: 12px 16px; border-bottom: 1px solid var(--border); }
.fin-table td:last-child { color: var(--gold); font-weight: 600; font-family: var(--mono); }
.fin-table tr:hover td { background: var(--bg-3); }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-family: var(--mono); font-size: 0.65rem; color: var(--fg-50); letter-spacing: 0.08em; }
.form-input, .form-textarea, .form-select {
  background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 12px 16px; color: var(--fg); font-family: var(--font); font-size: 0.88rem;
  transition: var(--transition); width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--gold-border); background: var(--bg-4); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-select option { background: var(--bg-4); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Partner Institution Cards */
.partner-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 28px 24px; transition: var(--transition); }
.partner-card:hover { border-color: var(--gold-border); }
.partner-sphere-badge { font-family: var(--mono); font-size: 0.6rem; color: var(--gold); border: 1px solid var(--gold-border); padding: 3px 10px; border-radius: var(--radius-full); background: var(--gold-dim); display: inline-flex; margin-bottom: 12px; }
.partner-name { font-size: 1rem; font-weight: 700; color: var(--fg); margin-bottom: 6px; }
.partner-location { font-family: var(--mono); font-size: 0.65rem; color: var(--fg-40); margin-bottom: 12px; letter-spacing: 0.06em; }
.partner-desc { font-size: 0.82rem; color: var(--fg-50); line-height: 1.7; margin-bottom: 16px; }
.partner-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.partner-tag { font-family: var(--mono); font-size: 0.6rem; color: var(--fg-40); background: var(--bg-3); border: 1px solid var(--border); padding: 3px 8px; border-radius: var(--radius-full); }

/* Admission Steps */
.step-list { display: flex; flex-direction: column; gap: 0; }
.step-item { display: flex; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.step-item:last-child { border-bottom: none; }
.step-num { font-family: var(--mono); font-size: 0.7rem; color: var(--gold); font-weight: 500; letter-spacing: 0.08em; flex-shrink: 0; width: 48px; margin-top: 2px; }
.step-body { flex: 1; }
.step-title { font-size: 0.95rem; font-weight: 700; color: var(--fg); margin-bottom: 6px; }
.step-desc { font-size: 0.82rem; color: var(--fg-50); line-height: 1.7; }

/* Two-column layout for inner pages */
.two-col-content { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin: 28px 0; }

/* Responsive inner pages */
@media (max-width: 900px) {
  .sidebar-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .zone-grid { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .two-col-content { grid-template-columns: 1fr; }
}

/* ── FULL FOOTER for inner pages ─────────────────────────────── */
.site-footer-full { padding: 60px 0 40px; background: var(--bg-2); border-top: 1px solid var(--border); }
.site-footer-full .footer-top { margin-bottom: 32px; padding-bottom: 40px; }
/* ── ADDITIONAL FIXES & POLISH ───────────────────────────────── */
/* Gold table cell */
td.gold { color: var(--gold) !important; font-weight: 600; font-family: var(--mono); }

/* Scroll margin for hash nav */
[id] { scroll-margin-top: calc(var(--announce-h) + var(--nav-h) + 32px); }

/* Sidebar active state */
.sidebar-link.active {
  color: var(--gold);
  border-left-color: var(--gold);
  background: var(--gold-dim);
}

/* Vision quote color override */
.vision-quote { color: rgba(255,255,255,0.80); }

/* Pathway line vertical connector fix on mobile */
@media (max-width: 600px) {
  .pathway-line { padding-left: 28px; }
  .pathway-node { padding: 20px; }
  .pathway-dot { left: -22px; }
}

/* HPC card mobile width */
@media (max-width: 540px) {
  .hpc-card { max-width: 100%; }
  .helix-card { width: 100%; }
}

/* Footer cols two on tablet */
@media (max-width: 700px) {
  .footer-top { gap: 40px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 20px; }
}

/* miniON input placeholder overflow fix on mobile */
@media (max-width: 480px) {
  .minion-input::placeholder { font-size: 0.68rem; }
  .minion-send { font-size: 0.62rem; padding: 7px 10px; }
}

/* Announce bar transition */
.announce-bar {
  transition: height 0.3s ease, opacity 0.3s ease;
}

/* Inner hero responsive */
@media (max-width: 640px) {
  .inner-hero { padding: 48px 0 56px; }
  .inner-hero h1 { font-size: clamp(1.8rem, 9vw, 2.8rem); }
  .inner-hero p.lead { font-size: 0.88rem; }
  .inner-hero-meta { gap: 8px; }
  .inner-hero-meta span { font-size: 0.62rem; padding: 4px 10px; }
  .sidebar-layout-wrap { padding: 40px 0 80px; }
  .article-content section { margin-bottom: 48px; }
}

/* Spot grid mobile */
@media (max-width: 700px) {
  .spot-grid { grid-template-columns: 1fr; }
}

/* ViSE metric values on small screen */
@media (max-width: 480px) {
  .vm-val { font-size: 2.2rem; }
  .vise-metric { padding: 20px 16px; }
}

/* Beehive 7th cell fix */
@media (min-width: 801px) {
  .beehive-cell:nth-child(7) { grid-column: 2; }
}

/* ================================================================
   LIGHT MODE — [data-theme="light"]
   Inverts the palette: Starlight White bg · Midnight Black fg
   Gold accent stays consistent
   ================================================================ */

[data-theme="light"] {
  --bg:             #F8F6F0;
  --bg-1:           #F2EFE8;
  --bg-2:           #EDE9E0;
  --bg-3:           #E5E0D5;
  --bg-4:           #DAD4C8;
  --bg-5:           #CEC7BA;
  --bg-6:           #C0B9AB;
  --bg-card:        #FFFFFF;
  --bg-elevated:    #FAF8F3;

  --fg:             #1A1710;
  --fg-90:          rgba(26,23,16,0.90);
  --fg-80:          rgba(26,23,16,0.80);
  --fg-70:          rgba(26,23,16,0.70);
  --fg-60:          rgba(26,23,16,0.60);
  --fg-50:          rgba(26,23,16,0.50);
  --fg-40:          rgba(26,23,16,0.40);
  --fg-30:          rgba(26,23,16,0.30);
  --fg-20:          rgba(26,23,16,0.20);
  --fg-10:          rgba(26,23,16,0.10);
  --fg-05:          rgba(26,23,16,0.05);

  --border:         rgba(26,23,16,0.10);
  --border-mid:     rgba(26,23,16,0.15);
  --border-bright:  rgba(26,23,16,0.25);

  --gold-dim:       rgba(201,168,76,0.12);
  --gold-border:    rgba(201,168,76,0.35);
  --gold-glow:      rgba(201,168,76,0.25);
  --gold-glow-lg:   rgba(201,168,76,0.15);

  --shadow-sm:      0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:      0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:      0 20px 60px rgba(0,0,0,0.15);
  --shadow-gold:    0 0 24px rgba(201,168,76,0.20), 0 0 48px rgba(201,168,76,0.08);
  --shadow-gold-lg: 0 0 40px rgba(201,168,76,0.18), 0 0 80px rgba(201,168,76,0.06);
}

/* ── Light mode body ── */
[data-theme="light"] body {
  background: var(--bg);
  color: var(--fg);
}

/* ── Light mode navigation ── */
[data-theme="light"] .topnav {
  background: rgba(248,246,240,0.94);
  border-bottom-color: var(--border);
}
[data-theme="light"] .topnav.scrolled {
  background: rgba(248,246,240,0.98);
  border-bottom-color: var(--gold-border);
}
[data-theme="light"] .announce-bar {
  background: var(--bg-3);
  border-bottom-color: var(--gold-border);
}
[data-theme="light"] .helix-sidebar {
  background: var(--bg-2);
  border-right-color: var(--border);
}
[data-theme="light"] .nav-link { color: var(--fg-60); }
[data-theme="light"] .nav-link:hover,
[data-theme="light"] .nav-link.active { color: var(--fg); }
[data-theme="light"] .nav-link.active { color: var(--gold-dark, #9E7A28); }
[data-theme="light"] .nav-dropdown {
  background: var(--bg-card);
  border-color: var(--border-mid);
  box-shadow: var(--shadow-md);
}
[data-theme="light"] .nav-dropdown a { color: var(--fg-60); }
[data-theme="light"] .nav-dropdown a:hover { background: var(--bg-3); color: var(--gold-dark, #9E7A28); }

/* ── Light mode hero ── */
[data-theme="light"] .hero-section { background: var(--bg-1); }
[data-theme="light"] .hero-bg-grid {
  background-image:
    linear-gradient(rgba(26,23,16,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,23,16,0.04) 1px, transparent 1px);
}
[data-theme="light"] .hero-pulse-bar { background: rgba(248,246,240,0.9); }
[data-theme="light"] .tick-val { color: var(--fg-90); }
[data-theme="light"] .tick-label { color: var(--fg-50); }
[data-theme="light"] .hero-h1 { color: var(--fg); }
[data-theme="light"] .hero-lead { color: var(--fg-70); }
[data-theme="light"] .hero-lead strong { color: var(--fg); }
[data-theme="light"] .hero-footnote { color: var(--fg-40); }
[data-theme="light"] .badge-status { color: var(--fg-50); border-color: var(--border); }
[data-theme="light"] .badge-loc { color: var(--fg-50); }
[data-theme="light"] .scroll-label { color: var(--fg-30); }
[data-theme="light"] .hero-corner-text { color: var(--fg-20); }

/* ── Light mode marquee ── */
[data-theme="light"] .marquee-wrap {
  background: var(--bg-2);
  border-color: var(--gold-border);
}
[data-theme="light"] .marquee-inner span { color: var(--fg-50); }

/* ── Light mode stats ── */
[data-theme="light"] .stats-grid { background: var(--border); border-color: var(--border); }
[data-theme="light"] .stat-item { background: var(--bg-card); }
[data-theme="light"] .stat-item:hover { background: var(--bg-3); }
[data-theme="light"] .stat-label { color: var(--fg-50); }

/* ── Light mode DNA cards ── */
[data-theme="light"] .dna-section { background: var(--bg-1); }
[data-theme="light"] .dna-card {
  background: var(--bg-card);
  border-color: var(--border);
}
[data-theme="light"] .dna-card:hover { border-color: var(--gold-border); box-shadow: var(--shadow-gold); }
[data-theme="light"] .dna-label { color: var(--fg-40); }
[data-theme="light"] .dna-title { color: var(--fg); }
[data-theme="light"] .dna-desc { color: var(--fg-50); }

/* ── Light mode vision strip ── */
[data-theme="light"] .vision-strip {
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-card) 100%);
  border-color: var(--border);
}
[data-theme="light"] .vision-quote { color: var(--fg-80); }
[data-theme="light"] .vision-source { color: var(--fg-40); }

/* ── Light mode ViSE dashboard ── */
[data-theme="light"] .vise-metric {
  background: var(--bg-card);
  border-color: var(--border);
}
[data-theme="light"] .vise-metric:hover { border-color: var(--gold-border); }
[data-theme="light"] .vm-label { color: var(--fg-40); }
[data-theme="light"] .vm-val { color: var(--fg); }
[data-theme="light"] .vm-desc { color: var(--fg-40); }

/* ── Light mode miniON ── */
[data-theme="light"] .minion-section { background: var(--bg-1); }
[data-theme="light"] .minion-wrap {
  background: var(--bg-card);
  border-color: var(--border);
}
[data-theme="light"] .minion-header { background: var(--bg-3); border-bottom-color: var(--border); }
[data-theme="light"] .minion-title { color: var(--fg-40); }
[data-theme="light"] .minion-out { color: var(--fg-70); }
[data-theme="light"] .minion-input { color: var(--fg); }
[data-theme="light"] .minion-input::placeholder { color: var(--fg-30); }
[data-theme="light"] .minion-input-row { background: var(--bg-3); border-top-color: var(--border); }

/* ── Light mode beehive ── */
[data-theme="light"] .beehive-cell {
  background: var(--bg-card);
  border-color: var(--border);
}
[data-theme="light"] .beehive-icon { color: var(--fg-30); }
[data-theme="light"] .beehive-label { color: var(--fg-30); }
[data-theme="light"] .beehive-title { color: var(--fg-80); }

/* ── Light mode HQI ── */
[data-theme="light"] .hqi-section { background: var(--bg-1); }
[data-theme="light"] .hqi-dim {
  background: var(--bg-card);
  border-color: var(--border);
}
[data-theme="light"] .hqi-dim:hover { border-color: var(--gold-border); background: var(--bg-3); }
[data-theme="light"] .hqi-dim-name { color: var(--fg-70); }
[data-theme="light"] .hqi-dim-score { color: var(--fg); }
[data-theme="light"] .hqi-radar-wrap { background: var(--bg-card); border-color: var(--border); }

/* ── Light mode HPC card ── */
[data-theme="light"] .hpc-card {
  background: var(--bg-card);
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
}
[data-theme="light"] .hpc-dim-chip {
  background: var(--bg-3);
  border-color: var(--border);
}
[data-theme="light"] .hpc-dim-lbl { color: var(--fg-40); }
[data-theme="light"] .hpc-footer { border-top-color: var(--border); }
[data-theme="light"] .hpc-footer-label { color: var(--fg-30); }
[data-theme="light"] .hpc-swipe-hint { color: var(--fg-30); }

/* ── Light mode pathways ── */
[data-theme="light"] .pathways-section { background: var(--bg-1); }
[data-theme="light"] .pathway-node {
  background: var(--bg-card);
  border-color: var(--border);
}
[data-theme="light"] .pathway-node:hover { border-color: var(--gold-border); }
[data-theme="light"] .pathway-title { color: var(--fg); }
[data-theme="light"] .pathway-desc { color: var(--fg-50); }

/* ── Light mode proto cards ── */
[data-theme="light"] .proto-card {
  background: var(--bg-card);
  border-color: var(--border);
}
[data-theme="light"] .proto-thumb { background: var(--bg-3); color: var(--fg-10); border-bottom-color: var(--border); }
[data-theme="light"] .proto-card:hover .proto-thumb { background: var(--gold-dim); color: var(--gold-dark, #9E7A28); }
[data-theme="light"] .proto-title { color: var(--fg); }
[data-theme="light"] .proto-meta { color: var(--fg-40); }

/* ── Light mode manthan ── */
[data-theme="light"] .manthan-section { background: var(--bg-1); }
[data-theme="light"] .manthan-terminal {
  background: var(--bg-card);
  border-color: var(--border);
}
[data-theme="light"] .mt-header { background: var(--bg-3); border-bottom-color: var(--border); }
[data-theme="light"] .mt-title { color: var(--fg-50); }
[data-theme="light"] .mt-task { color: var(--fg-60); border-bottom-color: var(--border); }
[data-theme="light"] .mt-check { color: var(--fg-30); }

/* ── Light mode iON tutor ── */
[data-theme="light"] .ion-chat-wrap {
  background: var(--bg-card);
  border-color: var(--border);
}
[data-theme="light"] .ion-chat-header { background: var(--bg-3); border-bottom-color: var(--border); }
[data-theme="light"] .ion-chat-name { color: var(--fg); }
[data-theme="light"] .ion-msg.ion .ion-msg-bubble {
  background: var(--bg-3);
  border-color: var(--border);
  color: var(--fg-80);
}
[data-theme="light"] .ion-msg.user .ion-msg-bubble {
  background: var(--gold-dim);
  border-color: var(--gold-border);
  color: var(--fg);
}

/* ── Light mode helix card section ── */
[data-theme="light"] .helix-card-section { background: var(--bg-1); }
[data-theme="light"] .helix-card {
  background: linear-gradient(135deg, #FFFFF8 0%, #FDF9ED 100%);
  border-color: var(--gold-border);
}
[data-theme="light"] .hc-name { color: var(--fg); }
[data-theme="light"] .hc-program { color: var(--fg-50); }
[data-theme="light"] .hc-id { color: var(--fg-30); }
[data-theme="light"] .hc-hex-pattern { color: var(--gold-dark, #9E7A28); }
[data-theme="light"] .hc-footer { border-top-color: var(--gold-border); }

/* ── Light mode spotlight ── */
[data-theme="light"] .spot-main,
[data-theme="light"] .spot-sm {
  background: var(--bg-card);
  border-color: var(--border);
}
[data-theme="light"] .spot-main:hover,
[data-theme="light"] .spot-sm:hover { border-color: var(--gold-border); }
[data-theme="light"] .spot-title { color: var(--fg); }
[data-theme="light"] .spot-excerpt { color: var(--fg-50); }
[data-theme="light"] .spot-sm-title { color: var(--fg); }
[data-theme="light"] .spot-sm-lead { color: var(--fg-40); }

/* ── Light mode councils ── */
[data-theme="light"] .councils-section { background: var(--bg-1); }
[data-theme="light"] .council-card {
  background: var(--bg-card);
  border-color: var(--border);
}
[data-theme="light"] .council-card:hover { border-color: var(--gold-border); }
[data-theme="light"] .council-name { color: var(--fg); }
[data-theme="light"] .council-desc { color: var(--fg-50); }

/* ── Light mode movements ── */
[data-theme="light"] .mov-pill {
  background: var(--bg-card);
  border-color: var(--border);
}
[data-theme="light"] .mov-pill:hover { border-color: var(--gold-border); background: var(--bg-3); }
[data-theme="light"] .mov-name { color: var(--fg-50); }

/* ── Light mode partners ── */
[data-theme="light"] .partners-section { background: var(--bg-1); }
[data-theme="light"] .pl-item {
  background: var(--bg-card);
  border-color: var(--border);
  color: var(--fg-50);
}
[data-theme="light"] .pl-item:hover { border-color: var(--gold-border); color: var(--gold-dark, #9E7A28); background: var(--bg-3); }

/* ── Light mode explore cards ── */
[data-theme="light"] .explore-card {
  background: var(--bg-card);
  border-color: var(--border);
}
[data-theme="light"] .explore-card:hover { border-color: var(--gold-border); }
[data-theme="light"] .ec-icon { color: var(--fg-20); }
[data-theme="light"] .explore-card:hover .ec-icon { color: var(--gold-dark, #9E7A28); }
[data-theme="light"] .ec-title { color: var(--fg); }
[data-theme="light"] .ec-desc { color: var(--fg-40); }

/* ── Light mode CTA band ── */
[data-theme="light"] .cta-band {
  background: var(--bg-card);
  border-top-color: var(--gold-border);
  border-bottom-color: var(--border);
}
[data-theme="light"] .cta-h2 { color: var(--fg); }
[data-theme="light"] .cta-lead { color: var(--fg-60); }

/* ── Light mode footer ── */
[data-theme="light"] .site-footer {
  background: var(--bg-2);
  border-top-color: var(--border);
}
[data-theme="light"] .footer-top { border-bottom-color: var(--border); }
[data-theme="light"] .footer-tagline { color: var(--fg-60); }
[data-theme="light"] .footer-reg { color: var(--fg-30); }
[data-theme="light"] .footer-col-hd { color: var(--fg-80); }
[data-theme="light"] .footer-col a { color: var(--fg-40); }
[data-theme="light"] .footer-col a:hover { color: var(--gold-dark, #9E7A28); }
[data-theme="light"] .footer-copy { color: var(--fg-30); }

/* ── Light mode kiosk badge ── */
[data-theme="light"] .kiosk-badge {
  background: var(--bg-card);
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
}
[data-theme="light"] .kiosk-badge > div:nth-child(2) > div:first-child { color: var(--fg); }
[data-theme="light"] .kiosk-text { color: var(--fg-40); }
[data-theme="light"] .kiosk-close { color: var(--fg-30); }
[data-theme="light"] .kiosk-close:hover { color: var(--fg); }

/* ── Light mode loader ── */
[data-theme="light"] #loader { background: var(--bg-1); }
[data-theme="light"] .loader-status { color: var(--fg-30); }
[data-theme="light"] .loader-tagline { color: var(--fg-50); }
[data-theme="light"] .loader-bar { background: var(--border); }

/* ── Light mode mobile action bar ── */
[data-theme="light"] .mobile-action-bar {
  background: rgba(248,246,240,0.97);
  border-top-color: var(--border);
}
[data-theme="light"] .mab-btn { color: var(--fg-40); }
[data-theme="light"] .mab-btn.active { color: var(--gold-dark, #9E7A28); }

/* ── Light mode mobile menu ── */
[data-theme="light"] .mobile-menu { background: var(--bg-1); }
[data-theme="light"] .mm-header { border-bottom-color: var(--border); }
[data-theme="light"] .mm-link { color: var(--fg-70); }
[data-theme="light"] .mm-link:hover { background: var(--bg-3); color: var(--gold-dark, #9E7A28); }
[data-theme="light"] .mm-footer { border-top-color: var(--border); }
[data-theme="light"] .mm-close { color: var(--fg-50); }

/* ── Light mode theme btn ── */
[data-theme="light"] #themeBtn {
  background: var(--bg-4);
  border-color: var(--border);
  color: var(--fg-60);
}
[data-theme="light"] #themeBtn:hover { border-color: var(--gold-border); color: var(--gold-dark, #9E7A28); }

/* ── Light mode helix sidebar ── */
[data-theme="light"] .hs-sphere { color: var(--fg-50); }
[data-theme="light"] .hs-sphere:hover { background: var(--bg-4); color: var(--gold-dark, #9E7A28); }
[data-theme="light"] .hs-tooltip {
  background: var(--bg-5);
  border-color: var(--gold-border);
  color: var(--fg-90);
}
[data-theme="light"] .hs-passport { border-color: var(--gold-border); background: var(--gold-dim); }
[data-theme="light"] .hs-passport:hover { background: var(--gold); color: #fff; }
[data-theme="light"] .hs-divider { background: var(--border); }

/* ── Light mode inner page elements ── */
[data-theme="light"] .inner-hero { border-bottom-color: var(--border); }
[data-theme="light"] .inner-hero h1 { color: var(--fg); }
[data-theme="light"] .inner-hero p.lead { color: var(--fg-60); }
[data-theme="light"] .inner-hero-meta span { border-color: var(--border); color: var(--fg-40); }
[data-theme="light"] .breadcrumb { color: var(--fg-40); }
[data-theme="light"] .breadcrumb a { color: var(--gold-dark, #9E7A28); }

[data-theme="light"] .sidebar-nav .sidebar-link { color: var(--fg-40); }
[data-theme="light"] .sidebar-link:hover,
[data-theme="light"] .sidebar-link.active { color: var(--gold-dark, #9E7A28); border-left-color: var(--gold-dark, #9E7A28); background: var(--gold-dim); }
[data-theme="light"] .sidebar-heading { color: var(--fg-30); }

[data-theme="light"] .article-content h1,
[data-theme="light"] .article-content h2,
[data-theme="light"] .article-content h3 { color: var(--fg); }
[data-theme="light"] .article-content h2 { border-top-color: var(--border); }
[data-theme="light"] .article-content p { color: var(--fg-60); }
[data-theme="light"] .article-content p strong { color: var(--fg-90); }
[data-theme="light"] .article-content li { color: var(--fg-60); }
[data-theme="light"] .article-content li strong { color: var(--fg-90); }

[data-theme="light"] .metric-cell {
  background: var(--bg-card);
  border-color: var(--border);
}
[data-theme="light"] .metric-label { color: var(--fg-40); }

[data-theme="light"] .zone-card {
  background: var(--bg-card);
  border-color: var(--border);
}
[data-theme="light"] .zone-card:hover { border-color: var(--gold-border); }
[data-theme="light"] .zone-card-header { background: var(--bg-3); border-bottom-color: var(--border); }
[data-theme="light"] .zone-name { color: var(--fg); }
[data-theme="light"] .zone-mandate { color: var(--fg-50); }

[data-theme="light"] .callout {
  background: var(--gold-dim);
  border-color: var(--gold-border);
}
[data-theme="light"] .callout p { color: var(--fg-70); }

[data-theme="light"] .program-card {
  background: var(--bg-card);
  border-color: var(--border);
}
[data-theme="light"] .program-card:hover { border-color: var(--gold-border); }
[data-theme="light"] .program-title { color: var(--fg); }
[data-theme="light"] .program-desc { color: var(--fg-50); }
[data-theme="light"] .prog-spec {
  color: var(--fg-50);
  background: var(--bg-3);
  border-color: var(--border);
}

[data-theme="light"] .research-card {
  background: var(--bg-card);
  border-color: var(--border);
}
[data-theme="light"] .research-card:hover { border-color: var(--gold-border); }
[data-theme="light"] .research-title { color: var(--fg); }
[data-theme="light"] .research-abstract { color: var(--fg-50); }
[data-theme="light"] .research-meta span { color: var(--fg-30); }

[data-theme="light"] .platform-card {
  background: var(--bg-card);
  border-color: var(--border);
}
[data-theme="light"] .platform-card:hover { border-color: var(--gold-border); }
[data-theme="light"] .platform-card-title { color: var(--fg); }
[data-theme="light"] .platform-card-desc { color: var(--fg-50); }

[data-theme="light"] .fin-table th { color: var(--fg-40); border-bottom-color: var(--border); }
[data-theme="light"] .fin-table td { color: var(--fg-60); border-bottom-color: var(--border); }
[data-theme="light"] .fin-table tr:hover td { background: var(--bg-3); }

[data-theme="light"] .form-input,
[data-theme="light"] .form-textarea,
[data-theme="light"] .form-select {
  background: var(--bg-3);
  border-color: var(--border);
  color: var(--fg);
}
[data-theme="light"] .form-input:focus,
[data-theme="light"] .form-textarea:focus,
[data-theme="light"] .form-select:focus { border-color: var(--gold-border); background: var(--bg-card); }
[data-theme="light"] .form-label { color: var(--fg-50); }
[data-theme="light"] .form-select option { background: var(--bg-card); color: var(--fg); }

[data-theme="light"] .partner-card {
  background: var(--bg-card);
  border-color: var(--border);
}
[data-theme="light"] .partner-card:hover { border-color: var(--gold-border); }
[data-theme="light"] .partner-name { color: var(--fg); }
[data-theme="light"] .partner-location { color: var(--fg-40); }
[data-theme="light"] .partner-desc { color: var(--fg-50); }
[data-theme="light"] .partner-tag {
  color: var(--fg-40);
  background: var(--bg-3);
  border-color: var(--border);
}

[data-theme="light"] .step-item { border-bottom-color: var(--border); }
[data-theme="light"] .step-title { color: var(--fg); }
[data-theme="light"] .step-desc { color: var(--fg-50); }

[data-theme="light"] .section-h2 { color: var(--fg); }
[data-theme="light"] .section-lead { color: var(--fg-50); }

/* ── Light mode — contact page ── */
[data-theme="light"] .contact-info-card {
  background: var(--bg-card);
  border-color: var(--border);
}

/* ── Light mode — financial page ── */
[data-theme="light"] .fund-bar { background: var(--bg-3); }

/* Smooth theme transition */
body,
body * {
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
/* Disable transition for animations that would be jarring */
.loader-fill,
.pulse-ticker-inner,
.marquee-inner,
.hero-canvas,
.hqi-radar-canvas,
.scroll-line,
.hc-sync-pulse,
.vise-live-dot,
.pulse-dot,
.announce-dot,
.loader-hex-wrap,
.cardFloat {
  transition: none !important;
}

/* ── fg-muted light mode ── */
[data-theme="light"] { --fg-muted: rgba(26,23,16,0.45); }

/* ================================================================
   MISSING COMPONENTS — Added in v3 Fix Pass
   ================================================================ */

/* ── CONTACT PAGE ─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gold);
  flex-shrink: 0;
}
.contact-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--fg-40);
  margin-bottom: 4px;
}
.contact-value {
  font-size: 0.88rem;
  color: var(--fg-80);
  line-height: 1.6;
}
.contact-value a { color: var(--gold); }
.contact-value a:hover { text-decoration: underline; }
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
}
.form-submit {
  width: 100%;
  padding: 14px 28px;
  background: var(--gold-gradient);
  color: #000;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}
.form-submit:hover { box-shadow: var(--shadow-gold); transform: translateY(-1px); }

/* ── TEAM CARDS ──────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 28px 0;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { border-color: var(--gold-border); }
.team-avatar {
  width: 64px; height: 64px;
  border-radius: var(--radius-full);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--gold);
  margin: 0 auto 14px;
}
.team-name { font-size: 0.95rem; font-weight: 700; color: var(--fg); margin-bottom: 4px; }
.team-role { font-family: var(--mono); font-size: 0.65rem; color: var(--gold); letter-spacing: 0.08em; margin-bottom: 10px; }
.team-bio { font-size: 0.78rem; color: var(--fg-50); line-height: 1.6; }

/* ── FINANCIAL PAGE ──────────────────────────────────────────── */
.pass-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}
.pass-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
}
.pass-card.featured {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
}
.pass-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #000;
  background: var(--gold-gradient);
  padding: 4px 14px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.pass-tier { font-family: var(--mono); font-size: 0.65rem; color: var(--gold); letter-spacing: 0.12em; margin-bottom: 10px; }
.pass-price { font-size: 2rem; font-weight: 800; letter-spacing: -0.04em; color: var(--fg); margin-bottom: 4px; }
.pass-price span { font-size: 0.5em; font-weight: 400; color: var(--fg-40); }
.pass-features { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.pass-feature {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--fg-60);
}
.pass-feature::before { content: '✓'; color: var(--gold); font-size: 0.7rem; flex-shrink: 0; }

.phase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}
.phase-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
}
.phase-card:hover { border-color: var(--gold-border); }
.phase-num { font-family: var(--mono); font-size: 0.62rem; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 8px; }
.phase-title { font-size: 1rem; font-weight: 700; color: var(--fg); margin-bottom: 8px; }
.phase-amount { font-size: 1.4rem; font-weight: 800; background: var(--gold-metallic); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 10px; }
.phase-desc { font-size: 0.78rem; color: var(--fg-50); line-height: 1.65; }

.budget-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 28px 0;
}
.budget-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.budget-label { font-family: var(--mono); font-size: 0.62rem; color: var(--fg-40); letter-spacing: 0.1em; margin-bottom: 8px; }
.budget-pct { font-size: 1.6rem; font-weight: 800; background: var(--gold-metallic); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 4px; }
.budget-desc { font-size: 0.75rem; color: var(--fg-50); line-height: 1.5; }

.fund-bar-wrap { margin: 20px 0; }
.fund-bar-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.fund-bar-label { font-size: 0.78rem; color: var(--fg-60); min-width: 180px; }
.fund-bar-track { flex: 1; height: 6px; background: var(--bg-3); border-radius: var(--radius-full); overflow: hidden; }
.fund-bar-pct { font-family: var(--mono); font-size: 0.68rem; color: var(--gold); min-width: 36px; text-align: right; }

.scheme-list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.scheme-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: var(--transition);
}
.scheme-item:hover { border-color: var(--gold-border); }
.scheme-icon { font-size: 1.4rem; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.scheme-body { flex: 1; }
.scheme-title { font-size: 0.9rem; font-weight: 700; color: var(--fg); margin-bottom: 4px; }
.scheme-amount { font-family: var(--mono); font-size: 0.72rem; color: var(--gold); margin-bottom: 4px; }
.scheme-body p { font-size: 0.8rem; color: var(--fg-50); line-height: 1.6; margin: 0; }

.roi-highlight {
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 24px 0;
  text-align: center;
}
.roi-highlight .metric-value { font-size: 2.4rem; }

/* ── PARTNERSHIPS PAGE ────────────────────────────────────────── */
.inst-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.inst-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  transition: var(--transition);
}
.inst-card:hover { border-color: var(--gold-border); }
.inst-name { font-size: 1rem; font-weight: 700; color: var(--fg); margin-bottom: 4px; }
.inst-role { font-family: var(--mono); font-size: 0.62rem; color: var(--gold); letter-spacing: 0.08em; margin-bottom: 10px; }
.inst-mandate { font-size: 0.82rem; color: var(--fg-50); line-height: 1.7; }

/* ── TIMELINE ─────────────────────────────────────────────────── */
.timeline { display: flex; flex-direction: column; gap: 0; margin: 24px 0; }
.tl-item {
  display: flex; gap: 20px; padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.tl-item:last-child { border-bottom: none; }
.tl-dot {
  flex-shrink: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid #000;
  box-shadow: 0 0 0 3px var(--gold-border);
  margin-top: 4px;
}
.tl-step { font-family: var(--mono); font-size: 0.62rem; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 4px; }
.tl-title { font-size: 0.95rem; font-weight: 700; color: var(--fg); margin-bottom: 6px; }
.tl-desc { font-size: 0.82rem; color: var(--fg-50); line-height: 1.65; }

/* ── STEPS ────────────────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex; gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-content { flex: 1; }

/* ── DATA TABLE ───────────────────────────────────────────────── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.84rem;
}
.data-table th {
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--fg-40);
  text-align: left;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
}
.data-table td {
  color: var(--fg-60);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.data-table tr:hover td { background: var(--bg-3); }
.data-table td.highlight { color: var(--gold); font-weight: 600; font-family: var(--mono); }

/* ── CALLOUT TITLE ────────────────────────────────────────────── */
.callout-title { font-size: 1rem; font-weight: 700; color: var(--fg); margin-bottom: 8px; }

/* ── LOADER HEX INNER (existing SVG animation) ────────────────── */
.loader-hex-inner { stroke: var(--gold); }

/* ── FOOTER BRAND (alias) ─────────────────────────────────────── */
/* .footer-brand already defined — just ensuring class exists */

/* ── RESPONSIVE ADDITIONS ─────────────────────────────────────── */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .pass-grid { grid-template-columns: 1fr; }
  .phase-grid { grid-template-columns: 1fr; }
  .budget-grid { grid-template-columns: 1fr; }
  .inst-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .team-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }
}

/* ── LIGHT MODE — NEW COMPONENTS ──────────────────────────────── */
[data-theme="light"] .contact-form-wrap { background: var(--bg-card); border-color: var(--border); }
[data-theme="light"] .contact-icon { background: var(--gold-dim); border-color: var(--gold-border); }
[data-theme="light"] .contact-value { color: var(--fg-80); }
[data-theme="light"] .team-card { background: var(--bg-card); border-color: var(--border); }
[data-theme="light"] .team-avatar { background: var(--gold-dim); border-color: var(--gold-border); }
[data-theme="light"] .team-name { color: var(--fg); }
[data-theme="light"] .team-bio { color: var(--fg-50); }
[data-theme="light"] .pass-card { background: var(--bg-card); border-color: var(--border); }
[data-theme="light"] .pass-card.featured { border-color: var(--gold-border); }
[data-theme="light"] .pass-price { color: var(--fg); }
[data-theme="light"] .pass-feature { color: var(--fg-60); }
[data-theme="light"] .phase-card { background: var(--bg-card); border-color: var(--border); }
[data-theme="light"] .phase-title { color: var(--fg); }
[data-theme="light"] .phase-desc { color: var(--fg-50); }
[data-theme="light"] .budget-card { background: var(--bg-card); border-color: var(--border); }
[data-theme="light"] .budget-desc { color: var(--fg-50); }
[data-theme="light"] .scheme-item { background: var(--bg-card); border-color: var(--border); }
[data-theme="light"] .scheme-title { color: var(--fg); }
[data-theme="light"] .inst-card { background: var(--bg-card); border-color: var(--border); }
[data-theme="light"] .inst-name { color: var(--fg); }
[data-theme="light"] .inst-mandate { color: var(--fg-50); }
[data-theme="light"] .tl-item { border-bottom-color: var(--border); }
[data-theme="light"] .tl-title { color: var(--fg); }
[data-theme="light"] .tl-desc { color: var(--fg-50); }
[data-theme="light"] .step { border-bottom-color: var(--border); }
[data-theme="light"] .data-table th { color: var(--fg-40); border-bottom-color: var(--border); }
[data-theme="light"] .data-table td { color: var(--fg-60); border-bottom-color: var(--border); }
[data-theme="light"] .data-table tr:hover td { background: var(--bg-3); }

/* ================================================================
   iViRTH / TGIC — UPGRADE PATCH v6.0
   Notes-Based Architecture Additions
   Added: TGIS + TGIC Ecosystem, Domain Structure, Partner Grid v2,
   About iViRTH 11-Point Framework, Improved SEO Meta Styles
   ================================================================ */

/* ── ECOSYSTEM TWO-PORTAL SECTION ────────────────────────────── */
.ecosystem-section {
  padding: 100px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ecosystem-portals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.portal-card {
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: var(--transition-md);
  display: block;
  text-decoration: none;
}
.portal-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, var(--gold-dim));
  opacity: 0;
  transition: var(--transition-md);
}
.portal-card:hover::before { opacity: 1; }
.portal-card:hover { border-color: var(--gold-border); transform: translateY(-4px); box-shadow: var(--shadow-gold-lg); }
.portal-card.society {
  background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, var(--bg-card) 100%);
}
.portal-card.campus {
  background: linear-gradient(135deg, rgba(0,255,204,0.03) 0%, var(--bg-card) 100%);
}
.portal-domain {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.portal-domain::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.portal-title { font-size: 1.6rem; font-weight: 800; color: var(--fg); margin-bottom: 8px; }
.portal-subtitle { font-family: var(--mono); font-size: 0.7rem; color: var(--fg-40); letter-spacing: 0.08em; margin-bottom: 20px; }
.portal-desc { font-size: 0.9rem; color: var(--fg-60); line-height: 1.8; margin-bottom: 28px; }
.portal-pillars { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.portal-pill {
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.06em;
  color: var(--fg-50); background: var(--bg-3);
  border: 1px solid var(--border); border-radius: var(--radius-full);
  padding: 4px 12px;
}
.portal-action {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600;
  color: var(--gold); transition: var(--transition);
}
.portal-card:hover .portal-action { gap: 14px; }
.portal-powered {
  position: absolute;
  bottom: 16px; right: 20px;
  font-family: var(--mono); font-size: 0.58rem;
  color: var(--fg-20); letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .ecosystem-portals { grid-template-columns: 1fr; }
}

/* ── ABOUT IVIRTH 11-POINT FRAMEWORK ─────────────────────────── */
.framework-section { padding: 80px 0; background: var(--bg-2); }
.framework-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 40px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.fw-item {
  background: var(--bg-card);
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
}
.fw-item:hover { background: var(--bg-3); }
.fw-num {
  font-family: var(--mono); font-size: 0.62rem;
  color: var(--gold); letter-spacing: 0.12em;
  min-width: 28px; padding-top: 4px;
  flex-shrink: 0;
}
.fw-content {}
.fw-title { font-size: 0.95rem; font-weight: 700; color: var(--fg); margin-bottom: 6px; }
.fw-desc { font-size: 0.82rem; color: var(--fg-50); line-height: 1.65; }
@media (max-width: 768px) {
  .framework-grid { grid-template-columns: 1fr; }
}

/* ── MAJOR WORKS / MAJOR CONTRIBUTIONS ───────────────────────── */
.major-works-section { padding: 80px 0; }
.works-list { display: flex; flex-direction: column; gap: 0; margin-top: 32px; }
.work-item {
  display: flex; gap: 24px; padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
  transition: var(--transition);
}
.work-item:last-child { border-bottom: none; }
.work-item:hover .work-num { color: var(--gold); }
.work-num {
  font-family: var(--mono); font-size: 2rem; font-weight: 700;
  color: rgba(255,255,255,0.06); line-height: 1;
  min-width: 48px; flex-shrink: 0;
  transition: var(--transition);
}
.work-body { flex: 1; }
.work-category {
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.1em;
  color: var(--gold); margin-bottom: 6px;
}
.work-title { font-size: 1.05rem; font-weight: 700; color: var(--fg); margin-bottom: 6px; }
.work-desc { font-size: 0.84rem; color: var(--fg-50); line-height: 1.7; }
.work-badge {
  margin-top: 8px; display: inline-block;
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.08em;
  padding: 3px 10px; border-radius: var(--radius-full);
  border: 1px solid var(--gold-border); color: var(--gold);
}

/* ── DOMAINS / MAJOR FRAMEWORKS ──────────────────────────────── */
.domain-group { margin-bottom: 40px; }
.domain-hd {
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.12em;
  color: var(--fg-40); margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border); text-transform: uppercase;
}
.domain-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.domain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: var(--transition);
}
.domain-card:hover { border-color: var(--gold-border); }
.domain-card-label {
  font-family: var(--mono); font-size: 0.6rem; color: var(--gold);
  letter-spacing: 0.1em; margin-bottom: 6px;
}
.domain-card-title { font-size: 0.85rem; font-weight: 600; color: var(--fg); }
.domain-card-url {
  font-family: var(--mono); font-size: 0.62rem; color: var(--fg-40);
  margin-top: 4px;
}

/* ── IMPROVED PARTNER INSTITUTIONS GRID ──────────────────────── */
.partner-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.partner-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.partner-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition);
  border-radius: var(--radius-full) var(--radius-full) 0 0;
}
.partner-tile:hover::before { opacity: 1; }
.partner-tile:hover { border-color: var(--gold-border); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.partner-category {
  font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.1em;
  color: var(--fg-30); margin-bottom: 10px; text-transform: uppercase;
}
.partner-name { font-size: 0.95rem; font-weight: 700; color: var(--fg); margin-bottom: 6px; }
.partner-type { font-size: 0.75rem; color: var(--fg-40); }
.partner-open-badge {
  margin-top: 10px; display: inline-block;
  font-family: var(--mono); font-size: 0.55rem;
  padding: 2px 8px; border-radius: var(--radius-full);
  background: var(--gold-dim); border: 1px solid var(--gold-border); color: var(--gold);
}
@media (max-width: 900px) {
  .partner-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .domain-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .partner-grid-v2 { grid-template-columns: 1fr; }
  .domain-cards { grid-template-columns: 1fr; }
}

/* ── THE GREAT INDIAN SOCIETY (TGIS) SECTION ─────────────────── */
.tgis-pillars-section { padding: 80px 0; background: var(--bg-1); }
.tgis-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.tgis-pillar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: var(--transition-md);
  position: relative;
  overflow: hidden;
  text-decoration: none; display: block;
}
.tgis-pillar:hover { border-color: var(--gold-border); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.tgis-pillar-num {
  font-family: var(--mono); font-size: 0.62rem; color: var(--gold);
  letter-spacing: 0.12em; margin-bottom: 20px;
}
.tgis-pillar-icon {
  font-size: 2.2rem; margin-bottom: 16px; line-height: 1;
}
.tgis-pillar-title { font-size: 1.2rem; font-weight: 800; color: var(--fg); margin-bottom: 6px; }
.tgis-pillar-sub {
  font-family: var(--mono); font-size: 0.65rem; color: var(--gold);
  letter-spacing: 0.08em; margin-bottom: 14px;
}
.tgis-pillar-desc { font-size: 0.84rem; color: var(--fg-50); line-height: 1.75; margin-bottom: 20px; }
.tgis-pillar-url {
  font-family: var(--mono); font-size: 0.65rem; color: var(--fg-30);
  letter-spacing: 0.08em;
}
@media (max-width: 900px) { .tgis-pillars { grid-template-columns: 1fr; } }

/* ── MOVEMENTS ENHANCED ───────────────────────────────────────── */
.movements-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.mov-card-v2 {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: var(--transition);
}
.mov-card-v2:hover { border-color: var(--gold-border); }
.mov-abbr-v2 {
  font-family: var(--mono); font-size: 0.7rem; font-weight: 600;
  color: var(--gold); letter-spacing: 0.1em;
  min-width: 60px; padding-top: 2px;
}
.mov-body {}
.mov-title-v2 { font-size: 0.9rem; font-weight: 600; color: var(--fg); margin-bottom: 4px; }
.mov-desc-v2 { font-size: 0.78rem; color: var(--fg-40); line-height: 1.6; }
.mov-category-v2 {
  display: inline-block; margin-bottom: 4px;
  font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.08em;
  color: var(--fg-30); padding: 2px 6px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
}
@media (max-width: 768px) { .movements-grid-v2 { grid-template-columns: 1fr; } }

/* ── SEO STRUCTURED DATA VISUAL (JSON-LD indicator) ──────────── */
/* Hidden visually but indexed by crawlers via JSON-LD in <head> */

/* ── IVIRTH UNIVERSE SECTION ──────────────────────────────────── */
.universe-section { padding: 80px 0; background: var(--bg-2); }
.universe-domains {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.universe-domain {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}
.universe-domain:hover { border-color: var(--gold-border); }
.ud-type { font-family: var(--mono); font-size: 0.58rem; color: var(--fg-30); letter-spacing: 0.1em; margin-bottom: 12px; }
.ud-title { font-size: 1.1rem; font-weight: 800; color: var(--fg); margin-bottom: 8px; }
.ud-url { font-family: var(--mono); font-size: 0.65rem; color: var(--gold); margin-bottom: 12px; }
.ud-desc { font-size: 0.8rem; color: var(--fg-40); line-height: 1.6; }
@media (max-width: 768px) { .universe-domains { grid-template-columns: 1fr; } }

/* ── ENHANCED HERO SUBTITLE ───────────────────────────────────── */
.hero-powered-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.1em;
  color: var(--fg-40); padding: 6px 14px;
  border: 1px solid var(--border); border-radius: var(--radius-full);
  margin-top: 16px;
}
.hero-powered-badge strong { color: var(--gold); }

/* ── PHYGITAL MOVEMENT BANNER ─────────────────────────────────── */
.phygital-banner {
  background: linear-gradient(135deg, var(--bg-3) 0%, rgba(201,168,76,0.04) 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  margin: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.pb-text { flex: 1; }
.pb-label { font-family: var(--mono); font-size: 0.62rem; color: var(--gold); letter-spacing: 0.12em; margin-bottom: 12px; }
.pb-title { font-size: 1.5rem; font-weight: 800; color: var(--fg); margin-bottom: 8px; }
.pb-desc { font-size: 0.88rem; color: var(--fg-50); line-height: 1.8; }
.pb-cta { display: flex; gap: 12px; flex-shrink: 0; }
@media (max-width: 768px) { .phygital-banner { flex-direction: column; padding: 28px 24px; } }


/* ── DM SANS HEADING ENHANCEMENT (v7 — pure DM Sans, no Syne) ──────── */
/* Ensure all display headings use DM Sans bold for strong hierarchy */
h1, h2, h3,
.hero-h1, .section-h2, .cta-h2,
.portal-title, .pb-title,
.tgis-pillar-title, .council-name,
.mov-title-v2, .spot-title, .spot-sm-title {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.hero-h1 {
  font-weight: 800;
  letter-spacing: -0.04em;
}
.section-h2 {
  font-weight: 700;
  letter-spacing: -0.025em;
}
