.page-home {
  --home-green: #00FF88;
  --home-blue: #00BFFF;
  --home-orange: #FF4500;
  --home-yellow: #FFE600;
  --home-bg: #0A0E14;
  --home-card: #1A1F29;
  --home-card-solid: #141A22;
  --home-text: #E0E6ED;
  --home-muted: #5A6B7B;
  --home-line: #2A3342;
  --home-glow-green: 0 0 24px rgba(0, 255, 136, 0.35);
  --home-shadow: 6px 6px 0 rgba(0, 0, 0, 0.45);
  --home-font-display: Impact, "DIN Condensed", "Arial Narrow", "PingFang SC", "Microsoft YaHei", sans-serif;
  --home-font-mono: ui-monospace, "SFMono-Regular", "JetBrains Mono", "Cascadia Mono", Consolas, monospace;
  --home-font-body: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;

  background: var(--home-bg);
  color: var(--home-text);
  font-family: var(--home-font-body);
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 48px);
  overflow-x: hidden;
}

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

.page-home .breadcrumb {
  padding: 18px 0 10px;
  font-size: 13px;
}

.page-home .breadcrumb ol {
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--home-muted);
}

.page-home .breadcrumb a {
  color: var(--home-muted);
}

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

.page-home .eyebrow {
  display: inline-block;
  font-family: var(--home-font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--home-green);
  border: 1px solid var(--home-line);
  padding: 6px 12px;
  margin: 0 0 16px;
  background: rgba(0, 255, 136, 0.06);
}

.page-home .title-display,
.page-home .section-title {
  font-family: var(--home-font-display);
  letter-spacing: 0.05em;
  line-height: 1.12;
  color: var(--home-text);
}

.page-home .title-display {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.page-home .section-title {
  font-size: clamp(24px, 3.4vw, 40px);
  font-weight: 700;
  margin: 0 0 14px;
}

.page-home .lead,
.page-home .section-lead {
  font-size: 16px;
  line-height: 1.8;
  color: #B9C4CE;
  margin: 0 0 24px;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-family: var(--home-font-body);
  text-decoration: none;
}

.page-home .btn-primary {
  background: var(--home-green);
  color: #0A0E14;
  border-color: var(--home-green);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.4);
}

.page-home .btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.4), var(--home-glow-green);
}

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

.page-home .btn-ghost:hover {
  border-color: var(--home-blue);
  color: var(--home-blue);
  transform: translate(-2px, -2px);
}

.page-home .btn-action {
  background: var(--home-orange);
  color: #0A0E14;
  border-color: var(--home-orange);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.4);
}

.page-home .btn-action:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.4), 0 0 18px rgba(255, 69, 0, 0.3);
}

.page-home .section-stack {
  padding: clamp(48px, 8vw, 96px) 0;
  border-bottom: 1px solid var(--home-line);
  position: relative;
}

.page-home .hero-section {
  padding: 40px 0 64px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.page-home .hero-copy {
  order: 1;
  max-width: 580px;
}

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

.page-home .hero-visual {
  order: 2;
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .hero-media {
  width: 100%;
  max-width: 640px;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid var(--home-line);
  transform: rotate(2deg);
  box-shadow: var(--home-shadow);
  position: relative;
  z-index: 1;
}

.page-home .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.08) 0%, rgba(0, 191, 255, 0.04) 50%, transparent 100%);
  pointer-events: none;
}

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

.page-home .live-glass-card {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 14px;
  background: rgba(10, 14, 20, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 255, 136, 0.25);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.page-home .live-glass-card .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-green);
  display: inline-block;
  animation: page-home-pulse 1.6s ease-in-out infinite;
  margin-bottom: 4px;
}

@keyframes page-home-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.6); }
  50% { opacity: 0.6; box-shadow: 0 0 0 8px rgba(0, 255, 136, 0); }
}

.page-home .live-glass-card .data-value {
  font-family: var(--home-font-mono);
  font-size: 36px;
  font-weight: 700;
  color: var(--home-green);
  line-height: 1.1;
}

.page-home .live-glass-card .data-caption {
  font-family: var(--home-font-mono);
  font-size: 11px;
  color: var(--home-muted);
}

.page-home .hero-trajectory {
  position: absolute;
  z-index: 3;
  right: 0;
  top: 10px;
  width: 180px;
  height: 90px;
  pointer-events: none;
  opacity: 0.8;
}

.page-home .stat-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--home-line);
  border: 1px solid var(--home-line);
  margin: 0 0 48px;
}

.page-home .stat-item {
  background: #111820;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-home .stat-num {
  font-family: var(--home-font-mono);
  font-size: 32px;
  font-weight: 700;
  color: var(--home-green);
  line-height: 1;
}

.page-home .stat-item:nth-child(2) .stat-num {
  color: var(--home-blue);
}

.page-home .stat-item:nth-child(3) .stat-num {
  color: var(--home-orange);
}

.page-home .stat-item:nth-child(4) .stat-num {
  color: var(--home-yellow);
}

.page-home .stat-strip .data-label {
  font-size: 13px;
  color: var(--home-muted);
  letter-spacing: 0.04em;
}

.page-home .small-panel-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.page-home .small-panel-visual {
  max-width: 320px;
  margin: 0 auto;
}

.page-home .small-panel-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  border: 2px solid var(--home-line);
  box-shadow: var(--home-shadow);
  object-fit: cover;
}

.page-home .media-caption {
  font-family: var(--home-font-mono);
  font-size: 12px;
  color: var(--home-muted);
  margin-top: 10px;
  text-align: center;
  letter-spacing: 0.06em;
}

.page-home .small-panel-content {
  max-width: 560px;
}

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

.page-home .feature-list li {
  padding: 12px 16px;
  background: var(--home-card);
  border-left: 4px solid var(--home-green);
  font-size: 15px;
  line-height: 1.6;
}

.page-home .feature-list li:nth-child(2) {
  border-left-color: var(--home-blue);
}

.page-home .feature-list li:nth-child(3) {
  border-left-color: var(--home-orange);
}

.page-home .directory-section {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.03) 0%, rgba(0, 191, 255, 0.02) 60%, transparent 100%);
}

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

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

.page-home .directory-image {
  overflow: hidden;
  border-radius: 14px;
  border: 2px solid var(--home-line);
}

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

.page-home .directory-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .directory-list .data-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 4px 16px;
  padding: 18px 20px;
  background: rgba(26, 31, 41, 0.8);
  border: 1px solid var(--home-line);
  border-left: 4px solid var(--home-orange);
  border-radius: 0 8px 8px 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-home .directory-list .data-card:hover {
  transform: translateX(6px);
  box-shadow: -4px 4px 0 rgba(0, 0, 0, 0.3);
}

.page-home .directory-list .data-card[data-accent="green"] {
  border-left-color: var(--home-green);
}

.page-home .directory-list .data-card[data-accent="blue"] {
  border-left-color: var(--home-blue);
}

.page-home .directory-list .data-card[data-accent="orange"] {
  border-left-color: var(--home-orange);
}

.page-home .directory-list .data-label {
  font-size: 14px;
  color: var(--home-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.page-home .directory-list .data-value {
  font-family: var(--home-font-mono);
  font-size: 26px;
  font-weight: 700;
  color: var(--home-text);
  text-align: right;
}

.page-home .directory-list .data-note {
  grid-column: 1 / -1;
  font-size: 13px;
  color: #8A9BA9;
  line-height: 1.5;
}

.page-home .subscription-section {
  position: relative;
}

.page-home .subscribe-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(24px, 4vw, 48px);
  background: linear-gradient(120deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 191, 255, 0.05) 50%, rgba(255, 69, 0, 0.08) 100%);
  border: 1px solid var(--home-line);
  border-left: 6px solid var(--home-green);
  border-radius: 16px;
  box-shadow: inset 0 0 60px rgba(0, 255, 136, 0.04);
  overflow: hidden;
}

.page-home .subscribe-banner::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.page-home .subscribe-copy p {
  font-size: 15px;
  line-height: 1.7;
  color: #B9C4CE;
  margin-bottom: 0;
}

.page-home .subscribe-tag {
  align-self: flex-start;
  font-family: var(--home-font-mono);
  font-size: 13px;
  padding: 8px 14px;
  background: rgba(255, 69, 0, 0.12);
  border: 1px solid rgba(255, 69, 0, 0.4);
  color: var(--home-orange);
  border-radius: 6px;
  white-space: nowrap;
}

.page-home .help-section {
  background: linear-gradient(180deg, rgba(0, 191, 255, 0.03) 0%, transparent 100%);
}

.page-home .help-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 28px;
}

.page-home .help-card {
  background: var(--home-card);
  border: 1px solid var(--home-line);
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-home .help-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 255, 136, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), var(--home-glow-green);
}

.page-home .help-card-num {
  font-family: var(--home-font-mono);
  font-size: 36px;
  font-weight: 700;
  color: var(--home-green);
  line-height: 1.1;
}

.page-home .help-card:nth-child(2) .help-card-num {
  color: var(--home-blue);
}

.page-home .help-card:nth-child(3) .help-card-num {
  color: var(--home-orange);
}

.page-home .help-card-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--home-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 10px;
  border-top: 1px solid var(--home-line);
  padding-top: 12px;
}

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

.page-home .first-visit-image {
  overflow: hidden;
  border-radius: 16px;
  border: 2px solid var(--home-line);
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}

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

.page-home .first-visit-content {
  max-width: 560px;
}

.page-home .first-visit-content .feature-list {
  margin-bottom: 20px;
}

.page-home .journal-teaser {
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.04) 0%, transparent 60%);
  padding-bottom: 64px;
}

.page-home .journal-teaser-copy {
  max-width: 480px;
}

@media (min-width: 760px) {
  .page-home .hero-section {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }

  .page-home .hero-copy {
    order: 0;
  }

  .page-home .hero-visual {
    min-height: 420px;
  }

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

  .page-home .stat-num {
    font-size: 40px;
  }

  .page-home .small-panel-section {
    grid-template-columns: 0.6fr 1.4fr;
    gap: 48px;
  }

  .page-home .small-panel-visual {
    margin: 0;
  }

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

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

  .page-home .first-visit-section {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .page-home .subscribe-banner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

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

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

  .page-home .small-panel-visual {
    justify-self: end;
  }

  .page-home .directory-image {
    justify-self: end;
  }
}
```
