.page-home {
  --home-grid-soft: rgba(0, 212, 255, 0.14);
  --home-grid-soft-dark: rgba(0, 212, 255, 0.2);
  --home-line-gray: rgba(10, 31, 68, 0.13);
  --home-deep-bg: rgba(10, 31, 68, 0.55);
  background: var(--cold-gray);
  color: var(--ink);
  overflow-x: hidden;
}

.page-home .breadcrumb {
  margin-bottom: 22px;
  color: rgba(243, 245, 247, 0.72);
  font-size: 14px;
}

.page-home .container {
  position: relative;
  z-index: 2;
}

.page-home .section-label {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--deep-blue);
}

.page-home .section-label--orange {
  color: var(--ff-orange);
}

.page-home .section-label--lime {
  color: var(--neon-lime);
}

.page-home .home-section-head {
  max-width: 780px;
  margin-bottom: 2.5rem;
}

.page-home .home-section-head h2 {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0.4rem 0 0.8rem;
  color: var(--deep-blue);
}

.page-home .home-section-head__desc {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--ink);
}

.page-home .home-section-head a {
  color: var(--ff-orange);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--neon-lime);
  text-underline-offset: 4px;
}

.page-home .home-hero {
  position: relative;
  background: var(--deep-blue);
  color: var(--cold-gray);
  padding: clamp(48px, 8vw, 110px) 0 clamp(76px, 10vw, 120px);
  overflow: hidden;
}

.page-home .home-hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--home-grid-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--home-grid-soft) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.6;
}

.page-home .home-hero__grid::before {
  content: "";
  position: absolute;
  right: -12%;
  top: -25%;
  width: 68%;
  height: 160%;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 107, 0, 0.2) 43%, transparent 47%);
  transform: rotate(-8deg);
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 86px;
  background: var(--cold-gray);
  clip-path: polygon(0 100%, 100% 30%, 100% 100%);
  z-index: 1;
  pointer-events: none;
}

.page-home .home-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: center;
}

.page-home .home-hero__copy {
  position: relative;
  z-index: 2;
}

.page-home .home-hero h1 {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(2.35rem, 8.4vw, 5.1rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 0.5rem 0 1.1rem;
  color: var(--cold-gray);
}

.page-home .home-hero h1 span {
  display: block;
  color: var(--ff-orange);
}

.page-home .home-hero__lead {
  font-size: 1.08rem;
  line-height: 1.9;
  max-width: 34em;
  color: rgba(243, 245, 247, 0.84);
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2rem;
}

.page-home .home-hero__actions .btn {
  min-width: 208px;
  justify-content: center;
}

.page-home .home-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 2.8rem;
  border-top: 1px solid var(--home-grid-soft-dark);
  padding-top: 24px;
}

.page-home .home-hero__stat {
  display: grid;
  gap: 2px;
}

.page-home .home-hero__stat-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--neon-lime);
  line-height: 1;
}

.page-home .home-hero__stat-label {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(243, 245, 247, 0.7);
}

.page-home .home-hero__visual {
  position: relative;
  z-index: 2;
  min-height: 280px;
}

.page-home .home-hero__figure {
  position: relative;
  z-index: 1;
  margin: 0;
  clip-path: polygon(12% 0, 100% 0, 100% 90%, 0 100%);
  overflow: hidden;
}

.page-home .home-hero__figure img {
  display: block;
  width: 100%;
  height: clamp(300px, 44vw, 540px);
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.25) contrast(1.12);
}

.page-home .home-hero__figure figcaption,
.page-home .home-leagues__figure figcaption,
.page-home .home-export__figure figcaption,
.page-home .home-journal__figure figcaption {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 12px;
  background: rgba(7, 20, 40, 0.65);
  color: var(--electric-blue);
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.page-home .home-hero__pitch {
  position: absolute;
  right: -6%;
  bottom: -12%;
  width: 80%;
  height: auto;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 0 16px rgba(0, 212, 255, 0.22));
}

.page-home .home-hero__score {
  position: absolute;
  z-index: 4;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 7px 12px 7px 18px;
  background: var(--ink);
  color: var(--neon-lime);
  border: 1px solid var(--neon-lime);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.28);
}

.page-home .home-hero__score::before {
  content: "●";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ff-orange);
  font-size: 9px;
}

.page-home .home-hero__score--one {
  top: 8%;
  left: 0;
}

.page-home .home-hero__score--two {
  top: 74%;
  right: 2%;
  left: auto;
}

.page-home .home-hero__ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  background: var(--ff-orange);
  color: var(--deep-blue);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  padding: 9px 0;
  overflow: hidden;
  white-space: nowrap;
}

.page-home .home-hero__ticker-track {
  display: flex;
  width: max-content;
  animation: page-home-ticker 34s linear infinite;
}

.page-home .home-hero__ticker-track span {
  white-space: nowrap;
  padding: 0 26px;
  border-left: 1px solid rgba(7, 20, 40, 0.28);
}

.page-home .home-leagues {
  position: relative;
  background-image:
    linear-gradient(rgba(10, 31, 68, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 31, 68, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  background-color: var(--cold-gray);
  padding: clamp(58px, 9vw, 120px) 0;
}

.page-home .home-leagues__tabs {
  margin: 2.2rem 0 0;
}

.page-home .home-leagues__radio,
.page-home .home-export__radio,
.page-home .home-bookmark__radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}

.page-home .home-leagues__tabbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: 2px solid var(--home-line-gray);
  padding-bottom: 14px;
  margin-bottom: 20px;
}

.page-home .home-leagues__tab {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  padding: 9px 18px;
  background: var(--deep-blue);
  color: #ffffff;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.page-home .home-leagues__tab:hover,
.page-home .home-leagues__tab:focus-visible {
  background: var(--deep-blue);
  color: var(--neon-lime);
  border-color: var(--electric-blue);
}

.page-home .home-leagues__radio:checked ~ .home-leagues__tabbar label[for="league-epl"],
.page-home .home-leagues__radio:checked ~ .home-leagues__tabbar label[for="league-laliga"],
.page-home .home-leagues__radio:checked ~ .home-leagues__tabbar label[for="league-bundesliga"],
.page-home .home-leagues__radio:checked ~ .home-leagues__tabbar label[for="league-seriea"],
.page-home .home-leagues__radio:checked ~ .home-leagues__tabbar label[for="league-ligue1"] {
  background: var(--ff-orange);
  color: var(--deep-blue);
  border-color: var(--ff-orange);
}

.page-home .home-leagues__radio:focus-visible ~ .home-leagues__tabbar label {
  outline: 2px solid var(--electric-blue);
  outline-offset: 2px;
}

.page-home .home-leagues__panel {
  display: none;
  padding: 20px 18px;
  margin-bottom: 28px;
  border: 1px solid var(--home-line-gray);
  border-left: 4px solid var(--ff-orange);
  background: #ffffff;
}

.page-home .home-leagues__radio:checked ~ .home-leagues__panels .home-leagues__panel--epl,
.page-home .home-leagues__radio:checked ~ .home-leagues__panels .home-leagues__panel--laliga,
.page-home .home-leagues__radio:checked ~ .home-leagues__panels .home-leagues__panel--bundesliga,
.page-home .home-leagues__radio:checked ~ .home-leagues__panels .home-leagues__panel--seriea,
.page-home .home-leagues__radio:checked ~ .home-leagues__panels .home-leagues__panel--ligue1 {
  display: block;
}

.page-home .home-leagues__match-list {
  margin-bottom: 18px;
}

.page-home .home-leagues__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 10px 2px;
  border-bottom: 1px dashed var(--home-line-gray);
  font-size: 15px;
}

.page-home .home-leagues__club {
  flex: 1 1 180px;
  font-weight: 700;
  color: var(--deep-blue);
}

.page-home .home-leagues__result {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--ink);
  min-width: 48px;
  text-align: right;
}

.page-home .home-leagues__state {
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 4px 9px;
  background: var(--deep-blue);
  color: #ffffff;
  white-space: nowrap;
}

.page-home .home-leagues__state--live {
  background: var(--ff-orange);
  color: var(--deep-blue);
  animation: page-home-pulse 1.5s ease-in-out infinite;
}

.page-home .home-leagues__state--ready {
  background: var(--dark-purple);
  color: #ffffff;
}

.page-home .home-leagues__table-scroll,
.page-home .home-archive__table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.page-home .data-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 14px;
  min-width: 460px;
}

.page-home .data-table th {
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--deep-blue);
  border-bottom: 2px solid var(--ff-orange);
  padding: 10px 8px;
}

.page-home .data-table td {
  padding: 10px 8px;
  border-bottom: 1px solid rgba(10, 31, 68, 0.1);
  color: var(--ink);
}

.page-home .data-table td:last-child,
.page-home .data-table th:last-child {
  text-align: right;
}

.page-home .data-table--dark th {
  border-color: var(--neon-lime);
  color: var(--neon-lime);
}

.page-home .data-table--dark td {
  border-color: rgba(198, 255, 0, 0.16);
  color: rgba(243, 245, 247, 0.9);
}

.page-home .home-leagues__points {
  color: var(--ff-orange);
  font-weight: 700;
}

.page-home .home-leagues__figure {
  margin-top: 20px;
  max-width: 900px;
  border-top: 4px solid var(--deep-blue);
  padding-top: 22px;
}

.page-home .home-leagues__figure .media-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.page-home .home-export {
  position: relative;
  background: var(--night-blue);
  color: var(--cold-gray);
  padding: clamp(60px, 9vw, 120px) 0;
  border-top: 8px solid var(--ff-orange);
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.page-home .home-export__container {
  z-index: 1;
}

.page-home .home-export .home-section-head h2 {
  color: #ffffff;
}

.page-home .home-export .home-section-head p {
  color: rgba(243, 245, 247, 0.78);
}

.page-home .home-export__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  margin-top: 2.6rem;
}

.page-home .home-export__steps-list {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: grid;
  gap: 16px;
}

.page-home .home-export__steps-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  background: var(--home-deep-bg);
  border-left: 3px solid var(--electric-blue);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(243, 245, 247, 0.9);
}

.page-home .home-export__step-num {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--neon-lime);
}

.page-home .home-export__selector {
  max-width: 480px;
  padding: 20px;
  background: rgba(243, 245, 247, 0.04);
  border: 1px dashed var(--electric-blue);
}

.page-home .home-export__formatbar {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.page-home .home-export__format-btn {
  flex: 1;
  text-align: center;
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  color: var(--cold-gray);
  border: 1px solid rgba(243, 245, 247, 0.32);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.page-home .home-export__format-btn:hover,
.page-home .home-export__format-btn:focus-visible {
  border-color: var(--neon-lime);
  color: var(--neon-lime);
}

.page-home .home-export__radio:checked ~ .home-export__formatbar label[for="format-csv"],
.page-home .home-export__radio:checked ~ .home-export__formatbar label[for="format-pdf"] {
  background: var(--ff-orange);
  color: var(--deep-blue);
  border-color: var(--ff-orange);
}

.page-home .home-export__radio:focus-visible ~ .home-export__formatbar label {
  outline: 2px solid var(--neon-lime);
  outline-offset: 2px;
}

.page-home .home-export__selected-tip {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--neon-lime);
  margin: 0 0 8px;
}

.page-home .home-export__selected-tip--pdf {
  display: none;
}

.page-home .home-export__radio:checked ~ .home-export__selected-tip--pdf {
  display: block;
}

.page-home .home-export__radio:checked ~ .home-export__selected-tip:not(.home-export__selected-tip--pdf) {
  display: none;
}

.page-home .home-export__go {
  display: inline-block;
  margin-top: 10px;
  padding: 11px 20px;
  background: var(--neon-lime);
  color: var(--night-blue);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid var(--neon-lime);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.page-home .home-export__go:hover {
  background: transparent;
  color: var(--neon-lime);
  box-shadow: inset 0 0 0 2px var(--neon-lime);
}

.page-home .home-export__figure .media-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.page-home .home-archive {
  background: var(--cold-gray);
  padding: clamp(58px, 9vw, 120px) 0;
  position: relative;
}

.page-home .home-archive__section {
  margin-top: 2.6rem;
}

.page-home .home-archive__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-top: 2.2rem;
}

.page-home .home-archive__stat {
  border-top: 2px solid var(--deep-blue);
  padding-top: 16px;
  margin-bottom: 28px;
}

.page-home .home-archive__stat-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ff-orange);
}

.page-home .home-archive__stat-num {
  display: block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  color: var(--deep-blue);
  margin: 6px 0 2px;
  line-height: 1.1;
}

.page-home .home-archive__stat-sub {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
}

.page-home .home-archive__sample {
  background: var(--deep-blue);
  padding: 24px 20px;
  color: var(--cold-gray);
  border-left: 6px solid var(--neon-lime);
}

.page-home .home-archive__sample-label {
  font-family: var(--font-mono);
  color: var(--neon-lime);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.page-home .home-archive__sample .btn {
  margin-top: 18px;
}

.page-home .home-journal {
  background: var(--night-blue);
  color: var(--cold-gray);
  padding: clamp(56px, 8vw, 110px) 0;
  border-top: 6px solid var(--ff-orange);
}

.page-home .home-journal__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.page-home .home-journal__head h2 {
  color: #ffffff;
}

.page-home .home-journal__head p {
  color: rgba(243, 245, 247, 0.8);
}

.page-home .home-journal__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .home-journal__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(243, 245, 247, 0.16);
}

.page-home .home-journal__link {
  flex: 1 1 240px;
  color: rgba(243, 245, 247, 0.92);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.06rem;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.page-home .home-journal__link:hover {
  color: var(--neon-lime);
}

.page-home .home-journal__figure {
  max-width: 960px;
}

.page-home .home-journal__figure .media-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.page-home .home-lineups {
  background-image:
    linear-gradient(120deg, rgba(255, 107, 0, 0.3) 0%, rgba(255, 107, 0, 0.05) 38%, transparent 62%),
    linear-gradient(rgba(0, 212, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.07) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  background-color: var(--deep-blue);
  color: #ffffff;
  padding: clamp(56px, 8vw, 110px) 0;
}

.page-home .home-lineups .home-section-head h2 {
  color: #ffffff;
}

.page-home .home-lineups .home-section-head p {
  color: rgba(243, 245, 247, 0.82);
}

.page-home .home-lineups__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 2.2rem 0;
}

.page-home .home-lineups__card {
  display: grid;
  gap: 4px;
  padding: 20px;
  background: rgba(243, 245, 247, 0.07);
  border-top: 3px solid var(--electric-blue);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.page-home .home-lineups__card:hover {
  background: rgba(243, 245, 247, 0.12);
  border-color: var(--neon-lime);
}

.page-home .home-lineups__card h3 {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 1.35rem;
  margin: 0;
}

.page-home .home-lineups__card p {
  font-size: 14px;
  margin: 0;
  color: rgba(243, 245, 247, 0.75);
}

.page-home .home-lineups__count {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--neon-lime);
  margin-top: 8px;
}

.page-home .home-lineups__cta {
  margin-top: 26px;
}

.page-home .home-bookmark {
  background: var(--cold-gray);
  padding: clamp(56px, 8vw, 110px) 0;
  border-bottom: 6px solid var(--ff-orange);
}

.page-home .home-bookmark__inner {
  max-width: 860px;
  padding: clamp(24px, 4vw, 46px);
  border-left: 8px solid var(--ff-orange);
  background-image:
    linear-gradient(90deg, rgba(255, 107, 0, 0.1), transparent 46%),
    linear-gradient(rgba(10, 31, 68, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 31, 68, 0.05) 1px, transparent 1px);
  background-size: auto, 40px 40px, 40px 40px;
}

.page-home .home-bookmark h2 {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(1.8rem, 4.6vw, 3rem);
  line-height: 1.1;
  margin: 0.4rem 0 0.8rem;
  color: var(--deep-blue);
}

.page-home .home-bookmark p {
  line-height: 1.9;
}

.page-home .home-bookmark__action {
  position: relative;
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.page-home .home-bookmark__btn {
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.page-home .home-bookmark__radio:focus-visible ~ .home-bookmark__btn {
  outline: 3px solid var(--dark-purple);
  outline-offset: 3px;
}

.page-home .home-bookmark__radio:checked ~ .home-bookmark__btn {
  background: var(--deep-blue);
  color: var(--neon-lime);
  box-shadow: 0 0 0 2px var(--neon-lime);
}

.page-home .home-bookmark__success {
  display: none;
  margin: 0;
  flex: 1 1 260px;
  font-weight: 700;
  color: var(--deep-blue);
  align-items: center;
  gap: 10px;
}

.page-home .home-bookmark__radio:checked ~ .home-bookmark__success {
  display: flex;
}

.page-home .home-bookmark__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--neon-lime);
  color: var(--deep-blue);
  font-size: 14px;
  font-weight: 900;
  animation: page-home-tick 0.45s cubic-bezier(0.2, 1.3, 0.4, 1) both;
}

.page-home .home-bookmark__help {
  margin-top: 22px;
  font-size: 15px;
  color: var(--ink);
}

.page-home .home-bookmark__help a {
  color: var(--deep-blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--ff-orange);
}

@keyframes page-home-ticker {
  to {
    transform: translateX(-50%);
  }
}

@keyframes page-home-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

@keyframes page-home-tick {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }
  60% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-hero__ticker-track,
  .page-home .home-leagues__state--live {
    animation: none;
  }
  .page-home .home-bookmark__check {
    animation: none;
  }
  .page-home * {
    scroll-behavior: auto !important;
  }
}

@media (min-width: 640px) {
  .page-home .home-hero__stats {
    grid-template-columns: repeat(4, 1fr);
  }

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

@media (min-width: 880px) {
  .page-home .home-hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(30px, 5vw, 70px);
  }

  .page-home .home-export__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(30px, 4vw, 60px);
  }

  .page-home .home-archive__grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(30px, 5vw, 70px);
  }

  .page-home .home-journal__grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(30px, 5vw, 70px);
  }
}

@media (min-width: 1120px) {
  .page-home .home-lineups__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .home-hero__lead {
    font-size: 1.14rem;
  }

  .page-home .home-section-head__desc {
    font-size: 1.06rem;
  }
}
