.page-home {
  --home-section-pad: clamp(3.5rem, 7vw, 6.5rem);
  --home-card-radius: 18px;
  --home-gold-line: 3px solid var(--color-gold);
}

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

.page-home__crumb {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.25rem 1.25rem 0;
}

.page-home__hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 8%, rgba(212, 175, 55, .18), transparent 34%),
    radial-gradient(circle at 30% 100%, rgba(0, 180, 216, .12), transparent 42%),
    var(--color-primary-deep);
  color: var(--color-white);
  padding-top: 2.75rem;
  padding-bottom: 4.5rem;
}

.page-home__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 3rem 3rem;
  pointer-events: none;
}

.page-home__hero .container {
  position: relative;
}

.page-home__hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.page-home__hero-copy .eyebrow {
  color: var(--color-gold);
}

.page-home__hero-copy h1 {
  margin: .8rem 0 1.25rem;
  font-family: var(--font-head);
  font-size: clamp(2rem, 5.2vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: .01em;
}

.page-home__summary {
  max-width: 34rem;
  color: rgba(255, 255, 255, .82);
}

.page-home__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.page-home__hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 2rem;
}

.page-home__hero-tags a {
  text-decoration: none;
}

.page-home__hero-tags a:hover,
.page-home__hero-tags a:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.page-home__hero-figure {
  position: relative;
}

.page-home__hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
}

.page-home__hero-stat {
  position: absolute;
  right: 1rem;
  bottom: 1.25rem;
  display: grid;
  gap: .2rem;
  min-width: 140px;
  padding: 1.1rem 1.3rem;
  background: var(--color-gold);
  color: var(--color-primary-deep);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .22);
}

.page-home__hero-stat-num {
  font-family: var(--font-data);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
}

.page-home__hero-stat-label {
  font-size: .9rem;
  font-weight: 600;
}

.page-home__section {
  padding: var(--home-section-pad) 0;
}

.page-home__section--calendar {
  background: var(--color-white);
}

.page-home__section--push {
  background:
    radial-gradient(circle at 90% 20%, rgba(0, 180, 216, .14), transparent 30%),
    var(--color-primary);
  color: var(--color-white);
}

.page-home__section--schedule {
  background: var(--color-bg);
}

.page-home__section--reports {
  border-block: 2px solid var(--color-gold);
  background: linear-gradient(180deg, var(--color-white) 0%, rgba(212, 175, 55, .1) 100%);
}

.page-home__section--legacy {
  background: var(--color-white);
}

.page-home__section--cases {
  background:
    radial-gradient(circle at 82% 18%, rgba(212, 175, 55, .22), transparent 26%),
    var(--color-primary-deep);
  color: var(--color-white);
  clip-path: polygon(0 3.5rem, 100% 0, 100% calc(100% - 3.5rem), 0 100%);
  padding: calc(var(--home-section-pad) + 2rem) 0 calc(var(--home-section-pad) + 2rem);
}

.page-home__heading-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.4rem;
}

.page-home__heading-row h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2;
  margin: .1rem 0 0;
}

.page-home__heading-group .eyebrow {
  margin: 0;
}

.page-home__index {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-data);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold-deep);
  white-space: nowrap;
}

.page-home__index::before {
  content: "";
  width: 2.5rem;
  height: 2px;
  background: var(--color-gold);
}

.page-home__index--on-dark {
  color: var(--color-gold);
}

.page-home__section-lead {
  max-width: 640px;
  margin: 0 0 2.25rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-ink);
}

.page-home__section-action {
  margin-top: 2.5rem;
  text-align: center;
}

.page-home__calendar-flow {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
}

.page-home__cal-step {
  position: relative;
  padding: 2rem 1.5rem 2rem 2rem;
  background: var(--color-bg);
  border-left: var(--home-gold-line);
  border-radius: var(--radius-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.page-home__cal-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.page-home__cal-step-num {
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
}

.page-home__cal-step h3 {
  margin: 0 0 .75rem;
  font-size: 1.2rem;
  font-family: var(--font-head);
  color: var(--color-ink);
}

.page-home__cal-step p {
  margin: 0;
  font-size: .98rem;
  line-height: 1.7;
  color: var(--color-ink);
}

.page-home__push-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.page-home__push-copy .eyebrow {
  color: var(--color-gold);
}

.page-home__push-copy .lead {
  margin-top: 1.25rem;
}

.page-home__push-copy p {
  max-width: 32rem;
  color: rgba(255, 255, 255, .8);
}

.page-home__push-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  padding: 0;
  display: grid;
  gap: .7rem;
}

.page-home__push-list li {
  position: relative;
  padding-left: 1.4rem;
  color: rgba(255, 255, 255, .9);
}

.page-home__push-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: .6rem;
  height: 2px;
  background: var(--color-gold);
}

.page-home__push-device {
  position: relative;
  width: min(280px, 78%);
  justify-self: center;
  border: 8px solid #0b132b;
  border-radius: 2.4rem;
  background: #0b132b;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .4);
}

.page-home__push-device::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4.5rem;
  height: 1.1rem;
  border-radius: 999px;
  background: #0b132b;
  z-index: 2;
}

.page-home__push-device img {
  width: 100%;
  border-radius: 1.8rem;
  display: block;
}

.page-home__schedule-grid {
  display: grid;
  gap: 1.25rem;
}

.page-home__schedule-card {
  position: relative;
  padding-top: 1.5rem;
  overflow: hidden;
}

.page-home__schedule-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--color-gold) 0%, transparent 90%);
}

.page-home__schedule-card h3 {
  margin: 0 0 .55rem;
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--color-ink);
}

.page-home__schedule-card p {
  margin: 0 0 1rem;
  font-size: .95rem;
  color: var(--color-ink);
}

.page-home__schedule-chart {
  margin: 3rem 0 0;
}

.page-home__schedule-chart img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.page-home__schedule-chart figcaption {
  margin-top: .8rem;
  font-size: .9rem;
  color: #6b7686;
  text-align: center;
}

.page-home__report-grid {
  display: grid;
  gap: 1.5rem;
}

.page-home__report-card {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  align-items: flex-start;
}

.page-home__report-card h3 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--color-ink);
}

.page-home__report-card p {
  margin: 0;
  font-size: .97rem;
  line-height: 1.75;
  color: var(--color-ink);
}

.page-home__report-card a {
  margin-top: auto;
  color: var(--color-gold-deep);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 55, .5);
  transition: color var(--transition), border-color var(--transition);
}

.page-home__report-card a:hover,
.page-home__report-card a:focus-visible {
  color: var(--color-primary);
  border-color: var(--color-primary);
  outline: none;
}

.page-home__legacy-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.page-home__legacy-copy .lead {
  margin-top: 1.25rem;
}

.page-home__legacy-copy p {
  color: var(--color-ink);
}

.page-home__kpi-grid {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

.page-home__kpi {
  display: grid;
  gap: .35rem;
  padding: 1.5rem 1.25rem;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, .16), transparent 60%),
    var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--color-gold);
  text-align: center;
}

.page-home__kpi-num {
  font-family: var(--font-data);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
}

.page-home__kpi-label {
  font-size: .92rem;
  color: rgba(255, 255, 255, .82);
}

.page-home__legacy-figure img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.page-home__cases-wrap {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.page-home__cases-wrap h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 0;
}

.page-home__cases-wrap .eyebrow {
  margin-bottom: .6rem;
  color: var(--color-gold);
}

.page-home__index--on-dark {
  justify-content: center;
}

.page-home__cases-lead {
  max-width: 620px;
  margin: 1.4rem auto 2.5rem;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .82);
}

.page-home__case-highlight {
  display: grid;
  justify-items: center;
  gap: .4rem;
  padding: 2.75rem 1.5rem;
  border: 1px solid rgba(212, 175, 55, .42);
  background: rgba(212, 175, 55, .06);
  border-radius: var(--radius-lg);
}

.page-home__case-num {
  font-family: var(--font-data);
  font-size: clamp(4.5rem, 10vw, 6.5rem);
  font-weight: 700;
  line-height: .9;
  color: var(--color-gold);
}

.page-home__case-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, .86);
}

.page-home__cases-meta {
  max-width: 620px;
  margin: 2rem auto 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .78);
}

.page-home__cases-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .page-home__calendar-flow {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

  .page-home__push-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  }

  .page-home__legacy-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-home__hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  }

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

  .page-home__heading-row {
    gap: 2rem;
  }

  .page-home__section-lead {
    margin-left: 0;
  }

  .page-home__casess-wrap .page-home__index {
    justify-content: center;
  }
}
