.page-home {
  --home-hero-glow: rgba(57, 255, 20, 0.08);
  --home-orange-glow: rgba(255, 107, 0, 0.12);
  --home-diagonal-angle: -3deg;
  background-color: var(--space-blue);
}

.page-home .site-container {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.page-home .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0 8px;
  font-size: 0.85rem;
  color: var(--sky-glow);
  font-family: var(--font-data);
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(74, 144, 226, 0.15);
}

.page-home .breadcrumbs-item[aria-current="page"] {
  color: var(--neon-green);
}

.page-home .breadcrumbs-divider {
  opacity: 0.5;
}

.page-home .section-kicker {
  font-family: var(--font-data);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--line-blue);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-home .section-kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--neon-green);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.page-home .section-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--paper-white);
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}

.page-home .section-description {
  color: rgba(245, 247, 250, 0.72);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 0 32px;
}

.page-home .section-header {
  margin-bottom: 32px;
}

.page-home .section-header-split {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-small);
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
}

.page-home .btn-primary {
  background: var(--neon-green);
  color: var(--space-blue);
  box-shadow: 0 0 24px rgba(57, 255, 20, 0.25);
}

.page-home .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(57, 255, 20, 0.4);
}

.page-home .btn-ghost {
  background: transparent;
  color: var(--paper-white);
  border-color: rgba(74, 144, 226, 0.4);
}

.page-home .btn-ghost:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
  transform: translateY(-2px);
}

.page-home .tag-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-family: var(--font-data);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  background: rgba(255, 107, 0, 0.15);
  color: var(--energy-orange);
  border: 1px solid rgba(255, 107, 0, 0.35);
}

.page-home .tag-badge[data-tone="success"] {
  background: rgba(40, 199, 111, 0.12);
  color: var(--success-green);
  border-color: rgba(40, 199, 111, 0.3);
}

.page-home .tag-badge[data-tone="warn"] {
  background: rgba(255, 193, 7, 0.12);
  color: var(--warning-yellow);
  border-color: rgba(255, 193, 7, 0.3);
}

.page-home .data-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-family: var(--font-data);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--line-blue);
  background: rgba(74, 144, 226, 0.08);
  border: 1px solid rgba(74, 144, 226, 0.25);
  border-radius: var(--radius-small);
  white-space: nowrap;
}

.page-home .data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(74, 144, 226, 0.1);
  font-family: var(--font-data);
  font-size: 0.88rem;
  color: rgba(245, 247, 250, 0.85);
}

.page-home .data-row span:last-child {
  color: var(--neon-green);
  font-weight: 600;
}

.page-home .text-link {
  color: var(--line-blue);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s var(--ease);
}

.page-home .text-link:hover {
  color: var(--neon-green);
}

.page-home .card {
  background: var(--midnight-navy);
  border: 1px solid rgba(74, 144, 226, 0.18);
  border-radius: var(--radius-medium);
  padding: 20px;
  box-shadow: var(--shadow-1);
}

.page-home .media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-medium);
  border: 1px solid rgba(74, 144, 226, 0.2);
  background: var(--midnight-navy);
}

.page-home .media-frame img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

.page-home .media-frame::after {
  content: attr(data-label);
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(11, 27, 43, 0.82);
  color: var(--neon-green);
  font-family: var(--font-data);
  font-size: 0.72rem;
  padding: 3px 8px;
  border-left: 2px solid var(--neon-green);
  border-radius: 2px;
  letter-spacing: 0.04em;
  pointer-events: none;
}

.page-home [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.page-home [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 城墙纹样背景 */
.page-home .city-wall-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M0 70 L20 70 L20 60 L30 60 L30 70 L50 70 L50 60 L60 60 L60 70 L80 70 M0 50 L20 50 L20 40 L30 40 L30 50 L50 50 L50 40 L60 40 L60 50 L80 50 M0 30 L20 30 L20 20 L30 20 L30 30 L50 30 L50 20 L60 20 L60 30 L80 30 M0 10 L20 10 L20 0 L30 0 L30 10 L50 10 L50 0 L60 0 L60 10 L80 10' fill='none' stroke='%234A90E2' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}

/* 首屏英雄区 */
.page-home .hero-dashboard {
  position: relative;
  padding: 40px 0 56px;
  background: linear-gradient(135deg, var(--space-blue) 0%, var(--midnight-navy) 70%, var(--sky-glow) 130%);
  overflow: hidden;
}

.page-home .hero-dashboard::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(105deg, transparent 60%, rgba(57, 255, 20, 0.04) 100%);
  pointer-events: none;
}

.page-home .hero-dashboard::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: -10%;
  width: 120%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--neon-green), var(--energy-orange), transparent);
  transform: rotate(-1deg);
  opacity: 0.6;
}

.page-home .hero-dashboard-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.page-home .hero-copy {
  flex: 1;
}

.page-home .hero-copy h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--paper-white);
  margin: 0 0 16px;
  letter-spacing: 0.01em;
}

.page-home .hero-lead {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245, 247, 250, 0.75);
  max-width: 560px;
  margin-bottom: 28px;
}

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

.page-home .hero-visual {
  flex: 1;
  min-width: 0;
}

.page-home .hero-image-frame {
  border-radius: var(--radius-medium);
  transform: rotate(-1.5deg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.page-home .hero-image-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(57, 255, 20, 0.15) 0%, transparent 40%);
  z-index: 1;
  pointer-events: none;
}

/* 数据驾驶舱 */
.page-home .dashboard-section {
  padding: 56px 0;
  position: relative;
}

.page-home .dashboard-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: repeating-linear-gradient(to bottom, var(--line-blue), var(--line-blue) 8px, transparent 8px, transparent 16px);
  opacity: 0.08;
  pointer-events: none;
}

.page-home .dashboard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.page-home .dashboard-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.page-home .dashboard-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-green), transparent 70%);
  opacity: 0.5;
}

.page-home .dashboard-card-primary {
  background: linear-gradient(160deg, var(--midnight-navy) 0%, var(--space-blue) 100%);
}

.page-home .dashboard-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.page-home .dashboard-card-header h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--paper-white);
  margin: 0;
}

.page-home .dashboard-metric {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.page-home .stat-num {
  font-family: var(--font-data);
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--neon-green);
}

.page-home .stat-unit {
  font-family: var(--font-data);
  font-size: 0.9rem;
  color: var(--sky-glow);
}

.page-home .dashboard-metric-sm .stat-num {
  font-size: 1.8rem;
}

.page-home .dashboard-card-note {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(245, 247, 250, 0.65);
  line-height: 1.6;
  margin: 0;
}

.page-home .dashboard-chart {
  margin-top: 8px;
  width: 100%;
}

.page-home .dashboard-chart svg {
  width: 100%;
  height: auto;
  display: block;
}

.page-home .dashboard-side-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-home .dashboard-bottom-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 16px;
}

.page-home .map-panel svg {
  width: 100%;
  height: auto;
  display: block;
}

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

.page-home .map-panel-header h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--paper-white);
  margin: 0;
}

/* PC端更新公告 */
.page-home .update-section {
  padding: 56px 0;
  position: relative;
  background: linear-gradient(180deg, var(--space-blue) 0%, var(--midnight-navy) 100%);
  clip-path: polygon(0 0, 100% 2%, 100% 98%, 0 100%);
}

.page-home .update-section .site-container {
  padding-top: 24px;
  padding-bottom: 32px;
}

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

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

.page-home .update-feature::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--home-orange-glow), transparent 70%);
  pointer-events: none;
}

.page-home .update-feature h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--paper-white);
  margin: 16px 0 12px;
  line-height: 1.4;
}

.page-home .update-feature-text {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(245, 247, 250, 0.7);
  margin-bottom: 16px;
}

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

.page-home .feature-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.88rem;
  color: rgba(245, 247, 250, 0.8);
  line-height: 1.5;
}

.page-home .feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 2px;
  background: var(--neon-green);
  transform: skewX(-30deg);
}

.page-home .update-mini-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.page-home .update-mini-item {
  background: rgba(18, 41, 62, 0.7);
  border: 1px solid rgba(74, 144, 226, 0.15);
  border-radius: var(--radius-small);
  padding: 16px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.page-home .update-mini-item:hover {
  border-color: rgba(57, 255, 20, 0.35);
}

.page-home .update-mini-item h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--paper-white);
  margin: 10px 0 6px;
}

.page-home .update-mini-item p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(245, 247, 250, 0.6);
  margin-bottom: 10px;
}

/* 反馈中心 */
.page-home .feedback-section {
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.page-home .feedback-section::before {
  content: "";
  position: absolute;
  top: 40px;
  right: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.page-home .feedback-card {
  cursor: pointer;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.page-home .feedback-card:hover {
  border-color: rgba(57, 255, 20, 0.4);
  box-shadow: 0 4px 20px rgba(57, 255, 20, 0.06);
}

.page-home .feedback-card-summary {
  display: flex;
  align-items: center;
  gap: 14px;
}

.page-home .feedback-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 1rem;
  color: var(--energy-orange);
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: var(--radius-small);
  flex-shrink: 0;
}

.page-home .feedback-card-summary h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--paper-white);
  margin: 0 0 4px;
}

.page-home .feedback-category {
  font-family: var(--font-data);
  font-size: 0.75rem;
  color: var(--sky-glow);
  letter-spacing: 0.03em;
}

.page-home .feedback-detail {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s var(--ease), opacity 0.4s var(--ease), margin-top 0.4s var(--ease);
}

.page-home .feedback-card[data-open="true"] .feedback-detail {
  max-height: 400px;
  opacity: 1;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(74, 144, 226, 0.15);
}

.page-home .feedback-detail p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(245, 247, 250, 0.72);
  margin-bottom: 12px;
}

/* CN战报专栏 */
.page-home .battle-section {
  padding: 56px 0;
  position: relative;
  background: linear-gradient(180deg, var(--space-blue) 0%, rgba(11, 27, 43, 0.9) 100%);
}

.page-home .battle-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(74, 144, 226, 0.03) 1px, transparent 1px);
  background-size: 100% 40px;
  pointer-events: none;
}

.page-home .battle-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(74, 144, 226, 0.15);
  padding-bottom: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.page-home .battle-tab {
  appearance: none;
  background: transparent;
  border: none;
  padding: 8px 16px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(245, 247, 250, 0.5);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}

.page-home .battle-tab:hover {
  color: var(--paper-white);
}

.page-home .battle-tab.is-active {
  color: var(--neon-green);
  border-bottom-color: var(--neon-green);
}

.page-home .battle-timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .battle-item {
  position: relative;
  background: var(--midnight-navy);
  border: 1px solid rgba(74, 144, 226, 0.15);
  border-radius: var(--radius-medium);
  padding: 16px;
  transition: border-color 0.3s var(--ease);
}

.page-home .battle-item:hover {
  border-color: rgba(57, 255, 20, 0.3);
}

.page-home .battle-time {
  margin-bottom: 12px;
}

.page-home .battle-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .battle-thumb {
  width: 100%;
  max-width: 250px;
  border-radius: var(--radius-small);
}

.page-home .battle-main h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--paper-white);
  margin: 10px 0 8px;
  line-height: 1.45;
}

.page-home .battle-meta {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(245, 247, 250, 0.6);
  margin-bottom: 12px;
}

/* 新客首屏直达 CTA */
.page-home .cta-section {
  padding: 0 0 56px;
}

.page-home .cta-panel {
  position: relative;
  border-radius: var(--radius-medium);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  background: linear-gradient(150deg, var(--midnight-navy) 0%, var(--space-blue) 80%);
  border: 1px solid rgba(57, 255, 20, 0.15);
  box-shadow: var(--shadow-2);
}

.page-home .cta-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--neon-green), var(--energy-orange), transparent);
}

.page-home .cta-panel::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.1), transparent 70%);
  pointer-events: none;
}

.page-home .cta-copy {
  padding: 32px 24px;
  position: relative;
  z-index: 2;
}

.page-home .cta-copy h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--paper-white);
  margin-bottom: 12px;
}

.page-home .cta-text {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(245, 247, 250, 0.72);
  margin-bottom: 24px;
  max-width: 480px;
}

.page-home .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.page-home .cta-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid rgba(74, 144, 226, 0.15);
  padding-top: 20px;
}

.page-home .cta-stat {
  text-align: left;
}

.page-home .cta-stat .stat-num {
  font-size: 1.5rem;
}

.page-home .cta-stat .stat-unit {
  font-size: 0.8rem;
}

.page-home .cta-stat p {
  font-size: 0.78rem;
  color: rgba(245, 247, 250, 0.55);
  margin: 4px 0 0;
  letter-spacing: 0.04em;
}

.page-home .cta-image {
  position: relative;
  z-index: 2;
  border-radius: 0;
  border: none;
  border-top: 1px solid rgba(74, 144, 226, 0.15);
}

/* ===== 桌面端 ≥768px ===== */
@media (min-width: 768px) {
  .page-home .site-container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .page-home .section-title {
    font-size: 2rem;
  }

  .page-home .section-header-split {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .page-home .hero-dashboard {
    padding: 72px 0 96px;
  }

  .page-home .hero-dashboard-inner {
    flex-direction: row;
    align-items: center;
    gap: 56px;
  }

  .page-home .hero-copy h1 {
    font-size: 2.2rem;
    line-height: 1.25;
    max-width: 600px;
  }

  .page-home .hero-lead {
    font-size: 1.05rem;
    line-height: 1.8;
  }

  .page-home .hero-image-frame {
    transform: rotate(-2deg) translateY(12px);
  }

  /* 仪表盘网格 */
  .page-home .dashboard-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 20px;
  }

  .page-home .dashboard-card-primary {
    min-height: 100%;
  }

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

  .page-home .dashboard-bottom-row {
    grid-template-columns: 1.4fr 1fr;
    gap: 20px;
  }

  .page-home .dashboard-metric {
    margin-top: auto;
  }

  /* 更新公告 */
  .page-home .update-section {
    padding: 72px 0;
  }

  .page-home .update-layout {
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
    align-items: stretch;
  }

  .page-home .update-feature {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  /* 反馈中心 */
  .page-home .feedback-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .page-home .feedback-card {
    min-height: 140px;
  }

  /* 战报 */
  .page-home .battle-section {
    padding: 72px 0;
  }

  .page-home .battle-content {
    flex-direction: row;
    align-items: flex-start;
  }

  .page-home .battle-thumb {
    width: 250px;
    flex-shrink: 0;
  }

  .page-home .battle-main {
    flex: 1;
  }

  /* CTA */
  .page-home .cta-panel {
    grid-template-columns: 1.2fr 1fr;
  }

  .page-home .cta-copy {
    padding: 48px 40px;
  }

  .page-home .cta-image {
    min-height: 360px;
  }

  .page-home .cta-image img {
    height: 100%;
    min-height: 360px;
    object-fit: cover;
  }
}

/* ===== 大屏 ≥1200px ===== */
@media (min-width: 1200px) {
  .page-home .site-container {
    padding-left: 48px;
    padding-right: 48px;
  }

  .page-home .hero-dashboard {
    padding: 88px 0 112px;
  }

  .page-home .hero-dashboard-inner {
    gap: 80px;
  }

  .page-home .hero-copy h1 {
    font-size: 2.6rem;
    max-width: 680px;
  }

  .page-home .dashboard-section,
  .page-home .update-section,
  .page-home .feedback-section,
  .page-home .battle-section {
    padding: 80px 0;
  }

  .page-home .cta-copy {
    padding: 56px 48px;
  }
}
