.page-home {
  position: relative;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  line-height: 1.65;
  overflow-x: hidden;
}

.page-home h1,
.page-home h2,
.page-home h3 {
  margin: 0;
  font-family: var(--f-headline);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.01em;
}

.page-home a {
  color: inherit;
  text-decoration: none;
}

.page-home img {
  max-width: 100%;
  height: auto;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  border: 0;
  cursor: pointer;
  transform: skewX(var(--skew));
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.page-home .btn--primary {
  background: var(--c-primary);
  color: #fff;
}

.page-home .btn--primary:hover,
.page-home .btn--primary:focus-visible {
  background: var(--c-primary-dark);
  transform: skewX(var(--skew)) translateY(-2px);
}

.page-home .btn--ghost {
  background: transparent;
  color: var(--c-text);
  box-shadow: inset 0 0 0 1px var(--c-line);
}

.page-home .btn--ghost:hover,
.page-home .btn--ghost:focus-visible {
  box-shadow: inset 0 0 0 1px var(--c-gold);
  color: var(--c-gold);
}

.page-home .btn--gold {
  background: var(--c-gold);
  color: #0B0F14;
}

.page-home .btn--gold:hover,
.page-home .btn--gold:focus-visible {
  background: var(--c-gold-bright);
  transform: skewX(var(--skew)) translateY(-2px);
}

.page-home .link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-cyan);
  white-space: nowrap;
}

.page-home .link-more:hover,
.page-home .link-more:focus-visible {
  color: var(--c-gold);
}

.page-home .section-heading {
  position: relative;
  margin-bottom: 32px;
}

.page-home .section-heading__kicker {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 10px;
}

.page-home .section-heading h2 {
  font-size: clamp(32px, 5vw, 46px);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.page-home .section-heading__desc {
  max-width: 720px;
  margin: 0;
  font-size: 15px;
  color: var(--c-text-dim);
}

.page-home .tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

/* 首屏 Hero */
.page-home .home-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(120deg, #0B0F14 0%, #131720 42%, #1A1D26 100%);
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: repeating-linear-gradient(-55deg, rgba(255, 184, 0, 0.035) 0 1px, transparent 1px 28px);
  pointer-events: none;
}

.page-home .home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 0;
}

.page-home .home-hero__copy {
  position: relative;
  z-index: 3;
  padding: clamp(36px, 7vw, 72px) var(--gutter) 40px;
}

.page-home .home-hero__copy .eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.page-home .home-hero__copy h1 {
  font-size: clamp(42px, 8vw, 82px);
  line-height: 0.95;
  color: var(--c-text);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.page-home .home-hero__title-sub {
  display: block;
  font-size: 0.42em;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--c-text-dim);
  margin-top: 12px;
}

.page-home .home-hero__slogan {
  position: relative;
  display: inline-block;
  margin: 18px 0 16px;
  font-family: var(--f-headline);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 700;
  font-style: italic;
  color: var(--c-primary);
  letter-spacing: 0.06em;
  transform: skewX(var(--skew));
}

.page-home .home-hero__slogan::after {
  content: "";
  display: block;
  width: 72%;
  height: 4px;
  margin-top: 6px;
  background: linear-gradient(90deg, var(--c-gold), transparent);
}

.page-home .home-hero__lead {
  max-width: 560px;
  font-size: 15px;
  color: var(--c-text-dim);
  margin: 0 0 24px;
}

.page-home .home-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.page-home .home-hero__meta li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text);
}

.page-home .home-hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: none;
}

.page-home .home-hero__dot--cyan {
  background: var(--c-cyan);
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
}

.page-home .home-hero__dot--gold {
  background: var(--c-gold);
  box-shadow: 0 0 8px rgba(255, 184, 0, 0.6);
}

.page-home .home-hero__dot--red {
  background: var(--c-primary);
  box-shadow: 0 0 8px rgba(228, 0, 43, 0.6);
}

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

.page-home .home-hero__stage {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  margin-top: 4px;
}

.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.page-home .home-hero__stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(190deg, rgba(11, 15, 20, 0.1) 0%, rgba(11, 15, 20, 0.85) 100%);
}

.page-home .home-hero__scoreboard {
  position: absolute;
  right: clamp(18px, 6vw, 52px);
  bottom: clamp(24px, 6vw, 64px);
  left: clamp(18px, 6vw, 52px);
  z-index: 2;
  padding: 20px 22px 24px;
  background: rgba(228, 0, 43, 0.92);
  clip-path: polygon(0 0, 100% 6%, 100% 100%, 12% 100%);
  box-shadow: 12px 16px 0 rgba(255, 184, 0, 0.18);
  transform: skewX(var(--skew));
}

.page-home .home-hero__scoreboard-top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-home .home-hero__score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 18px 0 14px;
}

.page-home .home-hero__score-team {
  flex: 1;
  font-family: var(--f-headline);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: #fff;
}

.page-home .home-hero__score-team:first-child {
  text-align: left;
}

.page-home .home-hero__score-team:last-child {
  text-align: right;
}

.page-home .home-hero__score-num {
  font-family: var(--f-data);
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1;
  color: var(--c-gold-bright);
  letter-spacing: 0.03em;
  white-space: nowrap;
  animation: hthScorePulse 1.8s var(--ease) infinite;
}

.page-home .home-hero__scoreboard-more {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 13px;
  line-height: 1.3;
}

.page-home .home-hero__scoreboard-more + .home-hero__scoreboard-more {
  margin-top: 8px;
}

.page-home .home-hero__scoreboard-more span {
  margin-left: auto;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.1em;
}

@keyframes hthScorePulse {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 0 rgba(255, 215, 0, 0);
  }
  50% {
    opacity: 0.72;
    text-shadow: 0 0 22px rgba(255, 215, 0, 0.5);
  }
}

/* 页内目录 */
.page-home .page-index {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  padding: 18px var(--gutter);
  border-bottom: 1px solid var(--c-line);
}

.page-home .page-index__label {
  font-family: var(--f-data);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--c-text-dim);
  margin-right: 6px;
}

.page-home .page-index__link {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-dim);
  padding: 4px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.page-home .page-index__link span {
  font-family: var(--f-data);
  font-size: 11px;
  color: var(--c-gold);
}

.page-home .page-index__link:hover,
.page-home .page-index__link:focus-visible {
  color: var(--c-text);
  border-color: var(--c-gold);
}

.page-home .page-index__link[data-active] {
  color: var(--c-text);
  border-color: var(--c-primary);
}

/* 通用 section 间距 */
.page-home .section {
  padding: 56px var(--gutter);
}

/* 01 赛况速递 */
.page-home .ticker-section {
  position: relative;
  background: var(--c-bg-alt);
}

.page-home .ticker-section::before {
  content: "01";
  position: absolute;
  top: 12px;
  right: var(--gutter);
  font-family: var(--f-headline);
  font-size: clamp(96px, 18vw, 180px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.035);
  pointer-events: none;
}

.page-home .ticker-viewport {
  overflow: hidden;
  margin: 0 calc(-1 * var(--gutter));
  padding: 0 var(--gutter);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.page-home .ticker-track {
  display: flex;
  width: max-content;
  animation: hthTickerMove 52s linear infinite;
}

.page-home .ticker-viewport:hover .ticker-track,
.page-home .ticker-viewport:focus-within .ticker-track {
  animation-play-state: paused;
}

.page-home .ticker-row {
  display: flex;
  gap: 14px;
  padding-right: 14px;
}

.page-home .ticker-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  padding: 12px 16px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-line);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.page-home .ticker-card:hover,
.page-home .ticker-card:focus-visible {
  border-color: var(--c-cyan);
  transform: translateY(-2px);
}

.page-home .ticker-card b {
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

.page-home .ticker-card strong {
  font-family: var(--f-data);
  font-size: 16px;
  color: var(--c-gold-bright);
  white-space: nowrap;
}

.page-home .ticker-card time {
  font-family: var(--f-data);
  font-size: 12px;
  color: var(--c-text-dim);
}

.page-home .ticker-section__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
  font-size: 13px;
  color: var(--c-text-dim);
}

@keyframes hthTickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* 02 今日焦点 */
.page-home .today-section {
  position: relative;
  padding-top: 0;
}

.page-home .today-bg {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.page-home .today-bg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.page-home .today-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 15, 20, 0.85) 0%, rgba(11, 15, 20, 0.55) 100%);
}

.page-home .today-section__inner {
  position: relative;
  z-index: 1;
  margin-top: -40px;
}

.page-home .today-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.page-home .today-filter {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-dim);
  background: var(--c-bg-alt);
  border: 1px solid var(--c-line);
  cursor: pointer;
  transform: skewX(var(--skew));
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.page-home .today-filter.is-active,
.page-home .today-filter:hover {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
}

.page-home .today-timeline {
  position: relative;
  display: grid;
  gap: 18px;
  padding-left: 4px;
}

.page-home .today-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--c-primary) 0%, var(--c-gold) 100%);
}

.page-home .today-match {
  position: relative;
  padding-left: 26px;
}

.page-home .today-match::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 12px;
  width: 11px;
  height: 11px;
  background: var(--c-primary);
  border: 3px solid var(--c-bg);
  transform: rotate(45deg);
  box-shadow: 0 0 0 1px var(--c-gold);
}

.page-home .today-match__time {
  font-family: var(--f-data);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--c-gold);
  margin-bottom: 6px;
}

.page-home .today-match__card {
  padding: 18px 20px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-line);
}

.page-home .today-match__league {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-dim);
  margin-bottom: 10px;
}

.page-home .today-match__teams {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  font-family: var(--f-data);
}

.page-home .today-match__teams b {
  font-family: var(--f-body);
  font-size: 18px;
  font-weight: 600;
}

.page-home .today-match__teams strong {
  font-size: 22px;
  color: var(--c-gold-bright);
}

.page-home .today-match__note {
  font-size: 12px;
  color: var(--c-cyan);
}

.page-home .today-match__desc {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--c-text-dim);
}

.page-home .today-section__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}

/* 03 专家拆解 */
.page-home .experts-section {
  background: var(--c-bg-alt);
  position: relative;
  overflow: hidden;
}

.page-home .experts-section::before {
  content: "03";
  position: absolute;
  top: 10px;
  right: var(--gutter);
  font-family: var(--f-headline);
  font-size: clamp(96px, 18vw, 180px);
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.page-home .section-heading--split {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

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

.page-home .expert-feature {
  background: var(--c-bg-card);
  border: 1px solid var(--c-line);
  overflow: hidden;
}

.page-home .expert-feature__body {
  padding: 20px 20px 24px;
}

.page-home .expert-feature__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.page-home .expert-feature__index {
  font-family: var(--f-data);
  font-size: 13px;
  color: var(--c-text-dim);
}

.page-home .expert-feature h3 {
  font-size: clamp(22px, 3vw, 28px);
  margin-bottom: 10px;
}

.page-home .expert-feature p {
  font-size: 14px;
  color: var(--c-text-dim);
  margin: 0 0 16px;
}

.page-home .expert-feature__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-cyan);
}

.page-home .expert-feature__link:hover {
  color: var(--c-gold);
}

.page-home .expert-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .expert-list__item {
  position: relative;
  padding: 18px 18px 18px 22px;
  background: var(--c-bg-card);
  border-left: 3px solid var(--c-primary);
  transform: skewX(var(--skew));
}

.page-home .expert-list__item .tag {
  margin-bottom: 6px;
}

.page-home .expert-list__item h3 {
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  margin: 4px 0 6px;
}

.page-home .expert-list__item p {
  margin: 0;
  font-size: 13px;
  color: var(--c-text-dim);
}

/* 04 赛程双栏 */
.page-home .schedule-section {
  position: relative;
}

.page-home .schedule-section::before {
  content: "04";
  position: absolute;
  bottom: 0;
  right: var(--gutter);
  font-family: var(--f-headline);
  font-size: clamp(96px, 18vw, 180px);
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

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

.page-home .schedule-dual__col {
  padding: 22px 20px;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-line);
}

.page-home .schedule-dual__col h3 {
  font-size: 22px;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.page-home .league-list {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.page-home .league-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 2px;
  border-bottom: 1px solid var(--c-line);
}

.page-home .league-list li:last-child {
  border-bottom: 0;
}

.page-home .league-list a {
  font-weight: 600;
  font-size: 15px;
}

.page-home .league-list a:hover {
  color: var(--c-cyan);
}

.page-home .league-list span {
  font-family: var(--f-data);
  font-size: 12px;
  color: var(--c-text-dim);
}

.page-home .date-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.page-home .date-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 14px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-line);
  font-size: 14px;
  font-weight: 600;
}

.page-home .date-tab em {
  font-family: var(--f-data);
  font-style: normal;
  font-size: 12px;
  color: var(--c-gold);
}

.page-home .date-tab.is-active,
.page-home .date-tab:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}

.page-home .date-tabs__note {
  font-size: 13px;
  color: var(--c-text-dim);
  margin: 0 0 20px;
}

/* 05 极速回放 */
.page-home .replay-section {
  background: var(--c-bg-alt);
  position: relative;
  overflow: hidden;
}

.page-home .replay-section::before {
  content: "05";
  position: absolute;
  top: 10px;
  right: var(--gutter);
  font-family: var(--f-headline);
  font-size: clamp(96px, 18vw, 180px);
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

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

.page-home .replay-lead {
  font-size: 15px;
  color: var(--c-text-dim);
  margin: 0 0 24px;
}

.page-home .replay-loadbar {
  position: relative;
  margin-bottom: 28px;
}

.page-home .replay-loadbar__label,
.page-home .replay-loadbar__hint {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--c-text-dim);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.page-home .replay-loadbar__track {
  display: flex;
  gap: 6px;
  align-items: stretch;
  height: 38px;
  padding: 6px;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
}

.page-home .replay-loadbar__stage {
  position: relative;
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--c-primary), var(--c-gold));
}

.page-home .replay-loadbar__stage b {
  position: absolute;
  right: 4px;
  bottom: -20px;
  font-family: var(--f-data);
  font-size: 11px;
  color: var(--c-gold-bright);
  white-space: nowrap;
}

.page-home .replay-loadbar__hint {
  margin-top: 26px;
  text-align: right;
}

.page-home .replay-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.page-home .replay-metric {
  padding: 14px 12px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-line);
  text-align: center;
}

.page-home .replay-metric strong {
  display: block;
  font-family: var(--f-headline);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--c-gold-bright);
  line-height: 1;
}

.page-home .replay-metric span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--c-text-dim);
}

.page-home .replay-copy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.page-home .replay-visual {
  position: relative;
  border: 1px solid var(--c-line);
  overflow: hidden;
  min-height: 240px;
}

.page-home .replay-visual__img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  opacity: 0.72;
}

.page-home .replay-visual__speed {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: skewX(-8deg) translateY(-50%);
  background: var(--c-primary);
  color: #fff;
  padding: 18px 24px;
  font-family: var(--f-data);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  box-shadow: 8px 10px 0 rgba(255, 184, 0, 0.25);
}

.page-home .replay-visual__speed span {
  font-size: 14px;
  letter-spacing: 0.14em;
  display: block;
  margin-top: 6px;
}

.page-home .replay-visual__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.65;
}

/* 06 品牌宣言 */
.page-home .manifesto-section {
  position: relative;
  overflow: hidden;
  background: var(--c-bg);
}

.page-home .manifesto-bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
}

.page-home .manifesto-bg svg {
  display: block;
  width: 100%;
  height: 100%;
}

.page-home .manifesto-inner {
  position: relative;
  z-index: 1;
}

.page-home .manifesto-content h2 {
  max-width: 640px;
  font-size: clamp(34px, 6vw, 58px);
  letter-spacing: 0.02em;
  margin-top: 12px;
  margin-bottom: 20px;
}

.page-home .manifesto-lead {
  max-width: 660px;
  font-family: var(--f-editorial);
  font-size: 17px;
  line-height: 1.9;
  color: var(--c-text-dim);
  margin: 0 0 32px;
}

.page-home .manifesto-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 560px;
  margin-bottom: 34px;
}

.page-home .manifesto-stats a {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 12px 14px;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-line);
  transform: skewX(var(--skew));
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}

.page-home .manifesto-stats a:hover {
  border-color: var(--c-gold);
  background: var(--c-bg-card);
}

.page-home .manifesto-stats strong {
  font-family: var(--f-headline);
  font-size: 28px;
  line-height: 1;
  color: var(--c-gold-bright);
}

.page-home .manifesto-stats span {
  font-size: 13px;
  color: var(--c-text-dim);
}

.page-home .manifesto-content__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

@media (min-width: 720px) {
  .page-home .replay-metrics {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .manifesto-stats {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

@media (min-width: 900px) {
  .page-home .home-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr);
    align-items: stretch;
  }

  .page-home .home-hero__copy {
    padding: clamp(48px, 8vw, 88px) clamp(0px, 4vw, 64px) 56px var(--gutter);
  }

  .page-home .home-hero__stage {
    min-height: 640px;
    margin: 22px 0 0;
    clip-path: polygon(11% 0, 100% 0, 100% 100%, 0 100%);
  }

  .page-home .today-bg {
    height: 300px;
  }

  .page-home .experts-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: stretch;
  }

  .page-home .replay-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 48px;
  }

  .page-home .replay-visual {
    min-height: 360px;
  }

  .page-home .replay-visual__img {
    min-height: 360px;
  }

  .page-home .section {
    padding: 80px var(--gutter);
  }

  .page-home .page-index {
    padding: 18px calc(var(--gutter) + 8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
