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

body {
  font-family: "Inter", sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

:root {
  --color-bg: #0a0a0f;
  --color-text: #ffffff;
  --color-accent1: #8b5cf6;
  --color-accent2: #06b6d4;
  --color-muted: #a1a1aa;
  --gradient-accent: linear-gradient(135deg, var(--color-accent1), var(--color-accent2));
  --panel-bg: rgba(255,255,255,0.05);
  --panel-border-accent1: rgba(139, 92, 246, 0.2);
  --panel-border-accent2: rgba(6, 182, 212, 0.2);
  --radius: 12px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

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

/* Gradient Text */
.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}

.btn-primary {
  background: var(--gradient-accent);
  color: white;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--color-accent2);
  border: 2px solid var(--color-accent2);
}

.btn-secondary:hover {
  background: var(--color-accent2);
  color: var(--color-bg);
}

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  position: relative;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-muted);
  margin-bottom: 32px;
}

/* (Removed lead-form styles after eliminating waitlist form) */

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* AI Bot Animation */
.ai-bot {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
}

.bot-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #8b5cf6, #06b6d4);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.6);
  animation: pulse 2s infinite;
}

.bot-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-radius: 50%;
  animation: rotate 10s linear infinite;
}

.ring-1 {
  width: 120px;
  height: 120px;
  border-top-color: #8b5cf6;
}

.ring-2 {
  width: 180px;
  height: 180px;
  border-right-color: #06b6d4;
  animation-duration: 15s;
  animation-direction: reverse;
}

.ring-3 {
  width: 240px;
  height: 240px;
  border-left-color: #8b5cf6;
  animation-duration: 20s;
}

.bot-eye {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  animation: blink 3s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

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

@keyframes blink {
  0%,
  90%,
  100% {
    opacity: 1;
  }
  95% {
    opacity: 0;
  }
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
}

/* Models & Results */
.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.model-card {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border-accent1);
  border-radius: 12px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.model-card h3 {
  color: #8b5cf6;
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.performance-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.stat-card {
  text-align: center;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 12px;
  padding: 30px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent2);
  margin-bottom: 8px;
}

.stat-label {
  color: #a1a1aa;
  font-size: 0.9rem;
}

/* Equity Chart */
.equity-chart { background: rgba(255,255,255,0.05); border-radius:12px; padding:24px 32px; position:relative; height:220px; display:flex; align-items:center; }
.equity-svg { width:100%; height:100%; overflow:visible; }
.equity-line { fill:none; stroke:url(#equityGradient); stroke-width:2.5; filter:drop-shadow(0 0 6px rgba(6,182,212,0.35)); stroke-linejoin:round; stroke-linecap:round; animation: equityRise 2.2s ease-in-out forwards; stroke-dasharray:260; stroke-dashoffset:260; }
.equity-point { fill:#06b6d4; filter:drop-shadow(0 0 6px rgba(6,182,212,0.6)); animation: pointPop 0.6s ease-out forwards; opacity:0; }
.equity-point:nth-of-type(2){ animation-delay:0.2s; }
.equity-point:nth-of-type(3){ animation-delay:0.4s; }
.equity-point:nth-of-type(4){ animation-delay:0.6s; }
.equity-point:nth-of-type(5){ animation-delay:0.8s; }
@keyframes equityRise { to { stroke-dashoffset:0; } }
@keyframes pointPop { 0%{ transform:scale(0.3); opacity:0; } 70%{ opacity:1; } 100%{ transform:scale(1); opacity:1; } }

/* Components Grid */
.components-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.component-card {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border-accent1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.component-card:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 92, 246, 0.4);
}

.component-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.component-card h3 {
  color: var(--color-accent1);
  margin-bottom: 16px;
  font-size: 1.25rem;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8b5cf6, #06b6d4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-card h3 {
  color: var(--color-accent2);
  margin-bottom: 16px;
  font-size: 1.25rem;
}

/* Visualizations */
.viz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.viz-card {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border-accent2);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
}

.analyzing-bot {
  position: relative;
  height: 120px;
  margin-bottom: 20px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.scanner-line {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #06b6d4, transparent);
  animation: scan 2s infinite;
}

.data-points {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.data-point {
  width: 6px;
  height: 6px;
  background: #8b5cf6;
  border-radius: 50%;
  margin: 8px;
  display: inline-block;
  animation: pulse 1.5s infinite;
}

.profit-chart {
  height: 120px;
  margin-bottom: 20px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 8px;
}

.profit-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 100%;
}

.bar {
  width: 20px;
  background: linear-gradient(to top, #8b5cf6, #06b6d4);
  border-radius: 4px 4px 0 0;
  animation: grow 2s ease-out;
}

.bar-1 {
  height: 30%;
}
.bar-2 {
  height: 50%;
}
.bar-3 {
  height: 70%;
}
.bar-4 {
  height: 85%;
}
.bar-5 {
  height: 100%;
}

@keyframes scan {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes grow {
  from {
    height: 0;
  }
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border-accent1);
  border-radius: 12px;
  padding: 30px;
}

.testimonial-stats {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-stats .stat {
  background: rgba(6, 182, 212, 0.2);
  color: var(--color-accent2);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonial-card p {
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  color: #a1a1aa;
  font-size: 0.9rem;
}

.trust-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logo {
  color: var(--color-muted);
  font-weight: 600;
  font-size: 1.1rem;
}

/* Final CTA */
.final-cta {
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
  text-align: center;
}

.cta-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: var(--color-muted);
  margin-bottom: 40px;
}

/* Footer */
.footer {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.social-link {
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--color-accent2);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* Disclaimer */
.disclaimer { background: rgba(255,255,255,0.02); padding:40px 0; }
.disclaimer-text { font-size:0.8rem; line-height:1.4; color:var(--color-muted); }

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .ai-bot {
    width: 250px;
    height: 250px;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }
}
