/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #0a0a0d;
  --surface:  #18151f;
  --border:   #2e2040;
  --primary:  #c44dff;
  --secondary:#a78bfa;
  --text:     #e8e0f8;
  --muted:    #7a6a8a;
  --radius:   12px;
  --font:     'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--secondary); text-decoration: none; }
a:hover { color: var(--primary); }

nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: rgba(10,10,13,0.92);
  backdrop-filter: blur(12px); z-index: 100;
}
.nav-logo {
  font-size: 20px; font-weight: 900; letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-links { display: flex; gap: 32px; font-size: 14px; color: var(--muted); }
.nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--text); }

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff; font-size: 15px; font-weight: 700;
  border: none; border-radius: var(--radius);
  cursor: pointer; letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); color: #fff; }

.btn-secondary {
  display: inline-block;
  padding: 13px 28px;
  background: transparent;
  color: var(--text); font-size: 14px; font-weight: 600;
  border: 1px solid var(--border); border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--secondary); color: var(--secondary); }

.hero {
  text-align: center;
  padding: 96px 24px 80px;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(196,77,255,0.15), transparent);
}
.hero-badge {
  display: inline-block; margin-bottom: 20px;
  padding: 6px 16px; border-radius: 999px;
  background: rgba(196,77,255,0.1); border: 1px solid rgba(196,77,255,0.3);
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--primary);
}
.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -1.5px; margin-bottom: 20px;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: 18px; color: var(--muted); max-width: 560px;
  margin: 0 auto 40px;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-price { margin-top: 16px; font-size: 13px; color: var(--muted); text-align: center; }
.hero-price strong { color: var(--text); }

section { padding: 80px 24px; }
.section-inner { max-width: 1080px; margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--primary); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(24px, 4vw, 40px); font-weight: 800;
  letter-spacing: -0.5px; margin-bottom: 48px;
}

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900; color: #fff; margin-bottom: 16px;
}
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step p  { font-size: 13px; color: var(--muted); line-height: 1.5; }

.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.feature { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
.feature-icon { font-size: 24px; margin-bottom: 12px; }
.feature h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.feature p  { font-size: 12px; color: var(--muted); }

.pricing-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 48px; max-width: 420px; margin: 0 auto;
  text-align: center; box-shadow: 0 0 80px rgba(196,77,255,0.1);
}
.price { font-size: 64px; font-weight: 900; letter-spacing: -2px; }
.price-sub { font-size: 14px; color: var(--muted); margin-bottom: 32px; }
.pricing-features { list-style: none; margin-bottom: 32px; text-align: left; }
.pricing-features li {
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; display: flex; align-items: center; gap: 10px;
}
.pricing-features li:last-child { border-bottom: none; }
.check { color: var(--primary); font-weight: 700; }

footer {
  border-top: 1px solid var(--border); padding: 32px 48px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px; font-size: 13px; color: var(--muted);
}
.footer-logo {
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.util-page {
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh; text-align: center; padding: 24px;
}
.util-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 52px 48px; max-width: 480px; width: 100%;
}
.util-icon { font-size: 48px; margin-bottom: 20px; }
.util-card h1 { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.util-card p { color: var(--muted); margin-bottom: 28px; }
