/* =============================================
   LYRA — Base Styles & Navbar
   ============================================= */

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

:root {
  --color-bg: #0a0a0f;
  --color-surface: rgba(255, 255, 255, 0.03);
  --color-text: #e8e8ed;
  --color-text-muted: #8a8a9a;
  --color-accent: #7c5cfc;
  --color-accent-hover: #9b80ff;
  --color-accent-glow: rgba(124, 92, 252, 0.25);
  --color-border: rgba(255, 255, 255, 0.06);
  --nav-height: 72px;
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-family);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* =============================================
   NAVBAR & FLOATING PILL
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 1rem;
  transition: padding var(--transition-smooth);
  pointer-events: none; /* Let clicks pass through padding */
}

.navbar.scrolled {
  padding: 1rem 1rem;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.5rem;
  border-radius: 100px;
  background: transparent;
  border: 1px solid transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  pointer-events: auto;
  transition: all var(--transition-smooth);
}

.navbar.scrolled .nav-container {
  background: rgba(10, 10, 15, 0.82);
  border-color: rgba(102, 53, 234, 0.35);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 1px rgba(255, 255, 255, 0.05),
    0 0 20px rgba(102, 53, 234, 0.12);
  transform: translateY(5px);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-left: 0.25rem;
  z-index: 10;
}

.logo-icon-wrapper {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a78bfa;
  filter: drop-shadow(0 0 8px rgba(167, 139, 250, 0.4));
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #ffffff;
  line-height: 1;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-right: 0.25rem;
}

.nav-link {
  position: relative;
  padding: 0.6rem 1.25rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: 100px;
  transition: color var(--transition-fast), text-shadow var(--transition-fast);
  z-index: 1;
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: -1;
}

.nav-link:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.nav-link:hover::before {
  opacity: 1;
  transform: scale(1);
}

.nav-link.active {
  color: #ffffff;
}

.nav-link.active::before {
  opacity: 1;
  transform: scale(1);
  background: rgba(102, 53, 234, 0.15);
  box-shadow: 
    inset 0 0 0 1px rgba(102, 53, 234, 0.4), 
    0 0 16px rgba(102, 53, 234, 0.2);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: #a78bfa;
  border-radius: 50%;
  box-shadow: 0 0 8px #a78bfa;
}

/* CTA Button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  background: var(--color-accent);
  border-radius: 10px;
  transition:
    background var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
  z-index: 10;
}

.nav-cta:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 4px 24px var(--color-accent-glow);
  transform: translateY(-1px);
}

.nav-cta:active {
  transform: translateY(0);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  cursor: pointer;
  z-index: 10;
  padding: 10px;
  transition: border-color var(--transition-fast);
}

.nav-toggle:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition:
    transform var(--transition-smooth),
    opacity var(--transition-fast);
  transform-origin: center;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* Main */
:root {
  --color-bg: #050508;
  --color-bg-alt: #0a0a0f;
  --color-text: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.5);
  --color-accent: #6635EA;
  --color-accent-light: #a78bfa;
}

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

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Utils */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.bg-alt { background: var(--color-bg-alt); }

/* Glow bits */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(102, 53, 234, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
  .cursor-glow {
    display: none;
  }
}

/* Nav */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  background: rgba(5, 5, 8, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.navbar.scrolled {
  padding: 1rem 0;
  background: rgba(5, 5, 8, 0.95);
  border-bottom: 1px solid rgba(167, 139, 250, 0.1);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
}

.logo-icon-wrapper {
  color: #a78bfa;
  width: 40px;
  height: 40px;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

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

.nav-link {
  text-decoration: none;
  color: var(--color-text-muted);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover { color: #fff; }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #a78bfa;
  transition: width 0.3s ease;
}

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

/* Mobile trigger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Feature grid etc */
.about-mission-side { border-left: 1px solid rgba(255, 255, 255, 0.05); }

/* --- HERO --- */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
}

.hero-glow-bg {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: 100%;
  background: radial-gradient(circle at center, rgba(102, 53, 234, 0.12) 0%, rgba(167, 139, 250, 0.05) 30%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  margin-bottom: 2.5rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.75rem;
  color: #a78bfa;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* ... existing keyframes ... */
@keyframes chip-shine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 2rem;
}

.text-gradient {
  background: linear-gradient(135deg, #e8e8ed 0%, #a78bfa 50%, #6635EA 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-btn-primary {
  padding: 0.8rem 2.25rem;
  background: #6635EA;
  border-radius: 100px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-btn-primary:hover {
  background: #7c5cfc;
  box-shadow: 0 10px 20px rgba(102, 53, 234, 0.4);
}

/* Specifics */
.roadmap-steps { display: flex; flex-direction: column; }

.roadmap-step {
  display: grid;
  grid-template-columns: 240px 1fr;
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter-card {
  background: rgba(10, 10, 15, 0.4);
  padding: 4rem 3.5rem;
  border-radius: 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* --- Fine grid floor --- */
.hero-grid-floor {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 50%;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  transform: perspective(1000px) rotateX(60deg) translateY(100px) translateZ(-200px);
  mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
  z-index: 1;
}

/* --- Moving Data Packets --- */
.hero-network {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  opacity: 0.7;
}

.packet {
  position: absolute;
  border-radius: 100px;
  filter: drop-shadow(0 0 8px rgba(167, 139, 250, 0.6));
}

.packet-1 { width: 120px; height: 1px; top: 20%; left: -120px; background: linear-gradient(90deg, transparent, #a78bfa, #ffffff); animation: packet-x 6s ease-in-out infinite 0s; }
.packet-2 { width: 1px; height: 150px; left: 75%; top: -150px; background: linear-gradient(180deg, transparent, #6635EA, #ffffff); animation: packet-y 5s ease-in-out infinite 1.5s; }
.packet-3 { width: 90px; height: 1px; top: 60%; right: -90px; background: linear-gradient(-90deg, transparent, #7c5cfc, #ffffff); animation: packet-x-reverse 4.5s ease-in-out infinite 0.5s; }
.packet-4 { width: 1px; height: 100px; left: 20%; bottom: -100px; background: linear-gradient(0deg, transparent, #a78bfa, #ffffff); animation: packet-y-reverse 7s ease-in-out infinite 2s; }
.packet-5 { width: 200px; height: 1px; top: 85%; left: -200px; background: linear-gradient(90deg, transparent, #6635EA, #ffffff); animation: packet-x 8s ease-in-out infinite 3s; }
.packet-6 { width: 1px; height: 80px; left: 88%; top: -80px; background: linear-gradient(180deg, transparent, #7c5cfc, #ffffff); animation: packet-y 4s ease-in-out infinite 1s; }
.packet-7 { width: 60px; height: 1px; top: 40%; right: -60px; background: linear-gradient(-90deg, transparent, #a78bfa, #ffffff); animation: packet-x-reverse 5.5s ease-in-out infinite 4s; }
.packet-8 { width: 1px; height: 180px; left: 45%; bottom: -180px; background: linear-gradient(0deg, transparent, #6635EA, #ffffff); animation: packet-y-reverse 9s ease-in-out infinite 2.5s; }

@keyframes packet-x { to { transform: translateX(120vw); } }
@keyframes packet-y { to { transform: translateY(120vh); } }
@keyframes packet-x-reverse { to { transform: translateX(-120vw); } }
@keyframes packet-y-reverse { to { transform: translateY(-120vh); } }

/* --- Hero Content --- */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 900px;
  animation: fade-in-up 1s ease-out 0.2s both;
}

/* --- Pill Chip --- */
.hero-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem 0.35rem 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  margin-bottom: 2.5rem;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #e8e8ed;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  cursor: pointer;
  animation: fade-in-up 1s ease-out 0.4s both;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(102, 53, 234, 0.15);
}

.hero-chip::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.3), transparent);
  animation: chip-shine 3s infinite;
  pointer-events: none;
}

@keyframes chip-shine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

.hero-chip:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.chip-dot {
  width: 8px;
  height: 8px;
  background: #a78bfa;
  border-radius: 50%;
  box-shadow: 0 0 12px #a78bfa;
  animation: pulse-dot 2s infinite;
}

.chip-arrow {
  width: 14px;
  height: 14px;
  color: #a78bfa;
  transition: transform 0.3s ease;
}

.hero-chip:hover .chip-arrow {
  transform: translateX(3px);
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(167, 139, 250, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(167, 139, 250, 0); }
  100% { box-shadow: 0 0 0 0 rgba(167, 139, 250, 0); }
}

/* --- Typography --- */
.hero-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 2rem;
  animation: fade-in-up 1s ease-out 0.6s both;
}

.text-gradient {
  background: linear-gradient(135deg, #e8e8ed 0%, #a78bfa 50%, #6635EA 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  margin: 0 auto 3rem;
  line-height: 1.8;
  animation: fade-in-up 1s ease-out 0.8s both;
}

/* --- Actions --- */
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  animation: fade-in-up 1s ease-out 1s both;
}

.hero-btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2.25rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background: #6635EA;
  border-radius: 100px;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: button-pulse 2s infinite ease-out;
}

@keyframes button-pulse {
  0% { box-shadow: 0 0 0 1px rgba(102, 53, 234, 1), 0 0 0 0 rgba(102, 53, 234, 0.7); }
  70% { box-shadow: 0 0 0 1px rgba(102, 53, 234, 1), 0 0 0 12px rgba(102, 53, 234, 0); }
  100% { box-shadow: 0 0 0 1px rgba(102, 53, 234, 1), 0 0 0 0 rgba(102, 53, 234, 0); }
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-20deg);
  animation: btn-shine-loop 3s infinite 1s;
  pointer-events: none;
}

@keyframes btn-shine-loop {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  background: #7c5cfc;
  animation: none;
  box-shadow: 0 0 0 1px #7c5cfc, 0 12px 32px rgba(102, 53, 234, 0.6);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2.25rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #e8e8ed;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transform: translateY(-2px);
}

/* --- Bottom Fade --- */
.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, transparent, var(--color-bg));
  z-index: 3;
}

/* --- Fade In Animation --- */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }

}

/* =============================================
   SECTIONS & COMPONENTS
   ============================================= */
/* --- Premium Section Transition --- */
.section {
  padding: 10rem 2rem;
  position: relative;
  z-index: 5;
}

.section#about {
  padding: 8rem 2rem 10rem;
  margin-top: 0; /* No overlap as requested */
}

/* --- Premium Section Transition & Separator --- */
.section-separator {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding-top: 4rem;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.section-separator::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(167, 139, 250, 0.2) 50%, transparent 90%);
}

.separator-badge {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 1.25rem;
  background: rgba(10, 10, 15, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(167, 139, 250, 0.15);
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.separator-badge::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: #a78bfa;
  box-shadow: 0 0 15px #a78bfa;
}

.badge-num {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.8rem;
  font-weight: 700;
  color: #a78bfa;
  opacity: 0.9;
}

.badge-text {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Glass Card styling for about section */
/* --- Human & Modern Section Layout --- */
.section#about {
  padding: 12rem 2rem;
  overflow: visible;
}

.about-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 8rem;
}

.about-vision-side {
  position: sticky;
  top: 10rem;
}

@media (max-width: 992px) {
  .about-content-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .about-vision-side {
    position: static;
  }
  
  .about-vision-side .about-lead {
    max-width: 100%;
  }
}


.about-vision-side .about-badge {
  font-family: 'Courier New', Courier, monospace;
  background: rgba(167, 139, 250, 0.05);
  border: 1px solid rgba(167, 139, 250, 0.2);
  color: #a78bfa;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  margin-bottom: 2.5rem;
}

.about-vision-side h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #ffffff;
  margin-bottom: 2rem;
}

.about-vision-side h2 span {
  display: block;
  font-family: 'Syncopate', sans-serif;
  color: #6635EA;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 1.25rem;
}

.about-vision-side .about-lead {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.founder-note {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 500;
  color: #ffffff;
  padding-left: 1.5rem;
  border-left: 2px solid #6635EA;
  opacity: 0.9;
}

.campus-tag {
  margin-top: 3rem;
  font-family: 'Courier New', Courier, monospace; /* Mono touch for human builder feel */
  font-size: 0.85rem;
  color: #a78bfa;
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.campus-tag::before {
  content: '';
  width: 30px;
  height: 1px;
  background: currentColor;
}

.about-mission-side {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  padding-left: 4rem;
}

@media (max-width: 992px) {
  .about-mission-side {
    padding-left: 0;
    border-left: none;
  }
}

.mission-point {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mission-point:first-child {
  padding-top: 0;
}

.mission-point:last-child {
  border-bottom: none;
}

.mission-num {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.8rem;
  font-weight: 500;
  color: #a78bfa;
  opacity: 0.8;
}

.mission-point h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.15rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.mission-point p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--color-text-muted);
  font-weight: 400;
}

.mission-point:hover h3 {
  color: #ffffff;
  text-shadow: 0 0 20px rgba(167, 139, 250, 0.2);
}

/* Floating Aura */
.about-aura {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle at center, rgba(102, 53, 234, 0.05) 0%, transparent 75%);
  z-index: -1;
  pointer-events: none;
  filter: blur(100px);
}

/* Subtle background glow inside card */
.about-aura {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(102, 53, 234, 0.08) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.bg-alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title span {
  font-style: normal;
  font-family: 'Syncopate', sans-serif;
  font-weight: 700;
  color: #7c5cfc;
  -webkit-text-fill-color: #7c5cfc;
}

.section-text {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto 4rem;
  line-height: 1.7;
}

/* Features List (Zig-Zag) */
.features-list {
  max-width: 1100px;
  margin: 6rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 10rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 6rem;
}

.feature-item.reverse {
  flex-direction: row-reverse;
}

@media (max-width: 992px) {
  .feature-item, .feature-item.reverse {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
}

.feature-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-blob {
  position: relative;
  width: 200px;
  height: 200px;
  background: rgba(102, 53, 234, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  border: 1px solid rgba(102, 53, 234, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a78bfa;
  animation: blob-float 10s infinite alternate cubic-bezier(0.45, 0, 0.55, 1);
  box-shadow: 
    inset 0 0 40px rgba(102, 53, 234, 0.1),
    0 0 60px rgba(0, 0, 0, 0.2);
}

.icon-blob.secondary {
  border-color: rgba(167, 139, 250, 0.2);
  background: rgba(167, 139, 250, 0.03);
  animation-delay: -2s;
}

.icon-blob.tertiary {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  animation-delay: -5s;
}

@keyframes blob-float {
  0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: translate(0, 0); }
  50% { border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%; transform: translate(10px, -20px); }
  100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: translate(0, 0); }
}

.icon-blob svg {
  width: 70px;
  height: 70px;
  filter: drop-shadow(0 0 15px rgba(167, 139, 250, 0.4));
}

.feature-info {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-tag {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.8rem;
  font-weight: 600;
  color: #a78bfa;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.feature-info h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.feature-info p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  font-weight: 400;
}

/* --- Modern Roadmap Phases --- */
.roadmap-steps {
  display: flex;
  flex-direction: column;
}

.roadmap-step {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: start;
  gap: 4rem;
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
  text-align: left;
}

.roadmap-step:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.roadmap-step.current {
  background: linear-gradient(90deg, rgba(102, 53, 234, 0.03) 0%, transparent 100%);
}

.step-label {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-num {
  font-family: 'Syncopate', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.1em;
}

.step-date {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin-top: -0.25rem;
}

.roadmap-step.current .step-num {
  color: #a78bfa;
}

.roadmap-step.current .step-date {
  color: #ffffff;
  opacity: 1;
}

.status-pill {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: fit-content;
}

.status-pill.in-progress {
  background: rgba(167, 139, 250, 0.1);
  border: 1px solid rgba(167, 139, 250, 0.3);
  color: #a78bfa;
  box-shadow: 0 0 15px rgba(167, 139, 250, 0.1);
}

.status-pill.planned {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.4);
}

.step-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.step-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 650px;
  margin-bottom: 1.5rem;
}

.step-tag {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.85rem;
  color: #a78bfa;
  opacity: 0.6;
}

@media (max-width: 868px) {
  .roadmap-step {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 3rem 0;
  }
}

/* --- Refined Contact Section --- */
#contact {
  position: relative;
  padding: 10rem 2rem;
  overflow: hidden;
}

.contact-aura {
  position: absolute;
  top: 50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(102, 53, 234, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.contact-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 8rem;
  align-items: center;
}

.contact-intro h2.section-title {
  text-align: left;
  background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.social-links {
  display: flex;
  gap: 1.25rem;
  margin-top: 3rem;
}

.social-link {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.social-link svg {
  width: 22px;
  height: 22px;
}

.social-link:hover {
  background: rgba(167, 139, 250, 0.08);
  border-color: rgba(167, 139, 250, 0.35);
  color: #ffffff;
  transform: translateY(-5px) rotate(-5deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.contact-direct {
  margin-top: 5rem;
}

.contact-direct span {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.8rem;
  color: #a78bfa;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 0.75rem;
}

.contact-direct a {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.contact-direct a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #a78bfa;
  transition: width 0.3s ease;
}

.contact-direct a:hover::after {
  width: 100%;
}

.newsletter-card {
  background: rgba(10, 10, 15, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4rem 3.5rem;
  border-radius: 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.newsletter-card::before {
  content: '';
  position: absolute;
  top: -1px;
  right: 10%;
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #a78bfa, transparent);
  opacity: 0.5;
}

.newsletter-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.newsletter-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem;
  border-radius: 24px;
  transition: all 0.3s ease;
}

.newsletter-form:focus-within {
  border-color: rgba(167, 139, 250, 0.4);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 25px rgba(167, 139, 250, 0.1);
}

.newsletter-form input {
  background: transparent;
  border: none;
  padding: 1rem 1.5rem;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  flex: 1;
  outline: none;
  min-width: 0;
}

.newsletter-form button {
  background: #6635EA;
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.newsletter-form button:hover {
  background: #7c5cfc;
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(102, 53, 234, 0.3);
}

.form-privacy-note {
  margin-top: 1.5rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  text-align: left;
}

.form-privacy-note a {
  color: #a78bfa;
  text-decoration: none;
}

.form-privacy-note a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .newsletter-form {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
    gap: 1rem;
  }
  
  .newsletter-form input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1.25rem 1.5rem;
  }
  
  .newsletter-form button {
    padding: 1.25rem;
    border-radius: 18px;
  }
}

@media (max-width: 968px) {
  .contact-split {
    grid-template-columns: 1fr;
    gap: 5rem;
    text-align: center;
  }
  
  .contact-intro h2.section-title {
    text-align: center;
    font-size: 3rem;
  }
  
  .social-links {
    justify-content: center;
  }
}

/* --- Enhanced Footer --- */
.footer {
  padding: 8rem 2rem 4rem;
  background: #050508;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}

.footer-left {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-tagline {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Courier New', Courier, monospace;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3rem;
}

.footer-nav {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #a78bfa;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  font-family: 'Courier New', Courier, monospace;
}

@media (max-width: 868px) {
  .section {
    padding: 6rem 1.5rem;
  }
  
  .hero {
    padding-top: 10rem;
    padding-bottom: 6rem;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
  }
  
  .footer-right {
    align-items: center;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    margin-bottom: 1.5rem;
  }
  
  .section-title {
    font-size: 2.8rem;
  }

  .nav-toggle {
    display: block;
    z-index: 1001;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 1.5rem;
    padding: 3rem 2rem;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(167, 139, 250, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  }
  
  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-link {
    font-size: 1.2rem;
    width: 100%;
    text-align: center;
    padding: 0.5rem 0;
  }

  .nav-container {
    position: relative;
  }

  /* Icon Scaling for Mobile */
  .icon-blob {
    width: 120px !important;
    height: 120px !important;
  }
  
  .icon-blob svg {
    width: 40px !important;
    height: 40px !important;
  }

  .social-link {
    width: 48px;
    height: 48px;
  }
  
  .social-link svg {
    width: 18px;
    height: 18px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    gap: 1rem;
  }

  .hero-btn-primary, .hero-btn-secondary {
    width: 100%;
  }

  .about-vision-side h2 {
    font-size: 3.25rem;
  }
  
  .newsletter-card {
    padding: 2.5rem 1.5rem;
    border-radius: 24px;
  }
  
  .contact-direct a {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 5rem 1.25rem;
  }
  
  .hero-title {
    font-size: 3.2rem;
  }
  
  .section-title {
    font-size: 2.4rem;
  }
  
  .about-vision-side h2 {
    font-size: 2.8rem;
  }

  .mission-point h3 {
    font-size: 1.8rem;
  }

  .step-content h3 {
    font-size: 1.5rem;
  }
}
