/* Navigation */
.nav {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--border-subtle);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
  background: #5b52f0;
  box-shadow: 0 6px 16px rgba(79, 70, 229, 0.4);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

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

.btn-outline:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}

/* Hero Section */
.hero {
  padding: var(--space-2xl) 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: var(--accent-soft);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

/* Browser Mockup Card */
.browser-mockup {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius);
  margin-bottom: var(--space-md);
}

.browser-dots {
  display: flex;
  gap: 0.4rem;
}

.browser-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--text-muted);
}

.browser-dot:nth-child(1) {
  background: #ff5f57;
}

.browser-dot:nth-child(2) {
  background: #ffbd2e;
}

.browser-dot:nth-child(3) {
  background: #28ca42;
}

.browser-url {
  flex: 1;
  height: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  margin: 0 var(--space-md);
}

.browser-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.browser-block {
  height: 2rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.browser-block-large {
  height: 8rem;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: var(--radius);
}

.browser-lines {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.browser-line {
  height: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
}

.browser-line:nth-child(1) {
  width: 90%;
}

.browser-line:nth-child(2) {
  width: 75%;
}

.browser-line:nth-child(3) {
  width: 85%;
}

/* Features Section */
.features-intro {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto var(--space-2xl);
}

.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all 0.2s ease;
}

.feature-card:hover {
  border-color: var(--accent);
  background: rgba(79, 70, 229, 0.05);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background: var(--accent-soft);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon::before {
  content: '';
  width: 1.5rem;
  height: 1.5rem;
  background: var(--accent);
  border-radius: 4px;
}

.feature-card h3 {
  margin-bottom: var(--space-sm);
}

.feature-card p {
  font-size: 0.95rem;
}

/* Pricing Section */
.pricing-intro {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto var(--space-2xl);
}

.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}

.pricing-card:hover {
  border-color: var(--accent);
}

.pricing-card.featured {
  background: rgba(79, 70, 229, 0.08);
  border-color: var(--accent);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.pricing-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.pricing-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: var(--space-lg) 0;
}

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

.pricing-description {
  margin-bottom: var(--space-lg);
  font-size: 0.95rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: var(--space-xl);
  flex-grow: 1;
}

.pricing-features li {
  padding: var(--space-sm) 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  position: relative;
  padding-left: 1.5rem;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

.pricing-cta {
  width: 100%;
  margin-top: auto;
}

/* FAQ Section */
.faq-intro {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto var(--space-2xl);
}

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  list-style: none;
}

.faq-item {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--border-subtle);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.faq-answer {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-xl) 0;
  margin-top: var(--space-2xl);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
}

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

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

@media (max-width: 768px) {
  .nav-links {
    gap: var(--space-md);
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: var(--space-sm);
  }
}

