:root {
  --bg: #0a0a0d;
  --bg-card: #15151a;
  --accent: #FF6B35;
  --cream: #f7f5f0;
  --muted: #8a8f9a;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.7;
  min-height: 100vh;
}
a { color: var(--accent); text-decoration: none; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.hero { padding: 6rem 0 4rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.hero-eyebrow { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); font-size: 0.85rem; margin-bottom: 1rem; }
h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.5rem, 6vw, 4rem); line-height: 1.05; margin-bottom: 1.25rem; }
.hero-tagline { font-size: 1.15rem; color: var(--muted); max-width: 42ch; }
.section { padding: 3rem 0; }
.coming-soon { color: var(--muted); font-size: 0.95rem; }
.site-footer { border-top: 1px solid rgba(255,255,255,0.08); padding: 2rem 0; margin-top: 4rem; }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; font-size: 0.85rem; color: var(--muted); }
.footer-ofuj { opacity: 0.6; }
