:root {
  --gradient-1: linear-gradient(120deg, #0f172a 0%, #1e293b 40%, #0ea5e9 100%);
  --gradient-2: linear-gradient(135deg, #0ea5e9, #6366f1);
  --card-glow: 0 15px 50px rgba(14, 165, 233, 0.25);
  --text-light: #e2e8f0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.15), transparent 25%),
    radial-gradient(circle at 80% 0%, rgba(14, 165, 233, 0.15), transparent 25%),
    #0b1220;
  color: var(--text-light);
  min-height: 100vh;
}

a {
  color: inherit;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--card-glow);
  backdrop-filter: blur(12px);
}

.badge-soft {
  background: rgba(99, 102, 241, 0.15);
  color: #c7d2fe;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

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

.cta-button {
  background: var(--gradient-2);
  color: #0b1220;
  border: none;
  transition: transform 150ms ease, box-shadow 150ms ease;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.cta-button:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 15px 45px rgba(99, 102, 241, 0.6);
}

.section-padding {
  padding: 5rem 0;
}

.feature-icon {
  background: rgba(14, 165, 233, 0.12);
  color: #7dd3fc;
  border: 1px solid rgba(14, 165, 233, 0.3);
}

.progress-bar {
  position: relative;
  height: 10px;
  border-radius: 9999px;
  background: rgba(148, 163, 184, 0.2);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 9999px;
  background: var(--gradient-2);
}

.table-glow {
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}

.table-glow thead {
  background: rgba(255, 255, 255, 0.04);
}

.table-glow th, .table-glow td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table-glow tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.02);
}

.faq-item button {
  width: 100%;
  text-align: left;
}

.pill {
  border-radius: 9999px;
  padding: 0.2rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(99, 102, 241, 0.35);
}

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

.animate-fade {
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 3rem 0;
  }
}
