/* Landing Page Styles */

:root {
  --landing-bg: #0a0e1a;
  --landing-card: rgba(30, 36, 51, 0.9);
  --landing-text: #eef1f6;
  --landing-muted: #9099ad;
  --landing-primary: #6C63FF;
  --landing-primary-dark: #5B52E8;
  --landing-gradient: linear-gradient(135deg, #6C63FF, #A56DFF);
}

/* Navigation */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(18, 24, 38, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--landing-text);
  text-decoration: none;
}

.nav-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.nav-name {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--landing-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-link {
  color: var(--landing-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.nav-btn-primary {
  background: var(--landing-gradient);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(108, 99, 255, 0.3);
}

.nav-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 99, 255, 0.4);
}

/* Hero Section */
.hero {
  padding: 120px 24px 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108, 99, 255, 0.15);
  border: 1px solid rgba(108, 99, 255, 0.3);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--landing-primary);
  margin-bottom: 24px;
}

.badge-icon {
  font-size: 18px;
}

.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 24px;
  color: var(--landing-text);
  font-family: 'Space Grotesk', sans-serif;
}

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

.hero-description {
  font-size: 20px;
  line-height: 1.6;
  color: var(--landing-muted);
  margin: 0 0 32px;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: var(--landing-gradient);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(108, 99, 255, 0.3);
  display: inline-block;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 99, 255, 0.4);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--landing-text);
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--landing-text);
  font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
  font-size: 14px;
  color: var(--landing-muted);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-mockup {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.mockup-screen {
  background: rgba(30, 36, 51, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.mockup-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--landing-text);
}

.mockup-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.typing-line {
  color: var(--landing-muted);
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.7;
}

.typing-active {
  color: var(--landing-text);
  opacity: 1;
  position: relative;
}

.typing-active::after {
  content: '▋';
  animation: blink 1s infinite;
  color: var(--landing-primary);
  margin-left: 2px;
}

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

/* Features Section */
.features {
  padding: 60px 24px;
}

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

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.how-it-works .section-header {
  margin-bottom: 0 !important;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--landing-text);
  margin: 0 0 16px;
  font-family: 'Space Grotesk', sans-serif;
}

.section-subtitle {
  font-size: 20px;
  color: var(--landing-muted);
  margin: 0;
}

.how-it-works .section-title {
  margin: 0 0 4px;
}

.how-it-works .section-subtitle {
  font-size: 18px;
  margin-bottom: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.feature-card {
  background: rgba(30, 36, 51, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(108, 99, 255, 0.4);
  box-shadow: 0 12px 32px rgba(108, 99, 255, 0.2);
}

/* Icons removed - clean minimalist design */

.feature-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--landing-text);
  margin: 0 0 12px;
  font-family: 'Space Grotesk', sans-serif;
  position: relative;
  padding-left: 24px;
}

.feature-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: linear-gradient(135deg, #6C63FF, #A56DFF);
  border-radius: 2px;
}

.feature-description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--landing-muted);
  margin: 0;
}

/* How It Works */
.how-it-works {
  padding: 20px 24px 40px;
  background: rgba(10, 14, 26, 0.5);
}

.how-it-works .steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: -20px;
}

.step {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  text-align: center;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--landing-gradient);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 8px;
  box-shadow: 0 8px 24px rgba(108, 99, 255, 0.4);
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--landing-text);
  margin: 0 0 4px;
  font-family: 'Space Grotesk', sans-serif;
}

.step-description {
  font-size: 14px;
  line-height: 1.5;
  color: var(--landing-muted);
  margin: 0;
}

.step-arrow {
  font-size: 28px;
  color: var(--landing-primary);
  margin-top: 12px;
  opacity: 0.5;
}

/* Demo Video Section */
.demo-video-section {
  padding: 80px 24px;
  background: rgba(10, 14, 26, 0.3);
  position: relative;
  overflow: hidden;
}

.demo-video-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(108, 99, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.video-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.video-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 80px rgba(108, 99, 255, 0.2);
  background: rgba(30, 36, 51, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s ease;
}

.video-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 24px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(108, 99, 255, 0.3),
    0 0 120px rgba(108, 99, 255, 0.3);
}

.demo-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  background: #000;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.video-wrapper:hover .video-overlay {
  opacity: 1;
}

.play-button {
  cursor: pointer;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.play-button:hover {
  transform: scale(1.1);
}

.play-button:active {
  transform: scale(0.95);
}

/* Hide overlay when video is playing */
.demo-video[controls] ~ .video-overlay {
  display: none;
}

/* Responsive video */
@media (max-width: 768px) {
  .demo-video-section {
    padding: 60px 16px;
  }
  
  .video-wrapper {
    border-radius: 16px;
  }
  
  .demo-video {
    border-radius: 16px;
  }
}

/* Pricing Section */
.pricing {
  padding: 60px 24px;
  background: rgba(10, 14, 26, 0.5);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

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

.pricing-card {
  background: rgba(30, 36, 51, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(108, 99, 255, 0.4);
  box-shadow: 0 12px 32px rgba(108, 99, 255, 0.2);
}

.pricing-card.featured {
  border-color: var(--landing-primary);
  background: rgba(30, 36, 51, 0.95);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.pricing-badge-featured {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--landing-gradient);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  white-space: nowrap;
  display: inline-block;
}

.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.pricing-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--landing-text);
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
}

.pricing-badge {
  background: rgba(108, 99, 255, 0.2);
  color: var(--landing-primary);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-price {
  margin-bottom: 32px;
}

.price-amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--landing-text);
  line-height: 1;
  font-family: 'Space Grotesk', sans-serif;
}

.pricing-card.featured .price-amount {
  background: var(--landing-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-period {
  font-size: 16px;
  color: var(--landing-muted);
  margin-left: 4px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  color: var(--landing-muted);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-btn {
  width: 100%;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  text-align: center;
}

.pricing-card:not(.featured) .pricing-btn {
  background: var(--landing-gradient);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(108, 99, 255, 0.3);
}

.pricing-card:not(.featured) .pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 99, 255, 0.4);
}

.pricing-card.featured .pricing-btn {
  background: rgba(108, 99, 255, 0.2);
  color: var(--landing-muted);
  cursor: not-allowed;
}

/* Pro plan button - match Starter's disabled appearance */
.pricing-card:last-child .pricing-btn {
  background: rgba(108, 99, 255, 0.2);
  color: var(--landing-muted);
  cursor: not-allowed;
}

.pricing-note {
  text-align: center;
  color: var(--landing-muted);
  font-size: 14px;
  margin: 0;
}

/* CTA Section */
.cta-section {
  padding: 40px 24px 30px;
}

.cta-section .footer-content {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-section .footer-bottom {
  margin-top: 20px;
  padding-top: 0;
  margin-bottom: 0 !important;
}

.cta-section .footer-content {
  margin-top: 0 !important;
  padding-top: 0;
  border-top: none;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.cta-card {
  background: var(--landing-gradient);
  border-radius: 24px;
  padding: 40px 48px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(108, 99, 255, 0.3);
}

.cta-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
  font-family: 'Space Grotesk', sans-serif;
}

.cta-description {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 20px;
}

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

.btn-cta-primary {
  background: #ffffff;
  color: var(--landing-primary);
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
}

.cta-note {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 0;
}


/* Footer */
.landing-footer {
  padding: 12px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(10, 14, 26, 0.2);
  margin-top: 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
  flex-wrap: wrap;
  gap: 4px;
}

.cta-section .footer-content {
  margin-top: 20px;
}

.footer-content > div:not(.footer-copyright) {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-copyright {
  text-align: center;
  width: 100%;
  margin-top: 0;
}

.footer-copyright p {
  color: var(--landing-muted);
  font-size: 10px;
  margin: 0;
  padding: 0;
  opacity: 0.6;
  line-height: 1.2;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--landing-text);
}

.footer-logo {
  width: 18px;
  height: 18px;
  border-radius: 4px;
}

.footer-name {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--landing-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.footer-link {
  color: var(--landing-muted);
  text-decoration: none;
  font-size: 11px;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--landing-text);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 0;
  border-top: none;
  text-align: center;
}

.footer-bottom p {
  color: var(--landing-muted);
  font-size: 10px;
  margin: 0;
  padding: 0;
  opacity: 0.6;
  line-height: 1.2;
}

.cta-section .footer-bottom p {
  margin: 0 !important;
  padding: 0 !important;
}

/* Responsive */
@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    order: -1;
  }

  .steps {
    flex-direction: column;
  }

  .step-arrow {
    transform: rotate(90deg);
    margin: 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 100px 16px 60px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 18px;
  }

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

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

  .features,
  .how-it-works,
  .pricing,
  .cta-section {
    padding: 40px 16px;
  }

  .cta-card {
    padding: 48px 24px;
  }

  .nav-container {
    padding: 0 16px;
  }

  .nav-actions {
    gap: 12px;
  }

  .nav-btn-primary {
    padding: 8px 16px;
    font-size: 14px;
  }
}

