:root {
  --bg: #08090b;
  --bg-2: #0f1116;
  --bg-3: #151820;
  --bg-4: #1c202a;
  --bg-5: #242936;
  --line: rgba(255, 255, 255, 0.08);
  --line-hi: rgba(255, 255, 255, 0.16);
  --text: #eef1f5;
  --text-2: #97a0b3;
  --text-3: #616a7f;
  --accent: #c8f135;
  --accent-2: #9fce1d;
  --accent-dim: rgba(200, 241, 53, 0.12);
  --win: #38cb84;
  --loss: #ef6a6a;
  --caution: #f1ab39;
  --parlay: #8d7efe;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  --radius: 16px;
  --radius-lg: 22px;
  --ff: "DM Sans", "Segoe UI", sans-serif;
  --ff-display: "Syne", "DM Sans", sans-serif;
  --ff-mono: "DM Mono", "SFMono-Regular", monospace;
  --nav-h: 58px;
  --t: 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% -15%, rgba(200, 241, 53, 0.08), transparent 32%),
    radial-gradient(circle at 100% 15%, rgba(141, 126, 254, 0.08), transparent 20%),
    linear-gradient(180deg, #07080b 0%, #0a0d12 30%, #08090b 100%);
  color: var(--text);
  font-family: var(--ff);
  line-height: 1.6;
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
}

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

button {
  font: inherit;
}

.panel-block[hidden] {
  display: none !important;
}

.global-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--nav-h);
  background: rgba(8, 9, 11, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  transition: min-height 280ms var(--t), background 280ms var(--t), box-shadow 280ms var(--t);
}

.global-nav.is-scrolled {
  min-height: 50px;
  background: rgba(8, 9, 11, 0.94);
  box-shadow: 0 1px 32px rgba(0, 0, 0, 0.38);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  margin-right: auto;
  color: var(--text);
  text-decoration: none;
}

.nav-logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  transition: transform 280ms var(--t), opacity 280ms var(--t);
}

.global-nav.is-scrolled .nav-logo-img {
  transform: scale(0.92);
}

.nav-logo-fallback {
  display: none;
  font-family: var(--ff-display);
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-tabs {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 4px;
}

.tab-btn {
  height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--text-2);
  font-size: 13px;
  font-weight: 600;
  transition: color var(--t), background var(--t);
}

.tab-btn:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.tab-btn.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.09);
}

.nav-actions {
  margin-left: auto;
}

.nav-refresh {
  height: 34px;
  padding: 0 16px;
  border: 0;
  border-radius: 10px;
  background: var(--accent);
  color: #0b0c0f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform var(--t), box-shadow var(--t), background var(--t);
}

.nav-refresh:hover {
  transform: translateY(-2px);
  background: #d7ff4a;
  box-shadow: 0 10px 30px rgba(200, 241, 53, 0.25);
}

.ripple-btn {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  transform: scale(0);
  animation: ripple-expand 620ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  pointer-events: none;
}

@keyframes ripple-expand {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.nav-burger {
  display: none;
  margin-left: auto;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-burger span {
  width: 20px;
  height: 1.5px;
  margin: 0 auto;
  background: var(--text-2);
  transition: transform var(--t), opacity var(--t);
}

.nav-burger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-burger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-burger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-drawer {
  display: none;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px 14px;
  flex-direction: column;
  gap: 8px;
}

.nav-drawer .tab-btn,
.nav-drawer .nav-refresh {
  width: 100%;
  justify-content: center;
}

.nav-drawer.is-open {
  display: flex;
}

.page-main {
  width: 100%;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 88px 20px 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(13, 15, 21, 0.95), rgba(8, 9, 11, 0.98));
  text-align: center;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb-a {
  top: -180px;
  left: -80px;
  width: 520px;
  height: 420px;
  background: radial-gradient(circle, rgba(200, 241, 53, 0.12), transparent 68%);
  animation: orb-drift-a 14s ease-in-out infinite alternate;
}

.hero-orb-b {
  top: -120px;
  right: -60px;
  width: 420px;
  height: 360px;
  background: radial-gradient(circle, rgba(93, 129, 255, 0.1), transparent 72%);
  animation: orb-drift-b 18s ease-in-out infinite alternate;
}

.hero-orb-c {
  bottom: -80px;
  left: 36%;
  width: 360px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 70%);
  animation: orb-drift-c 20s ease-in-out infinite alternate;
}

@keyframes orb-drift-a {
  to { transform: translate(40px, 28px); }
}

@keyframes orb-drift-b {
  to { transform: translate(-34px, 32px); }
}

@keyframes orb-drift-c {
  to { transform: translate(-18px, -14px); }
}

.hero-glow {
  position: absolute;
  inset: -200px auto auto 50%;
  width: 920px;
  height: 720px;
  transform: translateX(-50%);
  background: radial-gradient(circle at 50% 25%, rgba(200, 241, 53, 0.1), transparent 62%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 64% at 50% 0%, #000 0%, transparent 80%);
  pointer-events: none;
}

.hero-body,
.league-strip,
.band-inner,
.section-inner,
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.hero-body {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-bottom: 64px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  padding: 5px 14px;
  border: 1px solid rgba(200, 241, 53, 0.25);
  border-radius: 999px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  animation: pulse-dot 2.2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.8); }
}

.hero-headline {
  margin: 0 0 18px;
  font-family: var(--ff-display);
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.hero-headline em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  max-width: 560px;
  margin: 0 auto 30px;
  color: var(--text-2);
  font-size: 17px;
}

.hero-cta-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero-kpi {
  min-width: 182px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  text-align: left;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}

.hero-kpi:hover {
  transform: translateY(-2px);
  border-color: var(--line-hi);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.hero-kpi-label {
  display: block;
  margin-bottom: 2px;
  color: var(--text-3);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-kpi-value {
  display: block;
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.status-pill {
  display: inline-block;
  margin: 0;
  color: var(--text-3);
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.league-strip {
  position: relative;
  z-index: 1;
  padding: 22px 20px 34px;
  border-top: 1px solid var(--line);
}

.league-strip-label {
  margin: 0 0 16px;
  text-align: center;
  color: var(--text-3);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.league-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.league-tile {
  width: 90px;
  padding: 14px 0 12px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: linear-gradient(180deg, var(--bg-3), var(--bg-4));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  transition: transform var(--t), border-color var(--t), background var(--t);
}

.league-tile:hover {
  transform: translateY(-2px);
  border-color: var(--line-hi);
  background: linear-gradient(180deg, var(--bg-4), var(--bg-5));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.league-tile img {
  width: 44px;
  height: 44px;
}

.league-tile span {
  color: var(--text-3);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats-band {
  border-bottom: 1px solid var(--line);
}

.band-inner {
  display: flex;
  align-items: stretch;
  padding: 0 20px;
}

.band-stat {
  flex: 1;
  padding: 30px 34px;
}

.band-label {
  margin: 0 0 8px;
  color: var(--text-3);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.band-value {
  margin: 0;
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.band-divider {
  width: 1px;
  background: var(--line);
  margin: 24px 0;
}

.content-section {
  border-bottom: 1px solid var(--line);
}

.content-section:nth-of-type(odd) {
  background: rgba(255, 255, 255, 0.01);
}

.section-inner {
  padding: 58px 20px;
}

.hero-body,
.league-strip,
.band-inner,
.section-head,
.perf-grid,
.site-footer .footer-inner {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

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

.league-strip.is-visible {
  transition-delay: 90ms;
}

.band-inner.is-visible {
  transition-delay: 70ms;
}

.perf-grid.is-visible,
.site-footer .footer-inner.is-visible {
  transition-delay: 110ms;
}

#latestContainer,
#historyContainer {
  opacity: 1;
  transform: none;
}

.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.section-title {
  margin: 0;
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section-sub {
  margin: 4px 0 0;
  color: var(--text-3);
  font-size: 14px;
}

.btn-back {
  flex-shrink: 0;
  height: 36px;
  padding: 0 16px;
  border: 1px solid var(--line-hi);
  border-radius: 10px;
  background: transparent;
  color: var(--text-2);
  font-size: 13px;
  font-weight: 600;
}

.btn-back:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.24);
}

.perf-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.perf-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--bg-3), var(--bg-4));
  box-shadow: var(--shadow);
}

.perf-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
}

.perf-card:nth-child(1)::before { background: var(--win); }
.perf-card:nth-child(2)::before { background: var(--accent); }
.perf-card:nth-child(3)::before { background: var(--caution); }
.perf-card:nth-child(4)::before { background: var(--parlay); }
.perf-card:nth-child(5)::before { background: var(--parlay); }

.perf-label {
  margin: 0 0 14px;
  color: var(--text-3);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.perf-rate {
  margin: 0 0 6px;
  font-family: var(--ff-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.perf-record {
  margin: 0;
  color: var(--text-3);
  font-family: var(--ff-mono);
  font-size: 12px;
}

.empty,
.empty-state {
  padding: 42px 0;
  color: var(--text-3);
  font-size: 15px;
}

.latest-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--bg-3), var(--bg-4));
  box-shadow: var(--shadow);
  position: relative;
}

.latest-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 241, 53, 0.18), transparent);
}

.latest-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(200, 241, 53, 0.06), rgba(93, 129, 255, 0.03) 60%, transparent);
  color: var(--text-2);
  font-size: 13px;
}

.latest-meta strong {
  color: var(--text);
}

.latest-body {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.summary-box {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(200, 241, 53, 0.06), rgba(255, 255, 255, 0.02));
}

.summary-box p {
  margin: 0;
  color: var(--text-2);
}

.pick-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.pick-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, var(--bg-4), var(--bg-5));
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}

.pick-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-hi);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.22);
}

.pick-card-grid-model {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.pick-card-model {
  min-height: 100%;
}

.pick-card-details {
  display: grid;
  gap: 8px;
}

.pick-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.pick-card-matchup {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.pick-card-chip {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 9px;
  border-radius: 999px;
  border: 1px solid rgba(200, 241, 53, 0.22);
  background: var(--accent-dim);
  color: var(--accent);
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.pick-card-pick {
  margin: 0 0 8px;
  color: var(--text-2);
  font-size: 13px;
}

.pick-card-pick span {
  color: var(--text);
  font-family: var(--ff-mono);
}

.pick-card-reason {
  margin: 0;
  color: var(--text-3);
  font-size: 12px;
  line-height: 1.55;
}

.sections-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.section-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-4);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.section-wide {
  grid-column: span 2;
}

.section-card h3 {
  margin: 0;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-2);
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 10px;
  list-style: none;
}

.pick-row {
  display: grid;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-5);
  transition: transform var(--t), border-color var(--t), background var(--t);
}

.pick-row:hover {
  transform: translateY(-2px);
  border-color: var(--line-hi);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), var(--bg-5));
}

.pick-main-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.pick-main {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.pick-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 9px;
  border: 1px solid rgba(200, 241, 53, 0.22);
  border-radius: 999px;
  background: var(--accent-dim);
  color: var(--accent);
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.reason {
  color: var(--text-3);
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}

.reason strong {
  color: var(--text-2);
}

.raw {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-4);
  color: var(--text-2);
  font-family: var(--ff-mono);
  font-size: 12px;
  line-height: 1.65;
  white-space: pre-wrap;
}

.history-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}

.history-item {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--bg-3), var(--bg-4));
  color: var(--text);
  text-align: left;
  scroll-snap-align: start;
  transition: transform var(--t), border-color var(--t), background var(--t);
}

.history-item:hover {
  transform: translateY(-2px);
  border-color: var(--line-hi);
  background: linear-gradient(180deg, var(--bg-4), var(--bg-5));
}

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  animation: fade-up 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--fd, 0ms);
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.history-item.is-active {
  border-color: rgba(200, 241, 53, 0.28);
  background: linear-gradient(180deg, rgba(200, 241, 53, 0.08), var(--bg-4));
}

.history-item span:first-child {
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.history-item span:last-child {
  margin-top: auto;
  color: var(--text-3);
  font-family: var(--ff-mono);
  font-size: 11px;
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 20px 36px;
  color: var(--text-3);
}

.footer-mark {
  margin: 0 0 4px;
  color: var(--text);
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-copy,
.footer-note {
  margin: 0;
  max-width: 42ch;
  font-size: 13px;
}

@media (max-width: 960px) {
  .nav-logo-img {
    height: 40px;
  }

  .nav-tabs {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .band-inner {
    flex-direction: column;
  }

  .band-divider {
    width: auto;
    height: 1px;
    margin: 0 24px;
  }

  .perf-grid,
  .sections-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .nav-logo-img {
    height: 36px;
  }

  .hero-section {
    padding-top: 72px;
  }

  .hero-headline {
    font-size: clamp(42px, 13vw, 72px);
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-kpi {
    min-width: 0;
    width: 100%;
  }

  .perf-grid,
  .sections-grid {
    grid-template-columns: 1fr;
  }

  .section-wide {
    grid-column: span 1;
  }

  .section-head {
    flex-direction: column;
  }

  .pick-row {
    grid-template-columns: 1fr;
  }

  .pick-meta {
    align-items: flex-start;
  }

  .reason {
    text-align: left;
    max-width: none;
  }

  .history-item {
    flex-basis: 86vw;
  }
}
