:root { color-scheme: light dark; }
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; }
body {
  font: 400 17px/1.6 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", system-ui, sans-serif;
  background: #0a0a0a;
  color: #e8e8e8;
  display: grid;
  place-items: center;
  padding: 2rem;
  -webkit-font-smoothing: antialiased;
}
main { max-width: 44rem; text-align: center; }

h1 {
  font: 600 clamp(2.6rem, 7vw, 4.5rem)/1.05 -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
  letter-spacing: -0.025em;
  margin: 0 0 1.5rem;
}
.dot { color: #ff7a45; }

.pill {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #ff7a45;
  background: rgba(255, 122, 69, 0.12);
  border-radius: 999px;
  margin-bottom: 1.75rem;
}

.tagline {
  font: 500 clamp(1.3rem, 2.8vw, 1.7rem)/1.35 -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
  letter-spacing: -0.015em;
  color: #e8e8e8;
  margin: 0 0 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 26px;
  font-weight: 600;
  font-size: 1rem;
  color: #0a0a0a;
  background: #ff7a45;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 80ms ease, background 120ms ease;
}
.btn:hover { transform: translateY(-1px); background: #ff8a5c; }
.btn:active { transform: translateY(0); }

.footnote {
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: #6b6b6b;
}
.footnote a { color: #a8a8a8; text-decoration: underline; text-underline-offset: 3px; }
.footnote a:hover { color: #e8e8e8; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
