/* sloperator — shared site styles */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;700;900&display=swap');

:root {
  --bg: #050505;
  --fg: #ffffff;
  --accent: #f4e400;
  --muted: rgba(255, 255, 255, 0.55);
  --rule: rgba(255, 255, 255, 0.12);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Page shell */
.shell {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 32px 120px 32px;
}

/* Wordmark — same vibe as the slide branding pill */
.wordmark {
  display: inline-block;
  background: var(--accent);
  color: #000;
  padding: 8px 18px;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  border-radius: 4px;
  text-decoration: none;
}

.wordmark:hover { opacity: 0.9; }

/* --- Coming-soon home page --- */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 32px;
}

.hero .badge {
  font-size: 16px;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: 'Anton', sans-serif;
  font-size: 124px;
  line-height: 0.95;
  margin: 0;
  text-transform: uppercase;
}

.hero h1 .accent { color: var(--accent); }

.hero .tagline {
  margin-top: 28px;
  color: var(--muted);
  font-size: 22px;
  max-width: 520px;
  text-transform: lowercase;
}

.hero .footer {
  margin-top: 80px;
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.hero .footer a { color: var(--muted); text-decoration: none; }
.hero .footer a:hover { color: var(--fg); }

/* --- Document pages (terms / privacy) --- */

.doc h1 {
  font-family: 'Anton', sans-serif;
  font-size: 72px;
  line-height: 1.0;
  text-transform: uppercase;
  margin: 32px 0 8px 0;
}

.doc .meta {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 56px;
}

.doc h2 {
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 56px 0 12px 0;
  color: var(--accent);
}

.doc p, .doc li {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
}

.doc ul {
  padding-left: 22px;
  margin: 12px 0 24px 0;
}

.doc a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.doc hr {
  border: none;
  height: 1px;
  background: var(--rule);
  margin: 56px 0;
}

.doc .footer {
  margin-top: 56px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.doc .footer a { color: var(--muted); margin: 0 8px; text-decoration: none; }
.doc .footer a:hover { color: var(--fg); }

/* Mobile */
@media (max-width: 640px) {
  .hero h1 { font-size: 84px; }
  .hero .tagline { font-size: 18px; }
  .doc h1 { font-size: 52px; }
  .doc h2 { font-size: 26px; }
  .shell { padding: 56px 22px 96px 22px; }
}
