.page-home {
  --home-neon: #00FF88;
  --home-space: #0B1D3A;
  --home-midnight: #081018;
  --home-panel: #112240;
  --home-line: #1A2D4D;
  --home-silver: #C0C0C0;
  --home-ice: #E6F1FF;
  --home-muted: #8899AA;
  --home-amber: #FFC107;
  --home-heading: "HarmonyOS Sans SC", "Arial Black", system-ui, sans-serif;
  --home-data: "JetBrains Mono", Consolas, monospace;
  background: var(--home-space);
  color: var(--home-ice);
  overflow-x: hidden;
}

.page-home .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-home a {
  color: var(--home-ice);
  text-decoration: none;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.page-home a:hover,
.page-home a:focus-visible {
  color: var(--home-neon);
}

.page-home .crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 24px 0 8px;
  font-size: 13px;
  color: var(--home-muted);
  letter-spacing: 0.04em;
}

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

.page-home .crumb [aria-current="page"] {
  color: var(--home-silver);
}

.page-home .home-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 40px 0 48px;
  position: relative;
  border-bottom: 1px solid var(--home-line);
}

.page-home .intro-copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--home-neon);
  margin-bottom: 18px;
}

.page-home .eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--home-neon);
  transform: skewX(-12deg);
}

.page-home .intro-copy h1 {
  font-family: var(--home-heading);
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--home-ice);
  margin: 0 0 16px;
  transform: skewX(-1.5deg);
  max-width: 14em;
}

.page-home .intro-lead {
  font-size: 16px;
  line-height: 1.8;
  color: var(--home-silver);
  max-width: 56em;
  margin: 0 0 16px;
}

.page-home .intro-note {
  font-size: 14px;
  line-height: 1.7;
  color: var(--home-muted);
  border-left: 2px solid var(--home-neon);
  padding-left: 12px;
}

.page-home .intro-visual {
  position: relative;
  align-self: start;
  max-width: 640px;
}

.page-home .intro-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% 84%, 92% 100%, 0 100%);
  background: var(--home-panel);
}

.page-home .visual-sweep {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 48px;
  height: 200px;
  background: linear-gradient(160deg, var(--home-neon) 0%, transparent 70%);
  opacity: 0.35;
  clip-path: polygon(0 0, 100% 8%, 72% 100%, 0 92%);
  pointer-events: none;
}

.page-home .visual-index {
  position: absolute;
  left: -12px;
  bottom: 12px;
  background: var(--home-neon);
  color: var(--home-midnight);
  font-family: var(--home-data);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  transform: skewX(-8deg);
}

.page-home .section {
  padding: 48px 0;
  border-bottom: 1px solid var(--home-line);
}

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

.page-home .section-kicker {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--home-neon);
  margin: 0 0 6px;
}

.page-home .section-title {
  font-family: var(--home-heading);
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--home-ice);
  transform: skewX(-1deg);
  margin: 0 0 8px;
}

.page-home .section-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: var(--home-muted);
  margin: 0;
  max-width: 40em;
}

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

.page-home .access-card {
  position: relative;
  display: block;
  background: var(--home-panel);
  border: 1px solid var(--home-line);
  padding: 24px 20px;
  min-height: 140px;
  overflow: hidden;
  transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.page-home .access-card::after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 56px;
  height: 56px;
  border-bottom: 2px solid var(--home-neon);
  border-right: 2px solid var(--home-neon);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.page-home .access-card:hover,
.page-home .access-card:focus-visible {
  border-color: var(--home-neon);
  background: #16294a;
  transform: translateY(-2px);
}

.page-home .access-card:hover::after,
.page-home .access-card:focus-visible::after {
  opacity: 1;
}

.page-home .access-card--neon {
  border-left: 3px solid var(--home-neon);
}

.page-home .access-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--home-neon);
  border: 1px solid var(--home-neon);
  border-radius: 2px;
  padding: 2px 6px;
  margin-bottom: 12px;
}

.page-home .access-card__title {
  display: block;
  font-family: var(--home-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--home-ice);
  margin-bottom: 8px;
  max-width: 12em;
}

.page-home .access-card__desc {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  color: var(--home-muted);
}

.page-home .access-card__num {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--home-data);
  font-size: 32px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(192, 192, 192, 0.6);
  line-height: 1;
}

.page-home .highlight-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.page-home .highlight-media {
  position: relative;
  background: var(--home-panel);
}

.page-home .highlight-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  transform: skewY(-1deg);
  filter: saturate(0.9);
}

.page-home .media-caption {
  display: inline-block;
  position: absolute;
  right: 8px;
  bottom: 8px;
  background: var(--home-midnight);
  color: var(--home-neon);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border-left: 2px solid var(--home-neon);
}

.page-home .highlight-list {
  display: grid;
  gap: 24px;
}

.page-home .highlight-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
}

.page-home .highlight-item__num {
  font-family: var(--home-data);
  font-size: 28px;
  font-weight: 700;
  color: var(--home-neon);
  line-height: 1.2;
  text-align: right;
  transform: skewX(-8deg);
}

.page-home .highlight-item__body h3 {
  font-family: var(--home-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--home-ice);
  margin: 0 0 6px;
}

.page-home .highlight-item__body p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--home-silver);
  margin: 0;
}

.page-home .accent-line {
  grid-column: 2;
  margin-top: 4px;
}

.page-home .diagonal {
  width: 88px;
  height: 4px;
  background: linear-gradient(90deg, var(--home-neon) 0%, var(--home-space) 100%);
  transform: skewX(-24deg);
}

.page-home .data-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  background: var(--home-panel);
  border: 1px solid var(--home-line);
  padding: 20px;
  position: relative;
}

.page-home .data-board::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--home-neon), transparent 90%);
}

.page-home .data-chart {
  background: var(--home-midnight);
  padding: 12px;
}

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

.page-home .data-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
}

.page-home .stat-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 14px;
  background: var(--home-midnight);
  border: 1px solid var(--home-line);
  min-height: 76px;
}

.page-home .stat-row dt {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--home-muted);
  margin-bottom: 6px;
  order: 1;
}

.page-home .stat-row dd {
  font-family: var(--home-data);
  font-size: 24px;
  font-weight: 700;
  color: var(--home-ice);
  line-height: 1.2;
  order: 2;
  margin: 0;
}

.page-home .data-font {
  font-family: var(--home-data);
}

.page-home .stat-highlight {
  color: var(--home-neon) !important;
}

.page-home .compare-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.page-home .note-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--home-neon);
  margin-top: 8px;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
}

.page-home .compare-note p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--home-silver);
  margin: 0;
  flex: 1;
}

.page-home .btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  transform: skewX(-2deg);
}

.page-home .btn-primary {
  background: var(--home-neon);
  color: var(--home-midnight);
  border-color: var(--home-neon);
}

.page-home .btn-primary:hover,
.page-home .btn-primary:focus-visible {
  background: #26ff9b;
  color: var(--home-midnight);
  border-color: #26ff9b;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.25);
}

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

.page-home .btn-ghost:hover,
.page-home .btn-ghost:focus-visible {
  border-color: var(--home-neon);
  color: var(--home-neon);
}

.page-home .btn-ghost.light {
  border-color: var(--home-silver);
  color: var(--home-ice);
}

.page-home .btn-ghost.light:hover,
.page-home .btn-ghost.light:focus-visible {
  border-color: var(--home-neon);
  color: var(--home-neon);
}

.page-home .has-dark-panel {
  background: var(--home-midnight);
  border-left: 3px solid var(--home-neon);
  padding-left: 24px;
  padding-right: 24px;
}

.page-home .guide-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.page-home .guide-content .section-head {
  margin-bottom: 20px;
}

.page-home .guide-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 16px;
}

.page-home .guide-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(17, 34, 64, 0.6);
  padding: 14px 16px;
  border-left: 2px solid var(--home-line);
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.page-home .guide-step:hover {
  border-left-color: var(--home-neon);
  background: rgba(17, 34, 64, 0.9);
}

.page-home .guide-step__icon {
  font-family: var(--home-data);
  font-size: 20px;
  color: var(--home-neon);
  line-height: 1.4;
  flex-shrink: 0;
}

.page-home .guide-step p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--home-silver);
  margin: 0;
}

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

.page-home .guide-media {
  position: relative;
  align-self: end;
}

.page-home .guide-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  clip-path: polygon(4% 0, 100% 0, 100% 96%, 96% 100%, 0 100%, 0 4%);
  filter: saturate(0.9) contrast(1.02);
}

.page-home .index-row .index-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.page-home .index-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: var(--home-panel);
  border: 1px solid var(--home-line);
  transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.page-home .index-item:hover,
.page-home .index-item:focus-visible {
  border-color: var(--home-neon);
  background: #14284a;
  transform: translateX(4px);
}

.page-home .index-item__label {
  font-family: var(--home-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--home-ice);
}

.page-home .index-item__meta {
  font-size: 13px;
  color: var(--home-muted);
  text-align: right;
}

.page-home .index-item--focus {
  border-color: rgba(0, 255, 136, 0.5);
}

.page-home .index-item--focus .index-item__meta {
  color: var(--home-neon);
}

.page-home .trust-line {
  font-size: 13px;
  line-height: 1.7;
  color: var(--home-muted);
  border-top: 1px solid var(--home-line);
  padding: 24px 0 40px;
  margin: 0;
  max-width: 48em;
}

.page-home .grid {
  display: grid;
}

.page-home .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--home-neon);
  border: 1px solid currentColor;
  padding: 3px 6px;
  border-radius: 2px;
}

.page-home .media-frame {
  background: var(--home-panel);
  border: 1px solid var(--home-line);
}

.page-home img {
  max-width: 100%;
  height: auto;
  border: 0;
}

@media (min-width: 640px) {
  .page-home .access-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (min-width: 960px) {
  .page-home .container {
    padding: 0 32px;
  }

  .page-home .home-intro {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .page-home .intro-copy h1 {
    font-size: 44px;
  }

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

  .page-home .highlight-layout {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .page-home .data-board {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    padding: 28px;
  }

  .page-home .data-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .page-home .guide-block {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }

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

@media (min-width: 1200px) {
  .page-home .intro-copy h1 {
    font-size: 50px;
  }

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

  .page-home .access-card {
    min-height: 160px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home a,
  .page-home .btn,
  .page-home .access-card,
  .page-home .index-item,
  .page-home .guide-step {
    transition: none;
  }
}
