/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --background: #0a0d14;
  /* 220 20% 4% roughly */
  --foreground: #f8f9fa;
  --card: #11141c;
  --border: #1e222d;
  --oryon-sky: #01ecf3;
  /* Turquoise Blue */
  --oryon-sky-glow: #da107b;
  /* Vivid Cerise */
  --oryon-dark: #06080d;
  --muted: #1c202a;
  --muted-foreground: #8a94a6;
}

body.landing-page {
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'Space Grotesk', sans-serif;
  margin: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.landing-page a {
  text-decoration: none;
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  transform-origin: center center;
  animation: landingZoomIn 5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes landingZoomIn {
  0%   { transform: scale(0.25); opacity: 0; }
  15%  { opacity: 1; }
  100% { transform: scale(1);    opacity: 1; }
}

.landing-zoom-wrapper {
  transform-origin: center center;
  animation: landingZoomIn 5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

#cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(1, 236, 243, 0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  will-change: left, top;
}

/* Utilities */
.text-gradient-sky {
  background: linear-gradient(135deg, var(--oryon-sky), var(--oryon-sky-glow));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-grid-dark {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.glow-sky {
  box-shadow: 0 0 40px -10px rgba(1, 236, 243, 0.4),
    0 0 80px -20px rgba(1, 236, 243, 0.2);
}

.glow-sky-sm {
  box-shadow: 0 0 20px -5px rgba(1, 236, 243, 0.3);
}

.font-mono {
  font-family: 'JetBrains Mono', monospace;
}

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

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(10, 13, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  height: 64px;
  display: flex;
  align-items: center;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-brand {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
  color: var(--foreground);
}

.btn-primary {
  background: linear-gradient(135deg, var(--oryon-sky), var(--oryon-sky-glow));
  color: #fff;
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px -5px rgba(1, 236, 243, 0.5);
  color: #fff;
}

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

.hero-glow-orb {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(1, 236, 243, 0.05);
  filter: blur(120px);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(1, 236, 243, 0.3);
  background: rgba(1, 236, 243, 0.05);
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--oryon-sky);
}

.hero-badge-text {
  font-size: 0.75rem;
  color: var(--oryon-sky);
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  max-width: 900px;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  max-width: 670px;
  margin: 0 auto 40px auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn-sky {
  background: linear-gradient(135deg, var(--oryon-sky), var(--oryon-sky-glow));
  color: #fff;
  padding: 14px 32px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  box-sizing: border-box;
}

.btn-sky:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px -10px rgba(1, 236, 243, 0.5);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
  padding: 14px 32px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  box-sizing: border-box;
}

.btn-outline:hover {
  background: var(--muted);
}

/* Base Section Styles */
.section {
  padding: 96px 0;
  border-top: 1px solid var(--border);
  position: relative;
}

.section-subtitle {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--oryon-sky);
  font-size: 0.75rem;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.stat-value {
  font-size: 3rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 8px;
}

.stats-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 56px;
}

.stats-tag {
  background: var(--muted);
  border: 1px solid var(--border);
  color: var(--muted-foreground);
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 0.75rem;
}

/* Feature Cards Grid (Analysis / Creates / Why) */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  margin-top: 64px;
}

@media (min-width: 768px) {
  .cards-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
}

.card:hover {
  border-color: rgba(1, 236, 243, 0.3);
  box-shadow: 0 0 20px -5px rgba(1, 236, 243, 0.1);
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(1, 236, 243, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oryon-sky);
  margin-bottom: 20px;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.card-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.card-meta {
  margin-top: 16px;
  font-size: 0.75rem;
  color: rgba(1, 236, 243, 0.7);
}

/* List Items in Cards */
.card-list {
  margin-top: 20px;
  list-style: none;
  padding: 0;
}

.card-list-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 8px;
}

.card-list-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--oryon-sky);
  margin-top: 8px;
  flex-shrink: 0;
}

/* How It Works List */
.step-item {
  position: relative;
}

.step-num {
  font-size: 3.75rem;
  font-weight: 700;
  color: rgba(1, 236, 243, 0.15);
  display: block;
  line-height: 1;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 8px;
}

/* Pricing Grid */
.pricing-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--oryon-sky);
  color: white;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-card.popular {
  border-color: var(--oryon-sky);
  box-shadow: 0 0 40px -10px rgba(1, 236, 243, 0.2);
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  margin: 24px 0;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.pricing-feature i {
  color: var(--oryon-sky);
}

/* CTA Footer Section */
.cta-section {
  padding: 112px 0;
  text-align: center;
  background: var(--oryon-dark);
}

.cta-glow-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(1, 236, 243, 0.08);
  filter: blur(100px);
  pointer-events: none;
}

.footer-text {
  padding: 32px 0;
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  border-top: 1px solid var(--border);
}

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

  .hero-actions {
    flex-direction: column;
  }

  .section {
    padding: 64px 0;
  }

  .cards-grid {
    margin-top: 32px;
  }
}