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

.page-home {
  --home-bg-deep: #081120;
  --home-card-dark: rgba(18, 41, 74, 0.78);
  --home-line: rgba(255, 255, 255, 0.14);
  background: var(--blue-900);
  color: var(--white);
}

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

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

.page-home .hero-breadcrumb {
  position: relative;
  z-index: 2;
  padding-top: 28px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}

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

.page-home .hero-breadcrumb .is-active {
  color: rgba(255, 255, 255, 0.85);
}

.page-home .home-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 92vh;
  overflow: hidden;
  background: var(--blue-900);
}

.page-home .hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-home .hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 8px);
  mix-blend-mode: overlay;
}

.page-home .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(0.82) contrast(1.08);
}

.page-home .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(104deg, rgba(10, 20, 40, 0.97) 0%, rgba(10, 20, 40, 0.78) 46%, rgba(0, 255, 136, 0.16) 100%);
}

.page-home .hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  flex: 1 0 auto;
  padding-top: 32px;
  padding-bottom: 36px;
}

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

.page-home .hero-kicker {
  margin: 0 0 18px;
  padding-left: 14px;
  border-left: 3px solid var(--yellow);
  font-family: var(--font-numbers);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--green);
  text-transform: uppercase;
}

.page-home .hero-copy h1 {
  margin: 0 0 24px;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(2.5rem, 8vw, 5.4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.32);
}

.page-home .hero-summary {
  margin: 0 0 32px;
  max-width: 600px;
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.page-home .hero-summary strong {
  color: var(--yellow);
  font-weight: 600;
}

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

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  font-family: var(--font-headline);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: transform 0.22s ease-out, background-color 0.22s, box-shadow 0.22s, color 0.22s, border-color 0.22s;
  will-change: transform;
}

.page-home .btn-primary {
  background: var(--yellow);
  color: var(--blue-900);
}

.page-home .btn-primary:hover,
.page-home .btn-primary:focus-visible {
  transform: translateX(6px) skewX(-3deg);
  box-shadow: 10px 10px 0 rgba(255, 196, 0, 0.18);
}

.page-home .btn-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.page-home .btn-ghost:hover,
.page-home .btn-ghost:focus-visible {
  color: var(--green);
  border-color: var(--green);
  transform: translateX(4px);
  box-shadow: 8px 8px 0 rgba(0, 255, 136, 0.1);
}

.page-home .hero-panel {
  position: relative;
  margin: 4px 0 0;
  padding: 26px 22px 22px;
  background: linear-gradient(160deg, rgba(18, 41, 74, 0.86), rgba(10, 20, 40, 0.7));
  border: 1px solid rgba(0, 255, 136, 0.24);
  border-left: 4px solid var(--green);
  box-shadow: 18px 18px 0 rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}

.page-home .hero-panel::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, transparent 48%, rgba(255, 196, 0, 0.3) 49%, rgba(255, 196, 0, 0.3) 78%, transparent 79%);
}

.page-home .data-ticker {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--home-line);
  font-family: var(--font-numbers);
}

.page-home .ticker-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--green);
}

.page-home .ticker-num {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
  color: var(--white);
}

.page-home .ticker-unit {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
}

.page-home .hero-num {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid var(--home-line);
}

.page-home .hero-num .num {
  font-family: var(--font-numbers);
  font-size: clamp(3.4rem, 10vw, 5.2rem);
  line-height: 1;
  font-weight: 500;
  color: var(--yellow);
  text-shadow: 0 0 22px rgba(255, 196, 0, 0.32);
  animation: page-home-breathe 2.4s ease-in-out infinite;
}

.page-home .hero-num .unit {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.08em;
}

.page-home .hero-stamp {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: rgba(0, 255, 136, 0.09);
  border-left: 2px solid var(--green);
  color: var(--green);
  font-family: var(--font-numbers);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.page-home .hero-stamp::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.6);
  animation: page-home-ping 1.6s infinite;
}

.page-home .hero-index {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 16px 20px;
  background: linear-gradient(90deg, rgba(10, 20, 40, 0.94), rgba(18, 41, 74, 0.78));
  border-left: 3px solid var(--green);
  font-family: var(--font-numbers);
  font-size: 0.8rem;
}

.page-home .hero-index a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.page-home .hero-index a:hover {
  color: var(--yellow);
}

.page-home .hero-index span {
  color: var(--green);
}

.page-home .hero-slant {
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -6px;
  height: 46px;
  background: var(--light);
  transform: rotate(-1.2deg);
  z-index: 1;
}

.page-home .home-data {
  position: relative;
  padding: 84px 0 80px;
  background: var(--light);
  color: var(--text-dark);
}

.page-home .home-data::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-900) 0 60%, var(--yellow) 60% 72%, var(--green) 72% 78%, var(--blue-900) 78% 100%);
}

.page-home .section-header {
  max-width: 760px;
  margin-bottom: 36px;
}

.page-home .section-kicker {
  margin: 0 0 10px;
  font-family: var(--font-numbers);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--green);
}

.page-home .section-title {
  margin: 0;
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 4.2vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.page-home .section-intro {
  margin: 12px 0 0;
  max-width: 640px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.page-home .home-data .section-title {
  color: var(--text-dark);
}

.page-home .data-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

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

.page-home .stat-card {
  position: relative;
  padding: 22px 20px 18px;
  background: var(--white);
  border: 1px solid #dfe5ee;
  box-shadow: 8px 8px 0 rgba(10, 20, 40, 0.05);
}

.page-home .stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--yellow);
}

.page-home .stat-card:nth-child(2)::before {
  background: var(--green);
}

.page-home .stat-card:nth-child(3)::before {
  background: var(--data-blue);
}

.page-home .stat-card:nth-child(4)::before {
  background: var(--data-purple);
}

.page-home .stat-card::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 18px;
  height: 18px;
  border-right: 2px solid var(--blue-500);
  border-bottom: 2px solid var(--blue-500);
  opacity: 0.5;
}

.page-home .stat-label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.page-home .stat-num {
  font-family: var(--font-numbers);
  font-size: clamp(2.7rem, 6vw, 4.3rem);
  font-weight: 500;
  line-height: 1;
  color: var(--blue-900);
}

.page-home .stat-unit {
  margin-left: 4px;
  font-size: 1rem;
  color: var(--text-muted);
}

.page-home .stat-caption {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.page-home .data-visual {
  margin: 0;
  position: relative;
}

.page-home .data-visual img {
  width: 100%;
  height: auto;
  border: 1px solid #d9e0e8;
  box-shadow: 18px 18px 0 rgba(18, 41, 74, 0.08);
}

.page-home .media-caption {
  margin-top: 10px;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.page-home .data-note {
  margin-top: 40px;
  padding: 18px 20px;
  background: var(--blue-900);
  color: rgba(255, 255, 255, 0.86);
  border-left: 4px solid var(--green);
  font-size: 0.9rem;
  line-height: 1.7;
}

.page-home .data-note strong {
  color: var(--yellow);
}

.page-home .home-features {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background: var(--blue-900);
  color: var(--white);
}

.page-home .home-features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow) 0 18%, transparent 18% 24%, var(--green) 24% 45%, transparent 45% 55%, rgba(255, 255, 255, 0.4) 55% 56%, transparent 56% 100%);
}

.page-home .home-features .section-title {
  color: var(--white);
}

.page-home .home-features .section-intro {
  color: rgba(255, 255, 255, 0.65);
}

.page-home .feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 44px;
}

.page-home .feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 22px 30px;
  background: var(--home-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s;
}

.page-home .feature-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46px;
  height: 46px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  opacity: 0.55;
  transition: opacity 0.2s;
}

.page-home .feature-card:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 196, 0, 0.5);
}

.page-home .feature-card:hover::after {
  opacity: 1;
}

.page-home .feature-card img {
  width: 100%;
  max-width: 56px;
  height: auto;
  margin-bottom: 18px;
}

.page-home .feature-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-headline);
  font-size: 1.28rem;
  line-height: 1.3;
}

.page-home .feature-card h3 a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.page-home .feature-card h3 a:hover {
  color: var(--yellow);
}

.page-home .feature-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.page-home .home-scenarios {
  position: relative;
  padding: 90px 0;
  background: var(--light);
  color: var(--text-dark);
}

.page-home .home-scenarios .section-title {
  color: var(--text-dark);
}

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

.page-home .scenario-visual {
  margin: 0;
  order: 2;
}

.page-home .scenario-visual img {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  height: auto;
  display: block;
  border: 1px solid #dfe5ee;
  box-shadow: 20px 20px 0 rgba(10, 20, 40, 0.1);
}

.page-home .scenario-visual .media-caption {
  text-align: center;
}

.page-home .scenario-content {
  order: 1;
}

.page-home .scenario-list {
  margin: 28px 0 24px;
  padding: 0;
  list-style: none;
  counter-reset: scenario;
}

.page-home .scenario-list li {
  position: relative;
  padding: 22px 0 22px 58px;
  border-bottom: 1px solid rgba(10, 20, 40, 0.1);
  counter-increment: scenario;
}

.page-home .scenario-list li:last-child {
  border-bottom: 0;
}

.page-home .scenario-list li::before {
  content: "0" counter(scenario);
  position: absolute;
  top: 18px;
  left: 0;
  min-width: 34px;
  height: 30px;
  padding: 5px 6px 0;
  background: var(--blue-900);
  color: var(--yellow);
  font-family: var(--font-numbers);
  font-size: 0.85rem;
  text-align: center;
}

.page-home .scenario-phase {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 8px;
  background: var(--blue-900);
  color: var(--green);
  font-family: var(--font-numbers);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.page-home .scenario-list h3 {
  margin: 0 0 6px;
  font-family: var(--font-headline);
  font-size: 1.3rem;
  color: var(--text-dark);
}

.page-home .scenario-list p {
  margin: 0;
  max-width: 560px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.page-home .scenario-content .btn-ghost {
  margin-top: 8px;
  border-color: var(--blue-500);
  color: var(--blue-900);
  background: transparent;
}

.page-home .scenario-content .btn-ghost:hover,
.page-home .scenario-content .btn-ghost:focus-visible {
  color: var(--blue-900);
  border-color: var(--yellow);
  background: rgba(255, 196, 0, 0.08);
  box-shadow: 8px 8px 0 rgba(10, 20, 40, 0.08);
}

.page-home .home-cta {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--home-bg-deep) 100%);
  color: var(--white);
}

.page-home .home-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0 32px, transparent 32px 48px, var(--yellow) 48px 96px, transparent 96px);
}

.page-home .home-cta .section-title {
  color: var(--white);
}

.page-home .cta-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-left: 0;
  margin-right: 0;
  padding: 44px clamp(24px, 7vw, 64px) 40px clamp(24px, 8vw, 88px);
  background: linear-gradient(135deg, rgba(18, 41, 74, 0.9), rgba(10, 20, 40, 0.82));
  border: 1px solid rgba(0, 255, 136, 0.22);
  box-shadow: 20px 20px 0 rgba(0, 0, 0, 0.28);
}

.page-home .cta-inner::before {
  content: "GO";
  position: absolute;
  right: 18px;
  top: -14px;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
  color: rgba(255, 196, 0, 0.16);
  letter-spacing: -0.04em;
}

.page-home .cta-lead {
  margin: 16px 0 0;
  max-width: 640px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.page-home .cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.page-home .cta-text-link {
  color: var(--yellow);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 196, 0, 0.4);
  padding-bottom: 4px;
  font-family: var(--font-headline);
  font-weight: 600;
  transition: color 0.2s, border-color 0.2s;
}

.page-home .cta-text-link:hover {
  color: var(--green);
  border-color: var(--green);
}

.page-home .cta-footnote {
  margin: 28px 0 0;
  font-family: var(--font-numbers);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.65);
}

@keyframes page-home-breathe {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes page-home-ping {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.5);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(0, 255, 136, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
  }
}

@media (min-width: 768px) {
  .page-home .home-data {
    padding: 100px 0 90px;
  }

  .page-home .stats-grid {
    gap: 20px;
  }

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

@media (min-width: 992px) {
  .page-home .hero-layout {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    padding-top: 48px;
  }

  .page-home .data-layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
  }

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

  .page-home .scenario-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
  }

  .page-home .scenario-visual {
    order: 1;
  }

  .page-home .scenario-content {
    order: 2;
  }
}
