/*
 * Mindverse Computing - Investor Enhancement Styles
 * Premium design system for investor-grade presentation
 */

/* ===== DESIGN TOKENS ===== */
:root {
  /* Quantum-theme color palette */
  --quantum-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --quantum-secondary: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  --neural-accent: #00f2fe;
  --consciousness-dark: #0a0e27;
  --consciousness-darker: #05070f;
  --quantum-glow: rgba(102, 126, 234, 0.5);
  --neural-glow: rgba(0, 242, 254, 0.4);

  /* Enhanced spacing */
  --section-padding: 120px;
  --section-padding-mobile: 60px;

  /* Animation timings */
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===== FRESH HERO SECTION (Recreated) ===== */
.fresh-hero {
  /* Strictly defined Navy Gradient - No Black Box */
  background: linear-gradient(180deg, #151b3b 0%, #1B264F 100%) !important;
  position: relative;
  /* Standard modern hero height, not distorted */
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  z-index: 1;
}

/* Typography mirroring standard theme but ensuring visibility */
.fresh-title {
  text-transform: uppercase;
  color: #fff;
  font-size: 3.5rem;
  /* Large size */
  font-weight: 800;
  letter-spacing: .1rem;
  margin-bottom: 20px;
  display: block;
}

.fresh-slogan {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00f2fe;
  /* Cyan Base */
  line-height: 1.2;
  margin-bottom: 30px;
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.6), 0 0 20px rgba(0, 242, 254, 0.4);
  /* Glowing Effect */
}

.fresh-hero .fresh-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 100%;
  margin: 0;
  line-height: 1.6;
}

/* ===== HOME VISUAL RIGHT COLUMN ===== */
.home-visual-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* --- TOY BRAIN NETWORK --- */
.brain-network-visual {
  position: relative;
  width: 500px;
  height: 350px;
  margin-bottom: 40px;
  /* Visual container for the brain network */
}

/* Groove styles removed */

.brain-glow-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 120px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.4) 0%, transparent 70%);
  filter: blur(20px);
  animation: pulse-brain 4s infinite ease-in-out;
}

/* Dynamically generated nodes */
.dynamic-node {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  /* No shadow by default for clean "tiny dot" look */
  z-index: 2;
  transition: all 0.3s ease;
}

.dynamic-node.active-pulse {
  background: #fff;
  transform: scale(2.5);
  opacity: 1;
  box-shadow: 0 0 10px #ffffff, 0 0 20px #00f2fe;
}

/* Dynamic Edges (SVG Lines) */
.brain-edge-dynamic {
  transition: opacity 0.5s ease;
  filter: drop-shadow(0 0 5px rgba(0, 242, 254, 0.8));
}

/* Signal Path Animation */
.brain-signal-path {
  stroke: #ffffff;
  stroke-width: 2px;
  filter: drop-shadow(0 0 8px #ffffff);
  opacity: 1;
  transition: opacity 0.5s ease;
  z-index: 10;
}

/* Legacy static lines removed for dynamic JS network */

/* n1 -> n3 */
.l3 {
  top: 33%;
  left: 62%;
  width: 70px;
  transform: rotate(45deg);
}

/* n2 -> n4 */
.l4 {
  top: 53%;
  left: 23%;
  width: 80px;
  transform: rotate(30deg);
}

/* n3 -> n5 */
.l5 {
  top: 53%;
  left: 82%;
  width: 80px;
  transform: rotate(150deg);
}

/* n4 -> n6 */

@keyframes pulse-brain {

  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* --- HORIZONTAL GLOWING WORKFLOW --- */
.workflow-diagram-container-horizontal {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.workflow-node-circle {
  width: 60px;
  height: 60px;
  background: rgba(11, 16, 38, 0.9);
  border: 3px solid #00f2fe;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  z-index: 10;
}

.workflow-node-circle:hover {
  transform: scale(1.2);
  box-shadow: 0 0 30px rgba(0, 242, 254, 0.8);
  background: #00f2fe;
}

.workflow-node-circle:hover .node-icon-small {
  color: #000;
}

.node-icon-small {
  font-size: 1.5rem;
  color: #fff;
  transition: color 0.3s ease;
}

/* Tooltip for labels since nodes are small */
.node-tooltip {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0.8;
  border: 1px solid #00f2fe;
}

.workflow-line-horizontal {
  height: 6px;
  /* Thick Line */
  width: 50px;
  background: #00f2fe;
  box-shadow: 0 0 10px #00f2fe, 0 0 20px rgba(0, 242, 254, 0.5);
  margin: 0 -2px;
  /* Overlap slightly to prevent gaps */
  z-index: 1;
}

/* Ensure no inherited pseudo-elements create black boxes */
.fresh-hero::before,
.fresh-hero::after {
  display: none !important;
  content: none !important;
}

/* Animated particle background */
.quantum-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--neural-accent) 0%, transparent 70%);
  opacity: 0.3;
  animation: float-particle 20s infinite ease-in-out;
}

@keyframes float-particle {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }

  25% {
    transform: translate(50px, -100px) scale(1.2);
    opacity: 0.5;
  }

  50% {
    transform: translate(-30px, -200px) scale(0.8);
    opacity: 0.2;
  }

  75% {
    transform: translate(80px, -150px) scale(1.1);
    opacity: 0.4;
  }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  padding: 200px 0 120px;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #a8c8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(102, 126, 234, 0.3);
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.8rem;
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--neural-accent);
  font-weight: 600;
  margin-bottom: 2rem;
  text-shadow: 0 0 20px var(--neural-glow);
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  max-width: 650px;
  margin-bottom: 3rem;
}

/* Glowing CTA Button */
.cta-primary-glow {
  padding: 18px 50px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 50px;
  background: var(--quantum-primary);
  color: white;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
}

.cta-primary-glow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-primary-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(102, 126, 234, 0.6);
}

.cta-primary-glow:hover::before {
  width: 300px;
  height: 300px;
}

.cta-primary-glow:active {
  transform: translateY(-1px);
}

.cta-secondary {
  padding: 18px 50px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--neural-accent);
  border-radius: 50px;
  background: transparent;
  color: var(--neural-accent);
  cursor: pointer;
  margin-left: 1rem;
  transition: var(--transition-smooth);
}

.cta-secondary:hover {
  background: var(--neural-accent);
  color: var(--consciousness-dark);
  box-shadow: 0 10px 30px rgba(0, 242, 254, 0.3);
  transform: translateY(-3px);
}

/* Pulsing animation for urgency */
@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
  }

  50% {
    box-shadow: 0 15px 60px rgba(102, 126, 234, 0.7);
  }
}

.cta-primary-glow.pulse {
  animation: pulse-glow 2s infinite;
}

/* ===== MARKET OPPORTUNITY SECTION ===== */
.market-opportunity-section {
  background: linear-gradient(180deg, var(--consciousness-dark) 0%, var(--consciousness-darker) 100%);
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  .market-opportunity-section {
    padding: var(--section-padding-mobile) 0;
  }
}

.market-opportunity-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
  transform: translateX(-50%);
  z-index: 0;
}

.section-title-glow {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  color: #ffffff;
  /* Fallback color */
  background: linear-gradient(135deg, #ffffff 0%, var(--neural-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.3rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 4rem;
}

/* Glassmorphism Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  opacity: 1 !important;
  /* Force visible */
  transform: none !important;
  /* Force no transform */
  visibility: visible !important;
  /* Force visibility */
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--quantum-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(102, 126, 234, 0.3);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.glass-card:hover::before {
  transform: scaleX(1);
}

.glass-card-icon {
  font-size: 3rem;
  color: var(--neural-accent);
  margin-bottom: 1.5rem;
  display: block;
  filter: drop-shadow(0 0 20px var(--neural-glow));
}

.glass-card-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.glass-card-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #00f2fe;
  /* Fallback color */
  background: var(--quantum-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.glass-card-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Stats counters */
.stat-number {
  font-size: 4rem;
  font-weight: 900;
  color: #667eea;
  /* Fallback color */
  background: var(--quantum-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* ===== ENHANCED INVESTOR SECTION ===== */
.investor-section-premium {
  background: var(--consciousness-darker);
  padding: var(--section-padding) 0;
  position: relative;
}

.investor-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 4rem 0;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 15px;
  padding: 35px;
  text-align: center;
  transition: var(--transition-bounce);
  position: relative;
  opacity: 1 !important;
  /* Force visible */
  transform: none !important;
  /* Force no transform */
  visibility: visible !important;
  /* Force visibility */
}

.highlight-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--quantum-primary);
  border-radius: 15px;
  z-index: -1;
  opacity: 0;
  transition: var(--transition-smooth);
}

.highlight-card:hover {
  transform: scale(1.05);
  border-color: transparent;
}

.highlight-card:hover::after {
  opacity: 1;
}

.highlight-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--neural-accent);
  display: block;
  margin-bottom: 1rem;
  text-shadow: 0 0 30px var(--neural-glow);
}

.highlight-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.8rem;
}

.highlight-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* ===== RESEARCH NODES ===== */
.research-node {
  background: rgba(10, 14, 39, 0.6);
  border: 1px solid rgba(0, 242, 254, 0.1);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.research-node:hover {
  border-color: var(--neural-accent);
  box-shadow: 0 0 30px rgba(0, 242, 254, 0.15);
  transform: translateY(-5px);
}

.research-image-container {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.research-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.research-node:hover .research-image-container img {
  transform: scale(1.1);
}

.research-content {
  padding: 30px;
  flex-grow: 1;
}

.research-icon {
  color: var(--neural-accent);
  font-size: 1.5rem;
  margin-right: 10px;
}

.research-title {
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.research-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.research-list li {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.research-list li::before {
  content: '›';
  color: var(--neural-accent);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* ===== INTERACTIVE ELEMENTS ===== */
.floating-animation {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Scroll reveal animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SECTION FLOW & DEPTH ===== */
/* Zone 1: Launch (Top) */
/* Zone 1: Launch (Top) */
.bg-dark-base {
  background: linear-gradient(180deg, #0B1026 0%, #1B264F 100%) !important;
  /* Deep Navy Gradient */
  background-image: linear-gradient(180deg, #0B1026 0%, #1B264F 100%) !important;
}

.bg-dark-depth {
  background: linear-gradient(135deg, #16103a 0%, #3a1c52 100%) !important;
  /* Nebula: Indigo to Plum */
  background-image: linear-gradient(135deg, #16103a 0%, #3a1c52 100%) !important;
}

/* Zone 2: Nebula (Middle) */
.bg-bridge-indigo {
  background: linear-gradient(180deg, #0B1026 0%, #1f1140 100%) !important;
  /* Bridges Base -> Pink Core */
  background-image: linear-gradient(180deg, #0B1026 0%, #1f1140 100%) !important;
}

.bg-core-pink {
  background: linear-gradient(135deg, #1f1140 0%, #5a1e50 100%) !important;
  /* The "Pinkish" Peak */
  background-image: linear-gradient(135deg, #1f1140 0%, #5a1e50 100%) !important;
}

/* Zone 3: The Deep (Bottom) */
.bg-bridge-plum {
  background: linear-gradient(180deg, #5a1e50 0%, #2d0b30 100%) !important;
  /* Bridges Pink -> Magenta */
  background-image: linear-gradient(180deg, #5a1e50 0%, #2d0b30 100%) !important;
}

.bg-magenta-finish {
  background: linear-gradient(135deg, #2d0b30 0%, #0d1b38 100%) !important;
  /* Magenta into Deep Blue */
  background-image: linear-gradient(135deg, #2d0b30 0%, #0d1b38 100%) !important;
}

.bg-void-magenta {
  background: linear-gradient(135deg, #4a0e2e 0%, #0a0e27 100%) !important;
  /* Rich Magenta-Red to Deep Navy */
  background-image: linear-gradient(135deg, #4a0e2e 0%, #0a0e27 100%) !important;
}

/* ===== LIGHT THEME ALTERNATIVES (Tinted/Transparent Effect) ===== */

/* Zone A: Market (Light Navy Tint) - Matches Hero */
.bg-light-navy {
  background: #EBEFFC !important;
  background-image: linear-gradient(180deg, #EBEFFC 0%, #E3E8FA 100%) !important;
}

/* Zone B: Research (Light Indigo Tint) - Matches Tech */
.bg-light-indigo {
  background: #EFEEF9 !important;
  background-image: linear-gradient(180deg, #EFEEF9 0%, #E8E6F5 100%) !important;
}

/* Zone C: Footer Strip (Light Plum Tint) - Matches Services */
.bg-light-plum {
  background: #F9ECF5 !important;
  background-image: linear-gradient(180deg, #F9ECF5 0%, #F5E0EF 100%) !important;
}

/* Zone D: About Us (Light Magenta Tint) - Matches Invest */
.bg-light-magenta {
  background: #EBF0FA !important;
  /* Slightly cool tint to balance magenta warmth or just pale magenta */
  background-image: linear-gradient(180deg, #F5E6F5 0%, #EBEFFC 100%) !important;
}


.bg-none {
  background-image: none !important;
}

/* --- Section Light Modifier --- */
/* Apply .section-light to the container to flip text colors */

.section-light .section-title-glow {
  /* Darker gradient for text */
  background: linear-gradient(135deg, #151b3b 0%, #4facfe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.section-light .section-subtitle {
  color: #4a5568;
  /* Slate gray */
}

/* Cards in Light Mode */
.section-light .glass-card {
  background: #ffffff;
  border: 1px solid rgba(10, 14, 39, 0.08);
  /* Faint dark border */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  /* Soft shadow */
}

.section-light .glass-card:hover {
  background: #ffffff;
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(10, 14, 39, 0.1);
}

.section-light .glass-card-title {
  color: #151b3b;
  /* Dark Navy */
}

.section-light .glass-card-description {
  color: #5a6679;
  /* Muted gray */
}

.section-light .glass-card-value {
  /* Keep the gradient or make it distinct? Keep distinct but maybe darker base? */
  /* Check contrast. Cyan on white is hard to read. */
  /* Let's try a darker gradient for the value */
  background: linear-gradient(135deg, #2c3e50 0%, #4ca1af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Research Nodes on Light */
.section-light .research-node {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.section-light .research-node:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.section-light .research-title {
  color: #151b3b;
}

.section-light .research-list li {
  color: #5a6679;
}

/* Blue Strip on Light */
.section-light .text-white {
  color: #151b3b !important;
}

/* General Text in Light Section */
.section-light {
  color: #5a6679;
}

.section-light p {
  color: #5a6679;
}

.section-light .ul-check li {
  color: #5a6679;
}

.section-light h3,
.section-light h4,
.section-light h5 {
  color: #151b3b;
}

/* Ensure form input looks good on light background */
.section-light input.form-control {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #000;
}

/* ===== SOCIAL ICONS GLOW ===== */
.site-footer .social li a span {
  transition: all 0.3s ease;
  display: inline-block;
  text-shadow: 0 0 10px currentColor;
  /* Permanent Glow */
}

.site-footer .social li a span:hover {
  text-shadow: 0 0 20px currentColor;
  /* Intense Glow on Hover */
  transform: scale(1.2);
}

/* Brand Colors for Icons */
.icon-instagram {
  color: #E1306C !important;
}

.icon-twitter {
  color: #1DA1F2 !important;
}

.icon-linkedin {
  color: #0077B5 !important;
}

.icon-youtube {
  color: #FF0000 !important;
}

.icon-atom {
  color: var(--neural-accent) !important;
}


/* Ensure no legacy overlays interfere */
.overlay {
  background: none !important;
}

.overlay:before {
  display: none !important;
}

/* ===== UTILITY CLASSES ===== */
.text-gradient-quantum {
  background: var(--quantum-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-neural {
  background: var(--quantum-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-effect {
  box-shadow: 0 0 40px var(--quantum-glow);
}

.border-gradient {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--consciousness-dark), var(--consciousness-dark)) padding-box,
    var(--quantum-primary) border-box;
  border-radius: 20px;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 767px) {
  .hero-content {
    padding: 150px 0 80px;
  }

  .cta-secondary {
    margin-left: 0;
    margin-top: 1rem;
    display: block;
    width: 100%;
  }

  .cta-primary-glow {
    width: 100%;
  }

  .investor-highlights-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}