.page-home{
  background: var(--c-ivory);
  color: var(--c-text);
  font-family: var(--font-body);
  overflow-x: clip;
}
.page-home img{
  max-width: 100%;
  height: auto;
}
.page-home .home-hero{
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-light) 66%, #0A1F44 100%);
  color: #fff;
  display: flex;
  align-items: center;
}
.page-home .home-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: repeating-linear-gradient(-45deg, rgba(255,255,255,.03) 0 12px, transparent 12px 24px);
}
.page-home .home-hero__visual{
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.page-home .home-hero__visual::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,31,68,.44), rgba(10,31,68,0) 42%);
}
.page-home .home-hero__visual img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .3;
  mix-blend-mode: lighten;
  filter: saturate(1.08) contrast(1.04);
}
.page-home .home-hero__grid{
  position: absolute;
  right: -70px;
  bottom: -50px;
  width: min(76vw, 640px);
  height: auto;
  opacity: .45;
}
.page-home .home-hero__content{
  position: relative;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
  padding: 52px 24px 48px;
}
.page-home .home-hero__breadcrumb{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  margin: 0 0 28px;
}
.page-home .home-hero__breadcrumb a{
  color: var(--c-gold);
  text-decoration: none;
}
.page-home .home-hero__kicker{
  margin: 0 0 16px;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-gold);
  border-left: 3px solid var(--c-accent);
  padding-left: 12px;
}
.page-home .home-hero h1{
  font-family: var(--font-display);
  font-size: clamp(44px, 12vw, 88px);
  line-height: .96;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 10px;
  text-wrap: balance;
}
.page-home .home-hero__spotline{
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 48px);
  line-height: 1.08;
  color: var(--c-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 20px;
}
.page-home .home-hero__lede{
  max-width: 54ch;
  font-size: clamp(16px, 2.2vw, 19px);
  line-height: 1.6;
  color: #eef3fb;
  margin: 0 0 30px;
}
.page-home .home-hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 38px;
}
.page-home .home-hero__stats{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,.16);
  padding-top: 26px;
  margin: 0;
}
.page-home .home-hero__stats div{
  border-left: 1px solid rgba(255,215,0,.4);
  padding-left: 12px;
}
.page-home .home-hero__stats dt{
  font-size: 12px;
  color: #c9d4f0;
  margin: 0;
}
.page-home .home-hero__stats dd{
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 30px);
  color: var(--c-accent);
  line-height: 1;
  margin: 6px 0 0;
}
.page-home .section__head{
  margin-bottom: 28px;
}
.page-home .section__kicker{
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-terra);
}
.page-home .section__desc{
  max-width: 74ch;
  color: var(--c-muted);
  line-height: 1.7;
  margin: 12px 0 0;
}
.page-home .home-data{
  position: relative;
  padding: 64px 0;
}
.page-home .home-data::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(100deg, var(--c-accent) 0 18%, var(--c-gold) 18% 36%, transparent 36% 100%);
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
}
.page-home .home-data__filter{
  margin: 0 0 28px;
}
.page-home .home-data__grid{
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.page-home .home-data__card{
  position: relative;
  background: #fff;
  border: 1px solid rgba(10,31,68,.08);
  border-radius: var(--radius-lg);
  padding: 26px 24px 28px;
  box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease;
}
.page-home .home-data__card:hover{
  transform: translateY(-5px);
  box-shadow: var(--shadow-pop);
}
.page-home .home-data__card::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-gold));
  border-radius: 0 4px 4px 0;
}
.page-home .home-data__card--gold{
  border-color: rgba(255,215,0,.55);
  box-shadow: 0 12px 34px rgba(10,31,68,.1);
}
.page-home .home-data__card--gold::after{
  width: 100%;
}
.page-home .home-data__index{
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  color: rgba(10,31,68,.09);
}
.page-home .home-data__card h3{
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.25;
  letter-spacing: .5px;
  margin: 8px 0 14px;
  padding-right: 44px;
}
.page-home .home-data__lead{
  color: var(--c-muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 18px;
}
.page-home .home-data__list{
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.page-home .home-data__list li{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--c-muted);
  border-bottom: 1px dashed rgba(10,31,68,.1);
  padding-bottom: 8px;
}
.page-home .home-data__list strong{
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--c-primary);
  font-size: 17px;
}
.page-home .home-data__link{
  display: inline-block;
  font-weight: 700;
  color: var(--c-accent);
  text-decoration: none;
}
.page-home .home-data__link:hover{
  color: var(--c-primary);
}
.page-home .home-data__tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}
.page-home .home-fee{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin: 18px 0 14px;
}
.page-home .home-fee__donut{
  width: 156px;
  height: 156px;
  border-radius: 50%;
  background: conic-gradient(var(--c-accent) 0deg 12.6deg, var(--c-ash) 12.6deg 360deg);
  display: grid;
  place-items: center;
  position: relative;
  flex: 0 0 156px;
}
.page-home .home-fee__donut::before{
  content: "";
  position: absolute;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(10,31,68,.05);
}
.page-home .home-fee__donut-hole{
  position: relative;
  z-index: 1;
  text-align: center;
}
.page-home .home-fee__donut-hole span{
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--c-primary);
  line-height: 1;
}
.page-home .home-fee__donut-hole small{
  font-size: 12px;
  color: var(--c-muted);
}
.page-home .home-fee__note{
  max-width: 220px;
  background: var(--c-ash);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-weight: 700;
  font-size: 14px;
  color: var(--c-primary);
  cursor: help;
  position: relative;
}
.page-home .home-fee__tip{
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 240px;
  max-width: 70vw;
  background: var(--c-primary);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 400;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease;
  box-shadow: var(--shadow-pop);
  z-index: 5;
}
.page-home .home-fee__note:hover .home-fee__tip,
.page-home .home-fee__note:focus-visible .home-fee__tip{
  opacity: 1;
  transform: translateY(0);
}
.page-home .home-flow{
  display: grid;
  gap: 20px;
  margin-top: 8px;
}
.page-home .home-flow__info{
  order: 1;
}
.page-home .home-flow__chart-wrap{
  order: 2;
  background: var(--c-ash);
  border-radius: var(--radius-md);
  padding: 18px 16px 12px;
}
.page-home .home-flow__chart{
  display: block;
  width: 100%;
  height: auto;
}
.page-home .home-flow__labels{
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: var(--c-muted);
  padding-top: 8px;
}
.page-home .home-flow__figure{
  order: 3;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.page-home .home-flow__figure img{
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-home .home-plan__quantity{
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--c-primary);
  line-height: 1;
  margin: 4px 0 18px;
  padding: 8px 16px;
  border-left: 6px solid var(--c-gold);
  background: linear-gradient(90deg, rgba(255,215,0,.16), transparent);
}
.page-home .home-plan__quantity small{
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--c-muted);
}
.page-home .home-updates{
  background: var(--c-ivory);
  padding: 64px 0;
}
.page-home .home-updates__layout{
  display: grid;
  gap: 36px;
}
.page-home .home-updates__feed{
  border-left: 2px solid var(--c-ash);
  padding-left: 24px;
}
.page-home .home-updates__item{
  position: relative;
  padding-bottom: 28px;
}
.page-home .home-updates__item:last-child{
  padding-bottom: 0;
}
.page-home .home-updates__item::before{
  content: "";
  position: absolute;
  left: -29px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 5px rgba(255,107,53,.18);
}
.page-home .home-updates__item h3{
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.3;
  margin: 10px 0 8px;
}
.page-home .home-updates__item h3 a{
  color: var(--c-text);
  text-decoration: none;
}
.page-home .home-updates__item h3 a:hover{
  color: var(--c-accent);
}
.page-home .home-updates__item p{
  color: var(--c-muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
.page-home .home-milestones{
  align-self: start;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-pop);
}
.page-home .home-milestones::after{
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 20px solid rgba(255,215,0,.13);
}
.page-home .home-milestones__kicker{
  margin: 0;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-gold);
}
.page-home .home-milestones__list{
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
}
.page-home .home-milestones__list li{
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.page-home .home-milestones__list li:last-child{
  border-bottom: 0;
}
.page-home .home-milestones__list span{
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--c-gold);
  width: 52px;
}
.page-home .home-milestones__list p{
  margin: 0;
  font-size: 15px;
  color: #eef3fb;
}
.page-home .home-teams{
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, var(--c-primary) 0%, var(--c-primary-light) 54%, #0A1F44 100%);
  color: #fff;
  padding: 64px 0;
}
.page-home .home-teams::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-accent), transparent);
}
.page-home .home-teams .section__kicker{
  color: var(--c-gold);
}
.page-home .home-teams .section__desc{
  color: #cdd8f0;
}
.page-home .home-teams__layout{
  display: grid;
  gap: 20px;
  margin-top: 36px;
}
.page-home .home-teams__block{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.page-home .home-teams__block h3{
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--c-gold);
}
.page-home .home-teams__block ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.page-home .home-teams__block li{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: 10px;
}
.page-home .home-teams__block li:last-child{
  border-bottom: 0;
}
.page-home .home-teams__block a{
  color: #eef3fb;
  text-decoration: none;
}
.page-home .home-teams__block a:hover{
  color: var(--c-accent);
}
.page-home .home-teams__count{
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--c-accent);
}
.page-home .home-teams__note{
  margin: 16px 0 0;
  font-size: 13px;
  color: #c9d4f0;
  border-left: 2px solid var(--c-gold);
  padding-left: 14px;
}
.page-home .home-teams__figure{
  grid-column: 1 / -1;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.page-home .home-teams__figure img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 3;
}
.page-home .home-archive{
  padding: 64px 0;
}
.page-home .home-archive__grid{
  display: grid;
  gap: 18px;
}
.page-home .archive-card{
  display: block;
  position: relative;
  background: #fff;
  border: 1px solid rgba(10,31,68,.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: var(--c-text);
  transition: transform .3s ease, box-shadow .3s ease;
}
.page-home .archive-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-gold));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.page-home .archive-card:hover{
  transform: translateY(-5px);
  box-shadow: var(--shadow-pop);
}
.page-home .archive-card h3{
  font-family: var(--font-display);
  font-size: 21px;
  margin: 10px 0 10px;
}
.page-home .archive-card p{
  color: var(--c-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 18px;
}
.page-home .archive-card span{
  font-weight: 700;
  color: var(--c-accent);
  font-size: 15px;
}
.page-home .home-help{
  background: var(--c-ash);
  padding: 64px 0;
}
.page-home .home-help__inner{
  display: grid;
  gap: 28px;
  align-items: center;
}
.page-home .home-help__copy h2{
  margin: 8px 0 14px;
}
.page-home .home-help__copy p{
  color: var(--c-muted);
}
.page-home .home-help__contacts{
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  border-top: 1px solid rgba(10,31,68,.1);
  padding-top: 22px;
}
.page-home .home-help__contacts li{
  display: grid;
  gap: 3px;
}
.page-home .home-help__contacts strong{
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--c-terra);
}
.page-home .home-help__contacts span,
.page-home .home-help__contacts a{
  color: var(--c-text);
  font-size: 15px;
}
.page-home .home-help__actions{
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
  border-radius: var(--radius-lg);
  padding: 28px;
  color: #fff;
  box-shadow: var(--shadow-pop);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.page-home .home-help__eyebrow{
  margin: 0 0 4px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-gold);
}
.page-home .home-help__actions p{
  margin: 4px 0 0;
  color: #cdd8f0;
  font-size: 14px;
  line-height: 1.6;
}
.page-home .home-trust{
  padding: 64px 0;
}
.page-home .home-trust__grid{
  display: grid;
  gap: 28px;
  align-items: center;
}
.page-home .home-trust__copy h2{
  margin: 8px 0 16px;
}
.page-home .home-trust__copy > p{
  color: var(--c-muted);
  line-height: 1.7;
}
.page-home .home-trust__copy ul{
  list-style: none;
  margin: 22px 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.page-home .home-trust__copy li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--c-text);
  font-size: 15px;
}
.page-home .home-trust__copy li::before{
  content: "◆";
  color: var(--c-gold);
  font-size: 12px;
  line-height: 1.7;
}
.page-home .home-trust__figure{
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-pop);
}
.page-home .home-trust__figure img{
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  aspect-ratio: 2 / 1;
}
@media (min-width: 760px){
  .page-home .home-data__grid{
    grid-template-columns: repeat(12, 1fr);
  }
  .page-home .home-data__card--span-5{
    grid-column: span 5;
  }
  .page-home .home-data__card--span-7{
    grid-column: span 7;
  }
  .page-home .home-data__card--span-6{
    grid-column: span 6;
  }
  .page-home .home-data__card--wide{
    grid-column: 1 / -1;
  }
  .page-home .home-flow{
    grid-template-columns: .9fr 1.1fr;
  }
  .page-home .home-flow__figure{
    grid-column: 1 / -1;
  }
  .page-home .home-teams__layout{
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .home-teams__figure{
    grid-column: 1 / -1;
  }
  .page-home .home-archive__grid{
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home .home-trust__grid{
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  }
}
@media (min-width: 960px){
  .page-home .home-flow{
    grid-template-columns: .85fr 1.25fr .8fr;
  }
  .page-home .home-flow__figure{
    grid-column: auto;
  }
  .page-home .home-updates__layout{
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    align-items: start;
  }
  .page-home .home-help__inner{
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  }
}
@media (min-width: 1024px){
  .page-home .home-hero{
    min-height: 720px;
  }
  .page-home .home-hero__content{
    max-width: 640px;
    margin-left: max(24px, calc((100vw - var(--container-w)) / 2));
    padding: 84px 36px 64px 0;
  }
  .page-home .home-hero__visual{
    left: 42%;
    right: 0;
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  }
  .page-home .home-hero__visual img{
    opacity: .55;
  }
  .page-home .home-hero__grid{
    right: -20px;
    bottom: -20px;
    width: min(38vw, 540px);
  }
  .page-home .home-data{
    padding: 84px 0;
  }
  .page-home .home-updates,
  .page-home .home-teams,
  .page-home .home-archive,
  .page-home .home-help,
  .page-home .home-trust{
    padding: 84px 0;
  }
}
