@font-face {
  font-family: 'Big John Pro';
  src: url('/BigJohnPRO-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-darkest: #0a0a0a;
  --bg-dark: #141414;
  --bg-medium: #1a1a1f;
  --bg-light: #252530;

  --accent-primary: #3b7dd8;
  --accent-bright: #6aadff;

  --text-primary: #ffffff;
  --text-secondary: #a0a0b0;
  --text-muted: #707080;
  --text-dim: #555;

  --border-color: #333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-darkest);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--accent-bright);
  text-decoration: none;
  transition: opacity 0.15s;
}

a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.wordmark {
  font-family: 'Big John Pro', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: var(--text-primary);
}

.site-header {
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1150px;
  margin: 0 auto;
}

.site-header .wordmark {
  text-decoration: none;
}

.site-header nav {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
}

.site-header nav a {
  color: var(--text-secondary);
}

.site-header nav a:hover {
  color: var(--text-primary);
  opacity: 1;
}

main {
  max-width: 1150px;
  margin: 0 auto;
  padding: 40px;
}

.hero {
  text-align: center;
  padding: 60px 0 80px;
}

.hero h1 {
  font-family: 'Big John Pro', sans-serif;
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.hero .tagline {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.badge {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid var(--accent-primary);
  border-radius: 999px;
  color: var(--accent-bright);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.coming-soon-body {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.coming-soon-body p + p {
  margin-top: 1.2rem;
}

.content {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 0 80px;
}

.content h1 {
  font-family: 'Big John Pro', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.content .lede {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.content h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.35rem;
  margin: 2.5rem 0 0.75rem;
  color: var(--text-primary);
}

.content h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 1.75rem 0 0.5rem;
  color: var(--text-primary);
}

.content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.content ul {
  color: var(--text-secondary);
  margin: 0.5rem 0 1rem 1.25rem;
}

.content li {
  margin-bottom: 0.4rem;
}

.content li strong {
  color: var(--text-primary);
  font-weight: 600;
}

.content hr {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 3rem 0;
}

.note {
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 1.5rem 0;
  color: var(--text-secondary);
}

.note strong {
  color: var(--text-primary);
}

.site-footer {
  max-width: 1150px;
  margin: 0 auto;
  padding: 40px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.site-footer nav {
  display: flex;
  gap: 24px;
}

.site-footer nav a {
  color: var(--text-secondary);
}

.site-footer nav a:hover {
  color: var(--text-primary);
  opacity: 1;
}

@media (max-width: 600px) {
  .site-header {
    padding: 20px;
  }

  main {
    padding: 20px;
  }

  .site-footer {
    padding: 24px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 32px 0 56px;
  }
}
