/* ══════════════════════════════════════════════════════════════════════════════
   INVESTORS PAGE - Matching About Us / FAQ / Home Design System
   ══════════════════════════════════════════════════════════════════════════════ */

/* Override navbar styles for Investors page - transparent by default, glass effect on scroll */
.site-nav, #siteNav {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.site-nav.nav-scrolled, #siteNav.nav-scrolled {
  background: rgba(8,8,8,0.2) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

/* ── HERO VISUAL - Investment Growth Animation ── */
.inv-visual-wrap {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Pulsing Glow Rings */
.inv-glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 2px solid transparent;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.inv-glow-ring-1 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, transparent 60%, rgba(139,92,246,0.08) 100%);
  border-color: rgba(139,92,246,0.15);
  animation: invGlowPulse1 4s ease-in-out infinite;
}

.inv-glow-ring-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, transparent 50%, rgba(34,211,238,0.06) 100%);
  border-color: rgba(34,211,238,0.12);
  animation: invGlowPulse2 5s ease-in-out infinite 0.5s;
}

.inv-glow-ring-3 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, transparent 40%, rgba(249,115,22,0.05) 100%);
  border-color: rgba(249,115,22,0.1);
  animation: invGlowPulse3 6s ease-in-out infinite 1s;
}

@keyframes invGlowPulse1 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}

@keyframes invGlowPulse2 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.9; }
}

@keyframes invGlowPulse3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
  50% { transform: translate(-50%, -50%) scale(1.12); opacity: 0.8; }
}

/* Central Investment Core */
.inv-central-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.inv-core-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.3) 0%, transparent 70%);
  animation: invCorePulse 3s ease-in-out infinite;
}

@keyframes invCorePulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.3; }
}

.inv-core-inner {
  position: relative;
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, rgba(139,92,246,0.2) 0%, rgba(34,211,238,0.15) 100%);
  border: 2px solid rgba(139,92,246,0.3);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(139,92,246,0.2), inset 0 0 20px rgba(139,92,246,0.1);
}

.inv-core-inner i {
  font-size: 2rem;
  background: linear-gradient(135deg, #8b5cf6, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.inv-core-inner span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

/* Orbiting Metric Nodes */
.inv-metric-node {
  position: absolute;
  width: 70px;
  height: 70px;
  background: rgba(26,36,33,0.9);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
  z-index: 5;
}

.inv-metric-node:hover {
  transform: scale(1.1);
  border-color: rgba(139,92,246,0.5);
  box-shadow: 0 8px 30px rgba(139,92,246,0.25);
}

.inv-metric-node i {
  font-size: 1.1rem;
  color: #a78bfa;
}

.inv-metric-node span {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-align: center;
}

/* Node Positions */
.inv-node-1 { top: 5%; left: 50%; transform: translateX(-50%); animation: invNodeFloat1 6s ease-in-out infinite; }
.inv-node-2 { top: 25%; right: 5%; animation: invNodeFloat2 7s ease-in-out infinite 0.5s; }
.inv-node-3 { bottom: 25%; right: 5%; animation: invNodeFloat3 6.5s ease-in-out infinite 1s; }
.inv-node-4 { bottom: 5%; left: 50%; transform: translateX(-50%); animation: invNodeFloat4 7s ease-in-out infinite 1.5s; }
.inv-node-5 { bottom: 25%; left: 5%; animation: invNodeFloat5 6s ease-in-out infinite 2s; }
.inv-node-6 { top: 25%; left: 5%; animation: invNodeFloat6 7.5s ease-in-out infinite 2.5s; }

@keyframes invNodeFloat1 { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-8px); } }
@keyframes invNodeFloat2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes invNodeFloat3 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
@keyframes invNodeFloat4 { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@keyframes invNodeFloat5 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes invNodeFloat6 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(10px); } }

/* Connection Lines SVG */
.inv-connection-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.inv-conn-line {
  stroke: rgba(139,92,246,0.2);
  stroke-width: 1;
  stroke-dasharray: 4 4;
  animation: invLineDash 20s linear infinite;
}

@keyframes invLineDash {
  to { stroke-dashoffset: -100; }
}

/* Floating Particles */
.inv-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(139,92,246,0.5);
  border-radius: 50%;
  z-index: 3;
}

.inv-particle-1 { top: 15%; left: 30%; animation: invParticleFloat 8s ease-in-out infinite; }
.inv-particle-2 { top: 35%; right: 25%; animation: invParticleFloat 10s ease-in-out infinite 1s; background: rgba(34,211,238,0.5); }
.inv-particle-3 { bottom: 30%; left: 20%; animation: invParticleFloat 9s ease-in-out infinite 2s; }
.inv-particle-4 { bottom: 15%; right: 30%; animation: invParticleFloat 11s ease-in-out infinite 3s; background: rgba(249,115,22,0.4); }

@keyframes invParticleFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  25% { transform: translate(10px, -15px) scale(1.2); opacity: 0.8; }
  50% { transform: translate(-5px, -25px) scale(0.8); opacity: 0.4; }
  75% { transform: translate(-15px, -10px) scale(1.1); opacity: 0.7; }
}

/* ── STATS SECTION ── */
.inv-stats-section {
  padding: 5rem 0;
  background: var(--ab-bg-s1, #1e2926);
  position: relative;
  overflow: hidden;
}

.inv-stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(139,92,246,0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(34,211,238,0.06) 0%, transparent 40%);
  pointer-events: none;
}

.inv-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.inv-stat-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  transition: all 0.4s ease;
}

.inv-stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(139,92,246,0.3);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.inv-stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #8b5cf6, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.inv-stat-label {
  font-size: 0.85rem;
  color: var(--ab-muted, rgba(255,255,255,0.6));
  font-weight: 500;
}

/* ── OPPORTUNITY SECTION ── */
.inv-opportunity-section {
  padding: 6rem 0;
  background: var(--ab-bg, #1a2421);
  position: relative;
}

.inv-opportunity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.inv-opportunity-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.inv-opportunity-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--card-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  transition: opacity 0.5s ease;
}

.inv-opportunity-card:hover::before {
  opacity: 0.15;
}

.inv-opportunity-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139,92,246,0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.inv-opp-icon {
  position: relative;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(139,92,246,0.15) 0%, rgba(34,211,238,0.1) 100%);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.inv-opp-icon i {
  font-size: 1.5rem;
  color: #a78bfa;
}

.inv-opportunity-card h4 {
  position: relative;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ab-text, #f0f0f5);
  margin-bottom: 1rem;
}

.inv-opportunity-card p {
  position: relative;
  font-size: 0.95rem;
  color: var(--ab-muted, rgba(255,255,255,0.6));
  line-height: 1.7;
}

/* ── TRACTION SECTION ── */
.inv-traction-section {
  padding: 6rem 0;
  background: var(--ab-bg-s1, #1e2926);
  position: relative;
}

.inv-timeline {
  position: relative;
  max-width: 800px;
  margin: 3rem auto 0;
}

.inv-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(139,92,246,0.5) 0%, rgba(34,211,238,0.3) 100%);
  transform: translateX(-50%);
}

.inv-timeline-item {
  position: relative;
  width: 50%;
  padding: 1.5rem 2.5rem;
}

.inv-timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
  padding-right: 3rem;
}

.inv-timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
  padding-left: 3rem;
}

.inv-timeline-dot {
  position: absolute;
  top: 2rem;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #8b5cf6, #22d3ee);
  border-radius: 50%;
  border: 3px solid var(--ab-bg-s1, #1e2926);
  z-index: 2;
}

.inv-timeline-item:nth-child(odd) .inv-timeline-dot {
  right: -8px;
}

.inv-timeline-item:nth-child(even) .inv-timeline-dot {
  left: -8px;
}

.inv-timeline-content {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.inv-timeline-content:hover {
  border-color: rgba(139,92,246,0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.inv-timeline-content h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ab-text, #f0f0f5);
  margin-bottom: 0.5rem;
}

.inv-timeline-content p {
  font-size: 0.9rem;
  color: var(--ab-muted, rgba(255,255,255,0.6));
  margin: 0;
}

.inv-timeline-date {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #a78bfa;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

/* ── INVESTOR RELATIONS SECTION ── */
.inv-relations-section {
  padding: 6rem 0;
  background: var(--ab-bg, #1a2421);
  position: relative;
}

.inv-relations-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 3rem;
  background: linear-gradient(135deg, rgba(139,92,246,0.08) 0%, rgba(34,211,238,0.05) 100%);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.inv-relations-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, transparent 50%);
  animation: invRelationsGlow 10s ease-in-out infinite;
  pointer-events: none;
}

@keyframes invRelationsGlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10%, 10%); }
}

.inv-relations-card h3 {
  position: relative;
  font-size: 2rem;
  font-weight: 800;
  color: var(--ab-text, #f0f0f5);
  margin-bottom: 1rem;
}

.inv-relations-card p {
  position: relative;
  font-size: 1.1rem;
  color: var(--ab-muted, rgba(255,255,255,0.6));
  margin-bottom: 2rem;
  line-height: 1.7;
}

.inv-email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #a78bfa;
  text-decoration: none;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.inv-email-link:hover {
  color: #22d3ee;
  transform: translateX(5px);
}

.inv-email-link i {
  font-size: 1.5rem;
}

.inv-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.inv-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #8b5cf6, #22d3ee);
  border: none;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.inv-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(139,92,246,0.35);
  color: #fff;
}

.inv-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ab-text, #f0f0f5);
  background: transparent;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.inv-btn-outline:hover {
  border-color: rgba(139,92,246,0.5);
  background: rgba(139,92,246,0.1);
  color: #fff;
}

/* ── DRIVER CARDS WITH DYNAMIC BACKGROUNDS ── */
.ab-driver-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.ab-driver-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--driver-bg, linear-gradient(135deg, rgba(139,92,246,0.1) 0%, rgba(34,211,238,0.05) 100%));
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  transition: opacity 0.5s ease, transform 8s ease;
  animation: driverBgPan 20s ease-in-out infinite alternate;
  z-index: 0;
}

.ab-driver-card > * {
  position: relative;
  z-index: 1;
}

.ab-driver-card:hover::before {
  opacity: 0.2;
  animation-play-state: paused;
}

@keyframes driverBgPan {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.1) translate(-5%, -5%); }
  100% { transform: scale(1.05) translate(5%, 5%); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .inv-visual-wrap { width: 350px; height: 350px; }
  .inv-glow-ring-1 { width: 330px; height: 330px; }
  .inv-glow-ring-2 { width: 260px; height: 260px; }
  .inv-glow-ring-3 { width: 190px; height: 190px; }
  .inv-core-inner { width: 90px; height: 90px; }
  .inv-metric-node { width: 60px; height: 60px; }
  .inv-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .inv-opportunity-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .inv-timeline::before { left: 20px; }
  .inv-timeline-item { width: 100%; left: 0 !important; text-align: left !important; padding-left: 50px !important; padding-right: 0 !important; }
  .inv-timeline-dot { left: 12px !important; right: auto !important; }
}

@media (max-width: 768px) {
  .inv-opportunity-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .inv-visual-wrap { width: 280px; height: 280px; }
  .inv-glow-ring-1 { width: 260px; height: 260px; }
  .inv-glow-ring-2 { width: 200px; height: 200px; }
  .inv-glow-ring-3 { width: 150px; height: 150px; }
  .inv-core-inner { width: 75px; height: 75px; }
  .inv-core-inner i { font-size: 1.5rem; }
  .inv-core-inner span { font-size: 0.55rem; }
  .inv-metric-node { width: 50px; height: 50px; border-radius: 12px; }
  .inv-metric-node i { font-size: 0.9rem; }
  .inv-metric-node span { font-size: 0.4rem; }
  .inv-stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .inv-stat-number { font-size: 2rem; }
  .inv-relations-card { padding: 2.5rem 1.5rem; }
  .inv-cta-buttons { flex-direction: column; }
}
