.page-home {
  --hero-gradient: linear-gradient(118deg, rgba(7, 10, 26, 0.96) 0%, rgba(17, 23, 48, 0.78) 46%, rgba(7, 10, 26, 0.36) 100%);
  --card-radius: 14px;
  --panel-glow: 0 0 28px rgba(0, 255, 136, 0.08);
  background: var(--deep-night);
}

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

.page-home .breadcrumb {
  padding: 1rem 0 0;
}

.page-home .breadcrumb-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.page-home .breadcrumb-list a {
  color: var(--text-dim);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

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

.page-home .breadcrumb-list li::after {
  content: "/";
  margin-left: 0.5rem;
  color: var(--line-light);
}

.page-home .breadcrumb-list li:last-child::after {
  content: none;
}

.page-home .tactical-dashboard {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0 2.5rem;
}

.page-home .hero-stage {
  position: relative;
  min-height: 520px;
  border-radius: var(--card-radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--abyss);
  isolation: isolate;
}

.page-home .hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.page-home .hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-gradient);
  z-index: -1;
}

.page-home .hero-copy {
  position: relative;
  z-index: 1;
  padding: 2rem 1.5rem;
  max-width: 620px;
}

.page-home .section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fluorescent-green);
  border: 1px solid rgba(0, 255, 136, 0.45);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  margin-bottom: 1.1rem;
  background: rgba(0, 255, 136, 0.06);
}

.page-home .page-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height: 1.12;
  color: var(--text-white);
  margin: 0 0 1rem;
  letter-spacing: 0.01em;
}

.page-home .page-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dim);
  margin: 0 0 1.6rem;
  max-width: 52ch;
}

.page-home .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.page-home .btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.72rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-home .cta-primary {
  background: var(--fluorescent-green);
  color: var(--deep-night);
  border: 1px solid var(--fluorescent-green);
}

.page-home .cta-primary:hover {
  background: #00d974;
  border-color: #00d974;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.28);
}

.page-home .cta-ghost {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--line-light);
}

.page-home .cta-ghost:hover {
  border-color: var(--alert-orange);
  color: var(--alert-orange);
}

.page-home .hero-trust {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin: 0;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

.page-home .hero-panel {
  background: linear-gradient(160deg, var(--night-blue), var(--abyss));
  border: 1px solid var(--line-light);
  border-radius: var(--card-radius);
  padding: 1.5rem 1.25rem;
  position: relative;
  box-shadow: var(--panel-glow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-home .panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  padding-bottom: 0.8rem;
}

.page-home .panel-title {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--text-white);
}

.page-home .panel-status {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--fluorescent-green);
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.25);
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
}

.page-home .cursor-blink {
  margin-left: 0.15rem;
  animation: pageHomeBlink 1.1s step-end infinite;
  color: var(--fluorescent-green);
}

@keyframes pageHomeBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.page-home .radar-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.25rem 0;
}

.page-home .radar-chart {
  width: 100%;
  max-width: 240px;
  height: auto;
}

.page-home .radar-grid {
  fill: none;
  stroke: var(--line-light);
  stroke-width: 1.5;
}

.page-home .radar-grid-inner {
  fill: none;
  stroke: var(--line-light);
  stroke-width: 1;
  opacity: 0.7;
}

.page-home .radar-data {
  fill: rgba(0, 255, 136, 0.13);
  stroke: var(--fluorescent-green);
  stroke-width: 2;
  stroke-linejoin: round;
}

.page-home .radar-dot {
  fill: var(--fluorescent-green);
}

.page-home .bar-chart {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.page-home .bar-item {
  display: grid;
  grid-template-columns: 4.6rem 1fr 2.8rem;
  align-items: center;
  gap: 0.6rem;
}

.page-home .bar-name {
  font-size: 0.8rem;
  color: var(--text-dim);
  white-space: nowrap;
}

.page-home .bar-track {
  height: 8px;
  background: var(--line-light);
  border-radius: 4px;
  overflow: hidden;
  display: block;
}

.page-home .bar-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--fluorescent-green), #00d9ff);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.page-home .bar-1 { width: 62%; }
.page-home .bar-2 { width: 47%; }
.page-home .bar-3 { width: 71%; }
.page-home .bar-4 { width: 89%; }

.page-home .bar-val {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-white);
  text-align: right;
}

.page-home .panel-foot {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin: 0;
  font-family: var(--font-mono);
  border-top: 1px solid var(--line-light);
  padding-top: 0.7rem;
}

.page-home .command-grid {
  display: grid;
  gap: 1rem;
  margin: 2.5rem 0 3.5rem;
}

.page-home .command-card {
  position: relative;
  background: var(--night-blue);
  border: 1px solid var(--line-light);
  border-radius: var(--card-radius);
  padding: 1.5rem 1.4rem 1.4rem;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.page-home .command-card:hover {
  transform: translateY(-4px) rotate(-0.5deg);
  border-color: rgba(0, 255, 136, 0.6);
  background: var(--abyss);
}

.page-home .command-index {
  position: absolute;
  top: 0.9rem;
  right: 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

.page-home .command-card h2 {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  line-height: 1.4;
  color: var(--text-white);
  margin: 0 0 0.7rem;
  padding-right: 2.8rem;
}

.page-home .command-card p {
  font-size: 0.93rem;
  line-height: 1.68;
  color: var(--text-dim);
  margin: 0 0 1.1rem;
}

.page-home .command-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fluorescent-green);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, gap 0.2s ease;
}

.page-home .command-link::after {
  content: "→";
  font-family: var(--font-mono);
}

.page-home .command-link:hover {
  color: #00d974;
  border-color: rgba(0, 255, 136, 0.5);
  gap: 0.6rem;
}

.page-home .report-stream {
  margin-bottom: 3.5rem;
}

.page-home .section-head {
  margin-bottom: 1.8rem;
}

.page-home .section-head .section-label {
  margin-bottom: 0.8rem;
}

.page-home .section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--text-white);
  margin: 0 0 0.5rem;
}

.page-home .section-desc {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-dim);
  margin: 0;
}

.page-home .report-banner {
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid var(--line-light);
  margin-bottom: 1.5rem;
  position: relative;
}

.page-home .report-banner img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 2 / 1;
}

.page-home .report-grid {
  display: grid;
  gap: 1rem;
}

.page-home .report-card {
  background: var(--night-blue);
  border: 1px solid var(--line-light);
  border-left: 3px solid var(--fluorescent-green);
  border-radius: 10px;
  padding: 1.3rem 1.4rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-home .report-card:hover {
  transform: rotate(-1deg) scale(1.01);
  border-color: rgba(0, 255, 136, 0.5);
  box-shadow: var(--panel-glow);
}

.page-home .report-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.page-home .report-league {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

.page-home .tag {
  font-size: 0.74rem;
  font-weight: 600;
  border-radius: 4px;
  padding: 0.22rem 0.6rem;
  font-family: var(--font-mono);
}

.page-home .tag-green {
  color: var(--deep-night);
  background: var(--fluorescent-green);
}

.page-home .tag-orange {
  color: var(--deep-night);
  background: var(--alert-orange);
}

.page-home .tag-yellow {
  color: var(--deep-night);
  background: var(--data-yellow);
}

.page-home .report-card h3 {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  line-height: 1.45;
  color: var(--text-white);
  margin: 0 0 0.55rem;
}

.page-home .report-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-dim);
  margin: 0 0 0.85rem;
}

.page-home .report-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fluorescent-green);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-home .report-link:hover {
  color: var(--alert-orange);
  border-color: var(--alert-orange);
}

.page-home .data-snapshot {
  margin-bottom: 3.5rem;
  background: linear-gradient(165deg, var(--abyss), var(--deep-night));
  border: 1px solid var(--line-light);
  border-radius: var(--card-radius);
  padding: 1.6rem 1.3rem;
}

.page-home .snapshot-body {
  display: grid;
  gap: 1.5rem;
}

.page-home .snapshot-chart {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: var(--abyss);
}

.page-home .snapshot-chart img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.page-home .chart-note {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-white);
  background: rgba(7, 10, 26, 0.78);
  border: 1px solid var(--line-light);
  border-radius: 4px;
  padding: 0.22rem 0.55rem;
  backdrop-filter: blur(4px);
}

.page-home .snapshot-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, 1fr);
}

.page-home .stat-item {
  background: var(--night-blue);
  border: 1px solid var(--line-light);
  border-radius: 10px;
  padding: 1.1rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.page-home .stat-item:hover {
  border-color: rgba(0, 255, 136, 0.5);
  transform: translateY(-2px);
}

.page-home .data-stat {
  font-family: var(--font-mono);
  font-size: 1.7rem;
  line-height: 1.15;
  font-weight: 700;
  color: var(--fluorescent-green);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.page-home .data-stat-label {
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--text-dim);
}

.page-home .section-index {
  margin-bottom: 2rem;
}

.page-home .index-layout {
  display: grid;
  gap: 1.5rem;
}

.page-home .index-grid {
  display: grid;
  gap: 0.85rem;
}

.page-home .index-card {
  display: block;
  background: var(--night-blue);
  border: 1px solid var(--line-light);
  border-radius: 10px;
  padding: 1.1rem 1.2rem;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.page-home .index-card:hover {
  background: var(--abyss);
  border-color: var(--alert-orange);
  transform: translateX(4px);
}

.page-home .index-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--alert-orange);
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.page-home .index-card h3 {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  color: var(--text-white);
  margin: 0 0 0.3rem;
}

.page-home .index-card p {
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--text-dim);
  margin: 0;
}

.page-home .index-visual {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: var(--abyss);
  min-height: 260px;
  display: flex;
  align-items: flex-end;
}

.page-home .index-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.page-home .index-quote {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  color: var(--text-white);
  background: linear-gradient(to top, rgba(7, 10, 26, 0.92), rgba(7, 10, 26, 0.12));
  width: 100%;
  font-family: var(--font-heading);
  letter-spacing: 0.03em;
}

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

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

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

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

  .page-home .hero-copy {
    padding: 3rem 2.5rem;
  }
}

@media (min-width: 960px) {
  .page-home .tactical-dashboard {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
  }

  .page-home .hero-stage {
    min-height: 580px;
  }

  .page-home .hero-panel {
    padding: 1.8rem 1.6rem;
  }

  .page-home .command-grid {
    grid-template-columns: repeat(4, 1fr);
    margin: 3.5rem 0 4rem;
  }

  .page-home .command-card:nth-child(odd) {
    transform: rotate(-1deg);
  }

  .page-home .command-card:nth-child(even) {
    transform: rotate(1.2deg);
  }

  .page-home .command-card:hover {
    transform: translateY(-6px) rotate(0deg);
  }

  .page-home .data-snapshot {
    padding: 2.2rem 2rem;
  }

  .page-home .snapshot-body {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 2rem;
  }

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

  .page-home .index-layout {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
  }

  .page-home .index-visual {
    min-height: 300px;
  }
}

@media (min-width: 1200px) {
  .page-home .hero-copy {
    padding: 4rem 3rem;
  }

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