.page-home {
  --home-orange: #FF6B00;
  --home-orange-dark: #E65100;
  --home-navy: #0B1B3D;
  --home-navy-deep: #070F24;
  --home-lime: #B6FF00;
  --home-bg: #F4F6FA;
  --home-text: #2D3748;
  --home-text-light: #5A6A85;
  --home-white: #FFFFFF;
  --home-card-tint: #E0E8FF;
  --home-radius-lg: 24px;
  --home-radius-md: 16px;
  --home-radius-sm: 10px;
  --home-shadow: 0 8px 24px rgba(11, 27, 61, 0.1);
  --home-shadow-lg: 0 16px 40px rgba(11, 27, 61, 0.16);
  --home-shadow-orange: 0 10px 28px rgba(255, 107, 0, 0.28);
  position: relative;
  background: var(--home-bg);
  color: var(--home-text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.page-home .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-home .container {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}

.page-home .breadcrumbs {
  background: var(--home-bg);
  border-bottom: 1px solid rgba(11, 27, 61, 0.06);
  padding: 14px 0;
  font-size: 14px;
}

.page-home .breadcrumbs-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-home .breadcrumbs a {
  color: var(--home-orange);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s var(--ease);
}

.page-home .breadcrumbs a:hover,
.page-home .breadcrumbs a:focus-visible {
  color: var(--home-orange-dark);
  outline: none;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-home .breadcrumb-sep {
  color: var(--home-text-light);
  opacity: 0.5;
}

.page-home .breadcrumbs [aria-current="page"] {
  color: var(--home-text-light);
  font-weight: 600;
}

.page-home .hero-split {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--home-navy);
  padding-top: 72px;
}

.page-home .hero-label {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  white-space: nowrap;
  background: rgba(11, 27, 61, 0.78);
  color: var(--home-white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 18px rgba(11, 27, 61, 0.3);
  backdrop-filter: blur(4px);
}

.page-home .split-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  padding: 48px 28px;
  overflow: hidden;
}

.page-home .split-legacy {
  background: var(--home-navy);
  color: var(--home-white);
}

.page-home .split-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: saturate(0.82) contrast(1.05);
}

.page-home .split-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 107, 0, 0.2) 0, transparent 30%),
    radial-gradient(circle at 85% 70%, rgba(182, 255, 0, 0.12) 0, transparent 26%),
    linear-gradient(135deg, rgba(7, 15, 36, 0.92) 0%, rgba(11, 27, 61, 0.72) 100%);
  pointer-events: none;
}

.page-home .split-body {
  position: relative;
  z-index: 2;
  max-width: 460px;
}

.page-home .entry-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255, 107, 0, 0.16);
  border: 1px solid rgba(255, 107, 0, 0.5);
  color: #FFB577;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-home .tag-update {
  background: rgba(182, 255, 0, 0.12);
  border-color: rgba(182, 255, 0, 0.5);
  color: var(--home-lime);
}

.page-home .split-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.18;
  font-weight: 800;
  margin: 20px 0 16px;
  letter-spacing: -0.02em;
}

.page-home .split-desc {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 26px;
}

.page-home .split-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}

.page-home .btn-primary {
  background: var(--home-orange);
  color: var(--home-white);
  border-color: var(--home-orange);
  box-shadow: var(--home-shadow-orange);
}

.page-home .btn-primary:hover,
.page-home .btn-primary:focus-visible {
  background: var(--home-orange-dark);
  border-color: var(--home-orange-dark);
  box-shadow: 0 14px 36px rgba(230, 81, 0, 0.32);
  transform: translateY(-2px);
  outline: none;
}

.page-home .btn-outline-light {
  background: transparent;
  color: var(--home-white);
  border-color: rgba(255, 255, 255, 0.6);
}

.page-home .btn-outline-light:hover,
.page-home .btn-outline-light:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--home-white);
  transform: translateY(-2px);
  outline: none;
}

.page-home .split-points {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.page-home .split-points li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--home-text);
}

.page-home .split-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--home-lime);
  box-shadow: 0 2px 8px rgba(182, 255, 0, 0.35);
  clip-path: polygon(38% 65%, 18% 45%, 4% 58%, 38% 92%, 100% 20%, 86% 6%);
}

.page-home .split-modern {
  background: linear-gradient(165deg, var(--home-white) 0%, #FFFFFF 70%, #FFF7F1 100%);
  color: var(--home-text);
}

.page-home .split-modern .split-desc {
  color: var(--home-text-light);
}

.page-home .legacy-corner {
  position: relative;
  z-index: 2;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.page-home .legacy-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.64);
  letter-spacing: 0.02em;
}

.page-home .legacy-corner-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--home-white);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.page-home .legacy-corner-link:hover,
.page-home .legacy-corner-link:focus-visible {
  background: rgba(255, 107, 0, 0.25);
  border-color: var(--home-orange);
  transform: translateY(-2px);
  outline: none;
}

.page-home .legacy-arrow {
  font-size: 16px;
  line-height: 1;
  color: var(--home-lime);
}

.page-home .split-divider {
  position: relative;
  z-index: 3;
  height: 8px;
  background: linear-gradient(90deg, var(--home-orange), var(--home-lime));
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .divider-star {
  display: none;
}

.page-home .panel-tip {
  position: absolute;
  bottom: 34px;
  right: 26px;
  z-index: 12;
  background: var(--home-navy);
  color: var(--home-white);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(11, 27, 61, 0.35);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  pointer-events: none;
}

.page-home .split-panel:hover .panel-tip,
.page-home .split-panel:focus-within .panel-tip {
  opacity: 1;
  transform: translateY(0);
}

.page-home .page-announce {
  background: linear-gradient(120deg, var(--home-navy) 0%, var(--home-navy-deep) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 4px solid var(--home-orange);
  padding: 22px 0;
}

.page-home .announce-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .announce-label {
  flex-shrink: 0;
  align-self: flex-start;
  background: var(--home-orange);
  color: var(--home-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 999px;
}

.page-home .announce-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.86);
}

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

.page-home .section-head {
  margin-bottom: 44px;
  max-width: 680px;
}

.page-home .section-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--home-orange);
  margin-bottom: 12px;
}

.page-home .section-head h2,
.page-home .section-head .section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  font-weight: 800;
  color: var(--home-navy);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.page-home .section-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--home-text-light);
}

.page-home .section-updates {
  background: var(--home-bg);
}

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

.page-home .update-card {
  position: relative;
  background: var(--home-white);
  border: 1px solid rgba(11, 27, 61, 0.06);
  border-radius: var(--home-radius-lg);
  padding: 54px 28px 28px;
  box-shadow: var(--home-shadow);
  transition: box-shadow 0.28s var(--ease), transform 0.28s var(--ease), border-color 0.28s var(--ease);
}

.page-home .update-card:hover,
.page-home .update-card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--home-shadow-lg);
  border-color: rgba(255, 107, 0, 0.4);
}

.page-home .step-num {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--home-navy);
  color: var(--home-lime);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 0 0 4px var(--home-white);
}

.page-home .update-icon {
  color: var(--home-orange);
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.page-home .update-icon svg {
  display: block;
}

.page-home .update-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--home-navy);
  text-align: center;
  margin-bottom: 12px;
}

.page-home .update-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--home-text-light);
  text-align: center;
  margin-bottom: 20px;
}

.page-home .text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--home-orange);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s var(--ease), gap 0.2s var(--ease);
}

.page-home .text-link::after {
  content: "→";
  transition: transform 0.2s var(--ease);
}

.page-home .text-link:hover,
.page-home .text-link:focus-visible {
  color: var(--home-orange-dark);
  outline: none;
}

.page-home .text-link:hover::after,
.page-home .text-link:focus-visible::after {
  transform: translateX(4px);
}

.page-home .updates-figure {
  margin: 52px 0 0;
}

.page-home .updates-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--home-radius-lg);
  box-shadow: var(--home-shadow-lg);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.page-home .updates-figure figcaption {
  margin-top: 14px;
  text-align: center;
  font-size: 14px;
  color: var(--home-text-light);
}

.page-home .section-android {
  background: var(--home-white);
}

.page-home .android-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-home .android-copy .section-desc {
  margin-bottom: 24px;
}

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

.page-home .list-check li {
  position: relative;
  padding-left: 32px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--home-text);
  display: flex;
  align-items: center;
}

.page-home .list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.12);
  border: 1.5px solid var(--home-orange);
  box-shadow: inset 0 0 0 4px var(--home-white);
}

.page-home .android-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.page-home .android-img {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: var(--home-radius-lg);
  box-shadow: var(--home-shadow-lg);
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.page-home .section-account {
  background: linear-gradient(180deg, #F4F6FA 0%, #E0E8FF 100%);
}

.page-home .account-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-home .account-visual {
  display: flex;
  justify-content: center;
}

.page-home .account-img {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--home-radius-lg);
  box-shadow: var(--home-shadow-lg);
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.page-home .account-copy .section-desc {
  margin-bottom: 24px;
}

.page-home .account-copy .text-link {
  margin-top: 6px;
}

.page-home .section-schedule {
  position: relative;
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 107, 0, 0.14) 0, transparent 30%),
    radial-gradient(circle at 88% 85%, rgba(182, 255, 0, 0.1) 0, transparent 26%),
    linear-gradient(150deg, var(--home-navy) 0%, var(--home-navy-deep) 100%);
  color: var(--home-white);
}

.page-home .section-schedule .section-head h2 {
  color: var(--home-white);
}

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

.page-home .section-schedule .section-kicker {
  color: var(--home-lime);
}

.page-home .schedule-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-home .schedule-card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--home-radius-md);
  padding: 22px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.page-home .schedule-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 107, 0, 0.5);
  transform: translateY(-3px);
}

.page-home .schedule-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 64px;
  border-radius: var(--home-radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 6px 10px;
}

.page-home .date-day {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  color: var(--home-white);
}

.page-home .date-month {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.64);
  white-space: nowrap;
}

.page-home .schedule-venue {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 120px;
}

.page-home .venue-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--home-white);
}

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

.page-home .schedule-match {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.page-home .match-team {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.page-home .match-score {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--home-orange);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.page-home .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.page-home .tag-live {
  background: rgba(182, 255, 0, 0.14);
  color: var(--home-lime);
  border: 1px solid rgba(182, 255, 0, 0.4);
}

.page-home .tag-live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--home-lime);
  box-shadow: 0 0 0 0 rgba(182, 255, 0, 0.6);
}

.page-home .tag-ready {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.page-home .schedule-expand {
  width: 100%;
  margin-top: 2px;
}

.page-home .schedule-expand summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--home-lime);
  padding: 4px 0;
  border-radius: 6px;
  transition: color 0.2s var(--ease);
}

.page-home .schedule-expand summary::-webkit-details-marker {
  display: none;
}

.page-home .schedule-expand summary::before {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(182, 255, 0, 0.14);
  border: 1px solid rgba(182, 255, 0, 0.4);
  font-size: 15px;
  line-height: 1;
}

.page-home .schedule-expand[open] summary::before {
  content: "−";
}

.page-home .schedule-expand summary:hover,
.page-home .schedule-expand summary:focus-visible {
  color: var(--home-white);
  outline: none;
}

.page-home .expand-body {
  margin-top: 10px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--home-orange);
  border-radius: 0 var(--home-radius-sm) var(--home-radius-sm) 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.page-home .schedule-more {
  margin-top: 36px;
  text-align: center;
}

.page-home .schedule-more .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.7);
}

.page-home .section-stats {
  background: var(--home-white);
  position: relative;
}

.page-home .section-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--home-orange) 0%, var(--home-lime) 100%);
}

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

.page-home .metric-item {
  background: var(--home-bg);
  border-radius: var(--home-radius-md);
  padding: 28px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(11, 27, 61, 0.06);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.page-home .metric-item:hover {
  box-shadow: var(--home-shadow);
  transform: translateY(-3px);
}

.page-home .metric-value {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 900;
  line-height: 1;
  color: var(--home-navy);
  letter-spacing: -0.03em;
}

.page-home .metric-label {
  font-size: 14px;
  color: var(--home-text-light);
  font-weight: 500;
}

.page-home .metric-item.accent {
  background: linear-gradient(135deg, var(--home-orange) 0%, #FF9845 100%);
  border-color: transparent;
  grid-column: span 2;
}

.page-home .metric-item.accent .metric-value {
  color: var(--home-white);
}

.page-home .metric-item.accent .metric-label {
  color: rgba(255, 255, 255, 0.92);
}

.page-home .trust-line {
  margin: 44px auto 0;
  max-width: 780px;
  padding: 22px 28px;
  border-radius: var(--home-radius-md);
  background: var(--home-bg);
  border-left: 4px solid var(--home-orange);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--home-navy);
  text-align: center;
}

.page-home .trust-line::before,
.page-home .trust-line::after {
  content: "“";
  color: var(--home-orange);
  font-weight: 900;
}

.page-home .trust-line::after {
  content: "”";
}

@media (min-width: 700px) {
  .page-home .announce-inner {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

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

  .page-home .schedule-card {
    flex-wrap: nowrap;
    padding: 24px 28px;
  }

  .page-home .schedule-expand {
    width: auto;
    margin-left: auto;
    margin-top: 0;
    flex-shrink: 0;
  }

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

  .page-home .metric-item.accent {
    grid-column: auto;
  }

  .page-home .updates-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .page-home .updates-grid::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 9%;
    right: 9%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--home-orange) 0 8px, transparent 8px 16px);
    z-index: 0;
  }

  .page-home .android-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 48px;
  }

  .page-home .account-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 56px;
  }

  .page-home .account-visual {
    order: 0;
  }

  .page-home .account-copy {
    order: 1;
  }
}

@media (min-width: 1000px) {
  .page-home .breadcrumbs {
    padding: 16px 0;
  }

  .page-home .hero-split {
    grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
    padding-top: 0;
    min-height: 720px;
  }

  .page-home .hero-label {
    top: 28px;
    left: 28px;
    transform: none;
    background: rgba(11, 27, 61, 0.65);
    border-color: rgba(255, 255, 255, 0.14);
  }

  .page-home .split-panel {
    min-height: 720px;
    padding: 72px 48px;
  }

  .page-home .split-divider {
    height: auto;
    background: transparent;
  }

  .page-home .split-divider::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--home-orange) 0%, var(--home-orange) 60%, var(--home-lime) 100%);
    transform: skewX(-12deg);
    box-shadow: 0 6px 28px rgba(255, 107, 0, 0.35);
  }

  .page-home .divider-star {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--home-navy);
    color: var(--home-lime);
    font-size: 20px;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.28);
  }

  .page-home .legacy-corner {
    position: absolute;
    left: 36px;
    bottom: 34px;
    margin-top: 0;
  }

  .page-home .split-legacy .split-body {
    padding-bottom: 48px;
  }

  .page-home .panel-tip {
    bottom: 44px;
    right: 32px;
  }

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

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

  .page-home .updates-figure {
    margin-top: 64px;
  }

  .page-home .updates-img {
    border-radius: 28px;
  }

  .page-home .schedule-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .page-home .schedule-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 28px 26px;
    min-height: 260px;
  }

  .page-home .schedule-match {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
  }

  .page-home .schedule-expand {
    width: 100%;
    margin-left: 0;
  }

  .page-home .metrics-grid {
    gap: 22px;
  }
}

@media (max-width: 380px) {
  .page-home .split-title {
    font-size: 28px;
  }

  .page-home .metric-item {
    padding: 20px 12px;
  }
}
