.page-home {
  min-height: 100vh;
  background: var(--bg-deep);
  color: var(--text-white);
  font-family: var(--font-sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.page-home a:focus-visible,
.page-home .switch-btn:focus-visible {
  outline: 2px solid var(--accent-green);
  outline-offset: 3px;
}

/* ===== 首屏主视觉 ===== */
.page-home .home-hero {
  position: relative;
  padding: 56px 0 72px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-deep);
}
.page-home .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-home .hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.3;
}
.page-home .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(11, 21, 38, 0.97) 0%, rgba(11, 21, 38, 0.78) 55%, rgba(19, 35, 59, 0.62) 100%),
    radial-gradient(circle at 78% 28%, rgba(0, 255, 135, 0.1) 0%, transparent 42%);
}
.page-home .deco-text {
  position: absolute;
  z-index: 0;
  font-family: var(--font-num);
  font-weight: 800;
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
}
.page-home .deco-m6 {
  font-size: 200px;
  top: 8%;
  right: -24px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200, 208, 218, 0.22);
}
.page-home .deco-2026 {
  font-size: 104px;
  bottom: 12px;
  left: 5%;
  color: rgba(0, 255, 135, 0.06);
  -webkit-text-stroke: 0;
}
.page-home .hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  pointer-events: none;
  z-index: 0;
}
.page-home .hero-glow-1 {
  width: 280px;
  height: 280px;
  top: 12%;
  right: -70px;
  background: rgba(0, 255, 135, 0.13);
}
.page-home .hero-glow-2 {
  width: 220px;
  height: 220px;
  bottom: 0;
  left: 26%;
  background: rgba(255, 159, 28, 0.1);
}
.page-home .hero-inner {
  position: relative;
  z-index: 1;
}
.page-home .hero-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 48px;
}
.page-home .hero-side-title {
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--accent-green);
}
.page-home .hero-catalog-entry {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-green);
  color: var(--dark-ink);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  line-height: 1;
  box-shadow: 0 0 0 1px rgba(0, 255, 135, 0.2), 0 8px 24px rgba(0, 255, 135, 0.15);
  transition: transform 0.2s ease;
}
.page-home .hero-catalog-entry:hover {
  transform: translateY(-2px);
}
.page-home .hero-catalog-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dark-ink);
}
.page-home .hero-layout {
  display: grid;
  grid-template-areas: "copy" "rail";
  gap: 40px;
}
.page-home .hero-copy {
  grid-area: copy;
}
.page-home .hero-kicker {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 16px;
}
.page-home .hero-title {
  font-family: var(--font-serif);
  font-size: 40px;
  line-height: 1.18;
  font-weight: 800;
  margin: 0 0 20px;
  max-width: 10.5em;
}
.page-home .hero-lead {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0 0 28px;
  max-width: 36em;
}
.page-home .hero-start {
  margin-top: 4px;
}
.page-home .hero-rail {
  grid-area: rail;
  border: 1px solid var(--border-subtle);
  background: rgba(19, 35, 59, 0.58);
  backdrop-filter: blur(4px);
  padding: 20px;
}
.page-home .hero-rail-title {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin: 0 0 16px;
}
.page-home .hero-rail-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-home .hero-rail-list li + li {
  border-top: 1px solid var(--border-subtle);
}
.page-home .hero-rail-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 2px;
  color: var(--text-white);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.page-home .hero-rail-list a:hover {
  color: var(--accent-green);
  padding-left: 8px;
}
.page-home .rail-num {
  font-family: var(--font-num);
  font-size: 13px;
  color: var(--accent-green);
  opacity: 0.85;
}
.page-home .hero-scroll-hint {
  margin-top: 48px;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

/* ===== 通用章节面板 ===== */
.page-home .section-panel {
  position: relative;
  padding: 64px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.page-home .section-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.page-home .section-index {
  font-family: var(--font-num);
  font-size: 56px;
  line-height: 0.9;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px var(--accent-green);
  white-space: nowrap;
}
.page-home .panel-kicker {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 2px 0 8px;
}
.page-home .section-title {
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.3;
  font-weight: 800;
  margin: 0;
}

/* ===== 顶部改版内容目录 ===== */
.page-home .catalog-section {
  background: var(--bg-panel);
}
.page-home .catalog-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-orange));
  opacity: 0.85;
  z-index: 2;
}
.page-home .catalog-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-home .catalog-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.16;
}
.page-home .catalog-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 35, 59, 0.96) 0%, rgba(11, 21, 38, 0.84) 100%);
}
.page-home .catalog-container {
  position: relative;
  z-index: 1;
}
.page-home .catalog-manifest {
  border-left: 3px solid var(--accent-green);
  background: rgba(11, 21, 38, 0.64);
  padding: 20px;
  margin-bottom: 32px;
}
.page-home .catalog-manifest-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}
.page-home .catalog-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.page-home .catalog-item {
  display: block;
  background: rgba(11, 21, 38, 0.72);
  border: 1px solid var(--border-subtle);
  padding: 20px;
  text-decoration: none;
  color: var(--text-white);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.page-home .catalog-item:hover {
  transform: translateY(-2px);
  border-color: var(--accent-green);
  background: rgba(19, 35, 59, 0.9);
}
.page-home .catalog-item-num {
  display: block;
  font-family: var(--font-num);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--accent-green);
  margin-bottom: 8px;
}
.page-home .catalog-item-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}
.page-home .catalog-item-brief {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
}

/* ===== 六体育改版内容导览 ===== */
.page-home .guide-section {
  background: var(--bg-panel-2);
}
.page-home .guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}
.page-home .guide-column {
  border: 1px solid var(--border-subtle);
  background: rgba(11, 21, 38, 0.5);
  padding: 24px;
}
.page-home .guide-column.guide-old {
  border-top: 3px solid var(--accent-orange);
}
.page-home .guide-column.guide-new {
  border-top: 3px solid var(--accent-green);
}
.page-home .guide-col-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 14px;
}
.page-home .guide-version-label {
  font-family: var(--font-num);
  font-size: 20px;
  font-weight: 800;
}
.page-home .guide-version-year {
  font-size: 13px;
  color: var(--text-muted);
}
.page-home .guide-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-home .guide-list li {
  position: relative;
  padding: 8px 0 8px 16px;
  font-size: 15px;
  line-height: 1.7;
}
.page-home .guide-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  transform: rotate(45deg);
}
.page-home .guide-old .guide-list li::before {
  background: var(--accent-orange);
}
.page-home .guide-new .guide-list li::before {
  background: var(--accent-green);
}
.page-home .guide-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 32px;
}
.page-home .timeline-item {
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding: 14px 16px;
  background: rgba(11, 21, 38, 0.5);
  border: 1px solid var(--border-subtle);
}
.page-home .timeline-year {
  font-family: var(--font-num);
  font-size: 18px;
  font-weight: 800;
  color: var(--accent-green);
  white-space: nowrap;
}
.page-home .timeline-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.page-home .guide-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.page-home .guide-stat-item {
  background: rgba(19, 35, 59, 0.8);
  border: 1px solid var(--border-subtle);
  border-top: 2px solid var(--accent-green);
  padding: 20px;
  text-align: center;
}
.page-home .stat-num {
  display: block;
  font-family: var(--font-num);
  font-size: 32px;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
}
.page-home .stat-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}
.page-home .guide-more {
  margin-top: 24px;
  text-align: center;
}

/* ===== 三步走流程 ===== */
.page-home .flow-section {
  background: linear-gradient(135deg, rgba(0, 255, 135, 0.05), rgba(19, 35, 59, 0.94) 40%, rgba(255, 159, 28, 0.04));
}
.page-home .flow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}
.page-home .flow-card {
  position: relative;
  display: block;
  background: rgba(19, 35, 59, 0.86);
  border: 1px solid var(--border-subtle);
  padding: 28px 24px;
  text-decoration: none;
  color: var(--text-white);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.page-home .flow-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.page-home .flow-card:hover,
.page-home .flow-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(0, 255, 135, 0.5);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}
.page-home .flow-card:hover::before,
.page-home .flow-card:focus-within::before {
  transform: scaleX(1);
}
.page-home .flow-num {
  display: block;
  font-family: var(--font-num);
  font-size: 56px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--accent-green);
  margin-bottom: 18px;
}
.page-home .flow-title {
  font-family: var(--font-serif);
  font-size: 24px;
  margin: 0 0 10px;
  font-weight: 800;
}
.page-home .flow-desc {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}
.page-home .flow-more {
  display: inline-block;
  font-size: 14px;
  color: var(--accent-green);
  font-weight: 700;
}
.page-home .flow-hint {
  display: none;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
  font-size: 13px;
  color: var(--text-muted);
}
.page-home .flow-card:hover .flow-hint,
.page-home .flow-card:focus-within .flow-hint {
  display: block;
}

/* ===== 对阵伤停面板预览 ===== */
.page-home .lineup-section {
  background: var(--bg-deep);
}
.page-home .lineup-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 32px;
}
.page-home .lineup-stage {
  position: relative;
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  padding: 24px;
}
.page-home .lineup-stage::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent-green), var(--accent-orange));
  opacity: 0.8;
}
.page-home .lineup-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
}
.page-home .lineup-round {
  font-family: var(--font-num);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.page-home .lineup-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--accent-green);
}
.page-home .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: home-live-pulse 1.6s ease-in-out infinite;
}
@keyframes home-live-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 135, 0.5);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(0, 255, 135, 0);
  }
}
.page-home .lineup-teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 36px 0 28px;
}
.page-home .lineup-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.page-home .team-tag {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.page-home .team-name {
  font-family: var(--font-num);
  font-size: 28px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--text-white);
}
.page-home .lineup-vs {
  font-family: var(--font-num);
  font-size: 18px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}
.page-home .lineup-injuries {
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}
.page-home .injury-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
}
.page-home .injury-label {
  flex: 1 1 60%;
  font-size: 14px;
  color: var(--text-muted);
}
.page-home .injury-count {
  font-size: 15px;
  font-weight: 700;
}
.page-home .injury-bar {
  width: 100%;
  height: 4px;
  background: rgba(200, 208, 218, 0.18);
  overflow: hidden;
  margin: 2px 0 10px;
}
.page-home .injury-bar-fill {
  display: block;
  height: 100%;
  width: 64%;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-orange));
}
.page-home .lineup-switch {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}
.page-home .switch-label {
  font-size: 14px;
  color: var(--text-muted);
}
.page-home .switch-controls {
  display: flex;
  gap: 8px;
}
.page-home .switch-btn {
  display: inline-block;
  padding: 6px 14px;
  font-size: 14px;
  color: var(--text-white);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.page-home .switch-btn.current {
  border-color: var(--accent-green);
  color: var(--accent-green);
  background: rgba(0, 255, 135, 0.1);
}
.page-home .switch-btn:not(.current):hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
  cursor: default;
}
.page-home .lineup-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.page-home .lineup-imgframe {
  border: 1px solid var(--border-subtle);
  background: var(--bg-panel);
  overflow: hidden;
}
.page-home .lineup-imgframe img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.page-home .lineup-note {
  display: flex;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--accent-orange);
  background: rgba(19, 35, 59, 0.6);
}
.page-home .lineup-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}
.page-home .note-icon {
  color: var(--accent-orange);
  font-family: var(--font-num);
  font-size: 18px;
  line-height: 1;
}

/* ===== 最新战报摘要 ===== */
.page-home .reports-section {
  background: var(--bg-panel);
}
.page-home .reports-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}
.page-home .report-card {
  display: flex;
  flex-direction: column;
  background: rgba(11, 21, 38, 0.68);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.page-home .report-card:hover {
  border-color: rgba(0, 255, 135, 0.5);
  background: rgba(19, 35, 59, 0.88);
}
.page-home .report-thumb {
  border-bottom: 1px solid var(--border-subtle);
}
.page-home .report-thumb img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.page-home .report-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
}
.page-home .report-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}
.page-home .data-tag {
  font-size: 12px;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}
.page-home .report-title {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.45;
  margin: 0 0 10px;
  font-weight: 800;
}
.page-home .report-excerpt {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-home .report-card:hover .report-excerpt,
.page-home .report-card:focus-within .report-excerpt {
  display: block;
  -webkit-line-clamp: unset;
}
.page-home .report-link {
  margin-top: auto;
  font-size: 14px;
  color: var(--accent-green);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.page-home .report-link:hover {
  text-decoration: underline;
}

/* ===== 加载性能说明 ===== */
.page-home .speed-section {
  background: linear-gradient(120deg, rgba(11, 21, 38, 0.92), rgba(19, 35, 59, 0.98));
}
.page-home .speed-display {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 32px;
}
.page-home .speed-main {
  background: linear-gradient(135deg, rgba(0, 255, 135, 0.12), rgba(11, 21, 38, 0.6) 60%);
  border: 1px solid var(--border-subtle);
  padding: 36px 28px;
}
.page-home .speed-big {
  display: block;
  font-family: var(--font-num);
  font-size: 72px;
  line-height: 0.9;
  font-weight: 800;
  color: var(--accent-green);
  margin-bottom: 16px;
}
.page-home .speed-lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 24em;
}
.page-home .speed-compare {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 8px 0;
}
.page-home .speed-row {
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: center;
  gap: 12px;
}
.page-home .speed-label {
  font-size: 14px;
  color: var(--text-muted);
}
.page-home .speed-track {
  height: 12px;
  background: rgba(200, 208, 218, 0.18);
  border-radius: 99px;
  overflow: hidden;
}
.page-home .speed-fill {
  display: block;
  height: 100%;
  border-radius: 99px;
}
.page-home .speed-fill-old {
  width: 100%;
  background: linear-gradient(90deg, rgba(255, 159, 28, 0.7), rgba(255, 159, 28, 0.4));
}
.page-home .speed-fill-new {
  width: 46%;
  background: linear-gradient(90deg, var(--accent-green), rgba(0, 255, 135, 0.6));
}
.page-home .speed-note {
  grid-column: 2;
  font-size: 13px;
  color: var(--text-muted);
}
.page-home .speed-footer {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  font-size: 14px;
  color: var(--text-muted);
}

/* ===== 改版反馈入口 ===== */
.page-home .feedback-section {
  padding: 72px 0;
  background: var(--bg-deep);
}
.page-home .feedback-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: linear-gradient(135deg, rgba(0, 255, 135, 0.14), rgba(19, 35, 59, 0.94));
  border: 1px solid var(--border-mid);
  padding: 36px 28px;
}
.page-home .feedback-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 159, 28, 0.2), transparent 70%);
  pointer-events: none;
}
.page-home .feedback-kicker {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-green);
}
.page-home .feedback-title {
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.3;
  margin: 8px 0 10px;
}
.page-home .feedback-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 30em;
}
.page-home .feedback-action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
}

/* ===== 响应式布局 ===== */
@media (min-width: 768px) {
  .page-home .catalog-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .guide-grid {
    grid-template-columns: 1fr 1.2fr;
  }
  .page-home .guide-stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-home .flow-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home .reports-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .speed-display {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero {
    padding: 72px 0 96px;
  }
  .page-home .hero-layout {
    grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1.45fr);
    grid-template-areas: "rail copy";
    gap: 64px;
    align-items: start;
  }
  .page-home .hero-rail {
    position: sticky;
    top: calc(var(--header-h) + 24px);
  }
  .page-home .hero-title {
    font-size: 72px;
    line-height: 1.05;
  }
  .page-home .hero-lead {
    font-size: 18px;
    margin-bottom: 32px;
  }
  .page-home .deco-m6 {
    font-size: 400px;
    right: -20px;
    top: 0;
  }
  .page-home .deco-2026 {
    font-size: 180px;
    bottom: 32px;
    left: 8%;
  }
  .page-home .hero-glow-1 {
    width: 440px;
    height: 440px;
    top: -80px;
    right: -100px;
  }
  .page-home .catalog-strip {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-home .section-title {
    font-size: 36px;
  }
  .page-home .section-index {
    font-size: 72px;
  }
  .page-home .guide-timeline {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-home .guide-stats {
    gap: 16px;
  }
  .page-home .stat-num {
    font-size: 40px;
  }
  .page-home .lineup-layout {
    grid-template-columns: 1.35fr 1fr;
    align-items: start;
  }
  .page-home .reports-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home .feedback-card {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 48px 44px;
  }
  .page-home .feedback-copy {
    max-width: 30em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .live-dot {
    animation: none;
  }
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    transition-duration: 0.01ms !important;
  }
}
