.page-home {
  --home-hero-min-height: 560px;
}

.page-home .breadcrumbs {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 20px 0;
  display: flex;
  gap: 10px;
  color: var(--gray-blue);
  font-size: .9rem;
}

.page-home .breadcrumbs a {
  color: var(--gold);
  text-decoration: none;
}

.page-home .breadcrumbs a:hover {
  text-decoration: underline;
}

.page-home .home-hero {
  padding: 32px 16px 72px;
}

.page-home .hero-frame {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px;
}

.page-home .hero-frame-body {
  position: relative;
  min-height: var(--home-hero-min-height);
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

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

.page-home .hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-home .hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(11, 31, 58, .96) 0%, rgba(11, 31, 58, .82) 38%, rgba(11, 31, 58, .38) 100%);
}

.page-home .hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  width: 100%;
  padding: 48px 24px 32px;
}

.page-home .hero-copy .kicker {
  color: var(--gold);
  font-weight: 700;
}

.page-home .hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.05;
  color: var(--white);
  margin: 16px 0 20px;
  max-width: 8em;
}

.page-home .hero-copy .lede {
  color: rgba(255, 255, 255, .88);
  font-size: 1.04rem;
  line-height: 1.85;
  max-width: 560px;
}

.page-home .hero-copy .lede strong {
  color: var(--gold);
  font-weight: 700;
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 30px;
}

.page-home .hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page-home .hero-meta-item dt {
  color: var(--gray-blue);
  font-size: .82rem;
}

.page-home .hero-meta-item dd {
  margin: 0;
  color: var(--gold);
  font-size: 1.15rem;
  line-height: 1.4;
}

.page-home .hero-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.page-home .mini-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 8px 20px;
  background: rgba(212, 168, 67, .12);
  color: var(--gold);
  font-weight: 700;
  font-size: .94rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background .25s, transform .25s;
}

.page-home .mini-pill:hover {
  background: rgba(212, 168, 67, .26);
  transform: translateY(-2px);
}

.page-home .mini-device {
  margin: 0;
  width: 120px;
}

.page-home .mini-device img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(212, 168, 67, .6);
}

.page-home .mini-device figcaption {
  margin-top: 8px;
  font-size: .82rem;
  color: var(--gray-blue);
  line-height: 1.5;
}

.page-home .home-dashboard {
  position: relative;
  overflow: hidden;
  padding: 72px 0 80px;
  background-color: var(--teal);
}

.page-home .dash-bg {
  position: absolute;
  inset: 0;
  opacity: .14;
  pointer-events: none;
}

.page-home .dash-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .dash-rings {
  display: none;
}

.page-home .dash-content {
  position: relative;
  z-index: 2;
}

.page-home .section-head {
  margin-bottom: 32px;
  max-width: 680px;
}

.page-home .section-head .kicker {
  color: var(--gold);
  font-weight: 700;
}

.page-home .section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.15;
  margin: 10px 0 14px;
  color: var(--white);
}

.page-home .section-head--row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  max-width: 100%;
}

.page-home .home-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 36px 0 28px;
}

.page-home .home-stats .stat-block {
  background: rgba(255, 255, 255, .07);
  border-left: 3px solid var(--gold);
  padding: 26px 22px;
}

.page-home .home-stats .stat-label {
  color: var(--gray-blue);
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.page-home .home-stats .stat-value {
  display: block;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 2.4rem;
  line-height: 1.2;
  margin: 10px 0 6px;
}

.page-home .home-stats .stat-trend {
  color: rgba(255, 255, 255, .74);
  font-size: .88rem;
  line-height: 1.55;
}

.page-home .dashboard-note {
  display: inline-block;
  color: rgba(255, 255, 255, .84);
  background: rgba(11, 31, 58, .38);
  border-radius: 6px;
  padding: 14px 18px;
  margin-top: 4px;
  font-size: .92rem;
}

.page-home .home-paths {
  background-color: var(--paper);
  padding: 72px 0 84px;
}

.page-home .home-paths .section-head h2 {
  color: var(--navy);
}

.page-home .home-paths .lede {
  color: #3A4B58;
}

.page-home .paths-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.page-home .home-tree {
  list-style: none;
  margin: 44px 0 0;
  padding: 0;
  position: relative;
}

.page-home .home-tree::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold) 70%, transparent 100%);
}

.page-home .tree-node {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  padding: 10px 0 36px;
}

.page-home .tree-node:last-child {
  padding-bottom: 4px;
}

.page-home .tree-index {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  transition: background .25s, color .25s, transform .25s;
}

.page-home .tree-node:hover .tree-index {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.08);
}

.page-home .tree-card {
  padding-top: 4px;
}

.page-home .tree-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  margin: 0 0 8px;
}

.page-home .tree-card p {
  color: #3A4B58;
  line-height: 1.7;
  font-size: .96rem;
  margin: 0 0 14px;
}

.page-home .paths-figure {
  margin: 0;
  align-self: center;
  text-align: center;
}

.page-home .paths-figure img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.page-home .paths-figure figcaption {
  margin-top: 12px;
  font-family: var(--font-mono);
  color: var(--slate);
  font-size: .85rem;
}

.page-home .home-journal {
  background-color: var(--navy);
  padding: 72px 0 80px;
}

.page-home .home-news {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}

.page-home .news-card {
  padding: 32px;
  border-top: 3px solid var(--gold);
}

.page-home .news-card h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.25rem;
  margin: 16px 0 12px;
}

.page-home .news-card h3 a {
  color: inherit;
  text-decoration: none;
}

.page-home .news-card h3 a:hover {
  text-decoration: underline;
  text-decoration-color: var(--gold);
}

.page-home .news-card p {
  color: #3A4B58;
  line-height: 1.7;
  font-size: .95rem;
  margin: 0 0 18px;
}

.page-home .home-support {
  background-color: var(--paper);
  padding: 64px 0 80px;
}

.page-home .home-support .section-head h2 {
  color: var(--navy);
}

.page-home .support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}

.page-home .support-card {
  padding: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .56);
  border: 1px solid rgba(11, 31, 58, .08);
}

.page-home .support-card h3 {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 12px;
}

.page-home .support-card p {
  color: #3A4B58;
  line-height: 1.7;
  font-size: .95rem;
  margin: 0 0 20px;
}

.page-home .support-card .mono {
  color: var(--navy);
  font-weight: 700;
}

.page-home .support-iso {
  margin-top: 32px;
  text-align: center;
  color: var(--gray-blue);
  font-size: .82rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .page-home .home-stats {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (min-width: 1024px) {
  .page-home .home-hero {
    padding: 44px 24px 88px;
  }

  .page-home .hero-frame {
    padding: 22px;
  }

  .page-home .hero-frame-body {
    min-height: 640px;
  }

  .page-home .hero-grid {
    grid-template-columns: 1.4fr 300px;
    padding: 72px 56px;
    gap: 48px;
  }

  .page-home .hero-copy h1 {
    max-width: 10em;
  }

  .page-home .mini-device {
    width: 150px;
  }

  .page-home .dash-rings {
    display: block;
    position: absolute;
    right: -80px;
    top: 40px;
    width: 420px;
    height: 200px;
    opacity: .22;
    pointer-events: none;
  }

  .page-home .home-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .page-home .paths-layout {
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    align-items: start;
  }

  .page-home .section-head {
    margin-bottom: 36px;
  }
}

@media (min-width: 1280px) {
  .page-home .hero-frame-body {
    min-height: 680px;
  }
}
