:root {
  --bg:           hsl(245, 35%, 6%);
  --bg2:          hsl(245, 30%, 10%);
  --text:         hsl(0, 0%, 100%);
  --text2:        hsl(245, 10%, 80%);
  --primary:      hsl(320, 95%, 65%);
  --cyan:         hsl(190, 100%, 50%);
  --border:       hsla(245, 50%, 40%, 0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }

/* Navbar */
.navbar {
  position: fixed; top: 0; width: 100%;
  background: rgba(15, 10, 30, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.logo {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.logo svg { width: 18px; fill: #fff; }
.brand-text { font-weight: 800; font-size: 18px; }
.brand-text span { color: var(--primary); }
.nav-links { display: flex; gap: 24px; }
.nav-links a { color: var(--text2); font-weight: 500; font-size: 14px; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; gap: 12px; }

/* Buttons */
.btn {
  padding: 14px 28px; border-radius: 8px; font-weight: 800; font-size: 14px; letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer; transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1); border: none; text-align: center;
}
.btn-primary { 
  background: linear-gradient(135deg, var(--primary), var(--cyan)); 
  color: #fff; 
  box-shadow: 0 6px 20px rgba(244,63,94,0.4), inset 0 1px 1px rgba(255,255,255,0.2); 
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.btn-primary:hover { 
  transform: translateY(-3px) scale(1.03); 
  box-shadow: 0 10px 30px rgba(244,63,94,0.6), inset 0 1px 1px rgba(255,255,255,0.3); 
}
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--bg2); }
.btn-secondary { background: var(--bg2); color: var(--text); border: 1px solid var(--border); box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.btn-secondary:hover { border-color: var(--text3); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.15); }
.btn-full { width: 100%; display: block; }

/* Hero */
.hero {
  padding: 160px 24px 100px;
  text-align: center; position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(244,63,94,0.15) 0%, transparent 70%);
  z-index: -1;
}
.badge-new {
  display: inline-block; padding: 6px 16px; border-radius: 100px;
  background: rgba(6,182,212,0.1); border: 1px solid rgba(6,182,212,0.3);
  color: var(--cyan); font-size: 12px; font-weight: 600; margin-bottom: 24px;
}
.hero-title { font-size: 56px; font-weight: 900; line-height: 1.1; margin-bottom: 24px; max-width: 800px; margin-inline: auto; letter-spacing: -1px; }
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-subtitle { font-size: 18px; color: var(--text2); max-width: 600px; margin: 0 auto 40px; }
.hero-cta { display: flex; justify-content: center; gap: 16px; }
.hero-stats {
  display: flex; justify-content: center; gap: 64px; margin-top: 64px;
  padding-top: 40px; border-top: 1px solid var(--border);
  max-width: 800px; margin-inline: auto;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num { font-size: 32px; font-weight: 800; color: var(--primary); }
.stat-lbl { font-size: 14px; color: var(--text2); }

/* Features */
.features { padding: 80px 24px; background: var(--bg2); }
.section-container { max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.section-subtitle { text-align: center; font-size: 16px; color: var(--text2); margin-bottom: 64px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.feature-card {
  background: var(--bg); border: 1px solid var(--border); padding: 32px;
  border-radius: 24px; transition: transform 0.2s;
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--primary); }
.feature-icon { width: 48px; height: 48px; background: rgba(6,182,212,0.1); color: var(--cyan); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 24px; }
.feature-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.feature-card p { color: var(--text2); font-size: 14px; }

/* Pricing */
.pricing { padding: 100px 24px; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; max-width: 1000px; margin: 0 auto; }
.pricing-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 24px; padding: 40px; position: relative; }
.pricing-card.pro { border-color: var(--primary); box-shadow: 0 8px 32px rgba(244,63,94,0.15); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); padding: 4px 12px; border-radius: 100px; font-size: 12px; font-weight: 700; }
.pricing-header h3 { font-size: 20px; margin-bottom: 16px; }
.price { font-size: 48px; font-weight: 800; margin-bottom: 8px; }
.price span { font-size: 16px; font-weight: 500; color: var(--text2); }
.pricing-features { list-style: none; margin: 32px 0; }
.pricing-features li { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-size: 14px; }
.pricing-features i { color: var(--cyan); }
.pricing-features .disabled { color: var(--text2); opacity: 0.5; }
.pricing-features .disabled i { color: var(--text2); }

/* Footer */
footer { background: var(--bg2); padding: 40px 24px; border-top: 1px solid var(--border); text-align: center; }
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.footer-brand p { color: var(--text2); font-size: 14px; }

@media(max-width: 768px) {
  .nav-links { display: none; }
  .hero-title { font-size: 40px; }
  .hero-stats { flex-direction: column; gap: 32px; }
}
