:root { --bg: #0f1115; --fg: #f5f3ee; --accent: #f4b740; --muted: #9aa0a6; }
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: ui-sans-serif, system-ui, -apple-system, sans-serif; background: var(--bg); color: var(--fg); min-height: 100vh; display: grid; place-items: center; }
.hero { text-align: center; padding: 2rem; max-width: 36rem; }
h1 { font-size: clamp(2.5rem, 8vw, 4.5rem); letter-spacing: -0.02em; }
.tagline { color: var(--muted); font-size: 1.25rem; margin: 0.75rem 0 2rem; }
.cta { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.btn { display: inline-block; padding: 0.85rem 1.5rem; border-radius: 999px; font-weight: 600; text-decoration: none; transition: transform 0.08s ease; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #1a1a1a; }
.btn-secondary { background: transparent; color: var(--fg); border: 1px solid var(--muted); }
.soon { color: var(--muted); font-size: 0.95rem; margin-top: 1rem; }
footer { margin-top: 2.5rem; }
footer a { color: var(--muted); font-size: 0.9rem; }
