/* ═══════════════════════════════════════════════════════════
   GOD'S i INNOVATION LABS  —  Main Stylesheet
═══════════════════════════════════════════════════════════ */

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

:root {
  --bg-deep:   #ffffff;
  --bg-dark:   #f3f6fd;
  --bg-card:   #ffffff;
  --bg-card2:  #edf1ff;
  --cyan:      #0090b8;
  --cyan-dim:  rgba(0, 144, 184, 0.08);
  --cyan-glow: rgba(0, 144, 184, 0.20);
  --blue:      #0052d4;
  --white:     #0d1b2e;
  --text:      #374266;
  --muted:     #647090;
  --border:    rgba(0, 60, 200, 0.10);
  --font-head: 'Orbitron', sans-serif;
  --font-body: 'Exo 2', sans-serif;
  --radius:    12px;
  --shadow:    0 8px 32px rgba(0, 0, 50, 0.09);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--cyan); text-decoration: none; }
a:hover { opacity: 0.8; }

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

/* ── Utility ── */
.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.outline-text {
  -webkit-text-stroke: 2px var(--cyan);
  color: transparent;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
}

.section-eyebrow {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 60px;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 100%);
  color: var(--bg-deep);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--cyan-glow);
  color: var(--bg-deep);
}

.btn-outline {
  display: inline-block;
  padding: 14px 36px;
  border: 1.5px solid var(--cyan);
  color: var(--cyan);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 40px;
  transition: background 0.2s, transform 0.2s;
}

.btn-outline:hover {
  background: var(--cyan-dim);
  transform: translateY(-2px);
  color: var(--cyan);
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  /* Reference pattern: gradient-to-bottom from dark → transparent (always visible) */
  background: linear-gradient(to bottom, rgba(6,11,24,0.82) 0%, transparent 100%);
  backdrop-filter: blur(2px);
  transition: background 0.4s, padding 0.3s, backdrop-filter 0.4s;
}

.navbar.scrolled {
  background: rgba(6, 11, 24, 0.94);
  backdrop-filter: blur(18px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
}

/* Actual logo image */
.nav-logo-img {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  display: block;
  background: #0a1628;
  padding: 3px;
}

/* Text column next to logo */
.nav-logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 0px;
  line-height: 1.1;
}

.logo-text {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

.logo-i { color: var(--cyan); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--cyan); }

.nav-cta {
  padding: 8px 22px;
  border: 1.5px solid var(--cyan) !important;
  border-radius: 40px;
  color: var(--cyan) !important;
  font-family: var(--font-head);
  font-size: 0.72rem !important;
  letter-spacing: 1px;
}

.nav-cta:hover { background: var(--cyan-dim); }

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

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ═══════════════════════════════════════════════════════════
   HERO  —  video background + mixed-colour heading + search pill
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 110vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  background: var(--bg-deep);
}

/* ── Video wrapper: starts at 15 vh, giving a reveal margin ── */
.hero-video-wrap {
  position: absolute;
  top: 15vh;
  left: 0;
  width: 100%;
  height: 95vh;
  z-index: 0;
  pointer-events: none;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Top gradient: blends navbar dark bg into the video */
.hero-mask-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(80px, 20vh, 180px);
  background: linear-gradient(to bottom, var(--bg-deep) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* Bottom gradient: fades video into the next section */
.hero-mask-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: clamp(80px, 18vh, 160px);
  background: linear-gradient(to top, var(--bg-deep) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* General depth overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,11,24,0.55) 0%,
    rgba(6,11,24,0.25) 40%,
    rgba(6,11,24,0.50) 100%
  );
  z-index: 1;
}

/* ── Content block ── */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 860px;
}

.hero-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

/* ── Mixed-colour heading ── */
.hero-title-v2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

/* White/bright first line */
.hv2-white { color: var(--white); }

/* Muted gray body lines */
.hv2-muted { color: rgba(255,255,255,0.48); }

/* Inline shield icon pill (like the eye-pill in the reference) */
.hv2-icon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(28px, 3.5vw, 48px);
  height: clamp(18px, 1.8vw, 28px);
  border: 1.5px solid rgba(0,212,255,0.7);
  border-radius: 40px;
  color: var(--cyan);
  vertical-align: middle;
  margin: 0 3px;
  background: rgba(0,212,255,0.08);
}

/* ── Search pill CTA ── */
.hero-search-pill {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 4px 4px 4px 18px;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  max-width: 460px;
  width: 100%;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hsp-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  min-width: 0;
}

.hsp-input::placeholder { color: rgba(255,255,255,0.35); }

.hsp-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  color: var(--bg-deep);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}

.hsp-btn:hover {
  background: var(--cyan);
  transform: scale(1.06);
}

/* ── Edge anchors ── */
.hero-anchor-year,
.hero-anchor-tagline,
.hero-anchor-lang {
  position: absolute;
  z-index: 3;
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  animation: fadeIn 1s 2s both;
}

.hero-anchor-year    { bottom: 28px; left: 32px; }
.hero-anchor-tagline { bottom: 28px; right: 32px; }

/* Right-center language switcher */
.hero-anchor-lang {
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 40px;
  padding: 12px 10px;
  backdrop-filter: blur(8px);
}

.hero-lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}

.hero-lang-btn.active { color: var(--cyan); }
.hero-lang-btn:hover  { color: var(--white); }

.hero-lang-sep {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.2);
}

/* ── Scroll hint ── */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 2px;
  z-index: 2;
  animation: fadeIn 1s 2s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scrollPulse 1.5s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════
   ECOSYSTEM  — scroll-driven expand animation
═══════════════════════════════════════════════════════════ */
.ecosystem-scroll {
  background: var(--bg-dark);
  min-height: 200vh;
  position: relative;
}

/* Section header — scrolls normally above the sticky zone */
.eco-header {
  text-align: center;
  padding: 100px 24px 48px;
  max-width: 700px;
  margin: 0 auto;
}

.eco-header-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 14px;
}

/* Sticky container — stays pinned for the animated scroll window */
.eco-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Scene: the coordinate space for all positioned elements */
.eco-scene {
  position: relative;
  width: 560px;
  height: 560px;
  flex-shrink: 0;
}

/* Decorative concentric rings */
.eco-ring-outer,
.eco-ring-mid {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.eco-ring-outer {
  width: 560px; height: 560px;
  border: 1.5px solid rgba(0, 212, 255, 0.2);
}
.eco-ring-mid {
  width: 460px; height: 460px;
  border: 1.5px solid rgba(140, 100, 255, 0.28);
}
.eco-ring-outer.visible { opacity: 1; }
.eco-ring-mid.visible   { opacity: 1; }

/* Gradient-bordered main circle */
.eco-gradient-wrap {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 380px; height: 380px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan) 0%, #7c3aff 50%, var(--blue) 100%);
  padding: 2.5px;
}
.eco-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Center text — fades in at 50% scroll progress */
.eco-center-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 0 28px;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.eco-center-text.visible { opacity: 1; }
.eco-shield-svg { margin-bottom: 4px; animation: pulse 2.5s ease-in-out infinite; }
.eco-center-text h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}
.eco-center-text p { font-size: 0.72rem; color: var(--muted); line-height: 1.6; }

/* Nodes — start centered, JS moves them outward via inline transform */
.eco-node-item {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.28s ease-out;
  z-index: 10;
}
.eco-node-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 90px; height: 90px;
  padding: 14px 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: center;
  font-size: 0.7rem;
  color: var(--text);
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
}
.eco-node-card:hover {
  border-color: var(--cyan);
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.2);
}
.eco-ni { font-size: 1.5rem; line-height: 1; }

/* ═══════════════════════════════════════════════════════════
   WHY SECTION  —  interactive image accordion
═══════════════════════════════════════════════════════════ */
.why-section { background: var(--bg-deep); }

/* Two-column layout: text left, accordion right */
.why-layout {
  display: flex;
  align-items: center;
  gap: 56px;
}

.why-text { flex: 0 0 300px; }

.why-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 16px;
}

/* Accordion wrapper */
.why-accordion {
  flex: 1;
  display: flex;
  gap: 8px;
  height: 480px;
  overflow: hidden;
  border-radius: 18px;
  min-width: 0;
}

/* Single panel */
.wa-item {
  position: relative;
  flex: 0 0 56px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: flex 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s;
}

.wa-item.active {
  flex: 1;
  border-color: rgba(0, 212, 255, 0.45);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.12);
}

/* Photo */
.wa-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.wa-item:hover img,
.wa-item.active img { transform: scale(1.06); }

/* Gradient overlay */
.wa-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(6,11,24,0.92) 0%,
    rgba(6,11,24,0.35) 55%,
    transparent 100%);
}

/* Caption block */
.wa-caption {
  position: absolute;
  bottom: 20px;
  left: 18px;
  right: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Title — vertical when collapsed, horizontal when active */
.wa-title {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: 0.5px;
  transition: transform 0.45s ease, font-size 0.45s ease;
}

.wa-item:not(.active) .wa-title {
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  transform-origin: center center;
  font-size: 0.76rem;
}

.wa-item.active .wa-title {
  font-size: 1rem;
  transform: none;
}

/* Description — hidden until active */
.wa-desc {
  font-size: 0.79rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease 0.25s, transform 0.4s ease 0.25s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wa-item.active .wa-desc {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   INNOVATION PILLARS  —  FreedomSection 3-col layout
═══════════════════════════════════════════════════════════ */
.pillars-section { background: var(--bg-dark); }

/* Badge + title */
.pillars-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  margin-bottom: 60px;
}

.pillars-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--cyan);
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.pillars-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

/* Three-column grid: left | center | right */
.pillars-3col {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  column-gap: 28px;
  row-gap: 0;
  align-items: center;
}

/* Left / right card columns */
.pillars-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: start;
}

/* ── Individual pillar card (FreedomSection card style) ── */
.pillar-card-v2 {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: clamp(14px, 1.1vw, 20px) clamp(16px, 1.3vw, 22px);
  border-radius: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: 0 3px 10px rgba(0,0,0,0.28), 0 1px 28px rgba(0,212,255,0.04);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.pillar-card-v2:hover {
  border-color: rgba(0,212,255,0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,212,255,0.1);
}

.pcv2-top { display: flex; align-items: center; gap: 10px; }

.pcv2-icon { font-size: 1.7rem; line-height: 1; }

.pillar-card-v2 h3 {
  font-family: var(--font-head);
  font-size: 0.88rem;
  color: var(--white);
  margin: 0;
  letter-spacing: 0.3px;
}

.pcv2-tag {
  font-size: 0.78rem;
  color: var(--cyan);
  margin: 0;
}

.pcv2-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  margin: 0;
}

.pcv2-list li {
  font-size: 0.8rem;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
}

.pcv2-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: 0.75rem;
}

/* ── Center column — God's i glowing circle ── */
.pillars-center-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}

/* Gradient ring (same technique as eco-gradient-wrap) */
.pillars-center-ring {
  width: clamp(200px, 18vw, 300px);
  height: clamp(200px, 18vw, 300px);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan) 0%, #7c3aff 50%, var(--blue) 100%);
  padding: 2.5px;
  flex-shrink: 0;
  box-shadow: 0 0 48px rgba(0,212,255,0.22), 0 0 96px rgba(124,58,255,0.1);
  animation: pulse 3s ease-in-out infinite;
}

.pcc-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 18px;
}

.pcc-shield { flex-shrink: 0; }

.pcc-brand {
  font-family: var(--font-head);
  font-size: clamp(0.6rem, 0.9vw, 0.85rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  margin: 0;
}

.pcc-brand span { color: var(--cyan); }

.pcc-stats {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.pcc-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.pcc-num {
  font-family: var(--font-head);
  font-size: clamp(0.75rem, 0.95vw, 1rem);
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
}

.pcc-lbl {
  font-size: 0.52rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

/* ═══════════════════════════════════════════════════════════
   DIVISIONS — Animated cards stack (scroll-driven 3D)
═══════════════════════════════════════════════════════════ */

.divisions-section { background: var(--bg-deep); }

/* Static header */
.div-header {
  text-align: center;
  padding: 100px 24px 60px;
  max-width: 700px;
  margin: 0 auto;
}
.div-header-sub {
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 20px;
  animation: bounceY 2s ease-in-out infinite;
}

/* ── 300 vh scroll container ── */
.div-scroll {
  height: 300vh;
  position: relative;
}
.div-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  overflow: hidden;
}

/* ── Cards container ── */
.div-cards {
  position: relative;
  width: 440px;
  height: 580px;
}

/* ── Base card (AwardsVariant style) ── */
.div-card {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: none;
  padding: 30px 36px;
  backdrop-filter: blur(14px);
  will-change: transform;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  backface-visibility: hidden;
  color: #fff;
}

/* Card gradient backgrounds — AwardsVariant colours */
.div-card--1 { background: rgba(37, 99, 235, 0.82);  top: 10px; }   /* blue-600 */
.div-card--2 { background: rgba(234, 88, 12, 0.82);  top: 20px; }   /* orange-600 */
.div-card--3 { background: rgba(8, 145, 178, 0.82);  top: 30px; }   /* cyan-600 */
.div-card--4 { background: rgba(124, 58, 237, 0.82); top: 40px; }   /* violet-600 */

/* Card top row: icon + title block */
.div-card-top {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.div-icon-wrap {
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
}
.div-card-label {
  font-family: 'Orbitron', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 5px;
  text-transform: uppercase;
}
.div-card h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.25;
}
.div-card-desc {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  line-height: 1.68;
}
.div-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.div-card-list li {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.82);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.div-card-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  top: 2px;
}
.div-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: gap 0.2s;
}
.div-card-cta:hover { gap: 12px; opacity: 1; }

/* Card tagline — short descriptor under the h3 */
.div-card-tagline {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  margin-top: 3px;
  line-height: 1.4;
}

/* Tags row — compact chips showing learning areas / focus areas */
.div-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.div-tag {
  font-family: var(--font-body);
  font-size: 0.62rem;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.15);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Larger tag variant for Quantum focus areas */
.div-tag--lg {
  font-size: 0.72rem;
  padding: 5px 12px;
}

/* ═══════════════════════════════════════════════════════════
   DIVISIONS — Sticky section tabs (div-stabs)
═══════════════════════════════════════════════════════════ */

/* Override phase accent colours to match original division palette */
.div-stabs .stabs-section--1 { --phase-color: #2563eb; --phase-glow: rgba(37, 99, 235, 0.12); background: #060e20; }
.div-stabs .stabs-section--2 { --phase-color: #ea580c; --phase-glow: rgba(234, 88, 12, 0.12);  background: #100a04; }
.div-stabs .stabs-section--3 { --phase-color: #0891b2; --phase-glow: rgba(8, 145, 178, 0.12);  background: #040e12; }
.div-stabs .stabs-section--4 { --phase-color: #7c3aed; --phase-glow: rgba(124, 58, 237, 0.12); background: #0b0614; }

/* Section header label keeps brand dark */
.div-stabs .stabs-hdr { background: var(--bg-deep); }

/* Feature list section heading */
.stabs-feat-head {
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--phase-color);
  margin: 24px 0 10px;
  opacity: 0.85;
}

/* Education pathway */
.div-edu-path {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 24px;
}
.div-edu-path span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text);
}
.div-edu-arrow {
  color: var(--phase-color) !important;
  font-size: 0.9rem !important;
}
.div-edu-end {
  color: var(--phase-color) !important;
  font-weight: 600;
}

/* Goal checklist */
.div-goal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.div-goal-list li {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text);
  padding-left: 22px;
  position: relative;
  line-height: 1.45;
}
.div-goal-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--phase-color);
  font-weight: 700;
  font-size: 0.8rem;
  top: 1px;
}

/* Healthcare product grid (3 cards) */
.div-prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 10px;
}
.div-prod-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 18px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.div-prod-card:hover {
  border-color: var(--phase-color);
  box-shadow: 0 4px 20px var(--phase-glow);
}
.div-prod-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.div-prod-card h4 {
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
}
.div-prod-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.div-prod-card ul li {
  font-family: var(--font-body);
  font-size: 0.73rem;
  color: var(--muted);
  padding-left: 10px;
  position: relative;
  line-height: 1.35;
}
.div-prod-card ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--phase-color);
  font-weight: 700;
}

/* Healthcare pillars 2x2 */
.div-pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}
.div-pillar {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s;
}
.div-pillar:hover { border-color: var(--phase-color); }
.div-pillar span { font-size: 1.1rem; }

/* Quantum quote */
.div-quote {
  margin-top: 28px;
  border-left: 3px solid var(--phase-color);
  padding-left: 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* Quantum innovation goal */
.div-innov-goal {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.7;
  margin-top: 10px;
}

/* CTA link at bottom of right col */
.div-stabs-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  color: var(--phase-color);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  border: 1px solid var(--phase-color);
  padding: 10px 22px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.div-stabs-cta:hover {
  background: var(--phase-color);
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .div-prod-grid { grid-template-columns: 1fr; gap: 10px; }
  .div-pillar-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   ROADMAP — Spline 3D spotlight card
═══════════════════════════════════════════════════════════ */

.roadmap-section { background: var(--bg-dark); }

.rm-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 100px;
}

/* Section header */
.rm-header {
  text-align: center;
  padding: 100px 0 60px;
}

/* ── Spline spotlight card ── */
.rm-spline-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(0,0,0,0.96);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  overflow: hidden;
  min-height: 520px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.55);
}

/* Spotlight SVG */
.rm-spotlight-svg {
  pointer-events: none;
  position: absolute;
  z-index: 1;
  top: -40%;
  left: -10%;
  width: 138%;
  height: 169%;
  opacity: 0;
  animation: spotlightReveal 2s ease 0.75s 1 forwards;
}

/* Mouse-follow glow */
.rm-mouse-glow {
  pointer-events: none;
  position: absolute;
  z-index: 2;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(0,212,255,0.1) 0%, rgba(0,102,255,0.06) 45%, transparent 70%);
  filter: blur(18px);
  opacity: 0;
  transform: translate(-50%,-50%);
  transition: opacity 0.25s;
}
.rm-spline-card:hover .rm-mouse-glow { opacity: 1; }

/* Left content panel */
.rm-card-left {
  position: relative;
  z-index: 10;
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}
.rm-card-intro {
  color: rgba(255,255,255,0.5);
  font-size: 0.92rem;
  line-height: 1.72;
  margin: 0;
}

/* Roadmap items list */
.rm-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.rm-si {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.rm-si-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 1px solid rgba(255,255,255,0.1);
}
.rm-si-body h4 {
  font-family: 'Orbitron', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.3;
}
.rm-si-body p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin: 0;
}
.rm-cta { margin-top: 4px; }

/* Right: Spline canvas */
.rm-card-right {
  position: relative;
  overflow: hidden;
}
.rm-card-right canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
.rm-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  z-index: 5;
}
.rm-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(0,212,255,0.2);
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ═══════════════════════════════════════════════════════════
   INNOVATION PROCESS — Sticky scroll cards
═══════════════════════════════════════════════════════════ */

.process-section {
  background: var(--bg-deep);
}

/* Cards wrapper — provides padding and the tall scroll canvas */
.ssc-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 240px;
}

/* Base sticky card */
.ssc-card {
  position: sticky;
  top: 80px;
  border-radius: 24px;
  padding: 52px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  margin-bottom: 100px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  transition: box-shadow 0.3s;
}
.ssc-card:last-child { margin-bottom: 0; }

/* Per-card accent colours — dark tinted backgrounds matching brand palette */
.ssc-card--1 {
  z-index: 1;
  background: linear-gradient(135deg, #040e1c 0%, #060b18 100%);
  border: 1px solid rgba(0, 212, 255, 0.22);
  --card-accent: var(--cyan);
}
.ssc-card--2 {
  z-index: 2;
  background: linear-gradient(135deg, #040c1e 0%, #030a18 100%);
  border: 1px solid rgba(0, 102, 255, 0.22);
  --card-accent: var(--blue);
}
.ssc-card--3 {
  z-index: 3;
  background: linear-gradient(135deg, #0a0618 0%, #070412 100%);
  border: 1px solid rgba(139, 92, 246, 0.22);
  --card-accent: #8b5cf6;
}
.ssc-card--4 {
  z-index: 4;
  background: linear-gradient(135deg, #041410 0%, #030e09 100%);
  border: 1px solid rgba(16, 185, 129, 0.22);
  --card-accent: #10b981;
}

/* Swap columns for card 3 (image left, text right) */
.ssc-card--3 { grid-template-columns: 1fr 1fr; }

/* Text column */
.ssc-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ssc-phase-label {
  font-family: var(--font-head);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--card-accent);
  opacity: 0.8;
}

.ssc-card-title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
}

.ssc-card-desc {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.75;
}

/* Feature list */
.ssc-feat-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ssc-feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}
.ssc-feat-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--card-accent);
  margin-top: 6px;
  box-shadow: 0 0 8px var(--card-accent);
}
.ssc-feat-list li strong {
  color: var(--white);
}

/* Image column */
.ssc-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.ssc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.ssc-card:hover .ssc-img { transform: scale(1.03); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .ssc-wrap { padding: 0 20px 160px; }
  .ssc-card {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 28px;
    top: 60px;
    margin-bottom: 60px;
  }
  /* On mobile, image always comes first */
  .ssc-img-wrap--left { order: -1; }
  .ssc-card--3 { grid-template-columns: 1fr; }
}

/* Static section header */
.proc-header {
  text-align: center;
  padding: 100px 24px 60px;
  max-width: 700px;
  margin: 0 auto;
}
.proc-subtitle {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 1.05rem;
  margin-top: 16px;
  line-height: 1.6;
}

/* Sticky tabs root wrapper */
.stabs-root {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Each phase section — overflow:clip confines the sticky header
   to its own section without breaking sticky positioning */
.stabs-section {
  position: relative;
  overflow: clip;
  background: var(--bg-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.stabs-section:nth-child(even) {
  background: var(--bg-dark);
}

/* Per-phase accent colours */
.stabs-section--1 { --phase-color: var(--cyan);    --phase-glow: rgba(0, 212, 255, 0.12); }
.stabs-section--2 { --phase-color: var(--blue);    --phase-glow: rgba(0, 102, 255, 0.12); }
.stabs-section--3 { --phase-color: #8b5cf6;        --phase-glow: rgba(139, 92, 246, 0.12); }
.stabs-section--4 { --phase-color: #10b981;        --phase-glow: rgba(16, 185, 129, 0.12); }

/* Sticky header — sticks just below the fixed navbar (≈60px) */
.stabs-hdr {
  position: sticky;
  top: 60px;
  z-index: 10;
  margin-top: -1px;
  background: inherit;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.stabs-hdr-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.stabs-num {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--phase-color);
  opacity: 0.7;
  flex-shrink: 0;
  min-width: 40px;
}

.stabs-title {
  font-family: var(--font-head);
  font-size: clamp(1rem, 2.2vw, 1.55rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
}

.stabs-badge {
  margin-left: auto;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--phase-color);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  border: 1px solid var(--phase-color);
  border-radius: 20px;
  padding: 4px 14px;
  opacity: 0.85;
  flex-shrink: 0;
}

/* Content body */
.stabs-body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.stabs-desc {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Feature list */
.stabs-feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.stabs-feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.stabs-feat-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--phase-glow);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  margin-top: 2px;
}
.stabs-feat-list li > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stabs-feat-list li strong {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}
.stabs-feat-list li span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Right column: 2×2 stat mini-cards */
.stabs-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: sticky;
  top: 130px;
}
.stabs-mini-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  cursor: default;
}
.stabs-mini-card:hover {
  border-color: var(--phase-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px var(--phase-glow);
}
.stabs-mini-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--phase-color);
  line-height: 1;
}
.stabs-mini-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .stabs-hdr-inner {
    padding: 16px 20px;
    gap: 12px;
  }
  .stabs-num { font-size: 1.1rem; }
  .stabs-title { font-size: 1rem; }
  .stabs-badge { display: none; }
  .stabs-body {
    grid-template-columns: 1fr;
    padding: 48px 20px 56px;
    gap: 40px;
  }
  .stabs-mini-grid {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }
  .proc-header { padding: 70px 20px 40px; }
}

/* ═══════════════════════════════════════════════════════════
   COMMITMENT — Animated 3D cards stack
═══════════════════════════════════════════════════════════ */

.commitment-section { background: var(--bg-deep); }

/* Static header */
.commit-header {
  text-align: center;
  padding: 100px 24px 60px;
  max-width: 700px;
  margin: 0 auto;
}
.commit-scroll-hint {
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 20px;
  animation: bounceY 2s ease-in-out infinite;
}
@keyframes bounceY {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* ── Scroll container — 300vh gives scroll room ── */
.commit-scroll {
  height: 300vh;
  position: relative;
}

/* ── Sticky viewport ── */
.commit-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  overflow: hidden;
}

/* ── Cards container ── */
.commit-cards {
  position: relative;
  width: 440px;
  height: 400px;
}

/* ── Base card ── */
.commit-card {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.14);
  padding: 40px;
  backdrop-filter: blur(14px);
  will-change: transform;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  backface-visibility: hidden;
  color: #fff;
}

/* Card gradient backgrounds */
.commit-card--1 { background: linear-gradient(135deg, rgba(0,102,255,0.85), rgba(0,212,255,0.65));  top: 10px; }
.commit-card--2 { background: linear-gradient(135deg, rgba(220,70,10,0.85),  rgba(249,115,22,0.65)); top: 20px; }
.commit-card--3 { background: linear-gradient(135deg, rgba(6,182,212,0.85),  rgba(20,184,166,0.65)); top: 30px; }
.commit-card--4 { background: linear-gradient(135deg, rgba(109,40,217,0.85), rgba(139,92,246,0.65)); top: 40px; }

/* Card internals */
.commit-card-top {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.commit-icon-wrap {
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: rgba(255,255,255,0.18);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.commit-card-label {
  font-family: 'Orbitron', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
}
.commit-card h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}
.commit-card-desc {
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
  line-height: 1.72;
}

/* ═══════════════════════════════════════════════════════════
   VISION / MISSION / VALUES — Spinning ring
═══════════════════════════════════════════════════════════ */

.vmv-section { background: var(--bg-dark); }

.vmv-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 24px 90px;
}

.vmv-header {
  text-align: center;
  margin-bottom: 72px;
}

/* ── Two-column layout ── */
.vmv-layout {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 60px;
  align-items: center;
}

/* ── Spinning ring container ── */
.vmv-ring-wrap {
  display: flex;
  justify-content: center;
}
.vmv-ring {
  position: relative;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 0 80px rgba(0,212,255,0.05);
  flex-shrink: 0;
}

/* Rotating layer — spins clockwise */
.vmv-ring-spinner {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: vmvSpinSlow 28s linear infinite;
}

/* Key spin animations */
@keyframes vmvSpinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes vmvSpinReverse {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

/* ── Individual nodes ── */
.vmv-node {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  /* Counter-rotate to keep icons upright */
  animation: vmvSpinReverse 28s linear infinite;
  border: 2px solid rgba(255,255,255,0.15);
  transition: transform 0.3s;
}
.vmv-node span {
  font-family: 'Orbitron', monospace;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.vmv-node svg { opacity: 0.9; }

/* Node colour themes */
.vmv-node--vision   { background: rgba(0,212,255,0.18);  border-color: rgba(0,212,255,0.45);  color: #00d4ff; }
.vmv-node--mission  { background: rgba(0,102,255,0.18);  border-color: rgba(0,102,255,0.45);  color: #0066ff; }
.vmv-node--values   { background: rgba(124,58,237,0.18); border-color: rgba(124,58,237,0.45); color: #7c3aed; }
.vmv-node--approach { background: rgba(20,184,166,0.18); border-color: rgba(20,184,166,0.45); color: #14b8a6; }

/* ── Ring center badge ── */
.vmv-ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.vmv-ring-center::before {
  content: '';
  position: absolute;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 3px solid rgba(255,255,255,0.07);
}
.vmv-center-god {
  position: relative;
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  z-index: 1;
}
.vmv-center-god em {
  font-style: normal;
  color: var(--cyan);
}
.vmv-center-sub {
  position: relative;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  z-index: 1;
}

/* ── Content cards (right side) ── */
.vmv-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.vmv-content-item {
  padding: 24px 0 24px 24px;
  border-left: 2px solid rgba(255,255,255,0.06);
  transition: border-color 0.3s;
}
.vmv-content-item:hover { border-left-color: var(--cyan); }
.vmv-content-item + .vmv-content-item { border-top: 1px solid rgba(255,255,255,0.04); }

.vmv-ci-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.vmv-ci-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.vmv-ci--vision   .vmv-ci-dot { background: rgba(0,212,255,0.9); }
.vmv-ci--mission  .vmv-ci-dot { background: rgba(0,102,255,0.9); }
.vmv-ci--values   .vmv-ci-dot { background: rgba(124,58,237,0.9); }
.vmv-ci--approach .vmv-ci-dot { background: rgba(20,184,166,0.9); }

.vmv-ci--vision:hover   { border-left-color: rgba(0,212,255,0.6); }
.vmv-ci--mission:hover  { border-left-color: rgba(0,102,255,0.6); }
.vmv-ci--values:hover   { border-left-color: rgba(124,58,237,0.6); }
.vmv-ci--approach:hover { border-left-color: rgba(20,184,166,0.6); }

.vmv-content-item h3 {
  font-family: 'Orbitron', monospace;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
.vmv-content-item > p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0;
}

/* Values pills */
.vmv-values-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.vmv-values-pills span {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 100px;
  padding: 4px 14px;
}

/* Approach flow */
.vmv-approach-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.vmv-approach-flow span {
  font-family: 'Orbitron', monospace;
  font-size: 0.68rem;
  font-weight: 700;
  color: #14b8a6;
  letter-spacing: 0.05em;
}
.vmv-arrow {
  color: rgba(255,255,255,0.3) !important;
  font-size: 0.7rem !important;
  font-family: inherit !important;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */
.contact-section { background: var(--bg-deep); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  margin-top: 60px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 28px; }

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

.cd-icon { font-size: 1.5rem; }

.cd-label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.contact-detail a, .contact-detail span {
  font-size: 1rem;
  color: var(--text);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }

.form-success {
  display: none;
  color: var(--cyan);
  font-size: 0.9rem;
  text-align: center;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--cyan-dim);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px 48px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-brand p { font-size: 0.8rem; color: var(--muted); }

.footer-tagline {
  color: var(--cyan) !important;
  font-size: 0.75rem !important;
  margin-top: 8px;
}

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

.fl-group { display: flex; flex-direction: column; gap: 10px; }

.fl-group h5 {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 6px;
}

.fl-group a, .fl-group span {
  font-size: 0.86rem;
  color: var(--muted);
  transition: color 0.2s;
}

.fl-group a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-sectors {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-sectors span {
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   AOS (Animate on Scroll)
═══════════════════════════════════════════════════════════ */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.08); }
}

@keyframes scrollPulse {
  0%   { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0.3); opacity: 0.2; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Why accordion: stack text above accordion on smaller desktops */
  .why-layout { flex-direction: column; gap: 40px; }
  .why-text { flex: none; width: 100%; text-align: center; }
  .why-desc { max-width: 560px; margin-left: auto; margin-right: auto; }
  .why-accordion { width: 100%; height: 380px; }
  .wa-item { flex: 0 0 46px; }

  /* Pillars: collapse to single column, circle floats to top */
  .pillars-3col {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .pillars-center-col {
    grid-column: 1 / -1;
    grid-row: 1;
    margin-bottom: 28px;
  }
  .pillars-col:first-child { grid-row: 2; grid-column: 1; }
  .pillars-col:last-child  { grid-row: 2; grid-column: 2; }
}

@media (max-width: 900px) {
  /* VMV: stack ring above content */
  .vmv-layout { grid-template-columns: 1fr; gap: 48px; }
  .vmv-ring-wrap { order: -1; }
  .vmv-ring, .vmv-ring-wrap { width: 100%; max-width: 360px; height: 360px; margin: 0 auto; }
  /* Recalculate node positions for 360px ring (radius=120, nodeSize=64, center=180) */
  .vmv-node { width: 64px; height: 64px; }
  .vmv-node[style*="top:20px"]   { top:16px !important;  left:148px !important; }
  .vmv-node[style*="left:340px"] { top:148px !important; left:276px !important; }
  .vmv-node[style*="top:340px"]  { top:280px !important; left:148px !important; }
  .vmv-node[style*="left:20px"]  { top:148px !important; left:20px !important;  }

  .rm-spline-card { grid-template-columns: 1fr; min-height: auto; }
  .rm-card-right { height: 300px; order: -1; }
  .rm-card-left { padding: 36px 28px 28px; }
  .spline-hero-card { grid-template-columns: 1fr; min-height: auto; }
  .spline-hero-right { height: 300px; }
  .spline-hero-left { padding: 40px 32px 28px; }
  /* BounceCard grid: collapse all spans to full-width on tablet/mobile */
  .spline-cards-grid { grid-template-columns: 1fr; }
  .spline-detail-card:nth-child(1),
  .spline-detail-card:nth-child(2),
  .spline-detail-card:nth-child(3),
  .spline-detail-card:nth-child(4) { grid-column: span 1; }
  .div-cards   { width: 90vw; max-width: 440px; height: auto; min-height: 560px; }
  .div-card    { padding: 24px 20px; position: relative; top: auto !important; }
  .div-card-tagline { font-size: 0.68rem; }
  .div-tag { font-size: 0.6rem; padding: 2px 7px; }
  .commit-cards { width: 90vw; max-width: 440px; height: 380px; }
  .commit-card { padding: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }

  /* Ecosystem scene tablet */
  .eco-scene { width: 420px; height: 420px; }
  .eco-ring-outer { width: 420px; height: 420px; }
  .eco-ring-mid   { width: 340px; height: 340px; }
  .eco-gradient-wrap { width: 280px; height: 280px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0; background: rgba(6,11,24,0.98); padding: 24px; gap: 20px; border-bottom: 1px solid var(--border); backdrop-filter: blur(16px); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  /* Why accordion mobile — compact height, smaller tabs */
  .why-accordion { height: 300px; gap: 5px; }
  .wa-item { flex: 0 0 38px; border-radius: 10px; }
  .wa-title { font-size: 0.68rem; }
  .wa-item.active .wa-title { font-size: 0.86rem; }
  .wa-desc { font-size: 0.72rem; }

  /* Pillars mobile: full single column */
  .pillars-3col { grid-template-columns: 1fr; }
  .pillars-center-col { grid-column: 1; grid-row: 1; }
  .pillars-col:first-child { grid-row: 2; grid-column: 1; }
  .pillars-col:last-child  { grid-row: 3; grid-column: 1; }
  .pillars-center-ring { width: 200px; height: 200px; }

  /* Ecosystem scene mobile */
  .eco-scene { width: 310px; height: 310px; }
  .eco-ring-outer { width: 310px; height: 310px; }
  .eco-ring-mid   { width: 254px; height: 254px; }
  .eco-gradient-wrap { width: 200px; height: 200px; }
  .eco-node-card { width: 68px; height: 68px; font-size: 0.6rem; padding: 10px 5px; }
  .eco-ni { font-size: 1.1rem; }
  .eco-center-text h3 { font-size: 0.82rem; }
  .eco-center-text p  { font-size: 0.62rem; }

  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2.4rem, 12vw, 4rem); }
  .roadmap-timeline { padding-left: 20px; }
  .rm-icon { margin-left: -40px; width: 42px; height: 42px; min-width: 42px; }
}


/* ═══════════════════════════════════════════════════════════
   WHITE THEME — Specific overrides for elements with
   hardcoded dark/rgba-white values
═══════════════════════════════════════════════════════════ */

/* ── Navbar — white glass ── */
.navbar {
  background: rgba(255, 255, 255, 0.90) !important;
  border-bottom: 1px solid rgba(0, 0, 80, 0.07);
  box-shadow: 0 2px 16px rgba(0, 0, 60, 0.06);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97) !important;
  border-bottom: 1px solid rgba(0, 0, 80, 0.10) !important;
}
.logo-text        { color: #0d1b2e; }
.logo-sub         { color: var(--muted); }
.nav-links a      { color: #374266; }
.nav-links a:hover,
.nav-links a.active { color: var(--cyan); }
.hamburger span   { background: #0d1b2e; }

/* ── Hero — keep fully dark (video bg) ── */
.hero { background: #060b18 !important; }
.hv2-white  { color: #ffffff !important; }
.hv2-muted  { color: rgba(255,255,255,0.48) !important; }
.hero-title-v2,
.hero-scroll-hint { color: #ffffff; }
/* gradient overlay tones stay as-is */

/* ── Section-wide headings ── */
.section-title   { color: #0d1b2e; }
.section-eyebrow { color: var(--cyan); }

/* ── Ecosystem ── */
.eco-header h2,
.eco-center-text h3    { color: #0d1b2e; }
.eco-header-sub,
.eco-center-text p     { color: var(--muted); }
.eco-node-card         { background: #fff; border: 1px solid rgba(0,80,200,0.10); box-shadow: 0 4px 18px rgba(0,0,50,0.07); }
.eco-node-card h4      { color: #0d1b2e; }
.eco-node-card p       { color: var(--text); }
.eco-ring-outer,
.eco-ring-mid          { border-color: rgba(0,80,200,0.12); }

/* ── Why God's i accordion ── */
.why-section           { background: var(--bg-dark); }
.why-text h2           { color: #0d1b2e; }
.why-desc              { color: var(--text); }
.wa-item               { border-color: rgba(0,0,80,0.08); }
.wa-overlay            { background: linear-gradient(to top, rgba(243,246,253,0.92) 0%, transparent 100%); }
.wa-title              { color: #0d1b2e; }
.wa-item:not(.active) .wa-title { color: var(--muted); }
.wa-item.active .wa-title       { color: var(--cyan); }
.wa-desc               { color: var(--text); }

/* ── Innovation Pillars ── */
.pillars-section       { background: var(--bg-deep); }
.pillars-header h2     { color: #0d1b2e; }
.pillars-header p      { color: var(--text); }
.pillar-card           { background: #fff; border-color: rgba(0,80,200,0.10); box-shadow: 0 4px 18px rgba(0,0,50,0.07); }
.pillar-card:hover     { border-color: var(--cyan); }
.pillar-card h3        { color: #0d1b2e; }
.pillar-card p         { color: var(--text); }
.pillar-tag            { background: var(--bg-card2); color: var(--text); border-color: var(--border); }

/* ── Divisions section header ── */
.divisions-section     { background: var(--bg-dark); }
.div-header h2         { color: #0d1b2e; }
.div-header-sub        { color: var(--muted); }

/* ── Divisions stabs sections ── */
.div-stabs .stabs-section--1 { background: #f5f8ff !important; }
.div-stabs .stabs-section--2 { background: #fff8f5 !important; }
.div-stabs .stabs-section--3 { background: #f5fbff !important; }
.div-stabs .stabs-section--4 { background: #f8f5ff !important; }
.div-stabs .stabs-hdr        { background: rgba(255,255,255,0.95) !important; backdrop-filter: blur(16px); }
.div-stabs .stabs-hdr        { border-top: 1px solid rgba(0,0,80,0.08); border-bottom: 1px solid rgba(0,0,80,0.08); }
.stabs-title           { color: #0d1b2e; }
.stabs-desc            { color: var(--text); }
.stabs-feat-list li strong { color: #0d1b2e; }
.stabs-feat-list li span   { color: var(--muted); }
.stabs-feat-icon       { background: rgba(0,0,60,0.05); border-color: rgba(0,0,80,0.08); }
.stabs-mini-card       { background: #fff; border-color: rgba(0,0,80,0.08); box-shadow: 0 2px 10px rgba(0,0,50,0.06); }
.stabs-mini-label      { color: var(--text); }
.div-goal-list li      { color: var(--text); }
.div-edu-path          { background: rgba(0,0,60,0.03); border-color: rgba(0,0,80,0.08); }
.div-edu-path span     { color: var(--text); }
.div-prod-card         { background: #fff; border-color: rgba(0,0,80,0.08); }
.div-prod-card h4      { color: #0d1b2e; }
.div-prod-card ul li   { color: var(--muted); }
.div-pillar            { background: rgba(0,0,60,0.04); border-color: rgba(0,0,80,0.08); color: var(--text); }
.div-quote             { color: var(--muted); }
.div-innov-goal        { color: var(--text); }
.div-tag               { background: rgba(0,0,80,0.06); color: var(--text); border-color: rgba(0,0,80,0.10); }
.div-stabs-cta         { color: var(--phase-color); border-color: var(--phase-color); }
.div-stabs-cta:hover   { background: var(--phase-color); color: #fff; }
.stabs-feat-head       { color: var(--phase-color); opacity: 1; }

/* ── Process (SSC) sticky-scroll cards ── */
.process-section       { background: var(--bg-dark); }
.proc-header h2        { color: #0d1b2e; }
.proc-subtitle         { color: var(--text); }
.ssc-card--1           { background: #f0faff; border-color: rgba(0,144,184,0.22); --card-accent: #0090b8; }
.ssc-card--2           { background: #f0f5ff; border-color: rgba(0,82,212,0.20); --card-accent: #0052d4; }
.ssc-card--3           { background: #f6f0ff; border-color: rgba(110,60,220,0.20); --card-accent: #6e3cdc; }
.ssc-card--4           { background: #f0fff8; border-color: rgba(5,160,100,0.20);  --card-accent: #05a064; }
.ssc-card              { box-shadow: 0 10px 40px rgba(0,0,50,0.08) !important; }
.ssc-card-title        { color: #0d1b2e !important; }
.ssc-card-desc         { color: var(--text) !important; }
.ssc-feat-list li      { color: var(--text) !important; }
.ssc-feat-list li strong { color: #0d1b2e !important; }
.ssc-img-wrap          { box-shadow: 0 12px 40px rgba(0,0,60,0.14) !important; }
.ssc-feat-dot          { box-shadow: 0 0 6px var(--card-accent) !important; }

/* ── Roadmap section ── */
.roadmap-section       { background: var(--bg-deep); }
.rm-header h2          { color: #0d1b2e; }
.rm-spline-card        { background: linear-gradient(135deg, #f0f5ff 0%, #e8f0ff 100%); border: 1px solid rgba(0,80,200,0.15); }
.rm-card-intro         { color: var(--text); }
.rm-si-body h4         { color: #0d1b2e; }
.rm-si-body p          { color: var(--muted); }
.rm-cta                { color: var(--cyan); border-color: var(--cyan); }
.rm-cta:hover          { background: var(--cyan); color: #fff; }

/* ── Commitment section header ── */
.commitment-section    { background: var(--bg-dark); }
.commit-header h2      { color: #0d1b2e; }
.commit-scroll-hint    { color: var(--muted); }
/* Colored commit-cards keep white text — they look great on light page */

/* ── Innovation Process (stabs) section headings ── */
.stabs-section         { background: var(--bg-deep) !important; }
.stabs-section:nth-child(even) { background: var(--bg-dark) !important; }
.stabs-hdr             { background: rgba(255,255,255,0.95) !important; }
.stabs-hdr             { border-top-color: rgba(0,0,80,0.08) !important; border-bottom-color: rgba(0,0,80,0.08) !important; }
/* Already covered for div-stabs above; these cover the process section stabs if used */

/* ── VMV section ── */
.vmv-section           { background: var(--bg-deep); }
.vmv-content-item      { border-left-color: rgba(0,80,200,0.12); border-top-color: rgba(0,80,200,0.06); }
.vmv-content-item:hover { border-left-color: var(--cyan); }
.vmv-content-item + .vmv-content-item { border-top-color: rgba(0,0,80,0.06) !important; }
.vmv-content-item h3   { color: #0d1b2e; }
.vmv-content-item > p  { color: var(--text); }
/* ring-center fills inset:0 — background must be transparent so nodes aren't painted over;
   the ::before circle provides the centre disc background instead */
.vmv-ring-center       { background: transparent !important; }
.vmv-ring-center::before {
  background: radial-gradient(ellipse at center, #eef3ff 0%, #f3f7ff 70%, transparent 100%) !important;
  border-color: rgba(0,80,200,0.10) !important;
}
.vmv-ring-center span:first-child  { color: #0d1b2e; }
.vmv-ring-center span:last-child   { color: var(--muted); }
.vmv-ring              { border-color: rgba(0,80,200,0.15); }
.vmv-ring::before      { border-color: rgba(0,80,200,0.08); }

/* ── VMV nodes — light-theme fix (semi-transparent + white text = invisible) ── */
.vmv-node--vision   { background: rgba(0,144,184,0.12);  border-color: rgba(0,144,184,0.5);  color: #006fa0; box-shadow: 0 4px 16px rgba(0,144,184,0.18); }
.vmv-node--mission  { background: rgba(0,82,212,0.10);   border-color: rgba(0,82,212,0.45);  color: #0044bb; box-shadow: 0 4px 16px rgba(0,82,212,0.15); }
.vmv-node--values   { background: rgba(124,58,237,0.10); border-color: rgba(124,58,237,0.45);color: #6d28d9; box-shadow: 0 4px 16px rgba(124,58,237,0.15); }
.vmv-node--approach { background: rgba(5,150,105,0.10);  border-color: rgba(5,150,105,0.45); color: #047857; box-shadow: 0 4px 16px rgba(5,150,105,0.15); }
.vmv-node span      { color: var(--white) !important; }

/* ── Contact section ── */
.contact-section       { background: var(--bg-dark); }
.contact-section h2    { color: #0d1b2e; }
.contact-detail a,
.contact-detail span   { color: var(--text); }
.contact-detail strong { color: #0d1b2e; }
.contact-form input,
.contact-form textarea,
.contact-form select   { background: #fff; color: #0d1b2e; border-color: rgba(0,0,80,0.12); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,144,184,0.1); }
.contact-form label    { color: var(--text); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted); }

/* ── Footer — keep dark ── */
.footer                { background: #0a1628 !important; }
.footer *              { /* inherits dark bg, keep as-is */ }
.footer-tagline,
.footer-brand p        { color: rgba(255,255,255,0.5) !important; }
.footer-links a        { color: rgba(255,255,255,0.65) !important; }
.footer-links a:hover  { color: #fff !important; }
.footer-bottom         { border-color: rgba(255,255,255,0.08) !important; color: rgba(255,255,255,0.35) !important; }
.footer-logo-text      { color: #fff !important; }
.footer-link-group h4  { color: rgba(255,255,255,0.4) !important; }

/* ── CTA buttons ── */
.sc-cta, .rm-cta, .div-stabs-cta {
  border-color: var(--cyan);
  color: var(--cyan);
}
.sc-cta:hover, .rm-cta:hover, .div-stabs-cta:hover {
  background: var(--cyan);
  color: #fff;
}

/* ── Stat numbers in hero / commitment ── */
.stat-number { color: var(--cyan); }
.stat-label  { color: var(--muted); }

/* ── Global body bg ── */
body {
  background: #f8faff;
}

/* ── Scrollbar light ── */
::-webkit-scrollbar       { width: 8px; }
::-webkit-scrollbar-track { background: #edf1ff; }
::-webkit-scrollbar-thumb { background: rgba(0,80,200,0.2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--cyan); }

/* ── Hero mask gradients — keep dark to match video bg ── */
.hero-mask-top    { background: linear-gradient(to bottom, #060b18 0%, transparent 100%); }
.hero-mask-bottom { background: linear-gradient(to top, #0a1628 0%, transparent 100%); }

/* ── Top-of-page body gradient stays dark on hero, then transitions ── */
.hero + section,
.hero + * { background: var(--bg-dark); }

/* ── Roadmap spotlight reduce opacity for light bg ── */
.rm-spotlight-svg ellipse { fill-opacity: 0.06; }

/* ════════════════════════════════════════════════════════════
   ATTRACTIVENESS IMPROVEMENTS
   ════════════════════════════════════════════════════════════ */

/* ── Scroll progress bar ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--blue) 60%, #8b5cf6 100%);
  z-index: 10000;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ── Stats bar ── */
.stats-bar {
  background: #0a1628;
  padding: 22px 40px;
  position: relative;
  overflow: hidden;
}
/* gradient bridge from stats bar into white sections */
.stats-bar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 32px;
  background: linear-gradient(to bottom, transparent 0%, #ffffff 100%);
  pointer-events: none;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--blue) 50%, #8b5cf6 100%);
  opacity: 0.06;
}
.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  position: relative;
}
.stat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 32px;
}
.sp-num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 1px;
  line-height: 1;
}
.sp-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}
.sp-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .stats-bar { padding: 18px 20px; }
  .stat-pill { padding: 8px 18px; }
  .sp-num { font-size: 1.1rem; }
  .sp-divider { display: none; }
}

/* ── Footer improvements ── */
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.footer-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: contain;
  object-position: center;
  background: #0a1628;
  padding: 3px;
  border: 1px solid rgba(0,212,255,0.18);
}
.footer-logo-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
}
.footer-logo-i {
  color: #00d4ff;
}
.footer-logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-top: 2px;
}
.footer-desc {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.7;
  max-width: 320px;
  margin: 10px 0 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.fsoc-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  text-decoration: none;
}
.fsoc-link:hover {
  background: rgba(0,212,255,0.12);
  border-color: rgba(0,212,255,0.4);
  color: #00d4ff;
  transform: translateY(-2px);
}
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08) 30%, rgba(0,212,255,0.15) 50%, rgba(255,255,255,0.08) 70%, transparent);
  margin: 0 40px;
}

/* ── Stats bar counter animation ── */
@keyframes countUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.stats-bar.visible .stat-pill {
  animation: countUp 0.5s ease forwards;
}
.stats-bar.visible .stat-pill:nth-child(1) { animation-delay: 0.05s; }
.stats-bar.visible .stat-pill:nth-child(2) { animation-delay: 0.15s; }
.stats-bar.visible .stat-pill:nth-child(3) { animation-delay: 0.25s; }
.stats-bar.visible .stat-pill:nth-child(4) { animation-delay: 0.35s; }
.stats-bar.visible .stat-pill:nth-child(5) { animation-delay: 0.45s; }
.stats-bar .stat-pill { opacity: 0; }

/* ── Section dividers — subtle gradient lines ── */
.ecosystem-scroll,
.why-section,
.pillars-section,
.divisions-section,
.roadmap-section,
.process-section,
.commitment-section,
.vmv-section,
.contact-section {
  position: relative;
}
.ecosystem-scroll::before,
.pillars-section::before,
.roadmap-section::before,
.contact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 30%, var(--cyan-glow) 50%, var(--border) 70%, transparent);
  pointer-events: none;
}

/* ── VMV ring center logo ── */
.vmv-center-logo {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: contain;
  background: #0a1628;
  padding: 6px;
  border: 2px solid rgba(0,212,255,0.25);
  box-shadow: 0 0 24px rgba(0,212,255,0.18), 0 4px 16px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════════════════════════════════
   PROJECTS SECTION
   ════════════════════════════════════════════════════════════ */

.projects-section {
  background: var(--bg-dark);
  padding: 100px 0 120px;
}

.projects-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 64px;
  text-align: center;
  line-height: 1.75;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Card ── */
.proj-card {
  background: var(--bg-card);
  border-radius: 24px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.proj-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,60,0.12);
}

/* ── Visual hero ── */
.proj-card-visual {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.proj-visual-bg {
  position: absolute;
  inset: 0;
}
.proj-visual--hydrogen .proj-visual-bg {
  background: linear-gradient(135deg, #0c2a4a 0%, #0a1e38 50%, #041427 100%);
}
.proj-visual--medbatt .proj-visual-bg {
  background: linear-gradient(135deg, #052e1c 0%, #063824 50%, #031a11 100%);
}
.proj-icon-wrap {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 28px rgba(56,189,248,0.35));
}
.proj-visual--medbatt .proj-icon-wrap {
  filter: drop-shadow(0 0 28px rgba(52,211,153,0.35));
}
.proj-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-head);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 2;
}
.proj-visual--hydrogen .proj-tag {
  background: rgba(56,189,248,0.15);
  border: 1px solid rgba(56,189,248,0.35);
  color: #38bdf8;
}
.proj-visual--medbatt .proj-tag {
  background: rgba(52,211,153,0.15);
  border: 1px solid rgba(52,211,153,0.35);
  color: #34d399;
}

/* Grid lines decoration */
.proj-card-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* ── Body ── */
.proj-card-body {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.proj-number {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--muted);
  margin-bottom: 8px;
}
.proj-title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.proj-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 20px;
}
.proj-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.proj-highlights li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.83rem;
  color: var(--text);
}
.proj-visual--hydrogen ~ .proj-card-body .proj-highlights li svg,
.proj-card:first-child .proj-highlights li svg { color: #0090b8; }
.proj-card:last-child .proj-highlights li svg  { color: #059669; }

.proj-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.proj-tags span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  color: var(--muted);
  letter-spacing: 0.5px;
}
.proj-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}
.pstatus-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pstatus-dot--active {
  background: #0090b8;
  box-shadow: 0 0 0 3px rgba(0,144,184,0.2);
  animation: pulseDot 2s ease-in-out infinite;
}
.pstatus-dot--research {
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.2);
  animation: pulseDot 2s ease-in-out infinite 0.6s;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(0,144,184,0.2); }
  50%       { box-shadow: 0 0 0 6px rgba(0,144,184,0.08); }
}

@media (max-width: 768px) {
  .projects-grid { grid-template-columns: 1fr; }
  .proj-card-body { padding: 22px 22px 24px; }
}

/* ── Project card CTA link ── */
.proj-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cyan);
  text-decoration: none;
  transition: gap 0.2s, opacity 0.2s;
}
.proj-cta-link:hover { gap: 10px; opacity: 0.8; }

/* ── Scroll-to-top button ── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #0a1628;
  border: 1px solid rgba(0,144,184,0.3);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9000;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top:hover {
  background: var(--cyan);
  color: #fff;
  border-color: var(--cyan);
  transform: translateY(-2px);
}

/* ── Form error / success messages ── */
.form-error {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.86rem;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.25);
  color: #dc2626;
}

/* ── Pillars center ring — flame wrap ── */
.pcc-flame-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pcc-flames {
  position: absolute;
  inset: -22px;
  width: calc(100% + 44px);
  height: calc(100% + 44px);
  pointer-events: none;
  z-index: 0;
  animation: flameRotate 12s linear infinite;
}
@keyframes flameRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.pcc-flame-wrap .pillars-center-ring {
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════════════════════════════════
   PAGE LOADER  —  3D Cube splash screen
   ════════════════════════════════════════════════════════════ */

#page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #060b18;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#page-loader.loader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-scene {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  perspective: 1200px;
}

/* ── Branding ── */
.loader-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: loaderFadeIn 0.6s ease both;
}
.loader-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: contain;
  background: #0a1628;
  padding: 3px;
  border: 1px solid rgba(0,212,255,0.2);
}
.loader-brand-name {
  font-family: 'Orbitron', monospace;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #ffffff;
}
.loader-brand-name span { color: #00d4ff; }

/* ── Cube container ── */
.loader-cube-wrap {
  position: relative;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  animation: loaderFadeIn 0.5s ease 0.1s both;
}

.loader-cube {
  position: relative;
  width: 96px;
  height: 96px;
  transform-style: preserve-3d;
  animation: cubeSpin 8s linear infinite;
}

/* Inner core */
.cube-core {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  filter: blur(8px);
  box-shadow: 0 0 40px rgba(255,255,255,0.8);
  animation: corePulse 2s ease-in-out infinite;
}

/* Side wrappers — each faces a direction */
.side-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}
.sw-front  { transform: rotateY(0deg);    }
.sw-back   { transform: rotateY(180deg);  }
.sw-right  { transform: rotateY(90deg);   }
.sw-left   { transform: rotateY(-90deg);  }
.sw-top    { transform: rotateX(90deg);   }
.sw-bottom { transform: rotateX(-90deg);  }

/* Cube faces */
.cube-face {
  width: 96px;
  height: 96px;
  position: absolute;
  backdrop-filter: blur(2px);
  animation: faceBreathe 3s ease-in-out infinite;
}
.cf-cyan {
  background: rgba(34,211,238,0.10);
  border: 2px solid rgba(34,211,238,0.85);
  box-shadow: 0 0 15px rgba(34,211,238,0.4);
}
.cf-purple {
  background: rgba(168,85,247,0.10);
  border: 2px solid rgba(168,85,247,0.85);
  box-shadow: 0 0 15px rgba(168,85,247,0.4);
}
.cf-indigo {
  background: rgba(99,102,241,0.10);
  border: 2px solid rgba(99,102,241,0.85);
  box-shadow: 0 0 15px rgba(99,102,241,0.4);
}

/* Floor shadow */
.cube-floor-shadow {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 32px;
  background: rgba(0,0,0,0.4);
  border-radius: 100%;
  filter: blur(12px);
  animation: shadowBreathe 3s ease-in-out infinite;
}

/* ── Text ── */
.loader-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: loaderFadeIn 0.5s ease 0.2s both;
}
.loader-text h3 {
  font-family: 'Orbitron', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #67e8f9;
  text-transform: uppercase;
  margin: 0;
}
.loader-text p {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.75rem;
  color: rgba(148,163,184,0.8);
  margin: 0;
}

/* ── Progress track ── */
.loader-progress-track {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
  animation: loaderFadeIn 0.5s ease 0.3s both;
}
.loader-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #00d4ff 0%, #7c3aff 60%, #0052d4 100%);
  border-radius: 4px;
  transition: width 0.15s linear;
}

/* ── Keyframes ── */
@keyframes cubeSpin {
  0%   { transform: rotateX(0deg)   rotateY(0deg);   }
  100% { transform: rotateX(360deg) rotateY(360deg); }
}

@keyframes faceBreathe {
  0%, 100% { transform: translateZ(48px); opacity: 0.8; }
  50%       { transform: translateZ(80px); opacity: 0.4; }
}

@keyframes corePulse {
  0%, 100% { transform: scale(0.8); opacity: 0.5; }
  50%       { transform: scale(1.2); opacity: 1;   }
}

@keyframes shadowBreathe {
  0%, 100% { transform: translateX(-50%) scale(1);   opacity: 0.4; }
  50%       { transform: translateX(-50%) scale(1.5); opacity: 0.2; }
}

@keyframes loaderFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0);   }
}
