.page-home {
  --c-deep: #0A1834;
  --c-panel: #11254A;
  --c-gold: #F2C14E;
  --c-gold-deep: #D3A441;
  --c-neon: #4AFFB0;
  --c-mist: #B6C8E3;
  --c-paper: #E8EDF5;
  --c-white: #FFFFFF;
  --c-red: #FF5A5A;
  --font-head: 'Noto Sans CJK SC', 'Source Han Sans SC', 'Alibaba PuHuiTi', sans-serif;
  --font-body: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
  --font-data: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;
  --content-max: 1280px;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-capsule: 0 12px 40px rgba(0, 0, 0, 0.38);
  max-width: 100%;
  overflow-x: hidden;
  background: var(--c-deep);
  color: var(--c-white);
  font-family: var(--font-body);
}

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

.page-home .home-hero {
  position: relative;
  padding: 148px 0 88px;
  background: var(--c-deep);
  overflow: hidden;
}

.page-home .hero-bg-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-home .hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: saturate(0.8) brightness(0.6);
}

.page-home .hero-bg-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 24, 52, 0.98) 0%, rgba(10, 24, 52, 0.82) 46%, rgba(10, 24, 52, 0.55) 72%, rgba(10, 24, 52, 0.72) 100%);
}

.page-home .hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}

.page-home .hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.page-home .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 8px 16px;
  background: rgba(242, 193, 78, 0.12);
  border: 1px solid rgba(242, 193, 78, 0.35);
  border-radius: 999px;
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--c-gold);
}

.page-home .live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-neon);
  box-shadow: 0 0 0 0 rgba(74, 255, 176, 0.6);
  animation: homePulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.page-home .hero-title {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--c-white);
  text-wrap: balance;
}

.page-home .hero-title .mark-gold {
  display: inline-block;
  color: var(--c-gold);
  position: relative;
}

.page-home .hero-title .mark-gold::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 10px;
  background: rgba(242, 193, 78, 0.22);
  z-index: -1;
  transform: skewX(-12deg);
}

.page-home .hero-lede {
  margin: 0;
  max-width: 540px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--c-mist);
}

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

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.35s;
  cursor: pointer;
  border: 1px solid transparent;
}

.page-home .btn-gold {
  background: var(--c-gold);
  color: var(--c-deep);
  box-shadow: 0 8px 30px rgba(242, 193, 78, 0.35);
}

.page-home .btn-gold:hover {
  background: var(--c-gold-deep);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(242, 193, 78, 0.45);
}

.page-home .btn-ghost {
  background: transparent;
  color: var(--c-gold);
  border-color: rgba(242, 193, 78, 0.6);
}

.page-home .btn-ghost:hover {
  background: rgba(242, 193, 78, 0.08);
  transform: translateY(-3px);
}

.page-home .hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 16px 0 0;
}

.page-home .hero-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
}

.page-home .hero-metric .data-label {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--c-mist);
  opacity: 0.85;
}

.page-home .hero-metric .data-number {
  margin: 0;
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  color: var(--c-white);
}

.page-home .hero-metric .data-number span {
  font-size: 14px;
  color: var(--c-gold);
  margin-left: 2px;
}

.page-home .hero-visual-panel {
  position: relative;
  background: rgba(17, 37, 74, 0.82);
  border: 1px solid rgba(242, 193, 78, 0.25);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  padding: 28px;
  box-shadow: var(--shadow-capsule);
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

.page-home .vis-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  gap: 8px;
  flex-wrap: wrap;
}

.page-home .vis-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-data);
  font-size: 14px;
  color: var(--c-neon);
  letter-spacing: 0.04em;
}

.page-home .vis-edition {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--c-mist);
  padding: 6px 14px;
  border-radius: 99px;
  background: rgba(10, 24, 52, 0.6);
  border: 1px solid rgba(182, 200, 227, 0.2);
}

.page-home .vis-chart-wrap {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
}

.page-home .vis-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: brightness(0.7);
}

.page-home .vis-ring {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .ring-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.page-home .ring-progress {
  stroke-dasharray: 289 453;
  transform-origin: center;
  animation: homeGrowRing 1.8s var(--ease-out) both;
}

@keyframes homeGrowRing {
  0% {
    stroke-dasharray: 0 453;
  }
  100% {
    stroke-dasharray: 289 453;
  }
}

.page-home .ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-home .ring-percent {
  font-family: var(--font-data);
  font-size: 46px;
  font-weight: 700;
  color: var(--c-white);
  line-height: 1;
}

.page-home .ring-percent span {
  font-size: 18px;
  color: var(--c-gold);
}

.page-home .ring-label {
  margin-top: 8px;
  font-size: 12px;
  color: var(--c-mist);
  letter-spacing: 0.08em;
}

.page-home .vis-legend {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  background: rgba(10, 24, 52, 0.8);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}

.page-home .legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-home .legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.page-home .legend-dot-gold {
  background: var(--c-gold);
}

.page-home .legend-dot-neon {
  background: var(--c-neon);
}

.page-home .legend-name {
  font-size: 13px;
  color: var(--c-mist);
}

.page-home .legend-value {
  font-size: 14px;
  color: var(--c-white);
  margin-left: 4px;
}

.page-home .vis-panel-footer {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.page-home .vis-cycle {
  font-size: 13px;
  color: var(--c-mist);
  letter-spacing: 0.02em;
}

.page-home .vis-link {
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--c-neon);
  text-decoration: none;
  transition: color 0.25s;
}

.page-home .vis-link:hover {
  color: var(--c-white);
}

.page-home .hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.page-home .hint-line {
  display: block;
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--c-gold), transparent);
  animation: homeHintDrop 1.6s infinite ease-in-out;
}

@keyframes homeHintDrop {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

.page-home .hint-text {
  font-family: var(--font-data);
  font-size: 11px;
  color: var(--c-mist);
  letter-spacing: 0.14em;
}

.page-home .section-dark {
  background: var(--c-deep);
}

.page-home .section-light {
  background: var(--c-paper);
  color: var(--c-deep);
}

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

.page-home .section-label {
  margin: 0 0 16px;
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold);
}

.page-home .section-light .section-label {
  color: var(--c-gold-deep);
}

.page-home .section-head-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.page-home .section-heading {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--c-white);
}

.page-home .section-heading .gold {
  color: var(--c-gold);
}

.page-home .section-intro {
  margin: 0;
  max-width: 480px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-mist);
}

.page-home .topic-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.page-home .topic-filter-btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(182, 200, 227, 0.28);
  background: transparent;
  color: var(--c-mist);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s;
}

.page-home .topic-filter-btn:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}

.page-home .topic-filter-btn.is-active {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-deep);
  font-weight: 600;
}

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

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

.page-home .squad-card {
  background: linear-gradient(135deg, #11254A 0%, #0D1C3D 100%);
  border: 1px solid rgba(182, 200, 227, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform 0.35s var(--ease-out), border-color 0.35s;
  position: relative;
  overflow: hidden;
}

.page-home .squad-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--c-gold), var(--c-neon));
  opacity: 0.7;
}

.page-home .squad-card:hover {
  transform: translateX(6px);
  border-color: rgba(242, 193, 78, 0.45);
}

.page-home .squad-card-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.page-home .squad-league {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--c-gold);
  letter-spacing: 0.06em;
}

.page-home .squad-time {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--c-mist);
  opacity: 0.8;
}

.page-home .squad-team {
  margin: 0 0 12px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  color: var(--c-white);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.page-home .squad-vs {
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--c-gold);
  padding: 2px 10px;
  border: 1px solid rgba(242, 193, 78, 0.4);
  border-radius: 99px;
}

.page-home .squad-note {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-mist);
}

.page-home .squad-tags-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.page-home .squad-tag {
  font-family: var(--font-data);
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 99px;
  background: rgba(74, 255, 176, 0.1);
  color: var(--c-neon);
  border: 1px solid rgba(74, 255, 176, 0.25);
}

.page-home .squad-card.is-filtered {
  display: none;
}

.page-home .squad-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .squad-img {
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(242, 193, 78, 0.2);
}

.page-home .squad-visual-caption {
  background: rgba(17, 37, 74, 0.7);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .caption-line {
  font-size: 15px;
  color: var(--c-white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-home .text-link {
  color: var(--c-gold);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.25s, color 0.25s;
}

.page-home .text-link:hover {
  color: var(--c-neon);
  gap: 8px;
}

.page-home .home-data {
  color: var(--c-deep);
}

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

.page-home .data-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-home .data-lead {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(10, 24, 52, 0.82);
}

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

.page-home .check-list li {
  position: relative;
  padding-left: 32px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(10, 24, 52, 0.85);
}

.page-home .check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c-gold-deep);
  clip-path: polygon(14% 44%, 0 58%, 40% 92%, 100% 18%, 82% 5%, 38% 58%);
}

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

.page-home .section-light .btn-gold {
  background: var(--c-gold-deep);
  color: var(--c-deep);
}

.page-home .section-light .btn-ghost {
  color: var(--c-deep);
  border-color: rgba(10, 24, 52, 0.35);
}

.page-home .section-light .btn-ghost:hover {
  background: rgba(10, 24, 52, 0.06);
}

.page-home .diagonal-panel {
  background: var(--c-deep);
  border-radius: var(--radius-xl);
  padding: 28px;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(135deg, #11254A 0%, #0A1834 60%, #0D1C3D 100%);
  box-shadow: 0 20px 60px rgba(10, 24, 52, 0.3);
}

.page-home .diagonal-panel::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: linear-gradient(180deg, rgba(242, 193, 78, 0.18), transparent 70%);
  transform: rotate(20deg);
  border-radius: 40px;
}

.page-home .panel-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  gap: 8px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.page-home .panel-title {
  margin: 0;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--c-white);
}

.page-home .panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--c-neon);
  padding: 6px 14px;
  border-radius: 99px;
  border: 1px solid rgba(74, 255, 176, 0.3);
}

.page-home .chart-bars {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 14px 0;
}

.page-home .bar-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-home .bar-label {
  font-size: 12px;
  color: var(--c-mist);
  letter-spacing: 0.08em;
}

.page-home .bar-track {
  height: 28px;
  background: rgba(10, 24, 52, 0.7);
  border-radius: 6px;
  overflow: hidden;
}

.page-home .bar-fill {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  font-family: var(--font-data);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-deep);
  border-radius: 6px 0 0 6px;
  background: linear-gradient(90deg, var(--c-gold-deep), var(--c-gold));
}

.page-home .panel-foot {
  margin-top: 30px;
  border-top: 1px solid rgba(182, 200, 227, 0.15);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.page-home .foot-note {
  font-size: 13px;
  color: var(--c-mist);
}

.page-home .foot-export {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--c-neon);
}

.page-home .export-icon {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid var(--c-neon);
  position: relative;
}

.page-home .export-icon::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 7px;
  width: 8px;
  height: 5px;
  border-bottom: 2px solid var(--c-neon);
  border-left: 2px solid var(--c-neon);
  transform: rotate(-45deg);
}

@keyframes homePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 255, 176, 0.6);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(74, 255, 176, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(74, 255, 176, 0);
  }
}

.page-home .home-version {
  position: relative;
  overflow: hidden;
}

.page-home .version-head-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.page-home .version-intro {
  margin: 0;
  max-width: 440px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-mist);
}

.page-home .version-decor {
  width: 100%;
  height: auto;
  max-height: 140px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
  opacity: 0.85;
}

.page-home .table-scroll {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(242, 193, 78, 0.2);
}

.page-home .version-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: rgba(17, 37, 74, 0.7);
  backdrop-filter: blur(4px);
}

.page-home .version-table thead th {
  background: #11254A;
  color: var(--c-gold);
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-align: left;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(242, 193, 78, 0.2);
}

.page-home .version-table tbody th,
.page-home .version-table tbody td {
  padding: 18px 20px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-mist);
  border-bottom: 1px solid rgba(182, 200, 227, 0.1);
  text-align: left;
}

.page-home .version-table tbody tr:last-child th,
.page-home .version-table tbody tr:last-child td {
  border-bottom: none;
}

.page-home .version-table tbody tr:hover {
  background: rgba(242, 193, 78, 0.06);
}

.page-home .version-table .current-cycle {
  background: rgba(74, 255, 176, 0.06);
  box-shadow: inset 3px 0 0 var(--c-neon);
}

.page-home .version-table .current-cycle th,
.page-home .version-table .current-cycle td {
  color: var(--c-white);
}

.page-home .ver-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--c-white);
}

.page-home .ver-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 10px;
  border-radius: 99px;
  background: rgba(74, 255, 176, 0.15);
  color: var(--c-neon);
  font-family: var(--font-data);
  font-size: 11px;
  border: 1px solid rgba(74, 255, 176, 0.4);
}

.page-home .table-note {
  margin: 24px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--c-mist);
}

.page-home .home-subscribe {
  position: relative;
  padding: 112px 0;
  background: var(--c-deep);
  overflow: hidden;
}

.page-home .subscribe-bg {
  position: absolute;
  inset: 0;
}

.page-home .subscribe-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: brightness(0.55);
}

.page-home .subscribe-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10, 24, 52, 0.97) 0%, rgba(10, 24, 52, 0.82) 45%, rgba(17, 37, 74, 0.65) 100%);
}

.page-home .subscribe-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-home .subscribe-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}

.page-home .subscribe-title {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.18;
  color: var(--c-white);
}

.page-home .subscribe-desc {
  margin: 0;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--c-mist);
}

.page-home .subscribe-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-home .feature-chip {
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(242, 193, 78, 0.12);
  border: 1px solid rgba(242, 193, 78, 0.3);
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--c-gold);
}

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

.page-home .btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.page-home .subscribe-aside {
  display: grid;
  place-items: center;
}

.page-home .subscribe-card {
  background: rgba(17, 37, 74, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(242, 193, 78, 0.3);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow-capsule);
}

.page-home .aside-label {
  margin-top: 10px;
  font-size: 12px;
  color: var(--c-mist);
  letter-spacing: 0.06em;
}

.page-home .aside-label:first-child {
  margin-top: 0;
}

.page-home .aside-value {
  margin: 0;
  font-family: var(--font-data);
  font-size: 34px;
  font-weight: 700;
  color: var(--c-neon);
}

.page-home .aside-value.data-number span {
  font-size: 15px;
  color: var(--c-gold);
}

.page-home .subscribe-card .text-link {
  margin-top: 18px;
  border-top: 1px solid rgba(182, 200, 227, 0.15);
  padding-top: 16px;
}

@media (min-width: 640px) {
  .page-home .squad-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .squad-card:last-child:nth-child(odd) {
    grid-column: span 2;
  }
}

@media (min-width: 960px) {
  .page-home .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
    min-height: 560px;
  }

  .page-home .hero-copy {
    gap: 28px;
  }

  .page-home .section-head-row,
  .page-home .version-head-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .page-home .squad-layout {
    grid-template-columns: 1fr 0.72fr;
    gap: 48px;
    align-items: start;
  }

  .page-home .squad-visual {
    position: sticky;
    top: 110px;
  }

  .page-home .data-layout {
    grid-template-columns: 1fr 0.9fr;
    gap: 72px;
  }

  .page-home .subscribe-content {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
  }
}

@media (min-width: 1200px) {
  .page-home .hero-title {
    font-size: 84px;
  }

  .page-home .squad-list {
    gap: 22px;
  }
}
