:root {
  --bg: #070b15;
  --panel: #0e1627;
  --panel2: #111d31;
  --text: #f7f8fc;
  --muted: #a9b4c7;
  --line: #23314b;
  --blue: #5f8cff;
  --cyan: #45d7d2;
  --green: #4fce8b;
  --red: #ff8d86;
  --shadow: 0 24px 80px rgba(0, 0, 0, .35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at 75% 0, #132b53 0, transparent 36rem), var(--bg);
  color: var(--text);
  font: 400 16px/1.6 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 36px)); margin: auto; }
.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.brand {
  font-weight: 800;
  letter-spacing: -.03em;
  font-size: 1.25rem;
  text-decoration: none;
}
.brand span { color: var(--cyan); }
.nav-links { display: flex; gap: 18px; flex-wrap: wrap; }
.nav-links a { font-size: .9rem; color: var(--muted); text-decoration: none; }
.nav-links a:hover { color: var(--text); }
.hero { padding: 90px 0 64px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 54px; align-items: center; }
.eyebrow {
  color: var(--cyan);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
}
.hero h1, .page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: .98;
  letter-spacing: -.055em;
  margin: .6rem 0 1.25rem;
}
.lead { font-size: 1.18rem; color: var(--muted); max-width: 40rem; margin-bottom: 1.8rem; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  padding: 14px 20px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--blue), #7d63ff);
  color: white;
  box-shadow: 0 10px 30px rgba(95, 140, 255, .28);
}
.button.secondary {
  background: transparent;
  border: 1px solid var(--line);
  box-shadow: none;
  color: var(--muted);
}
.proof { margin-top: 16px; color: var(--muted); font-size: .82rem; }
.metric-card, .card, .price, .limits, .panel {
  background: linear-gradient(160deg, rgba(20, 36, 62, .96), rgba(10, 17, 30, .96));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.metric-label { color: var(--muted); font-size: .85rem; }
.metric {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 850;
  letter-spacing: -.055em;
  margin: .2rem 0;
  font-variant-numeric: tabular-nums;
}
.metric-copy { color: var(--muted); }
.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 22px; }
.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  color: #c9d4e8;
  font-size: .78rem;
}
.section { padding: 64px 0; }
.section h2, .page-hero h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -.04em;
  line-height: 1.06;
  margin: 0 0 14px;
}
.section-intro { color: var(--muted); max-width: 46rem; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; }
.card strong { display: block; margin-bottom: 6px; }
.card p, .price li, .limits li { margin: 0 0 .7rem; color: var(--muted); font-size: .95rem; }
.card p:last-child, .price li:last-child, .limits li:last-child { margin-bottom: 0; }
.offer { display: grid; grid-template-columns: .85fr 1.15fr; gap: 18px; align-items: stretch; }
.price .amount {
  display: flex;
  align-items: baseline;
  gap: .55rem;
  white-space: nowrap;
  font-size: 3.4rem;
  font-weight: 850;
  letter-spacing: -.05em;
}
.price .amount span {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--muted);
}
.price ul, .limits ul, .tools { padding-left: 1.15rem; color: var(--muted); }
.limits { border-color: rgba(255, 141, 134, .25); background: rgba(255, 141, 134, .06); }
.limits h3 { margin-top: 0; color: #ffd0cc; }
.page-hero { padding: 72px 0 24px; }
.code {
  display: block;
  overflow-x: auto;
  background: #09101e;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  font: 13px/1.5 ui-monospace, SFMono-Regular, Menlo, monospace;
  color: #d8e1f0;
}
.footer {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 30px 0 50px;
  color: var(--muted);
  font-size: .82rem;
}
.footer-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer a { color: var(--muted); }
.table-wrap {
  overflow: auto;
  max-height: min(70vh, 720px);
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #09101e;
  -webkit-overflow-scrolling: touch;
}
.results-table {
  border-collapse: collapse;
  width: max-content;
  min-width: 100%;
  font-size: .78rem;
}
.results-table th,
.results-table td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
  text-align: left;
  vertical-align: top;
}
.results-table th {
  position: sticky;
  top: 0;
  background: #111d31;
  color: var(--text);
  font-weight: 700;
}
.results-table td { color: var(--muted); }
@media (max-width: 800px) {
  .hero, .offer, .grid { grid-template-columns: 1fr; }
  .hero { padding-top: 58px; }
  .nav { height: auto; padding: 16px 0; flex-wrap: wrap; }
}
