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

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

:root {
  --bg: #030712; --bg2: #0a0f1e; --bg3: #111936;
  --surface: rgba(15, 23, 42, 0.6);
  --border: rgba(99, 102, 241, 0.12); --border-hover: rgba(99, 102, 241, 0.3);
  --text: #e2e8f0; --text-muted: #94a3b8; --text-dim: #64748b;
  --primary: #6366f1; --primary-light: #818cf8; --primary-glow: rgba(99, 102, 241, 0.4);
  --accent: #8b5cf6; --accent2: #a78bfa;
  --cyan: #06b6d4; --cyan-glow: rgba(6, 182, 212, 0.3);
  --green: #10b981; --green-glow: rgba(16, 185, 129, 0.3);
  --amber: #f59e0b; --red: #ef4444;
  --gradient-1: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
  --gradient-2: linear-gradient(135deg, #06b6d4, #6366f1);
  --gradient-text: linear-gradient(135deg, #fff 0%, #c7d2fe 40%, #818cf8 70%, #06b6d4 100%);
  --radius: 14px; --radius-lg: 20px; --radius-xl: 28px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { color: var(--primary-light); text-decoration: none; transition: all 0.3s; }
a:hover { color: #a5b4fc; }

/* ═══ ANIMATIONS ═══ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px var(--primary-glow); }
  50% { box-shadow: 0 0 40px var(--primary-glow), 0 0 80px rgba(99,102,241,0.15); }
}
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes orbit {
  from { transform: rotate(0deg) translateX(300px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(300px) rotate(-360deg); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.animate-up { animation: fadeInUp 0.8s ease-out both; }
.animate-up-d1 { animation: fadeInUp 0.8s 0.1s ease-out both; }
.animate-up-d2 { animation: fadeInUp 0.8s 0.2s ease-out both; }
.animate-up-d3 { animation: fadeInUp 0.8s 0.3s ease-out both; }
.animate-up-d4 { animation: fadeInUp 0.8s 0.4s ease-out both; }

/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(3, 7, 18, 0.7);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s;
}
.navbar.scrolled { background: rgba(3, 7, 18, 0.95); border-bottom-color: var(--border-hover); }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo {
  display: flex; align-items: center; gap: 14px;
  font-weight: 800; font-size: 1.3rem; color: white;
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--gradient-1); background-size: 200% 200%;
  animation: gradient-shift 4s ease infinite;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.15rem; color: white;
  box-shadow: 0 4px 20px var(--primary-glow);
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: var(--text-muted); font-size: 0.92rem; font-weight: 500;
  transition: color 0.3s; position: relative;
}
.nav-links a:hover { color: white; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--gradient-1); transition: width 0.3s; border-radius: 2px;
}
.nav-links a:hover::after { width: 100%; }
.nav-link-muted { color: var(--text-dim) !important; }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 32px; border-radius: var(--radius); font-weight: 600; font-size: 0.95rem;
  border: none; cursor: pointer; transition: all 0.3s; text-decoration: none;
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  opacity: 0; transition: opacity 0.3s;
}
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 18px 44px; font-size: 1.05rem; letter-spacing: 0.01em; }
.btn-primary {
  background: var(--gradient-1); background-size: 200% 200%;
  animation: gradient-shift 4s ease infinite;
  color: white;
  box-shadow: 0 4px 24px var(--primary-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--primary-glow);
  color: white;
}
.btn-secondary {
  background: var(--surface); color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: var(--bg3); border-color: var(--border-hover);
  transform: translateY(-2px); color: white;
}
.btn-danger { background: var(--red); color: white; }
.btn-green { background: var(--green); color: white; }
.btn-green:hover { background: #059669; color: white; transform: translateY(-2px); }

/* ═══ HERO ═══ */
.hero {
  padding: 180px 0 120px; text-align: center; position: relative; overflow: hidden;
}
/* Animated background orbs */
.hero::before {
  content: ''; position: absolute; top: -30%; left: -20%; width: 140%;  height: 140%;
  background:
    radial-gradient(ellipse 600px 600px at 20% 50%, rgba(99, 102, 241, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 500px 500px at 80% 30%, rgba(6, 182, 212, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 50% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  pointer-events: none; animation: float 8s ease-in-out infinite;
}
.hero::after {
  content: ''; position: absolute; top: 50%; left: 50%; width: 600px; height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(99,102,241,0.06) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite;
}
/* Grid pattern overlay */
.hero-grid {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px; font-size: 0.82rem; font-weight: 600;
  color: var(--primary-light); margin-bottom: 28px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.6s ease-out both;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 8px var(--green-glow);
  animation: pulse-glow 2s ease-in-out infinite;
}
.hero h1 {
  font-size: clamp(3rem, 7vw, 5rem); font-weight: 900; line-height: 1.05;
  margin-bottom: 28px; letter-spacing: -0.03em;
  background: var(--gradient-text); background-size: 300% 300%;
  animation: gradient-shift 6s ease infinite, fadeInUp 0.8s 0.1s ease-out both;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .subtitle {
  font-size: 1.25rem; color: var(--text-muted); max-width: 640px;
  margin: 0 auto 48px; line-height: 1.7;
  animation: fadeInUp 0.8s 0.2s ease-out both;
}
.hero-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.3s ease-out both;
}
/* Floating particles */
.hero-particles {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.particle {
  position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: var(--primary-light); opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}
.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; animation-duration: 7s; }
.particle:nth-child(2) { top: 60%; left: 85%; animation-delay: 1s; animation-duration: 5s; width: 6px; height: 6px; background: var(--cyan); }
.particle:nth-child(3) { top: 30%; left: 70%; animation-delay: 2s; animation-duration: 8s; opacity: 0.2; }
.particle:nth-child(4) { top: 70%; left: 20%; animation-delay: 0.5s; animation-duration: 6s; width: 3px; height: 3px; background: var(--accent2); }
.particle:nth-child(5) { top: 15%; left: 50%; animation-delay: 3s; animation-duration: 9s; width: 5px; height: 5px; background: var(--cyan); opacity: 0.15; }
.particle:nth-child(6) { top: 80%; left: 60%; animation-delay: 1.5s; animation-duration: 7s; }

/* Stats bar */
.stats-bar {
  display: flex; justify-content: center; gap: 48px; margin-top: 80px;
  padding-top: 40px; border-top: 1px solid var(--border);
  animation: fadeInUp 0.8s 0.5s ease-out both;
}
.stat-item { text-align: center; }
.stat-item .num {
  font-size: 2rem; font-weight: 900;
  background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-item .label { font-size: 0.85rem; color: var(--text-dim); margin-top: 4px; }

/* ═══ SECTIONS ═══ */
.section { padding: 120px 0; position: relative; }
.section-dark { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-title { text-align: center; margin-bottom: 72px; }
.section-title .tag {
  display: inline-block; padding: 6px 16px; background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.2); border-radius: 999px;
  font-size: 0.8rem; font-weight: 600; color: var(--primary-light);
  margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.08em;
}
.section-title h2 {
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-title p { color: var(--text-muted); font-size: 1.15rem; max-width: 550px; margin: 0 auto; }

/* ═══ FEATURE CARDS ═══ */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient-1); opacity: 0; transition: opacity 0.4s;
}
.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px var(--primary-glow);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(6,182,212,0.1));
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 24px;
  transition: all 0.4s;
}
.feature-card:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 0 20px var(--primary-glow);
}
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* ═══ PRICING ═══ */
.pricing-toggle {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: 48px;
}
.pricing-toggle span { font-size: 0.9rem; color: var(--text-muted); }
.pricing-toggle .active { color: white; font-weight: 600; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; max-width: 1100px; margin: 0 auto;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 40px 32px;
  position: relative; transition: all 0.4s;
  backdrop-filter: blur(10px);
}
.price-card:hover { transform: translateY(-8px); border-color: var(--border-hover); }
.price-card.popular {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(99,102,241,0.08) 0%, var(--surface) 100%);
  box-shadow: 0 0 60px rgba(99,102,241,0.12);
}
.price-card.popular::before {
  content: 'Most Popular'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-1); background-size: 200% 200%;
  animation: gradient-shift 4s ease infinite;
  color: white; padding: 6px 20px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.03em;
  box-shadow: 0 4px 20px var(--primary-glow);
}
.price-card h3 { font-size: 1.3rem; font-weight: 700; text-transform: capitalize; }
.price-amount {
  font-size: 3.2rem; font-weight: 900; margin: 20px 0 4px;
  background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.price-amount span { font-size: 1rem; font-weight: 400; -webkit-text-fill-color: var(--text-muted); }
.price-period { color: var(--text-dim); font-size: 0.85rem; margin-bottom: 28px; }
.price-features { list-style: none; margin-bottom: 36px; }
.price-features li {
  padding: 10px 0; color: var(--text-muted); font-size: 0.9rem;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.price-features li .check {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: var(--green); flex-shrink: 0;
}
.price-card .btn { width: 100%; }

/* ═══ TECH SHOWCASE / TERMINAL ═══ */
.terminal-showcase {
  max-width: 800px; margin: 0 auto;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.terminal-header {
  display: flex; align-items: center; gap: 8px; padding: 14px 20px;
  background: var(--bg3); border-bottom: 1px solid var(--border);
}
.terminal-dot { width: 12px; height: 12px; border-radius: 50%; }
.terminal-dot.red { background: #ef4444; }
.terminal-dot.yellow { background: #f59e0b; }
.terminal-dot.green { background: #10b981; }
.terminal-title { margin-left: 12px; font-size: 0.8rem; color: var(--text-dim); font-family: 'JetBrains Mono', monospace; }
.terminal-body {
  padding: 24px; font-family: 'JetBrains Mono', monospace; font-size: 0.85rem;
  line-height: 1.8; color: var(--text-muted); min-height: 200px;
}
.terminal-body .prompt { color: var(--green); }
.terminal-body .cmd { color: white; }
.terminal-body .flag { color: var(--cyan); }
.terminal-body .output { color: var(--text-dim); }
.terminal-body .success { color: var(--green); }
.terminal-body .url { color: var(--primary-light); }

/* ═══ LOGOS / TRUST ═══ */
.trust-bar {
  display: flex; align-items: center; justify-content: center; gap: 40px;
  padding: 60px 0; opacity: 0.5;
}
.trust-bar span { font-size: 0.85rem; color: var(--text-dim); font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }

/* ═══ CTA ═══ */
.cta { padding: 100px 0; }
.cta-box {
  background: linear-gradient(135deg, rgba(99,102,241,0.08), rgba(6,182,212,0.05), rgba(139,92,246,0.08));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 80px 48px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(99,102,241,0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 50%, rgba(6,182,212,0.05) 0%, transparent 50%);
  animation: float 10s ease-in-out infinite;
}
.cta-box h2 {
  font-size: 2.5rem; font-weight: 900; margin-bottom: 16px; position: relative;
  letter-spacing: -0.02em;
}
.cta-box p {
  color: var(--text-muted); margin-bottom: 40px;
  max-width: 500px; margin-left: auto; margin-right: auto;
  position: relative; font-size: 1.1rem;
}
.cta-box .btn { position: relative; }

/* ═══ AUTH ═══ */
.auth-container {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 100px 24px 40px;
  background:
    radial-gradient(ellipse 600px 600px at 30% 50%, rgba(99,102,241,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 500px 500px at 70% 30%, rgba(6,182,212,0.04) 0%, transparent 70%);
}
.auth-box {
  width: 100%; max-width: 460px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 44px;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
  animation: fadeInUp 0.6s ease-out;
}
.auth-box h2 { font-size: 1.6rem; font-weight: 800; letter-spacing: -0.02em; }
.auth-box .subtitle { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 32px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--text-muted); margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); color: white; font-size: 0.95rem;
  font-family: inherit; outline: none; transition: all 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.error-msg {
  background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2);
  color: #fca5a5; padding: 14px 18px; border-radius: var(--radius);
  font-size: 0.9rem; margin-bottom: 24px;
}
.auth-footer { text-align: center; margin-top: 28px; color: var(--text-dim); font-size: 0.9rem; }

/* ═══ ACCOUNT ═══ */
.account-layout { padding: 110px 0 60px; }
.account-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 40px; flex-wrap: wrap; gap: 16px;
}
.stat-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px; margin-bottom: 32px;
}
.stat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  backdrop-filter: blur(10px);
}
.stat-label {
  font-size: 0.78rem; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px;
}
.stat-value { font-size: 1.6rem; font-weight: 800; }

.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 20px; }

/* ═══ TABLES ═══ */
table { width: 100%; border-collapse: collapse; }
th {
  text-align: left; padding: 14px 16px; font-size: 0.78rem; font-weight: 600;
  color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
}
td { padding: 14px 16px; font-size: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.03); }
tr:hover td { background: rgba(99,102,241,0.03); }
.badge {
  display: inline-block; padding: 5px 14px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 600;
}
.badge-green { background: rgba(16,185,129,0.1); color: var(--green); border: 1px solid rgba(16,185,129,0.2); }
.badge-amber { background: rgba(245,158,11,0.1); color: var(--amber); border: 1px solid rgba(245,158,11,0.2); }
.badge-red { background: rgba(239,68,68,0.1); color: var(--red); border: 1px solid rgba(239,68,68,0.2); }
.badge-blue { background: rgba(99,102,241,0.1); color: var(--primary-light); border: 1px solid rgba(99,102,241,0.2); }
code {
  font-family: 'JetBrains Mono', monospace;
  background: rgba(99,102,241,0.08); padding: 3px 10px;
  border-radius: 8px; font-size: 0.83rem;
  color: var(--primary-light); border: 1px solid rgba(99,102,241,0.15);
}

/* ═══ FOOTER ═══ */
.footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 72px 0 32px; margin-top: 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.15rem; margin-bottom: 16px; color: white; }
.footer-desc { color: var(--text-dim); font-size: 0.9rem; max-width: 300px; line-height: 1.7; }
.footer h4 {
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 20px;
}
.footer a { display: block; color: var(--text-dim); font-size: 0.9rem; padding: 6px 0; transition: all 0.3s; }
.footer a:hover { color: white; transform: translateX(4px); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  color: var(--text-dim); font-size: 0.85rem;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { gap: 16px; }
  .hero { padding: 140px 0 80px; }
  .hero h1 { font-size: 2.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .stats-bar { gap: 24px; flex-wrap: wrap; }
  .section { padding: 80px 0; }
}
@media (max-width: 480px) {
  .nav-links a:not(.btn) { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .stats-bar { gap: 16px; }
  .stat-item .num { font-size: 1.5rem; }
}
