.page-home {
  --home-orange: #FF4F1A;
  --home-deep: #0A1D3A;
  --home-lime: #A3FF12;
  --home-signal: #F5F7FA;
  --home-blue: #264D7E;
  --home-teal: #00C2D7;
  --home-peach: #FFD1B8;
  --home-line: #D0D7E2;
  --home-ink: #121212;
  font-family: var(--font-body);
  color: var(--home-ink);
  background: var(--home-signal);
}

.page-home section[id],
.page-home div[id] {
  scroll-margin-top: 84px;
}

.page-home .breadcrumbs {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 24px 0 16px;
  color: rgba(255, 255, 255, 0.85);
}

.page-home .breadcrumbs a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.page-home .breadcrumbs a:hover {
  color: var(--home-lime);
}

.page-home .home-hero {
  background: var(--home-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 42px), 0 100%);
}

.page-home .hero-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 62%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.22;
  filter: blur(3px);
  pointer-events: none;
  z-index: 1;
}

.page-home .hero-coordinate-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(163, 255, 18, 0.09) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(163, 255, 18, 0.09) 1px, transparent 1px);
  background-size: 44px 44px;
}

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

.page-home .hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 28px 0 84px;
}

.page-home .hero-main {
  background: linear-gradient(140deg, var(--home-blue) 0%, var(--home-deep) 100%);
  border: 2px solid rgba(255, 255, 255, 0.34);
  padding: 30px 24px;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-home .hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--home-lime);
}

.page-home .hero-version-block {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .hero-count {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(64px, 12vw, 112px);
  line-height: 1;
  color: var(--home-orange);
  letter-spacing: -0.04em;
}

.page-home .hero-count-unit {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-home .hero-fixed-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--home-orange);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  padding: 6px 14px;
  letter-spacing: 0.06em;
}

.page-home .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  background: var(--home-lime);
  animation: homePulse 2s ease-in-out infinite;
}

@keyframes homePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.page-home .home-hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.12;
  margin: 4px 0 0;
}

.page-home .hero-desc {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  max-width: 680px;
}

.page-home .hero-desc strong {
  color: var(--home-lime);
  font-weight: 600;
}

.page-home .hero-desc-sub {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.page-home .home-hero .button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #fff;
  background: transparent;
}

.page-home .home-hero .button--ghost:hover {
  border-color: var(--home-lime);
  color: var(--home-lime);
}

.page-home .hero-status-tag {
  background: var(--home-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 16px) 100%, 0 100%);
  min-height: 76px;
}

.page-home .hero-status-tag .status-dot {
  background: #fff;
}

.page-home .hero-version-code {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.22);
  padding: 4px 8px;
}

.page-home .hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 18px 20px 20px;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  transition: background 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.page-home .hero-card:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--home-lime);
  transform: translateY(-2px);
}

.page-home .hero-card-index {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--home-lime);
  letter-spacing: 0.08em;
}

.page-home .hero-card h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  margin: 6px 0 0;
}

.page-home .hero-card p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.page-home .hero-card-link {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--home-orange);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.page-home .hero-card-link:hover {
  color: var(--home-lime);
}

.page-home .home-data-strip {
  background: var(--home-deep);
  border-bottom: 3px solid var(--home-lime);
  padding: 16px 0;
  color: #fff;
}

.page-home .home-data-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
}

.page-home .home-data-strip-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
}

.page-home .data-strip-label {
  color: var(--home-lime);
  letter-spacing: 0.12em;
  margin-right: 6px;
  text-transform: uppercase;
}

.page-home .home-data-strip-links a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 5px 10px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.page-home .home-data-strip-links a:hover {
  color: var(--home-lime);
  border-color: var(--home-lime);
}

.page-home .home-data-strip-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-home .data-strip-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--home-lime);
  background: rgba(163, 255, 18, 0.12);
  border: 1px solid rgba(163, 255, 18, 0.32);
  padding: 3px 10px;
  letter-spacing: 0.06em;
}

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

.page-home .section-index {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--home-teal);
  display: block;
  text-transform: uppercase;
}

.page-home .section-tag {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--home-orange);
  display: block;
  margin-top: 8px;
}

.page-home .home-section h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.16;
  margin: 14px 0 16px;
}

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

.page-home .home-section-left p {
  font-size: 15px;
  line-height: 1.8;
  margin: 14px 0;
  color: #3d4756;
}

.page-home .home-section-left p strong {
  color: var(--home-deep);
}

.page-home .fix-list {
  list-style: none;
  margin: 28px 0 32px;
  padding: 0;
  border-top: 2px solid var(--home-line);
}

.page-home .fix-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--home-line);
  font-size: 14px;
  line-height: 1.6;
}

.page-home .fix-list li::before {
  content: "▸";
  color: var(--home-orange);
  font-weight: 700;
  flex-shrink: 0;
}

.page-home .fix-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .home-section-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.page-home .fix-visual {
  max-width: 280px;
  width: 100%;
}

.page-home .fix-visual img {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: cover;
  border: 2px solid var(--home-line);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(10, 29, 58, 0.2);
}

.page-home .fix-visual-caption {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--home-deep);
  background: var(--home-signal);
  border: 1px solid var(--home-line);
  padding: 8px 14px;
}

.page-home .caption-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--home-orange);
  display: inline-block;
}

.page-home .home-entry {
  background: var(--home-deep);
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 0 100%);
}

.page-home .home-entry .section-index {
  color: var(--home-lime);
}

.page-home .home-entry .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.page-home .home-entry h2 {
  color: #fff;
}

.page-home .entry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding-bottom: 64px;
}

.page-home .entry-card {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #fff;
  min-height: 240px;
  position: relative;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
}

.page-home .entry-card:hover {
  transform: translateY(-4px);
  border-color: var(--home-lime);
  background: rgba(255, 255, 255, 0.12);
}

.page-home .entry-card-code {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--home-lime);
  letter-spacing: 0.1em;
}

.page-home .entry-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  margin: 14px 0 10px;
}

.page-home .entry-card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.page-home .entry-card-meta {
  margin-top: auto;
  padding-top: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
}

.page-home .entry-card-arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 20px;
  color: var(--home-orange);
  transition: transform 0.24s ease;
}

.page-home .entry-card:hover .entry-card-arrow {
  transform: translateX(4px);
}

.page-home .home-compare {
  background: var(--home-peach);
  padding: 72px 0;
}

.page-home .home-compare .section-index {
  color: var(--home-orange);
}

.page-home .compare-lead {
  font-size: 16px;
  line-height: 1.8;
  color: #3d4756;
  max-width: 820px;
  margin-bottom: 36px;
}

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

.page-home .compare-visual {
  background: #fff;
  border: 2px solid var(--home-line);
  padding: 14px;
  box-shadow: 0 6px 18px rgba(18, 18, 18, 0.06);
}

.page-home .compare-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.page-home .compare-visual-caption {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--home-deep);
  padding: 12px 4px 0;
  letter-spacing: 0.04em;
}

.page-home .compare-demo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.page-home .compare-demo-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--home-deep);
}

.page-home .compare-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--home-deep);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px 6px;
  font-family: var(--font-mono);
  font-size: 12px;
}

.page-home .compare-switch-option--old {
  color: rgba(255, 255, 255, 0.5);
}

.page-home .compare-switch-slider {
  width: 36px;
  height: 14px;
  background: var(--home-orange);
  border-radius: 999px;
  position: relative;
}

.page-home .compare-switch-slider::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  top: 2px;
  left: 2px;
}

.page-home .compare-switch-option--new {
  color: var(--home-lime);
}

.page-home .compare-screens {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-home .compare-screen {
  background: #fff;
  border: 2px solid var(--home-line);
  padding: 24px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .compare-screen--old {
  background: #e8edf4;
  border-color: #b7c2d0;
}

.page-home .compare-screen--new {
  border-color: var(--home-orange);
  position: relative;
}

.page-home .compare-screen--new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--home-orange);
}

.page-home .screen-code {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7b8794;
}

.page-home .screen-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(163, 255, 18, 0.3);
  color: #0a5f10;
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  align-self: flex-start;
}

.page-home .screen-live .live-dot {
  background: var(--home-lime);
}

.page-home .screen-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--home-deep);
}

.page-home .screen-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #526070;
  margin: 0;
}

.page-home .screen-list {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  border-top: 1px solid var(--home-line);
}

.page-home .screen-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--home-line);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--home-deep);
}

.page-home .home-channel {
  background: var(--home-deep);
  color: #fff;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

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

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

.page-home .home-channel .section-index {
  color: var(--home-lime);
}

.page-home .home-channel h2 {
  color: #fff;
}

.page-home .home-channel .channel-info p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.page-home .channel-fact-notes {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
  border-left: 3px solid var(--home-teal);
  padding-left: 14px;
  line-height: 1.8;
}

.page-home .channel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.page-home .home-channel .button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  background: transparent;
}

.page-home .home-channel .button--ghost:hover {
  border-color: var(--home-lime);
  color: var(--home-lime);
}

.page-home .channel-status-panel {
  background: rgba(255, 255, 255, 0.09);
  border: 2px solid rgba(255, 255, 255, 0.24);
  padding: 28px;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-home .channel-status-head {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding-bottom: 16px;
}

.page-home .channel-status-head .status-dot {
  background: var(--home-lime);
}

.page-home .channel-status-head strong {
  font-family: var(--font-heading);
  font-size: 16px;
}

.page-home .channel-status-time {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--home-lime);
}

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

.page-home .channel-status-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.86);
}

.page-home .channel-status-list li strong {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--home-lime);
}

.page-home .channel-status-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.56);
  margin: 0;
  line-height: 1.6;
}

.page-home .home-leagues {
  background: var(--home-signal);
}

.page-home .league-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

.page-home .league-block {
  background: #fff;
  border: 2px solid var(--home-line);
  padding: 28px;
  position: relative;
  box-shadow: 0 4px 12px rgba(18, 18, 18, 0.04);
  display: flex;
  flex-direction: column;
}

.page-home .league-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--home-blue);
}

.page-home .league-block--basketball::before {
  background: var(--home-orange);
}

.page-home .league-block-index {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--home-teal);
  letter-spacing: 0.1em;
}

.page-home .league-block-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--home-deep);
  margin-top: 8px;
}

.page-home .league-block-desc {
  font-size: 14px;
  color: #526070;
  margin: 10px 0 6px;
}

.page-home .league-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 20px;
  border-top: 1px solid var(--home-line);
}

.page-home .league-list li {
  border-bottom: 1px solid var(--home-line);
}

.page-home .league-list a {
  display: block;
  padding: 11px 0;
  text-decoration: none;
  color: var(--home-ink);
  font-size: 14px;
  font-family: var(--font-mono);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.page-home .league-list a:hover {
  color: var(--home-orange);
  padding-left: 6px;
}

.page-home .league-block-num {
  margin-top: auto;
  align-self: flex-start;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  background: var(--home-blue);
  padding: 4px 12px;
}

.page-home .league-block--basketball .league-block-num {
  background: var(--home-orange);
}

.page-home .league-visual {
  display: block;
  width: 100%;
  height: auto;
  max-width: 900px;
  margin: 32px auto 0;
  border: 2px solid var(--home-line);
  background: #fff;
}

.page-home .home-updates {
  background: var(--home-deep);
  color: #fff;
}

.page-home .home-updates .section-index {
  color: var(--home-lime);
}

.page-home .home-updates h2 {
  color: #fff;
}

.page-home .home-updates .section-desc {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

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

.page-home .updates-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .updates-info .button {
  align-self: flex-start;
}

.page-home .updates-cert {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 14px;
  line-height: 1.7;
}

.page-home .updates-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 2px solid rgba(255, 255, 255, 0.22);
}

.page-home .updates-list li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.page-home .update-version {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--home-lime);
  letter-spacing: 0.06em;
}

.page-home .update-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: #fff;
}

.page-home .update-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.page-home .update-cat {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.18);
  align-self: flex-start;
  padding: 3px 8px;
}

.page-home .home-trust-strip {
  background: var(--home-deep);
  color: rgba(255, 255, 255, 0.74);
  padding: 26px 0;
  border-top: 4px solid var(--home-lime);
  font-size: 14px;
  line-height: 1.8;
}

.home-trust-strip .container p {
  margin: 0;
}

.page-home .home-toc-side {
  display: none;
}

.js .page-home [data-reveal] {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.js .page-home [data-reveal][data-visible] {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .page-home .hero-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
  }

  .page-home .hero-card {
    min-height: 150px;
  }

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

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

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

  .page-home .updates-list li {
    grid-template-columns: 110px 1fr 1fr 110px;
    align-items: center;
  }
}

@media (min-width: 992px) {
  .page-home .hero-main {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
    padding: 44px 40px;
  }

  .page-home .hero-status-tag {
    grid-column: 5 / 7;
    grid-row: 1;
  }

  .page-home .hero-card--match {
    grid-column: 5 / 6;
    grid-row: 2;
  }

  .page-home .hero-card--compare {
    grid-column: 6 / 7;
    grid-row: 2;
  }

  .page-home .hero-card--league {
    grid-column: 1 / 3;
    grid-row: 3;
  }

  .page-home .hero-card--teams {
    grid-column: 3 / 5;
    grid-row: 3;
  }

  .page-home .hero-card--latency {
    grid-column: 5 / 7;
    grid-row: 3;
  }

  .page-home .hero-main {
    min-height: 520px;
  }

  .page-home .hero-status-tag {
    min-height: 110px;
  }

  .page-home .hero-card {
    min-height: 200px;
    padding: 22px;
  }

  .page-home .hero-card h2 {
    font-size: 22px;
  }

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

  .page-home .home-section-grid {
    grid-template-columns: 7fr 5fr;
    align-items: center;
  }

  .page-home .compare-layout {
    grid-template-columns: 5fr 7fr;
    align-items: center;
  }

  .page-home .channel-grid {
    grid-template-columns: 6fr 5fr;
    align-items: center;
  }

  .page-home .updates-grid {
    grid-template-columns: 4fr 8fr;
    gap: 56px;
  }
}

@media (min-width: 1600px) {
  .page-home .home-toc-side {
    display: flex;
    position: fixed;
    top: 140px;
    right: 28px;
    width: 210px;
    flex-direction: column;
    gap: 10px;
    z-index: 30;
    background: rgba(255, 255, 255, 0.96);
    border: 2px solid var(--home-line);
    padding: 16px;
    box-shadow: 0 6px 18px rgba(18, 18, 18, 0.1);
    font-family: var(--font-mono);
    font-size: 12px;
  }

  .page-home .home-toc-side-title {
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--home-orange);
    border-bottom: 1px solid var(--home-line);
    padding-bottom: 8px;
    text-transform: uppercase;
  }

  .page-home .home-toc-side a {
    color: var(--home-deep);
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.2s ease;
  }

  .page-home .home-toc-side a:hover {
    color: var(--home-orange);
  }
}
