:root {
  --bg: #0b0f1a;
  --bg2: #151b2d;
  --panel: rgba(18, 24, 40, 0.84);
  --line: rgba(255,255,255,0.09);
  --text: #eef2ff;
  --muted: #b6bfd7;
  --gold: #f5c65a;
  --teal: #4fd2cb;
  --orange: #ff9357;
  --purple: #9d7bff;
  --danger: #ff6e6e;
  --radius: 20px;
  --shadow: 0 18px 48px rgba(0,0,0,.28);
  --max: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(79,210,203,0.16), transparent 24%),
    radial-gradient(circle at 20% 10%, rgba(245,198,90,0.12), transparent 28%),
    linear-gradient(180deg, #11172a 0%, #0b0f1a 55%, #090d17 100%);
  color: var(--text);
  line-height: 1.6;
}
a { color: var(--text); text-decoration: none; }
a:hover, a:focus-visible { color: #ffffff; }
img { max-width: 100%; display: block; }
.wrap { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.skip-link {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-100%);
  background: #0f1220;
  color: var(--text);
  padding: 10px 14px;
  border: 1px solid var(--line);
  z-index: 30;
  transition: transform 0.2s ease;
}
.skip-link:focus-visible { transform: translateY(12px); }
.nav {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(9, 13, 23, .72);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  min-height: 72px;
}
.brand { font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.brand span { color: var(--gold); }
.menu {
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
  font-size: 14px;
}
.menu a {
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 10px;
}
.menu a:hover, .menu a:focus-visible { color: var(--text); outline: none; background: rgba(255,255,255,.08); }
.menu a.active {
  color: #111;
  background: linear-gradient(135deg, var(--gold), #ffd887);
  font-weight: 700;
  box-shadow: var(--shadow);
}
.button {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 12px 18px; font-weight: 700;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.button.primary {
  color: #111;
  background: linear-gradient(135deg, var(--gold), #ffd887);
  border-color: transparent;
}
.button.secondary {
  background: rgba(255,255,255,.03);
  color: var(--text);
}
.hero { padding: 72px 0 32px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: stretch; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; color: var(--gold);
  text-transform: uppercase; font-weight: 800; letter-spacing: .12em; font-size: 12px;
}
h1, h2, h3 { line-height: 1.05; margin: 0 0 16px; }
h1 { font-size: clamp(40px, 7vw, 76px); letter-spacing: -0.04em; }
h2 { font-size: clamp(28px, 4vw, 42px); letter-spacing: -0.03em; }
h3 { font-size: 22px; }
p { margin: 0 0 16px; color: var(--muted); }
.lead { font-size: 18px; color: #d8def0; max-width: 60ch; }
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-copy { padding: 34px; }
.hero-card {
  padding: 24px;
  background:
    linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.015)),
    linear-gradient(180deg, rgba(157,123,255,.18), rgba(79,210,203,.08));
  position: relative;
  overflow: hidden;
  min-height: 100%;
}
.hero-card::after {
  content: "";
  position: absolute; inset: auto -10% -40% auto;
  width: 260px; height: 260px; border-radius: 24px;
  background: linear-gradient(145deg, rgba(245,198,90,.18), rgba(79,210,203,.05));
  transform: rotate(24deg);
  border: 1px solid rgba(255,255,255,.08);
}
.grid-3, .grid-2 { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
section { padding: 28px 0; }
.card { padding: 24px; }
.stat { display: grid; gap: 8px; padding: 18px 20px; border-radius: 18px; border: 1px solid var(--line); background: rgba(255,255,255,.03); }
.stat strong { font-size: 28px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,.04); border: 1px solid var(--line); color: #dce4ff; font-size: 14px; }
.feature-list, .faq, .footer-links { display: grid; gap: 16px; }
.kicker { color: var(--teal); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }
.banner { padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.timeline { display: grid; gap: 14px; position: relative; }
.step { padding: 18px 20px; border-left: 3px solid var(--gold); background: rgba(255,255,255,.03); border-radius: 0 16px 16px 0; }
footer { padding: 36px 0 60px; color: var(--muted); }
.footer-box { padding: 24px; display: grid; gap: 10px; }
.small { font-size: 14px; color: var(--muted); }
.notice { padding: 14px 16px; border-radius: 14px; background: rgba(255,255,255,.03); border: 1px solid var(--line); color: #dbe6ff; }
.faq dt { font-weight: 700; color: #fff; }
.faq dd { margin: 0 0 14px 0; color: var(--muted); }
@media (max-width: 920px) {
  .hero-grid, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .nav-inner { padding: 10px 0; }
  .menu { gap: 12px; }
  .hero { padding-top: 42px; }
}
