.page-home {
  --home-gap: 72px;
  --home-gap-lg: 96px;
  --home-bg-deep: var(--color-dark);
  --home-card-glass: rgba(18, 18, 18, 0.72);
  --home-grid-line: rgba(245, 245, 245, 0.06);
  --home-grid-line-strong: rgba(245, 245, 245, 0.10);
  --home-orange-glow: 0 0 24px rgba(255, 109, 0, 0.35);
  padding-bottom: 0;
  background: var(--home-bg-deep);
  color: var(--color-text);
  font-family: var(--font-body);
  position: relative;
}

.page-home .breadcrumb {
  position: relative;
  z-index: 5;
  padding-top: 96px;
  padding-bottom: 0;
}

.page-home .breadcrumb a,
.page-home .breadcrumb .breadcrumb__sep,
.page-home .breadcrumb span[aria-current="page"] {
  color: var(--color-muted);
  font-size: 13px;
  letter-spacing: 0.02em;
  text-decoration: none;
}

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

.page-home .section {
  padding: var(--home-gap) 0;
}

.page-home .section--alt {
  background: linear-gradient(180deg, rgba(13, 71, 161, 0.20) 0%, rgba(11, 26, 11, 0.98) 100%);
  border-top: 1px solid var(--home-grid-line);
  border-bottom: 1px solid var(--home-grid-line);
}

.page-home .container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

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

.page-home .section-index {
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--color-orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.page-home .section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.1;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.page-home .section-caption {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 720px;
  margin: 0;
}

.page-home .home-hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, #0B1A0B 0%, #112E17 55%, #0D1F10 100%);
}

.page-home .home-hero .grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--home-grid-line) 1px, transparent 1px), linear-gradient(90deg, var(--home-grid-line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 100%);
  pointer-events: none;
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-top: 56px;
  padding-bottom: 80px;
}

.page-home .home-hero__kicker {
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--color-orange);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.page-home .home-hero__intro h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.05;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.page-home .home-hero__lead {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 24px;
}

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

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.3s ease, background 0.3s ease;
  border-radius: 0;
}

.page-home .btn--accent {
  background: var(--color-orange);
  color: #fff;
  box-shadow: var(--home-orange-glow);
}

.page-home .btn--outline {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(245, 245, 245, 0.35);
}

.page-home .btn:hover {
  transform: translateY(-2px);
}

.page-home .btn:active {
  transform: scale(0.97);
}

.page-home .home-hero__visual {
  position: relative;
  order: 2;
}

.page-home .home-hero__visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  border: 1px solid rgba(245, 245, 245, 0.12);
  filter: saturate(1.1) contrast(1.05);
}

.page-home .home-hero__scoreline {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 3;
  background: var(--home-card-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 215, 0, 0.18);
  padding: 14px 16px;
}

.page-home .home-hero__scoreline-top,
.page-home .home-hero__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-home .home-hero__league {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  text-transform: uppercase;
}

.page-home .home-hero__live {
  font-size: 12px;
  color: var(--color-orange);
}

.page-home .home-hero__teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin: 14px 0 10px;
}

.page-home .home-hero__team {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.page-home .home-hero__score {
  font-family: var(--font-data);
  font-size: 34px;
  font-weight: 700;
  color: var(--color-orange);
  line-height: 1;
}

.page-home .home-hero__meta {
  font-family: var(--font-data);
  font-size: 11px;
  color: var(--color-muted);
  border-top: 1px solid rgba(245, 245, 245, 0.08);
  padding-top: 8px;
}

.page-home .home-hero__beam {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: -10%;
  width: 220px;
  background: linear-gradient(100deg, rgba(255, 109, 0, 0.34) 0%, rgba(255, 109, 0, 0) 90%);
  transform: translateX(-30%) skewX(-12deg);
  animation: heroBeam 6s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes heroBeam {
  0% { transform: translateX(-30%) skewX(-12deg); opacity: 0.5; }
  100% { transform: translateX(420%) skewX(-12deg); opacity: 0.25; }
}

.page-home .calendar-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.page-home .calendar-toolbar__label {
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-right: 8px;
}

.page-home .calendar-toolbar__date {
  margin-left: auto;
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--color-muted);
}

.page-home .tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: 12px;
  font-family: var(--font-data);
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  border-radius: 0;
}

.page-home .tag--accent {
  background: rgba(255, 109, 0, 0.14);
  border-color: rgba(255, 109, 0, 0.4);
  color: var(--color-orange);
}

.page-home .tag--gold {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.36);
  color: var(--color-gold);
}

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

.page-home .match-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  background: rgba(18, 18, 18, 0.62);
  border: 1px solid rgba(245, 245, 245, 0.08);
  color: var(--color-text);
  text-align: center;
  padding: 16px 14px;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.15s ease;
  border-radius: 0;
  position: relative;
}

.page-home .match-card:hover {
  border-color: rgba(255, 109, 0, 0.45);
  box-shadow: 0 0 0 1px rgba(255, 109, 0, 0.18), 0 8px 24px rgba(0, 0, 0, 0.3);
}

.page-home .match-card:active {
  transform: scale(0.985);
}

.page-home .match-card__state {
  grid-column: 1 / -1;
  font-family: var(--font-data);
  font-size: 11px;
  color: var(--color-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-home .match-card__team {
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .match-card__score {
  font-family: var(--font-data);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-orange);
  line-height: 1;
}

.page-home .match-card__foot {
  grid-column: 1 / -1;
  font-family: var(--font-data);
  font-size: 11px;
  color: var(--color-muted);
  letter-spacing: 0.05em;
}

.page-home .calendar-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  margin-top: 18px;
  font-size: 13px;
  color: var(--color-muted);
}

.page-home .calendar-foot a {
  color: var(--color-orange);
  text-decoration: none;
}

.page-home .match-dialog[hidden] {
  display: none;
}

.page-home .match-dialog {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.page-home .match-dialog__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 4, 0.72);
  backdrop-filter: blur(4px);
}

.page-home .match-dialog__panel {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: linear-gradient(145deg, #0d1f0d 0%, #0D47A1 140%);
  border: 1px solid rgba(255, 215, 0, 0.22);
  padding: 28px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.page-home .match-dialog__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.page-home .match-dialog__league {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  text-transform: uppercase;
}

.page-home .match-dialog__close {
  background: transparent;
  border: 1px solid rgba(245, 245, 245, 0.18);
  color: var(--color-text);
  width: 32px;
  height: 32px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.page-home .match-dialog__close:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

.page-home .match-dialog__title {
  font-family: var(--font-heading);
  font-size: 28px;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.page-home .match-dialog__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-bottom: 18px;
  font-family: var(--font-data);
  font-size: 13px;
}

.page-home .match-dialog__tip {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0;
}

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

.page-home .compare-stage {
  position: relative;
  background: #0a120a;
  border: 1px solid rgba(255, 109, 0, 0.24);
  position: relative;
  overflow: hidden;
}

.page-home .compare-stage__main img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  filter: grayscale(0.25) contrast(1.05);
}

.page-home .compare-stage__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(13, 71, 161, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 5px 9px;
  border-left: 3px solid var(--color-orange);
}

.page-home .compare-stage__slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare, 50%);
  width: 2px;
  background: rgba(255, 215, 0, 0.85);
  box-shadow: 0 0 16px rgba(255, 109, 0, 0.7);
  pointer-events: none;
}

.page-home .compare-stage__slider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  border: 2px solid var(--color-gold);
  background: rgba(11, 26, 11, 0.9);
  transform: translate(-50%, -50%) rotate(45deg);
}

.page-home .compare-stage__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  background: rgba(13, 71, 161, 0.28);
  border-top: 1px solid rgba(245, 245, 245, 0.07);
}

.page-home .compare-stage__stat {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--color-muted);
}

.page-home .compare-stage__stat + .compare-stage__stat {
  border-left: 1px solid rgba(245, 245, 245, 0.12);
  padding-left: 12px;
}

.page-home .compare-aside {
  display: grid;
  gap: 14px;
  align-content: start;
}

.page-home .compare-aside__card {
  background: var(--home-card-glass);
  border: 1px solid rgba(245, 245, 245, 0.08);
  padding: 18px;
}

.page-home .compare-aside__index {
  font-family: var(--font-data);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-orange);
  margin-bottom: 6px;
}

.page-home .compare-aside__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 14px;
}

.page-home .compare-aside__bars {
  display: grid;
  gap: 14px;
}

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

.page-home .compare-aside__label {
  font-size: 13px;
  color: var(--color-muted);
}

.page-home .compare-aside__line {
  height: 8px;
  background: rgba(245, 245, 245, 0.08);
  position: relative;
  overflow: hidden;
}

.page-home .compare-aside__line::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.page-home .compare-aside__line--slow::after {
  width: 80%;
  background: linear-gradient(90deg, rgba(189, 189, 189, 0.5), rgba(189, 189, 189, 0.15));
}

.page-home .compare-aside__line--fast::after {
  width: 30%;
  background: linear-gradient(90deg, var(--color-orange), rgba(255, 109, 0, 0.3));
  box-shadow: 0 0 12px var(--color-orange);
}

.page-home .compare-aside__value {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--color-orange);
}

.page-home .compare-aside__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.page-home .compare-aside__list li {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.6;
  position: relative;
  padding-left: 16px;
}

.page-home .compare-aside__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--color-orange);
  transform: rotate(45deg);
}

.page-home .rhythm-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  background: rgba(13, 71, 161, 0.16);
  border: 1px solid rgba(245, 245, 245, 0.08);
  padding: 24px;
}

.page-home .rhythm-compare {
  position: relative;
  padding-top: 28px;
}

.page-home .rhythm-axis {
  position: relative;
  height: 22px;
  border-bottom: 1px dashed rgba(245, 245, 245, 0.18);
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
}

.page-home .rhythm-axis__mark {
  font-family: var(--font-data);
  font-size: 10px;
  color: var(--color-muted);
  transform: translateY(-14px);
}

.page-home .rhythm-row {
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.page-home .rhythm-row__label {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.page-home .rhythm-row__track {
  position: relative;
  height: 28px;
  background: rgba(245, 245, 245, 0.05);
  overflow: hidden;
}

.page-home .rhythm-row__fill {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  transition: width 1s ease;
}

.page-home .rhythm-row__fill--slow {
  background: linear-gradient(90deg, rgba(189, 189, 189, 0.35), rgba(189, 189, 189, 0.1));
}

.page-home .rhythm-row__fill--fast {
  background: linear-gradient(90deg, var(--color-orange), rgba(255, 109, 0, 0.3));
  box-shadow: 0 0 18px rgba(255, 109, 0, 0.6);
}

.page-home .rhythm-row__flag {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  font-family: var(--font-data);
  font-size: 11px;
  color: var(--color-orange);
  white-space: nowrap;
}

.page-home .rhythm-row__flag--muted {
  color: var(--color-muted);
}

.page-home .rhythm-note {
  font-size: 13px;
  color: var(--color-muted);
  margin-top: 8px;
  line-height: 1.7;
  border-left: 3px solid var(--color-orange);
  padding-left: 12px;
}

.page-home .rhythm-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.page-home .data-card {
  background: linear-gradient(135deg, rgba(13, 71, 161, 0.5) 0%, rgba(11, 26, 11, 0.95) 100%);
  border: 1px solid rgba(245, 245, 245, 0.09);
  border-left: 4px solid var(--color-orange);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.page-home .data-card::after {
  content: "+";
  position: absolute;
  right: 8px;
  bottom: 4px;
  font-family: var(--font-data);
  font-size: 18px;
  color: rgba(255, 215, 0, 0.35);
}

.page-home .data-card__label {
  display: block;
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 8px;
}

.page-home .data-card__value {
  display: block;
  font-family: var(--font-data);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}

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

.page-home .review-chart {
  background: #0a120a;
  border: 1px solid rgba(245, 245, 245, 0.08);
  padding: 12px;
}

.page-home .review-chart img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  background: #0a1a0d;
}

.page-home .review-chart__caption {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--color-muted);
  text-align: center;
  padding: 10px 6px 4px;
  letter-spacing: 0.04em;
}

.page-home .review-table-wrap {
  overflow-x: auto;
  background: rgba(18, 18, 18, 0.5);
  border: 1px solid rgba(245, 245, 245, 0.08);
}

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

.page-home .data-table caption {
  text-align: left;
  padding: 16px 16px 0;
}

.page-home .data-table th {
  font-family: var(--font-data);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  white-space: nowrap;
}

.page-home .data-table td {
  padding: 12px 16px;
  color: var(--color-text);
  border-bottom: 1px solid rgba(245, 245, 245, 0.05);
  font-family: var(--font-data);
  font-size: 13px;
}

.page-home .data-table tbody tr:hover {
  background: rgba(255, 109, 0, 0.06);
}

.page-home .data-table .tag {
  background: rgba(76, 175, 80, 0.12);
  border-color: rgba(76, 175, 80, 0.35);
  color: var(--color-success);
  font-size: 11px;
}

.page-home .register-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-home .register-step {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(245, 245, 245, 0.07);
  padding: 20px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
}

.page-home .register-step__num {
  font-family: var(--font-data);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-orange);
  background: rgba(255, 109, 0, 0.08);
  border-right: 2px solid rgba(255, 109, 0, 0.35);
  padding: 6px 0;
  text-align: center;
}

.page-home .register-step__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
}

.page-home .register-step__text {
  margin: 0;
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
}

.page-home .register-note {
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.14);
  padding: 16px;
}

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

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

.page-home .fujian-device {
  position: relative;
  background: rgba(18, 18, 18, 0.7);
  border: 1px solid rgba(245, 245, 245, 0.08);
  padding: 12px;
}

.page-home .fujian-device img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  background: #0d1b10;
}

.page-home .fujian-device__bar {
  display: flex;
  justify-content: space-around;
  background: var(--color-green);
  border-top: 2px solid rgba(255, 109, 0, 0.55);
  padding: 10px 8px;
}

.page-home .fujian-device__bar span {
  font-family: var(--font-data);
  font-size: 12px;
  color: rgba(245, 245, 245, 0.88);
  letter-spacing: 0.04em;
}

.page-home .fujian-device__bar span:first-child {
  color: var(--color-orange);
}

.page-home .fujian-features {
  display: grid;
  gap: 16px;
  align-content: start;
}

.page-home .fujian-feature {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  background: rgba(245, 245, 245, 0.02);
  border-left: 3px solid var(--color-green);
  padding: 14px 16px;
}

.page-home .fujian-feature__index {
  font-family: var(--font-data);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-gold);
  background: rgba(255, 215, 0, 0.06);
  text-align: center;
  padding: 4px 0;
}

.page-home .fujian-feature__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px;
}

.page-home .fujian-feature__text {
  margin: 0;
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.65;
}

.page-home .home-internal {
  padding: 48px 0 56px;
  background: linear-gradient(180deg, transparent, rgba(255, 109, 0, 0.04) 60%, rgba(255, 109, 0, 0.08));
  border-top: 1px solid rgba(245, 245, 245, 0.06);
}

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

.page-home .home-internal__link {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 14px 0;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 245, 245, 0.07);
  transition: background 0.3s ease, padding 0.3s ease;
  position: relative;
}

.page-home .home-internal__link:first-of-type {
  border-top: 1px solid rgba(245, 245, 245, 0.07);
}

.page-home .home-internal__link:hover {
  background: rgba(255, 109, 0, 0.05);
  padding-left: 16px;
}

.page-home .home-internal__link > span:first-child {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.page-home .home-internal__link > span:last-child {
  font-size: 13px;
  color: var(--color-muted);
}

@media (min-width: 640px) {
  .page-home .home-hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
  }

  .page-home .home-hero__visual {
    order: unset;
  }

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

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

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

  .page-home .home-internal__link {
    grid-template-columns: 180px 1fr;
    align-items: baseline;
  }
}

@media (min-width: 1024px) {
  .page-home .section {
    padding: var(--home-gap-lg) 0;
  }

  .page-home .container {
    padding-left: 32px;
    padding-right: 32px;
  }

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

  .page-home .compare-layout {
    grid-template-columns: 1.5fr 1fr;
    align-items: stretch;
  }

  .page-home .rhythm-panel {
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
  }

  .page-home .review-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }

  .page-home .fujian-layout {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

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

  .page-home .home-hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.page-home {
  --compare: inherit;
}
