.page-home {
  --home-green: var(--green-deep);
  --home-gold: var(--gold);
  --home-gold-light: var(--gold-light);
  --home-mid: var(--green-mid);
  --home-live: var(--green-live);
  --home-paper: var(--paper);
  --home-muted: var(--muted);
  --home-ink: var(--ink);
  --home-radius: var(--radius);
  --home-ease: var(--ease);
  --home-clip: polygon(0 0, calc(100% - 40px) 0, 100% 40px, 100% 100%, 0 100%);
  background: var(--home-paper);
  overflow-x: hidden;
}

.page-home .container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.page-home .section {
  padding: 72px 0;
}

.page-home .section--alt {
  background: var(--muted);
}

.page-home .section--dark {
  background: var(--home-green);
  color: var(--paper);
  position: relative;
}

.page-home .section--dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.page-home .section-head {
  margin-bottom: 40px;
  max-width: 720px;
}

.page-home .section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-home .section-kicker {
  display: inline-block;
  color: var(--home-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding: 4px 12px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.08);
}

.page-home .section--dark .section-kicker {
  border-color: rgba(212, 175, 55, 0.6);
  background: rgba(212, 175, 55, 0.14);
}

.page-home .section-title {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--home-ink);
}

.page-home .section--dark .section-title {
  color: var(--paper);
}

.page-home .section--dark .section-lede {
  color: rgba(255, 255, 255, 0.72);
}

.page-home .section-lede {
  font-size: 17px;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
}

.page-home .data-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.12);
  color: var(--home-gold);
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.page-home .data-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-home .data-strip-cell {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 16px 22px;
  backdrop-filter: blur(6px);
  min-width: 140px;
}

.page-home .stat-value {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: var(--home-gold-light);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.page-home .stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 6px;
  line-height: 1.4;
}

.page-home .panel-title {
  font-size: 26px;
  font-weight: 900;
  color: var(--home-ink);
  margin: 6px 0 14px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.page-home .panel-gold {
  border: 2px solid var(--home-gold);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.3), 0 18px 40px rgba(0, 0, 0, 0.12);
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  padding: 12px 24px;
  border: 2px solid transparent;
  text-decoration: none;
  transition: background var(--home-ease), color var(--home-ease), border-color var(--home-ease), transform var(--home-ease), box-shadow var(--home-ease);
  cursor: pointer;
}

.page-home .btn-gold {
  background: linear-gradient(135deg, var(--home-gold), var(--home-gold-light));
  color: #1a1a1a;
  border-color: var(--home-gold);
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.28);
}

.page-home .btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.38);
  background: linear-gradient(135deg, var(--home-gold-light), var(--home-gold));
}

.page-home .btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--paper);
}

.page-home .btn-ghost:hover {
  border-color: var(--home-gold);
  color: var(--home-gold-light);
}

.page-home .btn-sm {
  padding: 9px 18px;
  font-size: 14px;
}

.page-home .btn-lg {
  padding: 15px 30px;
  font-size: 16px;
}

.page-home .live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-live);
  position: relative;
  flex-shrink: 0;
}

.page-home .live-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(34, 197, 94, 0.5);
  animation: home-pulse 2s infinite;
}

@keyframes home-pulse {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

.page-home .home-hero {
  background:
    linear-gradient(160deg, #0A2E1F 0%, #0c3825 45%, #14422e 70%, #0A2E1F 100%);
  position: relative;
  padding: 72px 0 64px;
  color: var(--paper);
  overflow: hidden;
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: linear-gradient(115deg, transparent 20%, rgba(212, 175, 55, 0.12) 50%, transparent 80%);
  transform: rotate(-12deg);
  pointer-events: none;
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--home-gold) 0%, var(--home-gold-light) 30%, transparent 70%);
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 1;
}

.page-home .home-hero__badge {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.6);
  color: var(--home-gold-light);
  margin-bottom: 20px;
}

.page-home .home-hero__title {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  max-width: 860px;
}

.page-home .home-hero__lede {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  max-width: 760px;
  margin: 0;
}

.page-home .home-bento {
  background: var(--paper);
}

.page-home .home-bento__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.page-home .bento-cell {
  border-radius: var(--home-radius);
  min-width: 0;
}

.page-home .hom-s6tp {
  background: var(--home-green);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  clip-path: var(--home-clip);
  display: flex;
  min-height: 560px;
}

.page-home .hom-s6tp__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-home .hom-s6tp__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-home .hom-s6tp__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(10, 46, 31, 0.92) 30%, rgba(20, 83, 45, 0.72) 100%);
}

.page-home .hom-s6tp__content {
  position: relative;
  z-index: 2;
  padding: 44px 48px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-home .hom-s6tp__title {
  font-size: 38px;
  font-weight: 900;
  color: var(--paper);
  margin: 4px 0 14px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.page-home .hom-s6tp__desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 24px;
}

.page-home .hom-s6tp__search {
  margin-bottom: 24px;
  max-width: 560px;
}

.page-home .hom-s6tp__searchbox {
  position: relative;
}

.page-home .hom-s6tp__searchbox input {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  color: var(--paper);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 50px 14px 18px;
  outline: none;
  transition: border-color var(--home-ease), background var(--home-ease);
}

.page-home .hom-s6tp__searchbox input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.page-home .hom-s6tp__searchbox input:focus {
  border-color: var(--home-gold);
  background: rgba(255, 255, 255, 0.12);
}

.page-home .hom-s6tp__searchicon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(212, 175, 55, 0.8);
  display: flex;
}

.page-home .hom-s6tp__points {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.page-home .hom-s6tp__points li {
  padding-left: 22px;
  position: relative;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.5;
}

.page-home .hom-s6tp__points li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--home-gold);
  transform: rotate(45deg);
}

.page-home .hom-s6tp__content .btn-gold {
  align-self: flex-start;
}

.page-home .home-bento__legacy {
  background: var(--home-paper);
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.page-home .home-bento__legacy::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 24px;
  width: 80px;
  height: 80px;
  background: repeating-linear-gradient(45deg, rgba(212, 175, 55, 0.18) 0, rgba(212, 175, 55, 0.18) 2px, transparent 2px, transparent 8px);
  border-radius: 12px;
  pointer-events: none;
}

.page-home .hom-legacy__img {
  height: 156px;
  overflow: hidden;
  background: var(--home-muted);
  position: relative;
}

.page-home .hom-legacy__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  opacity: 0.85;
}

.page-home .hom-legacy__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.page-home .hom-legacy__desc {
  font-size: 14px;
  line-height: 1.65;
  color: #374151;
  margin: 0 0 18px;
}

.page-home .hom-legacy__date {
  margin-bottom: 16px;
}

.page-home .hom-legacy__date-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.page-home .hom-legacy__date-input {
  width: 100%;
  background: var(--home-muted);
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  color: var(--home-ink);
  font-size: 14px;
  font-family: var(--font-sans);
  padding: 10px 12px;
  outline: none;
  transition: border-color var(--home-ease);
}

.page-home .hom-legacy__date-input:focus {
  border-color: var(--home-mid);
}

.page-home .hom-legacy__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.page-home .hom-legacy__meta .data-badge {
  background: rgba(10, 46, 31, 0.06);
  color: var(--home-mid);
  border-color: rgba(10, 46, 31, 0.15);
  font-size: 11px;
  padding: 4px 10px;
}

.page-home .hom-legacy__body .btn-ghost {
  border-color: rgba(10, 46, 31, 0.25);
  color: var(--home-mid);
  margin-top: auto;
}

.page-home .hom-legacy__body .btn-ghost:hover {
  border-color: var(--home-mid);
  background: rgba(10, 46, 31, 0.06);
  color: var(--home-green);
}

.page-home .home-bento__member {
  background: linear-gradient(150deg, #fbfaf6, #ffffff);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.page-home .hom-member__img {
  height: 168px;
  overflow: hidden;
  background: var(--home-green);
  position: relative;
}

.page-home .hom-member__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 46, 31, 0.5));
}

.page-home .hom-member__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.page-home .hom-member__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.page-home .hom-member__body .section-kicker {
  color: #a88514;
}

.page-home .hom-member__desc {
  font-size: 14px;
  line-height: 1.65;
  color: #374151;
  margin: 0 0 16px;
}

.page-home .hom-member__list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.page-home .hom-member__list li {
  padding-left: 26px;
  position: relative;
  font-size: 14px;
  color: #1f2937;
  line-height: 1.5;
}

.page-home .hom-member__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.6);
}

.page-home .hom-member__list li::after {
  content: "✓";
  position: absolute;
  left: 5px;
  top: 3px;
  font-size: 11px;
  font-weight: 800;
  color: #a88514;
}

.page-home .hom-member__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  flex-wrap: wrap;
}

.page-home .hom-member__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--home-mid);
}

.page-home .hom-member__cta .btn {
  border-color: rgba(10, 46, 31, 0.2);
  color: var(--home-mid);
  padding: 9px 16px;
  font-size: 13px;
}

.page-home .hom-member__cta .btn:hover {
  border-color: var(--home-mid);
  background: rgba(10, 46, 31, 0.05);
}

.page-home .home-bento__table {
  background: var(--home-green);
  color: var(--paper);
  padding: 36px 40px 30px;
  position: relative;
  overflow: hidden;
}

.page-home .home-bento__table::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--home-gold), transparent);
}

.page-home .hom-table__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.page-home .hom-table__header .section-kicker {
  color: var(--home-gold-light);
}

.page-home .hom-table__header .panel-title {
  color: var(--paper);
}

.page-home .hom-table__refresh {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-home .hom-table__tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.page-home .hom-table__tab {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-sans);
  padding: 8px 18px;
  cursor: pointer;
  transition: all var(--home-ease);
}

.page-home .hom-table__tab:hover {
  border-color: rgba(212, 175, 55, 0.7);
  color: var(--home-gold-light);
}

.page-home .hom-table__tab.is-active {
  background: var(--home-gold);
  border-color: var(--home-gold);
  color: #1a1a1a;
}

.page-home .hom-table__content {
  overflow-x: auto;
}

.page-home .hom-table__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 520px;
}

.page-home .hom-table__table th {
  text-align: left;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.page-home .hom-table__table td {
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
}

.page-home .hom-table__table tr:last-child td {
  border-bottom: none;
}

.page-home .hom-table__table tbody tr {
  transition: background var(--home-ease);
}

.page-home .hom-table__table tbody tr:hover {
  background: rgba(255, 255, 255, 0.04);
}

.page-home .hom-table__rank {
  font-weight: 900;
  color: var(--home-gold-light);
  font-size: 16px;
}

.page-home .hom-table__team {
  font-weight: 700;
  color: var(--paper);
}

.page-home .hom-table__pts {
  font-weight: 900;
  color: var(--home-gold-light);
  font-size: 15px;
}

.page-home .hom-table__foot {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 16px;
}

.page-home .hom-table__foot img {
  width: 120px;
  height: 40px;
  object-fit: cover;
  border-radius: 8px;
  opacity: 0.6;
}

.page-home .hom-table__note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.03em;
}

.page-home .hom-table__foot .btn-sm {
  margin-left: auto;
}

.page-home .home-leagues {
  position: relative;
}

.page-home .home-leagues .section-head {
  margin-bottom: 44px;
}

.page-home .home-leagues__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1;
}

.page-home .home-leagues__item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  color: var(--paper);
  transition: background var(--home-ease), border-color var(--home-ease), transform var(--home-ease);
}

.page-home .home-leagues__item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 175, 55, 0.65);
  transform: translateY(-2px);
}

.page-home .home-leagues__num {
  font-size: 12px;
  font-weight: 900;
  color: var(--home-gold);
  letter-spacing: 0.08em;
}

.page-home .home-leagues__item strong {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}

.page-home .home-leagues__meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.page-home .home-trust {
  background: var(--paper);
}

.page-home .home-trust__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.page-home .home-trust__text p {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 14px;
}

.page-home .home-trust__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.page-home .home-trust__links .btn-ghost {
  border-color: rgba(10, 46, 31, 0.25);
  color: var(--home-mid);
}

.page-home .home-trust__links .btn-ghost:hover {
  border-color: var(--home-mid);
  background: rgba(10, 46, 31, 0.05);
}

.page-home .home-trust__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.page-home .home-trust__fact {
  background: var(--home-green);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-home .home-trust__fact::after {
  content: "";
  position: absolute;
  right: -12px;
  top: -12px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.3);
}

.page-home .home-trust__num {
  display: block;
  font-size: 34px;
  font-weight: 900;
  color: var(--home-gold-light);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.page-home .home-trust__label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 8px;
}

.page-home .home-guide {
  background: var(--muted);
}

.page-home .home-guide__inner {
  max-width: 1000px;
}

.page-home .home-guide__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.page-home .home-guide__item {
  background: var(--paper);
  border-radius: 18px;
  padding: 26px 22px;
  border-top: 4px solid var(--home-mid);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
  transition: box-shadow var(--home-ease), transform var(--home-ease);
}

.page-home .home-guide__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.09);
}

.page-home .home-guide__step {
  display: block;
  font-size: 12px;
  font-weight: 900;
  color: var(--home-gold);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.page-home .home-guide__heading {
  font-size: 16px;
  font-weight: 800;
  color: var(--home-ink);
  margin: 0 0 8px;
  line-height: 1.35;
}

.page-home .home-guide__text {
  font-size: 14px;
  line-height: 1.65;
  color: #4b5563;
  margin: 0;
}

@media (max-width: 960px) {
  .page-home .home-hero__title {
    font-size: 34px;
  }

  .page-home .section-title {
    font-size: 32px;
  }

  .page-home .home-bento__s6tp {
    grid-column: span 12;
  }

  .page-home .home-bento__legacy,
  .page-home .home-bento__member,
  .page-home .home-bento__table {
    grid-column: span 12;
  }

  .page-home .hom-s6tp {
    min-height: 480px;
  }

  .page-home .home-leagues__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .home-trust__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .page-home .home-guide__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .page-home .section {
    padding: 48px 0;
  }

  .page-home .home-hero {
    padding: 48px 0 44px;
  }

  .page-home .home-hero__title {
    font-size: 26px;
  }

  .page-home .home-hero__lede {
    font-size: 15px;
  }

  .page-home .home-hero__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .page-home .data-strip-cell {
    min-width: 0;
    padding: 12px 14px;
  }

  .page-home .stat-value {
    font-size: 20px;
  }

  .page-home .section-title {
    font-size: 24px;
  }

  .page-home .section-lede {
    font-size: 15px;
  }

  .page-home .hom-s6tp__content {
    padding: 28px 22px;
  }

  .page-home .hom-s6tp__title {
    font-size: 28px;
  }

  .page-home .hom-s6tp__points {
    grid-template-columns: 1fr;
  }

  .page-home .hom-table__header {
    flex-direction: column;
  }

  .page-home .home-bento__table {
    padding: 24px 18px;
  }

  .page-home .hom-table__foot .btn-sm {
    margin-left: 0;
  }

  .page-home .home-leagues__grid {
    grid-template-columns: 1fr;
  }

  .page-home .home-trust__facts {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .page-home .home-trust__fact {
    padding: 20px 14px;
  }

  .page-home .home-trust__num {
    font-size: 26px;
  }

  .page-home .home-guide__list {
    grid-template-columns: 1fr;
  }
}
