.page-home {
  --home-orange: #FF6B00;
  --home-blue: #00B4FF;
  --home-silver: #C0C7D1;
  --home-bg-deep: #0A0E17;
  --home-bg-panel: #111827;
  --home-bg-elevated: #1A2332;
  --home-border: #2A3441;
  --home-text-muted: #8A94A6;
  --home-text-white: #F8FAFC;
  --home-success: #00E07A;
  --home-radius: 24px;
  --home-pill: 999px;
  --home-font-display: "Archivo", "Noto Sans SC", "PingFang SC", sans-serif;
  --home-font-body: "Roboto Mono", "Noto Sans SC", "Microsoft YaHei", monospace;
  --home-transition: 240ms cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: var(--home-text-white);
  background: var(--home-bg-deep);
  font-family: var(--home-font-body);
  line-height: 1.6;
}

.page-home *,
.page-home *::before,
.page-home *::after {
  box-sizing: border-box;
}

.page-home a {
  color: var(--home-blue);
  text-decoration: none;
  transition: color var(--home-transition);
}

.page-home a:hover {
  color: var(--home-orange);
}

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

/* -------- 首屏布局 -------- */
.page-home .home-stage {
  position: relative;
  min-height: 640px;
  padding: 96px 24px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

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

.page-home .stage-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.45) saturate(1.2);
}

.page-home .stage-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(255, 107, 0, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse at 85% 30%, rgba(0, 180, 255, 0.14) 0%, transparent 55%),
    linear-gradient(180deg, rgba(10, 14, 23, 0.2) 0%, var(--home-bg-deep) 100%);
}

.page-home .page-breadcrumb {
  position: relative;
  z-index: 2;
  margin-bottom: 32px;
}

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

.page-home .hero-copy {
  max-width: 620px;
}

.page-home .hero-kicker {
  font-family: var(--home-font-body);
  letter-spacing: 0.3em;
  color: var(--home-orange);
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-home .hero-kicker::before {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--home-orange);
  display: inline-block;
  transform: skewX(-20deg);
}

.page-home .hero-title {
  font-family: var(--home-font-display);
  font-weight: 800;
  font-size: clamp(42px, 8vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  text-transform: uppercase;
  background: linear-gradient(180deg, var(--home-text-white) 0%, var(--home-silver) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.page-home .hero-lead {
  font-family: var(--home-font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--home-text-muted);
  margin-bottom: 32px;
  max-width: 520px;
}

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

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: var(--home-pill);
  font-family: var(--home-font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--home-transition);
  will-change: transform;
}

.page-home .btn-primary {
  background: var(--home-orange);
  color: #0A0E17;
  border-color: var(--home-orange);
  box-shadow: 0 0 24px rgba(255, 107, 0, 0.35);
}

.page-home .btn-primary:hover {
  background: #ff7a1a;
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(255, 107, 0, 0.5);
  color: #0A0E17;
}

.page-home .btn-secondary {
  background: transparent;
  color: var(--home-silver);
  border-color: var(--home-border);
}

.page-home .btn-secondary:hover {
  border-color: var(--home-blue);
  color: var(--home-blue);
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(0, 180, 255, 0.2);
}

/* -------- 首屏数据面板 -------- */
.page-home .hero-board {
  width: 100%;
  max-width: 560px;
}

.page-home .board-panel {
  background: rgba(17, 24, 39, 0.85);
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius);
  padding: 24px;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.page-home .board-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--home-orange), var(--home-blue));
  transform: skewY(-12deg);
  transform-origin: left top;
}

.page-home .board-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--home-border);
  margin-bottom: 18px;
}

.page-home .board-live-dot {
  width: 10px;
  height: 10px;
  background: var(--home-success);
  border-radius: 50%;
  animation: home-pulse 1.6s ease-in-out infinite;
}

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

.page-home .board-live-text {
  font-family: var(--home-font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--home-silver);
  flex: 1;
}

.page-home .board-live-status {
  font-size: 12px;
  color: var(--home-success);
  background: rgba(0, 224, 122, 0.1);
  padding: 4px 12px;
  border-radius: var(--home-pill);
}

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

.page-home .board-stat {
  display: flex;
  flex-direction: column;
}

.page-home .stat-num {
  font-family: var(--home-font-display);
  font-weight: 800;
  font-size: clamp(24px, 4vw, 32px);
  color: var(--home-text-white);
  line-height: 1.1;
}

.page-home .stat-label {
  font-size: 12px;
  color: var(--home-text-muted);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.page-home .board-flow {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  height: 36px;
}

.page-home .flow-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--home-orange), rgba(255, 107, 0, 0.2));
  border-radius: 2px;
  transform-origin: bottom;
  animation: home-flow 2.4s ease-in-out infinite alternate;
}

.page-home .flow-bar-1 { height: 34%; animation-delay: 0s; }
.page-home .flow-bar-2 { height: 62%; animation-delay: 0.2s; }
.page-home .flow-bar-3 { height: 80%; animation-delay: 0.4s; }
.page-home .flow-bar-4 { height: 48%; animation-delay: 0.1s; }
.page-home .flow-bar-5 { height: 100%; animation-delay: 0.3s; }

@keyframes home-flow {
  from { transform: scaleY(0.6); opacity: 0.7; }
  to { transform: scaleY(1.1); opacity: 1; }
}

/* -------- 通用章节 -------- */
.page-home .home-section {
  position: relative;
  padding: 64px 24px;
}

.page-home .section-head {
  margin-bottom: 40px;
}

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

.page-home .section-kicker {
  font-family: var(--home-font-body);
  font-size: 12px;
  letter-spacing: 0.26em;
  color: var(--home-blue);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-home .section-kicker::after {
  content: "";
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--home-border);
  display: inline-block;
  transform: skewX(-20deg);
}

.page-home .section-title {
  font-family: var(--home-font-display);
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 800;
  margin: 0;
  color: var(--home-text-white);
  letter-spacing: -0.01em;
}

.page-home .section-desc {
  color: var(--home-text-muted);
  font-size: 14px;
  max-width: 540px;
  margin-top: 16px;
  line-height: 1.8;
}

/* -------- 今日速览 -------- */
.page-home .home-brief {
  background: var(--home-bg-panel);
  border-top: 1px solid var(--home-border);
  border-bottom: 1px solid var(--home-border);
}

.page-home .brief-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--home-border);
  border-radius: var(--home-radius);
  overflow: hidden;
}

.page-home .brief-item {
  padding: 28px;
  background: var(--home-bg-panel);
  position: relative;
  transition: background var(--home-transition);
}

.page-home .brief-item:hover {
  background: var(--home-bg-elevated);
}

.page-home .brief-index {
  font-family: var(--home-font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--home-orange);
  display: block;
  margin-bottom: 12px;
  transform: skewX(-12deg);
}

.page-home .brief-heading {
  font-family: var(--home-font-display);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--home-text-white);
}

.page-home .brief-copy {
  font-size: 14px;
  color: var(--home-text-muted);
  margin: 0;
  line-height: 1.75;
}

/* -------- 实时赛情看板 -------- */
.page-home .home-dashboard {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(0, 180, 255, 0.08) 0%, transparent 60%),
    var(--home-bg-deep);
}

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

.page-home .dashboard-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-home .dashboard-score {
  background: linear-gradient(135deg, var(--home-bg-elevated) 0%, var(--home-bg-panel) 100%);
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.page-home .dashboard-score::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.18) 0%, transparent 70%);
}

.page-home .score-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.page-home .score-league {
  font-size: 13px;
  color: var(--home-silver);
  letter-spacing: 0.06em;
}

.page-home .score-live {
  font-size: 12px;
  color: var(--home-orange);
  display: flex;
  align-items: center;
  gap: 6px;
}

.page-home .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--home-orange);
  border-radius: 50%;
  display: inline-block;
  animation: home-pulse 1.2s ease-in-out infinite;
}

.page-home .score-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0 16px;
}

.page-home .score-team {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}

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

.page-home .team-name {
  font-family: var(--home-font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--home-text-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .team-code {
  font-size: 12px;
  color: var(--home-text-muted);
  letter-spacing: 0.08em;
}

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

.page-home .score-goals {
  font-family: var(--home-font-display);
  font-weight: 800;
  font-size: 44px;
  color: var(--home-text-white);
  line-height: 1;
}

.page-home .score-divider {
  font-family: var(--home-font-display);
  font-weight: 800;
  font-size: 36px;
  color: var(--home-orange);
  line-height: 1;
}

.page-home .score-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--home-border);
}

.page-home .score-time {
  font-family: var(--home-font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--home-silver);
}

.page-home .score-events {
  font-size: 12px;
  color: var(--home-text-muted);
}

.page-home .score-notes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius);
  padding: 20px;
}

.page-home .score-notes p {
  font-size: 13px;
  color: var(--home-text-muted);
  margin: 0;
  line-height: 1.7;
}

.page-home .score-notes strong {
  color: var(--home-silver);
}

.page-home .score-img {
  border-radius: 12px;
  width: 100%;
}

.page-home .dashboard-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-content: start;
}

.page-home .mini-stat {
  background: var(--home-bg-elevated);
  border: 1px solid var(--home-border);
  border-radius: 16px;
  padding: 20px 18px;
  text-align: center;
  transition: border-color var(--home-transition), transform var(--home-transition);
}

.page-home .mini-stat:hover {
  border-color: rgba(255, 107, 0, 0.6);
  transform: translateY(-4px);
}

.page-home .mini-num {
  display: block;
  font-family: var(--home-font-display);
  font-weight: 800;
  font-size: 26px;
  color: var(--home-orange);
  line-height: 1.2;
}

.page-home .mini-label {
  font-size: 12px;
  color: var(--home-text-muted);
  margin-top: 6px;
  display: block;
}

.page-home .dashboard-cta {
  grid-column: 1 / -1;
  margin-top: 8px;
}

/* -------- 战报专栏 -------- */
.page-home .home-reports {
  background: var(--home-bg-panel);
  border-top: 1px solid var(--home-border);
  border-bottom: 1px solid var(--home-border);
}

.page-home .report-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-home .report-tab {
  background: transparent;
  border: 1px solid var(--home-border);
  color: var(--home-text-muted);
  padding: 10px 22px;
  border-radius: var(--home-pill);
  font-family: var(--home-font-body);
  font-size: 14px;
  cursor: pointer;
  transition: all var(--home-transition);
}

.page-home .report-tab:hover {
  border-color: var(--home-blue);
  color: var(--home-blue);
}

.page-home .report-tab.is-active {
  background: var(--home-orange);
  border-color: var(--home-orange);
  color: #0A0E17;
  font-weight: 500;
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
}

.page-home .report-panel {
  display: none;
}

.page-home .report-panel.is-active {
  display: block;
}

.page-home .report-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius);
  overflow: hidden;
  background: var(--home-bg-panel);
}

.page-home .report-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--home-border);
  color: var(--home-text-white);
  transition: background var(--home-transition), padding-left var(--home-transition);
}

.page-home .report-row:last-child {
  border-bottom: none;
}

.page-home .report-row:hover {
  background: var(--home-bg-elevated);
  padding-left: 26px;
  color: var(--home-text-white);
}

.page-home .report-date {
  font-size: 13px;
  color: var(--home-text-muted);
  letter-spacing: 0.03em;
}

.page-home .report-title {
  font-family: var(--home-font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--home-text-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .report-tag {
  font-size: 12px;
  color: var(--home-blue);
  background: rgba(0, 180, 255, 0.1);
  border: 1px solid rgba(0, 180, 255, 0.25);
  padding: 4px 10px;
  border-radius: var(--home-pill);
  white-space: nowrap;
}

.page-home .report-more {
  margin-top: 24px;
  text-align: center;
}

.page-home .review-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  background: var(--home-bg-elevated);
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius);
  padding: 28px;
}

.page-home .review-heading {
  font-family: var(--home-font-display);
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--home-text-white);
}

.page-home .review-text {
  font-size: 14px;
  color: var(--home-text-muted);
  margin-bottom: 18px;
  line-height: 1.75;
}

.page-home .review-points {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .review-points li {
  font-size: 14px;
  color: var(--home-silver);
  position: relative;
  padding-left: 20px;
}

.page-home .review-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--home-orange);
  transform: skewX(-20deg);
}

.page-home .review-media img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
}

.page-home .home-reports[data-current-tab="review"] .report-tab-review {
  background: var(--home-orange);
  border-color: var(--home-orange);
  color: #0A0E17;
}

/* -------- 更新公告 -------- */
.page-home .home-updates {
  background:
    radial-gradient(ellipse at 10% 80%, rgba(255, 107, 0, 0.06) 0%, transparent 60%),
    var(--home-bg-deep);
}

.page-home .update-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
}

.page-home .update-timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--home-orange), var(--home-blue), transparent);
  transform: skewX(-12deg);
}

.page-home .update-item {
  position: relative;
  padding: 20px 0 32px 56px;
}

.page-home .update-item::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 28px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--home-bg-deep);
  border: 3px solid var(--home-orange);
  box-shadow: 0 0 16px rgba(255, 107, 0, 0.35);
}

.page-home .update-version {
  display: inline-block;
  font-family: var(--home-font-display);
  font-weight: 700;
  font-size: 13px;
  color: #0A0E17;
  background: var(--home-blue);
  padding: 4px 14px;
  border-radius: var(--home-pill);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.page-home .update-heading {
  font-family: var(--home-font-display);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--home-text-white);
}

.page-home .update-copy {
  font-size: 14px;
  color: var(--home-text-muted);
  margin: 0 0 10px;
  line-height: 1.75;
}

.page-home .update-time {
  font-size: 12px;
  color: var(--home-silver);
  background: rgba(0, 180, 255, 0.1);
  padding: 3px 12px;
  border-radius: var(--home-pill);
}

/* -------- 帮助中心 -------- */
.page-home .home-help {
  background: var(--home-bg-panel);
  border-top: 1px solid var(--home-border);
  border-bottom: 1px solid var(--home-border);
}

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

.page-home .help-visual img {
  border-radius: var(--home-radius);
  width: 100%;
  min-height: 180px;
}

.page-home .help-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .help-item {
  background: var(--home-bg-elevated);
  border: 1px solid var(--home-border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color var(--home-transition);
}

.page-home .help-item[open] {
  border-color: rgba(0, 180, 255, 0.5);
}

.page-home .help-question {
  padding: 18px 20px;
  font-family: var(--home-font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--home-text-white);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 44px;
  transition: color var(--home-transition);
}

.page-home .help-question:hover {
  color: var(--home-blue);
}

.page-home .help-question::-webkit-details-marker {
  display: none;
}

.page-home .help-question::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--home-orange);
  transition: transform var(--home-transition);
}

.page-home .help-item[open] .help-question::after {
  content: "−";
}

.page-home .help-answer {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--home-text-muted);
  line-height: 1.75;
}

.page-home .help-answer p {
  margin: 0;
}

.page-home .help-answer a {
  color: var(--home-blue);
}

.page-home .help-contact-line {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(255, 107, 0, 0.05);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 16px;
  padding: 20px;
  margin-top: 4px;
}

.page-home .help-contact-line p {
  font-size: 14px;
  color: var(--home-text-muted);
  margin: 0;
  line-height: 1.7;
}

/* -------- 信任区 -------- */
.page-home .home-trust {
  text-align: center;
  padding: 48px 24px 72px;
  background: var(--home-bg-deep);
}

.page-home .trust-badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.page-home .trust-badge {
  border: 1px solid var(--home-border);
  border-radius: var(--home-pill);
  padding: 8px 22px;
  font-size: 13px;
  color: var(--home-silver);
  background: rgba(26, 35, 50, 0.5);
  letter-spacing: 0.04em;
  transition: border-color var(--home-transition);
}

.page-home .trust-badge:hover {
  border-color: var(--home-orange);
}

.page-home .trust-note {
  font-size: 14px;
  color: var(--home-text-muted);
  margin: 0 0 28px;
  line-height: 1.7;
}

.page-home .trust-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.page-home .trust-links a {
  font-size: 14px;
  color: var(--home-text-muted);
  border-bottom: 1px solid transparent;
  transition: color var(--home-transition), border-color var(--home-transition);
}

.page-home .trust-links a:hover {
  color: var(--home-orange);
  border-bottom-color: var(--home-orange);
}

/* -------- 桌面端增强 -------- */
@media (min-width: 720px) {
  .page-home .home-stage {
    min-height: 720px;
    padding: 120px 48px 64px;
  }

  .page-home .home-hero {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
  }

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

  .page-home .hero-board {
    flex: 0 1 520px;
  }

  .page-home .home-section {
    padding: 80px 48px;
  }

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

  .page-home .dashboard-board {
    grid-template-columns: 1.4fr 0.8fr;
    gap: 40px;
  }

  .page-home .score-notes {
    grid-template-columns: 1fr 200px;
    align-items: center;
  }

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

  .page-home .dashboard-cta {
    grid-column: auto;
  }

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

  .page-home .review-card {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .page-home .update-timeline {
    margin-left: 48px;
  }

  .page-home .update-timeline::before {
    left: 24px;
  }

  .page-home .update-item::before {
    left: 16px;
  }

  .page-home .help-layout {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 48px;
  }

  .page-home .help-visual img {
    height: 100%;
    min-height: 340px;
  }
}

@media (min-width: 1024px) {
  .page-home .home-stage {
    padding-left: 64px;
    padding-right: 64px;
  }

  .page-home .home-section {
    padding-left: 64px;
    padding-right: 64px;
  }

  .page-home .hero-title {
    font-size: 72px;
  }

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

  .page-home .brief-item {
    padding: 32px 24px;
  }

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

  .page-home .dashboard-cta {
    grid-column: 1 / -1;
  }
}
