.page-home {
  --home-deep: #0B2545;
  --home-deep-dark: #081834;
  --home-deep-light: #13315C;
  --home-orange: #FF6B35;
  --home-cyan: #00D9FF;
  --home-light: #F4F6F8;
  --home-ink: #1A1A2E;
  --home-mist: #A0C4FF;
  --home-warm: #EAEAEA;
  --home-green: #2ECC71;
  --home-font-heading: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
  --home-font-body: 'Source Han Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --home-font-mono: 'Roboto Mono', 'SF Mono', monospace;
  --home-container: 1240px;
  --home-radius: 4px;
  --home-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --home-shadow-sm: 0 2px 8px rgba(11, 37, 69, 0.08);
  --home-shadow-md: 0 8px 24px rgba(11, 37, 69, 0.12);
  --home-shadow-lg: 0 16px 48px rgba(11, 37, 69, 0.18);
  display: block;
  background: var(--home-deep);
  color: var(--home-light);
  font-family: var(--home-font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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

.page-home .home-container {
  width: 100%;
  max-width: var(--home-container);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.page-home .home-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: var(--home-deep-dark);
  border-bottom: 1px solid rgba(160, 196, 255, 0.16);
  font-family: var(--home-font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--home-mist);
}

.page-home .home-breadcrumb-item {
  display: block;
}

.page-home .home-breadcrumb-sep {
  color: var(--home-orange);
}

.page-home .home-breadcrumb-current {
  color: var(--home-light);
}

.page-home .home-cover {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--home-deep);
  overflow: hidden;
  padding: 80px 24px 48px;
}

.page-home .home-cover-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.page-home .bg-line {
  position: absolute;
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--home-cyan), transparent);
  opacity: 0.45;
}

.page-home .bg-line-a {
  top: 22%;
  left: -10%;
  width: 120%;
  animation: home-flow 9s linear infinite;
}

.page-home .bg-line-b {
  top: 51%;
  left: -20%;
  width: 140%;
  background: linear-gradient(90deg, transparent, var(--home-orange), transparent);
  opacity: 0.32;
  animation: home-flow 13s linear infinite reverse;
}

.page-home .bg-line-c {
  top: 73%;
  left: 10%;
  width: 110%;
  animation: home-flow 11s linear infinite;
}

.page-home .bg-line-d {
  top: 34%;
  left: -30%;
  width: 160%;
  opacity: 0.18;
  animation: home-flow 16s linear infinite reverse;
}

.page-home .bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.22;
}

.page-home .bg-orb-a {
  width: 360px;
  height: 360px;
  background: var(--home-cyan);
  top: 18%;
  right: 6%;
}

.page-home .bg-orb-b {
  width: 280px;
  height: 280px;
  background: var(--home-orange);
  bottom: 12%;
  left: 22%;
  opacity: 0.14;
}

@keyframes home-flow {
  0% { transform: translateX(0); }
  50% { transform: translateX(80px); }
  100% { transform: translateX(0); }
}

.page-home .home-cover-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--home-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.page-home .home-cover-main {
  max-width: 680px;
}

.page-home .home-eyebrow {
  font-family: var(--home-font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--home-cyan);
  margin-bottom: 20px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-home .home-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--home-orange);
  flex-shrink: 0;
}

.page-home .home-cover h1 {
  font-family: var(--home-font-heading);
  font-weight: 900;
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.18;
  margin: 0 0 24px;
  color: var(--home-light);
  letter-spacing: -0.02em;
}

.page-home .home-cover-desc {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(244, 246, 248, 0.82);
  margin-bottom: 36px;
  max-width: 560px;
}

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

.page-home .home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--home-font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  border-radius: var(--home-radius);
  transition: transform var(--home-transition), box-shadow var(--home-transition), background var(--home-transition), border-color var(--home-transition);
}

.page-home .home-btn-primary {
  background: var(--home-orange);
  color: #fff;
  box-shadow: var(--home-shadow-sm);
}

.page-home .home-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--home-shadow-md);
  background: #ff7d4f;
}

.page-home .home-btn-ghost {
  background: transparent;
  border: 1px solid var(--home-cyan);
  color: var(--home-cyan);
}

.page-home .home-btn-ghost:hover {
  background: rgba(0, 217, 255, 0.08);
  transform: translateY(-3px);
}

.page-home .home-cover-index {
  background: rgba(8, 24, 52, 0.7);
  border: 1px solid rgba(160, 196, 255, 0.2);
  border-radius: var(--home-radius);
  padding: 24px;
  max-width: 380px;
  position: relative;
}

.page-home .home-cover-index::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 36px;
  height: 36px;
  border-top: 3px solid var(--home-orange);
  border-left: 3px solid var(--home-orange);
}

.page-home .home-index-title {
  font-family: var(--home-font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--home-light);
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}

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

.page-home .home-index-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(160, 196, 255, 0.1);
  font-size: 14px;
  transition: color var(--home-transition), padding-left var(--home-transition);
  color: rgba(244, 246, 248, 0.78);
}

.page-home .home-index-list a:hover {
  color: var(--home-cyan);
  padding-left: 6px;
}

.page-home .home-index-num {
  font-family: var(--home-font-mono);
  font-size: 12px;
  color: var(--home-orange);
  flex-shrink: 0;
}

.page-home .home-index-note {
  font-size: 13px;
  color: rgba(244, 246, 248, 0.55);
  line-height: 1.6;
  margin: 0;
  font-family: var(--home-font-mono);
}

.page-home .home-cover-meta {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--home-container);
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.page-home .home-meta-block {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 16px;
  border-left: 2px solid var(--home-orange);
  background: rgba(255, 107, 53, 0.06);
}

.page-home .home-meta-label {
  font-size: 13px;
  color: var(--home-mist);
  margin-right: auto;
}

.page-home .home-meta-num {
  font-family: var(--home-font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--home-light);
  line-height: 1;
}

.page-home .home-meta-unit {
  font-size: 12px;
  color: var(--home-orange);
  font-family: var(--home-font-mono);
}

.page-home .home-diag {
  height: 4px;
  background: linear-gradient(135deg, transparent 0%, transparent 48%, var(--home-orange) 48%, var(--home-orange) 52%, transparent 52%, transparent 100%);
  background-size: 64px 4px;
  opacity: 0.6;
}

.page-home .home-diag-reverse {
  background: linear-gradient(135deg, transparent 0%, transparent 48%, var(--home-cyan) 48%, var(--home-cyan) 52%, transparent 52%, transparent 100%);
  background-size: 64px 4px;
  opacity: 0.6;
}

.page-home .home-section {
  position: relative;
  padding: 72px 0;
}

.page-home .home-section-head {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.page-home .home-section-num {
  font-family: var(--home-font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--home-orange);
  line-height: 1.2;
  padding-top: 4px;
}

.page-home .home-section-titles h2 {
  font-family: var(--home-font-heading);
  font-weight: 900;
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.3;
  margin: 0 0 10px;
  color: var(--home-light);
}

.page-home .home-section-desc {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(244, 246, 248, 0.7);
  margin: 0;
  max-width: 640px;
}

.page-home .home-subscribe {
  background: var(--home-deep-dark);
}

.page-home .home-subscribe-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.page-home .home-subscribe-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--home-radius);
  border: 1px solid rgba(160, 196, 255, 0.18);
  box-shadow: var(--home-shadow-lg);
}

.page-home .home-img-main {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.page-home .home-img-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--home-font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--home-light);
  background: var(--home-deep);
  padding: 6px 10px;
  border-radius: var(--home-radius);
  border: 1px solid var(--home-orange);
  backdrop-filter: blur(4px);
}

.page-home .home-lead {
  font-size: 17px;
  line-height: 1.85;
  color: rgba(244, 246, 248, 0.85);
  margin: 0 0 20px;
}

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

.page-home .home-point-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(244, 246, 248, 0.86);
}

.page-home .home-point-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 2px;
  background: var(--home-orange);
}

.page-home .home-point-list strong {
  font-weight: 700;
  color: var(--home-light);
}

.page-home .home-text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--home-cyan);
  border-bottom: 1px solid transparent;
  transition: border-color var(--home-transition), gap var(--home-transition);
  padding-bottom: 4px;
}

.page-home .home-text-link:hover {
  border-bottom-color: var(--home-cyan);
  gap: 10px;
}

.page-home .home-subscribe-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}

.page-home .home-stat-card {
  background: rgba(244, 246, 248, 0.04);
  border: 1px solid rgba(160, 196, 255, 0.14);
  border-radius: var(--home-radius);
  padding: 20px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  transition: transform var(--home-transition), background var(--home-transition), border-color var(--home-transition) ;
  position: relative;
  overflow: hidden;
}

.page-home .home-stat-card::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(255, 107, 53, 0.1));
  transition: width var(--home-transition);
}

.page-home .home-stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--home-orange);
  background: rgba(255, 107, 53, 0.05);
}

.page-home .home-stat-card:hover::after {
  width: 40%;
}

.page-home .home-stat-label {
  font-size: 13px;
  color: var(--home-mist);
  margin-right: auto;
}

.page-home .home-stat-value {
  font-family: var(--home-font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--home-light);
  line-height: 1;
}

.page-home .home-stat-unit {
  font-size: 13px;
  color: var(--home-orange);
  font-family: var(--home-font-mono);
}

.page-home .home-search {
  background: var(--home-deep);
}

.page-home .home-search-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.page-home .home-search-side {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.page-home .home-search-device {
  position: relative;
  background: var(--home-deep-light);
  border: 2px solid rgba(160, 196, 255, 0.3);
  border-radius: 20px;
  padding: 28px 20px 20px;
  width: 100%;
  max-width: 300px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  box-shadow: var(--home-shadow-lg);
}

.page-home .device-bar {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: var(--home-mist);
  opacity: 0.4;
}

.page-home .device-item {
  display: block;
  height: 12px;
  border-radius: 2px;
  background: rgba(160, 196, 255, 0.18);
}

.page-home .device-item-wide {
  width: 92%;
}

.page-home .device-item-short {
  width: 62%;
}

.page-home .device-scan {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--home-cyan), transparent);
  top: 40%;
  animation: home-scan 3.4s ease-in-out infinite;
}

@keyframes home-scan {
  0% { top: 24%; opacity: 0.2; }
  50% { top: 74%; opacity: 1; }
  100% { top: 24%; opacity: 0.2; }
}

.page-home .home-search-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--home-font-mono);
  font-size: 13px;
  color: var(--home-light);
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.5);
  border-radius: 999px;
  padding: 8px 16px;
}

.page-home .chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--home-green);
  animation: home-dot-pulse 2s ease-in-out infinite;
}

@keyframes home-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(46, 204, 113, 0); }
}

.page-home .home-quick-path {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 8px 0 20px;
  padding: 14px 16px;
  background: rgba(0, 217, 255, 0.06);
  border-left: 3px solid var(--home-cyan);
  font-family: var(--home-font-mono);
  font-size: 13px;
  color: var(--home-mist);
}

.page-home .home-quick-label {
  color: var(--home-orange);
  font-weight: 700;
  margin-right: 4px;
}

.page-home .home-quick-step {
  color: var(--home-light);
  font-size: 13px;
}

.page-home .home-quick-arrow {
  color: var(--home-cyan);
}

.page-home .home-track {
  background: var(--home-deep-dark);
}

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

.page-home .home-track-main {
  max-width: 620px;
}

.page-home .home-track-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0;
}

.page-home .home-track-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.page-home .track-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--home-orange);
  color: #fff;
  font-family: var(--home-font-mono);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.page-home .track-step-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 2px;
}

.page-home .track-step-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--home-light);
}

.page-home .track-step-desc {
  font-size: 14px;
  color: rgba(244, 246, 248, 0.6);
}

.page-home .home-track-note {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px dashed var(--home-cyan);
  border-radius: var(--home-radius);
  color: var(--home-cyan);
  font-size: 14px;
  font-weight: 700;
}

.page-home .track-note-icon {
  font-size: 18px;
  color: var(--home-orange);
}

.page-home .home-track-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-home .home-track-card {
  background: var(--home-deep-light);
  border: 1px solid rgba(160, 196, 255, 0.2);
  border-radius: var(--home-radius);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--home-shadow-md);
}

.page-home .track-card-label {
  font-family: var(--home-font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--home-light);
}

.page-home .track-card-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--home-font-mono);
  font-size: 13px;
  color: var(--home-green);
}

.page-home .track-card-status .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-green);
}

.page-home .home-track-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(160, 196, 255, 0.14);
}

.page-home .home-track-list li {
  border-bottom: 1px solid rgba(160, 196, 255, 0.14);
}

.page-home .home-track-list a {
  display: block;
  padding: 14px 4px;
  font-size: 14px;
  color: rgba(244, 246, 248, 0.8);
  transition: color var(--home-transition), padding-left var(--home-transition);
}

.page-home .home-track-list a:hover {
  color: var(--home-cyan);
  padding-left: 10px;
}

.page-home .home-cases {
  background: var(--home-deep);
  padding-top: 72px;
}

.page-home .home-cases-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.page-home .home-cases-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.28;
}

.page-home .home-cases-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 37, 69, 0.94) 0%, rgba(11, 37, 69, 0.82) 100%);
}

.page-home .home-cases .home-container {
  position: relative;
  z-index: 1;
}

.page-home .home-cases-head {
  margin-bottom: 32px;
}

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

.page-home .home-case-card {
  position: relative;
  background: rgba(244, 246, 248, 0.9);
  border-radius: var(--home-radius);
  padding: 24px;
  color: var(--home-ink);
  box-shadow: var(--home-shadow-md);
  transition: transform var(--home-transition), box-shadow var(--home-transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .home-case-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 28px;
  height: 28px;
  border-top: 3px solid var(--home-deep);
  border-left: 3px solid var(--home-deep);
  border-radius: var(--home-radius) 0 0 0;
  margin: 1px;
}

.page-home .home-case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--home-shadow-lg);
}

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

.page-home .case-card-cat {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--home-deep);
  background: var(--home-warm);
  border: 1px solid rgba(11, 37, 69, 0.14);
  border-radius: 2px;
  padding: 4px 10px;
  font-family: var(--home-font-heading);
}

.page-home .case-card-count {
  font-family: var(--home-font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--home-orange);
}

.page-home .home-case-card h3 {
  font-family: var(--home-font-heading);
  font-weight: 900;
  font-size: 20px;
  margin: 0;
  color: var(--home-deep);
}

.page-home .home-case-card p {
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
  color: rgba(26, 26, 46, 0.8);
}

.page-home .home-case-card .home-text-link {
  color: var(--home-deep);
  margin-top: auto;
}

.page-home .home-case-card .home-text-link:hover {
  color: var(--home-deep);
  border-bottom-color: var(--home-deep);
}

.page-home .home-cases-total {
  font-size: 15px;
  color: rgba(244, 246, 248, 0.78);
  padding: 16px 20px;
  border-left: 3px solid var(--home-orange);
  background: rgba(255, 107, 53, 0.06);
  margin: 0;
}

.page-home .home-cases-total strong {
  font-family: var(--home-font-mono);
  font-size: 18px;
  color: var(--home-light);
  font-weight: 700;
}

.page-home .home-fleet {
  background: var(--home-deep-dark);
}

.page-home .home-fleet-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-home .home-fleet-copy h2 {
  font-family: var(--home-font-heading);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.4;
  margin: 0 0 12px;
  color: var(--home-light);
}

.page-home .home-fleet-copy p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(244, 246, 248, 0.7);
  margin: 0;
  max-width: 480px;
}

.page-home .home-fleet-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .home-fleet-link {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: rgba(244, 246, 248, 0.04);
  border: 1px solid rgba(160, 196, 255, 0.12);
  border-radius: var(--home-radius);
  transition: background var(--home-transition), border-color var(--home-transition), transform var(--home-transition);
}

.page-home .home-fleet-link:hover {
  background: rgba(0, 217, 255, 0.05);
  border-color: var(--home-cyan);
  transform: translateX(4px);
}

.page-home .fleet-link-num {
  font-family: var(--home-font-mono);
  font-weight: 700;
  font-size: 16px;
  color: var(--home-orange);
}

.page-home .fleet-link-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--home-light);
}

.page-home .fleet-link-meta {
  grid-column: 2 / 3;
  font-size: 13px;
  color: rgba(244, 246, 248, 0.56);
  margin-top: -8px;
}

.page-home .fleet-link-arrow {
  grid-row: 1 / 3;
  grid-column: 3 / 4;
  font-size: 20px;
  color: var(--home-cyan);
}

@media (min-width: 640px) {
  .page-home .home-cover-inner {
    grid-template-columns: 1fr 320px;
    gap: 32px;
  }

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

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

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

  .page-home .home-section-num {
    font-size: 36px;
  }

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

  .page-home .home-cases-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .page-home .home-fleet-inner {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
    align-items: start;
  }
}

@media (min-width: 960px) {
  .page-home .home-subscribe-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }

  .page-home .home-search-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
  }

  .page-home .home-search-side {
    align-items: center;
  }

  .page-home .home-track-layout {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
  }

  .page-home .home-fleet-links {
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .bg-line,
  .page-home .device-scan,
  .page-home .chip-dot {
    animation: none;
  }

  .page-home .home-btn,
  .page-home .home-stat-card,
  .page-home .home-case-card,
  .page-home .home-fleet-link {
    transition: none;
  }

  .page-home .home-index-list a:hover {
    padding-left: 0;
  }
}
