/* Core Variables & Reset */
:root {
  --bg-obsidian: #050505;
  --bg-obsidian-card: rgba(12, 12, 12, 0.7);
  --bg-obsidian-hover: rgba(22, 22, 22, 0.9);
  
  --color-gold-light: #f6e5c5;
  --color-gold: #d4af37;
  --color-gold-dark: #aa8420;
  
  --color-text-primary: #f8f9fa;
  --color-text-secondary: #9da3af;
  --color-green: #39d353;
  
  --border-gold-subtle: rgba(212, 175, 55, 0.08);
  --border-gold-active: rgba(212, 175, 55, 0.28);
  --border-gold-strong: rgba(212, 175, 55, 0.45);
  
  --font-title: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-obsidian);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  
  /* Delicate gold grid texture in background */
  background-image: 
    linear-gradient(rgba(212, 175, 55, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center top;
}

/* Ambient glows */
.radial-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
}

.glow-top {
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.07) 0%, rgba(212, 175, 55, 0.01) 60%, transparent 100%);
}

.glow-center {
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
}

/* Typography & General Styling */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 500;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Header styling */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(5, 5, 5, 0.75);
  border-bottom: 1px solid var(--border-gold-subtle);
  transition: var(--transition-smooth);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.2));
}

.logo-text {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-item {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-text-secondary);
  position: relative;
  padding: 0.25rem 0;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: var(--transition-fast);
}

.nav-item:hover {
  color: var(--color-text-primary);
}

.nav-item:hover::after {
  width: 100%;
}

.header-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--border-gold-subtle);
  border-radius: 9999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  color: var(--color-gold-light);
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-green);
  animation: statusPulse 2s infinite ease-in-out;
}

@keyframes statusPulse {
  0%, 100% {
    transform: scale(0.95);
    opacity: 0.7;
    box-shadow: 0 0 6px var(--color-green);
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
    box-shadow: 0 0 14px var(--color-green);
  }
}

/* Hero Section */
.hero-section {
  padding-top: 11rem;
  padding-bottom: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.badge-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.04);
  border: 1px solid var(--border-gold-subtle);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  cursor: pointer;
}

.pill-badge:hover {
  background: rgba(212, 175, 55, 0.16) !important;
  border-color: rgba(212, 175, 55, 0.6) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.2);
}

.badge-icon {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 45%, var(--color-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--color-text-secondary);
  margin-bottom: 3rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--bg-obsidian);
  border: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.02);
  color: var(--color-text-primary);
  border: 1px solid var(--border-gold-active);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: var(--border-gold-strong);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

/* Main Sections */
.section {
  padding: 6rem 2rem;
  position: relative;
  z-index: 1;
}

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

.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--color-text-secondary);
  font-weight: 300;
}

/* Grid & Cards */
.grid {
  display: grid;
  gap: 2rem;
}

.pillars-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card {
  background: var(--bg-obsidian-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold-strong);
  background: var(--bg-obsidian-hover);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.12);
}

.card-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--border-gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  color: var(--color-gold);
  transition: var(--transition-smooth);
}

.card:hover .card-icon-wrapper {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--border-gold-active);
  color: var(--color-gold-light);
  transform: scale(1.05);
}

.card-icon {
  width: 24px;
  height: 24px;
}

.card-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.card-desc {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  font-weight: 300;
}

.card-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card-bullets li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--color-text-primary);
}

.bullet-check {
  width: 16px;
  height: 16px;
  color: var(--color-gold);
}

/* System Integrity Section */
.integrity-section {
  padding-bottom: 4rem;
}

.integrity-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid var(--border-gold-active);
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.03), transparent 70%), var(--bg-obsidian-card);
}

.integrity-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3.5rem;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(57, 211, 83, 0.05);
  border: 1px solid rgba(57, 211, 83, 0.15);
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  color: var(--color-green);
  margin-bottom: 1.25rem;
}

.status-pulse {
  width: 7px;
  height: 7px;
  background-color: var(--color-green);
  border-radius: 50%;
  position: relative;
}

.status-pulse::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--color-green);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(3.5); opacity: 0; }
}

.status-text {
  font-weight: 500;
  letter-spacing: 0.05em;
}

.integrity-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.status-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.status-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-gold-subtle);
  border-radius: 8px;
  padding: 1.75rem;
  text-align: center;
  transition: var(--transition-fast);
}

.status-box:hover {
  border-color: var(--border-gold-active);
  background: rgba(0, 0, 0, 0.5);
}

.status-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.status-val {
  display: block;
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
}

.text-green {
  color: var(--color-green);
  text-shadow: 0 0 10px rgba(57, 211, 83, 0.15);
}

.text-gold {
  color: var(--color-gold-light);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.status-sub {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  font-weight: 300;
}

.integrity-footer {
  display: flex;
  gap: 1.25rem;
  background: rgba(212, 175, 55, 0.02);
  border: 1px dashed var(--border-gold-subtle);
  border-radius: 8px;
  padding: 1.5rem;
  align-items: flex-start;
}

.lock-icon {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.integrity-note {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  font-weight: 300;
}

/* LLC Charter Section */
.mandate-card {
  max-width: 800px;
  margin: 0 auto;
  border-left: 2px solid var(--color-gold);
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.02) 0%, transparent 100%);
  padding: 3rem 2.5rem;
}

.mandate-tag {
  display: block;
  font-size: 0.85rem;
  color: var(--color-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.mandate-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.mandate-text {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.sig-container {
  margin-top: 2.5rem;
  border-top: 1px solid var(--border-gold-subtle);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
}

.sig-title {
  font-family: var(--font-title);
  color: var(--color-text-primary);
  font-weight: 500;
}

.sig-sub {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
}

/* Footer */
.site-footer {
  background-color: #020202;
  border-top: 1px solid var(--border-gold-subtle);
  padding: 4.5rem 2rem 3rem;
  position: relative;
  z-index: 1;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo .logo-text {
  font-size: 1.1rem;
}

.footer-motto {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  font-weight: 300;
}

.footer-divider {
  height: 1px;
  background-color: var(--border-gold-subtle);
  margin: 2.5rem 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.copyright {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.disclosure {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  max-width: 500px;
  text-align: right;
  line-height: 1.5;
  font-weight: 300;
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .header-container {
    padding: 1rem;
  }
  .nav-links {
    display: none; /* Hide simple nav links on mobile for premium simplicity */
  }
  .hero-section {
    padding-top: 9rem;
    padding-bottom: 5rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .section {
    padding: 4rem 1.5rem;
  }
  .card {
    padding: 2.25rem 1.75rem;
  }
  .disclosure {
    text-align: left;
  }
  .footer-bottom {
    flex-direction: column;
  }
}

/* Progressive Enhancement: Scroll-Driven Entry Transitions */

/* 1. Default Style for non-supporting browsers with IntersectionObserver fallback active */
.scroll-reveal {
  opacity: 1; /* Fallback starts visible so page functions without JS */
}

/* Always visible by default across all browsers */
.scroll-reveal {
  opacity: 1;
  transform: none;
}

/* 2. Native Scroll-Driven Animations in modern browsers */
@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    @keyframes fade-up {
      from {
        opacity: 0;
        transform: translateY(35px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .scroll-reveal {
      animation: fade-up auto linear backwards;
      animation-timeline: view();
      animation-range: entry 5% entry 35%;
    }
  }
}

/* ═════════════════════════════════════════════════════════════════
   3D COSMIC STARFIELD & SCIENTIFIC PAPERS SHOWCASE
   ═════════════════════════════════════════════════════════════════ */

#cosmicStarfieldCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

.papers-section {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  background: radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.04) 0%, rgba(3, 7, 18, 0.8) 70%);
  padding: 5rem 1.5rem;
}

.paper-card {
  background: linear-gradient(180deg, rgba(16, 20, 32, 0.85) 0%, rgba(8, 10, 18, 0.95) 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.paper-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.18);
}

.paper-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, #00f2fe, transparent);
}

.paper-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 8px;
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  width: fit-content;
}

.paper-merkle-banner {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 16px;
  padding: 18px 24px;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* ═══════════════════════════════════════════════════════════════
   ✦ 4-QUADRANT SOVEREIGN REVOLVING GLOBE MATRIX (Michael's Sketch)
   ═══════════════════════════════════════════════════════════════ */
.globe-matrix-section {
  position: relative;
  padding: 4rem 1.5rem 6rem;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 10;
}

.globe-matrix-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3.5rem;
}

.globe-matrix-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 380px 1fr;
  grid-template-rows: auto auto;
  gap: 28px;
  align-items: center;
  justify-content: center;
  min-height: 580px;
}

/* Central Globe Canvas Hub */
.globe-center-hub {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 15;
}

.globe-canvas-wrapper {
  position: relative;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 40% 40%, rgba(212, 175, 55, 0.12) 0%, rgba(5, 5, 8, 0.96) 75%);
  box-shadow: 
    0 0 70px rgba(212, 175, 55, 0.28),
    inset 0 0 45px rgba(212, 175, 55, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.4);
}

#sovereignGlobeCanvas {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  cursor: grab;
}

.globe-center-badge {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(12, 16, 28, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.35);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

/* Quadrant Callout Cards */
.quadrant-card {
  position: relative;
  background: linear-gradient(135deg, rgba(14, 18, 30, 0.94) 0%, rgba(8, 10, 16, 0.90) 100%);
  border-radius: 20px;
  padding: 24px 26px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.65);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  z-index: 10;
}

.quadrant-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.85);
}

/* Quadrant Placements (matching sketch) */
.quadrant-tl { /* Teaching: Top Left */
  grid-column: 1;
  grid-row: 1;
  border-color: rgba(16, 185, 129, 0.35);
}
.quadrant-tl:hover, .quadrant-tl.active-focus {
  border-color: #10b981;
  box-shadow: 0 0 35px rgba(16, 185, 129, 0.3);
}

.quadrant-tr { /* Tech: Top Right */
  grid-column: 3;
  grid-row: 1;
  border-color: rgba(0, 242, 254, 0.35);
}
.quadrant-tr:hover, .quadrant-tr.active-focus {
  border-color: #00f2fe;
  box-shadow: 0 0 35px rgba(0, 242, 254, 0.3);
}

.quadrant-bl { /* VR: Bottom Left */
  grid-column: 1;
  grid-row: 2;
  border-color: rgba(168, 85, 247, 0.35);
}
.quadrant-bl:hover, .quadrant-bl.active-focus {
  border-color: #a855f7;
  box-shadow: 0 0 35px rgba(168, 85, 247, 0.3);
}

.quadrant-br { /* Meds: Bottom Right */
  grid-column: 3;
  grid-row: 2;
  border-color: rgba(244, 63, 94, 0.35);
}
.quadrant-br:hover, .quadrant-br.active-focus {
  border-color: #f43f5e;
  box-shadow: 0 0 35px rgba(244, 63, 94, 0.3);
}

/* SVG Vector Connectors Overlay */
.quadrant-connectors-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
}

.connector-line {
  stroke-dasharray: 6 6;
  animation: beamFlow 16s linear infinite;
  transition: stroke 0.3s, stroke-width 0.3s, opacity 0.3s, filter 0.3s;
}

.connector-line.active-beam {
  stroke-dasharray: 8 4;
  animation: beamFlow 3s linear infinite;
  opacity: 1 !important;
  stroke-width: 2.8px !important;
}

.connector-line.dimmed-beam {
  opacity: 0.16 !important;
  stroke-width: 1px !important;
}

.dock-node {
  transition: r 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s, filter 0.3s;
}

.dock-node.active-dock {
  r: 7.5px !important;
  opacity: 1 !important;
  filter: drop-shadow(0 0 10px currentColor);
}

@keyframes beamFlow {
  from { stroke-dashoffset: 200; }
  to { stroke-dashoffset: 0; }
}

/* Header within Card */
.quadrant-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.quadrant-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
}

.tag-teaching { background: rgba(16, 185, 129, 0.15); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.4); }
.tag-tech { background: rgba(0, 242, 254, 0.15); color: #38bdf8; border: 1px solid rgba(0, 242, 254, 0.4); }
.tag-vr { background: rgba(168, 85, 247, 0.15); color: #c084fc; border: 1px solid rgba(168, 85, 247, 0.4); }
.tag-meds { background: rgba(244, 63, 94, 0.15); color: #fb7185; border: 1px solid rgba(244, 63, 94, 0.4); }

.status-badge-live {
  font-size: 0.68rem;
  font-weight: 800;
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.5);
  display: flex;
  align-items: center;
  gap: 5px;
}

.status-badge-soon {
  font-size: 0.68rem;
  font-weight: 800;
  background: rgba(168, 85, 247, 0.2);
  color: #c084fc;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(168, 85, 247, 0.5);
  display: flex;
  align-items: center;
  gap: 5px;
}

.quadrant-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.quadrant-desc {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 16px;
}

.quadrant-roadmap {
  background: rgba(3, 7, 18, 0.6);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.74rem;
  color: #cbd5e1;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.quadrant-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  flex-wrap: wrap;
}

/* Mobile & Tablet Responsive */
@media (max-width: 1024px) {
  .globe-matrix-stage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
  }
  .globe-center-hub {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 20px;
  }
  .quadrant-tl { grid-column: 1; grid-row: 2; }
  .quadrant-tr { grid-column: 1; grid-row: 3; }
  .quadrant-br { grid-column: 1; grid-row: 4; }
  .quadrant-bl { grid-column: 1; grid-row: 5; }
  .quadrant-connectors-svg { display: none; }
}


