@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../webfonts/fa-regular-400.woff2") format("woff2");
}

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../webfonts/fa-solid-900.woff2") format("woff2");
}

.district-hubs-page {
  --dh-ink: #221e1e;
  --dh-green: #01614d;
  --dh-green-dark: #004c3d;
  --dh-green-soft: #e6f1ed;
  --dh-yellow: #f4b300;
  --dh-paper: #fdfdfe;
  --dh-off-white: #f4f4f6;
  --dh-blue-soft: #edf4f6;
  --dh-line: #d9dddc;
  --dh-muted: #5f6663;
  min-width: 0;
  overflow-x: clip;
  background: var(--dh-paper);
  color: var(--dh-ink);
  font-family: "General Sans", Arial, sans-serif;
  line-height: 1.5;
}

.district-hubs-page :is(#experience, #how-it-works, #school-partners, #faq, #preview) {
  scroll-margin-top: 80px;
}

.district-hubs-page,
.district-hubs-page * {
  box-sizing: border-box;
}

.district-hubs-page h1,
.district-hubs-page h2,
.district-hubs-page h3,
.district-hubs-page p,
.district-hubs-page ol,
.district-hubs-page ul,
.district-hubs-page figure {
  margin: 0;
}

.district-hubs-page a {
  color: inherit;
  text-decoration: none;
}

.district-hubs-page button,
.district-hubs-page input,
.district-hubs-page select,
.district-hubs-page textarea {
  font: inherit;
}

.district-hubs-page img {
  display: block;
  max-width: 100%;
}

.dh-shell {
  width: min(1200px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.dh-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 12px 16px;
  border-radius: 6px;
  background: var(--dh-yellow);
  color: var(--dh-ink);
  font-size: 14px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.dh-skip-link:focus {
  transform: translateY(0);
}

.dh-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 64px;
  border-bottom: 1px solid rgba(34, 30, 30, 0.1);
  background: rgba(253, 253, 254, 0.96);
  backdrop-filter: blur(18px);
}

.dh-header__inner {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) auto;
  align-items: center;
  width: min(1392px, calc(100% - 48px));
  min-height: 64px;
  gap: 24px;
}

.dh-logo,
.dh-footer__logo {
  display: inline-flex;
  width: fit-content;
  align-items: center;
}

.dh-logo img,
.dh-footer__logo img {
  width: 142px;
  height: auto;
}

.dh-header__nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 15px;
  font-weight: 560;
}

.dh-header__nav a,
.dh-header__login {
  position: relative;
  padding: 10px 0;
  color: #302d2d;
  transition: color 160ms ease;
}

.dh-header__nav a:hover,
.dh-header__nav a:focus-visible,
.dh-header__login:hover,
.dh-header__login:focus-visible {
  color: var(--dh-green);
}

.dh-header__nav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--dh-green);
  content: "";
}

.dh-header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.dh-header__login {
  font-size: 15px;
  font-weight: 600;
}

.dh-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.dh-button--header {
  min-height: 40px;
  padding-right: 18px;
  padding-left: 18px;
  font-size: 14px;
}

.dh-button--yellow {
  border-color: var(--dh-yellow);
  background: var(--dh-yellow);
  color: var(--dh-ink);
}

.dh-button--yellow:hover,
.dh-button--yellow:focus-visible {
  border-color: #ffd053;
  background: #ffd053;
}

.dh-button--outline-light {
  border-color: rgba(255, 255, 255, 0.75);
  background: transparent;
  color: #fff;
}

.dh-button--outline-light:hover,
.dh-button--outline-light:focus-visible {
  border-color: #fff;
  background: #fff;
  color: var(--dh-green-dark);
}

.dh-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfd5d3;
  border-radius: 6px;
  background: #fff;
  color: var(--dh-ink);
  cursor: pointer;
}

.dh-mobile-nav {
  padding: 0 24px 24px;
  border-top: 1px solid var(--dh-line);
  background: #fff;
}

.dh-mobile-nav a:not(.dh-button) {
  display: flex;
  min-height: 48px;
  align-items: center;
  border-bottom: 1px solid #eceeed;
  font-size: 16px;
  font-weight: 600;
}

.dh-mobile-nav .dh-button {
  width: 100%;
  margin-top: 16px;
}

.dh-eyebrow {
  color: var(--dh-green);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.dh-eyebrow--hero {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.14em;
}

.dh-hero {
  overflow: hidden;
  background: var(--dh-green-dark);
  color: #fff;
  padding-top: 28px;
}

.dh-hero__copy {
  display: flex;
  max-width: 1100px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.dh-hero h1 {
  width: 100%;
  max-width: 1100px;
  margin-top: 8px;
  font-size: 38px;
  font-weight: 680;
  letter-spacing: 0;
  line-height: 1.04;
  text-wrap: balance;
  white-space: nowrap;
}

.dh-hero__lede {
  max-width: 680px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Recia", Georgia, serif;
  font-size: 16px;
  line-height: 1.4;
  text-wrap: pretty;
}

.dh-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.dh-product-stage {
  margin-top: 25px;
}

.dh-product-stage__label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.dh-product-stage__label span {
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.dh-product-stage__label small {
  color: rgba(255, 255, 255, 0.65);
  font-family: "Recia", Georgia, serif;
  font-size: 13px;
}

.dh-product-stage__frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: #fff;
  box-shadow: 0 28px 60px rgba(0, 25, 20, 0.3);
}

.dh-product-stage__desktop {
  width: 100%;
  height: 416px;
  object-fit: cover;
  object-position: top center;
}

.dh-product-stage__mobile {
  display: none;
}

.dh-product-stage figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 10px 16px;
  border-top: 1px solid #e5e8e7;
  background: rgba(255, 255, 255, 0.94);
  color: #626865;
  font-size: 12px;
  text-align: center;
}

.dh-photo-strip {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.15fr 1.25fr 0.9fr;
  width: 100%;
  height: 156px;
  overflow: hidden;
  background: var(--dh-ink);
}

.dh-photo-strip img {
  width: 100%;
  height: 156px;
  object-fit: cover;
}

.dh-photo-strip img + img {
  border-left: 2px solid var(--dh-paper);
}

.dh-process,
.dh-pilot,
.dh-faq {
  padding: 96px 0;
  background: var(--dh-paper);
}

.dh-process {
  padding-top: 32px;
}

.dh-process h2,
.dh-pilot h2,
.dh-partners h2,
.dh-network h2,
.dh-faq h2,
.dh-preview h2,
.dh-ownership h2,
.dh-student h2 {
  margin-top: 14px;
  font-size: 48px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.08;
  text-wrap: balance;
}

.dh-process > .dh-shell > h2 {
  max-width: 820px;
}

.dh-section-intro {
  max-width: 650px;
  margin-top: 20px !important;
  color: var(--dh-muted);
  font-family: "Recia", Georgia, serif;
  font-size: 18px;
  line-height: 1.6;
}

.dh-process__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px !important;
  border-top: 1px solid var(--dh-line);
  border-bottom: 1px solid var(--dh-line);
  list-style: none;
}

.dh-process__steps li {
  position: relative;
  min-height: 264px;
  padding: 28px 26px 32px;
}

.dh-process__steps li + li {
  border-left: 1px solid var(--dh-line);
}

.dh-process__number {
  display: block;
  color: var(--dh-green);
  font-family: "Recia", Georgia, serif;
  font-size: 15px;
  font-weight: 600;
}

.dh-process__steps h3 {
  margin-top: 46px;
  font-size: 22px;
  font-weight: 650;
  line-height: 1.2;
}

.dh-process__steps p {
  margin-top: 10px;
  color: var(--dh-muted);
  font-family: "Recia", Georgia, serif;
  font-size: 15px;
  line-height: 1.5;
}

.dh-ownership {
  padding: 100px 0;
  background: var(--dh-off-white);
}

.dh-ownership__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  column-gap: 72px;
  align-items: end;
}

.dh-ownership__heading .dh-eyebrow {
  grid-column: 1 / -1;
}

.dh-ownership__heading h2 {
  max-width: 650px;
}

.dh-ownership__heading > p:last-child {
  max-width: 500px;
  padding-bottom: 5px;
  color: var(--dh-muted);
  font-family: "Recia", Georgia, serif;
  font-size: 17px;
  line-height: 1.65;
}

.dh-ownership__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid #cdd3d1;
  border-bottom: 1px solid #cdd3d1;
}

.dh-ownership__columns article {
  padding: 38px 40px 42px 0;
}

.dh-ownership__columns article + article {
  border-left: 1px solid #cdd3d1;
  padding-right: 0;
  padding-left: 40px;
}

.dh-ownership__kicker {
  color: var(--dh-green);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.dh-ownership__kicker--yellow {
  color: #97700a;
}

.dh-ownership__columns h3 {
  margin-top: 8px;
  font-size: 28px;
  font-weight: 650;
  line-height: 1.2;
}

.dh-ownership__columns ul {
  display: grid;
  gap: 14px;
  margin-top: 28px !important;
  padding: 0;
  list-style: none;
}

.dh-ownership__columns li {
  position: relative;
  padding-left: 22px;
  color: #3f4542;
  font-size: 16px;
}

.dh-ownership__columns li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--dh-green);
  content: "";
}

.dh-ownership__note {
  max-width: 830px;
  margin-top: 20px !important;
  color: #707673;
  font-size: 13px;
}

.dh-student {
  padding: 100px 0;
  background: var(--dh-ink);
  color: #fff;
}

.dh-student__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 72px;
  align-items: center;
}

.dh-student__copy > p:not(.dh-eyebrow) {
  max-width: 540px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Recia", Georgia, serif;
  font-size: 17px;
  line-height: 1.65;
}

.dh-student__copy ul {
  display: grid;
  gap: 18px;
  margin-top: 34px !important;
  padding: 0;
  list-style: none;
}

.dh-student__copy li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.dh-student__copy li > i {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: var(--dh-yellow);
  font-size: 17px;
}

.dh-student__copy li span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.dh-student__copy li strong {
  font-size: 16px;
  font-weight: 650;
}

.dh-student__copy li small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.62);
  font-family: "Recia", Georgia, serif;
  font-size: 14px;
}

.dh-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 34px;
  color: var(--dh-green);
  font-size: 15px;
  font-weight: 700;
}

.dh-text-link--light {
  color: var(--dh-yellow);
}

.dh-text-link:hover,
.dh-text-link:focus-visible,
.dh-pilot__callout a:hover,
.dh-pilot__callout a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.dh-student__visual {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
}

.dh-student__visual img {
  width: 100%;
  aspect-ratio: 1.38;
  object-fit: cover;
  object-position: top center;
}

.dh-student__visual figcaption {
  padding: 10px 14px;
  border-top: 1px solid #e5e8e7;
  color: #6a706d;
  font-size: 12px;
}

.dh-partners {
  padding: 84px 0 88px;
  border-top: 1px solid var(--dh-line);
  border-bottom: 1px solid var(--dh-line);
  background: var(--dh-off-white);
}

.dh-partners__inner {
  text-align: center;
}

.dh-partners__heading {
  display: grid;
  justify-items: center;
}

.dh-partners__heading .dh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dh-partners__heading .dh-eyebrow i {
  color: var(--dh-green);
  font-size: 14px;
}

.dh-partners h2 {
  max-width: 860px;
  margin-top: 16px;
  font-size: 40px;
}

.dh-partners__logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px;
  align-items: center;
  max-width: 860px;
  min-height: 96px;
  margin: 48px auto 0;
}

.dh-partners__logos img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 88px;
  justify-self: center;
  object-fit: contain;
}

.dh-partners__logos img:nth-child(2) {
  max-width: 230px;
  max-height: 64px;
}

.dh-pilot__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  column-gap: 72px;
  align-items: end;
}

.dh-pilot__heading .dh-eyebrow {
  grid-column: 1 / -1;
}

.dh-pilot__heading > p:last-child {
  max-width: 520px;
  padding-bottom: 4px;
  color: var(--dh-muted);
  font-family: "Recia", Georgia, serif;
  font-size: 17px;
  line-height: 1.65;
}

.dh-pilot__steps {
  display: grid;
  margin-top: 58px !important;
  padding: 0;
  border-top: 1px solid var(--dh-line);
  list-style: none;
}

.dh-pilot__steps li {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 26px;
  padding: 28px 0;
  border-bottom: 1px solid var(--dh-line);
}

.dh-pilot__steps li > span {
  color: var(--dh-green);
  font-family: "Recia", Georgia, serif;
  font-size: 30px;
  line-height: 1;
}

.dh-pilot__steps h3 {
  font-size: 22px;
  font-weight: 650;
}

.dh-pilot__steps p {
  max-width: 820px;
  margin-top: 8px;
  color: var(--dh-muted);
  font-family: "Recia", Georgia, serif;
  font-size: 16px;
}

.dh-pilot__callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
  padding: 24px 0;
  border-top: 3px solid var(--dh-yellow);
  border-bottom: 1px solid var(--dh-line);
}

.dh-pilot__callout p {
  color: var(--dh-muted);
  font-family: "Recia", Georgia, serif;
  font-size: 15px;
}

.dh-pilot__callout p strong {
  color: var(--dh-ink);
  font-family: "General Sans", Arial, sans-serif;
}

.dh-pilot__callout a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dh-green);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.dh-network {
  padding: 88px 0;
  background: var(--dh-blue-soft);
  text-align: center;
}

.dh-network h2 {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.dh-network__line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: calc(100% - 120px);
  height: 16px;
  margin: 48px auto 0;
}

.dh-network__line::before {
  position: absolute;
  top: 7px;
  right: 0;
  left: 0;
  height: 1px;
  background: #9cafaa;
  content: "";
}

.dh-network__line span {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--dh-green);
}

.dh-network__groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}

.dh-network__groups article {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 16px 30px;
  text-align: left;
}

.dh-network__groups article + article {
  border-left: 1px solid #cbd8d5;
}

.dh-network__groups > article > i {
  color: var(--dh-green);
  font-size: 32px;
}

.dh-network__groups h3 {
  font-size: 20px;
  font-weight: 650;
}

.dh-network__groups p {
  margin-top: 3px;
  color: var(--dh-muted);
  font-family: "Recia", Georgia, serif;
  font-size: 14px;
}

.dh-faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: 86px;
  align-items: start;
}

.dh-faq__heading {
  position: sticky;
  top: 118px;
}

.dh-faq__heading > p:last-child {
  max-width: 410px;
  margin-top: 20px;
  color: var(--dh-muted);
  font-family: "Recia", Georgia, serif;
  font-size: 16px;
  line-height: 1.65;
}

.dh-faq__items {
  border-top: 1px solid var(--dh-line);
}

.dh-faq details {
  border-bottom: 1px solid var(--dh-line);
}

.dh-faq summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 18px;
  align-items: center;
  min-height: 76px;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.dh-faq summary::-webkit-details-marker {
  display: none;
}

.dh-faq summary::after {
  justify-self: center;
  color: var(--dh-green);
  content: "+";
  font-size: 24px;
  font-weight: 450;
  line-height: 1;
  transition: transform 160ms ease;
}

.dh-faq details[open] summary::after {
  transform: rotate(45deg);
}

.dh-faq details p {
  max-width: 680px;
  padding: 0 50px 24px 0;
  color: var(--dh-muted);
  font-family: "Recia", Georgia, serif;
  font-size: 16px;
  line-height: 1.65;
}

.dh-preview {
  padding: 94px 0;
  border-top: 10px solid var(--dh-yellow);
  background: var(--dh-green-soft);
}

.dh-preview__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1.22fr);
  gap: 76px;
  align-items: start;
}

.dh-preview__copy {
  position: sticky;
  top: 118px;
  padding-top: 20px;
}

.dh-preview__copy > p:not(.dh-eyebrow) {
  max-width: 470px;
  margin-top: 22px;
  color: var(--dh-muted);
  font-family: "Recia", Georgia, serif;
  font-size: 17px;
  line-height: 1.65;
}

.dh-preview__copy ul {
  display: grid;
  gap: 12px;
  margin-top: 30px !important;
  padding: 0;
  list-style: none;
}

.dh-preview__copy li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 650;
}

.dh-preview__copy li::before {
  position: absolute;
  top: 6px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--dh-green);
  content: "";
}

.dh-preview__form-shell {
  min-width: 0;
  border: 1px solid #cbd6d2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(27, 56, 47, 0.1);
}

.dh-preview__form-shell form,
.dh-preview-success {
  padding: 38px;
}

.dh-form__heading h3,
.dh-preview-success h3 {
  margin-top: 8px;
  font-size: 30px;
  font-weight: 650;
  line-height: 1.15;
}

.dh-form__error-summary {
  margin-top: 22px;
  border-left: 3px solid #b42318;
  background: #fff2f0;
  padding: 12px 14px;
  color: #7a271a;
  font-size: 14px;
}

.dh-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin-top: 28px;
}

.dh-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.dh-field--full {
  grid-column: 1 / -1;
}

.dh-field label {
  margin-bottom: 7px;
  color: #343936;
  font-size: 13px;
  font-weight: 650;
}

.dh-field label span {
  color: #79807d;
  font-size: 12px;
  font-weight: 500;
}

.dh-field input,
.dh-field select,
.dh-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #bfc7c4;
  border-radius: 6px;
  outline: 0;
  background: #fff;
  color: var(--dh-ink);
  font-size: 16px;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

.dh-field input,
.dh-field select {
  padding: 0 13px;
}

.dh-field textarea {
  min-height: 112px;
  padding: 12px 13px;
  line-height: 1.5;
  resize: vertical;
}

.dh-field input:focus,
.dh-field select:focus,
.dh-field textarea:focus {
  border-color: var(--dh-green);
  box-shadow: 0 0 0 3px rgba(1, 97, 77, 0.14);
}

.dh-field input[aria-invalid="true"],
.dh-field select[aria-invalid="true"],
.dh-field textarea[aria-invalid="true"] {
  border-color: #b42318;
}

.dh-field__error {
  min-height: 20px;
  padding-top: 4px;
  color: #b42318;
  font-size: 12px;
  line-height: 1.3;
}

.dh-form__submit {
  width: 100%;
  margin-top: 18px;
}

.dh-form__note {
  margin-top: 12px !important;
  color: #747b78;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.dh-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.dh-preview-success {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.dh-preview-success > p:not(.dh-eyebrow) {
  max-width: 520px;
  margin-top: 18px;
  color: var(--dh-muted);
  font-family: "Recia", Georgia, serif;
  font-size: 17px;
  line-height: 1.65;
}

.dh-footer {
  padding: 54px 0 30px;
  background: var(--dh-ink);
  color: #fff;
}

.dh-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: start;
}

.dh-footer__logo {
  filter: brightness(0) invert(1);
}

.dh-footer__inner > div > p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-family: "Recia", Georgia, serif;
  font-size: 14px;
}

.dh-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 26px;
  font-size: 14px;
}

.dh-footer nav a:hover,
.dh-footer nav a:focus-visible {
  color: var(--dh-yellow);
}

.dh-footer__copyright {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.district-hubs-page :focus-visible {
  outline: 3px solid var(--dh-yellow);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .dh-header__inner {
    grid-template-columns: 150px minmax(0, 1fr) auto;
    gap: 18px;
  }

  .dh-header__nav {
    gap: 20px;
    font-size: 14px;
  }

  .dh-button--header {
    display: none;
  }

  .dh-hero h1 {
    font-size: 38px;
    white-space: normal;
  }

  .dh-product-stage__desktop {
    height: 380px;
  }

  .dh-process__steps li {
    padding-right: 20px;
    padding-left: 20px;
  }

  .dh-preview__grid {
    grid-template-columns: minmax(0, 0.76fr) minmax(520px, 1.24fr);
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .dh-header__inner {
    grid-template-columns: 1fr auto;
  }

  .dh-header__nav,
  .dh-header__login {
    display: none;
  }

  .dh-menu-button {
    display: inline-flex;
  }

  .dh-hero h1 {
    font-size: 38px;
  }

  .dh-product-stage__desktop {
    height: 350px;
  }

  .dh-process,
  .dh-pilot,
  .dh-partners,
  .dh-faq,
  .dh-ownership,
  .dh-student,
  .dh-preview {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .dh-process h2,
  .dh-pilot h2,
  .dh-partners h2,
  .dh-network h2,
  .dh-faq h2,
  .dh-preview h2,
  .dh-ownership h2,
  .dh-student h2 {
    font-size: 41px;
  }

  .dh-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dh-process__steps li:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--dh-line);
  }

  .dh-process__steps li:nth-child(4) {
    border-top: 1px solid var(--dh-line);
  }

  .dh-ownership__heading,
  .dh-pilot__heading,
  .dh-student__grid,
  .dh-faq__grid,
  .dh-preview__grid {
    grid-template-columns: 1fr;
  }

  .dh-ownership__heading,
  .dh-pilot__heading {
    gap: 22px;
  }

  .dh-ownership__heading > p:last-child,
  .dh-pilot__heading > p:last-child {
    max-width: 650px;
  }

  .dh-student__grid {
    gap: 46px;
  }

  .dh-faq__grid,
  .dh-preview__grid {
    gap: 48px;
  }

  .dh-faq__heading,
  .dh-preview__copy {
    position: static;
  }

  .dh-network__groups article {
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media (max-width: 680px) {
  .dh-shell {
    width: min(100% - 32px, 1200px);
  }

  .dh-header,
  .dh-header__inner {
    min-height: 68px;
  }

  .dh-logo img {
    width: 120px;
  }

  .dh-hero {
    padding-top: 40px;
  }

  .dh-hero h1 {
    font-size: 40px;
    line-height: 1.05;
  }

  .dh-hero__lede {
    font-size: 17px;
  }

  .dh-hero__actions {
    width: 100%;
    flex-direction: column;
  }

  .dh-hero__actions .dh-button {
    width: 100%;
  }

  .dh-product-stage {
    width: 100%;
    margin-top: 34px;
  }

  .dh-product-stage__label {
    width: min(100% - 32px, 1200px);
    margin-right: auto;
    margin-left: auto;
    flex-direction: column;
    gap: 2px;
  }

  .dh-product-stage__frame {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .district-hubs-page .dh-product-stage__desktop {
    display: none;
  }

  .dh-product-stage__mobile {
    display: block;
    background: #fff;
  }

  .dh-product-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    padding: 8px;
    border-bottom: 1px solid #e1e5e3;
    background: #f4f5f5;
  }

  .dh-product-tabs button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 5px;
    background: transparent;
    color: #5d6461;
    font-size: 13px;
    font-weight: 650;
    cursor: pointer;
  }

  .dh-product-tabs button[aria-selected="true"] {
    border-color: #b7c8c2;
    background: #fff;
    color: var(--dh-green);
  }

  .dh-product-stage__mobile [role="tabpanel"] {
    height: 470px;
    overflow: hidden;
  }

  .dh-product-stage__mobile [role="tabpanel"] img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    object-position: top center;
  }

  .dh-product-stage figcaption {
    padding-right: 20px;
    padding-left: 20px;
  }

  .dh-photo-strip {
    display: flex;
    height: 156px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .dh-photo-strip::-webkit-scrollbar {
    display: none;
  }

  .dh-photo-strip img {
    width: 66vw;
    min-width: 230px;
    height: 156px;
    flex: 0 0 66vw;
    scroll-snap-align: start;
  }

  .dh-process,
  .dh-pilot,
  .dh-partners,
  .dh-faq,
  .dh-ownership,
  .dh-student,
  .dh-preview,
  .dh-network {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .dh-process h2,
  .dh-pilot h2,
  .dh-partners h2,
  .dh-network h2,
  .dh-faq h2,
  .dh-preview h2,
  .dh-ownership h2,
  .dh-student h2 {
    font-size: 35px;
    line-height: 1.1;
  }

  .dh-process__steps {
    grid-template-columns: 1fr;
    margin-top: 38px !important;
  }

  .dh-process__steps li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 0;
    padding: 24px 0;
  }

  .dh-process__steps li + li,
  .dh-process__steps li:nth-child(3),
  .dh-process__steps li:nth-child(4) {
    border-top: 1px solid var(--dh-line);
    border-left: 0;
  }

  .dh-process__number {
    grid-column: 1;
    grid-row: 1 / 4;
  }

  .dh-process__steps h3,
  .dh-process__steps p {
    grid-column: 2;
    margin-top: 0;
  }

  .dh-process__steps p {
    margin-top: 6px;
  }

  .dh-ownership__columns {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .dh-ownership__columns article,
  .dh-ownership__columns article + article {
    padding: 30px 0;
    border-left: 0;
  }

  .dh-ownership__columns article + article {
    border-top: 1px solid #cdd3d1;
  }

  .dh-student__grid {
    gap: 38px;
  }

  .dh-student__visual img {
    aspect-ratio: 1.08;
  }

  .dh-partners h2 {
    max-width: 600px;
    font-size: 30px;
  }

  .dh-partners__logos {
    gap: 24px;
    min-height: 72px;
    margin-top: 38px;
  }

  .dh-partners__logos img {
    max-height: 68px;
  }

  .dh-partners__logos img:nth-child(2) {
    max-height: 48px;
  }

  .dh-pilot__steps li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }

  .dh-pilot__callout {
    grid-template-columns: minmax(0, 1fr);
  }

  .dh-pilot__callout a {
    justify-self: start;
    white-space: normal;
  }

  .dh-network__line {
    display: none;
  }

  .dh-network__groups {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .dh-network__groups article {
    justify-content: flex-start;
    padding: 22px 0;
  }

  .dh-network__groups article + article {
    border-top: 1px solid #cbd8d5;
    border-left: 0;
  }

  .dh-faq summary {
    min-height: 70px;
    font-size: 16px;
  }

  .dh-faq details p {
    padding-right: 24px;
    font-size: 15px;
  }

  .dh-preview__form-shell {
    margin-right: -8px;
    margin-left: -8px;
  }

  .dh-preview__form-shell form,
  .dh-preview-success {
    padding: 26px 22px;
  }

  .dh-form__grid {
    grid-template-columns: 1fr;
  }

  .dh-field--full {
    grid-column: auto;
  }

  .dh-form__heading h3,
  .dh-preview-success h3 {
    font-size: 27px;
  }

  .dh-footer__inner {
    grid-template-columns: 1fr;
  }

  .dh-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 390px) {
  .dh-hero h1 {
    font-size: 36px;
  }

  .dh-product-stage__mobile [role="tabpanel"],
  .dh-product-stage__mobile [role="tabpanel"] img {
    height: 430px;
  }

  .dh-process h2,
  .dh-pilot h2,
  .dh-partners h2,
  .dh-network h2,
  .dh-faq h2,
  .dh-preview h2,
  .dh-ownership h2,
  .dh-student h2 {
    font-size: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .district-hubs-page *,
  .district-hubs-page *::before,
  .district-hubs-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Coming-soon launch experience */
.district-hubs-page--coming-soon :is(#experience, #whats-coming, #district-control, #faq, #waitlist) {
  scroll-margin-top: 84px;
}

.district-hubs-page--coming-soon .dh-header {
  border-bottom-color: rgba(34, 30, 30, 0.08);
  background: rgba(253, 253, 254, 0.94);
}

.district-hubs-page--coming-soon .dh-hero {
  padding-top: 88px;
  background: var(--dh-green-dark);
}

.district-hubs-page--coming-soon .dh-hero__copy {
  max-width: none;
  align-items: flex-start;
  text-align: left;
}

.district-hubs-page--coming-soon .dh-hero h1 {
  max-width: 900px;
  margin-top: 18px;
  font-size: clamp(42px, 4.8vw, 66px);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.04;
  white-space: normal;
}

.district-hubs-page--coming-soon .dh-hero__lede {
  max-width: 620px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.6;
}

.district-hubs-page--coming-soon .dh-hero__actions {
  justify-content: flex-start;
  margin-top: 34px;
}

.dh-launch-status {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 10px;
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.dh-launch-status strong {
  color: var(--dh-yellow);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dh-launch-status strong + span {
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.dh-hero__microcopy {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.district-hubs-page--coming-soon .dh-product-stage {
  margin-top: 60px;
}

.district-hubs-page--coming-soon .dh-product-stage__label {
  margin-bottom: 12px;
}

.district-hubs-page--coming-soon .dh-product-stage__frame {
  border-color: rgba(255, 255, 255, 0.24);
  border-radius: 10px 10px 0 0;
  box-shadow: 0 20px 44px rgba(0, 25, 20, 0.28);
}

.district-hubs-page--coming-soon .dh-product-stage__desktop {
  height: 455px;
}

.district-hubs-page--coming-soon .dh-process {
  padding-top: 76px;
  padding-bottom: 104px;
}

.district-hubs-page--coming-soon .dh-process__steps {
  margin-top: 48px !important;
}

.district-hubs-page--coming-soon .dh-faq {
  border-top: 1px solid var(--dh-line);
  background: #f8faf9;
}

.district-hubs-page--coming-soon .dh-preview {
  border-top: 1px solid var(--dh-line);
  background: var(--dh-green-soft);
}

.district-hubs-page--coming-soon .dh-preview__form-shell {
  border-color: #c2cec9;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(27, 56, 47, 0.08);
}

.district-hubs-page--coming-soon .dh-preview__form-shell form,
.district-hubs-page--coming-soon .dh-preview-success {
  padding: 40px;
}

.district-hubs-page--coming-soon .dh-preview-success {
  min-height: 420px;
}

@media (max-width: 1080px) {
  .district-hubs-page--coming-soon .dh-product-stage__desktop {
    height: 400px;
  }
}

@media (max-width: 900px) {
  .district-hubs-page--coming-soon .dh-hero {
    padding-top: 64px;
  }

  .district-hubs-page--coming-soon .dh-hero h1 {
    font-size: clamp(40px, 7vw, 56px);
  }
}

@media (max-width: 680px) {
  .district-hubs-page--coming-soon .dh-hero {
    padding-top: 48px;
  }

  .district-hubs-page--coming-soon .dh-hero h1 {
    font-size: 38px;
    letter-spacing: -0.02em;
  }

  .district-hubs-page--coming-soon .dh-hero__lede {
    margin-top: 20px;
    font-size: 17px;
  }

  .district-hubs-page--coming-soon .dh-product-stage__frame {
    border-radius: 0;
  }

  .district-hubs-page--coming-soon .dh-process {
    padding-top: 62px;
    padding-bottom: 72px;
  }

  .district-hubs-page--coming-soon .dh-process__steps {
    margin-top: 36px !important;
  }

  .district-hubs-page--coming-soon .dh-preview__form-shell form,
  .district-hubs-page--coming-soon .dh-preview-success {
    padding: 30px 22px;
  }
}

@media (max-width: 390px) {
  .district-hubs-page--coming-soon .dh-hero h1 {
    font-size: 35px;
  }
}
