:root { --bg:#0a0a0a; --fg:#fff; --muted:#a1a1aa; --accent:#ff8a3d; --accent2:#3ec5b9; }
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--fg);
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}
.hero { max-width: 720px; text-align: left; }
.badge {
  display: inline-block;
  font: 600 11px/1 monospace;
  letter-spacing: 0.22em;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  color: var(--muted);
  margin-bottom: 24px;
}
h1 {
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(120deg, var(--accent2), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 18px;
}
p { color: var(--muted); font-size: 18px; line-height: 1.6; max-width: 56ch; }
