.page-home {
  --home-accent: #39FF88;
  --home-warm: #FF7A1A;
  --home-dark: #080F1E;
  --home-panel: #10233D;
  --home-card: #162A45;
  --home-line: #22344F;
  --home-text: #F5F7FA;
  --home-muted: #B8C3D4;
  --home-sub: #60789A;
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
}

.page-home .breadcrumb {
  position: absolute;
  left: 24px;
  top: 96px;
  z-index: 10;
  color: var(--color-sub);
  font-size: 13px;
  font-family: var(--font-body);
  letter-spacing: .08em;
}

.page-home .breadcrumb .breadcrumb__sep {
  color: var(--color-green);
  margin-right: 8px;
}

.page-home .hero {
  position: relative;
  padding: 132px 0 88px;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(57, 255, 136, .06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(255, 122, 26, .05) 0%, transparent 70%),
    var(--color-bg);
}

.page-home .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57, 255, 136, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 136, .05) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 30% 50%, #000 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 80% at 30% 50%, #000 30%, transparent 100%);
  pointer-events: none;
}

.page-home .hero__inner {
  position: relative;
  z-index: 2;
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: center;
}

.page-home .hero__left {
  padding-left: 0;
}

.page-home .hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-green);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.page-home .hero__eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--color-green);
}

.page-home .hero h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.8vw, 56px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -.01em;
  margin: 0 0 24px;
  max-width: 8em;
}

.page-home .hero h1::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 24px;
  background: linear-gradient(90deg, var(--color-green), transparent);
}

.page-home .hero__lead {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.9;
  color: var(--color-muted);
  margin: 0 0 28px;
  max-width: 34em;
}

.page-home .hero__league-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.page-home .tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--color-text);
  background: var(--color-card);
  border: 1px solid var(--color-line);
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.page-home a.tag:hover {
  background: rgba(57, 255, 136, .12);
  border-color: var(--color-green);
}

.page-home .tag--live {
  background: rgba(57, 255, 136, .12);
  border-color: rgba(57, 255, 136, .5);
  color: var(--color-green);
}

.page-home .tag--hot {
  background: rgba(255, 122, 26, .12);
  border-color: rgba(255, 122, 26, .5);
  color: var(--color-orange);
}

.page-home .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.page-home .btn--primary {
  background: var(--color-green);
  color: #07121F;
  box-shadow: 0 0 32px rgba(57, 255, 136, .18);
}

.page-home .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(57, 255, 136, .28);
}

.page-home .btn--ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-line);
}

.page-home .btn--ghost:hover {
  border-color: rgba(57, 255, 136, .5);
  color: var(--color-green);
}

.page-home .hero__right {
  position: relative;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%, 0 18%);
  background: linear-gradient(145deg, var(--color-panel), var(--color-card));
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: stretch;
  overflow: hidden;
}

.page-home .hero__right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 22, 40, .7) 100%);
  z-index: 1;
  pointer-events: none;
}

.page-home .hero__panel {
  position: relative;
  z-index: 2;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.page-home .hero__panel-label {
  color: var(--color-green);
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 700;
  margin-bottom: 8px;
}

.page-home .hero__panel-stat {
  font-family: var(--font-data);
  font-size: 52px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
  margin: 0;
}

.page-home .hero__panel-stat span {
  font-size: 16px;
  color: var(--color-muted);
  font-weight: 400;
  margin-left: 4px;
}

.page-home .hero__panel-line svg {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 12px 0 8px;
}

.page-home .hero__panel-note {
  color: var(--color-sub);
  font-size: 13px;
  margin-top: 8px;
  letter-spacing: .05em;
}

.page-home .hero__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .28;
  mix-blend-mode: luminosity;
  z-index: 0;
}

.page-home .hero__scroll-hint {
  position: absolute;
  bottom: 24px;
  left: min(1200px, 92%);
  transform: translateX(-100%);
  font-size: 13px;
  color: var(--color-sub);
  letter-spacing: .12em;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.page-home .hero__scroll-hint::after {
  content: "";
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-sub), transparent);
}

.page-home .league-banner {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.page-home .league-banner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
}

.page-home .league-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--color-bg) 100%);
}

.page-home .section {
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 96px 0 48px;
}

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

.page-home .section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-home .section-label::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--color-green);
}

.page-home .section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -.01em;
}

.page-home .section-sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.8;
  margin: 16px 0 0;
  max-width: 42em;
}

.page-home .data-board {
  position: relative;
}

.page-home .data-board::before {
  content: "";
  position: absolute;
  top: 120px;
  left: -60%;
  width: 200%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-line), transparent);
  pointer-events: none;
}

.page-home .data-board__summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.page-home .data-card {
  position: relative;
  background: var(--color-panel);
  padding: 28px 24px;
  border-left: 3px solid var(--color-green);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background .2s ease, transform .2s ease;
}

.page-home .data-card:hover {
  background: var(--color-card);
  transform: translateY(-4px);
}

.page-home .data-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(57, 255, 136, .04));
  pointer-events: none;
}

.page-home .data-card__label {
  color: var(--color-sub);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0;
}

.page-home .data-card .stat {
  font-family: var(--font-data);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  margin: 16px 0 8px;
  color: var(--color-text);
  letter-spacing: -.02em;
}

.page-home .data-card .stat span {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-muted);
}

.page-home .data-card__meta {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.page-home .data-board__tabs {
  border-top: 1px solid var(--color-line);
}

.page-home .tab-bar {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--color-line);
  background: rgba(16, 35, 61, .6);
}

.page-home .tab-bar__item {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 18px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-muted);
  cursor: pointer;
  letter-spacing: .04em;
  position: relative;
  transition: color .18s ease;
}

.page-home .tab-bar__item::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -1px;
  height: 3px;
  background: var(--color-green);
  opacity: 0;
  transform: scaleX(.4);
  transition: opacity .2s ease, transform .2s ease;
}

.page-home .tab-bar__item:hover {
  color: var(--color-text);
}

.page-home .tab-bar__item.is-active {
  color: var(--color-green);
}

.page-home .tab-bar__item.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.page-home .tab-panel {
  padding: 40px 0 16px;
}

.page-home .tab-panel[hidden] {
  display: none;
}

.page-home .board-list {
  display: flex;
  flex-direction: column;
}

.page-home .board-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 32px 12px;
  border-bottom: 1px solid var(--color-line);
  transition: background .18s ease;
}

.page-home .board-item:hover {
  background: rgba(57, 255, 136, .03);
}

.page-home .board-item__rank {
  font-family: var(--font-data);
  font-style: normal;
  font-size: 28px;
  color: var(--color-sub);
  font-weight: 700;
  opacity: .8;
}

.page-home .board-item__tag {
  font-size: 12px;
  color: var(--color-green);
  font-weight: 700;
  letter-spacing: .08em;
  margin: 0 0 6px;
  text-transform: uppercase;
}

.page-home .board-item__tag--orange {
  color: var(--color-orange);
}

.page-home .board-item__title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.35;
}

.page-home .board-item__desc {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.page-home .board-item__data {
  text-align: right;
  min-width: 120px;
}

.page-home .board-item__data .stat {
  font-family: var(--font-data);
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  color: var(--color-green);
  line-height: 1;
}

.page-home .board-item__data .stat--orange {
  color: var(--color-orange);
}

.page-home .board-item__note {
  font-size: 13px;
  color: var(--color-sub);
  margin-top: 8px;
  letter-spacing: .03em;
}

.page-home .hot-league {
  position: relative;
}

.page-home .hot-league__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.page-home .hot-grid-card {
  background: var(--color-panel);
  padding: 32px 28px;
  border: 1px solid var(--color-line);
  position: relative;
  overflow: hidden;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.page-home .hot-grid-card:hover {
  border-color: rgba(57, 255, 136, .4);
  transform: translateY(-4px);
  background: var(--color-card);
}

.page-home .hot-grid-card--main {
  grid-column: span 2;
  margin-right: 4%;
  padding-bottom: 28px;
}

.page-home .hot-grid-card--main::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(225deg, rgba(57, 255, 136, .2), transparent 80%);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.page-home .hot-grid-card__label {
  color: var(--color-green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.page-home .hot-grid-card__title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 16px;
}

.page-home .hot-grid-card__desc {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 16px;
}

.page-home .hot-grid-card__meta {
  color: var(--color-sub);
  font-size: 13px;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--color-line);
}

.page-home .hot-grid-card__meta--orange {
  color: var(--color-orange);
}

.page-home .hot-grid-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-home .hot-grid-card__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px dashed var(--color-line);
  padding-bottom: 8px;
  font-size: 14px;
  color: var(--color-muted);
}

.page-home .hot-grid-card__list .stat {
  font-family: var(--font-data);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
}

.page-home .hot-grid-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .hot-grid-card__foot .btn {
  padding: 10px 18px;
  font-size: 14px;
}

.page-home .hot-league__img-row {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: stretch;
}

.page-home .hot-league__img-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 420px;
  display: block;
}

.page-home .hot-league__img-row-note {
  background: linear-gradient(180deg, var(--color-panel), var(--color-bg));
  border-left: 3px solid var(--color-green);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.page-home .hot-league__img-row-note p:last-child {
  color: var(--color-muted);
  line-height: 1.7;
  font-size: 15px;
  margin: 0;
}

.page-home .device-scene__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.page-home .device-card {
  background: var(--color-panel);
  border-top: 3px solid var(--color-green);
  padding: 40px 36px;
  position: relative;
}

.page-home .device-card--desktop {
  border-top-color: var(--color-orange);
}

.page-home .device-card__header {
  margin-bottom: 20px;
}

.page-home .device-card__header .tag {
  margin-bottom: 12px;
}

.page-home .device-card__title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  margin: 12px 0 0;
  line-height: 1.3;
}

.page-home .device-card__lead {
  font-size: 16px;
  color: var(--color-green);
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-line);
}

.page-home .device-card--desktop .device-card__lead {
  color: var(--color-orange);
}

.page-home .device-card__block {
  margin-bottom: 24px;
}

.page-home .device-card__block-label {
  color: var(--color-text);
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 8px;
}

.page-home .device-card__block p:last-child {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}

.page-home .device-card__link a {
  color: var(--color-green);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border-bottom: 2px solid rgba(57, 255, 136, .3);
  padding-bottom: 4px;
  transition: border-color .2s ease;
}

.page-home .device-card__link a:hover {
  border-color: var(--color-green);
}

.page-home .device-card--desktop .device-card__link a {
  color: var(--color-orange);
  border-bottom-color: rgba(255, 122, 26, .3);
}

.page-home .device-card--desktop .device-card__link a:hover {
  border-color: var(--color-orange);
}

.page-home .device-scene__note {
  margin-top: 32px;
  padding: 24px 28px;
  border-left: 3px solid var(--color-line);
  color: var(--color-muted);
  line-height: 1.8;
  font-size: 14px;
  background: rgba(16, 35, 61, .4);
}

.page-home .updates-section {
  padding-bottom: 0;
}

.page-home .updates-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
}

.page-home .update-log {
  position: relative;
  display: flex;
  flex-direction: column;
}

.page-home .update-entry {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 20px;
  padding: 28px 0 28px 0;
  border-bottom: 1px solid var(--color-line);
}

.page-home .update-entry__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-line);
  border: 2px solid var(--color-sub);
  margin-top: 8px;
}

.page-home .update-entry--live .update-entry__dot {
  background: var(--color-green);
  border-color: var(--color-green);
  box-shadow: 0 0 16px rgba(57, 255, 136, .4);
}

.page-home .update-entry__tag {
  display: inline-block;
  margin-bottom: 10px;
}

.page-home .update-entry__title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.4;
}

.page-home .update-entry__desc {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}

.page-home .updates-side__card {
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  padding: 28px 24px;
  margin-bottom: 24px;
}

.page-home .updates-side__title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px;
}

.page-home .updates-side__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .updates-side__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--color-muted);
  flex-wrap: wrap;
}

.page-home .updates-side__list .tag {
  padding: 4px 10px;
  font-size: 11px;
}

.page-home .updates-side img {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: cover;
  display: block;
  border: 1px solid var(--color-line);
}

.page-home .trust-strip {
  margin-top: 96px;
  background: linear-gradient(120deg, var(--color-panel), var(--color-bg) 60%);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  padding: 48px 0;
}

.page-home .trust-strip {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 48px max(4vw, calc((100% - 1200px) / 2));
}

.page-home .trust-strip__text {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.9;
  max-width: 56em;
  margin: 0;
  flex: 1;
  min-width: 260px;
}

.page-home .trust-strip__links {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
}

.page-home .trust-strip__links a {
  color: var(--color-green);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border-bottom: 2px solid rgba(57, 255, 136, .25);
  padding-bottom: 2px;
  transition: border-color .2s ease;
}

.page-home .trust-strip__links a:hover {
  border-color: var(--color-green);
}

@media (max-width: 1024px) {
  .page-home .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-home .hero {
    padding-top: 110px;
  }

  .page-home .hero__right {
    min-height: 420px;
  }

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

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

  .page-home .hot-grid-card--main {
    grid-column: span 2;
    margin-right: 0;
  }

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

  .page-home .updates-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .page-home .updates-side img {
    max-height: 220px;
  }
}

@media (max-width: 720px) {
  .page-home .breadcrumb {
    top: 84px;
    left: 16px;
  }

  .page-home .hero {
    padding: 100px 0 64px;
  }

  .page-home .hero__inner {
    gap: 36px;
  }

  .page-home .hero h1 {
    font-size: 30px;
  }

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

  .page-home .hero__right {
    min-height: 380px;
  }

  .page-home .hero__panel-stat {
    font-size: 40px;
  }

  .page-home .hero__scroll-hint {
    display: none;
  }

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

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

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

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

  .page-home .data-card {
    min-height: 160px;
  }

  .page-home .tab-bar {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .page-home .tab-bar::-webkit-scrollbar {
    display: none;
  }

  .page-home .tab-bar__item {
    flex-shrink: 0;
    padding: 16px 20px;
    font-size: 14px;
  }

  .page-home .board-item {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding: 24px 0;
  }

  .page-home .board-item__data {
    grid-column: 2;
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
  }

  .page-home .board-item__data .stat {
    font-size: 28px;
  }

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

  .page-home .hot-grid-card--main {
    grid-column: span 1;
    margin-right: 0;
  }

  .page-home .hot-league__img-row {
    grid-template-columns: 1fr;
  }

  .page-home .hot-league__img-row-note {
    padding: 24px;
  }

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

  .page-home .device-card {
    padding: 32px 24px;
  }

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

  .page-home .trust-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 6%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    transition: none !important;
    transform: none !important;
    animation: none !important;
  }
}

.page-home [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .28s ease var(--ease), transform .28s ease var(--ease);
}

.page-home [data-reveal][data-revealed="true"] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .page-home [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
