:root {
  --ink: #111318;
  --muted: #666b75;
  --paper: #f3f1ec;
  --white: #fff;
  --night: #090b10;
  --night-2: #11151d;
  --red: #d7263d;
  --red-dark: #a7152a;
  --green: #1d8a55;
  --amber: #cc8212;
  --line: rgba(17, 19, 24, .12);
  --radius: 22px;
  --shadow: 0 24px 70px rgba(11, 12, 16, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Aptos, "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, select { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 12px clamp(20px, 5vw, 76px);
  color: var(--white);
  background: rgba(9, 11, 16, .94);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand strong, .brand small { display: block; }
.brand strong { font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; }
.brand small { margin-top: 2px; color: #aeb3bd; font-size: .72rem; }
.crest {
  width: 46px;
  height: 46px;
  overflow: hidden;
  background: white;
  border-radius: 12px;
}
.crest img { display: block; width: 100%; height: 100%; object-fit: cover; }
.site-nav { display: flex; gap: 28px; }
.site-nav a {
  color: #c9ccd2;
  font-size: .84rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease;
}
.site-nav a:hover { color: var(--white); }
.nav-toggle { display: none; color: white; background: none; border: 1px solid #464b55; border-radius: 999px; padding: 8px 13px; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.back-home {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: #e9ebee;
  border: 1px solid #464b55;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 800;
  text-decoration: none;
}
.back-home:hover { color: #fff; border-color: #777e8b; }

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(40px, 8vw, 110px);
  min-height: 650px;
  padding: clamp(72px, 10vw, 145px) clamp(20px, 7vw, 110px);
  color: var(--white);
  background:
    radial-gradient(circle at 80% 25%, rgba(215,38,61,.28), transparent 26%),
    linear-gradient(135deg, #090b10 0%, #121722 66%, #090b10 100%);
}
.hero::after {
  content: "C";
  position: absolute;
  right: -3vw;
  bottom: -25%;
  color: rgba(255,255,255,.025);
  font-size: min(48vw, 620px);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}
.hero-copy, .hero-side { position: relative; z-index: 1; }
.league-lockup { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.league-lockup .eyebrow { margin: 0; }
.league-logo {
  display: grid;
  place-items: center;
  width: 74px;
  height: 54px;
  overflow: hidden;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.24);
}
.league-logo img { width: 100%; height: 100%; object-fit: contain; }
.hero-side { align-self: end; display: grid; justify-items: center; gap: 24px; width: 100%; max-width: 430px; }
.hero-crest {
  width: clamp(150px, 18vw, 230px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 8px solid rgba(255,255,255,.08);
  border-radius: 30px;
  box-shadow: 0 26px 70px rgba(0,0,0,.32);
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(3.3rem, 8vw, 7.4rem);
  line-height: .9;
  letter-spacing: -.065em;
  text-transform: uppercase;
}
.hero h1 em { color: #979da8; font-style: normal; }
.hero-intro { max-width: 590px; margin: 28px 0 0; color: #bdc1ca; font-size: clamp(1rem, 2vw, 1.2rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}
.button-primary { background: var(--red); color: white; }
.button-primary:hover { background: #ee304a; }
.button-ghost { border: 1px solid #454b56; color: #e4e6ea; }
.button-ghost:hover { border-color: #777e8b; }

.latest-card, .next-card, .rescheduled-card {
  width: 100%;
  max-width: 430px;
  padding: 30px;
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 26px;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
  backdrop-filter: blur(12px);
}
.latest-label { display: flex; justify-content: space-between; gap: 16px; color: #aeb3bd; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.scoreline { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; margin: 28px 0 20px; }
.score-team { font-weight: 850; text-transform: uppercase; }
.score-team:last-child { text-align: right; }
.score { display: flex; gap: 8px; align-items: center; font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 900; letter-spacing: -.06em; }
.score small { color: #717784; font-size: .55em; }
.latest-meta { margin: 0; color: #b6bac3; font-size: .88rem; }
.next-card { padding: 24px 28px; background: rgba(255,255,255,.1); }
.next-label { display: flex; justify-content: space-between; gap: 16px; color: #f0b6bf; font-size: .7rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.next-rival { margin-top: 17px; font-size: 1.32rem; font-weight: 900; letter-spacing: -.025em; text-transform: uppercase; }
.next-rival span { margin-right: 4px; font-size: 1rem; }
.next-meta { margin: 8px 0 18px; color: #b6bac3; font-size: .84rem; text-transform: capitalize; }
.grill-duty { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.13); }
.grill-duty span { color: #aeb3bd; font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.grill-duty strong { color: white; font-size: .92rem; }
.rescheduled-card { padding: 22px 28px; background: rgba(204,130,18,.12); border-color: rgba(240,178,76,.38); }
.rescheduled-label { display: flex; justify-content: space-between; gap: 16px; color: #f2be68; font-size: .7rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.rescheduled-rival { margin-top: 15px; font-size: 1.18rem; font-weight: 900; letter-spacing: -.025em; text-transform: uppercase; }
.rescheduled-rival span { margin-right: 4px; font-size: .95rem; }
.rescheduled-meta { margin: 7px 0 15px; color: #d2d4d9; font-size: .82rem; text-transform: capitalize; }
.bar-duty { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.13); }
.bar-duty span { color: #c5a87b; font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.bar-duty strong { color: white; font-size: .9rem; }

.section { padding: clamp(72px, 9vw, 120px) clamp(20px, 7vw, 110px); }
.section-current { background: #fff; }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}
.section h2 { margin: 0; font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1; letter-spacing: -.045em; }
.updated, .section-tag { color: var(--muted); font-size: .82rem; }
.section-tag { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; }

.metric-grid { display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); width: 100%; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.metric { min-width: 0; padding: 24px 12px; border-right: 1px solid var(--line); }
.metric:first-child { padding-left: 0; }
.metric:last-child { border-right: 0; }
.metric strong { display: block; font-size: clamp(1.55rem, 3.2vw, 2.8rem); line-height: 1; letter-spacing: -.05em; }
.metric span { display: block; margin-top: 9px; color: var(--muted); font-size: .67rem; font-weight: 750; letter-spacing: .06em; line-height: 1.25; overflow-wrap: anywhere; text-transform: uppercase; }
.record-bar { display: flex; height: 8px; margin-top: 28px; overflow: hidden; border-radius: 999px; background: #e1e1de; }
.record-bar span { min-width: 2px; transition: width .45s ease; }
.bar-win { background: var(--green); }
.bar-draw { background: var(--amber); }
.bar-loss { background: var(--red); }

.section-schedule { background: #11151d; color: var(--white); }
.section-schedule .section-tag { color: #d4d7dd; border-color: rgba(255,255,255,.18); }
.schedule-feature {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 290px;
  margin-bottom: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, #d7263d 0%, #a7152a 100%);
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(0,0,0,.24);
}
.schedule-feature-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(30px, 5vw, 58px); }
.schedule-feature-label { display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #ffdce1; font-size: .72rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.schedule-feature-label strong { display: grid; place-items: center; width: 48px; height: 48px; color: #c72037; background: #fff; border-radius: 14px; font-size: 1rem; letter-spacing: 0; }
.schedule-feature h3 { margin: 28px 0 8px; font-size: clamp(2.1rem, 5vw, 4.4rem); line-height: .92; letter-spacing: -.055em; text-transform: uppercase; }
.schedule-feature h3 span { color: #ffabb7; font-size: .48em; letter-spacing: .03em; }
.schedule-feature-copy > p { margin: 0; color: #ffe7ea; font-size: 1rem; text-transform: capitalize; }
.schedule-feature-duty { display: flex; justify-content: space-between; gap: 20px; margin-top: 30px; padding-top: 19px; border-top: 1px solid rgba(255,255,255,.25); }
.schedule-feature-duty span { color: #ffd4da; font-size: .74rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.schedule-feature-duty strong { text-align: right; }
.schedule-versus { display: grid; grid-template-columns: 1fr auto 1fr; place-items: center; gap: 18px; padding: 44px; background: rgba(9,11,16,.23); }
.schedule-versus img { width: clamp(84px, 10vw, 135px); height: clamp(84px, 10vw, 135px); object-fit: contain; filter: drop-shadow(0 16px 22px rgba(0,0,0,.26)); }
.schedule-versus > span { color: #ffd6dc; font-size: .8rem; font-weight: 900; letter-spacing: .16em; }
.schedule-versus .schedule-fallback { font-size: 4rem; letter-spacing: 0; }
.schedule-list { display: grid; gap: 10px; }
.schedule-game {
  display: grid;
  grid-template-columns: 84px minmax(170px, 1.1fr) minmax(150px, .8fr) minmax(190px, 1fr) 92px;
  align-items: center;
  gap: 18px;
  min-height: 98px;
  padding: 14px 18px;
  background: #1b202a;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
}
.schedule-game.is-next { border-color: rgba(238,48,74,.9); box-shadow: inset 4px 0 0 var(--red); }
.schedule-game.is-finished { color: #b9bdc6; background: #171b23; }
.schedule-round { display: grid; justify-items: center; padding-right: 18px; border-right: 1px solid rgba(255,255,255,.1); }
.schedule-round span, .schedule-duty span { color: #858b97; font-size: .64rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.schedule-round strong { margin-top: 3px; color: white; font-size: 1.65rem; }
.schedule-opponent { display: flex; align-items: center; gap: 13px; min-width: 0; }
.schedule-opponent img { flex: 0 0 46px; width: 46px; height: 46px; object-fit: contain; }
.schedule-mini-fallback { display: grid; flex: 0 0 46px; place-items: center; width: 46px; height: 46px; font-size: 1.6rem; }
.schedule-opponent small, .schedule-opponent strong { display: block; }
.schedule-opponent small { color: #858b97; font-size: .66rem; font-weight: 800; text-transform: uppercase; }
.schedule-opponent strong { overflow: hidden; color: white; font-size: .94rem; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.schedule-when { display: grid; gap: 5px; }
.schedule-when time { color: white; font-weight: 800; text-transform: capitalize; }
.schedule-when span { color: #8f95a0; font-size: .8rem; }
.schedule-duty { display: grid; gap: 6px; }
.schedule-duty strong { color: #e7e9ec; font-size: .84rem; }
.schedule-status { display: grid; justify-items: center; gap: 4px; justify-self: end; min-width: 82px; padding: 9px 10px; color: #aeb3bd; background: #252b36; border-radius: 11px; font-size: .66rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.schedule-status strong { color: white; font-size: 1.15rem; letter-spacing: 0; }
.status-siguiente { color: white; background: var(--red); }
.status-reprogramado { color: #f2be68; background: rgba(204,130,18,.18); }

.section-standings { background: #eceae6; }
.standings-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.standings-scroll { max-width: 100%; overflow-x: auto; overscroll-behavior-x: contain; }
.standings-table { width: 100%; min-width: 830px; table-layout: fixed; border-collapse: separate; border-spacing: 0; font-variant-numeric: tabular-nums; }
.standings-table caption { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.standings-table th, .standings-table td { padding: 15px 12px; text-align: center; border-bottom: 1px solid var(--line); }
.standings-table thead th { color: var(--muted); background: #f7f7f5; font-size: .7rem; font-weight: 850; letter-spacing: .07em; }
.standings-table th:first-child { position: sticky; left: 0; z-index: 3; width: 210px; text-align: left; background: #f7f7f5; box-shadow: 9px 0 12px -12px rgba(9,11,16,.5); }
.standings-table tbody th:first-child { z-index: 2; color: var(--ink); background: var(--white); font-size: .84rem; letter-spacing: 0; text-transform: none; }
.standings-table tbody tr:last-child th, .standings-table tbody tr:last-child td { border-bottom: 0; }
.standings-table tbody tr:hover td, .standings-table tbody tr:hover th:first-child { background: #f6f5f1; }
.standings-table tbody tr.standings-cuervos td, .standings-table tbody tr.standings-cuervos th:first-child,
.standings-table tbody tr.standings-cuervos:hover td, .standings-table tbody tr.standings-cuervos:hover th:first-child { background: #fff0f1; }
.standings-table .standings-cuervos th:first-child { box-shadow: inset 4px 0 0 var(--red), 9px 0 12px -12px rgba(9,11,16,.5); }
.standings-identity { display: flex; align-items: center; gap: 8px; min-width: 0; }
.standings-rank { display: inline-grid; flex: 0 0 30px; place-items: center; width: 30px; height: 30px; color: var(--white); background: var(--night-2); border-radius: 8px; font-size: .75rem; font-weight: 900; }
.standings-cuervos .standings-rank { background: var(--red); }
.standings-logo { display: block; flex: 0 0 30px; width: 30px; height: 30px; object-fit: contain; }
.standings-team { min-width: 0; font-weight: 850; line-height: 1.2; }
.standings-points { font-weight: 900; }
.standings-note { margin: 14px 0 0; color: var(--muted); font-size: .76rem; line-height: 1.5; }
.standings-swipe { display: none; }

.leaders-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 24px; }
.leader-feature, .table-card, .ranking-card, .season-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.leader-feature { min-height: 350px; padding: 32px; background: var(--night); color: white; }
.leader-badge { display: inline-flex; align-items: center; gap: 8px; color: #f0b6bf; font-size: .74rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.leader-number { margin-top: 44px; color: var(--red); font-size: 5.5rem; font-weight: 900; line-height: .8; letter-spacing: -.08em; }
.leader-name { margin: 20px 0 6px; font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 850; letter-spacing: -.035em; }
.leader-detail { color: #aeb3bd; }
.table-card { overflow: hidden; box-shadow: none; }
.table-scroll { max-width: 100%; overflow-x: auto; overscroll-behavior-x: contain; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 18px 20px; text-align: right; border-bottom: 1px solid var(--line); white-space: nowrap; }
th:first-child, td:first-child { text-align: left; }
th:first-child, td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  min-width: 178px;
  background: var(--white);
  box-shadow: 9px 0 12px -12px rgba(9, 11, 16, .55);
}
th:first-child { z-index: 3; }
th { color: var(--muted); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
td:first-child { font-weight: 750; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: #f7f6f2; }
tbody tr:hover td:first-child { background: #f7f6f2; }
.discipline-cell { font-weight: 800; }
.card-icon { display: inline-block; width: .62em; height: .88em; margin-right: .38em; border-radius: 1px; vertical-align: -.06em; box-shadow: 0 0 0 1px rgba(0,0,0,.08); }
.player-name { vertical-align: middle; }
.position-badge { display: inline-flex; align-items: center; margin-left: .55rem; padding: .24rem .48rem; color: #fff; background: #101622; border-radius: 999px; font-size: .62rem; font-weight: 850; letter-spacing: .06em; line-height: 1; text-transform: uppercase; vertical-align: middle; }
.card-yellow { background: #f2cf17; }
.card-red { background: #d7263d; }

.section-dark { color: var(--white); background: var(--night); }
.section-dark .eyebrow { color: #ec7183; }
.segmented { display: flex; flex-wrap: wrap; padding: 4px; background: #20242d; border-radius: 999px; }
.segment { padding: 8px 15px; color: #aeb3bd; background: transparent; border: 0; border-radius: 999px; cursor: pointer; font-size: .78rem; font-weight: 800; }
.segment.active { color: white; background: var(--red); }
.history-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; }
.ranking-card { padding: 30px; color: var(--ink); box-shadow: none; }
.card-kicker { margin: 0 0 18px; color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.ranking-list { margin: 0; padding: 0; list-style: none; counter-reset: rank; }
.ranking-item { counter-increment: rank; display: grid; grid-template-columns: 32px 1fr auto; align-items: center; gap: 12px; padding: 15px 0; border-top: 1px solid var(--line); }
.ranking-item::before { content: counter(rank, decimal-leading-zero); color: #9a9ea7; font-size: .74rem; font-weight: 800; }
.ranking-name { font-weight: 800; }
.ranking-value { font-size: 1.25rem; font-weight: 900; }
.season-history { display: grid; gap: 12px; }
.season-card { display: grid; grid-template-columns: 1fr auto; gap: 22px; padding: 24px; color: var(--ink); box-shadow: none; }
.season-card.current { border-color: var(--red); }
.season-card h3 { margin: 0 0 6px; font-size: 1.25rem; }
.season-card p { margin: 0; color: var(--muted); font-size: .84rem; }
.season-card .season-discipline { display: flex; gap: 14px; margin-top: 10px; font-size: .76rem; font-weight: 800; }
.season-discipline span { display: inline-flex; align-items: center; }
.season-record { text-align: right; }
.season-record strong { display: block; font-size: 1.35rem; }
.season-record span { color: var(--muted); font-size: .75rem; }

.select-wrap { display: grid; gap: 7px; color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.select-wrap select { min-width: 190px; padding: 11px 36px 11px 13px; color: var(--ink); background: white; border: 1px solid var(--line); border-radius: 12px; }
.results-list { display: grid; gap: 10px; }
.result-row { display: grid; grid-template-columns: 110px 1fr auto 1fr 80px; align-items: center; gap: 18px; padding: 18px 20px; background: rgba(255,255,255,.72); border: 1px solid var(--line); border-radius: 16px; }
.result-date { color: var(--muted); font-size: .78rem; }
.result-team { font-weight: 800; }
.result-team.away { text-align: right; }
.result-score { display: flex; gap: 7px; font-size: 1.25rem; font-weight: 900; }
.result-pill { justify-self: end; min-width: 34px; padding: 6px 8px; color: white; border-radius: 8px; text-align: center; font-size: .74rem; font-weight: 900; }
.result-G { background: var(--green); }
.result-E { background: var(--amber); }
.result-P { background: var(--red); }
.empty-state { padding: 42px; color: var(--muted); text-align: center; border: 1px dashed var(--line); border-radius: var(--radius); }

footer { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 34px clamp(20px, 7vw, 110px); color: #aeb3bd; background: #050609; font-size: .78rem; }
.footer-brand { color: white; font-size: 1.25rem; font-weight: 950; letter-spacing: .07em; }
.footer-brand span { color: var(--red); }
.skeleton { color: #aeb3bd; }

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-side { justify-items: start; max-width: 620px; }
  .latest-card, .next-card, .rescheduled-card { max-width: 620px; }
  .metric-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .metric:nth-child(4n) { border-right: 0; }
  .metric:nth-child(-n+4) { border-bottom: 1px solid var(--line); }
  .leaders-layout, .history-layout { grid-template-columns: 1fr; }
  .schedule-feature { grid-template-columns: 1fr; }
  .schedule-versus { min-height: 210px; }
  .schedule-game { grid-template-columns: 70px 1fr 1fr 90px; }
  .schedule-duty { grid-column: 2 / 4; }
}

@media (max-width: 700px) {
  .site-header { min-height: 68px; }
  .nav-toggle { display: inline-flex; }
  .back-home { min-height: 34px; padding: 0 11px; font-size: .7rem; }
  .site-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px 20px 22px;
    background: #090b10;
    border-bottom: 1px solid #252932;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 0; }
  .hero { padding-top: 72px; }
  .hero h1 { font-size: clamp(3.1rem, 17vw, 5rem); }
  .league-lockup { align-items: flex-start; flex-direction: column; gap: 12px; }
  .league-logo { width: 68px; height: 50px; }
  .hero-side { justify-items: center; }
  .hero-crest { width: 140px; border-radius: 24px; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .segmented { border-radius: 16px; }
  .segment { flex: 1 1 auto; }
  .metric { padding: 23px 12px; }
  .metric:first-child { padding-left: 0; }
  .metric strong { font-size: clamp(1.4rem, 7vw, 2rem); }
  .metric span { font-size: .58rem; letter-spacing: .035em; }
  th, td { padding: 16px 14px; }
  th:first-child, td:first-child { min-width: 158px; }
  .standings-table { min-width: 830px; }
  .standings-table th, .standings-table td { padding: 13px 10px; }
  .standings-table th:first-child { width: 185px; }
  .standings-identity { gap: 6px; }
  .standings-rank { flex-basis: 26px; width: 26px; height: 26px; }
  .standings-logo { flex-basis: 26px; width: 26px; height: 26px; }
  .standings-team { font-size: .74rem; }
  .standings-swipe { display: inline; }
  .schedule-feature { min-height: 0; border-radius: 22px; }
  .schedule-feature-copy { padding: 28px 22px; }
  .schedule-feature h3 { margin-top: 22px; }
  .schedule-versus { min-height: 170px; padding: 28px 20px; }
  .schedule-feature-duty { align-items: flex-start; flex-direction: column; gap: 8px; }
  .schedule-feature-duty strong { text-align: left; }
  .schedule-game { grid-template-columns: 58px minmax(0, 1fr) 76px; gap: 12px; padding: 13px 12px; }
  .schedule-round { padding-right: 10px; }
  .schedule-round strong { font-size: 1.4rem; }
  .schedule-opponent { gap: 9px; }
  .schedule-opponent img, .schedule-mini-fallback { flex-basis: 38px; width: 38px; height: 38px; }
  .schedule-when { grid-column: 2; }
  .schedule-duty { grid-column: 2 / 4; }
  .schedule-status { grid-column: 3; grid-row: 1 / 3; min-width: 70px; }
  .result-row { grid-template-columns: 72px 1fr auto 1fr 36px; gap: 8px; padding: 15px 12px; }
  .result-date { font-size: .68rem; }
  .result-team { font-size: .82rem; }
  footer { align-items: flex-start; flex-direction: column; }
}

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