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

:root {
  --bg: #06060F;
  --surface: #0F0F1A;
  --border: #1E1E35;
  --accent: #7C3AED;
  --accent-light: #9F67FF;
  --text: #E8E8F0;
  --muted: #6B6B8A;
  --success: #10B981;
  --warning: #F59E0B;
  --font-display: Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ──────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6, 6, 15, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.logo span { color: var(--accent); }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }

.btn-portal {
  background: var(--accent) !important;
  color: #fff !important;
  font-weight: 600 !important;
}

/* ── Buttons ──────────────────────────── */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s, transform 0.1s;
}
.btn-primary:hover, .btn-secondary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-primary { background: var(--accent); color: #fff; }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

/* ── Hero ─────────────────────────────── */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 24px;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, #7C3AED18 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, #0EA5E910 0%, transparent 60%);
}

.hero-content {
  max-width: 640px;
  margin: 0 auto;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Packages ─────────────────────────── */
.section-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-container h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: start;
}

.package-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.package-card.featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, #1a0a3a 0%, var(--surface) 100%);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.package-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
}

.package-price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-light);
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.package-features li {
  font-size: 14px;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
}
.package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* ── CTA Banner ───────────────────────── */
.cta-banner {
  background: linear-gradient(120deg, #1a0a3a 0%, #0a1a3a 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-banner .section-container { text-align: center; }
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: 32px;
  margin-bottom: 12px;
}
.cta-banner p {
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 28px;
}

/* ── Footer ───────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
}
.site-footer .section-container {
  padding: 32px 24px;
  text-align: center;
}
.site-footer p { color: var(--muted); font-size: 14px; }

/* ── Responsive ───────────────────────── */
@media (max-width: 640px) {
  .nav-links { gap: 4px; }
  .nav-links li:not(:last-child) { display: none; }
  .hero { min-height: 80vh; padding: 60px 20px; }
}
