.page-home{
  background:
    radial-gradient(ellipse 90% 70% at 85% -5%, rgba(139,92,246,.14), transparent 60%),
    radial-gradient(ellipse 70% 50% at 5% 35%, rgba(21,27,49,.45), transparent 70%),
    var(--color-space-void);
}

.page-home .hero-zone{
  position: relative;
  padding: 1rem 0 3rem;
  overflow: hidden;
}

.page-home .hero-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-home .hero-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .4;
  display: block;
}

.page-home .hero-bg-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,12,26,.72) 0%, rgba(11,12,26,.25) 45%, rgba(11,12,26,.9) 100%);
}

.page-home .hero-inner{
  position: relative;
  z-index: 2;
  padding-top: 1.5rem;
}

.page-home .hero-breadcrumb{
  margin-bottom: 1rem;
}

.page-home .hero-eyebrow{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.page-home .hero-kicker{
  font-family: var(--font-title);
  font-size: .6875rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-orbit-slate);
}

.page-home .hero-title{
  margin: 0 0 1.25rem;
  font-family: var(--font-title);
  font-size: var(--font-size-hero);
  font-weight: 200;
  line-height: 1.08;
  letter-spacing: .02em;
  color: var(--color-icy-white);
  max-width: 1000px;
}

.page-home .hero-glow-line{
  display: block;
  color: var(--color-star-gold);
  text-shadow: 0 0 42px rgba(247,180,51,.38), 0 0 12px rgba(247,180,51,.28);
}

.page-home .hero-intro{
  max-width: 640px;
  margin: 0 0 1.5rem;
  color: var(--color-orbit-slate);
  font-size: 1.0625rem;
  line-height: 1.8;
}

.page-home .hero-notes{
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.page-home .hero-note-text{
  color: var(--color-orbit-slate);
  font-size: .9375rem;
}

.page-home .orbit-section{
  position: relative;
  z-index: 1;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--color-line-faint);
  border-bottom: 1px solid var(--color-line-faint);
  background:
    radial-gradient(ellipse at 12% 40%, rgba(139,92,246,.12), transparent 55%),
    radial-gradient(ellipse at 88% 20%, rgba(247,180,51,.08), transparent 45%);
}

.page-home .orbit-frame{
  position: relative;
}

.page-home .orbit-svg{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 100%;
  min-height: 320px;
  pointer-events: none;
  opacity: .65;
}

.page-home .orbit-path{
  fill: none;
  stroke: var(--color-star-gold);
  stroke-width: 1.5;
  stroke-dasharray: 3 9;
  stroke-linecap: round;
}

.page-home .orbit-star{
  fill: var(--color-star-gold);
}

.page-home .orbit-star--b,
.page-home .orbit-star--d{
  fill: var(--color-nebula-violet);
}

.page-home .orbit-cards{
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.page-home .orbit-card{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: 1.5rem 1.25rem;
  background: rgba(21,27,49,.85);
  border: 1px solid var(--color-line-faint);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--color-icy-white);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.page-home .orbit-card::before{
  content: "";
  position: absolute;
  top: .75rem;
  right: .75rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-star-gold);
  box-shadow: 0 0 12px rgba(247,180,51,.8);
  opacity: .8;
}

.page-home .orbit-card:hover{
  transform: translateY(-4px);
  border-color: var(--color-star-gold);
  box-shadow: var(--shadow-md), 0 0 22px rgba(247,180,51,.14);
}

.page-home .orbit-card--nav:hover{
  border-color: rgba(139,92,246,.85);
  box-shadow: var(--shadow-md), 0 0 22px rgba(139,92,246,.16);
}

.page-home .orbit-card--sub:hover{
  border-color: rgba(45,212,191,.8);
  box-shadow: var(--shadow-md), 0 0 22px rgba(45,212,191,.14);
}

.page-home .orbit-card--data:hover{
  border-color: rgba(255,122,89,.8);
  box-shadow: var(--shadow-md), 0 0 22px rgba(255,122,89,.14);
}

.page-home .orbit-card-no{
  font-family: var(--font-title);
  font-size: .75rem;
  letter-spacing: .2em;
  color: var(--color-orbit-slate);
}

.page-home .orbit-card-title{
  margin: .5rem 0 0;
  font-size: 1.125rem;
  line-height: 1.4;
  color: var(--color-icy-white);
}

.page-home .orbit-card-desc{
  margin: 0;
  color: var(--color-orbit-slate);
  font-size: .875rem;
  line-height: 1.6;
}

.page-home .orbit-card-link{
  margin-top: .75rem;
  color: var(--color-star-gold);
  font-size: .8125rem;
  letter-spacing: .04em;
}

.page-home .doc-lede{
  padding: 4rem 0;
}

.page-home .doc-layout{
  display: grid;
  gap: 2.5rem;
}

.page-home .doc-copy,
.page-home .sub-copy,
.page-home .recovery-heading{
  position: relative;
}

.page-home .doc-index{
  position: absolute;
  top: -.5rem;
  right: 0;
  font-family: var(--font-title);
  font-size: 4.5rem;
  font-weight: 200;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(139,92,246,.4);
  pointer-events: none;
}

.page-home .section-title{
  margin: .75rem 0 1.25rem;
  font-family: var(--font-title);
  font-size: var(--font-size-h2);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-icy-white);
}

.page-home .section-desc{
  margin: 0 0 1.5rem;
  color: var(--color-orbit-slate);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 56ch;
}

.page-home .doc-list{
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  gap: .75rem;
}

.page-home .doc-list li{
  display: flex;
  align-items: baseline;
  gap: .75rem;
  padding: .75rem 0 .9rem;
  border-bottom: 1px solid var(--color-line-faint);
  color: var(--color-orbit-slate);
  font-size: .9375rem;
}

.page-home .doc-list strong{
  color: var(--color-icy-white);
  font-weight: 600;
  min-width: 6.5em;
}

.page-home .doc-visual,
.page-home .sub-visual,
.page-home .recovery-visual{
  border: 1px solid var(--color-line-faint);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(21,27,49,.4);
}

.page-home .doc-visual img,
.page-home .sub-visual img,
.page-home .recovery-visual img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .sub-lede{
  padding: 4rem 0;
  border-top: 1px solid var(--color-line-faint);
  border-bottom: 1px solid var(--color-line-faint);
  background:
    radial-gradient(ellipse at 15% 30%, rgba(139,92,246,.1), transparent 55%),
    linear-gradient(180deg, var(--color-cosmic-surface), rgba(11,12,26,.2));
}

.page-home .sub-layout{
  display: grid;
  gap: 2.5rem;
}

.page-home .sub-cats{
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.75rem;
}

.page-home .recovery-lede{
  padding: 4rem 0;
}

.page-home .recovery-heading{
  margin-bottom: 2.5rem;
}

.page-home .recovery-heading .section-desc{
  max-width: 640px;
}

.page-home .recovery-grid{
  display: grid;
  gap: 2rem;
}

.page-home .recovery-content{
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.page-home .recovery-steps{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .85rem;
  counter-reset: rstep;
}

.page-home .recovery-steps li{
  position: relative;
  display: grid;
  grid-template-columns: 2.5em 1fr;
  column-gap: .75rem;
  counter-increment: rstep;
  padding: .9rem 1rem;
  background: rgba(21,27,49,.5);
  border: 1px solid var(--color-line-faint);
  border-radius: var(--radius-md);
  color: var(--color-orbit-slate);
  font-size: .9375rem;
  line-height: 1.65;
}

.page-home .recovery-steps li::before{
  content: counter(rstep, decimal-leading-zero);
  font-family: var(--font-title);
  font-size: .75rem;
  letter-spacing: .1em;
  color: var(--color-star-gold);
  line-height: 1.8;
}

.page-home .recovery-steps strong{
  color: var(--color-icy-white);
  font-weight: 600;
}

.page-home .recovery-steps span{
  display: block;
}

.page-home .recovery-accordion{
  border-top: 1px solid var(--color-line-faint);
}

.page-home .recovery-accordion .accordion-item{
  border-bottom: 1px solid var(--color-line-faint);
}

.page-home .recovery-accordion .accordion-toggle{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem .25rem;
  background: transparent;
  border: 0;
  color: var(--color-icy-white);
  font-size: .9375rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.page-home .recovery-accordion .accordion-toggle:hover{
  color: var(--color-star-gold);
}

.page-home .recovery-accordion .accordion-panel{
  padding: 0 .25rem 1rem;
}

.page-home .recovery-accordion .accordion-panel p{
  margin: 0;
  color: var(--color-orbit-slate);
  font-size: .875rem;
  line-height: 1.7;
}

.page-home .home-news{
  padding: 4rem 0 3rem;
}

.page-home .news-head{
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.page-home .news-head .section-title{
  margin-bottom: 0;
}

.page-home .news-list{
  border-top: 1px solid var(--color-line-faint);
}

.page-home .news-item{
  display: grid;
  gap: .75rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--color-line-faint);
}

.page-home .news-tag{
  justify-self: start;
}

.page-home .news-body{
  min-width: 0;
}

.page-home .news-title{
  margin: 0 0 .5rem;
  font-size: 1.125rem;
  line-height: 1.45;
  color: var(--color-icy-white);
}

.page-home .news-excerpt{
  margin: 0;
  color: var(--color-orbit-slate);
  font-size: .9375rem;
  line-height: 1.7;
  max-width: 72ch;
}

.page-home .news-more{
  justify-self: start;
  color: var(--color-star-gold);
  font-size: .875rem;
  text-decoration: none;
  border-bottom: 1px dashed rgba(247,180,51,.5);
}

.page-home .news-more:hover{
  border-bottom-color: var(--color-star-gold);
}

.page-home .update-progress{
  margin-top: 3rem;
  padding: 2rem 1.5rem;
  border: 1px solid var(--color-line-faint);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(139,92,246,.1), transparent),
    var(--color-cosmic-surface);
}

.page-home .update-progress-title{
  margin: 0;
  font-family: var(--font-title);
  font-size: .8125rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-icy-white);
}

.page-home .update-progress-track{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2.25rem;
  margin-top: 1.5rem;
}

.page-home .progress-node{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--color-icy-white);
  font-size: .875rem;
}

.page-home .progress-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-star-gold);
  box-shadow: 0 0 12px rgba(247,180,51,.75);
}

.page-home .progress-node:not(:last-child)::after{
  content: "";
  position: absolute;
  left: calc(100% + 1.125rem);
  top: 50%;
  width: 1.125rem;
  height: 1px;
  background: rgba(247,180,51,.35);
}

.page-home .update-progress-note{
  margin: 1.25rem 0 0;
  color: var(--color-orbit-slate);
  font-size: .875rem;
}

.page-home .help-cta{
  padding: 0;
  border-top: 1px solid var(--color-line-faint);
  background:
    radial-gradient(ellipse at 85% 15%, rgba(139,92,246,.2), transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(247,180,51,.08), transparent 45%),
    var(--color-space-void);
}

.page-home .help-inner{
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 4rem 0;
}

.page-home .help-copy .section-desc{
  max-width: 680px;
  margin-bottom: 0;
}

.page-home .help-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 959px){
  .page-home .orbit-svg{
    display: none;
  }
}

@media (min-width: 720px){
  .page-home .orbit-cards{
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .page-home .doc-layout,
  .page-home .sub-layout{
    grid-template-columns: 1fr 1fr;
    align-items: center;
    column-gap: 2.5rem;
  }

  .page-home .sub-visual{
    order: 1;
  }

  .page-home .sub-copy{
    order: 2;
  }

  .page-home .recovery-grid{
    grid-template-columns: 1fr 1fr;
    align-items: center;
    column-gap: 2.5rem;
  }

  .page-home .doc-index{
    font-size: 6rem;
  }

  .page-home .news-item{
    grid-template-columns: 130px minmax(0,1fr) auto;
    align-items: start;
    column-gap: 1.5rem;
  }

  .page-home .news-more{
    justify-self: end;
    padding-top: .25rem;
  }

  .page-home .help-inner{
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .page-home .help-copy{
    flex: 1 1 auto;
  }

  .page-home .help-actions{
    flex: 0 0 auto;
  }
}

@media (min-width: 960px){
  .page-home .hero-zone{
    padding-top: 2rem;
  }

  .page-home .orbit-cards{
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }

  .page-home .orbit-card:nth-child(1){
    margin-top: 2.25rem;
  }

  .page-home .orbit-card:nth-child(2){
    margin-top: .25rem;
  }

  .page-home .orbit-card:nth-child(3){
    margin-top: 2.75rem;
  }

  .page-home .orbit-card:nth-child(4){
    margin-top: 1rem;
  }

  .page-home .orbit-svg{
    display: block;
  }
}
