.page-home {
  --home-hero-bg: #0B1E2A;
  --home-hero-accent: #00FFB2;
  --home-hero-warm: #FF8A00;
  --home-card-bg: #FFFFFF;
  --home-dashboard-bg: #0B1E2A;
  --home-deep-light: #1A3B4F;
  --home-foam: #E6F2F2;
  --home-ink: #111827;
  --home-cold-gray: #94A3B8;
  --home-radius-lg: 24px;
  --home-radius-md: 16px;
  --home-radius-pill: 999px;
  --home-font-heading: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --home-font-body: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --home-font-number: 'DIN Alternate', 'Roboto Mono', monospace;
  --home-shadow-card: 0 10px 30px rgba(11, 30, 42, 0.08);
  --home-shadow-float: 0 16px 40px rgba(0, 0, 0, 0.35);
  --home-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  background: var(--home-foam);
}

/* 首屏 */
.page-home .home-hero {
  background: var(--home-hero-bg);
  position: relative;
  overflow: hidden;
  padding: 48px 0 56px;
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 255, 178, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 138, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

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

.page-home .hero-panel {
  position: relative;
}

.page-home .hero-index,
.page-home .section-index {
  font-family: var(--home-font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--home-hero-accent);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-home .hero-index::after,
.page-home .section-index::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--home-hero-accent);
  opacity: 0.5;
}

.page-home .hero-title {
  font-family: var(--home-font-heading);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
  color: #FFFFFF;
  transform: skewX(-2deg);
  margin: 0 0 20px;
  letter-spacing: -0.5px;
}

.page-home .hero-lead {
  font-family: var(--home-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: #E6F2F2;
  opacity: 0.88;
  margin: 0 0 28px;
  max-width: 520px;
}

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

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--home-radius-pill);
  font-family: var(--home-font-heading);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s var(--home-ease), box-shadow 0.3s var(--home-ease), background 0.3s var(--home-ease);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.page-home .btn-primary {
  background: var(--home-hero-accent);
  color: var(--home-hero-bg);
}

.page-home .btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 60%);
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.4s var(--home-ease), transform 0.4s var(--home-ease);
  pointer-events: none;
}

.page-home .btn-primary:hover::after {
  opacity: 1;
  transform: scale(1.6);
}

.page-home .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 255, 178, 0.35);
}

.page-home .btn-ghost {
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(230, 242, 242, 0.6);
}

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

.page-home .btn-ghost--dark {
  color: var(--home-hero-bg);
  border-color: rgba(11, 30, 42, 0.3);
}

.page-home .btn-ghost--dark:hover {
  border-color: var(--home-hero-bg);
  color: var(--home-hero-bg);
}

.page-home .hero-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
}

.page-home .hero-facts li {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.page-home .hero-facts .data-number {
  font-family: var(--home-font-number);
  font-size: 26px;
  font-weight: 700;
  color: var(--home-hero-accent);
}

.page-home .hero-fact-label {
  font-family: var(--home-font-body);
  font-size: 13px;
  color: var(--home-cold-gray);
}

.page-home .hero-visual-frame {
  position: relative;
  border-radius: var(--home-radius-lg);
  overflow: hidden;
  background: var(--home-deep-light);
  box-shadow: var(--home-shadow-float);
}

.page-home .hero-visual-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.page-home .hero-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.45;
  pointer-events: none;
}

.page-home .svg-path-main {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: homePathDraw 3s ease forwards 0.5s;
}

.page-home .svg-path-accent {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: homePathDraw 2.4s ease forwards 0.8s;
}

@keyframes homePathDraw {
  to { stroke-dashoffset: 0; }
}

.page-home .hero-entry-chip {
  margin-top: 20px;
}

.page-home .hero-chip-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 255, 178, 0.08);
  border: 1px solid rgba(0, 255, 178, 0.3);
  border-radius: var(--home-radius-pill);
  padding: 12px 24px;
  text-decoration: none;
  color: #FFFFFF;
  transition: background 0.3s var(--home-ease), border-color 0.3s var(--home-ease), transform 0.3s var(--home-ease);
}

.page-home .hero-chip-link:hover {
  background: rgba(0, 255, 178, 0.18);
  border-color: var(--home-hero-accent);
  transform: translateX(4px);
}

.page-home .chip-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-hero-accent);
  position: relative;
}

.page-home .chip-pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--home-hero-accent);
  animation: homePulse 2s ease infinite;
}

@keyframes homePulse {
  0%, 100% { transform: scale(0.8); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0; }
}

.page-home .chip-text {
  font-family: var(--home-font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.page-home .chip-arrow {
  font-size: 16px;
  color: var(--home-hero-accent);
}

/* 实时更新总览 */
.page-home .home-dashboard {
  background: var(--home-foam);
  padding: 64px 0;
}

.page-home .section-heading-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.page-home .section-heading-row--dark {
  margin-bottom: 40px;
}

.page-home .section-heading {
  font-family: var(--home-font-heading);
  font-size: 28px;
  font-weight: 900;
  color: var(--home-hero-bg);
  margin: 0;
  transform: skewX(-2deg);
}

.page-home .section-heading--light {
  color: #FFFFFF;
}

.page-home .hl {
  color: var(--home-hero-accent);
  font-family: var(--home-font-number);
}

.page-home .section-sub {
  font-family: var(--home-font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--home-cold-gray);
  max-width: 480px;
  margin: 0;
}

.page-home .section-sub--light {
  color: var(--home-cold-gray);
}

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

.page-home .dashboard-card {
  border-radius: var(--home-radius-md);
  padding: 24px;
  box-shadow: var(--home-shadow-card);
  border: none;
}

.page-home .dashboard-card--main {
  background: var(--home-hero-bg);
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-home .dashboard-card-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.page-home .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-hero-accent);
  display: inline-block;
  position: relative;
}

.page-home .status-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(0, 255, 178, 0.3);
  animation: homePulse 2.4s ease infinite;
}

.page-home .dashboard-status-text {
  font-family: var(--home-font-body);
  font-size: 14px;
  font-weight: 600;
}

.page-home .tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  border-radius: var(--home-radius-pill);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--home-font-heading);
  letter-spacing: 0.5px;
}

.page-home .tag--accent {
  background: rgba(255, 138, 0, 0.15);
  color: #FF8A00;
  border: 1px solid rgba(255, 138, 0, 0.3);
}

.page-home .tag--dark {
  background: rgba(11, 30, 42, 0.08);
  color: var(--home-hero-bg);
}

.page-home .dashboard-main-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home .dashboard-main-metric .data-number--light {
  font-family: var(--home-font-number);
  font-size: 42px;
  font-weight: 900;
  color: var(--home-hero-accent);
  line-height: 1.1;
}

.page-home .dashboard-metric-label {
  font-family: var(--home-font-body);
  font-size: 14px;
  color: var(--home-cold-gray);
}

.page-home .dashboard-mini-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  border-top: 1px solid rgba(230, 242, 242, 0.12);
  padding-top: 16px;
}

.page-home .stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.page-home .stat-label {
  font-family: var(--home-font-body);
  font-size: 13px;
  color: var(--home-cold-gray);
}

.page-home .stat-value {
  font-family: var(--home-font-number);
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
}

.page-home .dashboard-card--metric {
  background: var(--home-card-bg);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--home-ease), box-shadow 0.3s var(--home-ease);
}

.page-home .dashboard-card--metric::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0, 255, 178, 0.08);
  transition: transform 0.4s var(--home-ease);
}

.page-home .dashboard-card--metric:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(11, 30, 42, 0.14);
}

.page-home .dashboard-card--metric:hover::after {
  transform: scale(1.6);
}

.page-home .dashboard-card-index {
  font-family: var(--home-font-number);
  font-size: 12px;
  font-weight: 700;
  color: var(--home-cold-gray);
  letter-spacing: 1px;
}

.page-home .dashboard-metric-num {
  font-family: var(--home-font-number);
  font-size: 40px;
  font-weight: 900;
  color: var(--home-hero-bg);
  line-height: 1.2;
}

.page-home .dashboard-metric-desc {
  font-family: var(--home-font-body);
  font-size: 13px;
  color: var(--home-cold-gray);
  line-height: 1.5;
}

.page-home .dashboard-visual-card {
  border-radius: var(--home-radius-md);
  overflow: hidden;
  box-shadow: var(--home-shadow-card);
}

.page-home .dashboard-visual-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* 核心栏目索引 */
.page-home .home-sections {
  background: var(--home-hero-bg);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.page-home .home-sections::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--home-hero-accent), var(--home-hero-warm));
  opacity: 0.6;
}

.page-home .section-index--light {
  color: var(--home-hero-accent);
}

.page-home .section-index--light::after {
  background: var(--home-hero-accent);
}

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

.page-home .section-card {
  background: #FFFFFF;
  border-radius: var(--home-radius-md);
  padding: 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s var(--home-ease), box-shadow 0.3s var(--home-ease), background 0.3s var(--home-ease);
  position: relative;
  overflow: hidden;
}

.page-home .section-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--home-hero-accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s var(--home-ease);
}

.page-home .section-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
  background: #F8FFFD;
}

.page-home .section-card:hover::before {
  transform: scaleY(1);
}

.page-home .section-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.page-home .section-card-num {
  font-family: var(--home-font-number);
  font-size: 13px;
  font-weight: 700;
  color: var(--home-cold-gray);
  letter-spacing: 1px;
}

.page-home .section-card-title {
  font-family: var(--home-font-heading);
  font-size: 22px;
  font-weight: 900;
  color: var(--home-hero-bg);
  margin: 0;
  transform: skewX(-2deg);
}

.page-home .section-card-desc {
  font-family: var(--home-font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--home-cold-gray);
  margin: 0;
}

.page-home .section-card-meta {
  font-family: var(--home-font-number);
  font-size: 13px;
  font-weight: 700;
  color: var(--home-hero-accent);
  margin-top: 4px;
  display: block;
}

.page-home .sections-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.page-home .sections-cta-row .btn-ghost--dark {
  color: #FFFFFF;
  border-color: rgba(230, 242, 242, 0.5);
}

.page-home .sections-cta-row .btn-ghost--dark:hover {
  border-color: var(--home-hero-accent);
  color: var(--home-hero-accent);
}

/* 移动端体验 */
.page-home .home-mobile {
  background: var(--home-card-bg);
  padding: 64px 0;
}

.page-home .mobile-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-home .mobile-narrative {
  flex: 1;
}

.page-home .mobile-lead {
  font-family: var(--home-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--home-ink);
  opacity: 0.8;
  margin: 0 0 24px;
  max-width: 500px;
}

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

.page-home .mobile-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--home-foam);
  border-radius: var(--home-radius-md);
  transition: background 0.3s var(--home-ease);
}

.page-home .mobile-feature-item:hover {
  background: #D7ECEC;
}

.page-home .mobile-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--home-hero-bg);
  color: var(--home-hero-accent);
  font-family: var(--home-font-number);
  font-size: 16px;
  font-weight: 900;
}

.page-home .mobile-feature-item div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home .mobile-feature-name {
  font-family: var(--home-font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--home-hero-bg);
}

.page-home .mobile-feature-desc {
  font-family: var(--home-font-body);
  font-size: 14px;
  color: var(--home-cold-gray);
  line-height: 1.5;
}

.page-home .mobile-visual {
  flex: 1;
}

.page-home .mobile-device-frame {
  background: var(--home-hero-bg);
  border-radius: var(--home-radius-lg);
  padding: 20px;
  text-align: center;
  box-shadow: var(--home-shadow-float);
  position: relative;
}

.page-home .mobile-device-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
  border-radius: var(--home-radius-md);
}

.page-home .mobile-view-tabs {
  display: inline-flex;
  gap: 4px;
  background: var(--home-deep-light);
  border-radius: var(--home-radius-pill);
  padding: 4px;
  margin-top: 16px;
}

.page-home .mobile-tab {
  font-family: var(--home-font-heading);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--home-radius-pill);
  color: var(--home-cold-gray);
}

.page-home .mobile-tab--active {
  background: var(--home-hero-accent);
  color: var(--home-hero-bg);
}

/* 数据路径承诺 */
.page-home .home-path {
  background: linear-gradient(135deg, #0B1E2A 0%, #1A3B4F 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.page-home .home-path::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(circle at 80% 20%, rgba(0, 255, 178, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.page-home .path-panel {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-home .path-heading {
  margin-bottom: 36px;
}

.page-home .path-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0 auto 36px;
  max-width: 480px;
}

.page-home .path-step {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(230, 242, 242, 0.12);
  border-radius: var(--home-radius-md);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background 0.3s var(--home-ease), border-color 0.3s var(--home-ease), transform 0.3s var(--home-ease);
}

.page-home .path-step:hover {
  background: rgba(0, 255, 178, 0.08);
  border-color: rgba(0, 255, 178, 0.3);
  transform: translateX(-4px);
}

.page-home .path-step-num {
  font-family: var(--home-font-number);
  font-size: 13px;
  font-weight: 700;
  color: var(--home-hero-accent);
  letter-spacing: 1px;
}

.page-home .path-step-label {
  font-family: var(--home-font-heading);
  font-size: 18px;
  font-weight: 900;
  color: #FFFFFF;
  transform: skewX(-2deg);
}

.page-home .path-step-desc {
  font-family: var(--home-font-body);
  font-size: 14px;
  color: var(--home-cold-gray);
}

.page-home .path-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
}

.page-home .path-line-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--home-hero-accent);
  opacity: 0.6;
}

.page-home .path-line-dot:last-child {
  opacity: 0.3;
}

.page-home .path-statement {
  font-family: var(--home-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: #E6F2F2;
  opacity: 0.85;
  margin: 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* 滚动显现动效保护 */
.page-home [data-reveal] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .page-home [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* 桌面端媒体查询 */
@media (min-width: 768px) {
  .page-home .home-hero {
    padding: 72px 0 80px;
  }

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

  .page-home .hero-narrative {
    flex: 1.1;
  }

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

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

  .page-home .hero-lead {
    font-size: 17px;
  }

  .page-home .hero-facts {
    gap: 24px 36px;
  }

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

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

  .page-home .dashboard-mini-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .page-home .mobile-layout {
    flex-direction: row;
    align-items: center;
  }

  .page-home .mobile-narrative {
    flex: 1;
  }

  .page-home .mobile-visual {
    flex: 1;
  }

  .page-home .path-flow {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    max-width: none;
  }

  .page-home .path-step {
    flex: 1;
    width: auto;
  }

  .page-home .path-line {
    flex-direction: row;
    gap: 8px;
    padding: 0;
  }

  .page-home .path-line-dot {
    width: 8px;
    height: 8px;
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero {
    min-height: auto;
    padding: 80px 0 96px;
  }

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

  .page-home .hero-lead {
    font-size: 18px;
  }

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

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

  .page-home .dashboard-card--main {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 36px;
  }

  .page-home .dashboard-card-head {
    flex-shrink: 0;
  }

  .page-home .dashboard-main-metric {
    flex-shrink: 0;
  }

  .page-home .dashboard-mini-grid {
    flex: 1;
  }

  .page-home .dashboard-card--metric {
    min-height: 220px;
  }

  .page-home .dashboard-visual-card {
    grid-column: span 1;
  }

  .page-home .home-sections {
    padding: 88px 0;
  }

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

  .page-home .section-heading-row--dark {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
  }

  .page-home .sections-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .page-home .section-card {
    padding: 28px 24px;
  }

  .page-home .section-card-title {
    font-size: 20px;
  }

  .page-home .home-mobile {
    padding: 88px 0;
  }

  .page-home .home-path {
    padding: 88px 0;
  }

  .page-home .path-heading {
    font-size: 36px;
  }
}

@media (max-width: 380px) {
  .page-home .hero-actions {
    flex-direction: column;
  }

  .page-home .btn {
    width: 100%;
  }

  .page-home .hero-facts {
    gap: 14px;
  }

  .page-home .hero-facts .data-number {
    font-size: 22px;
  }

  .page-home .dashboard-main-metric .data-number--light {
    font-size: 34px;
  }

  .page-home .dashboard-metric-num {
    font-size: 34px;
  }

  .page-home .mobile-feature-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
