/* ===== CSS RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #050510;
  --bg-secondary: #0a0a1a;
  --bg-card: rgba(15, 15, 35, 0.6);
  --bg-card-hover: rgba(20, 20, 50, 0.8);
  --text-primary: #f0f0ff;
  --text-secondary: #a0a0c0;
  --text-muted: #6b6b8d;
  --accent-purple: #a78bfa;
  --accent-cyan: #06b6d4;
  --accent-blue: #818cf8;
  --accent-pink: #f472b6;
  --gradient-primary: linear-gradient(135deg, #a78bfa 0%, #06b6d4 100%);
  --gradient-secondary: linear-gradient(
    135deg,
    #818cf8 0%,
    #a78bfa 50%,
    #06b6d4 100%
  );
  --gradient-glow: linear-gradient(
    135deg,
    rgba(167, 139, 250, 0.15) 0%,
    rgba(6, 182, 212, 0.15) 100%
  );
  --border-color: rgba(167, 139, 250, 0.1);
  --border-hover: rgba(167, 139, 250, 0.25);
  --glass-bg: rgba(15, 15, 40, 0.5);
  --glass-border: rgba(167, 139, 250, 0.12);
  --shadow-glow: 0 0 60px rgba(167, 139, 250, 0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-purple) var(--bg-primary);
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-purple);
  border-radius: 3px;
}

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

img {
  max-width: 100%;
}

/* ===== PARTICLE CANVAS ===== */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.section {
  position: relative;
  padding: 120px 0;
  z-index: 1;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(5, 5, 16, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.logo-icon {
  display: flex;
  align-items: center;
  animation: logoFloat 3s ease-in-out infinite;
}

.logo-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 0 8px rgba(167, 139, 250, 0.35));
  transition: var(--transition);
}

.logo-icon img:hover {
  filter: drop-shadow(0 0 14px rgba(167, 139, 250, 0.5));
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.logo-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
  transition: var(--transition);
}

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

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

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
}

.nav-btn-ghost {
  color: var(--text-secondary);
  background: transparent;
}

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

.nav-btn-primary {
  background: var(--gradient-primary);
  color: #050510;
}

.nav-btn-primary:hover {
  box-shadow: 0 0 24px rgba(167, 139, 250, 0.4);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 16, 0.97);
  backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-link {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
}

.mobile-link:hover {
  color: var(--text-primary);
}

.mobile-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 60px;
  z-index: 1;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  pointer-events: none;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: rgba(167, 139, 250, 0.15);
  top: -200px;
  left: -150px;
  animation: glowPulse 8s ease-in-out infinite;
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  background: rgba(6, 182, 212, 0.12);
  bottom: -100px;
  right: -150px;
  animation: glowPulse 10s ease-in-out infinite reverse;
}

.hero-glow-3 {
  width: 300px;
  height: 300px;
  background: rgba(129, 140, 248, 0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: glowPulse 6s ease-in-out infinite 2s;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
}

.hero-container {
  text-align: center;
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(167, 139, 250, 0.08);
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent-purple);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
}

.hero-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero-line {
  display: block;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.typed-wrapper {
  display: inline;
}

.typed-text {
  color: var(--accent-cyan);
  font-weight: 600;
}

.typed-cursor {
  color: var(--accent-cyan);
  animation: cursorBlink 1s step-end infinite;
  font-weight: 300;
}

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

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  font-family: inherit;
}

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

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

.btn-primary {
  background: var(--gradient-primary);
  color: #050510;
  border-radius: var(--radius-full);
}

.btn-primary:hover {
  box-shadow:
    0 0 40px rgba(167, 139, 250, 0.35),
    0 0 80px rgba(6, 182, 212, 0.15);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-full);
}

.btn-outline:hover {
  border-color: var(--accent-purple);
  background: rgba(167, 139, 250, 0.06);
  box-shadow: 0 0 30px rgba(167, 139, 250, 0.1);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 0.95rem;
}

.btn-xl {
  padding: 18px 44px;
  font-size: 1.05rem;
}

.btn i {
  font-size: 0.85em;
  transition: var(--transition);
}

.btn:hover i {
  transform: translateX(3px);
}

/* ===== HERO STATS ===== */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
  line-height: 1;
}

.stat-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-suffix {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-color);
}

/* ===== ORBIT VISUAL ===== */
.hero-visual {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.orbit-system {
  position: relative;
  width: 440px;
  height: 440px;
}

/* Static rings */
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(167, 139, 250, 0.1);
}

.ring-1 {
  width: 150px;
  height: 150px;
  border-style: solid;
  border-color: rgba(167, 139, 250, 0.08);
}
.ring-2 {
  width: 240px;
  height: 240px;
}
.ring-3 {
  width: 340px;
  height: 340px;
}
.ring-4 {
  width: 430px;
  height: 430px;
  border-color: rgba(167, 139, 250, 0.06);
}

/* Orbiting paths */
.orbit-path {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.path-1 {
  width: 150px;
  height: 150px;
  animation: orbitSpin 10s linear infinite;
}
.path-2 {
  width: 240px;
  height: 240px;
  animation: orbitSpin 16s linear infinite reverse;
}
.path-3 {
  width: 340px;
  height: 340px;
  animation: orbitSpin 22s linear infinite;
}
.path-4 {
  width: 430px;
  height: 430px;
  animation: orbitSpin 28s linear infinite reverse;
}

.path-1-alt {
  width: 150px;
  height: 150px;
  animation: orbitSpin 10s linear infinite;
  animation-delay: -5s;
}
.path-2-alt {
  width: 240px;
  height: 240px;
  animation: orbitSpin 16s linear infinite reverse;
  animation-delay: -8s;
}
.path-3-alt {
  width: 340px;
  height: 340px;
  animation: orbitSpin 22s linear infinite;
  animation-delay: -11s;
}
.path-4-alt {
  width: 430px;
  height: 430px;
  animation: orbitSpin 28s linear infinite reverse;
  animation-delay: -14s;
}

@keyframes orbitSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Model dots */
.orbit-dot {
  position: absolute;
  top: -19px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.orbit-dot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  pointer-events: none;
}

.orbit-dot:hover {
  transform: translateX(-50%) scale(1.18);
}

/* Counter-rotate dots so text stays upright */
.path-1 .orbit-dot {
  animation: orbitSpin 10s linear infinite reverse;
}
.path-2 .orbit-dot {
  animation: orbitSpin 16s linear infinite;
}
.path-3 .orbit-dot {
  animation: orbitSpin 22s linear infinite reverse;
}
.path-4 .orbit-dot {
  animation: orbitSpin 28s linear infinite;
}

.dot-gpt {
  background: linear-gradient(
    135deg,
    rgba(167, 139, 250, 0.35),
    rgba(167, 139, 250, 0.1)
  );
  border: 1.5px solid rgba(167, 139, 250, 0.5);
  color: var(--accent-purple);
}
.dot-gpt:hover {
  box-shadow: 0 0 20px rgba(167, 139, 250, 0.4);
}

.dot-claude {
  background: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.35),
    rgba(6, 182, 212, 0.1)
  );
  border: 1.5px solid rgba(6, 182, 212, 0.5);
  color: var(--accent-cyan);
}
.dot-claude:hover {
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
}

.dot-gemini {
  background: linear-gradient(
    135deg,
    rgba(129, 140, 248, 0.35),
    rgba(129, 140, 248, 0.1)
  );
  border: 1.5px solid rgba(129, 140, 248, 0.5);
  color: var(--accent-blue);
}
.dot-gemini:hover {
  box-shadow: 0 0 20px rgba(129, 140, 248, 0.4);
}

.dot-grok {
  background: linear-gradient(
    135deg,
    rgba(244, 114, 182, 0.35),
    rgba(244, 114, 182, 0.1)
  );
  border: 1.5px solid rgba(244, 114, 182, 0.5);
  color: var(--accent-pink);
}
.dot-grok:hover {
  box-shadow: 0 0 20px rgba(244, 114, 182, 0.4);
}

/* Micro accent dots */
.orbit-micro {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  opacity: 0.5;
  animation: microPulse 3s ease-in-out infinite;
}

.micro-1 {
  background: var(--accent-purple);
  animation-delay: 0s;
}
.micro-2 {
  background: var(--accent-cyan);
  animation-delay: 0.8s;
}
.micro-3 {
  background: var(--accent-blue);
  animation-delay: 1.6s;
}
.micro-4 {
  background: var(--accent-pink);
  animation-delay: 2.4s;
}

@keyframes microPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1.5);
  }
}

/* Center Orion hub */
.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow:
    0 0 40px rgba(167, 139, 250, 0.3),
    0 0 80px rgba(6, 182, 212, 0.15);
  padding: 12px;
}

.orbit-center img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  filter: brightness(10);
}

.center-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(167, 139, 250, 0.2);
  animation: centerRingSpin 8s linear infinite;
}

@keyframes centerRingSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.center-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--gradient-primary);
  filter: blur(24px);
  opacity: 0.4;
  animation: centerPulse 3s ease-in-out infinite;
}

@keyframes centerPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.15;
  }
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-arrow {
  animation: scrollBounce 2s ease-in-out infinite;
  color: var(--text-muted);
  font-size: 1rem;
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

/* ===== MARQUEE ===== */
.marquee-section {
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: rgba(10, 10, 26, 0.5);
}

.marquee-track {
  display: flex;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  gap: 28px;
  align-items: center;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-content span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.marquee-dot {
  color: var(--accent-purple) !important;
  font-size: 0.6rem !important;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(167, 139, 250, 0.08);
  border: 1px solid rgba(167, 139, 250, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-purple);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: linear-gradient(
    180deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 100%
  );
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-lead {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-lead strong {
  color: var(--accent-purple);
}

.about-text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-card {
  padding: 28px 24px;
  text-align: center;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.2rem;
}

.card-icon.purple {
  background: rgba(167, 139, 250, 0.12);
  color: var(--accent-purple);
}

.card-icon.cyan {
  background: rgba(6, 182, 212, 0.12);
  color: var(--accent-cyan);
}

.card-icon.blue {
  background: rgba(129, 140, 248, 0.12);
  color: var(--accent-blue);
}

.card-icon.pink {
  background: rgba(244, 114, 182, 0.12);
  color: var(--accent-pink);
}

.feature-card h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== MISSION SECTION ===== */
.mission-section {
  overflow: hidden;
}

.mission-bg-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(167, 139, 250, 0.06) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.mission-wrapper {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 48px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  position: relative;
}

.mission-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(167, 139, 250, 0.08);
  border: 1px solid rgba(167, 139, 250, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-purple);
  margin-bottom: 28px;
}

.mission-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.mission-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
}

.mission-values {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.value-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: rgba(167, 139, 250, 0.06);
  border: 1px solid rgba(167, 139, 250, 0.12);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

.value-pill:hover {
  border-color: var(--accent-purple);
  color: var(--text-primary);
  background: rgba(167, 139, 250, 0.1);
  transform: translateY(-2px);
}

.value-pill i {
  color: var(--accent-purple);
  font-size: 0.75rem;
}

/* ===== WHY SECTION ===== */
.why-section {
  background: linear-gradient(
    180deg,
    var(--bg-secondary) 0%,
    var(--bg-primary) 100%
  );
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}

.why-card-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  position: absolute;
  top: 20px;
  right: 24px;
  opacity: 0.04;
  line-height: 1;
}

.why-card-icon {
  margin-bottom: 24px;
}

.icon-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  position: relative;
}

.icon-ring::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  padding: 2px;
  background: var(--gradient-primary);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.4;
}

.icon-ring.purple {
  background: rgba(167, 139, 250, 0.1);
  color: var(--accent-purple);
}

.icon-ring.cyan {
  background: rgba(6, 182, 212, 0.1);
  color: var(--accent-cyan);
}

.icon-ring.blue {
  background: rgba(129, 140, 248, 0.1);
  color: var(--accent-blue);
}

.icon-ring.pink {
  background: rgba(244, 114, 182, 0.1);
  color: var(--accent-pink);
}

.why-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.why-card-glow {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  bottom: -60px;
  right: -60px;
  filter: blur(60px);
  opacity: 0;
  transition: var(--transition-slow);
}

.why-card:hover .why-card-glow {
  opacity: 0.15;
}

.why-card-glow.purple {
  background: var(--accent-purple);
}
.why-card-glow.cyan {
  background: var(--accent-cyan);
}
.why-card-glow.blue {
  background: var(--accent-blue);
}
.why-card-glow.pink {
  background: var(--accent-pink);
}

/* ===== HOW IT WORKS ===== */
.steps-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(167, 139, 250, 0.1);
  border-radius: 1px;
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--gradient-primary);
  border-radius: 1px;
  transition: height 0.1s linear;
}

.step-item {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  position: relative;
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-node {
  position: relative;
  flex-shrink: 0;
  width: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 28px;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #050510;
  position: relative;
  z-index: 2;
}

.step-pulse {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  top: 28px;
  opacity: 0;
  z-index: 1;
}

.step-item.active .step-pulse {
  animation: stepPulse 2s ease-out infinite;
}

@keyframes stepPulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.step-content {
  flex: 1;
  padding: 28px 32px;
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(167, 139, 250, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-purple);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.step-content h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 140px 0;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(167, 139, 250, 0.08) 0%,
    rgba(6, 182, 212, 0.04) 50%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-wrapper {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.cta-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta-note {
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-color);
  padding: 64px 0 32px;
  background: var(--bg-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(167, 139, 250, 0.06);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: rgba(167, 139, 250, 0.12);
  border-color: var(--accent-purple);
  color: var(--accent-purple);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--accent-purple);
  transform: translateX(3px);
}

.footer-contact {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.footer-contact-heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.footer-contact p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-contact a {
  display: inline;
  color: var(--accent-purple);
  margin-bottom: 0;
  transform: none;
}

.footer-contact a:hover {
  transform: none;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--accent-purple);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom a:hover {
  opacity: 0.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .hero {
    padding: 120px 20px 60px;
    min-height: auto;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-number,
  .stat-suffix {
    font-size: 1.8rem;
  }

  .orbit-system {
    width: 320px;
    height: 320px;
  }

  .ring-1,
  .path-1,
  .path-1-alt {
    width: 110px;
    height: 110px;
  }
  .ring-2,
  .path-2,
  .path-2-alt {
    width: 175px;
    height: 175px;
  }
  .ring-3,
  .path-3,
  .path-3-alt {
    width: 245px;
    height: 245px;
  }
  .ring-4,
  .path-4,
  .path-4-alt {
    width: 310px;
    height: 310px;
  }

  .orbit-dot {
    width: 30px;
    height: 30px;
    top: -15px;
  }

  .orbit-micro {
    width: 5px;
    height: 5px;
  }

  .orbit-center {
    width: 52px;
    height: 52px;
    padding: 10px;
  }

  .center-ring {
    inset: -5px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-cards {
    grid-template-columns: 1fr;
  }

  .mission-wrapper {
    padding: 40px 24px;
  }

  .mission-values {
    gap: 8px;
  }

  .value-pill {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .steps-timeline {
    padding-left: 0;
  }

  .timeline-line {
    left: 20px;
  }

  .step-item {
    gap: 20px;
  }

  .step-node {
    width: 42px;
  }

  .step-number {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
  }

  .step-content {
    padding: 24px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .cta-section {
    padding: 100px 0;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn-lg {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .hero-badge {
    font-size: 0.75rem;
  }
}

/* ===== THEME TOGGLE BUTTON ===== */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--glass-bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  flex-shrink: 0;
}

.theme-toggle:hover {
  border-color: var(--accent-purple);
  background: rgba(167, 139, 250, 0.1);
  transform: rotate(15deg);
}

.theme-icon-dark,
.theme-icon-light {
  position: absolute;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-icon-dark {
  color: var(--accent-purple);
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.theme-icon-light {
  color: #f59e0b;
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
}

[data-theme="light"] .theme-icon-dark {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}

[data-theme="light"] .theme-icon-light {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* ===== LIGHT THEME ===== */
[data-theme="light"] {
  --bg-primary: #f8f9fc;
  --bg-secondary: #eef0f6;
  --bg-card: rgba(255, 255, 255, 0.7);
  --bg-card-hover: rgba(255, 255, 255, 0.9);
  --text-primary: #1a1a2e;
  --text-secondary: #555570;
  --text-muted: #888899;
  --accent-purple: #7c3aed;
  --accent-cyan: #0891b2;
  --accent-blue: #6366f1;
  --accent-pink: #ec4899;
  --gradient-primary: linear-gradient(135deg, #7c3aed 0%, #0891b2 100%);
  --gradient-secondary: linear-gradient(
    135deg,
    #6366f1 0%,
    #7c3aed 50%,
    #0891b2 100%
  );
  --border-color: rgba(124, 58, 237, 0.1);
  --border-hover: rgba(124, 58, 237, 0.25);
  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(124, 58, 237, 0.1);
  --shadow-glow: 0 4px 30px rgba(124, 58, 237, 0.08);
}

[data-theme="light"] body {
  background: var(--bg-primary);
}

[data-theme="light"] .navbar.scrolled {
  background: rgba(248, 249, 252, 0.9);
  border-bottom-color: rgba(124, 58, 237, 0.08);
}

[data-theme="light"] .mobile-menu {
  background: rgba(248, 249, 252, 0.98);
}

[data-theme="light"] .mobile-toggle span {
  background: var(--text-primary);
}

[data-theme="light"] .hero-glow-1 {
  background: rgba(124, 58, 237, 0.08);
}

[data-theme="light"] .hero-glow-2 {
  background: rgba(8, 145, 178, 0.06);
}

[data-theme="light"] .hero-glow-3 {
  background: rgba(99, 102, 241, 0.05);
}

[data-theme="light"] .hero-badge {
  background: rgba(124, 58, 237, 0.06);
  border-color: rgba(124, 58, 237, 0.15);
}

[data-theme="light"] .typed-text {
  color: var(--accent-cyan);
}

[data-theme="light"] .typed-cursor {
  color: var(--accent-cyan);
}

[data-theme="light"] .btn-primary {
  color: #ffffff;
}

[data-theme="light"] .nav-btn-primary {
  color: #ffffff;
}

[data-theme="light"] .btn-outline {
  border-color: rgba(124, 58, 237, 0.25);
  color: var(--text-primary);
}

[data-theme="light"] .btn-outline:hover {
  border-color: var(--accent-purple);
  background: rgba(124, 58, 237, 0.04);
}

[data-theme="light"] .glass-card {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(124, 58, 237, 0.08);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .glass-card:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(124, 58, 237, 0.2);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.08);
}

[data-theme="light"] .marquee-section {
  background: rgba(238, 240, 246, 0.6);
  border-color: rgba(124, 58, 237, 0.06);
}

[data-theme="light"] .about-section {
  background: linear-gradient(
    180deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 100%
  );
}

[data-theme="light"] .about-lead strong {
  color: var(--accent-purple);
}

[data-theme="light"] .card-icon.purple {
  background: rgba(124, 58, 237, 0.08);
  color: var(--accent-purple);
}

[data-theme="light"] .card-icon.cyan {
  background: rgba(8, 145, 178, 0.08);
  color: var(--accent-cyan);
}

[data-theme="light"] .card-icon.blue {
  background: rgba(99, 102, 241, 0.08);
  color: var(--accent-blue);
}

[data-theme="light"] .card-icon.pink {
  background: rgba(236, 72, 153, 0.08);
  color: var(--accent-pink);
}

[data-theme="light"] .mission-bg-glow {
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.04) 0%,
    transparent 70%
  );
}

[data-theme="light"] .mission-wrapper {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(124, 58, 237, 0.1);
  box-shadow: 0 4px 40px rgba(124, 58, 237, 0.06);
}

[data-theme="light"] .mission-badge {
  background: rgba(124, 58, 237, 0.06);
  border-color: rgba(124, 58, 237, 0.12);
}

[data-theme="light"] .value-pill {
  background: rgba(124, 58, 237, 0.04);
  border-color: rgba(124, 58, 237, 0.1);
}

[data-theme="light"] .value-pill:hover {
  background: rgba(124, 58, 237, 0.08);
  border-color: var(--accent-purple);
}

[data-theme="light"] .why-section {
  background: linear-gradient(
    180deg,
    var(--bg-secondary) 0%,
    var(--bg-primary) 100%
  );
}

[data-theme="light"] .why-card-number {
  opacity: 0.03;
}

[data-theme="light"] .icon-ring.purple {
  background: rgba(124, 58, 237, 0.08);
  color: var(--accent-purple);
}

[data-theme="light"] .icon-ring.cyan {
  background: rgba(8, 145, 178, 0.08);
  color: var(--accent-cyan);
}

[data-theme="light"] .icon-ring.blue {
  background: rgba(99, 102, 241, 0.08);
  color: var(--accent-blue);
}

[data-theme="light"] .icon-ring.pink {
  background: rgba(236, 72, 153, 0.08);
  color: var(--accent-pink);
}

[data-theme="light"] .section-tag {
  background: rgba(124, 58, 237, 0.06);
  border-color: rgba(124, 58, 237, 0.12);
}

[data-theme="light"] .orbit-ring {
  border-color: rgba(124, 58, 237, 0.08);
}

[data-theme="light"] .dot-gpt {
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.18),
    rgba(124, 58, 237, 0.05)
  );
  border-color: rgba(124, 58, 237, 0.3);
  color: var(--accent-purple);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.1);
}

[data-theme="light"] .dot-claude {
  background: linear-gradient(
    135deg,
    rgba(8, 145, 178, 0.18),
    rgba(8, 145, 178, 0.05)
  );
  border-color: rgba(8, 145, 178, 0.3);
  color: var(--accent-cyan);
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.1);
}

[data-theme="light"] .dot-gemini {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.18),
    rgba(99, 102, 241, 0.05)
  );
  border-color: rgba(99, 102, 241, 0.3);
  color: var(--accent-blue);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}

[data-theme="light"] .dot-grok {
  background: linear-gradient(
    135deg,
    rgba(236, 72, 153, 0.18),
    rgba(236, 72, 153, 0.05)
  );
  border-color: rgba(236, 72, 153, 0.3);
  color: var(--accent-pink);
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.1);
}

[data-theme="light"] .orbit-center {
  color: #ffffff;
  box-shadow:
    0 4px 24px rgba(124, 58, 237, 0.2),
    0 0 60px rgba(8, 145, 178, 0.1);
}

[data-theme="light"] .center-ring {
  border-color: rgba(124, 58, 237, 0.15);
}

[data-theme="light"] .step-number {
  color: #ffffff;
}

[data-theme="light"] .step-icon {
  background: rgba(124, 58, 237, 0.08);
}

[data-theme="light"] .cta-glow {
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.05) 0%,
    rgba(8, 145, 178, 0.03) 50%,
    transparent 70%
  );
}

[data-theme="light"] .footer {
  background: var(--bg-secondary);
  border-top-color: rgba(124, 58, 237, 0.06);
}

[data-theme="light"] .footer-socials a {
  background: rgba(124, 58, 237, 0.04);
  border-color: rgba(124, 58, 237, 0.1);
}

[data-theme="light"] .footer-socials a:hover {
  background: rgba(124, 58, 237, 0.08);
  border-color: var(--accent-purple);
  color: var(--accent-purple);
}

[data-theme="light"] .footer-bottom {
  border-top-color: rgba(124, 58, 237, 0.08);
}

[data-theme="light"] .logo-icon img {
  filter: drop-shadow(0 0 6px rgba(124, 58, 237, 0.2));
}

[data-theme="light"] .logo-icon img:hover {
  filter: drop-shadow(0 0 12px rgba(124, 58, 237, 0.35));
}

[data-theme="light"] ::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

[data-theme="light"] ::-webkit-scrollbar-thumb {
  background: var(--accent-purple);
}

/* Smooth theme transition on all elements */
html[data-theme="light"] *,
html[data-theme="light"] *::before,
html[data-theme="light"] *::after {
  transition:
    background-color 0.4s ease,
    color 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}
