:root {
    --bg: #09090b;
    --red: #dc2626;
    --chrome: #e4e4e7;
    --font-head: 'Teko', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg); color: var(--chrome); font-family: var(--font-body); overflow: hidden; height: 100vh; }

.nav { padding: 2.5rem 4rem; display: flex; justify-content: space-between; border-bottom: 2px solid var(--red); }
.logo { font-family: var(--font-head); font-size: 2rem; color: var(--red); letter-spacing: 2px; }
.amp { font-size: 0.85rem; color: #ffaa00; }

.hero { height: calc(100vh - 100px); display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 2rem; }
h1 { font-family: var(--font-head); font-size: 5rem; line-height: 0.95; color: var(--chrome); text-transform: uppercase; margin-bottom: 1.5rem; text-shadow: 0 0 20px rgba(220,38,38,0.5); }
p { font-size: 1.2rem; color: #a1a1aa; max-width: 600px; }