@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  --bg-obsidian: #020205;
  --bg-navy-deep: #05060f;
  --bg-navy-card: rgba(8, 10, 24, 0.7);
  --bg-navy-card-hover: rgba(14, 18, 43, 0.85);
  
  --accent-cyan: #00f0ff;
  --accent-cyan-rgb: 0, 240, 255;
  --accent-purple: #8b5cf6;
  --accent-purple-rgb: 139, 92, 246;
  --accent-blue: #3b82f6;
  
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border-glow: rgba(0, 240, 255, 0.15);
  --border-glow-hover: rgba(139, 92, 246, 0.4);
  
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Outfit', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* ==========================================================================
   RESET & BASIC STYLING
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-obsidian);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-obsidian);
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}

/* ==========================================================================
   BACKGROUND VISUALS (Quantum Simulation & Gradients)
   ========================================================================== */
#quantum-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(circle at 50% 30%, #080c25 0%, var(--bg-obsidian) 70%);
}

.ambient-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, rgba(0, 240, 255, 0.03) 50%, rgba(0,0,0,0) 100%);
  top: 10%;
  right: -10%;
  z-index: -1;
  pointer-events: none;
  filter: blur(80px);
  animation: floatAmbient 25s infinite alternate ease-in-out;
}

.ambient-glow-2 {
  position: fixed;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.06) 0%, rgba(139, 92, 246, 0.03) 60%, rgba(0,0,0,0) 100%);
  bottom: 10%;
  left: -10%;
  z-index: -1;
  pointer-events: none;
  filter: blur(80px);
  animation: floatAmbient 20s infinite alternate-reverse ease-in-out;
}

@keyframes floatAmbient {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(80px, 50px) scale(1.1); }
}

/* ==========================================================================
   TYPOGRAPHY & TEXT UTILITIES
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.2;
}

p {
  color: var(--text-secondary);
  font-weight: 300;
}

.gradient-text {
  background: linear-gradient(135deg, #fff 30%, var(--accent-cyan) 75%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-alt {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.uppercase-label {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--accent-cyan);
  display: inline-block;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.section-title-wrapper {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
}

/* ==========================================================================
   COMPONENTS: BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.8rem;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
  color: #000;
  border: none;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.25);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.btn-accent {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--accent-purple);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.15);
}

.btn-accent:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.3);
}

/* ==========================================================================
   COMPONENTS: CARDS (Holographic / Glassmorphic)
   ========================================================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.holo-card {
  background: var(--bg-navy-card);
  border: 1px solid var(--border-glow);
  border-radius: 12px;
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.holo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  transform: translateX(-100%);
  transition: 0.6s ease;
}

.holo-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow-hover);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15), 0 0 1px 1px rgba(0, 240, 255, 0.2) inset;
}

.holo-card:hover::before {
  transform: translateX(100%);
}

.holo-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(0, 240, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 240, 255, 0.2);
}

.holo-card:hover .holo-card-icon {
  background: rgba(139, 92, 246, 0.15);
  color: var(--accent-purple);
  border-color: rgba(139, 92, 246, 0.3);
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(2, 2, 5, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.header.scrolled {
  padding: 0.6rem 0;
  background: rgba(2, 2, 5, 0.9);
  border-bottom-color: rgba(0, 240, 255, 0.15);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.logo-symbol {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 900;
  color: #000;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.logo-symbol::after {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  border-radius: 8px;
  border: 1px solid var(--accent-cyan);
  opacity: 0.3;
  animation: pulseRotate 4s linear infinite;
}

@keyframes pulseRotate {
  0% { transform: rotate(0deg) scale(0.95); opacity: 0.2; }
  50% { transform: rotate(180deg) scale(1.05); opacity: 0.5; }
  100% { transform: rotate(360deg) scale(0.95); opacity: 0.2; }
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
  padding: 0.3rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-cyan);
  transition: var(--transition-fast);
}

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

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   LAYOUT SECTIONS
   ========================================================================== */
section {
  padding: 7rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.hero-section {
  padding-top: 11rem;
  padding-bottom: 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 95vh;
  justify-content: center;
}

.hero-tag {
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 50px;
  padding: 0.4rem 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.05);
}

.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-cyan);
  animation: flash 2s infinite;
}

@keyframes flash {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 720px;
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 4rem;
}

.hero-visual-wrapper {
  width: 100%;
  max-width: 1000px;
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 7, 20, 0.6);
  padding: 1rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 50px rgba(0, 240, 255, 0.05);
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  opacity: 0.85;
  transition: var(--transition-smooth);
}

.hero-visual-wrapper:hover .hero-image {
  opacity: 0.95;
}

/* ==========================================================================
   2. THE QUANTUM OPPORTUNITY
   ========================================================================== */
.opp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.opp-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.opp-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  border-left: 2px solid var(--accent-cyan);
  padding-left: 1.2rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-cyan);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.3rem;
}

/* Timeline */
.timeline-section {
  margin-top: 5rem;
}

.timeline-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.timeline-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.timeline-btn:hover, .timeline-btn.active {
  background: rgba(0, 240, 255, 0.08);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
}

.timeline-content-wrapper {
  position: relative;
  min-height: 250px;
}

.timeline-pane {
  display: none;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
  animation: fadeIn 0.5s forwards ease-in-out;
}

.timeline-pane.active {
  display: grid;
}

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

.timeline-info h4 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.timeline-year {
  color: var(--accent-purple);
  font-size: 1.2rem;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 1rem;
}

.timeline-desc {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.timeline-visual {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  background: rgba(5, 7, 20, 0.4);
  backdrop-filter: blur(10px);
  text-align: center;
}

.timeline-visual img {
  max-width: 100%;
  height: auto;
  max-height: 180px;
}

/* ==========================================================================
   3. OUR SECURE STRATEGY
   ========================================================================== */
.strategy-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem auto;
}

.strategy-visual-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.strategy-diagram {
  background: var(--bg-navy-card);
  border: 1px solid var(--border-glow);
  border-radius: 16px;
  padding: 3rem;
  position: relative;
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.diagram-node {
  background: rgba(2, 2, 5, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 1.2rem;
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth);
}

.diagram-node:hover {
  border-color: var(--accent-cyan);
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.diagram-node.primary {
  border-color: var(--accent-purple);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.15);
}

.node-title {
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.node-title::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-cyan);
}

.diagram-node.primary .node-title::before {
  background: var(--accent-purple);
}

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

.diagram-arrow {
  height: 30px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-purple), var(--accent-cyan));
  align-self: center;
  position: relative;
}

.diagram-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px 4px 0 4px;
  border-style: solid;
  border-color: var(--accent-cyan) transparent transparent transparent;
}

.diagram-branches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.trust-signals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.trust-card {
  padding: 2rem;
}

.trust-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   4. PORTFOLIO & IMPACT
   ========================================================================== */
.portfolio-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.2rem;
}

.portfolio-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-navy-card);
  transition: var(--transition-smooth);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-cyan);
  box-shadow: 0 15px 40px rgba(0, 240, 255, 0.1);
}

.port-img-container {
  height: 200px;
  position: relative;
  background-color: #030308;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.port-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: var(--transition-smooth);
}

.portfolio-card:hover .port-img {
  opacity: 0.9;
  transform: scale(1.05);
}

.port-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0,0,0,0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  color: var(--accent-cyan);
  font-weight: 600;
  backdrop-filter: blur(5px);
}

.port-info {
  padding: 1.8rem;
}

.port-company {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.port-desc {
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}

.port-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.port-meta span strong {
  color: var(--text-primary);
}

/* ==========================================================================
   5. WHY AETHERQ FUND
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-item {
  display: flex;
  gap: 1.2rem;
}

.why-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.why-item-content h4 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.why-item-content p {
  font-size: 0.9rem;
}

.asymmetric-yield-box {
  background: linear-gradient(135deg, rgba(8, 10, 24, 0.9) 0%, rgba(20, 11, 47, 0.7) 100%);
  border: 1px solid var(--accent-purple);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.1);
  position: relative;
  overflow: hidden;
}

.asymmetric-yield-box::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
  bottom: -50px;
  right: -50px;
}

.yield-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.yield-desc {
  margin-bottom: 2rem;
}

.yield-metrics {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.yield-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.8rem;
}

.yield-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.yield-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.yield-value {
  font-weight: 600;
  color: var(--accent-cyan);
}

/* ==========================================================================
   6. TEAM SECTION
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.2rem;
}

.team-card {
  text-align: center;
  padding: 2.5rem 1.8rem;
}

.team-avatar-wrapper {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto 1.8rem auto;
  position: relative;
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
  padding: 3px;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.15);
}

.team-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--bg-navy-deep);
  object-fit: cover;
  display: block;
}

.team-name {
  font-size: 1.35rem;
  margin-bottom: 0.3rem;
}

.team-role {
  color: var(--accent-cyan);
  font-size: 0.85rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.05rem;
  margin-bottom: 1rem;
}

.team-bio {
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.team-cred {
  font-size: 0.75rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.8rem;
}

/* ==========================================================================
   7. FOR LIMITED PARTNERS / APPLICATION
   ========================================================================== */
.lp-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.lp-info h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.lp-terms-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
}

.lp-terms-box h4 {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.6rem;
}

.lp-term-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

.lp-term-row:last-child {
  margin-bottom: 0;
}

.lp-form-wrapper {
  background: var(--bg-navy-card);
  border: 1px solid var(--border-glow);
  border-radius: 16px;
  padding: 3rem;
  backdrop-filter: blur(16px);
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

label {
  display: block;
  font-size: 0.8rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

input, select, textarea {
  width: 100%;
  background: rgba(2, 2, 5, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 0.85rem 1.2rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
  background: rgba(2, 2, 5, 0.8);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.form-checkbox input {
  width: auto;
  margin-top: 0.3rem;
}

.form-checkbox label {
  text-transform: none;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.8rem;
  line-height: 1.4;
  letter-spacing: 0;
  cursor: pointer;
}

.form-submit-btn {
  width: 100%;
  border: none;
  padding: 1rem;
}

.form-status {
  margin-top: 1rem;
  padding: 0.8rem;
  border-radius: 6px;
  font-size: 0.85rem;
  text-align: center;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #10b981;
}

/* ==========================================================================
   8. FOOTER
   ========================================================================== */
.footer {
  background: #020204;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5rem 2rem 2.5rem 2rem;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo-area p {
  font-size: 0.85rem;
  margin-top: 1rem;
  max-width: 250px;
}

.footer-col h5 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-cyan);
  padding-left: 3px;
}

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

.footer-contact-info p {
  margin-bottom: 0.8rem;
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.legal-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.legal-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   PITCH DECK PRESENTATION STYLES (Slideshow System)
   ========================================================================== */
.deck-body {
  background-color: #020206;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.deck-header {
  padding: 1.5rem 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(2, 2, 6, 0.8);
  backdrop-filter: blur(10px);
}

.deck-actions {
  display: flex;
  gap: 1rem;
}

.deck-main-container {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}

.deck-slider {
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border-glow);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  background: radial-gradient(circle at 50% 30%, #060817 0%, #010103 100%);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  transform: scale(0.98);
  padding: 3.5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  z-index: 5;
}

.slide-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
  padding-bottom: 1rem;
}

.slide-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--accent-purple);
  font-weight: 700;
}

.slide-title {
  font-size: 2rem;
  line-height: 1.2;
}

.slide-content {
  flex-grow: 1;
  display: flex;
  align-items: center;
  padding: 1.5rem 0;
}

.slide-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.8rem;
}

.slide-layout-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  width: 100%;
  align-items: center;
}

.slide-bullets {
  list-style: none;
}

.slide-bullets li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.slide-bullets li strong {
  color: var(--text-primary);
}

.slide-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 2px;
  transform: rotate(45deg);
  box-shadow: 0 0 8px var(--accent-cyan);
}

.slide-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.deck-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(8, 10, 24, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}

.deck-nav-btn:hover {
  border-color: var(--accent-cyan);
  color: var(--text-primary);
  background: rgba(0, 240, 255, 0.05);
}

.deck-nav-prev {
  left: 2rem;
}

.deck-nav-next {
  right: 2rem;
}

.deck-dots {
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}

.deck-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition-fast);
}

.deck-dot.active {
  background: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
  width: 20px;
  border-radius: 4px;
}

.deck-infographic {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1.2rem;
  background: rgba(0,0,0,0.3);
  text-align: center;
}

.deck-infographic-val {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-cyan);
}

.deck-infographic-lbl {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.2rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .opp-grid, .why-grid, .lp-split, .strategy-visual-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .slide {
    padding: 2.5rem 3rem;
  }
  .slide-title {
    font-size: 1.6rem;
  }
  .slide-layout-split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; /* Add JS toggle for mobile nav */
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }
  .section-title {
    font-size: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .deck-main-container {
    padding: 1rem;
  }
  .deck-slider {
    aspect-ratio: auto;
    height: 480px;
  }
  .slide {
    padding: 1.5rem 1.8rem;
  }
  .slide-grid-3 {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .deck-nav-btn {
    display: none;
  }
}

/* ==========================================================================
   SPLASH SCREEN / SECURE GATEWAY
   ========================================================================== */
#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #020205;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
  overflow: hidden;
}

#splash-screen::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.06) 0%, rgba(139, 92, 246, 0.03) 60%, transparent 100%);
  top: 25%;
  left: 25%;
  transform: translate(-50%, -50%);
  filter: blur(50px);
  pointer-events: none;
  animation: pulseGlow 8s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
  0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.splash-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 480px;
  width: 90%;
  padding: 2.5rem;
  background: rgba(6, 8, 20, 0.6);
  border: 1px solid rgba(0, 240, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.splash-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.splash-logo-symbol {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
  color: #000;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.splash-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: -0.01em;
  margin: 0;
  color: #fff;
}

.splash-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  margin: 1.2rem 0;
  border-radius: 1px;
}

.splash-tagline {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}

.splash-loading-wrapper {
  width: 100%;
  margin-bottom: 1rem;
}

.splash-loading-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.6rem;
}

.splash-loading-progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  border-radius: 2px;
  transition: width 0.1s ease;
}

.splash-loading-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: monospace;
}

.splash-disclaimer {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1rem;
  width: 100%;
  justify-content: center;
}

