.page-home {
  --home-gold-deep: #C77B1E;
  --home-blue-soft: #E8F1F7;
  --home-blue-mist: #DCEAF4;
  --home-card-bg: rgba(255, 255, 255, .74);
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(1100px 420px at 88% -2%, rgba(58, 124, 165, .10), transparent 62%),
    var(--color-bg);
}

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

.page-home .btn {
  border-radius: 999px;
  font-family: var(--font-title);
  font-size: .82rem;
  font-weight: 600;
  padding: .62rem 1.2rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

.page-home .btn:active {
  transform: translateY(1px);
}

.page-home .btn-primary {
  background: linear-gradient(135deg, var(--sun-gold), var(--home-gold-deep));
  color: #fff;
  border: none;
  box-shadow: 0 8px 18px rgba(245, 166, 35, .32);
}

.page-home .btn-primary:hover {
  box-shadow: 0 10px 24px rgba(245, 166, 35, .42), 0 2px 6px rgba(31, 58, 95, .08);
}

.page-home .btn-outline {
  border: 1px solid rgba(58, 124, 165, .42);
  color: var(--sky-blue);
  background: transparent;
}

.page-home .btn-outline:hover {
  background: rgba(58, 124, 165, .08);
  border-color: var(--sky-blue);
}

.page-home .ph-hero {
  position: relative;
  display: grid;
  gap: 1.6rem;
  padding: 3rem 1.25rem 2.4rem;
  background: linear-gradient(160deg, var(--home-blue-soft) 0%, #F6F1E9 68%, var(--rice-white) 100%);
  overflow: hidden;
}

.page-home .ph-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(320px 180px at 12% 18%, rgba(255, 255, 255, .88), transparent 62%),
    radial-gradient(420px 250px at 85% 28%, rgba(58, 124, 165, .16), transparent 62%),
    radial-gradient(500px 300px at 70% 88%, rgba(245, 166, 35, .12), transparent 60%);
  pointer-events: none;
}

.page-home .ph-hero__story {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.page-home .ph-hero__eyebrow {
  font-family: var(--font-title);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sky-blue);
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 .7rem;
}

.page-home .ph-hero__eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--sun-gold);
}

.page-home .ph-hero h1 {
  font-family: var(--font-title);
  font-size: clamp(1.7rem, 5vw, 2.9rem);
  line-height: 1.18;
  color: var(--color-heading);
  margin: 0 0 1rem;
  letter-spacing: -.01em;
}

.page-home .ph-hero__lead {
  font-size: .94rem;
  line-height: 1.85;
  color: var(--rock-gray);
  margin: 0 0 1.5rem;
}

.page-home .ph-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.page-home .ph-hero__status {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
  margin: 2rem 0 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(58, 124, 165, .16);
}

.page-home .ph-hero__status div {
  background: var(--home-card-bg);
  border: 1px solid rgba(255, 255, 255, .92);
  border-radius: 16px;
  padding: .7rem .4rem;
  text-align: center;
  backdrop-filter: blur(9px);
}

.page-home .ph-hero__status dt {
  font-size: .68rem;
  color: var(--rock-gray);
}

.page-home .ph-hero__status dd {
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--deep-sky);
  margin: .2rem 0 0;
}

.page-home .ph-hero__visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(31, 58, 95, .16);
  background: #fff;
}

.page-home .ph-hero__visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .ph-hero__caption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
  background: rgba(255, 255, 255, .9);
  border-radius: 14px;
  padding: .6rem .75rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(31, 58, 95, .10);
}

.page-home .ph-hero__caption p {
  width: 100%;
  margin: .25rem 0 0;
  font-size: .74rem;
  color: var(--rock-gray);
}

.page-home .ph-path {
  position: relative;
  z-index: 3;
  display: flex;
  gap: .55rem;
  overflow-x: auto;
  padding: 1rem 1.25rem;
  background: var(--rice-white);
  border-bottom: 1px solid rgba(122, 139, 92, .22);
  scrollbar-width: none;
}

.page-home .ph-path::-webkit-scrollbar {
  display: none;
}

.page-home .ph-path a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  font-family: var(--font-title);
  font-size: .78rem;
  font-weight: 500;
  color: var(--deep-sky);
  border: 1px solid rgba(58, 124, 165, .24);
  border-radius: 999px;
  padding: .45rem .9rem;
  background: rgba(255, 255, 255, .8);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.page-home .ph-path a span {
  font-size: .68rem;
  line-height: 1;
  color: var(--sun-gold);
  font-weight: 700;
}

.page-home .ph-path a:hover {
  background: var(--sky-blue);
  border-color: var(--sky-blue);
  color: #fff;
}

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

.page-home .ph-section__head {
  display: flex;
  align-items: flex-start;
  gap: .95rem;
  margin-bottom: 1.8rem;
}

.page-home .ph-section__head h2 {
  font-family: var(--font-title);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1.3;
  color: var(--color-heading);
  margin: .25rem 0 .5rem;
}

.page-home .ph-section__head p {
  font-size: .9rem;
  line-height: 1.75;
  color: var(--rock-gray);
  margin: 0;
}

.page-home .ph-section__num {
  flex: 0 0 auto;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  color: var(--sun-gold);
  border: 1px solid rgba(245, 166, 35, .4);
  border-radius: 12px;
  padding: .5rem .62rem;
}

.page-home .ph-update {
  padding: 3rem 0 2.8rem;
}

.page-home .ph-update__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.4rem;
}

.page-home .ph-update__tags span {
  font-family: var(--font-title);
  font-size: .72rem;
  color: var(--moss-green);
  border: 1px solid rgba(122, 139, 92, .36);
  background: rgba(122, 139, 92, .07);
  border-radius: 999px;
  padding: .32rem .72rem;
}

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

.page-home .ph-update-card {
  border-radius: 20px;
  padding: 1.35rem 1.25rem;
  background: var(--home-card-bg);
  border: 1px solid rgba(122, 139, 92, .22);
  box-shadow: 0 5px 18px rgba(31, 58, 95, .05);
  display: flex;
  flex-direction: column;
  gap: .45rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.page-home .ph-update-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(31, 58, 95, .10);
}

.page-home .ph-update-card.card--accent {
  background: linear-gradient(145deg, #FDF7EC, #FFF3D6);
  border-color: rgba(245, 166, 35, .3);
}

.page-home .ph-update-card h3 {
  font-family: var(--font-title);
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--deep-sky);
  margin: 0;
}

.page-home .ph-update-card p {
  font-size: .85rem;
  line-height: 1.75;
  color: var(--rock-gray);
  margin: 0 0 .3rem;
  flex: 1 1 auto;
}

.page-home .ph-update-card .btn {
  align-self: flex-start;
  margin-top: .45rem;
}

.page-home .ph-compare {
  padding: 3rem 0;
  background:
    radial-gradient(900px 320px at 84% -4%, rgba(58, 124, 165, .15), transparent 62%),
    #F4F0E8;
}

.page-home .ph-compare__figure {
  margin: 0 0 1.2rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.page-home .ph-compare__figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .ph-compare__figure figcaption {
  font-size: .78rem;
  color: var(--rock-gray);
  background: rgba(255, 255, 255, .88);
  padding: .7rem 1rem;
  border-top: 1px solid rgba(58, 124, 165, .10);
  line-height: 1.6;
}

.page-home .ph-compare__foot {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.page-home .ph-compare__foot p {
  font-size: .88rem;
  line-height: 1.8;
  color: var(--rock-gray);
  margin: 0;
}

.page-home .ph-compare__foot .btn {
  align-self: flex-start;
}

.page-home .ph-mobile {
  display: grid;
  gap: 1.6rem;
  max-width: var(--container);
  margin-inline: auto;
  padding: 3rem 1.25rem;
  background:
    radial-gradient(600px 300px at 8% 25%, rgba(122, 139, 92, .14), transparent 62%),
    var(--rice-white);
}

.page-home .ph-mobile__content {
  min-width: 0;
}

.page-home .ph-mobile__content .ph-section__num {
  display: inline-flex;
  margin-bottom: .8rem;
}

.page-home .ph-mobile__content h2 {
  font-family: var(--font-title);
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  line-height: 1.35;
  color: var(--color-heading);
  margin: 0 0 .7rem;
}

.page-home .ph-mobile__content > p {
  font-size: .9rem;
  line-height: 1.8;
  color: var(--rock-gray);
  margin: 0 0 1.4rem;
}

.page-home .ph-mobile__points {
  display: grid;
  gap: .7rem;
  margin-bottom: 1.4rem;
}

.page-home .ph-mobile__points > div {
  border-left: 3px solid var(--sky-blue);
  background: rgba(255, 255, 255, .8);
  border-radius: 0 14px 14px 0;
  padding: .9rem 1rem;
}

.page-home .ph-mobile__points strong {
  display: block;
  font-family: var(--font-title);
  font-size: .8rem;
  color: var(--deep-sky);
  margin-bottom: .25rem;
}

.page-home .ph-mobile__points p {
  margin: 0;
  font-size: .84rem;
  line-height: 1.7;
  color: var(--rock-gray);
}

.page-home .ph-mobile__figure {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.page-home .ph-mobile__figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .ph-mobile__figure figcaption {
  font-size: .76rem;
  color: var(--rock-gray);
  background: rgba(255, 255, 255, .9);
  padding: .7rem 1rem;
  border-top: 1px solid rgba(58, 124, 165, .08);
  line-height: 1.6;
}

.page-home .ph-version {
  padding: 3rem 0 2.8rem;
  background: linear-gradient(180deg, #F4F0E8 0%, #E6EDF3 100%);
}

.page-home .ph-version__cards {
  display: grid;
  gap: 1rem;
  margin: 1.6rem 0;
}

.page-home .ph-version__card {
  border-radius: 20px;
  padding: 1.35rem 1.3rem;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(58, 124, 165, .22);
  box-shadow: 0 4px 14px rgba(31, 58, 95, .06);
}

.page-home .ph-version__card--gold {
  border-color: rgba(245, 166, 35, .4);
  background: linear-gradient(145deg, #FFFDF8, #FFF2D9);
}

.page-home .ph-version__card h3 {
  font-family: var(--font-title);
  font-size: 1.12rem;
  color: var(--sky-blue);
  margin: 0 0 .75rem;
}

.page-home .ph-version__card--gold h3 {
  color: var(--home-gold-deep);
}

.page-home .ph-version__card ul {
  margin: 0;
  padding: 0 0 0 1.1rem;
  display: grid;
  gap: .5rem;
}

.page-home .ph-version__card li {
  font-size: .85rem;
  line-height: 1.7;
  color: var(--rock-gray);
}

.page-home .ph-version__figure {
  margin: 1.6rem 0 1.2rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.page-home .ph-version__figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .ph-version__figure figcaption {
  font-size: .76rem;
  color: var(--rock-gray);
  background: rgba(255, 255, 255, .9);
  padding: .7rem 1rem;
  border-top: 1px solid rgba(58, 124, 165, .08);
  line-height: 1.6;
}

.page-home .ph-version__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.page-home .ph-quick {
  display: grid;
  place-items: center;
  padding: 3rem 1.25rem;
  background: linear-gradient(160deg, var(--deep-sky) 0%, #142C46 100%);
  overflow: hidden;
}

.page-home .ph-quick::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(360px 220px at 82% 10%, rgba(245, 166, 35, .16), transparent 62%),
    radial-gradient(320px 260px at 12% 82%, rgba(58, 124, 165, .34), transparent 62%),
    radial-gradient(420px 240px at 20% 12%, rgba(255, 255, 255, .08), transparent 62%);
  pointer-events: none;
}

.page-home .ph-quick__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .06);
  padding: 1.8rem 1.4rem;
  color: #fff;
  backdrop-filter: blur(8px);
}

.page-home .ph-quick__panel .ph-section__num {
  display: inline-flex;
  color: var(--sun-gold);
  border-color: rgba(245, 166, 35, .5);
}

.page-home .ph-quick h2 {
  font-family: var(--font-title);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.35;
  color: #fff;
  margin: .85rem 0 .8rem;
}

.page-home .ph-quick p {
  font-size: .92rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .78);
  margin: 0;
}

.page-home .ph-quick__steps {
  counter-reset: quick-step;
  display: grid;
  gap: .65rem;
  margin: 1.5rem 0 1.7rem;
  padding: 0;
  list-style: none;
}

.page-home .ph-quick__steps li {
  counter-increment: quick-step;
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .87rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, .92);
  background: rgba(255, 255, 255, .08);
  border-radius: 14px;
  padding: .82rem 1rem;
}

.page-home .ph-quick__steps li::before {
  content: counter(quick-step, decimal-leading-zero);
  font-family: var(--font-title);
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--sun-gold);
  flex: 0 0 auto;
}

.page-home .ph-quick__links {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.page-home .ph-quick .btn-outline {
  border-color: rgba(255, 255, 255, .4);
  color: rgba(255, 255, 255, .92);
}

.page-home .ph-quick .btn-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

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

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

  .page-home .ph-quick__panel {
    padding: 2.1rem 1.8rem;
  }
}

@media (min-width: 992px) {
  .page-home .ph-hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    align-items: center;
    gap: 3rem;
    padding: 4.6rem clamp(2rem, 6vw, 4.6rem) 3.6rem;
  }

  .page-home .ph-hero__lead {
    font-size: 1rem;
  }

  .page-home .ph-path {
    justify-content: center;
    gap: .85rem;
    padding: 1.1rem 2rem;
  }

  .page-home .ph-path a {
    font-size: .84rem;
    padding: .55rem 1.1rem;
  }

  .page-home .ph-update {
    padding: 4.5rem 0;
  }

  .page-home .ph-update__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem;
  }

  .page-home .ph-update-card {
    padding: 1.6rem 1.4rem;
  }

  .page-home .ph-compare {
    padding: 4.5rem 0;
  }

  .page-home .ph-compare__figure {
    margin-bottom: 1.4rem;
  }

  .page-home .ph-compare__foot {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .page-home .ph-compare__foot .btn {
    flex: 0 0 auto;
  }

  .page-home .ph-mobile {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .8fr);
    align-items: center;
    gap: 3rem;
    padding: 4.5rem 2rem;
  }

  .page-home .ph-mobile__content {
    padding: .5rem 0;
  }

  .page-home .ph-mobile__figure {
    margin: 0;
  }

  .page-home .ph-version {
    padding: 4.5rem 0;
  }

  .page-home .ph-version__cards {
    gap: 1.3rem;
    margin: 2rem 0;
  }

  .page-home .ph-version__card {
    padding: 1.6rem 1.5rem;
  }

  .page-home .ph-version__figure {
    margin: 2rem 0 1.4rem;
  }

  .page-home .ph-quick {
    padding: 4.5rem 2rem;
  }

  .page-home .ph-quick__panel {
    padding: 2.6rem 3rem;
  }
}
