:root {
  --bg-dark: #020205; /* Deep black */
  --text-main: #ffffff;
  --text-muted: #8892b0;
  --neon-blue: #00E5FF;
  --neon-purple: #7C3AED;
  --card-bg: rgba(10, 10, 15, 0.6);
  --border-color: rgba(0, 229, 255, 0.2);
  --font-sans: 'Outfit', sans-serif;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Base Styles & Typography */
a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

/* Utilities */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-blue {
  color: var(--neon-blue);
}

.glow-text {
  text-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
}

/* Background Effects */
.bg-gradient {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100vh;
  background: radial-gradient(ellipse at top center, rgba(124, 58, 237, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(0, 229, 255, 0.1) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
}

.grid-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -2;
  pointer-events: none;
}

/* Glowing Stars */
.glowing-star {
  position: absolute;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px 2px var(--neon-blue);
  animation: twinkle ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.1; transform: scale(0.8); box-shadow: 0 0 5px 1px var(--neon-blue); }
  50% { opacity: 0.9; transform: scale(1.2); box-shadow: 0 0 15px 3px var(--neon-blue); }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 900px;
  padding: 0.8rem 0;
  background: rgba(2, 2, 5, 0.7);
  backdrop-filter: blur(16px);
  z-index: 100;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

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

.nav-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text-main);
}

.nav-links a.active {
  position: relative;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--neon-blue);
  box-shadow: 0 0 10px var(--neon-blue);
  border-radius: 2px;
}

.btn-primary {
  background: transparent;
  color: var(--neon-blue);
  border: 1px solid var(--neon-blue);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.btn-primary:hover {
  background: var(--neon-blue);
  color: #000;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.6);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 100px; /* offset navbar */
}

.hero-badge {
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  color: var(--neon-blue);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  transform: translateY(2rem);
  display: inline-block;
  backdrop-filter: blur(5px);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
  max-width: 1000px;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 4rem;
}

.btn-solid {
  background: var(--neon-blue);
  color: #000;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

.btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.6);
}

/* Hero Animation Integration */
.hero-animation {
  position: relative;
  height: 500px; /* Reduced from 90vh to prevent massive layout push */
  width: 100%;
  max-width: 1000px; /* Keep it contained */
  overflow: hidden;
  margin: 2rem auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  border-radius: 20px;
}

.bg-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(60, 80, 255, 0.15) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.seq-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

/* Logo Object */
.hero-animation .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5); /* Base state */
  width: 160px;
  height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.2));
  opacity: 0;
  will-change: transform, opacity;
}

.hero-animation.playing .logo {
  animation: logoSequence 12s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

/* Brand Text */
.hero-animation .brand-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Base state */
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: -2px;
  background: linear-gradient(180deg, #ffffff 0%, #8888a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  opacity: 0;
  will-change: transform, opacity;
}

.hero-animation.playing .brand-text {
  animation: textSequence 12s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

/* UI Previews */
.ui-group {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ui-preview {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8); /* Base state */
  width: 800px;
  max-width: 90%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.8), 0 0 40px rgba(80, 100, 255, 0.1);
  opacity: 0;
  will-change: transform, opacity;
}

.hero-animation.playing .ui-preview.first { animation: ui1 12s infinite; }
.hero-animation.playing .ui-preview.second { animation: ui2 12s infinite; }

/* Background Particles */
.background-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-p {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  opacity: 0;
}

.hero-animation.playing .bg-p {
  animation: floatParticles linear infinite;
}

/* Particle randomization */
.bg-p:nth-child(5n+1) { width: 3px; height: 3px; animation-duration: 22s; }
.bg-p:nth-child(5n+2) { width: 1px; height: 1px; animation-duration: 40s; animation-delay: -7s; }
.bg-p:nth-child(5n+3) { width: 2px; height: 2px; animation-duration: 15s; animation-delay: -12s; }
.bg-p:nth-child(5n+4) { width: 4px; height: 4px; animation-duration: 50s; animation-delay: -20s; }
.bg-p:nth-child(5n+5) { width: 2px; height: 2px; animation-duration: 30s; animation-delay: -3s; }

.bg-p:nth-child(10n+1) { left: 5%; }
.bg-p:nth-child(10n+2) { left: 15%; }
.bg-p:nth-child(10n+3) { left: 25%; }
.bg-p:nth-child(10n+4) { left: 35%; }
.bg-p:nth-child(10n+5) { left: 45%; }
.bg-p:nth-child(10n+6) { left: 55%; }
.bg-p:nth-child(10n+7) { left: 65%; }
.bg-p:nth-child(10n+8) { left: 75%; }
.bg-p:nth-child(10n+9) { left: 85%; }
.bg-p:nth-child(10n+10) { left: 95%; }

.bg-p:nth-child(7n+1) { top: 10%; }
.bg-p:nth-child(7n+2) { top: 25%; }
.bg-p:nth-child(7n+3) { top: 40%; }
.bg-p:nth-child(7n+4) { top: 55%; }
.bg-p:nth-child(7n+5) { top: 70%; }
.bg-p:nth-child(7n+6) { top: 85%; }
.bg-p:nth-child(7n+7) { top: 5%; }

@keyframes floatParticles {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.5; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-100%) translateX(30px); opacity: 0; }
}

@keyframes logoSequence {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0; }
  14% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  22% { transform: translate(calc(-50% - 180px), -50%) scale(0.9); opacity: 1; }
  45% { transform: translate(calc(-50% - 180px), -50%) scale(0.9); opacity: 1; }
  52%, 100% { transform: translate(calc(-50% - 180px), -50%) scale(0.8); opacity: 0; }
}

@keyframes textSequence {
  0%, 22% { transform: translate(calc(-50% + 120px), -50%); opacity: 0; filter: blur(10px); }
  32% { transform: translate(calc(-50% + 80px), -50%); opacity: 1; filter: blur(0); }
  45% { transform: translate(calc(-50% + 80px), -50%); opacity: 1; }
  52%, 100% { transform: translate(calc(-50% + 80px), -50%) scale(0.9); opacity: 0; }
}

@keyframes ui1 {
  0%, 55% { transform: translate(-50%, -50%) scale(0.85); opacity: 0; }
  60%, 72% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  78% { transform: translate(-50%, -50%) scale(0.5); opacity: 0; }
  100% { transform: translate(-50%, -50%) scale(0.5); opacity: 0; }
}

@keyframes ui2 {
  0%, 80% { transform: translate(-50%, -50%) scale(0.85); opacity: 0; }
  85%, 94% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(0.5); opacity: 0; }
}

/* Stats Section */
.stats {
  padding: 6rem 0;
  text-align: center;
  position: relative;
}

.stats-title {
  font-size: 2.2rem;
  margin-bottom: 4rem;
  font-weight: 500;
  color: var(--text-muted);
}

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

.stat-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 3rem 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 15px rgba(124, 58, 237, 0.1);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-value {
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--neon-blue);
  margin-bottom: 0.5rem;
  line-height: 1;
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Features Section */
.features {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  color: var(--neon-purple);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  max-width: 700px;
  margin: 0 auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  auto-rows: 280px;
}

.bento-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bento-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 50%;
  background: linear-gradient(0deg, rgba(124, 58, 237, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.bento-card:hover {
  border-color: rgba(124, 58, 237, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 20px rgba(124, 58, 237, 0.1);
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-main);
  z-index: 2;
}

.bento-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  z-index: 2;
}

/* Specific Grid Placements */
.bento-card:nth-child(1) { grid-column: span 2; }
.bento-card:nth-child(2) { grid-column: span 1; }
.bento-card:nth-child(3) { grid-column: span 1; }
.bento-card:nth-child(4) { grid-column: span 2; }

/* Decorative Icon in Bento */
.bento-icon {
  margin-top: auto;
  align-self: flex-end;
  font-size: 3.5rem;
  color: rgba(255,255,255,0.05);
  z-index: 1;
  transition: color 0.4s ease;
}
.bento-card:hover .bento-icon {
  color: rgba(0, 229, 255, 0.4);
}

/* Footer Section */
.footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 4rem 0 2rem;
  margin-top: 6rem;
  background: #010103;
}

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

.footer-brand p {
  color: var(--text-muted);
  margin-top: 1rem;
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-column a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--neon-blue);
}

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

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--neon-blue);
}

/* Animations Trigger */
.fade-up {
  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);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-card:nth-child(n) {
    grid-column: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .nav-links, .navbar .btn-primary {
    display: none;
  }
  .hero-graphic {
    height: 250px;
  }
  .ai-center {
    padding: 1.5rem 3rem;
  }
  .ai-center h2 {
    font-size: 3.5rem;
  }
  .node {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons button {
    width: 100%;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* About Page Specifics */
.content-section {
  padding: 6rem 0;
  text-align: center;
}
.content-section h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}
.content-section p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
}

/* Roadmap Timeline */
.roadmap-container {
  position: relative;
  max-width: 900px;
  margin: 4rem auto 0;
  padding: 2rem 0;
}
.roadmap-line-bg {
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.05);
}
.roadmap-line-progress {
  position: absolute;
  left: 30px;
  top: 0;
  width: 2px;
  background: var(--neon-blue);
  height: 0%; /* updated via JS */
  box-shadow: 0 0 10px var(--neon-blue);
  transition: height 0.1s ease-out;
}
.roadmap-step {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
  opacity: 0.3; /* default inactive */
  transition: all 0.5s ease;
}
.roadmap-step.active {
  opacity: 1;
}
.roadmap-step.active .roadmap-card {
  border-color: var(--border-color);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}
.roadmap-step.active .step-node {
  background: var(--neon-blue);
  box-shadow: 0 0 15px var(--neon-blue);
}
.step-node {
  position: absolute;
  left: 30px;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--neon-blue);
  z-index: 2;
  transition: all 0.5s ease;
}
.roadmap-content {
  margin-left: 70px;
  width: 100%;
}
.roadmap-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}
.roadmap-card h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.8rem;
}
.roadmap-card p {
  color: var(--text-muted);
  font-size: 1rem;
}

@media (min-width: 768px) {
  .roadmap-line-bg, .roadmap-line-progress, .step-node {
    left: 50%;
  }
  .roadmap-content {
    width: 50%;
    margin-left: 0;
  }
  .roadmap-step:nth-child(odd) {
    justify-content: flex-start;
  }
  .roadmap-step:nth-child(even) {
    justify-content: flex-end;
  }
  .roadmap-step:nth-child(odd) .roadmap-content {
    text-align: right;
    padding-right: 3rem;
  }
  .roadmap-step:nth-child(even) .roadmap-content {
    text-align: left;
    padding-left: 3rem;
  }
}

/* Pricing Section Specifics */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  align-items: center; /* helps highlight pro card size */
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--border-color);
  box-shadow: 0 15px 40px rgba(0,0,0,0.6), inset 0 0 20px rgba(0, 229, 255, 0.1);
}

.pricing-card.pro {
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 15px rgba(0, 229, 255, 0.15);
  transform: scale(1.05);
}

.pricing-card.pro:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 229, 255, 0.2), inset 0 0 30px rgba(0, 229, 255, 0.3);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--neon-blue);
  color: #000;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.6);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 2rem;
}

.pricing-header h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--neon-blue);
  line-height: 1;
}

.price-period {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.pricing-features li {
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.pricing-features li::before {
  content: '✓';
  color: var(--neon-blue);
  font-weight: bold;
}

.pricing-card .btn-primary, .pricing-card .btn-solid {
  width: 100%;
  text-align: center;
}

/* Download Page Specifics */
.hero-download {
  padding-top: 150px;
  padding-bottom: 2rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.download-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.download-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 15px rgba(0, 229, 255, 0.15);
}

.platform-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}

.platform-icon svg, .platform-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.platform-icon.windows { color: #00A4EF; filter: drop-shadow(0 0 15px rgba(0, 164, 239, 0.4)); }
.platform-icon.apple { filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3)); }
.platform-icon.android { filter: drop-shadow(0 0 15px rgba(61, 220, 132, 0.4)); }

.download-card h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.8rem;
}

.download-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.download-card .btn-solid.dl-link {
  width: 100%;
  display: block;
  text-align: center;
  box-sizing: border-box;
}

.access-note-card {
  background: rgba(10, 10, 15, 0.4);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 16px;
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: inset 0 0 20px rgba(0, 229, 255, 0.05);
  text-align: center;
}

.access-note-card h3 {
  font-size: 2rem;
  color: var(--neon-blue);
  margin-bottom: 1rem;
}

.access-note-card p {
  font-size: 1.2rem;
  color: var(--text-muted);
}

.do-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.do-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.do-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 15px rgba(124, 58, 237, 0.1);
}

.do-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.do-card h4 {
  font-size: 1.2rem;
  color: #fff;
  margin: 0;
}

/* Contact Page Specifics */
.glass-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.form-group label {
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 500;
}

.form-control {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem;
  font-size: 1rem;
  color: #fff;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-control:focus {
  border-color: var(--neon-blue);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
  background: rgba(0, 0, 0, 0.7);
}

.btn-full {
  width: 100%;
}

.contact-btn {
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.6);
}

.hover-blue {
  transition: color 0.3s ease;
}
.hover-blue:hover {
  color: var(--neon-blue) !important;
}


/* Showcase Page Specifics */
.showcase-section {
  padding: 8rem 0;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.showcase-grid.reverse {
  direction: rtl;
}
.showcase-grid.reverse .showcase-text {
  direction: ltr;
}

.showcase-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, var(--neon-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.showcase-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
}

/* Glass Card for Images */
.glass-image-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 229, 255, 0.1);
  border-radius: 20px;
  padding: 10px;
  backdrop-filter: blur(10px);
  position: relative;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.glass-image-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  background: linear-gradient(135deg, rgba(0, 225, 255, 0.2), transparent, rgba(124, 58, 237, 0.1));
  border-radius: 20px;
  z-index: -1;
  opacity: 0.5;
}

.glass-image-card img {
  border-radius: 12px;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-image-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: 0 20px 50px rgba(0, 229, 255, 0.15);
}

.glow-blue {
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.2);
}

/* Chat Preview Style */
.chat-preview {
  max-width: 450px;
  margin: 0 auto;
}

/* Floating Card Style */
.floating-ui {
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: all 0.6s ease;
}

.floating-ui:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.03);
}

/* Scroll Animations Extension */
.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-right.visible, .slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 900px) {
  .showcase-grid, .showcase-grid.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr;
    text-align: center;
  }
  .showcase-text p {
    margin: 0 auto;
  }
}
