:root {
  --ink: #111317;
  --paper: #f7f9fb;
  --panel: #ffffff;
  --muted: #596170;
  --line: #111317;
  --bull: #c1121f;
  --mav: #2451d6;
  --mint: #0b6b50;
  --gold: #f5c542;
  --shadow: 10px 10px 0 rgba(17, 19, 23, 0.22);
  --soft-shadow: 5px 5px 0 rgba(17, 19, 23, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(17, 19, 23, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 19, 23, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--mav);
  font-weight: 800;
  text-underline-offset: 0.24em;
}

a:hover {
  color: var(--bull);
}

.skip-link {
  left: 1rem;
  position: absolute;
  top: -4rem;
  z-index: 50;
}

.skip-link:focus {
  background: var(--gold);
  border: 3px solid var(--line);
  color: var(--ink);
  padding: 0.75rem 1rem;
  top: 1rem;
}

.site-header {
  background: rgba(247, 249, 251, 0.96);
  border-bottom: 4px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-wrap,
.hero-inner,
.section,
.footer-inner {
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 1.25rem;
}

.nav-wrap {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-weight: 900;
  gap: 0.7rem;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--bull), var(--mav));
  border: 3px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  color: #fff;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  letter-spacing: 0;
  width: 42px;
}

.nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--ink);
  font-size: 0.93rem;
  text-decoration: none;
}

.nav-links a:hover {
  text-decoration: underline;
}

.hero {
  padding: 3.4rem 0 2.7rem;
}

.hero-inner {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.98fr);
}

.eyebrow {
  align-items: center;
  background: #fff;
  border: 3px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  gap: 0.45rem;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.75rem;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  font-size: 4.5rem;
  margin: 1rem 0 1rem;
  max-width: 950px;
}

h2 {
  font-size: 2.7rem;
  margin: 0 0 1rem;
}

h3 {
  font-size: 1.2rem;
  margin: 0 0 0.55rem;
}

p {
  margin: 0 0 1rem;
}

.lede {
  color: #262b35;
  font-size: 1.08rem;
  max-width: 760px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.5rem 0 0;
}

.button {
  align-items: center;
  background: var(--ink);
  border: 3px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 900;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1rem;
  text-decoration: none;
}

.button:hover {
  background: var(--bull);
  color: #fff;
}

.button.secondary {
  background: var(--gold);
  color: var(--ink);
}

.hero-card,
.panel,
.fact-card,
.scoreboard,
.image-frame,
.toc,
.stat-table {
  background: var(--panel);
  border: 4px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-card {
  overflow: hidden;
}

.scoreboard {
  margin-top: 1.5rem;
  overflow: hidden;
}

.score-row {
  align-items: center;
  border-top: 3px solid var(--line);
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr auto;
  padding: 1rem;
}

.score-row:first-child {
  border-top: 0;
}

.score-row strong {
  font-size: 2rem;
}

.score-team {
  align-items: center;
  display: flex;
  gap: 0.75rem;
}

.team-dot {
  border: 3px solid var(--line);
  border-radius: 999px;
  display: inline-block;
  height: 28px;
  width: 28px;
}

.team-dot.chi {
  background: var(--bull);
}

.team-dot.dal {
  background: var(--mav);
}

.section {
  padding-bottom: 3rem;
  padding-top: 3rem;
}

.section.narrow {
  max-width: 880px;
}

.meta-grid,
.card-grid,
.two-col,
.stat-grid {
  display: grid;
  gap: 1rem;
}

.meta-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.4rem;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.two-col {
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
}

.stat-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fact-card,
.panel,
.toc {
  padding: 1.25rem;
}

.fact-card span {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.fact-card strong {
  font-size: 1.2rem;
}

.callout {
  background: #e8f7ef;
  border: 4px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  margin: 1.5rem 0;
  padding: 1.25rem;
}

.image-frame {
  margin: 1.5rem 0;
  overflow: hidden;
}

.image-frame figcaption {
  border-top: 3px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  padding: 0.75rem 1rem;
}

.stat-table {
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.5rem 0;
  overflow: hidden;
  width: 100%;
}

.stat-table th,
.stat-table td {
  border-bottom: 3px solid var(--line);
  padding: 0.85rem;
  text-align: left;
}

.stat-table tr:last-child td {
  border-bottom: 0;
}

.stat-table th {
  background: var(--ink);
  color: #fff;
}

.clean-list {
  margin: 0;
  padding-left: 1.1rem;
}

.clean-list li {
  margin-bottom: 0.65rem;
}

.site-footer {
  background: var(--ink);
  color: #f7f9fb;
  margin-top: 2rem;
  padding: 2rem 0;
}

.site-footer a {
  color: #f7f9fb;
}

.footer-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

@media (max-width: 820px) {
  .nav-wrap,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-inner,
  .two-col,
  .card-grid,
  .meta-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero {
    padding-top: 2rem;
  }
}
.adsterra-link-wrap {
  padding: 0 0 1.25rem;
  text-align: center;
}

.adsterra-link {
  color: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}