:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: #111111;
  --line: #252525;
  --text: #f5f5f5;
  --muted: #a1a1aa;
  --accent: #ff4d00;
  --cool: #41d3b6;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }

.page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
}

.nav,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-color: var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav { border-bottom: 1px solid var(--line); padding-bottom: 18px; }
.footer { border-top: 1px solid var(--line); flex-wrap: wrap; margin-top: 36px; padding-top: 22px; }
.nav a:hover, .footer a:hover { color: var(--accent); }

.hero {
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
  padding: 56px 0 38px;
}

.kicker {
  color: var(--cool);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: .95;
  margin: 0;
  max-width: 11ch;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.08;
  margin: 0;
}

h3 { margin: 0; }

.answer {
  color: #d4d4d8;
  font-size: 1.18rem;
  line-height: 1.75;
  margin: 24px 0 0;
  max-width: 680px;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 22px;
}

.panel p,
.section p,
li {
  color: #d4d4d8;
  line-height: 1.7;
}

.price {
  color: var(--accent);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.button {
  align-items: center;
  border: 1px solid var(--accent);
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  justify-content: center;
  min-height: 44px;
  padding: 12px 16px;
  text-align: center;
}

.button.primary { background: var(--accent); color: #050505; }
.button.secondary { color: var(--accent); }
.button:hover { background: transparent; color: var(--accent); }

.grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 22px;
  padding: 34px 0;
}

.two {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.list li {
  border-left: 2px solid var(--accent);
  padding-left: 12px;
}

.muted { color: var(--muted); }

@media (max-width: 820px) {
  .hero,
  .grid,
  .two {
    grid-template-columns: 1fr;
  }

  .page { width: min(100% - 24px, 1120px); padding-top: 20px; }
}
