.page-home {
  width: 100%;
  overflow-x: hidden;
  background-color: var(--mist);
  color: var(--ink);
}
.page-home .home-hero {
  position: relative;
  padding: 20px 0 48px;
  background-color: var(--navy);
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 32px 32px;
  color: var(--white);
  border-bottom: 4px solid var(--orange);
}
.page-home .home-hero::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 22%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255,107,53,.14), 0 0 0 14px rgba(255,107,53,.08);
  pointer-events: none;
}
.page-home .home-hero__inner {
  position: relative;
  z-index: 2;
}
.page-home .home-breadcrumb {
  margin-bottom: 26px;
}
.page-home .home-hero__grid {
  display: grid;
  gap: 30px;
}
.page-home .home-hero__eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-num);
  font-size: .82rem;
  letter-spacing: .12em;
  color: var(--cyan);
  text-transform: uppercase;
}
.page-home .home-hero__title {
  margin: 0 0 14px;
  font-family: var(--font-head);
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 800;
  color: var(--white);
}
.page-home .home-hero__lead {
  margin: 0 0 22px;
  max-width: 54ch;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,.78);
}
.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-home .home-hero__notice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  margin-top: 14px;
}
.page-home .home-hero__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-top: 18px;
  font-family: var(--font-num);
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}
.page-home .home-hero__quick a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,.38);
  transition: color var(--ease), border-color var(--ease);
}
.page-home .home-hero__quick a:hover,
.page-home .home-hero__quick a:focus {
  color: var(--orange);
  border-color: var(--orange);
}
.page-home .home-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin: 26px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,.16);
}
.page-home .home-hero__fact {
  margin: 0;
}
.page-home .home-hero__fact dt {
  margin-bottom: 4px;
  font-family: var(--font-num);
  font-size: .68rem;
  letter-spacing: .08em;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
}
.page-home .home-hero__fact dd {
  margin: 0;
  font-family: var(--font-num);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--orange);
}
.page-home .home-hero__preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.page-home .home-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg);
  transition: transform var(--ease), border-color var(--ease), background-color var(--ease);
}
.page-home .home-card:hover,
.page-home .home-card:focus-within {
  transform: translateY(-3px);
  background: rgba(255,255,255,.12);
  border-color: var(--orange);
}
.page-home .home-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.page-home .home-card__index {
  font-family: var(--font-num);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--cyan);
}
.page-home .home-card--orange .home-card__index {
  color: var(--orange);
}
.page-home .home-card--violet .home-card__index {
  color: var(--violet);
}
.page-home .home-card--navy .home-card__index {
  color: var(--yellow);
}
.page-home .home-card__status {
  padding: 3px 8px;
  border-radius: 999px;
  font-family: var(--font-num);
  font-size: .68rem;
  letter-spacing: .06em;
  color: var(--cyan);
  background: rgba(0,212,255,.14);
  text-transform: uppercase;
}
.page-home .home-card__status--warn {
  color: var(--yellow);
  background: rgba(241,196,15,.16);
}
.page-home .home-card__status--ok {
  color: var(--green);
  background: rgba(46,204,113,.14);
}
.page-home .home-card__title {
  margin: 8px 0 0;
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 750;
  color: var(--white);
}
.page-home .home-card__desc {
  margin: 0;
  font-family: var(--font-body);
  font-size: .82rem;
  line-height: 1.6;
  color: rgba(255,255,255,.62);
}
.page-home .home-card__link {
  margin-top: 8px;
  font-family: var(--font-num);
  font-size: .78rem;
  text-decoration: none;
  color: var(--orange);
  opacity: .85;
  transition: opacity var(--ease), color var(--ease);
}
.page-home .home-card__link:hover,
.page-home .home-card__link:focus {
  color: var(--orange);
  opacity: 1;
}
.page-home .home-section {
  padding: 40px 0;
  scroll-margin-top: 70px;
  background-color: var(--mist);
  border-bottom: 1px solid var(--line);
}
.page-home .home-section .section__head {
  margin-bottom: 24px;
}
.page-home .home-section--timeline {
  background-color: var(--navy);
  color: var(--mist);
  border-bottom: 3px solid var(--orange);
}
.page-home .home-section--timeline .section__title {
  color: var(--white);
}
.page-home .home-section--timeline .section__desc {
  color: rgba(255,255,255,.62);
}
.page-home .home-section--timeline .section__index {
  color: var(--orange);
}
.page-home .home-section--guide {
  background-color: var(--white);
}
.page-home .home-row,
.page-home .home-guide,
.page-home .home-tablet {
  display: grid;
  gap: 24px;
}
.page-home .home-row__content p,
.page-home .home-tablet__content p {
  font-family: var(--font-body);
  font-size: .92rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.page-home .home-row__lead,
.page-home .home-tablet__content .home-row__lead {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: 1.04rem;
  line-height: 1.75;
}
.page-home .home-point-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 22px;
  padding: 0;
  list-style: none;
}
.page-home .home-point-list li {
  position: relative;
  padding-left: 20px;
  font-size: .9rem;
  line-height: 1.65;
  color: var(--ink);
}
.page-home .home-point-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--orange);
}
.page-home .home-media {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.page-home .home-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-home .home-media figcaption {
  display: block;
  padding: 8px 12px;
  border-top: 1px solid var(--line);
  background: rgba(242,244,247,.7);
  font-family: var(--font-num);
  font-size: .74rem;
  color: var(--ink-soft);
}
.page-home .home-timeline__filters {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 16px;
}
.page-home .home-section--timeline .filter-btn {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.24);
  color: var(--white);
}
.page-home .home-section--timeline .filter-btn[data-active] {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.page-home .home-timeline__track {
  position: relative;
  margin-bottom: 26px;
  padding: 20px 14px 12px;
  overflow-x: auto;
  background: var(--navy-2);
  border-radius: var(--radius-lg);
}
.page-home .home-timeline__items {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  min-width: 680px;
}
.page-home .home-timeline__item {
  position: relative;
  flex: 1;
  padding-top: 24px;
  border-top: 2px solid rgba(255,255,255,.22);
}
.page-home .home-timeline__item::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0,212,255,.16);
}
.page-home .home-timeline__item--current {
  background: linear-gradient(180deg, rgba(255,107,53,.13), transparent 70%);
  border-top-color: var(--orange);
}
.page-home .home-timeline__item--current::before {
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,107,53,.22);
}
.page-home .home-timeline__year {
  display: block;
  font-family: var(--font-num);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}
.page-home .home-timeline__label {
  display: block;
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: .72rem;
  color: rgba(255,255,255,.62);
}
.page-home .home-timeline__svg {
  display: block;
  width: 100%;
  height: 42px;
  margin-top: 10px;
}
.page-home .home-timeline__axis {
  stroke: rgba(255,255,255,.18);
  stroke-width: 2;
  stroke-dasharray: 4 8;
}
.page-home .home-timeline__wave {
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  opacity: .85;
}
.page-home [data-filter-item][data-hidden] {
  display: none;
}
.page-home .home-guide__visual .home-guide__tip {
  margin: 12px 0 0;
  padding: 12px 14px;
  border-left: 4px solid var(--orange);
  background: var(--mist);
  font-size: .88rem;
  line-height: 1.7;
}
.page-home .home-accordion {
  display: grid;
  gap: 12px;
}
.page-home .home-accordion__panel {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.page-home .home-accordion .panel__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 15px 16px;
  background: transparent;
  border: 0;
  font-family: var(--font-head);
  font-size: .94rem;
  font-weight: 650;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: background-color var(--ease);
}
.page-home .home-accordion .panel__toggle:hover,
.page-home .home-accordion .panel__toggle:focus {
  background: var(--mist);
}
.page-home .home-accordion .panel__icon {
  display: grid;
  place-items: center;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--mist);
  font-family: var(--font-num);
  font-size: 1rem;
  color: var(--orange);
  transition: transform var(--ease), background-color var(--ease), color var(--ease);
}
.page-home .home-accordion [data-panel][data-open] .panel__icon {
  transform: rotate(45deg);
  background: var(--orange);
  color: var(--white);
}
.page-home .home-accordion .panel__body {
  padding: 12px 16px 16px;
  border-top: 1px dashed var(--line);
  font-family: var(--font-body);
  font-size: .9rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.page-home [data-panel] .panel__body {
  display: none;
}
.page-home [data-panel][data-open] .panel__body {
  display: block;
}
.page-home .home-guide__cta {
  margin-top: 24px;
}
.page-home .home-fix-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}
.page-home .home-fix__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.page-home .home-fix__badge {
  flex: 0 0 auto;
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--orange);
  font-family: var(--font-num);
  font-size: .68rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
}
.page-home .home-fix__badge--green {
  background: var(--green);
}
.page-home .home-fix__badge--cyan {
  background: var(--cyan);
  color: var(--navy);
}
.page-home .home-fix__title {
  margin: 0 0 6px;
  font-family: var(--font-head);
  font-size: .98rem;
  font-weight: 700;
  color: var(--navy);
}
.page-home .home-fix__item p {
  margin: 0;
  font-size: .86rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.page-home .home-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 22px;
}
.page-home .home-metric {
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--cyan);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.page-home .home-metric--accent {
  border-top-color: var(--orange);
}
.page-home .home-metric__num {
  display: block;
  font-family: var(--font-num);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
}
.page-home .home-metric__label {
  display: block;
  margin-top: 6px;
  font-family: var(--font-body);
  font-size: .82rem;
  color: var(--ink-soft);
}
.page-home .home-trust__note {
  padding: 14px 18px;
  background: var(--white);
  border-left: 4px solid var(--cyan);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .9rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.page-home .home-trust__note a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-home .home-trust__note a:hover,
.page-home .home-trust__note a:focus {
  color: var(--orange);
}
@media (min-width: 640px) {
  .page-home .home-hero__preview {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .home-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .page-home .home-hero {
    padding-top: 32px;
  }
  .page-home .home-hero__grid {
    grid-template-columns: 5fr 7fr;
    align-items: center;
    gap: 40px;
  }
  .page-home .home-hero__title {
    font-size: 2.6rem;
  }
  .page-home .home-section {
    padding: 56px 0;
  }
  .page-home .home-row {
    grid-template-columns: 7fr 5fr;
    align-items: center;
  }
  .page-home .home-row--timeline {
    grid-template-columns: 5fr 7fr;
  }
  .page-home .home-guide {
    grid-template-columns: 5fr 7fr;
    align-items: start;
  }
  .page-home .home-tablet {
    grid-template-columns: 5fr 7fr;
    align-items: start;
  }
}
@media (min-width: 1200px) {
  .page-home .home-metrics {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-home .home-timeline__track {
    padding-top: 26px;
  }
}
