:root {
  --background: #14121B;
  --surface: #201D28;
  --border: #2E2A38;
  --gold: #D3A94E;
  --gold-pressed: #B98F3A;
  --text-primary: #F3EFE8;
  --text-secondary: #948F97;
  --text-tertiary: #6E6975;
  --divider: #2A2732;
}
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--background);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}
main {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
  position: relative;
}
.glow {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 480px;
  max-width: 90vw;
  background: radial-gradient(circle, rgba(211,169,78,0.16) 0%, rgba(211,169,78,0) 70%);
  pointer-events: none;
}
.content { position: relative; max-width: 480px; width: 100%; }
.mark { margin: 0 auto 24px; }
h1.wordmark {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--gold);
  margin: 0 0 40px;
}
h2.headline {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.3;
  color: var(--text-primary);
  margin: 0 0 12px;
}
p.subhead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 32px;
}
p.pitch {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-tertiary);
  margin: 0 0 48px;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
}
.badge .platform { color: var(--text-primary); }
.footer-note {
  font-size: 12px;
  color: var(--text-tertiary);
}
.footer-note a { color: var(--text-secondary); }
