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

:root {
  --font: "Plus Jakarta Sans", "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg: #0f0a1a;
  --text: #fff;
  --muted: rgba(255,255,255,.66);
  --faint: rgba(255,255,255,.45);
  --line: rgba(255,255,255,.11);
  --panel: rgba(255,255,255,.06);
  --panel-strong: rgba(255,255,255,.09);
  --violet: #a78bfa;
  --pink: #f472b6;
  --cyan: #67e8f9;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

.bg-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .48;
  pointer-events: none;
  z-index: 0;
}

.blob-1 { width: 600px; height: 600px; background: #7c3aed; top: -220px; right: -120px; }
.blob-2 { width: 520px; height: 520px; background: #ec4899; bottom: -180px; left: -120px; }
.blob-3 { width: 420px; height: 420px; background: #06b6d4; top: 42%; left: 32%; opacity: .28; }

.page {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, var(--violet), var(--pink), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

nav a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 600;
  transition: background .2s, color .2s;
}

nav a:hover, nav a.active { background: rgba(255,255,255,.1); color: #fff; }

.btn-glow,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
}

.btn-glow {
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  color: #fff;
  box-shadow: 0 0 30px rgba(124,58,237,.45);
  transition: transform .2s, box-shadow .2s;
}

.btn-glow:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(236,72,153,.55); }

.btn-outline {
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  backdrop-filter: blur(8px);
  transition: border-color .2s, background .2s;
}

.btn-outline:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.05); }

.hero {
  text-align: center;
  padding: 78px 0 58px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  border-radius: 100px;
  padding: 7px 13px;
  color: rgba(255,255,255,.74);
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 22px;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.4rem, 7vw, 4.7rem);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: 0;
  margin: 0 auto 24px;
  max-width: 860px;
}

.gradient {
  background: linear-gradient(90deg, #c4b5fd, #f9a8d4, #67e8f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p,
.page-hero p {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 660px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.metric-panel,
.wide-panel {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 38px;
  backdrop-filter: blur(20px);
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.metric-panel::before,
.wide-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(124,58,237,.2), transparent 60%);
  pointer-events: none;
}

.metrics,
.grid-4 {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.metric-num {
  font-size: 2.5rem;
  font-weight: 850;
  background: linear-gradient(180deg, #fff, rgba(255,255,255,.6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-label { font-size: .86rem; color: var(--faint); margin-top: 4px; }

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 850;
  margin-bottom: 38px;
}

.cards-3,
.cards-2,
.cards-4 {
  display: grid;
  gap: 20px;
  margin-bottom: 80px;
}

.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }

.card,
.price-box {
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 30px;
}

.card h3,
.card h4 { font-size: 1.14rem; font-weight: 800; margin-bottom: 10px; }

.card p,
.card li,
.price-box li {
  font-size: .92rem;
  color: rgba(255,255,255,.62);
  line-height: 1.65;
}

.card ul,
.price-box ul {
  list-style: none;
  margin-top: 18px;
}

.card li,
.price-box li { padding: 6px 0; }
.card li::before,
.price-box li::before { content: "+ "; color: var(--violet); font-weight: 900; }

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .08em;
  color: #fff;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(124,58,237,.35), rgba(6,182,212,.35));
}

.page-hero {
  text-align: center;
  padding: 70px 0 48px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  margin-bottom: 80px;
}

.table th,
.table td {
  text-align: left;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: rgba(255,255,255,.72);
  font-size: .92rem;
}

.table th {
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.table tr:last-child td { border-bottom: 0; }

.price-box { position: relative; }
.price-box.popular {
  background: linear-gradient(160deg, rgba(124,58,237,.28), rgba(236,72,153,.18));
  border-color: rgba(167,139,250,.48);
}

.tag {
  display: inline-flex;
  border-radius: 100px;
  padding: 5px 12px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.75);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.price { font-size: 3rem; font-weight: 850; margin: 6px 0; }
.price small { font-size: 1rem; font-weight: 600; opacity: .6; }

.status-ok { color: #86efac; font-weight: 800; }
.status-note { color: rgba(255,255,255,.52); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 30px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 38px 0 56px;
  color: rgba(255,255,255,.5);
  font-size: .88rem;
}

.footer-grid a {
  display: block;
  color: rgba(255,255,255,.62);
  text-decoration: none;
  padding: 4px 0;
}

.footer-grid a:hover { color: #fff; }
.footer-grid strong { display: block; color: #fff; margin-bottom: 10px; }

@media (max-width: 900px) {
  header { align-items: flex-start; }
  nav { display: none; }
  .hero, .page-hero { padding-top: 46px; }
  .metrics,
  .grid-4,
  .cards-3,
  .cards-2,
  .cards-4,
  .footer-grid { grid-template-columns: 1fr; }
  .metric-panel,
  .wide-panel,
  .card,
  .price-box { border-radius: 18px; padding: 26px; }
}
