:root {
  color-scheme: light;
  --ink: #050505;
  --ink-soft: #2d2b28;
  --paper: #fbfaf6;
  --paper-2: #f2f1ea;
  --line: #dad5c8;
  --gold: #c9a24b;
  --red: #d9202f;
  --green: #00843d;
  --blue: #0067b1;
  --mint: #dff6e9;
  --sky: #dceeff;
  --rose: #ffe3e6;
  --shadow: 0 18px 60px rgba(5, 5, 5, 0.12);
  --radius: 8px;
  --font-display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-data: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(217, 32, 47, 0.08), transparent 25%, transparent 75%, rgba(0, 103, 177, 0.08)),
    var(--paper);
  font-family: var(--font-body);
  letter-spacing: 0;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

a {
  color: inherit;
}

.brand-wave {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 0;
  width: 10px;
  background:
    linear-gradient(180deg, var(--red) 0 32%, var(--green) 32% 64%, var(--blue) 64% 100%);
}

.brand-wave::after {
  content: "";
  position: absolute;
  inset: 0 -16px 0 0;
  background:
    radial-gradient(20px 58px at 100% 8%, var(--red) 0 48%, transparent 50%),
    radial-gradient(22px 64px at 100% 46%, var(--green) 0 48%, transparent 50%),
    radial-gradient(18px 54px at 100% 84%, var(--blue) 0 48%, transparent 50%);
  opacity: 0.9;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 12px clamp(16px, 3vw, 34px) 12px clamp(24px, 4vw, 48px);
  border-bottom: 1px solid rgba(5, 5, 5, 0.16);
  background: rgba(251, 250, 246, 0.94);
  backdrop-filter: blur(16px);
}

.brand-lockup {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-number {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1;
}

.brand-lockup strong {
  display: block;
  max-width: 170px;
  overflow: hidden;
  font-size: 0.98rem;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-lockup small {
  display: block;
  color: rgba(5, 5, 5, 0.62);
  font-family: var(--font-data);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.nav-tabs {
  display: flex;
  justify-content: center;
  min-width: 0;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-tabs::-webkit-scrollbar {
  display: none;
}

.nav-tab,
.segmented button,
.text-button,
.icon-button {
  border: 1px solid rgba(5, 5, 5, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
}

.nav-tab {
  min-height: 38px;
  padding: 0 14px;
  white-space: nowrap;
}

.nav-tab.is-active,
.segmented .is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.status-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(5, 5, 5, 0.18);
  border-radius: 999px;
  background: white;
  font-family: var(--font-data);
  font-size: 0.72rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.live-pill span {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(201, 162, 75, 0.18);
}

.live-pill.is-live span {
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(0, 132, 61, 0.18);
}

.live-pill.has-error span {
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(217, 32, 47, 0.16);
}

.icon-button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
}

.icon-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

main {
  position: relative;
  z-index: 1;
  width: min(1480px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 64px 10px;
}

.screen {
  display: none;
}

.screen.is-visible {
  display: block;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(290px, 0.86fr) minmax(340px, 1.14fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: stretch;
  min-height: 430px;
  padding: clamp(18px, 4vw, 44px) 0;
}

.hero-grid::before {
  content: "26";
  position: absolute;
  right: 35%;
  top: -34px;
  z-index: -1;
  color: rgba(5, 5, 5, 0.045);
  font-family: var(--font-display);
  font-size: clamp(12rem, 28vw, 28rem);
  line-height: 0.75;
}

.hero-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 18px 0;
}

.eyebrow {
  margin: 0 0 8px;
  color: rgba(5, 5, 5, 0.64);
  font-family: var(--font-data);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 8vw, 7.2rem);
  font-weight: 900;
  line-height: 0.86;
  text-transform: uppercase;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.9;
  text-transform: uppercase;
}

h3 {
  font-size: 1.02rem;
  line-height: 1.15;
}

.lede {
  max-width: 590px;
  margin: 20px 0 0;
  color: rgba(5, 5, 5, 0.75);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
  margin-top: 28px;
}

.team-picker {
  display: grid;
  gap: 5px;
}

.team-picker span {
  font-family: var(--font-data);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.team-picker select,
.schedule-controls input,
.schedule-controls select {
  min-height: 42px;
  border: 1px solid rgba(5, 5, 5, 0.2);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
}

.team-picker select {
  min-width: min(280px, calc(100vw - 64px));
  padding: 0 36px 0 12px;
}

.text-button {
  min-height: 42px;
  padding: 0 14px;
  font-weight: 800;
}

.score-deck {
  display: grid;
  align-content: center;
  gap: 12px;
}

.match-card,
.group-card,
.leader-card,
.story-card,
.round-column,
.article-card,
.metric-card,
.empty-state {
  border: 1px solid rgba(5, 5, 5, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.match-card {
  position: relative;
  overflow: hidden;
  padding: 14px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.match-card:hover {
  transform: translateY(-2px);
  border-color: rgba(5, 5, 5, 0.42);
}

.match-card.is-live {
  background:
    linear-gradient(90deg, rgba(0, 132, 61, 0.12), transparent 42%),
    white;
}

.match-card.is-favorite {
  border-color: var(--gold);
  box-shadow: 0 16px 52px rgba(201, 162, 75, 0.24);
}

.match-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--green), var(--blue));
}

.match-topline,
.match-meta,
.team-row,
.scoreline,
.card-foot,
.leader-row,
.metric-card,
.article-meta {
  display: flex;
  align-items: center;
}

.match-topline {
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  color: rgba(5, 5, 5, 0.66);
  font-family: var(--font-data);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.match-status {
  border: 1px solid rgba(5, 5, 5, 0.16);
  border-radius: 999px;
  padding: 4px 8px;
  background: var(--paper);
  color: var(--ink);
  white-space: nowrap;
}

.match-status.live {
  border-color: rgba(0, 132, 61, 0.35);
  background: var(--mint);
}

.teams {
  display: grid;
  gap: 8px;
}

.team-row {
  gap: 10px;
  min-width: 0;
}

.team-row img,
.leader-card img,
.standing-team img {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  object-fit: contain;
}

.team-name {
  min-width: 0;
  flex: 1;
  font-weight: 900;
  line-height: 1.1;
}

.score {
  min-width: 34px;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 0.9;
  text-align: right;
}

.match-meta {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  color: rgba(5, 5, 5, 0.7);
  font-size: 0.82rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 8px;
  border: 1px solid rgba(5, 5, 5, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  font-family: var(--font-data);
  font-size: 0.7rem;
}

.event-strip {
  display: none;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(5, 5, 5, 0.12);
}

.match-card.is-open .event-strip {
  display: grid;
  gap: 8px;
}

.event-row {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 8px;
  align-items: center;
  color: rgba(5, 5, 5, 0.78);
  font-size: 0.82rem;
}

.event-row strong {
  color: var(--ink);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0 26px;
}

.metric-card {
  justify-content: space-between;
  gap: 10px;
  min-height: 86px;
  padding: 14px;
  box-shadow: none;
}

.metric-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.85;
}

.metric-card span {
  color: rgba(5, 5, 5, 0.64);
  font-family: var(--font-data);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.metric-dot {
  width: 18px;
  height: 54px;
  border-radius: 99px;
  background: var(--gold);
}

.metric-dot.red {
  background: var(--red);
}

.metric-dot.green {
  background: var(--green);
}

.metric-dot.blue {
  background: var(--blue);
}

.two-column,
.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
}

.panel-panel {
  min-width: 0;
}

.section-heading {
  margin: 22px 0 14px;
}

.section-heading.spread {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}

.table-shell {
  overflow: auto;
  border: 1px solid rgba(5, 5, 5, 0.16);
  border-radius: var(--radius);
  background: white;
}

table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

th,
td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(5, 5, 5, 0.1);
  text-align: left;
  white-space: nowrap;
}

th {
  color: rgba(5, 5, 5, 0.6);
  font-family: var(--font-data);
  font-size: 0.72rem;
  text-transform: uppercase;
}

td {
  font-size: 0.9rem;
}

.standing-team {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  font-weight: 800;
}

.standing-team span {
  overflow: hidden;
  max-width: 220px;
  text-overflow: ellipsis;
}

.narrative-stack,
.narrative-grid,
.leader-grid,
.groups-grid,
.match-list {
  display: grid;
  gap: 12px;
}

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

.story-card {
  position: relative;
  min-height: 142px;
  overflow: hidden;
  padding: 16px;
  box-shadow: none;
}

.story-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  background: var(--gold);
}

.story-card.red::after {
  background: var(--red);
}

.story-card.green::after {
  background: var(--green);
}

.story-card.blue::after {
  background: var(--blue);
}

.story-card.triad::after {
  background: linear-gradient(90deg, var(--red), var(--green), var(--blue));
}

.story-card h3 {
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 1.95rem;
  line-height: 0.9;
  text-transform: uppercase;
}

.story-card p:last-child {
  margin: 10px 0 0;
  color: rgba(5, 5, 5, 0.7);
  line-height: 1.4;
}

.segmented {
  display: flex;
  max-width: 100%;
  gap: 4px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.segmented button {
  min-height: 38px;
  padding: 0 12px;
  white-space: nowrap;
}

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

.group-card {
  overflow: hidden;
  background: white;
  box-shadow: none;
}

.group-card header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 13px 14px;
  border-bottom: 1px solid rgba(5, 5, 5, 0.12);
  background: var(--ink);
  color: var(--paper);
}

.group-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 0.9;
  text-transform: uppercase;
}

.group-card table {
  min-width: 100%;
}

.group-card th,
.group-card td {
  padding: 8px 9px;
}

.rank-note {
  display: inline-flex;
  width: 9px;
  height: 28px;
  border-radius: 99px;
  background: var(--line);
  vertical-align: middle;
}

.bracket-board {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.round-column {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 12px;
  background: white;
  box-shadow: none;
}

.round-column h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
}

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

.leader-card {
  display: grid;
  gap: 16px;
  min-height: 170px;
  padding: 16px;
  box-shadow: none;
}

.leader-card header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.leader-rank {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.leader-card h3 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 0.9;
  text-transform: uppercase;
}

.leader-stat {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  border-top: 1px solid rgba(5, 5, 5, 0.12);
  padding-top: 12px;
}

.leader-stat strong {
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 0.8;
}

.leader-stat span {
  color: rgba(5, 5, 5, 0.64);
  font-family: var(--font-data);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.schedule-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.schedule-controls input {
  width: min(320px, 100%);
  padding: 0 12px;
}

.schedule-controls select {
  padding: 0 34px 0 10px;
}

.date-rail {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 0 14px;
}

.date-button {
  min-width: 86px;
  min-height: 54px;
  border: 1px solid rgba(5, 5, 5, 0.16);
  border-radius: var(--radius);
  background: white;
  text-align: left;
  padding: 8px;
}

.date-button strong,
.date-button span {
  display: block;
}

.date-button strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 0.8;
}

.date-button span {
  margin-top: 4px;
  color: rgba(5, 5, 5, 0.6);
  font-family: var(--font-data);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.date-button.is-active {
  background: var(--ink);
  color: var(--paper);
}

.date-button.is-active span {
  color: rgba(251, 250, 246, 0.7);
}

.match-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-rail {
  display: grid;
  align-content: start;
  gap: 12px;
}

.article-card {
  display: grid;
  gap: 8px;
  padding: 13px;
  color: inherit;
  text-decoration: none;
  box-shadow: none;
}

.article-card:hover {
  border-color: rgba(5, 5, 5, 0.42);
}

.article-card h3 {
  font-size: 1rem;
}

.article-meta {
  justify-content: space-between;
  gap: 10px;
  color: rgba(5, 5, 5, 0.58);
  font-family: var(--font-data);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.empty-state {
  padding: 22px;
  box-shadow: none;
}

.empty-state h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
}

.empty-state p {
  margin: 8px 0 0;
  color: rgba(5, 5, 5, 0.68);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  max-width: min(420px, calc(100vw - 36px));
  transform: translateY(24px);
  opacity: 0;
  pointer-events: none;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  padding: 12px 14px;
  box-shadow: var(--shadow);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Teams grid */
.teams-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

#team-search {
  min-height: 42px;
  width: min(320px, 100%);
  padding: 0 12px;
  border: 1px solid rgba(5, 5, 5, 0.2);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
}

.team-card {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(5, 5, 5, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  transition: transform 150ms ease, border-color 150ms ease;
}

.team-card:hover {
  transform: translateY(-2px);
  border-color: rgba(5, 5, 5, 0.42);
}

.team-card.is-following {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(201, 162, 75, 0.2);
}

.team-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  min-height: 44px;
}

.team-card-top img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.crest-fallback {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-data);
  font-size: 0.78rem;
}

.team-card h3 {
  font-size: 1.05rem;
  line-height: 1.1;
}

.team-card-stat {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: rgba(5, 5, 5, 0.62);
  font-family: var(--font-data);
  font-size: 0.76rem;
}

.following-chip {
  border-color: var(--gold);
  background: rgba(201, 162, 75, 0.16);
  color: var(--ink);
}

.standing-team.is-clickable {
  cursor: pointer;
}

.standing-team.is-clickable:hover span {
  text-decoration: underline;
}

/* Followed-team block on Pulse + full team page */
.followed-team {
  display: none;
}

.followed-team.is-active {
  display: block;
}

.team-profile {
  display: grid;
  gap: 16px;
}

.team-profile.is-compact {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(201, 162, 75, 0.1), transparent 60%), white;
}

.team-profile-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.team-crest {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.team-profile-id {
  min-width: 0;
  flex: 1;
}

.team-profile-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.team-profile-sub {
  margin: 6px 0 0;
  color: rgba(5, 5, 5, 0.66);
  font-family: var(--font-data);
  font-size: 0.82rem;
}

.follow-toggle {
  margin-left: auto;
}

.follow-toggle.is-following {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.team-stat-strip {
  margin: 0;
}

.team-profile-cols {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
}

.team-profile-col {
  min-width: 0;
}

.team-recent.match-list {
  grid-template-columns: 1fr;
}

.team-players {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 10px;
}

.player-pill {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.player-pill strong {
  min-width: 0;
  overflow: hidden;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.player-pill span {
  color: rgba(5, 5, 5, 0.6);
  font-family: var(--font-data);
  font-size: 0.74rem;
  white-space: nowrap;
}

@media (max-width: 1160px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .nav-tabs {
    grid-column: 1 / -1;
    justify-content: flex-start;
    order: 3;
  }

  .hero-grid,
  .two-column,
  .story-layout {
    grid-template-columns: 1fr;
  }

  .metric-strip,
  .groups-grid,
  .leader-grid,
  .match-list,
  .teams-grid,
  .narrative-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-profile-cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .brand-wave {
    width: 6px;
  }

  .topbar {
    gap: 10px;
    padding-left: 18px;
  }

  .brand-number {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .brand-lockup strong {
    max-width: 130px;
  }

  .live-pill {
    max-width: 112px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  main {
    width: min(100% - 18px, 1480px);
    padding-left: 6px;
  }

  h1 {
    font-size: clamp(3.3rem, 16vw, 5.4rem);
  }

  .hero-grid {
    min-height: auto;
    padding-top: 20px;
  }

  .metric-strip,
  .groups-grid,
  .leader-grid,
  .match-list,
  .teams-grid,
  .narrative-grid {
    grid-template-columns: 1fr;
  }

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

  .section-heading.spread {
    display: grid;
    align-items: start;
  }

  .schedule-controls {
    justify-content: stretch;
  }

  .schedule-controls input,
  .schedule-controls select {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
