/* RocketGT — shares the app's tokens so the site and the product feel like
   one thing. Dark by default, light when the visitor's system asks for it. */
:root {
  --bg: #0B0B0F;
  --surface: #15151C;
  --line: #2A2A36;
  --text: #F5F5F7;
  --dim: #8A8A9B;
  --faint: #6E6E80;
  --accent: #FF5C2B;
  --max: 720px;
}
@media (prefers-color-scheme: light) {
  :root {
    --bg: #F6F6F8;
    --surface: #FFFFFF;
    --line: #E2E2E8;
    --text: #0B0B0F;
    --dim: #52525F;
    --faint: #85858F;
    --accent: #DC3F13;
  }
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 17px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

header { padding: 28px 0; }
.brand {
  font-size: 13px; font-weight: 700; letter-spacing: 6px;
  color: var(--faint); text-decoration: none;
}

.hero { padding: 64px 0 72px; }
.speed {
  font-size: clamp(96px, 26vw, 180px);
  font-weight: 200; line-height: 0.92; letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums; margin: 0;
}
.unit {
  font-size: 18px; font-weight: 600; letter-spacing: 2px;
  color: var(--dim); margin: 4px 0 28px;
}
h1 {
  font-size: clamp(28px, 5vw, 40px); font-weight: 600;
  line-height: 1.2; letter-spacing: -0.02em; margin: 0 0 16px;
}
.lede { font-size: 19px; color: var(--dim); margin: 0 0 32px; max-width: 34em; }

.pill {
  display: inline-block; background: var(--accent); color: #fff;
  text-decoration: none; font-weight: 700; letter-spacing: 1.5px; font-size: 14px;
  padding: 15px 28px; border-radius: 14px;
}
.note { color: var(--faint); font-size: 14px; margin-top: 14px; }

section { padding: 44px 0; border-top: 1px solid var(--line); }
h2 { font-size: 22px; font-weight: 600; margin: 0 0 20px; letter-spacing: -0.01em; }
h3 { font-size: 17px; font-weight: 600; margin: 28px 0 8px; }
p { margin: 0 0 16px; color: var(--dim); }
p.body-strong { color: var(--text); }

.grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 20px; }
.card h3 { margin: 0 0 6px; font-size: 16px; }
.card p { margin: 0; font-size: 15px; }

.price { display: flex; gap: 14px; flex-wrap: wrap; }
.price .card { flex: 1 1 220px; }
.amount { font-size: 34px; font-weight: 300; font-variant-numeric: tabular-nums; }
.amount span { font-size: 15px; color: var(--faint); font-weight: 500; }

ul { color: var(--dim); padding-left: 20px; margin: 0 0 16px; }
li { margin-bottom: 8px; }

footer { padding: 40px 0 64px; border-top: 1px solid var(--line); color: var(--faint); font-size: 14px; }
footer a { color: var(--dim); text-decoration: none; margin-right: 18px; }
footer a:hover { color: var(--accent); }
.updated { margin-top: 18px; font-size: 13px; }
