:root{
  --bg:#0b0f17;
  --panel:#0f1626;
  --text:#e8eefc;
  --muted:#a7b2cc;
  --line:rgba(255,255,255,.08);
  --accent:#7c5cff;
  --accent2:#2ee9a6;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1100px;
  --pad: 20px;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; background:var(--bg); color:var(--text); font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial; }
a{ color:inherit; text-decoration:none; opacity:.92; }
a:hover{ opacity:1; }

.header{
  background:
    radial-gradient(900px 500px at 15% 10%, rgba(124,92,255,.22), transparent 60%),
    radial-gradient(900px 500px at 90% 20%, rgba(46,233,166,.12), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.02), transparent 30%);
  border-bottom:1px solid var(--line);
}

.nav{
  max-width:var(--max);
  margin:0 auto;
  padding:18px var(--pad);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{ font-weight:800; letter-spacing:.4px; }
.navlinks{ display:flex; align-items:center; gap:14px; }
.navlinks a{ padding:10px 12px; border-radius:12px; }
.navlinks a:hover{ background:rgba(255,255,255,.04); }

.hero{
  max-width:var(--max);
  margin:0 auto;
  padding:40px var(--pad) 48px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:stretch;
}

.hero-text h1{
  margin:0 0 10px;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height:1.03;
}
.hero-text p{ margin:0 0 18px; color:var(--muted); font-size: 16px; max-width: 60ch; }

.hero-cta{ display:flex; gap:10px; flex-wrap:wrap; margin: 10px 0 18px; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(124,92,255,.35);
  background: linear-gradient(135deg, rgba(124,92,255,.95), rgba(124,92,255,.55));
  box-shadow: var(--shadow);
  font-weight:700;
}
.btn:hover{ filter: brightness(1.05); transform: translateY(-1px); transition:.15s ease; }
.btn:active{ transform: translateY(0px); }

.btn-ghost{
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  box-shadow:none;
}
.btn-sm{ padding:10px 12px; border-radius:12px; font-weight:800; }

.badges{ display:flex; gap:10px; flex-wrap:wrap; }
.badge{
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  padding:10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-weight:650;
  font-size: 13px;
}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.card-title{ font-weight:800; margin-bottom: 12px; }
.card-row{ display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px solid var(--line); color: var(--muted); }
.card-row strong{ color: var(--text); }
.card-row:last-child{ border-bottom:0; }

.main{ max-width:var(--max); margin:0 auto; padding: 10px var(--pad) 70px; }

.section{ padding: 42px 0; }
.section.subtle{
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent 70%);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding-left: var(--pad);
  padding-right: var(--pad);
  border-radius: var(--radius);
}
.section-head h2{ margin:0 0 8px; font-size: 28px; }
.section-head p{ margin:0 0 20px; color:var(--muted); }

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}

.panel{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
}

.linkpanel{ display:block; }
.linkpanel:hover{
  transform: translateY(-2px);
  transition: .15s ease;
  border-color: rgba(124,92,255,.35);
}

.panel-title{ font-weight:850; margin-bottom: 10px; }
.muted{ color: var(--muted); }
.tiny{ font-size: 12px; }

.note{
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: var(--muted);
}

.price-big{
  font-size: 28px;
  font-weight: 900;
  margin: 6px 0;
}

.list{
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.list li{ margin: 8px 0; }

.cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px;
  border-radius: var(--radius);
  border: 1px solid rgba(124,92,255,.28);
  background:
    radial-gradient(700px 250px at 15% 50%, rgba(124,92,255,.20), transparent 60%),
    radial-gradient(700px 250px at 90% 30%, rgba(46,233,166,.12), transparent 60%),
    rgba(255,255,255,.02);
}
.cta-actions{ display:flex; gap:10px; flex-wrap:wrap; }

.footer{
  border-top:1px solid var(--line);
  padding: 26px var(--pad) 34px;
}
.footer-grid{
  max-width:var(--max);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.footer-links{ display:flex; gap:12px; flex-wrap:wrap; color: var(--muted); }

@media (max-width: 900px){
  .hero{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: 1fr; }
  .footer-grid{ flex-direction:column; align-items:flex-start; }
  .navlinks{ gap:6px; }
}
