.page-home {
  --home-navy-deep: #081732;
  --home-navy-soft: #10295a;
  --home-orange-soft: #ff8655;
  --home-glow-orange: 0 10px 30px rgba(255, 107, 53, 0.22);
  background: var(--color-white);
  color: var(--color-gray);
  overflow-x: hidden;
}
.page-home img {
  max-width: 100%;
  height: auto;
}
.page-home .home-hero {
  background:
    radial-gradient(90% 60% at 88% 10%, rgba(255, 107, 53, 0.16) 0%, transparent 55%),
    linear-gradient(135deg, var(--color-navy) 0%, var(--home-navy-soft) 62%, var(--color-navy) 100%);
  color: var(--color-white);
  padding: 1.25rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}
.page-home .home-hero::before {
  content: "DEXIN";
  position: absolute;
  top: 0.5rem;
  right: -0.5rem;
  font-family: var(--font-sans);
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.045);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 1;
}
.page-home .home-hero .container {
  position: relative;
  z-index: 2;
}
.page-home .home-hero .breadcrumb {
  margin-bottom: 1.5rem;
}
.page-home .home-hero .breadcrumb li {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.875rem;
}
.page-home .home-hero__layout {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
.page-home .home-hero__content {
  display: flex;
  flex-direction: column;
}
.page-home .home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.875rem;
  color: var(--color-orange);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
}
.page-home .home-hero__eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 2px;
  border-radius: 2px;
  background: var(--color-orange);
}
.page-home .home-hero__title {
  font-size: clamp(1.875rem, 5.5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin: 0 0 1.125rem;
  max-width: 16ch;
}
.page-home .home-hero__lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1.5rem;
  max-width: 40rem;
}
.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.page-home .home-hero__figure {
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 60px rgba(4, 12, 32, 0.4);
  transform: perspective(1400px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.3s ease;
}
.page-home .home-hero__figure:hover {
  transform: perspective(1400px) rotateY(-1deg) rotateX(0deg);
}
.page-home .home-hero__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 24rem;
}
.page-home .home-hero__stats {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.page-home .hero-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-card);
  padding: 1rem 1.1rem;
  backdrop-filter: blur(4px);
}
.page-home .hero-stat__num {
  display: block;
  font-family: var(--font-data);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.page-home .hero-stat__label {
  display: block;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 0.35rem;
}
.page-home .home-map {
  background: var(--color-orange);
  padding: 0.9rem 0;
  position: relative;
  z-index: 3;
}
.page-home .home-map__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}
.page-home .home-map__label {
  margin: 0;
  color: var(--color-white);
  font-weight: 900;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.page-home .home-map .page-toc {
  flex: 1;
  min-width: 18rem;
}
.page-home .home-map .toc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-home .home-map .toc-link {
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}
.page-home .home-map .toc-link:hover,
.page-home .home-map .toc-link[aria-current="location"] {
  border-bottom-color: var(--color-white);
}
.page-home .home-section-heading {
  margin-bottom: 2rem;
}
.page-home .home-section-heading__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--color-navy);
  letter-spacing: -0.02em;
  margin: 0.375rem 0 0.5rem;
}
.page-home .home-section-heading__intro {
  color: var(--color-gray-mid);
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 36rem;
  margin: 0;
}
.page-home .home-section-heading--invert .home-section-heading__title {
  color: var(--color-white);
}
.page-home .home-section-heading--invert .home-section-heading__intro {
  color: rgba(255, 255, 255, 0.7);
}
.page-home .home-quick {
  background: var(--color-gray-light);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  position: relative;
}
.page-home .home-quick::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    135deg,
    var(--color-orange) 0,
    var(--color-orange) 14px,
    transparent 14px,
    transparent 28px
  );
}
.page-home .home-quick__layout {
  display: grid;
  gap: 1.25rem;
}
.page-home .home-quick__figure {
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  min-height: 10rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.page-home .home-quick__figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 1;
}
.page-home .home-quick__figure figcaption {
  padding: 0.7rem 1rem;
  font-size: 0.8125rem;
  color: var(--color-navy);
  font-weight: 600;
  background: var(--color-white);
}
.page-home .home-quick__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}
.page-home .home-quick__card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid rgba(10, 31, 68, 0.08);
  border-radius: var(--radius-card);
  padding: 1.25rem;
  text-decoration: none;
  color: var(--color-gray);
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.page-home .home-quick__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(10, 31, 68, 0.14);
  border-color: rgba(255, 107, 53, 0.5);
}
.page-home .home-quick__num {
  font-family: var(--font-data);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-orange);
  display: block;
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}
.page-home .home-quick__title {
  color: var(--color-navy);
  font-size: 1.125rem;
  font-weight: 900;
  line-height: 1.35;
  margin: 0 0 0.5rem;
}
.page-home .home-quick__text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-gray-mid);
  margin: 0;
}
.page-home .home-quick__card--orange {
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--home-orange-soft) 100%);
  border-color: transparent;
  color: var(--color-white);
}
.page-home .home-quick__card--orange:hover {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: var(--home-glow-orange);
}
.page-home .home-quick__card--navy {
  background: linear-gradient(135deg, var(--color-navy) 0%, #1b3a74 100%);
  border-color: transparent;
  color: var(--color-white);
}
.page-home .home-quick__card--navy:hover {
  border-color: var(--color-orange);
  box-shadow: 0 20px 42px rgba(10, 31, 68, 0.25);
}
.page-home .home-quick__card--orange .home-quick__num,
.page-home .home-quick__card--navy .home-quick__num {
  color: rgba(255, 255, 255, 0.85);
}
.page-home .home-quick__card--orange .home-quick__title,
.page-home .home-quick__card--navy .home-quick__title {
  color: var(--color-white);
}
.page-home .home-quick__card--orange .home-quick__text,
.page-home .home-quick__card--navy .home-quick__text {
  color: rgba(255, 255, 255, 0.9);
}
.page-home .home-points {
  background: linear-gradient(150deg, var(--color-navy) 0%, #10295a 68%, var(--color-navy) 100%);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 calc(clamp(2.5rem, 6vw, 4.5rem) + 1.5rem);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.page-home .home-points::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3rem;
  background: var(--color-orange);
  opacity: 0.12;
}
.page-home .home-points__layout {
  display: grid;
  gap: 2rem;
  position: relative;
  z-index: 2;
}
.page-home .home-points__list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}
.page-home .home-points__item {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.page-home .home-points__item:first-child {
  padding-top: 0;
}
.page-home .home-points__index {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 107, 53, 0.55);
  color: var(--color-orange);
  font-family: var(--font-data);
  font-size: 0.8125rem;
  font-weight: 700;
  background: rgba(255, 107, 53, 0.08);
}
.page-home .home-points__item-body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--color-white);
}
.page-home .home-points__item-body p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}
.page-home .home-points__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.page-home .home-points__aside {
  display: grid;
  gap: 1.25rem;
  align-content: start;
}
.page-home .home-points__figure {
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 48px rgba(4, 12, 32, 0.35);
}
.page-home .home-points__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-home .home-points__figure figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.06);
}
.page-home .home-points__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  background: var(--color-orange);
  border-radius: var(--radius-pill);
  padding: 0.875rem 1.5rem;
  color: var(--color-white);
  box-shadow: var(--home-glow-orange);
  justify-self: start;
}
.page-home .home-points__badge-num {
  font-family: var(--font-data);
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 1;
}
.page-home .home-points__badge-label {
  font-size: 0.9375rem;
  font-weight: 600;
}
.page-home .home-scenarios {
  background: var(--color-white);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}
.page-home .home-scenarios__layout {
  display: grid;
  gap: 1.5rem;
}
.page-home .home-scenarios__cards {
  display: grid;
  gap: 1rem;
}
.page-home .home-scenarios__card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: var(--radius-card);
  border-top: 5px solid var(--color-navy);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}
.page-home .home-scenarios__card--featured {
  border-top-color: var(--color-orange);
  background: linear-gradient(160deg, var(--color-white) 72%, var(--color-orange-soft) 100%);
}
.page-home .home-scenarios__tag {
  align-self: flex-start;
  display: inline-flex;
  background: var(--color-blue-soft);
  color: var(--color-navy);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 0.9375rem;
}
.page-home .home-scenarios__card--featured .home-scenarios__tag {
  background: var(--color-orange);
  color: var(--color-white);
}
.page-home .home-scenarios__card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.4;
  color: var(--color-navy);
}
.page-home .home-scenarios__card p {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-gray-mid);
  flex-grow: 1;
}
.page-home .home-scenarios__card .btn {
  align-self: flex-start;
}
.page-home .home-scenarios__figure {
  margin: 0;
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.page-home .home-scenarios__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  max-height: 26rem;
}
.page-home .home-scenarios__figure figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  color: var(--color-gray-mid);
  background: var(--color-gray-light);
}
@media (min-width: 560px) {
  .page-home .home-hero__stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-home .home-quick__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 700px) {
  .page-home .home-scenarios__cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .home-scenarios__card--featured {
    grid-column: 1 / -1;
  }
}
@media (min-width: 860px) {
  .page-home .home-hero {
    padding-top: 2rem;
    padding-bottom: 3.5rem;
  }
  .page-home .home-hero__layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
  }
  .page-home .home-hero__figure img {
    max-height: 32rem;
  }
  .page-home .home-hero__stats {
    margin-top: 2.5rem;
  }
  .page-home .home-quick__layout {
    grid-template-columns: 0.7fr 1.6fr;
    align-items: stretch;
  }
  .page-home .home-quick__figure {
    min-height: 100%;
  }
  .page-home .home-quick__figure img {
    max-height: none;
  }
  .page-home .home-points__layout {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 3rem;
    align-items: start;
  }
  .page-home .home-points__aside {
    position: sticky;
    top: 1.5rem;
    padding-top: 0.5rem;
  }
  .page-home .home-scenarios__layout {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: stretch;
  }
  .page-home .home-scenarios__figure img {
    height: 100%;
    max-height: none;
    min-height: 30rem;
  }
}
@media (min-width: 1200px) {
  .page-home .home-points__layout {
    grid-template-columns: 1.4fr 0.8fr;
  }
  .page-home .home-crosslink {
    grid-template-columns: repeat(2, 1fr);
  }
}
