* { box-sizing: border-box; }
:root {
  --bg: #0b0a1a;
  --panel: rgba(255,255,255,0.07);
  --panel-strong: rgba(255,255,255,0.11);
  --line: rgba(255,255,255,0.12);
  --text: #ffffff;
  --muted: rgba(255,255,255,0.66);
  --soft: rgba(255,255,255,0.44);
  --brand: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
  --ok: #34d399;
  --warn: #fbbf24;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 5%, rgba(168,85,247,0.28), transparent 32rem),
    radial-gradient(circle at 85% 10%, rgba(236,72,153,0.24), transparent 30rem),
    #0b0a1a;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(11,10,26,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner { height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; }
.brand img { width: 32px; height: 32px; }
.nav-links { display: flex; gap: 22px; align-items: center; color: var(--muted); font-size: 14px; }
.nav-links a:hover { color: #fff; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  font-weight: 700;
  border: 1px solid var(--line);
}
.btn.primary { background: #fff; color: #111827; border-color: #fff; }
.btn.ghost { background: rgba(255,255,255,0.08); color: #fff; }
.hero { padding: 86px 0 58px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.06);
  font-size: 12px;
  font-weight: 700;
}
.dot { width: 7px; height: 7px; border-radius: 999px; background: #c084fc; }
h1 {
  margin: 22px 0 0;
  max-width: 920px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}
.grad {
  background: var(--brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead { max-width: 780px; margin: 24px 0 0; color: var(--muted); font-size: 19px; line-height: 1.65; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.section { padding: 54px 0; }
.section-head { max-width: 760px; margin-bottom: 26px; }
.kicker { color: #c4b5fd; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
h2 { margin: 10px 0 0; font-size: clamp(30px, 4vw, 48px); line-height: 1.08; letter-spacing: 0; }
.sub { color: var(--muted); line-height: 1.65; font-size: 16px; }
.grid { display: grid; gap: 18px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  padding: 24px;
}
.card.strong { background: var(--panel-strong); }
.card h3 { margin: 0 0 10px; font-size: 20px; }
.card p { margin: 0; color: var(--muted); line-height: 1.6; }
.tag { display: inline-flex; margin-bottom: 14px; color: #a7f3d0; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 14px; border: 1px solid var(--line); background: rgba(255,255,255,0.05); }
th, td { padding: 16px; border-top: 1px solid var(--line); text-align: left; vertical-align: top; }
th { border-top: 0; color: #fff; background: rgba(255,255,255,0.08); }
td { color: var(--muted); line-height: 1.45; }
.yes { color: var(--ok); font-weight: 800; }
.limited { color: var(--warn); font-weight: 800; }
.list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.list li { display: flex; gap: 10px; color: var(--muted); line-height: 1.55; }
.check { color: var(--ok); font-weight: 900; }
.faq details { border: 1px solid var(--line); border-radius: 14px; background: var(--panel); padding: 18px 20px; }
.faq details + details { margin-top: 12px; }
.faq summary { cursor: pointer; font-weight: 800; }
.faq p { color: var(--muted); line-height: 1.65; }
.related { display: flex; flex-wrap: wrap; gap: 10px; }
.related a { padding: 10px 13px; border-radius: 999px; background: rgba(255,255,255,0.08); border: 1px solid var(--line); color: rgba(255,255,255,0.78); font-size: 14px; }
.footer { margin-top: 50px; padding: 34px 0; border-top: 1px solid rgba(255,255,255,0.08); color: var(--soft); font-size: 13px; }
@media (max-width: 820px) {
  .nav-links { display: none; }
  .hero { padding-top: 58px; }
  .grid.two, .grid.three { grid-template-columns: 1fr; }
  table { display: block; overflow-x: auto; }
  th, td { min-width: 180px; }
}
