/* ============================================================
   AZ Finest Mixtape — editorial design system
   Palette: warm ink + AZ Finest brand navy. Light default, dark aware.
   ============================================================ */

:root {
  /* Type */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Light-first palette: gray page field, white content sheets (MaxPreps-style) */
  --paper:        #EDEFF2;
  --surface:      #FFFFFF;
  --surface-alt:  #F5F6F8;
  --ink:          #12141A;
  --ink-soft:     #3A404B;
  --muted:        #69707E;
  --faint:        #979EAC;
  --rule:         #E2E5EA;
  --rule-strong:  #C8CDD6;
  --accent:       #303C6C;
  --accent-deep:  #1F2848;
  --accent-wash:  #EEF1F8;
  --dusk:         #1E3A5F;
  --live:         #1B7F46;

  /* Slab: sections that stay dark-bg / light-fg in BOTH themes */
  --slab:        #12141A;
  --slab-fg:     #FFFFFF;
  --slab-muted:  rgba(251,249,246,.74);
  --slab-faint:  rgba(251,249,246,.52);
  --slab-rule:   rgba(251,249,246,.14);
  --slab-accent: #9DB2E0;
  --navbar:       #303C6C;   /* section nav: stays dark navy in BOTH themes */

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(23,19,15,.05), 0 1px 3px rgba(23,19,15,.04);
  --shadow-md: 0 4px 6px -1px rgba(23,19,15,.07), 0 2px 4px -2px rgba(23,19,15,.05);
  --shadow-lg: 0 12px 28px -8px rgba(23,19,15,.14), 0 4px 10px -4px rgba(23,19,15,.06);

  /* Scale */
  --wrap: 1200px;
  --wrap-narrow: 760px;
  --radius: 4px;
  --radius-lg: 8px;
}

/* Dark is opt-in via the toggle only; light is the default look. */

:root[data-theme="dark"] {
  --paper:        #0F1116;
  --surface:      #171A21;
  --surface-alt:  #1E222B;
  --ink:          #F2F4F7;
  --ink-soft:     #D3D8E0;
  --muted:        #9AA2B1;
  --faint:        #6F7784;
  --rule:         #262B34;
  --rule-strong:  #363C47;
  --accent:       #93A9DB;
  --accent-deep:  #AEC0E7;
  --accent-wash:  #1A1F2E;
  --dusk:         #9DBDE0;
  --live:         #4FBF85;
  --slab:         #171A21;
  --slab-fg:      #F2F4F7;
  --slab-muted:   rgba(242,244,247,.74);
  --slab-faint:   rgba(242,244,247,.50);
  --slab-rule:    rgba(242,244,247,.12);
  --slab-accent:  #9DB2E0;
  --navbar:       #232B47;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  --shadow-md: 0 4px 8px rgba(0,0,0,.45);
  --shadow-lg: 0 14px 32px rgba(0,0,0,.55);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--slab); color: var(--slab-fg);
  padding: .75rem 1.25rem; z-index: 999; font-weight: 600;
}
.skip:focus { left: .5rem; top: .5rem; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 1.5rem; }
.wrap-narrow { width: 100%; max-width: var(--wrap-narrow); margin-inline: auto; padding-inline: 1.5rem; }
section { padding-block: 4.5rem; }
.section-tight { padding-block: 3rem; }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.12; letter-spacing: -.022em; }
h1 { font-size: clamp(2rem, 4vw, 2.9rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 1.95rem); }
h3 { font-size: clamp(1.1rem, 1.5vw, 1.3rem); font-weight: 700; }
h4 { font-size: 1.0625rem; }

p { color: var(--ink-soft); }
.lede { font-size: clamp(1.0625rem, 1.3vw, 1.1875rem); line-height: 1.6; color: var(--ink-soft); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: .6875rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); display: inline-flex; align-items: center; gap: .5rem;
}
.eyebrow::before {
  content: ""; width: 1.75rem; height: 2px;
  background: var(--accent); display: inline-block;
}
.eyebrow.no-rule::before { display: none; }

.section-head { margin-bottom: 2.5rem; }
.section-head h2 { margin-top: .75rem; }
.section-head p { margin-top: .75rem; max-width: 60ch; }

/* Split head: title left, standfirst right — keeps a wide band from looking
   lopsided with all its text crowded into the left half. */
.section-head-split {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem; align-items: end;
}
.section-head-split > div > h2 { margin-top: .75rem; }
.section-head-split > p { margin-top: 0; max-width: 46ch; }
@media (max-width: 900px) {
  .section-head-split { grid-template-columns: 1fr; gap: 1.25rem; align-items: start; }
  .section-head-split > p { max-width: 60ch; }
}

/* ---------- Header ---------- */
.topbar {
  background: var(--slab); color: var(--slab-fg);
  font-size: .75rem; letter-spacing: .04em;
}
.topbar .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 2.25rem; flex-wrap: wrap;
}
.topbar a { color: var(--slab-fg); text-decoration: none; opacity: .85; }
.topbar a:hover { opacity: 1; text-decoration: underline; }
.topbar-note { display: inline-flex; align-items: center; gap: .5rem; opacity: .9; }
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--live); flex: none;
}

.masthead {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(12px) saturate(1.4);
  border-bottom: 1px solid var(--rule);
}
@supports not (backdrop-filter: blur(1px)) { .masthead { background: var(--paper); } }

.masthead .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 4.5rem;
}

.wordmark { display: flex; align-items: center; gap: .75rem; text-decoration: none; flex: none; }
.wordmark .mark { width: 44px; height: 44px; flex: none; object-fit: contain; }
.wordmark-text { display: flex; flex-direction: column; line-height: 1.05; }
.wordmark-text b {
  font-family: var(--font-display); font-size: 1.3rem;
  font-weight: 700; letter-spacing: -.02em;
}
.wordmark-text span {
  font-size: .625rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
}

.nav { display: flex; align-items: center; gap: .35rem; }
.nav a {
  text-decoration: none; font-size: .875rem; font-weight: 500;
  padding: .5rem .8rem; border-radius: var(--radius);
  color: var(--ink-soft); white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav a:hover { background: var(--surface-alt); color: var(--ink); }
.nav a[aria-current="page"] { color: var(--accent); font-weight: 600; }

.nav-actions { display: flex; align-items: center; gap: .5rem; flex: none; }

.icon-btn {
  width: 2.375rem; height: 2.375rem; display: grid; place-items: center;
  background: transparent; border: 1px solid var(--rule);
  border-radius: var(--radius); cursor: pointer;
  transition: background .15s, border-color .15s;
}
.icon-btn:hover { background: var(--surface-alt); border-color: var(--rule-strong); }
.icon-btn svg { width: 1.0625rem; height: 1.0625rem; }
.theme-btn .sun { display: none; }
:root[data-theme="dark"] .theme-btn .sun { display: block; }
:root[data-theme="dark"] .theme-btn .moon { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-btn .sun { display: block; }
  :root:not([data-theme="light"]) .theme-btn .moon { display: none; }
}

.burger { display: none; }

@media (max-width: 900px) {
  .burger { display: grid; }
  .nav {
    position: fixed; inset: 4.5rem 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--rule);
    padding: .5rem 1.5rem 1.25rem; box-shadow: var(--shadow-lg);
    transform: translateY(-130%); transition: transform .28s cubic-bezier(.4,0,.2,1);
    max-height: calc(100vh - 4.5rem); overflow-y: auto;
  }
  .nav[data-open="true"] { transform: translateY(0); }
  .nav a { padding: .8rem .25rem; border-bottom: 1px solid var(--rule); border-radius: 0; font-size: 1rem; }
  .nav a:last-child { border-bottom: 0; }
  .nav a:hover { background: transparent; }
}

/* Narrow phones: the wordmark subtitle no longer fits beside the nav buttons */
@media (max-width: 560px) {
  .masthead .wrap { gap: .75rem; min-height: 4rem; }
  .wordmark .mark { width: 36px; height: 36px; }
  .wordmark { gap: .6rem; }
  .wordmark-text b { font-size: 1.15rem; }
  .wordmark-text span { display: none; }
  .nav { inset-block-start: 4rem; }
  .nav-actions { gap: .35rem; }
  .wrap, .wrap-narrow { padding-inline: 1.15rem; }
  section { padding-block: 3rem; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.4rem; border-radius: var(--radius);
  font-size: .875rem; font-weight: 600; text-decoration: none;
  border: 1px solid transparent; cursor: pointer;
  transition: background .16s, border-color .16s, transform .16s, color .16s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); }
:root[data-theme="dark"] .btn-primary { color: #17130F; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .btn-primary { color: #17130F; }
}
.btn-ghost { border-color: var(--rule-strong); color: var(--ink); }
.btn-ghost:hover { background: var(--surface-alt); }
.btn svg { width: 1rem; height: 1rem; flex: none; }

.textlink {
  color: var(--accent); font-weight: 600; text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  transition: border-color .15s;
}
.textlink:hover { border-bottom-color: var(--accent); }

/* ---------- Scoreboard strip ---------- */
.scorebar {
  background: var(--surface); border-bottom: 1px solid var(--rule);
  position: relative;
}
.scorebar-inner {
  display: flex; align-items: stretch; gap: 0;
  overflow-x: auto; scrollbar-width: thin;
  /* No scroll-snap: it snapped the first card to the container edge and pushed
     the FINAL label out of view. A score ticker gains nothing from snapping. */
}
.scorebar-inner::-webkit-scrollbar { height: 5px; }
.scorebar-inner::-webkit-scrollbar-thumb { background: var(--rule-strong); border-radius: 3px; }

.scorebar-label {
  flex: none; display: flex; align-items: center; gap: .5rem;
  padding: .85rem 1.25rem; background: var(--slab); color: var(--slab-fg);
  font-size: .6875rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  align-items: center;
}

.score-card-all {
  flex: 1 1 auto; min-width: 11rem; display: flex; align-items: center;
  gap: .6rem; padding: .7rem 1.25rem; border-right: 0;
  text-decoration: none; color: var(--muted); font-size: .8125rem;
  font-weight: 600; letter-spacing: .02em; transition: background .15s, color .15s;
}
.score-card-all:hover { background: var(--surface-alt); color: var(--accent); }
.score-card-all svg { width: 1rem; height: 1rem; flex: none; }

.score-card {
  flex: none; min-width: 12.5rem;
  padding: .7rem 1.1rem; border-right: 1px solid var(--rule);
  text-decoration: none; transition: background .15s;
}
.score-card:hover { background: var(--surface-alt); }
.score-meta {
  font-size: .625rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--faint); margin-bottom: .3rem;
}
.score-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; font-size: .8125rem; color: var(--muted);
}
.score-row + .score-row { margin-top: .1rem; }
.score-row.win { color: var(--ink); font-weight: 700; }
.score-row b { font-variant-numeric: tabular-nums; font-size: .9375rem; }

/* ---------- Hero / lead ---------- */
.lead { padding-block: 3.5rem 4rem; }
.lead-grid {
  display: grid; grid-template-columns: 1.55fr 1fr;
  gap: 3rem; align-items: start;
}
@media (max-width: 940px) { .lead-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.lead-story { text-decoration: none; display: block; }
.lead-figure {
  aspect-ratio: 16 / 9; border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: 1.35rem; position: relative;
  background:
    radial-gradient(95% 115% at 86% 108%, rgba(48,60,108,.85), transparent 62%),
    radial-gradient(75% 95% at 8% -5%, rgba(147,169,219,.28), transparent 62%),
    linear-gradient(158deg, #161D2E 0%, #232B45 58%, #303C6C 100%);
  box-shadow: var(--shadow-md);
}
.lead-figure::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(85% 65% at 82% 94%, rgba(0,0,0,.30), transparent 65%);
}
.figure-tag {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  background: rgba(23,19,15,.82); color: #fff; backdrop-filter: blur(6px);
  font-size: .625rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .4rem .7rem; border-radius: 3px;
}
.lead-story h1 {
  margin-bottom: 1rem;
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
  letter-spacing: -.02em;
}
.lead-story:hover h1 { color: var(--accent); }
.byline {
  display: flex; align-items: center; gap: .6rem; flex-wrap: wrap;
  margin-top: 1.25rem; font-size: .8125rem; color: var(--muted);
}
.byline b { color: var(--ink); font-weight: 600; }
.byline .sep { color: var(--rule-strong); }

/* Sidebar list */
.side-list { border-top: 2px solid var(--ink); padding-top: 1.25rem; }
.side-item {
  display: flex; gap: 1rem; padding: 1.15rem 0;
  border-bottom: 1px solid var(--rule); text-decoration: none;
}
.side-item:hover h4 { color: var(--accent); }
.side-num {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  color: var(--rule-strong); line-height: 1; flex: none; width: 1.5rem;
  font-variant-numeric: tabular-nums;
}
.side-item h4 { margin-bottom: .3rem; }
.side-item p { font-size: .8125rem; color: var(--muted); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 2rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 940px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card { text-decoration: none; display: flex; flex-direction: column; }
.card-figure {
  aspect-ratio: 3 / 2; border-radius: var(--radius);
  overflow: hidden; margin-bottom: 1.1rem; position: relative;
  box-shadow: var(--shadow-sm);
}
.card:hover .card-figure { box-shadow: var(--shadow-md); }
.card:hover h3 { color: var(--accent); }
/* One tonal family so a grid of placeholders reads as a set, not a rainbow */
.g1 { background: linear-gradient(152deg, #16223A 0%, #38507A 100%); }
.g2 { background: linear-gradient(152deg, #1E2848 0%, #45557F 100%); }
.g3 { background: linear-gradient(152deg, #1A2A38 0%, #375363 100%); }
.g4 { background: linear-gradient(152deg, #222040 0%, #474571 100%); }
.g5 { background: linear-gradient(152deg, #1B2733 0%, #3C525F 100%); }
.g6 { background: linear-gradient(152deg, #141F33 0%, #304A6E 100%); }
.card-figure::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(105% 75% at 18% 6%, rgba(255,255,255,.10), transparent 62%);
}

/* Key-arc motif — makes image placeholders read as intentional design */
.lead-figure::before {
  content: ""; position: absolute; z-index: 1;
  left: 50%; bottom: -46%; transform: translateX(-50%);
  width: 62%; aspect-ratio: 1; border-radius: 50%;
  border: 1.5px solid rgba(251,249,246,.20);
}
/* Cards get a quiet diagonal sweep instead of the arc — repeating the arc six
   times across a grid reads as wallpaper rather than as six separate images. */
.card-figure::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(112deg, transparent 34%, rgba(251,249,246,.07) 50%, transparent 66%);
}
.card-figure { box-shadow: var(--shadow-sm), inset 0 0 0 1px rgba(251,249,246,.07); }
.card:hover .card-figure { box-shadow: var(--shadow-md), inset 0 0 0 1px rgba(251,249,246,.12); }
.kicker {
  font-size: .625rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: .55rem;
}
.card h3 { margin-bottom: .55rem; font-size: 1.1875rem; }
.card p { font-size: .875rem; color: var(--muted); }
.card .byline { margin-top: .85rem; font-size: .75rem; }

/* ---------- Commitment / pillars ---------- */
.band { background: var(--surface); border-block: 1px solid var(--rule); }
.band-ink {
  background: var(--slab); color: var(--slab-fg);
  border-block: 0;
}
.band-ink h2, .band-ink h3, .band-ink h4 { color: var(--slab-fg); }
.band-ink p { color: var(--slab-muted); }
.band-ink .eyebrow { color: var(--slab-accent); }
.band-ink .eyebrow::before { background: var(--slab-accent); }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
@media (max-width: 860px) { .pillars { grid-template-columns: 1fr; gap: 2rem; } }
.pillar { padding-top: 1.25rem; border-top: 2px solid var(--accent); }
.band-ink .pillar { border-top-color: var(--slab-accent); }
.pillar h3 { margin-bottom: .65rem; }
.pillar p { font-size: .9375rem; }

/* ---------- Compliance table ---------- */
.table-scroll { overflow-x: auto; border: 1px solid var(--rule); border-radius: var(--radius-lg); background: var(--surface); }
table.policy { width: 100%; border-collapse: collapse; min-width: 40rem; }
table.policy caption { text-align: left; padding: 1.25rem 1.25rem .25rem; font-size: .8125rem; color: var(--muted); }
table.policy th, table.policy td { padding: .95rem 1.25rem; text-align: left; vertical-align: top; font-size: .875rem; }
table.policy thead th {
  background: var(--surface-alt); border-bottom: 1px solid var(--rule-strong);
  font-size: .6875rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
  position: sticky; top: 0;
}
table.policy tbody tr + tr { border-top: 1px solid var(--rule); }
table.policy tbody tr:hover { background: var(--surface-alt); }
table.policy td.art { font-weight: 700; color: var(--accent); white-space: nowrap; font-variant-numeric: tabular-nums; }
table.policy td.req { color: var(--ink); font-weight: 500; }
table.policy td.how { color: var(--muted); }

.check {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .04em;
  color: var(--live); white-space: nowrap;
}
.check svg { width: .9375rem; height: .9375rem; flex: none; }

/* ---------- Do / Don't ---------- */
.dd { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 760px) { .dd { grid-template-columns: 1fr; } }
.dd-col {
  border: 1px solid var(--rule); border-radius: var(--radius-lg);
  padding: 1.75rem; background: var(--surface);
}
.dd-col.yes { border-top: 3px solid var(--live); }
.dd-col.no  { border-top: 3px solid #B3402E; }
.dd-col h3 { margin-bottom: 1.1rem; font-size: 1.1875rem; }
.dd-col ul { list-style: none; padding: 0; display: grid; gap: .8rem; }
.dd-col li { display: flex; gap: .7rem; font-size: .9375rem; color: var(--ink-soft); line-height: 1.55; }
.dd-col li svg { width: 1.0625rem; height: 1.0625rem; flex: none; margin-top: .22rem; }
.yes li svg { color: var(--live); }
.no li svg { color: #B3402E; }

/* ---------- Prose ---------- */
.prose > * + * { margin-top: 1.25rem; }
.prose h2 { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--rule); }
.prose h3 { margin-top: 2rem; }
.prose ul, .prose ol { padding-left: 1.35rem; color: var(--ink-soft); display: grid; gap: .6rem; }
.prose li::marker { color: var(--accent); }
.prose blockquote {
  border-left: 3px solid var(--accent); padding: .25rem 0 .25rem 1.5rem;
  font-family: var(--font-display); font-size: 1.1875rem; line-height: 1.5;
  color: var(--ink); font-style: italic;
}
.prose blockquote cite {
  display: block; margin-top: .75rem; font-family: var(--font-sans);
  font-size: .8125rem; font-style: normal; color: var(--muted); letter-spacing: .02em;
}
.callout {
  background: var(--accent-wash); border: 1px solid color-mix(in srgb, var(--accent) 24%, transparent);
  border-radius: var(--radius-lg); padding: 1.5rem 1.75rem;
}
.callout h3 { margin-bottom: .6rem; font-size: 1.125rem; }
.callout p { color: var(--ink-soft); font-size: .9375rem; }
.callout > * + * { margin-top: .75rem; }

/* ---------- Staff ---------- */
.staff { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 880px) { .staff { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .staff { grid-template-columns: 1fr; } }
.person {
  background: var(--surface); border: 1px solid var(--rule);
  border-radius: var(--radius-lg); padding: 1.5rem;
}
.avatar {
  width: 3.25rem; height: 3.25rem; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 1rem;
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
  color: #fff; background: linear-gradient(135deg, var(--dusk), var(--accent));
}
.person h4 { margin-bottom: .2rem; }
.person .role {
  font-size: .6875rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: .7rem;
}
.person p { font-size: .875rem; }
.person .clearance {
  margin-top: 1rem; padding-top: .9rem; border-top: 1px solid var(--rule);
  font-size: .75rem; color: var(--muted); display: flex; align-items: center; gap: .45rem;
}
.person .clearance svg { width: .875rem; height: .875rem; color: var(--live); flex: none; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 820px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { border-left: 2px solid var(--accent); padding-left: 1.25rem; }
.band-ink .stat { border-left-color: var(--slab-accent); }
.stat b {
  display: block; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600; line-height: 1; letter-spacing: -.02em; font-variant-numeric: tabular-nums;
}
.stat span {
  display: block; margin-top: .5rem; font-size: .75rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
}
.band-ink .stat span { color: var(--slab-faint); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } }
.info-list { list-style: none; padding: 0; display: grid; gap: 1.25rem; }
.info-list li { display: grid; gap: .2rem; }
.info-list dt, .info-list .lbl {
  font-size: .6875rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
}
.info-list .val { font-size: 1rem; color: var(--ink); font-weight: 500; }

/* ---------- Footer ---------- */
.foot { background: var(--slab); color: var(--slab-fg); padding-block: 3.5rem 2rem; margin-top: 2rem; }
.foot h4, .foot b { color: var(--slab-fg); }
.foot-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--slab-rule);
}
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; gap: 2rem; } }
.foot p { color: var(--slab-muted); font-size: .875rem; }
.foot h4 {
  font-family: var(--font-sans); font-size: .6875rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--slab-faint); margin-bottom: 1rem;
}
.foot ul { list-style: none; padding: 0; display: grid; gap: .65rem; }
.foot ul a { color: var(--slab-muted); text-decoration: none; font-size: .875rem; }
.foot ul a:hover { color: var(--slab-fg); text-decoration: underline; }
.foot-bottom {
  padding-top: 1.75rem; display: flex; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; font-size: .75rem; color: var(--slab-faint);
}
.foot .wordmark-text b { color: var(--slab-fg); }
.foot .wordmark-text span { color: var(--slab-faint); }

/* ---------- Sample-content banner (remove before submitting) ---------- */
.demo-note {
  background: #B3402E; color: #fff; text-align: center;
  font-size: .8125rem; font-weight: 600; padding: .6rem 1.5rem;
}
.demo-note code { background: rgba(0,0,0,.22); padding: .1rem .35rem; border-radius: 3px; font-size: .95em; }

@media print { .masthead, .topbar, .foot, .demo-note, .nav-actions { display: none; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Archive ---------- */
.chips { display: flex; gap: .5rem; flex-wrap: wrap; }
.chip {
  padding: .45rem .95rem; border: 1px solid var(--rule-strong);
  border-radius: 100px; background: transparent; cursor: pointer;
  font-size: .8125rem; font-weight: 500; color: var(--ink-soft);
  transition: background .15s, color .15s, border-color .15s;
}
.chip:hover { background: var(--surface-alt); }
.chip[aria-pressed="true"] {
  background: var(--slab); color: var(--slab-fg); border-color: var(--slab);
}

.archive { border-top: 2px solid var(--ink); margin-top: 2rem; }
.archive-row {
  display: grid; grid-template-columns: 6.5rem 1fr 9rem;
  gap: 1.75rem; align-items: start;
  padding: 1.4rem 0; border-bottom: 1px solid var(--rule);
  text-decoration: none;
}
.archive-row:hover { background: var(--surface-alt); }
.archive-row:hover h3 { color: var(--accent); }
.archive-date {
  font-size: .75rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: var(--faint); padding-top: .3rem;
  font-variant-numeric: tabular-nums;
}
.archive-row h3 { font-size: 1.125rem; margin-bottom: .35rem; }
.archive-row p { font-size: .875rem; color: var(--muted); }
.archive-type {
  justify-self: start; padding: .3rem .65rem; border-radius: 3px;
  background: var(--accent-wash); color: var(--accent-deep);
  font-size: .625rem; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; white-space: nowrap; margin-top: .3rem;
}
@media (max-width: 720px) {
  .archive-row { grid-template-columns: 1fr; gap: .5rem; padding: 1.25rem 0; }
  .archive-date { padding-top: 0; }
  .archive-type { margin-top: .35rem; }
}
.empty-note {
  padding: 3rem 1.5rem; text-align: center; color: var(--muted);
  font-size: .9375rem; border-bottom: 1px solid var(--rule);
}


/* ============================================================
   Sheet shell — centered white content cards on a gray field
   ============================================================ */
.shell { width: 100%; max-width: 1000px; margin-inline: auto; padding-inline: 1rem; }

.sheet {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 6px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.sheet-head {
  padding: 1.35rem 1.5rem 1.1rem;
  border-bottom: 1px solid var(--rule);
}
.sheet-head h2 { margin: 0; font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; }
.sheet-head p { margin-top: .5rem; font-size: .875rem; color: var(--muted); max-width: 68ch; }
.sheet-body { padding: 1.5rem; }
.sheet-body-flush { padding: 0; }
.sheet-foot {
  padding: 1rem 1.5rem; border-top: 1px solid var(--rule);
  background: var(--surface-alt);
}
.sheet-foot a { font-size: .875rem; font-weight: 700; color: var(--accent); text-decoration: none; }
.sheet-foot a:hover { text-decoration: underline; }

/* Dense news list: byline/date above headline, dek, tag, right thumbnail */
.news-row {
  display: grid; grid-template-columns: 1fr 168px;
  gap: 1.5rem; align-items: start;
  padding: 1.4rem 1.5rem; text-decoration: none;
  border-bottom: 1px solid var(--rule);
  transition: background .12s;
}
.news-row:last-child { border-bottom: 0; }
.news-row:hover { background: var(--surface-alt); }
.news-row:hover h3 { color: var(--accent); }
.news-meta {
  font-size: .8125rem; color: var(--muted); margin-bottom: .35rem;
  display: flex; gap: .45rem; align-items: center; flex-wrap: wrap;
}
.news-meta b { color: var(--ink-soft); font-weight: 600; }
.news-row h3 { margin: 0 0 .4rem; font-size: 1.1875rem; line-height: 1.25; }
.news-row p { font-size: .9375rem; color: var(--ink-soft); line-height: 1.5; margin: 0; }
.news-thumb {
  width: 168px; aspect-ratio: 4 / 3; border-radius: 4px;
  overflow: hidden; position: relative;
}
.news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.tag {
  display: inline-block; margin-top: .7rem;
  padding: .25rem .6rem; border-radius: 100px;
  background: var(--surface-alt); border: 1px solid var(--rule);
  font-size: .6875rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--muted);
}
.news-row:hover .tag { border-color: var(--rule-strong); }
@media (max-width: 640px) {
  .news-row { grid-template-columns: 1fr 96px; gap: 1rem; padding: 1.15rem 1.15rem; }
  .news-thumb { width: 96px; }
  .news-row h3 { font-size: 1.0625rem; }
  .news-row p { font-size: .875rem; }
  .sheet-head, .sheet-body { padding-inline: 1.15rem; }
}

/* Two-tier chrome, like a wire-service section nav */
.subnav { background: var(--navbar); position: relative; z-index: 40; }
.subnav-inner { display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; }
.subnav-inner::-webkit-scrollbar { display: none; }
.subnav a {
  flex: none; padding: .8rem 1rem; text-decoration: none;
  color: rgba(255,255,255,.82); font-size: .875rem; font-weight: 600;
  white-space: nowrap; border-bottom: 3px solid transparent;
}
.subnav a:hover { color: #fff; background: rgba(255,255,255,.08); }
.subnav a[aria-current="page"] { color: #fff; border-bottom-color: #fff; }

/* Hero band inside a sheet */
.sheet-hero { aspect-ratio: 21 / 9; position: relative; overflow: hidden; }
.sheet-hero img { width: 100%; height: 100%; object-fit: cover; }


/* ============================================================
   Inner pages: wrap their content containers as white sheets so
   they match the homepage. The homepage uses .shell and is
   unaffected by these selectors.
   ============================================================ */
main > section:not(.band-ink) > .wrap,
main > section:not(.band-ink) > .wrap-narrow {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 2rem 2.25rem;
  max-width: 1000px;
}
main > section:not(.band-ink) > .wrap-narrow { max-width: 1000px; }

/* Sections no longer need their own field colour — the sheets carry it */
main > section.band:not(.band-ink) { background: transparent; border-block: 0; }
main > section { padding-block: .625rem; }
main > section:first-child { padding-top: 1.25rem; }
main > section:last-child { padding-bottom: 1.75rem; }

/* Dark accent band still spans the full width, but tighten it up */
main > section.band-ink { padding-block: 3rem; margin-block: .625rem; }
main > section.band-ink > .wrap,
main > section.band-ink > .shell { max-width: 1000px; }

/* First element inside a sheet shouldn't carry a stacked top margin */
main > section > .wrap > :first-child,
main > section > .wrap-narrow > :first-child { margin-top: 0; }

/* The compliance table should run edge to edge inside its sheet */
main > section > .wrap > .table-scroll { margin-inline: -2.25rem; border-radius: 0; border-inline: 0; }

@media (max-width: 700px) {
  main > section:not(.band-ink) > .wrap,
  main > section:not(.band-ink) > .wrap-narrow { padding: 1.35rem 1.15rem; border-radius: 4px; }
  main > section > .wrap > .table-scroll { margin-inline: -1.15rem; }
}


/* ---------- Pre-season empty states ---------- */
.empty-state { padding: 3.75rem 2rem; text-align: center; }
.empty-state .eyebrow { justify-content: center; }
.empty-state h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); margin: .9rem 0 .8rem; }
.empty-state p {
  max-width: 54ch; margin-inline: auto; color: var(--ink-soft);
  font-size: .9375rem; line-height: 1.65;
}
.empty-state p + p { margin-top: .8rem; }
.empty-state .actions {
  margin-top: 1.9rem; display: flex; gap: .6rem;
  justify-content: center; flex-wrap: wrap;
}
.scorebar-note {
  display: flex; align-items: center;
  padding: .7rem 1.25rem; font-size: .875rem; color: var(--muted);
}
.scorebar-note b { color: var(--ink); font-weight: 700; }
@media (max-width: 620px) { .empty-state { padding: 2.5rem 1.15rem; } }
