.page-home {
  --home-blue: var(--color-highland-blue);
  --home-teal: var(--color-deep-teal);
  --home-snow: var(--color-snow);
  --home-gold: var(--color-gold);
  --home-emerald: var(--color-emerald);
  --home-ink: var(--color-ink);
  --home-line: var(--color-line);
  background: var(--home-snow);
  color: var(--home-ink);
  line-height: 1.8;
  overflow-x: hidden;
}
.page-home img {
  max-width: 100%;
  height: auto;
}
.page-home .home-preamble,
.page-home .home-section {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}
.page-home .home-preamble {
  padding: clamp(40px, 7vw, 88px) 0 24px;
}
.page-home .home-preamble__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.page-home .home-preamble__eyebrow {
  display: inline-block;
  font-size: .83rem;
  letter-spacing: .18em;
  color: var(--home-teal);
  background: #eef2f6;
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 20px;
}
.page-home .home-preamble__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--home-blue);
  margin: 0 0 12px;
}
.page-home .home-preamble__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 700;
  color: var(--home-teal);
  margin: 0 0 20px;
}
.page-home .home-preamble__desc {
  font-size: 1rem;
  max-width: 42em;
  color: #5b6774;
  margin-bottom: 28px;
}
.page-home .home-preamble__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-home .home-index-card {
  background: linear-gradient(150deg, var(--home-blue) 0%, #15304f 100%);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
  color: #fff;
  box-shadow: var(--shadow-card);
  align-self: start;
}
.page-home .home-index-card__kicker {
  margin-bottom: 16px;
  font-size: .85rem;
  letter-spacing: .2em;
  color: rgba(255, 255, 255, .78);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  padding-bottom: 12px;
}
.page-home .home-index-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: homeIndex;
  display: grid;
  gap: 12px;
}
.page-home .home-index-card__list li {
  counter-increment: homeIndex;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.page-home .home-index-card__list li::before {
  content: "0" counter(homeIndex);
  font-weight: 800;
  color: var(--home-gold);
  font-size: .85rem;
  flex: 0 0 auto;
}
.page-home .home-index-card__list a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 240ms ease;
}
.page-home .home-index-card__list a:hover {
  color: var(--home-gold);
}
.page-home .home-index-card__meta {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  font-size: .85rem;
  color: rgba(255, 255, 255, .8);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.page-home .home-preamble__figure {
  position: relative;
  margin: 40px 0 0;
}
.page-home .home-preamble__img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.page-home .home-preamble__figure figcaption {
  position: absolute;
  top: 16px;
  right: 16px;
  display: block;
  writing-mode: vertical-rl;
  background: rgba(30, 58, 95, .82);
  color: #fff;
  border-radius: 999px;
  padding: 14px 8px;
  font-size: .8rem;
  letter-spacing: .28em;
}
.page-home .home-section {
  padding: clamp(56px, 7vw, 88px) 0;
}
.page-home .home-section__head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  border-bottom: 1px solid var(--home-line);
  padding-bottom: 14px;
  margin-bottom: 32px;
}
.page-home .home-section__num {
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--home-gold);
  flex: 0 0 auto;
}
.page-home .home-section__head h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  font-weight: 800;
  margin: 0;
  color: var(--home-blue);
}
.page-home .home-section__lead {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 600;
  max-width: 46em;
  margin-bottom: 32px;
  color: var(--home-teal);
}
.page-home .home-change {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.page-home .home-change__list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.page-home .home-change__list li {
  position: relative;
  padding-left: 22px;
}
.page-home .home-change__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .78em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-gold);
}
.page-home .home-change__chart {
  margin: 0;
}
.page-home .home-change__chart img,
.page-home .home-product-figure img,
.page-home .home-update-figure img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
}
.page-home .home-section--teal {
  background: linear-gradient(135deg, #173d5f 0%, var(--home-teal) 60%, #0c3b4a 100%);
  border-radius: var(--radius-lg);
  color: #f5f7fa;
}
.page-home .home-section--teal .home-section__head {
  border-color: rgba(255, 255, 255, .18);
}
.page-home .home-section--teal .home-section__head h2,
.page-home .home-section--teal h3 {
  color: #fff;
}
.page-home .home-section--teal .home-section__lead {
  color: #dbe4ee;
}
.page-home .home-product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 28px;
}
.page-home .home-product-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-lg);
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.page-home .home-product-card__index {
  position: absolute;
  right: 12px;
  top: 0;
  font-size: 68px;
  font-weight: 800;
  color: rgba(255, 255, 255, .12);
  line-height: 1;
}
.page-home .home-product-card h3 {
  font-weight: 800;
  margin: 0 0 8px;
}
.page-home .home-product-card p {
  margin: 0;
  color: rgba(245, 247, 250, .88);
}
.page-home .home-product-figure {
  margin: 32px 0 28px;
  max-width: 720px;
}
.page-home .home-access-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.page-home .home-access-card {
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.page-home .home-access-card--gold {
  background: linear-gradient(135deg, #e3c259, var(--home-gold) 70%, #b9962c);
  color: #1a1a2e;
  border-color: transparent;
}
.page-home .home-access-card__label {
  font-weight: 800;
  letter-spacing: .14em;
  font-size: .9rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.page-home .home-access-card p:not(.home-access-card__label) {
  margin: 0 0 16px;
}
.page-home .home-access-card a {
  color: var(--home-teal);
  font-weight: 700;
  text-decoration: none;
}
.page-home .home-access-card--gold a {
  color: #4b2f05;
}
.page-home .home-access-card__meta {
  display: inline-block;
  margin-top: 16px;
  font-size: .8rem;
  color: #8a94a1;
  border-top: 1px solid var(--home-line);
  padding-top: 12px;
}
.page-home .home-event {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.page-home .home-event__intro {
  color: #5b6774;
}
.page-home .home-event__item {
  border-bottom: 1px solid var(--home-line);
}
.page-home .home-event__item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  padding: 18px 6px 18px 0;
  color: var(--home-blue);
}
.page-home .home-event__item summary::-webkit-details-marker {
  display: none;
}
.page-home .home-event__item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--home-gold);
  font-weight: 400;
  line-height: 1;
}
.page-home .home-event__item[open] summary::after {
  content: '–';
}
.page-home .home-event__item p {
  margin: 0;
  padding: 0 24px 22px 0;
  color: #5b6774;
  max-width: 52em;
}
.page-home .home-section--update {
  background: linear-gradient(150deg, var(--home-blue), var(--home-teal));
  border-radius: var(--radius-lg);
  color: #fff;
}
.page-home .home-section--update .home-section__head {
  border-color: rgba(255, 255, 255, .18);
}
.page-home .home-section--update .home-section__head h2,
.page-home .home-section--update h3 {
  color: #fff;
}
.page-home .home-update-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.page-home .home-update-card,
.page-home .home-subscribe-card {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.page-home .home-update-card h3,
.page-home .home-subscribe-card h3 {
  margin-top: 0;
}
.page-home .home-update-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.page-home .home-update-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.page-home .home-update-list__type {
  display: inline-block;
  background: var(--home-gold);
  color: #1a1a2e;
  border-radius: 999px;
  padding: 2px 12px;
  font-size: .78rem;
  font-weight: 700;
}
.page-home .home-subscribe-card p {
  color: rgba(245, 247, 250, .9);
}
.page-home .home-subscribe-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.page-home .home-update-figure {
  margin: 28px auto 0;
  max-width: 860px;
}
.page-home .home-path-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.page-home .home-path-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-weight: 600;
}
.page-home .home-path-list span {
  color: var(--home-gold);
  font-weight: 800;
  font-size: .85rem;
}
.page-home .home-support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 24px;
}
.page-home .home-support-card {
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: var(--home-ink);
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.page-home .home-support-card span {
  color: var(--home-teal);
  font-size: .85rem;
  letter-spacing: .14em;
  font-weight: 700;
}
.page-home .home-support-card strong {
  font-size: 1.01rem;
  word-break: break-word;
}
.page-home .home-support-note {
  color: #5b6774;
  font-size: .92rem;
}
.page-home .home-section--teal .btn-ghost,
.page-home .home-section--update .btn-ghost {
  border-color: rgba(255, 255, 255, .65);
  color: #fff;
}
.page-home .home-section--teal .btn-ghost:hover,
.page-home .home-section--update .btn-ghost:hover {
  background: rgba(255, 255, 255, .12);
}
.page-home .home-preamble__content,
.page-home .home-index-card,
.page-home .home-preamble__figure {
  animation: homeRise 640ms ease both;
}
.page-home .home-index-card {
  animation-delay: 120ms;
}
.page-home .home-preamble__figure {
  animation-delay: 200ms;
}
@keyframes homeRise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 760px) {
  .page-home .home-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home .home-access-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .home-update-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .home-path-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home .home-support-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 900px) {
  .page-home .home-preamble__grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    align-items: center;
  }
  .page-home .home-change {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  }
  .page-home .home-event {
    grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
  }
  .page-home .home-section__head {
    margin-bottom: 40px;
  }
}
@media (hover: hover) {
  .page-home .home-support-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-home .home-preamble__content,
  .page-home .home-index-card,
  .page-home .home-preamble__figure {
    animation: none;
  }
}
