/* ============================================================
   home.css — MLB Homepage
   All styles scoped to .home-* classes.
   Relies on CSS variables from theme.css (loaded via nav.css).
   ============================================================ */

/* ── Reset / base ── */
.home-page {
  min-height: 100vh;
  margin: 0;
}

/* ── Layout wrapper ── */
.home-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Section spacing ── */
.home-section {
  padding: 80px 0;
}

.home-divider {
  border: none;
  border-top: 1px solid var(--border-color-subtle);
  margin: 0 48px;
}

/* ── Section label (unused after redesign, kept for other pages) ── */
.home-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 10px;
}

/* ================================================================
   STRIPE BANNER
   ================================================================ */
.home-stripe-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 44px;
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 500;
}

.home-stripe-banner--success {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  border-bottom: 1px solid rgba(34, 197, 94, 0.2);
}

.home-stripe-banner--warning {
  background: rgba(234, 179, 8, 0.12);
  color: #facc15;
  border-bottom: 1px solid rgba(234, 179, 8, 0.2);
}

.home-stripe-banner__close {
  position: absolute;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  color: inherit;
  opacity: 0.7;
  padding: 0 4px;
}

.home-stripe-banner__close:hover {
  opacity: 1;
}

/* ================================================================
   HERO
   ================================================================ */

/* Background Orbs & Mesh */
.home-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 800px;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse at top, rgba(31, 111, 235, 0.08) 0%, transparent 60%);
}

.home-hero-bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: floatOrb 15s infinite alternate ease-in-out;
}

.home-hero-bg__orb--1 {
  top: -100px;
  left: 10%;
  width: 500px;
  height: 500px;
  background: rgba(31, 111, 235, 0.15);
}

.home-hero-bg__orb--2 {
  top: 20%;
  right: -50px;
  width: 400px;
  height: 400px;
  background: rgba(56, 189, 248, 0.1);
  animation-delay: -5s;
}

@keyframes floatOrb {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(30px) scale(1.1); }
}

.home-hero {
  position: relative;
  padding: 96px 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
  z-index: 1;
}

@media (min-width: 961px) and (max-width: 1400px) {
  .home-hero {
    padding-top: 72px;
    gap: 52px;
  }

  .home-hero__heading {
    font-size: clamp(48px, 5vw, 72px);
    margin-bottom: 20px;
  }

  .home-hero__sub {
    margin-bottom: 32px;
  }
}

/* Hero left */
.home-hero__left {
  animation: heroFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.home-hero__brand-mark,
.home-hero__mobile-eyebrow,
.home-hero__heading-mobile,
.home-hero__sub-mobile {
  display: none;
}

.home-hero__brand-mark {
  margin-bottom: 22px;
  display: none;
  align-items: center;
  line-height: 0;
}

.home-hero__brand-logo {
  width: auto;
  height: 56px;
  display: none;
}

.home-hero__brand-logo--dark {
  display: block;
}

html[data-theme='light'] .home-hero__brand-logo--dark {
  display: none;
}

html[data-theme='light'] .home-hero__brand-logo--light {
  display: block;
}

.home-hero__mobile-eyebrow {
  margin-bottom: 16px;
  color: #94b6ff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes heroFadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(31, 111, 235, 0.1);
  border: 1px solid rgba(31, 111, 235, 0.25);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 700;
  color: #58a6ff;
  margin-bottom: 24px;
  box-shadow: 0 0 15px rgba(31, 111, 235, 0.15);
}

.home-hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  background: #58a6ff;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px #58a6ff;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.home-hero__heading {
  font-family: 'Barlow Condensed', var(--font-headings), sans-serif;
  font-size: clamp(52px, 5.5vw, 82px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #a5c8ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 24px rgba(31, 111, 235, 0.15);
}

.home-hero__sub {
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 440px;
}

.home-hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.home-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-blue);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Outfit', var(--font-headings), sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.home-btn-primary--glow {
  box-shadow: 0 8px 24px rgba(31, 111, 235, 0.4);
}

.home-btn-primary:hover {
  background: var(--accent-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(31, 111, 235, 0.5);
}

.home-btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-20deg);
  animation: buttonShine 4s infinite;
}

@keyframes buttonShine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

.home-btn-ghost {
  display: inline-flex;
  align-items: center;
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

.home-btn-ghost:hover {
  color: #fff;
}

/* White button for dark CTA section */
.home-btn-primary--white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #060b14;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Outfit', var(--font-headings), sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s;
}

.home-btn-primary--white:hover {
  opacity: 0.88;
}

/* Right: product-proof composition */
.home-hero__visual {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroFadeInRight 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  opacity: 0;
}

@keyframes heroFadeInRight {
  0% { opacity: 0; transform: translateX(30px); }
  100% { opacity: 1; transform: translateX(0); }
}

.home-hero__scene {
  position: relative;
  width: min(100%, 620px);
  min-height: 500px;
}

.home-hero__scene::before {
  content: '';
  position: absolute;
  inset: 10% 12%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(39, 112, 234, 0.22), transparent 58%),
    radial-gradient(circle at 30% 72%, rgba(94, 234, 212, 0.12), transparent 48%);
  filter: blur(22px);
  opacity: 0.9;
}

.home-hero__visual-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(88, 166, 255, 0.11);
  pointer-events: none;
}

.home-hero__visual-orbit--outer {
  width: 104%;
  height: 104%;
  max-width: 620px;
  max-height: 620px;
  opacity: 0.38;
}

.home-hero__visual-orbit--inner {
  width: 82%;
  height: 82%;
  max-width: 470px;
  max-height: 470px;
  border-color: rgba(94, 234, 212, 0.1);
  opacity: 0.52;
}

.home-hero-card {
  position: absolute;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid rgba(126, 152, 196, 0.12);
  background:
    linear-gradient(180deg, rgba(15, 22, 35, 0.96), rgba(8, 12, 22, 0.98));
  box-shadow:
    0 26px 60px rgba(2, 6, 18, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.home-hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(53, 118, 255, 0.16), transparent 42%),
    linear-gradient(315deg, rgba(94, 234, 212, 0.08), transparent 34%);
  pointer-events: none;
}

.home-hero-card--player {
  top: 12px;
  right: 12px;
  width: min(100%, 388px);
  border-radius: 28px;
  padding: 22px;
  z-index: 3;
}

.home-hero-card--matchup {
  left: 0;
  bottom: 42px;
  width: min(100%, 320px);
  border-radius: 24px;
  padding: 18px;
  z-index: 2;
}

.home-hero-card--props {
  right: 28px;
  bottom: 0;
  width: min(100%, 272px);
  border-radius: 22px;
  padding: 16px;
  z-index: 4;
}

.home-hero-card__kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(41, 78, 142, 0.22);
  color: #9fbfff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-hero-card__player-head,
.home-hero-card__trend-block,
.home-hero-card__stats,
.home-hero-card__scoreline,
.home-hero-card__matchup-meta,
.home-hero-card__pitchers,
.home-hero-card__prop-top,
.home-hero-card__sparkline,
.home-hero-card__prop-pill {
  position: relative;
  z-index: 1;
}

.home-hero-card__player-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.home-hero-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(31, 111, 235, 0.22), rgba(9, 13, 22, 0.9));
  border: 1px solid rgba(148, 183, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-hero-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-card__avatar-fallback {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: #dbe7ff;
  font-family: 'Barlow Condensed', var(--font-headings), sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.home-hero-card__identity {
  min-width: 0;
}

.home-hero-card__name {
  color: #f4f7ff;
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
}

.home-hero-card__meta {
  margin-top: 6px;
  color: #98a8c4;
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 13px;
  line-height: 1.4;
}

.home-hero-card__flag {
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(94, 234, 212, 0.09);
  color: #8fe9d8;
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.home-hero-card__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.home-hero-card__stat {
  padding: 12px 10px;
  border-radius: 16px;
  background: rgba(12, 18, 30, 0.72);
  border: 1px solid rgba(130, 153, 198, 0.1);
}

.home-hero-card__stat-value {
  display: block;
  color: #eef4ff;
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
}

.home-hero-card__stat-label {
  display: block;
  margin-top: 4px;
  color: #7f92b5;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
}

.home-hero-card__trend-block {
  padding: 16px;
  border-radius: 18px;
  background: rgba(8, 14, 24, 0.78);
  border: 1px solid rgba(130, 153, 198, 0.1);
}

.home-hero-card__trend-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.home-hero-card__trend-title {
  color: #edf4ff;
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.home-hero-card__trend-sample {
  color: #86a3d8;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-align: right;
}

.home-hero-card__trend-list {
  display: grid;
  gap: 10px;
}

.home-hero-card__trend-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
  color: #aebddb;
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 13px;
}

.home-hero-card__trend-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.home-hero-card__trend-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2f7cf6, #79d8ff);
}

.home-hero-card__scoreline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.home-hero-card__team-pill {
  padding: 12px 14px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(11, 16, 28, 0.9), rgba(10, 14, 24, 0.95));
  border: 1px solid color-mix(in srgb, var(--team-color) 36%, rgba(255, 255, 255, 0.1));
}

.home-hero-card__team-pill strong,
.home-hero-card__team-pill span {
  display: block;
}

.home-hero-card__team-pill strong {
  color: #f6f8ff;
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.home-hero-card__team-pill span {
  margin-top: 3px;
  color: #9eb1d1;
  font-size: 12px;
}

.home-hero-card__at {
  color: #7b8cb0;
  font-family: 'Barlow Condensed', var(--font-headings), sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.home-hero-card__matchup-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.home-hero-card__matchup-meta span,
.home-hero-card__prop-pill {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #92a6ca;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
}

.home-hero-card__pitchers {
  display: grid;
  gap: 10px;
}

.home-hero-card__pitcher {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(11, 17, 28, 0.82);
  border: 1px solid color-mix(in srgb, var(--team-color) 20%, rgba(255, 255, 255, 0.08));
}

.home-hero-card__pitcher-top,
.home-hero-card__pitcher-line,
.home-hero-card__prop-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.home-hero-card__pitcher-badge {
  padding: 4px 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--team-color) 28%, rgba(255, 255, 255, 0.06));
  color: #f3f7ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.home-hero-card__pitcher-hand,
.home-hero-card__pitcher-line,
.home-hero-card__prop-meta {
  color: #8ea1c3;
  font-size: 12px;
}

.home-hero-card__pitcher-name,
.home-hero-card__prop-name {
  margin: 8px 0 4px;
  color: #f4f7ff;
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.home-hero-card__prop-rate {
  color: #90e9db;
  font-family: 'Barlow Condensed', var(--font-headings), sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.home-hero-card__prop-pill {
  display: inline-flex;
  margin: 12px 0 14px;
}

.home-hero-card__sparkline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.home-hero-card__spark {
  padding: 10px 6px 8px;
  border-radius: 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.home-hero-card__spark--hit {
  background: rgba(50, 132, 255, 0.18);
  border-color: rgba(80, 169, 255, 0.22);
}

.home-hero-card__spark--miss {
  background: rgba(255, 255, 255, 0.03);
}

.home-hero-card__spark em,
.home-hero-card__spark small {
  display: block;
  font-style: normal;
}

.home-hero-card__spark em {
  color: #eef4ff;
  font-size: 14px;
  font-weight: 700;
}

.home-hero-card__spark small {
  margin-top: 4px;
  color: #7f94ba;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.home-hero-mobile {
  display: none;
}

.home-hero-mobile__rail {
  position: relative;
  margin: 0 -4px;
}

.home-hero-mobile__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(100% - 8px);
  gap: 12px;
  overflow-x: auto;
  padding: 0 4px 8px;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.home-hero-mobile__track::-webkit-scrollbar {
  display: none;
}

.home-hero-mobile__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
}

.home-hero-mobile__hint {
  color: #7f94ba;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hero-mobile__dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.home-hero-mobile__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(126, 152, 196, 0.26);
  cursor: pointer;
  transition: width 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.home-hero-mobile__dot--active {
  width: 22px;
  background: linear-gradient(90deg, #2f7cff, #6eddf7);
  transform: translateZ(0);
}

.home-hero-mobile-card {
  position: relative;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(126, 152, 196, 0.14);
  background:
    linear-gradient(180deg, rgba(15, 22, 35, 0.97), rgba(8, 12, 22, 0.99));
  box-shadow:
    0 24px 48px rgba(2, 6, 18, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 18px;
}

.home-hero-mobile-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(53, 118, 255, 0.18), transparent 36%),
    linear-gradient(135deg, rgba(53, 118, 255, 0.12), transparent 44%),
    linear-gradient(315deg, rgba(94, 234, 212, 0.08), transparent 30%);
  pointer-events: none;
}

.home-hero-mobile-card > * {
  position: relative;
  z-index: 1;
}

.home-hero-mobile-card__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(41, 78, 142, 0.22);
  color: #9fbfff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.home-hero-mobile-card__player-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.home-hero-mobile-card__avatar {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(31, 111, 235, 0.22), rgba(9, 13, 22, 0.9));
  border: 1px solid rgba(148, 183, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-hero-mobile-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-mobile-card__avatar-fallback {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: #dbe7ff;
  font-family: 'Barlow Condensed', var(--font-headings), sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.home-hero-mobile-card__identity {
  min-width: 0;
}

.home-hero-mobile-card__title {
  color: #f4f7ff;
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15;
}

.home-hero-mobile-card__meta {
  margin-top: 4px;
  color: #98a8c4;
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 12px;
  line-height: 1.45;
}

.home-hero-mobile-card__flag {
  grid-column: 1 / -1;
  justify-self: flex-start;
  padding: 7px 10px;
  border-radius: 12px;
  background: rgba(94, 234, 212, 0.09);
  color: #8fe9d8;
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 12px;
  font-weight: 600;
}

.home-hero-mobile-card__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.home-hero-mobile-card__stat {
  padding: 12px 10px;
  border-radius: 16px;
  background: rgba(12, 18, 30, 0.74);
  border: 1px solid rgba(130, 153, 198, 0.1);
}

.home-hero-mobile-card__stat-value {
  display: block;
  color: #eef4ff;
  font-family: 'Barlow Condensed', var(--font-headings), sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 0.95;
}

.home-hero-mobile-card__stat-label {
  display: block;
  margin-top: 6px;
  color: #84a2cf;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hero-mobile-card__section {
  padding: 14px;
  border-radius: 18px;
  background: rgba(10, 15, 26, 0.78);
  border: 1px solid rgba(130, 153, 198, 0.08);
}

.home-hero-mobile-card__section-top,
.home-hero-mobile-card__trend-top,
.home-hero-mobile-card__prop-top,
.home-hero-mobile-card__pitcher-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.home-hero-mobile-card__section-top {
  margin-bottom: 12px;
  color: #cfd9ee;
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 12px;
  line-height: 1.45;
}

.home-hero-mobile-card__section-top span:last-child {
  color: #8ba6d3;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-align: right;
}

.home-hero-mobile-card__trend + .home-hero-mobile-card__trend {
  margin-top: 12px;
}

.home-hero-mobile-card__trend-top {
  color: #d7e1f4;
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 12px;
  margin-bottom: 8px;
}

.home-hero-mobile-card__trend-top span:last-child {
  color: #96b5ff;
  font-weight: 600;
}

.home-hero-mobile-card__trend-bar {
  height: 7px;
  border-radius: 999px;
  background: rgba(84, 101, 132, 0.22);
  overflow: hidden;
}

.home-hero-mobile-card__trend-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2f7cff, #7cdcf7);
}

.home-hero-mobile-card__scoreline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.home-hero-mobile-card__team {
  padding: 12px 10px;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--team-color) 50%, rgba(255, 255, 255, 0.08));
  background: color-mix(in srgb, var(--team-color) 12%, rgba(10, 15, 26, 0.92));
  display: grid;
  gap: 4px;
}

.home-hero-mobile-card__team strong,
.home-hero-mobile-card__team span {
  display: block;
}

.home-hero-mobile-card__team strong {
  color: #f5f8ff;
  font-family: 'Barlow Condensed', var(--font-headings), sans-serif;
  font-size: 28px;
  line-height: 0.95;
}

.home-hero-mobile-card__team span {
  color: #b8c8e5;
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 12px;
}

.home-hero-mobile-card__at {
  color: #95a3bc;
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
}

.home-hero-mobile-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.home-hero-mobile-card__chips span,
.home-hero-mobile-card__prop-pill {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(130, 153, 198, 0.1);
  color: #bfd0ef;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.home-hero-mobile-card__pitchers {
  display: grid;
  gap: 10px;
}

.home-hero-mobile-card__pitcher {
  padding: 14px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--team-color) 8%, rgba(10, 15, 26, 0.88));
  border: 1px solid color-mix(in srgb, var(--team-color) 34%, rgba(255, 255, 255, 0.08));
  text-align: left;
}

.home-hero-mobile-card__pitcher-top {
  margin-bottom: 8px;
  color: #aec2e5;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-hero-mobile-card__pitcher-badge {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(12, 18, 30, 0.78);
  color: #f2f6ff;
}

.home-hero-mobile-card__pitcher-name {
  color: #f4f7ff;
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  text-align: left;
}

.home-hero-mobile-card__pitcher-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: #9fb2d3;
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 12px;
  justify-content: flex-start;
  text-align: left;
}

.home-hero-mobile-card__prop-top {
  margin-bottom: 14px;
  align-items: flex-start;
}

.home-hero-mobile-card__rate {
  color: #93d8cf;
  font-family: 'Barlow Condensed', var(--font-headings), sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 0.9;
}

.home-hero-mobile-card__sparkline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.home-hero-mobile-card__spark {
  min-width: 0;
  padding: 10px 8px;
  border-radius: 14px;
  text-align: left;
  background: rgba(10, 15, 26, 0.78);
  border: 1px solid rgba(130, 153, 198, 0.08);
}

.home-hero-mobile-card__spark--hit {
  background: rgba(47, 124, 255, 0.14);
  border-color: rgba(47, 124, 255, 0.18);
}

.home-hero-mobile-card__spark--miss {
  background: rgba(148, 163, 184, 0.08);
}

.home-hero-mobile-card__spark em,
.home-hero-mobile-card__spark small {
  display: block;
  font-style: normal;
}

.home-hero-mobile-card__spark em {
  color: #f2f7ff;
  font-family: 'Barlow Condensed', var(--font-headings), sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.home-hero-mobile-card__spark small {
  margin-top: 4px;
  color: #8da0c1;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
}

/* ================================================================
   TOOL SHOWCASE
   ================================================================ */
.home-showcase {
  padding: 24px 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.home-showcase__header {
  text-align: left;
  margin: 18px 0 30px;
  max-width: 700px;
}

.home-showcase__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(31, 111, 235, 0.1);
  border: 1px solid rgba(88, 166, 255, 0.16);
  color: #92b6ff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-showcase__heading {
  font-family: 'Barlow Condensed', var(--font-headings), sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text-headlines);
  letter-spacing: -0.022em;
  line-height: 0.98;
  margin: 0;
}

.home-showcase__sub {
  max-width: 640px;
  margin: 14px 0 0;
  color: var(--text-secondary);
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

/* Two-column container */
.home-showcase__panel {
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
  border: 1px solid var(--border-color-subtle);
  border-radius: 16px;
  overflow: hidden;
  min-height: 460px;
  background: var(--card-bg);
}

/* Tool list (left column) */
.home-tool-list {
  border-right: 1px solid var(--border-color-subtle);
  display: flex;
  flex-direction: column;
}

.home-tool-item {
  padding: 20px 20px;
  cursor: pointer;
  border-bottom: 1px solid var(--border-color-subtle);
  position: relative;
  transition: background 0.15s;
}

.home-tool-item:last-child {
  border-bottom: none;
}

.home-tool-item:hover:not(.home-tool-item--active) {
  background: rgba(255, 255, 255, 0.025);
}

.home-tool-item--active {
  background: rgba(31, 111, 235, 0.07);
}

.home-tool-item__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.home-tool-item__icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.8;
  fill: none;
}

.home-tool-item__icon--search {
  background: rgba(31, 111, 235, 0.12);
}

.home-tool-item__icon--search svg {
  stroke: #388bfd;
}

.home-tool-item__icon--matchup {
  background: rgba(56, 139, 253, 0.1);
}

.home-tool-item__icon--matchup svg {
  stroke: #388bfd;
}

.home-tool-item__icon--board {
  background: rgba(94, 234, 212, 0.08);
}

.home-tool-item__icon--board svg {
  stroke: #5eead4;
}

.home-tool-item__name {
  font-family: var(--font-headings);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-headlines);
  margin-bottom: 4px;
}

.home-tool-item--active .home-tool-item__name {
  color: var(--accent-blue-hover);
}

.home-tool-item__desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.home-tool-item__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-blue-hover);
  text-decoration: none;
  margin-top: 10px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.15s, transform 0.15s;
}

.home-tool-item--active .home-tool-item__link {
  opacity: 1;
  transform: translateX(0);
}

/* Preview pane (right column) */
.home-preview-pane {
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
}

.home-preview-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.home-preview-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-color-subtle);
}

/* Tool panels */
.home-tool-panel {
  display: none;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.home-tool-panel--active {
  display: flex;
}

/* Player search panel */
.home-ps-preview {
  --home-ps-surface: #11161f;
  --home-ps-surface-alt: #161c26;
  --home-ps-line: rgba(120, 136, 161, 0.22);
  --home-ps-line-soft: rgba(120, 136, 161, 0.12);
  --home-ps-text: #edf2fb;
  --home-ps-muted: #93a0b4;
  --home-ps-faint: #6c7789;
  --home-ps-accent: #4f8df7;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 32%),
    linear-gradient(180deg, rgba(79, 141, 247, 0.025), transparent 24%),
    var(--home-ps-surface);
  border: 1px solid var(--home-ps-line);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 18px 36px rgba(5, 10, 18, 0.22);
}

.home-ps-preview__header {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 12px;
  align-items: stretch;
}

.home-ps-preview__identity {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--home-ps-line);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent),
    var(--home-ps-surface-alt);
}

.home-ps-preview__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
}

.home-ps-player-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.home-ps-avatar {
  width: 58px;
  height: 58px;
  background: linear-gradient(180deg, rgba(79, 141, 247, 0.2), rgba(79, 141, 247, 0.1));
  border: 1px solid rgba(79, 141, 247, 0.18);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.home-ps-avatar__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.52) translateY(-8%);
  transform-origin: center top;
  display: block;
}

.home-ps-avatar svg {
  width: 28px;
  height: 28px;
  stroke: var(--home-ps-accent);
  stroke-width: 1.5;
  fill: none;
}

.home-ps-player-name {
  font-family: 'Outfit', var(--font-headings), sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--home-ps-text);
  line-height: 1.1;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}

.home-ps-player-meta {
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 14px;
  color: var(--home-ps-muted);
  letter-spacing: -0.01em;
}

.home-ps-season-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(79, 141, 247, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(79, 141, 247, 0.06), rgba(79, 141, 247, 0.015)),
    var(--home-ps-surface-alt);
}

.home-ps-season-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 64px;
}

.home-ps-season-stat__value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  color: var(--home-ps-text);
  letter-spacing: -0.6px;
  margin-bottom: 4px;
}

.home-ps-season-stat__label {
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--home-ps-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-ps-last5 {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 16px;
  padding: 12px 16px;
  border: 1px solid var(--home-ps-line);
  border-radius: 16px;
  background: var(--home-ps-surface-alt);
  position: relative;
  overflow: hidden;
  align-items: center;
}

.home-ps-last5::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 220px;
  height: 2px;
  background: linear-gradient(90deg, var(--home-ps-accent), transparent);
  opacity: 0.65;
}

.home-ps-last5__label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 10px;
  border-right: 1px solid var(--home-ps-line);
}

.home-ps-last5__title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 20px;
  font-weight: 700;
  color: var(--home-ps-text);
  line-height: 1;
}

.home-ps-last5__sub {
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 11px;
  color: var(--home-ps-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.home-ps-last5__stats {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 8px;
  align-items: center;
}

.home-ps-last5__stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home-ps-last5__key {
  display: block;
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--home-ps-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.home-ps-last5__val {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--home-ps-text);
}

.home-ps-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent),
    var(--home-ps-surface-alt);
  border: 1px solid var(--home-ps-line);
  border-radius: 16px;
  min-height: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.home-ps-panel__title {
  font-family: 'Outfit', var(--font-headings), sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--home-ps-text);
  letter-spacing: -0.02em;
}

.home-ps-mini-table {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.home-ps-mini-table__head,
.home-ps-mini-table__row {
  display: grid;
  align-items: center;
  column-gap: 10px;
}

.home-ps-mini-table--pa .home-ps-mini-table__head,
.home-ps-mini-table--pa .home-ps-mini-table__row {
  grid-template-columns: 1fr repeat(3, minmax(0, 1fr));
}

.home-ps-mini-table__head {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--home-ps-line-soft);
}

.home-ps-mini-table__head span {
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 9px;
  font-weight: 600;
  color: var(--home-ps-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}

.home-ps-mini-table__row {
  padding: 3px 0;
}

.home-ps-mini-table__row span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: #dfe7f5;
  font-variant-numeric: tabular-nums;
  text-align: center;
  border-radius: 10px;
  padding: 4px 6px;
}

.home-ps-mini-table__row span:first-child {
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--home-ps-text);
  letter-spacing: -0.01em;
  text-align: center;
  padding-left: 0;
  padding-right: 0;
  background: transparent;
  border-radius: 0;
}

.home-ps-mini-table__row--pa .home-ps-mini-table__val--best {
  background: rgba(79, 141, 247, 0.12);
  color: #aecdff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

html[data-theme='light'] .home-ps-mini-table__row--pa .home-ps-mini-table__val--best {
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
}

.home-ps-correlation-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.home-ps-correlation-trigger {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--home-ps-line-soft);
}

.home-ps-correlation-trigger__prop {
  font-family: 'Outfit', var(--font-headings), sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--home-ps-text);
  letter-spacing: -0.02em;
}

.home-ps-correlation-trigger__sample {
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: var(--home-ps-muted);
  white-space: nowrap;
}

.home-ps-correlation-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 4px 10px;
  padding: 8px 0;
}

.home-ps-correlation-item + .home-ps-correlation-item {
  border-top: 1px solid var(--home-ps-line-soft);
}

.home-ps-correlation-item:first-child .home-ps-correlation-item__top span:first-child,
.home-ps-correlation-item:first-child .home-ps-correlation-item__top span:last-child {
  color: var(--home-ps-text);
}

.home-ps-correlation-item__top {
  display: contents;
}

.home-ps-correlation-item__top span:first-child {
  grid-column: 1;
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 12px;
  font-weight: 650;
  color: #cfd8e8;
  line-height: 1.25;
}

.home-ps-correlation-item__top span:last-child {
  grid-column: 2;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 800;
  color: var(--home-ps-muted);
  line-height: 1;
}

.home-ps-correlation-item__bar {
  grid-column: 1 / -1;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  overflow: hidden;
}

.home-ps-correlation-item__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8fc1ff, #4f8df7);
}

html[data-theme='light'] .home-ps-preview {
  --home-ps-surface: #f8fafc;
  --home-ps-surface-alt: #ffffff;
  --home-ps-line: rgba(15, 23, 42, 0.1);
  --home-ps-line-soft: rgba(15, 23, 42, 0.08);
  --home-ps-text: #0f172a;
  --home-ps-muted: #64748b;
  --home-ps-faint: #94a3b8;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 16px 30px rgba(15, 23, 42, 0.06);
}

html[data-theme='light'] .home-ps-mini-table__row span {
  color: #334155;
}

html[data-theme='light'] .home-ps-correlation-item__top span:first-child {
  color: #334155;
}

html[data-theme='light'] .home-ps-correlation-item:first-child .home-ps-correlation-item__top span:first-child,
html[data-theme='light'] .home-ps-correlation-item:first-child .home-ps-correlation-item__top span:last-child {
  color: #0f172a;
}

html[data-theme='light'] .home-ps-correlation-trigger__sample {
  color: #64748b;
}


/* Matchup Trends preview */
.home-mt-preview {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-mt-hero {
  position: relative;
  border: 1px solid var(--border-color-subtle);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent),
    var(--primary-bg);
  overflow: hidden;
}

.home-mt-hero__bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 3px;
}

.home-mt-hero__bar-away,
.home-mt-hero__bar-home {
  display: block;
}

.home-mt-hero__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 14px 16px 16px;
}

.home-mt-team {
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-mt-team--home {
  justify-content: flex-end;
}

.home-mt-team__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 28px;
  border-radius: 999px;
  padding: 0 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.home-mt-team__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.home-mt-team__info--right {
  text-align: right;
}

.home-mt-team__name {
  font-family: 'Outfit', var(--font-headings), sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-headlines);
  line-height: 1.1;
}

.home-mt-team__record {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-secondary);
}

.home-mt-hero__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.home-mt-hero__vs {
  font-family: 'Barlow Condensed', var(--font-headings), sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-headlines);
  line-height: 1;
}

.home-mt-meta-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.home-mt-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}

.home-mt-pitchers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.home-mt-pitcher-card {
  position: relative;
  border: 1px solid var(--border-color-subtle);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent),
    var(--primary-bg);
  padding: 14px 15px 13px;
  overflow: hidden;
}

.home-mt-pitcher-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  opacity: 0.9;
}

.home-mt-pitcher-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.home-mt-pitcher-card__identity {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.home-mt-pitcher-card__name {
  font-family: 'Outfit', var(--font-headings), sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-headlines);
  line-height: 1.1;
}

.home-mt-pitcher-card__hand {
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.home-mt-pitcher-card__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.home-mt-pitcher-card__stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 7px 6px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.home-mt-pitcher-card__stat-label {
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.home-mt-pitcher-card__stat-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-headlines);
}

.home-mt-trends {
  border: 1px solid var(--border-color-subtle);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent),
    var(--primary-bg);
  padding: 14px;
}

.home-mt-trends__header {
  padding: 10px 12px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.018);
}

.home-mt-trends__label-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.home-mt-trends__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(56, 139, 253, 0.16);
  border: 1px solid rgba(56, 139, 253, 0.22);
  color: #58A6FF;
  flex-shrink: 0;
}

.home-mt-trends__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-mt-trends__title-wrap {
  min-width: 0;
}

.home-mt-trends__title {
  font-family: 'Outfit', var(--font-headings), sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--text-headlines);
  letter-spacing: -0.02em;
  margin-bottom: 3px;
}

.home-mt-trends__subheader {
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(148, 163, 184, 0.72);
}

.home-mt-trends__table-wrap {
  overflow-x: auto;
  overflow-y: visible;
}

.home-mt-trends__table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  table-layout: fixed;
}

.home-mt-trends__table th,
.home-mt-trends__table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.home-mt-trends__table tbody tr:last-child td {
  border-bottom: none;
}

.home-mt-trends__table th {
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0 10px 10px;
  text-align: center;
}

.home-mt-trends__th--player {
  text-align: left;
  width: 228px;
}

.home-mt-trends__td {
  padding: 11px 10px;
  text-align: center;
  vertical-align: middle;
}

.home-mt-trends__value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-headlines);
}

.home-mt-trends__td--player {
  text-align: left;
}

.home-mt-trends__player-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.home-mt-trends__badge {
  min-width: 42px;
  height: 28px;
  padding: 0 9px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  color: #f8fbff;
  flex-shrink: 0;
}

.home-mt-trends__player-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-headlines);
}

.home-mt-trends__star {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #0d6efd;
}

.home-mt-trends__star svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.home-mt-trends__td--chip {
  text-align: center;
}

.home-mt-trends__chip {
  appearance: none;
  border: 1px solid rgba(56, 139, 253, 0.22);
  display: inline-flex;
  min-width: 30px;
  justify-content: center;
  align-items: center;
  padding: 4px 8px;
  border-radius: 10px;
  background: rgba(56, 139, 253, 0.1);
  color: #58A6FF;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.home-mt-trends__chip:hover,
.home-mt-trends__chip[aria-expanded="true"] {
  background: rgba(56, 139, 253, 0.16);
  border-color: rgba(56, 139, 253, 0.38);
  color: #8cbcff;
}

.home-mt-trends__chip[aria-expanded="true"] {
  transform: translateY(-1px);
}

.home-mt-trends__expand-row[hidden] {
  display: none;
}

.home-mt-trends__expand-cell {
  padding: 12px 0 0;
  border-bottom: none !important;
}

.home-mt-detail-card[hidden] {
  display: none;
}

.home-mt-detail-card {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    rgba(8, 13, 22, 0.96);
  overflow: hidden;
}

.home-mt-detail-card__header {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.015);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.home-mt-detail-card__accent {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--team-color, #1f6feb);
}

.home-mt-detail-card__identity {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.home-mt-detail-card__badge {
  min-width: 42px;
  height: 42px;
  padding: 0 8px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: #f8fbff;
  flex-shrink: 0;
}

.home-mt-detail-card__name-block {
  min-width: 0;
}

.home-mt-detail-card__player {
  font-family: 'Outfit', var(--font-headings), sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--text-headlines);
  line-height: 1.1;
}

.home-mt-detail-card__team {
  margin-top: 4px;
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.74);
}

.home-mt-detail-card__prop-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  text-align: right;
}

.home-mt-detail-card__eyebrow {
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.6);
}

.home-mt-detail-card__prop {
  font-family: 'Outfit', var(--font-headings), sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #0d6efd;
}

.home-mt-detail-card__strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: stretch;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.home-mt-detail-card__period {
  min-width: 0;
}

.home-mt-detail-card__period-label {
  margin-bottom: 8px;
  text-align: center;
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.82);
}

.home-mt-detail-card__pills {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
}

.home-mt-detail-card__pill {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 0;
  padding: 6px 4px 5px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-headlines);
  line-height: 1;
}

.home-mt-detail-card__pill strong {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.home-mt-detail-card__pill em {
  font-style: normal;
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.7);
}

.home-mt-detail-card__divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.home-mt-detail-card__body {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr;
  gap: 16px;
  padding: 12px 16px 14px;
  align-items: stretch;
}

.home-mt-detail-card__chart-panel,
.home-mt-detail-card__rates-panel {
  min-width: 0;
  min-height: 188px;
  display: flex;
  flex-direction: column;
}

.home-mt-detail-card__panel-title {
  margin-bottom: 8px;
  text-align: center;
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.8);
}

.home-mt-detail-card__tower-chart {
  min-height: 108px;
  flex: 1 1 auto;
}

.home-mt-detail-card__bars-wrap {
  position: relative;
  height: 108px;
  padding-top: 6px;
  width: 100%;
  margin-top: auto;
}

.home-mt-detail-card__grid-lines {
  position: absolute;
  inset: 6px 0 18px;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
}

.home-mt-detail-card__grid-lines span {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.home-mt-detail-card__bars {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 6px;
  align-items: end;
}

.home-mt-detail-card__bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.home-mt-detail-card__bar-track {
  position: relative;
  width: 100%;
  height: 84px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.home-mt-detail-card__bar-value {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 800;
  color: rgba(232, 237, 246, 0.9);
  line-height: 1;
  white-space: nowrap;
}

.home-mt-detail-card__bar-value--miss {
  bottom: 14px;
}

.home-mt-detail-card__bar-fill {
  width: 100%;
  min-height: 12px;
  border-radius: 8px 8px 5px 5px;
  box-shadow: 0 0 16px rgba(56, 139, 253, 0.16);
}

.home-mt-detail-card__bar-fill--hit {
  background: linear-gradient(180deg, #78aef7 0%, #4285f4 48%, #2360c7 100%);
}

.home-mt-detail-card__bar-miss {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #94a3b8;
  box-shadow: 0 0 0 4px rgba(148, 163, 184, 0.08);
  margin-bottom: 2px;
}

.home-mt-detail-card__bar-opp {
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: rgba(148, 163, 184, 0.7);
}

.home-mt-detail-card__rates {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
  min-height: 108px;
  flex: 1 1 auto;
  align-items: end;
  padding-top: 10px;
}

.home-mt-detail-card__rate {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.home-mt-detail-card__donut {
  --deg: calc(var(--pct) * 3.6deg);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(8, 13, 22, 0.98) 58%, transparent 59%),
    conic-gradient(var(--donut-color) 0deg var(--deg), rgba(255, 255, 255, 0.08) var(--deg) 360deg);
}

.home-mt-detail-card__donut span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 800;
  color: var(--donut-color);
}

.home-mt-detail-card__donut--cold { --donut-color: #94a3b8; }
.home-mt-detail-card__donut--mid { --donut-color: #f59e0b; }
.home-mt-detail-card__donut--good { --donut-color: #38bdf8; }
.home-mt-detail-card__donut--hot { --donut-color: #4ade80; }

.home-mt-detail-card__rate-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: rgba(232, 237, 246, 0.9);
}

.home-mt-detail-card__rate-label {
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.72);
}

/* Prop board panel */
.home-pb-preview {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-pb-preview__filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.home-pb-preview__filter {
  min-height: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(11, 18, 31, 0.82);
  border: 1px solid rgba(77, 93, 125, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.home-pb-preview__filter--ghost {
  background: rgba(255, 255, 255, 0.02);
}

.home-pb-preview__filter-label {
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.72);
}

.home-pb-preview__filter-value {
  font-family: 'Outfit', var(--font-headings), sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(232, 237, 246, 0.96);
}

.home-pb-preview__board {
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    rgba(12, 18, 29, 0.9);
  border: 1px solid rgba(77, 93, 125, 0.24);
  overflow: hidden;
}

.home-pb-preview__head,
.home-pb-preview__row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.6fr) minmax(44px, 0.24fr) minmax(62px, 0.36fr) minmax(0, 3.34fr);
  gap: 8px;
  align-items: center;
}

.home-pb-preview__head {
  padding: 12px 18px 11px;
  border-bottom: 1px solid rgba(77, 93, 125, 0.2);
}

.home-pb-preview__th {
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.72);
}

.home-pb-preview__th--prop,
.home-pb-preview__th--last10 {
  text-align: center;
}

.home-pb-preview__body {
  display: flex;
  flex-direction: column;
}

.home-pb-preview__row {
  padding: 10px 18px;
  border-top: 1px solid rgba(77, 93, 125, 0.16);
}

.home-pb-preview__row:first-child {
  border-top: 0;
}

.home-pb-preview__cell {
  min-width: 0;
}

.home-pb-preview__cell--player {
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-pb-preview__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 24px;
  padding: 0 6px;
  border-radius: 9px;
  background: rgba(31, 111, 235, 0.18);
  border: 1px solid rgba(56, 139, 253, 0.24);
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #cfe5ff;
}

.home-pb-preview__player,
.home-pb-preview__prop,
.home-pb-preview__last10-pct {
  font-family: 'Outfit', var(--font-headings), sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(232, 237, 246, 0.96);
}

.home-pb-preview__player,
.home-pb-preview__game-matchup,
.home-pb-preview__prop {
  line-height: 1.08;
}

.home-pb-preview__game-matchup,
.home-pb-preview__game-time,
.home-pb-preview__last10-record {
  display: block;
  font-family: 'Outfit', var(--font-body), sans-serif;
}

.home-pb-preview__game-matchup {
  font-size: 12px;
  font-weight: 700;
  color: rgba(232, 237, 246, 0.92);
}

.home-pb-preview__game-time,
.home-pb-preview__last10-record {
  font-size: 10px;
  font-weight: 600;
  color: rgba(148, 163, 184, 0.78);
  line-height: 1.02;
}

.home-pb-preview__cell--last10 {
  text-align: center;
}

.home-pb-preview__cell--prop {
  text-align: center;
}

.home-pb-preview__cell--trend {
  min-width: 0;
}

.home-pb-preview__last10-pct {
  color: #8cc6ff;
}

.home-pb-preview__trend {
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
  justify-content: flex-start;
  overflow: hidden;
}

.home-pb-preview__trend-box {
  width: 38px;
  min-width: 38px;
  height: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 11px;
  border: 1px solid rgba(77, 93, 125, 0.24);
  background: rgba(39, 43, 50, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.home-pb-preview__trend-box--hit {
  background: rgba(35, 64, 109, 0.92);
  border-color: rgba(88, 167, 255, 0.9);
}

.home-pb-preview__trend-box--miss {
  background: rgba(39, 43, 50, 0.86);
  border-color: rgba(77, 93, 125, 0.26);
}

.home-pb-preview__trend-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: rgba(232, 237, 246, 0.95);
}

.home-pb-preview__trend-opp {
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(188, 197, 211, 0.82);
}


/* ================================================================
   VALUE PROPS — numbered strip, no cards
   ================================================================ */
.home-vp-section {
  padding: 24px 48px 88px;
  max-width: 1200px;
  margin: 0 auto;
}

.home-vp-header {
  max-width: 700px;
  margin: 18px 0 30px;
}

.home-vp-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(31, 111, 235, 0.1);
  border: 1px solid rgba(88, 166, 255, 0.16);
  color: #92b6ff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-vp-heading {
  font-family: 'Barlow Condensed', var(--font-headings), sans-serif;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 900;
  letter-spacing: -0.022em;
  line-height: 0.98;
  text-transform: uppercase;
  color: var(--text-headlines);
  margin: 0;
}

.home-vp-sub {
  margin: 14px 0 0;
  color: var(--text-secondary);
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

.home-vp-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.home-vp-item {
  padding: 22px 20px 22px 22px;
  border-radius: 18px;
  border: 1px solid rgba(77, 93, 125, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    rgba(12, 18, 29, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.home-vp-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-blue);
  letter-spacing: 1px;
  margin-bottom: 14px;
  opacity: 0.8;
}

.home-vp-title {
  font-family: 'Outfit', var(--font-headings), sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-headlines);
  margin-bottom: 10px;
}

.home-vp-desc {
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ================================================================
   PLANS
   ================================================================ */
.home-plans {
  padding: 24px 48px 96px;
  max-width: 1200px;
  margin: 0 auto;
}

.home-plans__header {
  margin: 18px 0 30px;
  max-width: 700px;
}

.home-plans__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(31, 111, 235, 0.08);
  border: 1px solid rgba(31, 111, 235, 0.18);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-blue-hover);
  margin-bottom: 14px;
}

.home-plans__heading {
  font-family: 'Barlow Condensed', var(--font-headings), sans-serif;
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.022em;
  line-height: 0.98;
  color: var(--text-headlines);
  margin: 0;
}

.home-plans__sub {
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 14px 0 0;
}

.home-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.home-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 28px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    rgba(12, 17, 26, 0.92);
  border: 1px solid var(--border-color-subtle);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.3);
}

.home-plan-card--featured {
  background:
    radial-gradient(circle at top, rgba(56, 139, 253, 0.18), transparent 58%),
    rgba(10, 16, 28, 0.96);
  border-color: rgba(56, 139, 253, 0.28);
}

.home-plan-card--free {
  background:
    linear-gradient(180deg, rgba(94, 234, 212, 0.04), transparent 40%),
    rgba(12, 17, 26, 0.92);
}

.home-plan-card__badge {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(56, 139, 253, 0.14);
  border: 1px solid rgba(56, 139, 253, 0.22);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: #8cc6ff;
}

.home-plan-card__badge--teal {
  background: rgba(94, 234, 212, 0.12);
  border-color: rgba(94, 234, 212, 0.22);
  color: #8ef4e1;
}

.home-plan-card__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-blue-hover);
  margin-bottom: 10px;
}

.home-plan-card__title {
  font-family: 'Outfit', var(--font-headings), sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-headlines);
  margin-bottom: 10px;
}

.home-plan-card__price {
  font-family: 'Barlow Condensed', var(--font-headings), sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -1px;
  color: #f4f8ff;
  margin-bottom: 22px;
}

.home-plan-card__price span {
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--text-secondary);
}

.home-plan-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 auto;
}

.home-plan-card__list li {
  position: relative;
  padding-left: 18px;
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.home-plan-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #388bfd;
  box-shadow: 0 0 12px rgba(56, 139, 253, 0.35);
}

.home-plan-card__footer {
  margin-top: auto;
  display: flex;
  width: 100%;
  align-self: stretch;
}

.home-plan-card form {
  width: 100%;
  display: flex;
}

.home-plan-card__form {
  display: none !important;
}

.home-plan-card__footer > .home-plan-card__action {
  flex: 1 1 auto;
}

.home-plan-card__action {
  width: 100%;
  flex: 1 1 100%;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  min-height: 58px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  background: linear-gradient(135deg, #2f81f7, #1f6feb);
  background-clip: padding-box;
  color: #fff;
  font-family: 'Outfit', var(--font-headings), sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  box-shadow: none;
  transform: none;
  filter: none;
  outline: none;
}

.home-plan-card__action:hover {
  opacity: 0.96;
}

.home-plan-card__action--ghost {
  background: transparent;
  color: var(--text-headlines);
  border: 1px solid var(--border-color-subtle);
  box-shadow: none;
}

.home-plan-card__action--ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.home-plan-card__action--teal {
  background: linear-gradient(135deg, #2dd4bf, #0f9f8c);
}

.home-plan-card__action--teal:hover {
  opacity: 0.96;
}

.home-plan-card__action::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* ================================================================
   FINAL CTA — full-bleed dark section
   ================================================================ */
.home-cta-wrap {
  background: #060b14;
  padding: 64px 48px 72px;
  margin: 0;
  max-width: none;
}

.home-final-cta {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.home-final-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(240, 246, 252, 0.72);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-final-cta__heading {
  font-family: 'Barlow Condensed', var(--font-headings), sans-serif;
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 900;
  text-transform: uppercase;
  color: #f0f6fc;
  letter-spacing: -0.7px;
  line-height: 1.02;
  margin-bottom: 10px;
}

.home-final-cta__sub {
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(240, 246, 252, 0.6);
  margin-bottom: 24px;
  line-height: 1.6;
}

.home-final-cta__actions {
  margin-bottom: 0;
}

.home-final-cta__note {
  font-family: 'Outfit', var(--font-body), sans-serif;
  font-size: 12px;
  color: rgba(240, 246, 252, 0.42);
  margin-top: 12px;
  letter-spacing: 0.2px;
}

/* ── Mobile showcase cards (base styles — shown at ≤600px via display override) ── */
.home-showcase-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color-subtle);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.home-showcase-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-showcase-card__icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
  fill: none;
}

.home-showcase-card__name {
  font-family: var(--font-headings);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-headlines);
  margin-bottom: 4px;
}

.home-showcase-card__desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 10px;
}

.home-showcase-card__link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-blue-hover);
  text-decoration: none;
}

/* ── Accessibility: focus states ── */
.home-btn-primary:focus-visible,
.home-btn-ghost:focus-visible {
  outline: 2px solid var(--accent-blue-hover);
  outline-offset: 2px;
}

.home-tool-item:focus-visible {
  outline: 2px solid var(--accent-blue-hover);
  outline-offset: -2px;
}

.home-stripe-banner__close:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
  border-radius: 3px;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* Tablet: 600px – 960px */
@media (max-width: 960px) {
  .home-hero {
    grid-template-columns: 1fr;
    padding: 56px 32px 48px;
    gap: 32px;
    text-align: center;
  }

  .home-hero__sub {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .home-hero__actions {
    justify-content: center;
  }

  .home-hero__visual {
    min-height: auto;
  }

  .home-hero__scene {
    width: min(100%, 560px);
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .home-hero__scene::before,
  .home-hero__visual-orbit {
    display: none;
  }

  .home-hero-card {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .home-hero-card--player,
  .home-hero-card--matchup,
  .home-hero-card--props {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .home-hero-card--player {
    order: 1;
  }

  .home-hero-card--matchup {
    order: 2;
  }

  .home-hero-card--props {
    display: none;
  }

  .home-hero-card__scoreline {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .home-hero-card__at {
    display: none;
  }

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

  /* Tool showcase: stack vertically */
  .home-showcase__panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-tool-list {
    border-right: none;
    border-bottom: 1px solid var(--border-color-subtle);
    flex-direction: row;
    overflow-x: auto;
  }

  .home-tool-item {
    flex: 1;
    border-bottom: none;
    border-right: 1px solid var(--border-color-subtle);
    padding: 16px 20px;
    min-width: 120px;
    text-align: center;
  }

  .home-tool-item:last-child {
    border-right: none;
  }

  .home-tool-item--active::before {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: auto;
    height: 3px;
    border-radius: 3px 3px 0 0;
  }

  .home-tool-item__icon {
    margin: 0 auto 8px;
  }

  .home-tool-item__desc,
  .home-tool-item__link {
    display: none;
  }

  .home-ps-preview__header,
  .home-ps-preview__grid {
    grid-template-columns: 1fr;
  }

  .home-mt-hero__body {
    grid-template-columns: 1fr;
    justify-items: stretch;
    text-align: center;
  }

  .home-mt-team,
  .home-mt-team--home {
    justify-content: center;
  }

  .home-mt-team__info--right {
    text-align: left;
  }

  .home-mt-pitchers {
    grid-template-columns: 1fr;
  }

  .home-mt-detail-card__header,
  .home-mt-detail-card__body {
    grid-template-columns: 1fr;
  }

  .home-mt-detail-card__header {
    align-items: flex-start;
  }

  .home-mt-detail-card__prop-block {
    align-items: flex-start;
    text-align: left;
  }

  .home-mt-detail-card__strip {
    grid-template-columns: 1fr;
  }

  .home-mt-detail-card__divider {
    display: none;
  }

  .home-mt-detail-card__rates {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-ps-last5 {
    grid-template-columns: 1fr;
  }

  .home-ps-last5__label {
    border-right: none;
    border-bottom: 1px solid var(--border-color-subtle);
    padding-right: 0;
    padding-bottom: 10px;
  }

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

  .home-vp-strip {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .home-plan-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-plan-card--featured {
    transform: none;
  }

  .home-vp-item {
    padding: 20px 18px;
  }

  .home-showcase,
  .home-vp-section,
  .home-plans {
    padding-left: 32px;
    padding-right: 32px;
  }

  .home-cta-wrap {
    padding: 72px 32px;
  }

  .home-divider {
    margin: 0 32px;
  }

  .home-final-cta__heading {
    font-size: clamp(44px, 7vw, 60px);
  }
}

/* Mobile: < 600px */
@media (max-width: 600px) {
  .home-hero {
    padding: 48px 20px 40px;
    gap: 24px;
    text-align: left;
  }

  .home-hero__left {
    text-align: left;
  }

  .home-hero__heading {
    font-size: 0;
    letter-spacing: 0;
    margin-bottom: 16px;
  }

  .home-hero__visual {
    width: 100%;
  }

  .home-hero__scene,
  .home-hero__visual-orbit {
    display: none;
  }

  .home-hero-mobile {
    display: block;
  }

  .home-hero__brand-mark {
    display: inline-flex;
    margin-bottom: 24px;
    overflow: hidden;
    width: 164px;
    height: 48px;
  }

  .home-hero__brand-logo {
    width: 198px;
    height: auto;
    max-width: none;
    transform: translate(-25px, -8px);
  }

  .home-hero__mobile-eyebrow,
  .home-hero__heading-mobile,
  .home-hero__sub-mobile {
    display: block;
  }

  .home-hero__heading-desktop,
  .home-hero__sub-desktop {
    display: none;
  }

  .home-hero__heading-mobile {
    font-size: 34px;
    line-height: 0.96;
    letter-spacing: -0.8px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #a5c8ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 24px rgba(31, 111, 235, 0.12);
  }

  .home-hero__sub {
    max-width: 100%;
    margin-bottom: 28px;
  }

  .home-hero__sub-mobile {
    font-size: 17px;
    line-height: 1.55;
    color: var(--text-secondary);
    max-width: 32ch;
  }

  .home-hero__actions {
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 6px;
  }

  .home-hero-mobile__track {
    grid-auto-columns: calc(100% - 18px);
    gap: 14px;
  }

  .home-hero-mobile-card {
    padding: 16px;
    border-radius: 22px;
  }

  .home-hero-mobile-card__stats,
  .home-hero-mobile-card__sparkline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero-mobile-card__team strong {
    font-size: 24px;
  }

  .home-hero-mobile-card__rate {
    font-size: 36px;
  }

  .home-hero-mobile-card__pitcher-line,
  .home-hero-mobile-card__prop-top,
  .home-hero-mobile-card__section-top {
    align-items: flex-start;
  }

  .home-ps-preview {
    padding: 14px;
  }

  .home-ps-preview__identity,
  .home-ps-season-stats,
  .home-ps-last5,
  .home-ps-panel {
    padding: 12px;
  }

  .home-ps-player-name {
    font-size: 20px;
  }

  .home-ps-season-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-ps-season-stat__value {
    font-size: 20px;
  }

  .home-mt-trends {
    padding: 12px;
  }

  .home-mt-trends__header {
    padding: 10px;
  }

  .home-mt-trends__label-row {
    gap: 10px;
  }

  .home-mt-trends__icon {
    width: 36px;
    height: 36px;
  }

  .home-mt-trends__table {
    min-width: 610px;
  }

  .home-mt-detail-card__header,
  .home-mt-detail-card__strip,
  .home-mt-detail-card__body {
    padding-left: 12px;
    padding-right: 12px;
  }

  .home-mt-detail-card__badge {
    min-width: 38px;
    height: 38px;
    font-size: 13px;
  }

  .home-mt-detail-card__player {
    font-size: 15px;
  }

  .home-mt-detail-card__prop {
    font-size: 13px;
  }

  .home-mt-detail-card__bars {
    gap: 5px;
  }

  .home-mt-detail-card__rates {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-ps-mini-table {
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .home-ps-mini-table--pa .home-ps-mini-table__head,
  .home-ps-mini-table--pa .home-ps-mini-table__row {
    min-width: 280px;
  }

  /* Collapse tool showcase to three standalone cards */
  .home-showcase__panel {
    display: none;
  }

  .home-showcase__mobile-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .home-vp-strip {
    grid-template-columns: 1fr;
  }

  .home-plans__sub {
    font-size: 15px;
  }

  .home-plan-card {
    padding: 22px 20px;
    border-radius: 20px;
  }

  .home-plan-card__price {
    font-size: 48px;
  }

  .home-vp-item {
    padding: 18px 16px;
  }

  .home-showcase,
  .home-vp-section,
  .home-plans {
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-cta-wrap {
    padding: 64px 24px;
  }

  .home-divider {
    margin: 0 20px;
  }

  .home-final-cta__heading {
    font-size: clamp(40px, 10vw, 52px);
  }
}

/* On desktop, hide mobile cards (align boundary with max-width: 600px above) */
@media (min-width: 600px) {
  .home-showcase__mobile-cards {
    display: none;
  }
}

/* ================================================================
   LIGHT MODE OVERRIDES
   ================================================================ */
html[data-theme='light'] .home-stripe-banner--success {
  color: #16a34a;
}

html[data-theme='light'] .home-stripe-banner--warning {
  color: #ca8a04;
}

/* Badge icons simplified — no bg color overrides needed */

html[data-theme='light'] .home-tool-item:hover:not(.home-tool-item--active) {
  background: rgba(0, 0, 0, 0.02);
}

html[data-theme='light'] .home-tool-item--active {
  background: rgba(37, 99, 235, 0.06);
}

html[data-theme='light'] .home-mu-tile--hit {
  background: rgba(14, 165, 233, 0.1);
  border-color: rgba(14, 165, 233, 0.25);
  color: #0284c7;
}

/* In dark mode, use deep navy so CTA is visually distinct from the near-black page background */
html[data-theme='dark'] .home-cta-wrap {
  background: #0b1e3d;
  border-top: 1px solid rgba(56, 139, 253, 0.12);
}

html[data-theme='light'] .home-ps-trend-bar {
  background: linear-gradient(180deg, #1d4ed8, rgba(29, 78, 216, 0.4));
}

/* ── Hero heading — solid color, no gradient ── */
html[data-theme='light'] .home-hero__heading,
html[data-theme='light'] .home-hero__heading-mobile {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: #0f172a;
  color: #0f172a;
  text-shadow: none;
}

/* ── Ghost button hover — white text is invisible on light bg ── */
html[data-theme='light'] .home-btn-ghost:hover {
  color: #0f172a;
  border-bottom-color: rgba(15, 23, 42, 0.25);
}

/* ── Eyebrow pills ── */
html[data-theme='light'] .home-showcase__eyebrow,
html[data-theme='light'] .home-vp-eyebrow {
  color: #1d4ed8;
  background: rgba(29, 78, 216, 0.07);
  border-color: rgba(29, 78, 216, 0.16);
}

/* ── Value prop items ── */
html[data-theme='light'] .home-vp-item {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
}

/* ── Plan cards ── */
html[data-theme='light'] .home-plan-card {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.07);
}

html[data-theme='light'] .home-plan-card--featured {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.05) 0%, #ffffff 45%);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1);
}

html[data-theme='light'] .home-plan-card--free {
  background: #ffffff;
}

html[data-theme='light'] .home-plan-card__price {
  color: #0f172a;
}

html[data-theme='light'] .home-plan-card__badge {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.18);
  color: #1d4ed8;
}

html[data-theme='light'] .home-plan-card__badge--teal {
  background: rgba(15, 118, 110, 0.07);
  border-color: rgba(15, 118, 110, 0.18);
  color: #0f766e;
}

html[data-theme='light'] .home-plan-card__action--ghost {
  border-color: rgba(15, 23, 42, 0.18);
  color: #0f172a;
}

html[data-theme='light'] .home-plan-card__action--ghost:hover {
  border-color: rgba(15, 23, 42, 0.3);
  background: rgba(15, 23, 42, 0.04);
}

/* ── Correlation bar track ── */
html[data-theme='light'] .home-ps-correlation-item__bar {
  background: rgba(15, 23, 42, 0.06);
}

/* ================================================================
   PROP BOARD PREVIEW — LIGHT MODE OVERRIDES
   ================================================================ */

html[data-theme='light'] .home-pb-preview__filter {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: none;
}

html[data-theme='light'] .home-pb-preview__filter--ghost {
  background: rgba(15, 23, 42, 0.02);
  border-color: rgba(15, 23, 42, 0.07);
}

html[data-theme='light'] .home-pb-preview__filter-label {
  color: #64748b;
}

html[data-theme='light'] .home-pb-preview__filter-value {
  color: #0f172a;
}

html[data-theme='light'] .home-pb-preview__board {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.1);
}

html[data-theme='light'] .home-pb-preview__head {
  border-bottom-color: rgba(15, 23, 42, 0.09);
}

html[data-theme='light'] .home-pb-preview__th {
  color: #64748b;
}

html[data-theme='light'] .home-pb-preview__row {
  border-top-color: rgba(15, 23, 42, 0.07);
}

html[data-theme='light'] .home-pb-preview__player {
  color: #0f172a;
}

html[data-theme='light'] .home-pb-preview__game-matchup,
html[data-theme='light'] .home-pb-preview__game-time,
html[data-theme='light'] .home-pb-preview__last10-record,
html[data-theme='light'] .home-pb-preview__prop {
  color: #475569;
}

html[data-theme='light'] .home-pb-preview__last10-pct {
  color: #0f172a;
}

html[data-theme='light'] .home-pb-preview__trend-box {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: none;
}

html[data-theme='light'] .home-pb-preview__trend-box--hit {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.32);
}

html[data-theme='light'] .home-pb-preview__trend-box--miss {
  background: rgba(15, 23, 42, 0.03);
  border-color: rgba(15, 23, 42, 0.08);
}

html[data-theme='light'] .home-pb-preview__trend-value {
  color: #334155;
}

html[data-theme='light'] .home-pb-preview__trend-box--hit .home-pb-preview__trend-value {
  color: #1d4ed8;
}

html[data-theme='light'] .home-pb-preview__trend-opp {
  color: rgba(71, 85, 105, 0.7);
}

html[data-theme='light'] .home-pb-preview__trend-box--hit .home-pb-preview__trend-opp {
  color: rgba(37, 99, 235, 0.55);
}
