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

:root {
  --purple: #7c3aed;
  --purple-light: #a855f7;
  --gold: #f59e0b;
  --dark: #0a0a0f;
  --dark2: #12121a;
  --dark3: #1a1a2e;
  --text: #e2e8f0;
  --muted: #94a3b8;
}

html { scroll-behavior: smooth; }

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

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 2rem;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.3) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero-label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--purple-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(124,58,237,0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(124,58,237,0.6);
}

/* ── Sections ─────────────────────────────────────────────────── */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.75rem;
}

/* ── About ────────────────────────────────────────────────────── */
.about {
  padding: 6rem 0;
  background: var(--dark2);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature {
  background: var(--dark3);
  border: 1px solid #ffffff0f;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.2s;
}

.feature:hover { border-color: var(--purple); }

.feature-icon { font-size: 2.2rem; margin-bottom: 1rem; }

.feature h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature p { color: var(--muted); font-size: 0.9rem; }

/* ── Testimonials ─────────────────────────────────────────────── */
.testimonials {
  padding: 6rem 0;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.review {
  background: var(--dark2);
  border: 1px solid #ffffff0f;
  border-left: 3px solid var(--purple);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.review p {
  font-style: italic;
  color: var(--text);
  margin-bottom: 1rem;
}

.review span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ── Pricing ──────────────────────────────────────────────────── */
.pricing {
  padding: 6rem 0;
  background: var(--dark2);
}

.pricing-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 3rem;
}

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.plan {
  background: var(--dark3);
  border: 1px solid #ffffff0f;
  border-radius: 1.25rem;
  padding: 2rem;
  position: relative;
}

.plan-featured {
  border-color: var(--purple);
  box-shadow: 0 0 40px rgba(124,58,237,0.2);
  transform: scale(1.03);
}

.plan-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.plan-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
}

.plan-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #ffffff08;
  color: var(--text);
  font-size: 0.95rem;
}

.plan-features li::before {
  content: '✓ ';
  color: var(--purple-light);
  font-weight: 700;
}

.btn-plan {
  display: block;
  text-align: center;
  padding: 0.75rem;
  border: 1px solid var(--purple);
  color: var(--purple-light);
  text-decoration: none;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.btn-plan:hover {
  background: var(--purple);
  color: #fff;
}

.btn-plan-featured {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff;
  border: none;
}

.btn-plan-featured:hover {
  opacity: 0.9;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
}

/* ── Footer ───────────────────────────────────────────────────── */
footer {
  padding: 3rem 1.5rem;
  text-align: center;
  border-top: 1px solid #ffffff0a;
}

footer p { color: var(--muted); font-size: 0.9rem; margin-bottom: 0.5rem; }

.disclaimer {
  font-size: 0.75rem !important;
  color: #4a5568 !important;
  max-width: 600px;
  margin: 0.5rem auto 0 !important;
}

.readme-link { margin-top: 1.5rem !important; }
.readme-link a { font-size: 0.7rem; color: #4a5568; opacity: 0.5; text-decoration: none; }
.readme-link a:hover { opacity: 1; }
