.page-home {
  --home-radius-lg: 32px;
  --home-radius-md: 22px;
  background: var(--bg-deep);
  color: var(--white);
  font-family: var(--font-body);
}

.page-home .shell {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 24px;
}

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

.page-home .eyebrow {
  color: var(--accent);
  font-family: var(--font-num);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.page-home .display-title {
  margin: 10px 0 22px;
  line-height: 0.95;
  color: var(--white);
}

.page-home .hero {
  position: relative;
  isolation: isolate;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h, 72px) + 32px) 0 72px;
  overflow: hidden;
}

.page-home .hero-media,
.page-home .hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .hero-media {
  z-index: 0;
}

.page-home .hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(110deg, rgba(10, 31, 68, 0.96) 0%, rgba(10, 31, 68, 0.85) 45%, rgba(10, 31, 68, 0.35) 100%),
    linear-gradient(0deg, rgba(10, 31, 68, 0.95) 0%, rgba(10, 31, 68, 0) 55%);
}

.page-home .hero-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 107, 0, 0.16) 48%, transparent 72%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 26px);
  animation: homeFlow 12s linear infinite;
}

@keyframes homeFlow {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 60px 0, 0 0;
  }
}

.page-home .hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 36px;
  align-items: center;
}

.page-home .hero-copy {
  max-width: 820px;
}

.page-home .hero-copy .lead {
  max-width: 620px;
  margin: 0 0 20px;
  color: var(--silver-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-home .hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-home .hero-tags .tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-alpha);
  color: var(--silver-light);
}

.page-home .hero-aside {
  padding-top: 26px;
  border-top: 1px solid var(--border-alpha);
}

.page-home .hero-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.35);
  color: var(--silver-light);
  font-size: 0.85rem;
}

.page-home .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: homePulse 2.4s ease-in-out infinite;
}

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

.page-home .hero-index {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.page-home .index-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.page-home .index-link:hover {
  background: rgba(255, 107, 0, 0.12);
  border-color: rgba(255, 107, 0, 0.4);
  transform: translateX(4px);
}

.page-home .index-num {
  font-family: var(--font-num);
  color: var(--accent);
  min-width: 24px;
  font-size: 0.85rem;
}

.page-home .hero-note {
  margin: 20px 0 0;
  color: var(--silver);
  font-size: 0.85rem;
  line-height: 1.6;
}

.page-home .hero-scroll {
  position: absolute;
  bottom: 24px;
  left: clamp(24px, 4vw, 64px);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--silver);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}

.page-home .hero-scroll::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.page-home .flash {
  padding: 80px 0;
  background: radial-gradient(80% 60% at 90% 0%, rgba(255, 107, 0, 0.08), transparent 60%), var(--bg-deep);
}

.page-home .flash-inner {
  display: grid;
  gap: 40px;
}

.page-home .flash-copy .lead {
  color: var(--silver-light);
  margin: 0 0 32px;
}

.page-home .flash-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .flash-item {
  position: relative;
  padding: 0 0 30px 34px;
}

.page-home .flash-item:last-child {
  padding-bottom: 0;
}

.page-home .flash-item::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 2px solid var(--accent);
}

.page-home .flash-item::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 24px;
  bottom: -6px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(255, 107, 0, 0.5), var(--border-alpha));
}

.page-home .flash-item:last-child::after {
  display: none;
}

.page-home .flash-time {
  display: block;
  font-family: var(--font-num);
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.page-home .flash-body strong {
  display: block;
  color: var(--white);
  font-size: 1.02rem;
}

.page-home .flash-body p {
  margin: 6px 0 0;
  color: var(--silver-light);
  font-size: 0.95rem;
  line-height: 1.65;
}

.page-home .flash-visual {
  display: grid;
  gap: 20px;
}

.page-home .flash-chart {
  margin: 0;
  padding: 10px;
  border-radius: var(--home-radius-lg);
  background: var(--bg-sea);
  border: 1px solid var(--border-alpha);
}

.page-home .flash-chart img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--home-radius-lg) - 10px);
}

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

.page-home .flash-stat {
  padding: 24px 20px;
  border-radius: var(--home-radius-md);
  background: linear-gradient(145deg, var(--bg-sea), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--border-alpha);
}

.page-home .flash-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1;
  color: var(--accent);
}

.page-home .flash-label {
  display: block;
  margin-top: 10px;
  color: var(--silver);
  font-size: 0.9rem;
}

.page-home .section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 36px;
}

.page-home .section-head h2,
.page-home .capability > .shell > h2,
.page-home .footprint h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  line-height: 1.08;
  margin: 0;
}

.page-home .reports {
  padding: 80px 0;
  background: var(--bg-sea);
}

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

.page-home .report-card {
  min-height: 340px;
  border-radius: var(--home-radius-lg);
  perspective: 1000px;
  outline: none;
}

.page-home .report-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 340px;
  transition: transform 0.7s var(--ease);
  transform-style: preserve-3d;
}

.page-home .report-card:hover .report-inner,
.page-home .report-card:focus-within .report-inner,
.page-home .report-card:focus-visible .report-inner {
  transform: rotateY(180deg);
}

.page-home .report-card:focus-visible .report-inner {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.page-home .report-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  border-radius: var(--home-radius-lg);
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border: 1px solid var(--border-alpha);
  box-shadow: 0 18px 40px rgba(2, 8, 26, 0.35);
}

.page-home .report-front {
  background: var(--bg-deep);
}

.page-home .report-front img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .report-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 31, 68, 0.96) 0%, rgba(10, 31, 68, 0.35) 62%, rgba(10, 31, 68, 0.05) 100%);
}

.page-home .report-titlebar {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
}

.page-home .report-titlebar .tag {
  background: rgba(255, 107, 0, 0.92);
  color: var(--bg-deep);
  border: none;
}

.page-home .report-titlebar h3 {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  line-height: 1.15;
  color: var(--white);
}

.page-home .report-back {
  transform: rotateY(180deg);
  justify-content: center;
  padding: 30px;
  background: linear-gradient(145deg, var(--bg-sea), var(--bg-deep));
}

.page-home .report-back .back-label {
  margin: 0 0 12px;
  color: var(--accent);
  font-family: var(--font-num);
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.page-home .report-back > p:not(.back-label) {
  color: var(--silver-light);
  line-height: 1.7;
  margin: 0 0 16px;
}

.page-home .report-key {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.page-home .report-key span {
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.35);
  color: var(--accent-soft);
  font-size: 0.8rem;
  font-family: var(--font-num);
}

.page-home .report-back .btn-ghost {
  align-self: flex-start;
}

.page-home .schedule {
  padding: 80px 0;
  background: var(--bg-deep);
}

.page-home .schedule-board {
  padding: 28px;
  border-radius: var(--home-radius-lg);
  border: 1px solid var(--border-alpha);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)), var(--bg-sea);
}

.page-home .schedule-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.page-home .schedule-tag {
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.35);
  color: var(--accent-soft);
  font-size: 0.85rem;
}

.page-home .schedule-grid {
  display: grid;
  gap: 16px;
}

.page-home .schedule-card {
  position: relative;
  padding: 24px;
  border-radius: var(--home-radius-md);
  border: 1px solid var(--border-alpha);
  background: var(--bg-deep);
  border-left: 3px solid var(--accent);
  transition: transform 0.3s var(--ease);
}

.page-home .schedule-card:hover {
  transform: translateY(-4px);
}

.page-home .schedule-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.07);
}

.page-home .schedule-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.page-home .schedule-card p {
  margin: 0;
  color: var(--silver-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.page-home .footprint {
  padding: 80px 0;
  background: var(--bg-sea);
}

.page-home .footprint-inner {
  display: grid;
  gap: 40px;
}

.page-home .footprint-copy .lead {
  color: var(--silver-light);
  max-width: 620px;
}

.page-home .footprint-timeline {
  list-style: none;
  margin: 36px 0 32px;
  padding: 0;
}

.page-home .footprint-item {
  position: relative;
  min-height: 72px;
  padding: 4px 0 32px 100px;
}

.page-home .footprint-item:last-child {
  padding-bottom: 0;
}

.page-home .footprint-item::before {
  content: "";
  position: absolute;
  left: 64px;
  top: 6px;
  bottom: -4px;
  width: 2px;
  background: var(--border-alpha);
}

.page-home .footprint-item:last-child::before {
  display: none;
}

.page-home .footprint-year {
  position: absolute;
  left: 0;
  top: 0;
  min-width: 56px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: var(--bg-deep);
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
}

.page-home .footprint-body strong {
  display: block;
  margin-bottom: 6px;
}

.page-home .footprint-body p {
  margin: 0;
  color: var(--silver-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.page-home .footprint-figure {
  margin: 0;
  border-radius: var(--home-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-alpha);
  background: var(--bg-deep);
}

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

.page-home .capability {
  padding: 80px 0;
  background: radial-gradient(50% 60% at 15% 100%, rgba(255, 107, 0, 0.08), transparent 60%), var(--bg-deep);
}

.page-home .capability > .shell > h2 {
  margin-bottom: 36px;
}

.page-home .cap-grid {
  display: grid;
  gap: 16px;
}

.page-home .cap-item {
  position: relative;
  padding: 28px 22px;
  border-radius: var(--home-radius-md);
  border: 1px solid var(--border-alpha);
  background: var(--bg-sea);
  overflow: hidden;
}

.page-home .cap-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 46px;
  height: 4px;
  border-radius: 0 4px 4px 0;
  background: var(--accent);
}

.page-home .cap-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3rem);
  line-height: 1;
  color: var(--accent);
}

.page-home .cap-label {
  display: block;
  margin-top: 14px;
  font-weight: 600;
  color: var(--white);
}

.page-home .cap-desc {
  margin: 8px 0 0;
  color: var(--silver);
  font-size: 0.88rem;
  line-height: 1.6;
}

.page-home .cap-note {
  margin: 28px 0 0;
  text-align: center;
  color: var(--silver);
  font-size: 0.9rem;
}

.page-home .cap-note a {
  color: var(--accent-soft);
}

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

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

@media (min-width: 900px) {
  .page-home .reports-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 920px) {
  .page-home .footprint-inner {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 64px;
  }
}

@media (min-width: 960px) {
  .page-home .hero-inner {
    grid-template-columns: 1.35fr 0.65fr;
    gap: 64px;
  }

  .page-home .hero-aside {
    padding-top: 0;
    border-top: 0;
    border-left: 2px solid var(--border-alpha);
    padding-left: 28px;
  }

  .page-home .flash-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
  }
}

@media (min-width: 1100px) {
  .page-home .cap-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    animation: none !important;
    transition: none !important;
  }
}
