.page-home {
  --home-gap: clamp(2rem, 4vw, 4.5rem);
  --home-radius: 4px;
  --home-blue-glow: rgba(0, 229, 255, 0.12);
  --home-orange-glow: rgba(255, 106, 0, 0.18);
  --home-panel: #141B2D;
  --home-panel-soft: #1A2333;
  --home-text: #E0E6ED;
  --home-dim: #8899AA;
  --home-border: rgba(176, 190, 205, 0.14);
  position: relative;
  overflow-x: clip;
}

.page-home .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.page-home .breadcrumb {
  padding-block: 1rem 0.5rem;
}

.page-home .breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8125rem;
  color: #8899AA;
}

.page-home .breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-home .breadcrumb a:hover {
  color: #00E5FF;
}

.page-home .section-index {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin: 0 0 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.page-home .section-index::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--accent-blue);
  display: inline-block;
}

.page-home .section-index.light {
  color: #FFFFFF;
}

.page-home .section-index.light::before {
  background: rgba(255, 255, 255, 0.7);
}

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

/* ===== 首屏：不对称拼贴 ===== */
.page-home .hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  padding-block: 1.5rem 2rem;
}

.page-home .hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.25rem, 3vw, 2rem);
  background: linear-gradient(135deg, #141B2D 0%, #0A0E17 100%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  border-left: 2px solid var(--accent-blue);
}

.page-home .hero-copy h1 {
  font-size: clamp(1.75rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--text-main);
  max-width: 9em;
}

.page-home .hero-sub {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: var(--text-dim);
  margin: 0 0 1.5rem;
  max-width: 32em;
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 0.875rem 1.5rem;
  text-decoration: none;
  border-radius: 2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.page-home .btn-primary {
  background: var(--accent-orange);
  color: #0A0E17;
  border: none;
  box-shadow: 0 0 0 1px rgba(255, 106, 0, 0.6), 0 6px 20px rgba(255, 106, 0, 0.25);
  cursor: pointer;
}

.page-home .btn-primary:hover,
.page-home .btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px var(--accent-orange), 0 10px 28px rgba(255, 106, 0, 0.4);
}

.page-home .btn-primary .btn-arrow {
  font-family: var(--font-mono);
  transition: transform 0.2s ease;
}

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

.page-home .btn-ghost {
  background: transparent;
  color: var(--accent-blue);
  border: 1px solid var(--border-blue);
  box-shadow: inset 0 0 12px rgba(0, 229, 255, 0.06);
}

.page-home .btn-ghost:hover,
.page-home .btn-ghost:focus-visible {
  background: rgba(0, 229, 255, 0.06);
  box-shadow: inset 0 0 20px rgba(0, 229, 255, 0.15), 0 0 0 1px var(--accent-blue);
}

.page-home .hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.page-home .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px rgba(0, 230, 118, 0.7);
  animation: home-pulse 2s ease infinite;
}

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

.page-home .hero-stage {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--home-border);
  background: #0A0E17;
}

.page-home .stage-grid-bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1px;
  padding: 1px;
  background: rgba(176, 190, 205, 0.08);
  z-index: 0;
}

.page-home .stage-grid-bg span {
  background: rgba(10, 14, 23, 0.7);
  border: 1px dashed rgba(176, 190, 205, 0.1);
}

.page-home .stage-orbit {
  position: relative;
  z-index: 1;
  max-width: 70%;
}

.page-home .hero-main-figure {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  filter: contrast(1.08) saturate(0.7);
  clip-path: polygon(6% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
}

.page-home .stage-scanline {
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
  animation: home-scan 3.5s ease-in-out infinite;
  opacity: 0.6;
  z-index: 2;
}

@keyframes home-scan {
  0% { transform: translateY(0); opacity: 0; }
  15% { opacity: 0.7; }
  85% { opacity: 0.7; }
  100% { transform: translateY(150px); opacity: 0; }
}

.page-home .stage-legend {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  background: rgba(10, 14, 23, 0.88);
  border: 1px solid var(--border-blue);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-main);
  z-index: 3;
  backdrop-filter: blur(4px);
}

.page-home .legend-mark {
  width: 6px;
  height: 6px;
  background: var(--accent-blue);
  border-radius: 50%;
}

.page-home .hero-aside {
  position: relative;
  padding: 1.25rem 1.5rem;
  background: #0A0E17;
  border-top: 1px solid var(--border-blue);
  border-bottom: 1px solid var(--border-blue);
  margin-left: 1.25rem;
  margin-right: -0.5rem;
}

.page-home .aside-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin: 0 0 0.375rem;
}

.page-home .aside-text {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
}

.page-home .aside-meta {
  font-size: 0.8125rem;
  color: var(--text-dim);
  margin: 0.375rem 0 0;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
}

.page-home .aside-index {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 2.75rem;
  font-weight: 900;
  color: rgba(0, 229, 255, 0.07);
  line-height: 1;
}

/* ===== 版本动态对比 ===== */
.page-home .update-strip {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-block: 1.25rem 0.25rem;
}

.page-home .update-strip .strip-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-home .update-strip h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 900;
  margin: 0;
  color: var(--text-main);
}

.page-home .strip-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-dim);
  padding: 0.375rem 0.75rem;
  border-left: 2px solid var(--accent-orange);
  background: rgba(255, 106, 0, 0.05);
}

.page-home .note-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.page-home .panel-compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-block: 1.5rem 2.5rem;
}

.page-home .compare-card {
  background: var(--home-panel);
  border: 1px solid var(--home-border);
  padding: 1.25rem;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.page-home .compare-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-blue);
  opacity: 0.35;
}

.page-home .compare-card:hover {
  transform: translateY(-4px) rotate(-0.4deg);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.page-home .compare-card.compare-new::after {
  background: var(--accent-orange);
  opacity: 0.85;
  box-shadow: 0 0 16px rgba(255, 106, 0, 0.35);
}

.page-home .card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.page-home .tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  text-decoration: none;
}

.page-home .tag {
  background: rgba(0, 229, 255, 0.12);
  color: var(--accent-blue);
  border: 1px solid rgba(0, 229, 255, 0.25);
}

.page-home .tag-orange {
  background: rgba(255, 106, 0, 0.14);
  color: #FF8A3D;
  border: 1px solid rgba(255, 106, 0, 0.35);
}

.page-home .card-index {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

.page-home .compare-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  background: #0A0E17;
  margin-bottom: 1rem;
  border: 1px solid rgba(176, 190, 205, 0.1);
}

.page-home .compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.625rem;
}

.page-home .compare-list li {
  position: relative;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-dim);
  padding-left: 1.5rem;
}

.page-home .compare-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-family: var(--font-mono);
}

.page-home .compare-new .compare-list li::before {
  color: var(--accent-orange);
}

.page-home .compare-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-dim);
  padding: 0 0.5rem;
}

.page-home .compare-arrow .arrow-line {
  font-size: 1.25rem;
  color: var(--accent-orange);
}

/* ===== 赛事更新速览 ===== */
.page-home .leagues-section {
  padding-block: 1.5rem 2rem;
}

.page-home .leagues-banner {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%);
  margin-bottom: 1.5rem;
}

.page-home .leagues-bg {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  filter: brightness(0.6) contrast(1.1) saturate(0.75);
}

.page-home .banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 14, 23, 0.9) 0%, rgba(10, 14, 23, 0.5) 60%, rgba(0, 0, 0, 0.2) 100%);
}

.page-home .banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  z-index: 1;
}

.page-home .banner-content .section-index {
  margin-bottom: 0.25rem;
}

.page-home .banner-content h2 {
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 900;
  margin: 0 0 0.5rem;
  color: #FFFFFF;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.page-home .banner-sub {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: rgba(224, 230, 237, 0.9);
  margin: 0;
  max-width: 28em;
}

.page-home .league-fold {
  border: 1px solid var(--home-border);
  background: var(--home-panel-soft);
}

.page-home .accordion-item {
  border-bottom: 1px solid var(--home-border);
}

.page-home .accordion-item:last-child {
  border-bottom: none;
}

.page-home .accordion-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 1.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  color: var(--text-main);
  transition: background 0.2s ease;
  font-size: 1rem;
}

.page-home .accordion-head:hover,
.page-home .accordion-head:focus-visible {
  background: rgba(0, 229, 255, 0.06);
}

.page-home .accordion-title {
  font-weight: 700;
  flex: 1;
  min-width: 0;
}

.page-home .league-tag {
  flex-shrink: 0;
  font-size: 0.6875rem;
  padding: 0.1875rem 0.625rem;
  border-radius: 999px;
  background: rgba(0, 230, 118, 0.1);
  color: var(--success);
  border: 1px solid rgba(0, 230, 118, 0.25);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.page-home .accordion-icon {
  width: 18px;
  height: 18px;
  position: relative;
  flex-shrink: 0;
  opacity: 0.8;
}

.page-home .accordion-icon::before,
.page-home .accordion-icon::after {
  content: "";
  position: absolute;
  background: var(--accent-blue);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.page-home .accordion-icon::before {
  width: 14px;
  height: 2px;
  top: 8px;
  left: 2px;
}

.page-home .accordion-icon::after {
  width: 2px;
  height: 14px;
  top: 2px;
  left: 8px;
}

.page-home .accordion-item[data-open="true"] .accordion-icon::after,
.page-home .accordion-item[data-open] .accordion-icon::after {
  transform: scaleY(0);
}

.page-home .accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.page-home .accordion-item[data-open="true"] .accordion-panel,
.page-home .accordion-item[data-open] .accordion-panel {
  grid-template-rows: 1fr;
}

.page-home .accordion-inner {
  overflow: hidden;
}

.page-home .league-list {
  list-style: none;
  margin: 0;
  padding: 0 1.25rem 1rem 2.75rem;
  display: grid;
  gap: 0.5rem;
}

.page-home .league-list li {
  font-size: 0.875rem;
  color: var(--text-dim);
  position: relative;
  padding-left: 1.25rem;
  line-height: 1.6;
}

.page-home .league-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.875rem;
  height: 1px;
  background: var(--accent-blue);
  opacity: 0.6;
}

/* ===== 设备验证提示 ===== */
.page-home .verify-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  padding-block: 2.5rem;
}

.page-home .verify-panel {
  background: linear-gradient(135deg, rgba(20, 27, 45, 0.9) 0%, rgba(10, 14, 23, 1) 100%);
  border: 1px solid var(--border-blue);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
}

.page-home .verify-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-orange));
}

.page-home .verify-panel h2 {
  font-size: clamp(1.375rem, 3vw, 2rem);
  font-weight: 900;
  margin: 0 0 0.75rem;
  color: var(--text-main);
}

.page-home .verify-panel > p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-dim);
  margin: 0 0 1.25rem;
  max-width: 38em;
}

.page-home .verify-steps {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.page-home .step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.page-home .step-num {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent-blue);
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid var(--border-blue);
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
  flex-shrink: 0;
  min-width: 2rem;
  text-align: center;
}

.page-home .step-item p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-dim);
  margin: 0.25rem 0 0;
}

.page-home .verify-panel .btn {
  margin-top: 0.5rem;
}

.page-home .verify-side {
  position: relative;
  padding: 1.5rem 1.25rem 1.5rem 2rem;
  background: var(--home-panel);
  border-left: 2px solid rgba(255, 209, 102, 0.6);
}

.page-home .verify-side::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--warning), transparent);
}

.page-home .side-line {
  position: absolute;
  top: 0;
  right: 1rem;
  width: 24px;
  height: 100%;
  border-right: 1px dashed rgba(176, 190, 205, 0.2);
  pointer-events: none;
}

.page-home .side-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--warning);
  margin: 0 0 0.5rem;
}

.page-home .verify-side p:not(.side-title) {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-dim);
  margin: 0 0 0.75rem;
}

.page-home .side-contact-note {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-main);
  background: rgba(255, 209, 102, 0.08);
  border: 1px solid rgba(255, 209, 102, 0.2);
  padding: 0.625rem 0.75rem;
  border-radius: 2px;
  word-break: break-all;
}

/* ===== 品牌信任与帮助 ===== */
.page-home .trust-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-block: 2.5rem 3.5rem;
}

.page-home .trust-main {
  background: var(--home-panel);
  border-top: 2px solid var(--accent-blue);
  padding: clamp(1.5rem, 3vw, 2rem);
  position: relative;
}

.page-home .trust-main::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 6rem;
  height: 6rem;
  background: radial-gradient(circle at center, rgba(0, 229, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-home .trust-main h2 {
  font-size: clamp(1.375rem, 3vw, 2rem);
  font-weight: 900;
  margin: 0 0 0.75rem;
  color: var(--text-main);
}

.page-home .trust-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-dim);
  margin: 0 0 1.5rem;
  max-width: 34em;
}

.page-home .trust-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-dim);
  margin: 0;
}

.page-home .trust-meta p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.page-home .meta-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8899AA;
}

.page-home .meta-value {
  color: var(--text-main);
  font-weight: 500;
}

.page-home .help-quick {
  background: rgba(255, 106, 0, 0.04);
  border: 1px solid rgba(255, 106, 0, 0.2);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.page-home .help-label {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent-orange);
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
}

.page-home .help-item {
  font-size: 0.9375rem;
  color: var(--text-dim);
  text-decoration: none;
  padding: 0.625rem 0.75rem;
  border-left: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  line-height: 1.5;
}

.page-home .help-item:hover,
.page-home .help-item:focus-visible {
  border-left-color: var(--accent-orange);
  color: var(--text-main);
  background: rgba(255, 106, 0, 0.06);
}

/* ===== 响应式断点：≥768px ===== */
@media (min-width: 768px) {
  .page-home .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-areas: "copy stage" "aside stage";
    gap: 1.5rem;
    align-items: stretch;
    padding-block: 2.5rem 3rem;
  }

  .page-home .hero-copy {
    grid-area: copy;
  }

  .page-home .hero-stage {
    grid-area: stage;
    grid-row: 1 / 3;
    min-height: 100%;
  }

  .page-home .hero-aside {
    grid-area: aside;
    margin: 0;
    border-left: none;
    border-bottom: 1px solid var(--border-blue);
    padding: 1.5rem;
  }

  .page-home .compare-arrow {
    flex-direction: column;
    justify-content: center;
    padding: 0.5rem;
  }

  .page-home .compare-arrow .arrow-line {
    transform: rotate(90deg);
  }

  .page-home .verify-side {
    padding-left: 2.5rem;
  }

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

  .page-home .trust-meta p {
    border-left: 1px solid var(--border-dim);
    padding-left: 0.75rem;
  }
}

/* ===== 响应式断点：≥1024px ===== */
@media (min-width: 1024px) {
  .page-home .hero-copy {
    padding: clamp(2rem, 5vw, 3rem);
  }

  .page-home .hero-copy h1 {
    font-size: clamp(2.75rem, 5vw, 4rem);
  }

  .page-home .hero-aside {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .page-home .panel-compare {
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
  }

  .page-home .update-strip {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .page-home .league-fold {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .page-home .league-fold .accordion-item {
    border-right: 1px solid var(--home-border);
    border-bottom: none;
  }

  .page-home .league-fold .accordion-item:nth-child(3n) {
    border-right: none;
  }

  .page-home .league-fold .accordion-item:nth-child(n+4) {
    border-top: 1px solid var(--home-border);
  }

  .page-home .accordion-icon {
    display: none;
  }

  .page-home .accordion-head {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem 0.75rem;
  }

  .page-home .accordion-panel {
    grid-template-rows: 1fr;
  }

  .page-home .accordion-inner {
    overflow: visible;
  }

  .page-home .league-list {
    padding: 0 1.25rem 1.25rem;
  }

  .page-home .league-list li {
    text-align: center;
    padding-left: 0;
  }

  .page-home .league-list li::before {
    display: none;
  }

  .page-home .verify-section {
    grid-template-columns: 1.3fr 0.7fr;
    gap: 2rem;
    align-items: stretch;
  }

  .page-home .trust-section {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: start;
  }

  .page-home .trust-main {
    height: 100%;
  }
}
