/* Minimal styling. One font stack, Dropout brand colors, nothing else. */
:root {
  --bg: #ffffff;
  --ink: #111111;
  --muted: #555555;
  --accent: #feea3b; /* Dropout yellow, from dropout.tv on 2026-09-03 */
  --accent-ink: #111111;
  --rule: #e5e5e5;
  --link: #0b57d0;
  color-scheme: light dark;
}

/* Dark mode follows the system setting. Dropout's own site is black with yellow. */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #111111;
    --ink: #f2f2f2;
    --muted: #a8a8a8;
    --rule: #333333;
    --link: #8ab4f8;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 1.6em 0 0.5em;
}
h1 {
  font-size: 2rem;
  margin-top: 0.4em;
}
h2 {
  font-size: 1.4rem;
  border-bottom: 3px solid var(--accent);
  display: inline-block;
  padding-bottom: 2px;
}
h3 {
  font-size: 1.1rem;
}

p,
ul,
ol {
  margin: 0 0 1em;
}
li {
  margin-bottom: 0.35em;
}

a {
  color: var(--link);
}
a:hover {
  text-decoration-thickness: 2px;
}

.demo-banner {
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 20px;
  text-align: center;
}
.demo-banner a {
  color: var(--accent-ink);
}

.stat {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0.2em 0 0.1em;
}
.stat small {
  display: block;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--muted);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin: 1em 0 1.5em;
}

table {
  border-collapse: collapse;
  width: 100%;
  font-size: 15px;
  margin: 0.5em 0 1.5em;
}
th,
td {
  text-align: left;
  padding: 8px 10px;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
th {
  font-weight: 700;
}
td code {
  font-size: 14px;
  word-break: break-all;
}
.table-wrap {
  overflow-x: auto;
}

.option { margin: 1.8em 0; }
.callout {
  background: rgba(254, 234, 59, 0.2);
  border-radius: 6px;
  padding: 10px 14px;
  margin: 1.4em 0;
}
.callout h3 { margin: 0 0 0.4em; }
.callout ul { margin-bottom: 0.6em; }
.option-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.6em;
}
.option-head h3 { margin: 0; flex: 1; font-size: 1.25rem; }
.badge {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
}
.badge-a { background: var(--accent); color: var(--accent-ink); }
.badge-b { background: var(--ink); color: var(--bg); }
.badge-c { background: transparent; color: var(--muted); border: 2px solid var(--rule); }
.tag {
  flex: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 3px 10px;
}

.checklist li {
  margin-bottom: 0.6em;
}

.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin: 1em 0 1.5em;
  background: #000;
}
.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.shows {
  list-style: none;
  padding: 0;
}
.shows li {
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
}
.shows li strong {
  display: block;
}

.muted {
  color: var(--muted);
}
.small {
  font-size: 15px;
}

footer {
  margin-top: 48px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 15px;
}

/* Mobile: long URLs in links and code must wrap, and the page must never pan sideways. */
html, body { max-width: 100%; overflow-x: hidden; }
a, code { overflow-wrap: anywhere; word-break: break-word; }
td, th { overflow-wrap: anywhere; }
.contact { margin-top: 1.5em; }
.contact a { display: inline-block; margin-right: 1em; }
