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

:root {
  --bg: #0f1117;
  --bg2: #161b27;
  --accent: #6c63ff;
  --accent2: #ff6584;
  --text: #e0e0e0;
  --muted: #8892a4;
}

body { background: var(--bg); color: var(--text); font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; line-height: 1.6; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

a { color: var(--accent); text-decoration: none; }

/* HEADER */
header { border-bottom: 1px solid #1e2535; padding: 16px 0; position: sticky; top: 0; background: var(--bg); z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 1.3rem; font-weight: 700; color: #fff; }
nav { display: flex; align-items: center; gap: 28px; }
nav a { color: var(--muted); font-size: 0.95rem; transition: color .2s; }
nav a:hover { color: #fff; }
.btn-nav { background: var(--accent); color: #fff !important; padding: 8px 20px; border-radius: 8px; font-weight: 600; }
.btn-nav:hover { background: #5a52e0; }

/* HERO */
.hero { padding: 100px 0 80px; text-align: center; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 20px; }
.subtitle { font-size: 1.15rem; color: var(--muted); max-width: 580px; margin: 0 auto 40px; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.btn-primary { background: var(--accent); color: #fff; padding: 14px 32px; border-radius: 10px; font-weight: 700; font-size: 1rem; transition: background .2s; }
.btn-primary:hover { background: #5a52e0; }
.btn-secondary { border: 1px solid #2d3448; color: var(--text); padding: 14px 32px; border-radius: 10px; font-weight: 600; transition: border-color .2s; }
.btn-secondary:hover { border-color: var(--accent); }
.hero-stats { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; align-items: center; }
.stat span { font-size: 1.4rem; font-weight: 700; color: #fff; }
.stat small { color: var(--muted); font-size: 0.85rem; }

/* FEATURES */
.features { padding: 80px 0; }
.features h2, .pricing h2, .install h2 { text-align: center; font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 48px; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.card { background: var(--bg2); border: 1px solid #1e2535; border-radius: 16px; padding: 32px 24px; transition: border-color .2s; }
.card:hover { border-color: var(--accent); }
.icon { font-size: 2rem; margin-bottom: 16px; }
.card h3 { font-size: 1.1rem; color: #fff; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.95rem; }

/* PRICING */
.pricing { padding: 80px 0; background: var(--bg2); }
.plans { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.plan { background: var(--bg); border: 1px solid #1e2535; border-radius: 16px; padding: 40px 32px; text-align: center; min-width: 220px; position: relative; transition: border-color .2s; }
.plan:hover { border-color: var(--accent); }
.plan.popular { border-color: var(--accent); }
.badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 0.8rem; font-weight: 700; padding: 4px 14px; border-radius: 20px; }
.plan-name { color: var(--muted); font-size: 0.95rem; margin-bottom: 12px; }
.plan-price { font-size: 2.2rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.plan-per { color: var(--muted); font-size: 0.9rem; margin-bottom: 28px; }
.btn-plan { display: block; background: var(--accent); color: #fff; padding: 12px; border-radius: 10px; font-weight: 700; transition: background .2s; }
.btn-plan:hover { background: #5a52e0; }

/* INSTALL */
.install { padding: 80px 0; }
.steps { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.step { display: flex; align-items: flex-start; gap: 16px; max-width: 220px; }
.step span { background: var(--accent); color: #fff; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }
.step p { color: var(--muted); padding-top: 6px; }
.step a { color: var(--accent); }

/* FOOTER */
footer { border-top: 1px solid #1e2535; padding: 28px 0; text-align: center; }
footer p { color: var(--muted); font-size: 0.9rem; }
footer a { color: var(--accent); }

@media (max-width: 600px) {
  .hero { padding: 60px 0 50px; }
  nav a:not(.btn-nav) { display: none; }
}
