/* The Master Debaters — base styles. No build step, no framework.
   Minimal on purpose: coming-soon page, not the final design. */

:root {
  --bg: #14151a;
  --panel: #1d1f26;
  --text: #eceef2;
  --muted: #9298a6;
  --accent: #d9a441;
  --border: #2c2f38;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}

.eyebrow {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 1.5rem;
}

.eyebrow a {
  color: var(--accent);
  text-decoration: none;
}

.eyebrow a:hover {
  text-decoration: underline;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.25rem;
}

.tagline {
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

.lede {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 46ch;
}

/* Founder avatars — the same JS/DG portrait crops from podium-pros'
   logo.svg (app/john.svg, app/dave.svg there), since it's the same two
   people running both sites. */
.founders {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 2.5rem 0 0;
  padding: 0;
}

.founders li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.avatar {
  height: 130px;
  width: auto;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--border);
}

.founder-name {
  font-size: 0.85rem;
  color: var(--muted);
}

footer {
  margin-top: 3rem;
  color: var(--muted);
  font-size: 0.85rem;
}
