@font-face {
  font-family: "Fraunces Variable";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/fraunces-latin-wght-normal.woff2") format("woff2-variations");
}

@font-face {
  font-family: "Manrope Variable";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin-wght-normal.woff2") format("woff2-variations");
}

:root {
  --ink: #18204f;
  --ink-strong: #10163a;
  --cobalt: #526cf0;
  --copper: #c45d35;
  --paper: #fbfaf6;
  --limestone: #f4f0e7;
  --sky: #cfe1f8;
  --muted: #58636d;
  --font-display: "Fraunces Variable", Iowan Old Style, Palatino Linotype, Palatino, Georgia, serif;
  --font-interface: "Manrope Variable", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  min-height: 100svh;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-interface);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 10;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}

.skip:focus {
  top: 12px;
}

:where(a):focus-visible {
  outline: 2px solid #344bc7;
  outline-offset: 3px;
}

.page {
  display: grid;
  min-height: 100svh;
  grid-template-rows: auto 1fr auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

.mast {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 28px 0 8px;
}

.mast__back {
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 750;
  text-decoration: none;
}

.mast__back:hover,
.mast__back:focus-visible {
  color: #344bc7;
}

.lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: inherit;
  text-decoration: none;
}

.lockup__mark {
  width: 54px;
  height: auto;
  flex: none;
}

.lockup__name {
  display: flex;
  align-items: baseline;
  font-size: 1.5625rem;
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 1;
}

.lockup__flex {
  color: var(--ink);
}

.lockup__worx {
  color: var(--cobalt);
}

.lockup__descriptor {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero {
  display: grid;
  width: min(1240px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  padding: clamp(32px, 6vh, 72px) 0;
}

.hero__copy {
  max-width: 18ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: #344bc7;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 3px;
  background: var(--copper);
  content: "";
}

.hero h1 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(3.125rem, 7vw, 6.5rem);
  font-weight: 550;
  letter-spacing: -0.055em;
  line-height: 0.93;
}

.lede {
  margin: 0;
  max-width: 22ch;
  color: var(--muted);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 500;
  line-height: 1.45;
}

.lede--wide {
  max-width: 46rem;
  font-size: 1.0625rem;
}

.hero__art {
  position: relative;
  min-height: min(52vh, 520px);
  overflow: hidden;
  border: 1px solid rgb(24 32 79 / 10%);
  border-radius: 28px;
  background: var(--limestone);
}

.hero__horizon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 70%;
}

.hero__mark {
  position: absolute;
  z-index: 1;
  width: min(58%, 280px);
  height: auto;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 18px 40px rgb(24 32 79 / 12%));
}

.foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 12px 0 32px;
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 650;
}

.foot p {
  margin: 0;
}

.foot__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.foot__nav a {
  color: var(--muted);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.foot__nav a:hover,
.foot__nav a:focus-visible {
  color: #344bc7;
}

.legal {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 28px 0 48px;
}

.legal__hero h1 {
  max-width: 16ch;
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 550;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.legal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.legal__grid article {
  padding: 22px 22px 24px;
  border: 1px solid rgb(24 32 79 / 10%);
  border-radius: 20px;
  background: #fff;
}

.legal__grid h2 {
  margin: 0 0 10px;
  font-size: 1.0625rem;
  font-weight: 800;
}

.legal__grid p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.legal__grid p:last-child {
  margin-bottom: 0;
}

.legal__hero h1 em {
  color: #0f5f5c;
  font-style: italic;
  font-weight: 500;
}

.legal ul {
  margin: 0 0 1em;
  padding-left: 1.25em;
}

.legal li {
  margin-bottom: 0.4em;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.legal address {
  font-style: normal;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.legal a {
  color: #344bc7;
}

@media (max-width: 720px) {
  .mast {
    padding-top: 20px;
  }

  .lockup__mark {
    width: 44px;
  }

  .lockup__name {
    font-size: 1.375rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    padding: 28px 0 40px;
  }

  .hero__copy {
    max-width: none;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 12vw, 3.5rem);
  }

  .hero__art {
    min-height: 240px;
    border-radius: 20px;
  }

  .hero__mark {
    width: min(46%, 160px);
  }

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

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

/* ============================================================
   LANDING PAGE — added for the operator-facing home page.
   Everything above this line is unchanged from the original
   stylesheet, so the legal page renders exactly as before.
   ============================================================ */

.page--home {
  grid-template-rows: auto auto auto;
}

/* ---------- Masthead actions ---------- */

.mast__actions {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.mast__phone {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.mast__phone:hover,
.mast__phone:focus-visible {
  color: #344bc7;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-interface);
  font-size: 0.9375rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s ease, background-color 0.15s ease,
    border-color 0.15s ease, color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--sm {
  padding: 10px 18px;
  font-size: 0.8125rem;
}

.btn--primary {
  background: var(--ink);
  color: var(--paper);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: #344bc7;
}

.btn--ghost {
  border-color: rgb(24 32 79 / 18%);
  background: transparent;
  color: var(--ink);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--cobalt);
  color: #344bc7;
}

.btn--invert {
  background: var(--paper);
  color: var(--ink-strong);
}

.btn--invert:hover,
.btn--invert:focus-visible {
  background: #fff;
}

.btn--outline {
  border-color: rgb(251 250 246 / 35%);
  background: transparent;
  color: var(--paper);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  border-color: var(--paper);
  background: rgb(251 250 246 / 8%);
}

/* ---------- Hero ---------- */

.hero--home {
  padding: clamp(24px, 4vh, 52px) 0 clamp(32px, 5vh, 64px);
  align-items: center;
}

.hero__copy--wide {
  max-width: 38rem;
}

.hero--home h1 {
  font-size: clamp(2.75rem, 5.6vw, 5rem);
  line-height: 0.95;
}

.hero--home h1 em {
  display: inline-block;
  color: #0f5f5c;
  font-style: italic;
  font-weight: 500;
}

.lede--hero {
  max-width: 34rem;
  margin-bottom: 14px;
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
}

.hero__note {
  max-width: 34rem;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__microcopy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 600;
}

/* ---------- Shared section frame ---------- */

.stats,
.section,
.close {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.section {
  padding: clamp(48px, 7vh, 84px) 0;
}

.section--tint {
  padding: clamp(40px, 6vh, 64px) clamp(24px, 4vw, 56px);
  border: 1px solid rgb(24 32 79 / 8%);
  border-radius: 28px;
  background: var(--limestone);
}

.section__head {
  max-width: 40rem;
  margin-bottom: 36px;
}

.section__head h2,
.section__head h1,
.close h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.4vw, 2.75rem);
  font-weight: 550;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

/* ---------- Stat band ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgb(24 32 79 / 12%);
  border-radius: 22px;
  background: #fff;
}

.stat {
  padding: 26px 20px;
  border-left: 1px solid rgb(24 32 79 / 10%);
  text-align: center;
}

.stat:first-child {
  border-left: 0;
}

.stat--accent {
  background: var(--sky);
}

.stat__value {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.375rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat--accent .stat__value {
  color: var(--ink-strong);
}

.stat__label {
  margin: 0;
  color: var(--ink);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.45;
}

.stat__label span {
  color: var(--muted);
  font-weight: 550;
}

/* ---------- Steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step {
  padding: 26px 24px 28px;
  border: 1px solid rgb(24 32 79 / 10%);
  border-radius: 20px;
  background: #fff;
}

.step__num {
  margin: 0 0 14px;
  color: var(--copper);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.step h3 {
  margin: 0 0 10px;
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.step p:not(.step__num) {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ---------- Reassurance line ---------- */

.reassure {
  max-width: 62rem;
  margin: 28px 0 0;
  padding: 18px 22px;
  border-left: 3px solid var(--copper);
  border-radius: 0 12px 12px 0;
  background: rgb(207 225 248 / 32%);
  color: var(--ink);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.reassure--plain {
  border-left-color: var(--cobalt);
  background: transparent;
  font-family: var(--font-display);
  font-size: clamp(1.0625rem, 1.9vw, 1.3125rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

/* ---------- Operator value ---------- */

.section__head--value {
  max-width: 56rem;
  margin-bottom: 30px;
}

.operator-value {
  background:
    radial-gradient(circle at 88% 4%, rgb(207 225 248 / 34%), transparent 26rem),
    var(--limestone);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card {
  padding: 20px 20px 24px;
  border: 1px solid rgb(24 32 79 / 10%);
  border-radius: 20px;
  background: #fff;
}

.benefit-card__head {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 14px;
}

.benefit-card__head h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.benefit-card__icon {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--limestone);
  color: var(--ink);
}

.benefit-card__icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.benefit-card__icon .benefit-card__icon-accent {
  stroke: var(--copper);
}

.benefit-card__rule {
  display: block;
  width: 32px;
  height: 1px;
  margin: 16px 0 14px;
  background: var(--copper);
}

.benefit-card > p {
  margin: 0;
  color: var(--ink);
  font-size: 0.875rem;
  line-height: 1.58;
}

.value-signoff {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
  padding: 4px 0 4px 16px;
  border-left: 3px solid var(--cobalt);
}

.value-signoff__icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  color: var(--cobalt);
}

.value-signoff__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.value-signoff p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.0625rem, 2vw, 1.375rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.value-signoff strong {
  font-weight: 650;
}

.value-signoff p span {
  color: #344bc7;
}

/* ---------- Metrics ---------- */

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.metric {
  padding: 28px 24px;
  border: 1px solid rgb(24 32 79 / 10%);
  border-radius: 20px;
  background: #fff;
}

.metric__value {
  margin: 0 0 8px;
  color: var(--cobalt);
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
}

.metric__label {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

/* ---------- Network status ---------- */

.network {
  margin: 0;
  border-top: 1px solid rgb(24 32 79 / 12%);
}

.net-row {
  display: grid;
  grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
  gap: 8px 32px;
  padding: 20px 0;
  border-bottom: 1px solid rgb(24 32 79 / 12%);
}

.net-row dt {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.net-row dt::before {
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: rgb(24 32 79 / 22%);
  content: "";
}

.net-row--live dt {
  color: #0f5f5c;
}

.net-row--live dt::before {
  background: #0f5f5c;
}

.net-row dd {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* ---------- Closing band ---------- */

.close {
  margin-top: clamp(40px, 6vh, 72px);
  margin-bottom: clamp(32px, 5vh, 56px);
  padding: clamp(44px, 7vh, 76px) clamp(24px, 5vw, 64px);
  border-radius: 32px;
  background: var(--ink-strong);
  color: var(--paper);
  text-align: center;
}

.quote {
  margin: 0 0 24px;
}

.quote p {
  margin: 0;
  color: var(--sky);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.close h2 {
  color: var(--paper);
}

.close__lede {
  max-width: 42rem;
  margin: 16px auto 32px;
  color: rgb(251 250 246 / 72%);
  font-size: 1.0625rem;
  line-height: 1.6;
}

.close__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.close__team {
  max-width: 52rem;
  margin: 36px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgb(251 250 246 / 16%);
  color: rgb(251 250 246 / 60%);
  font-size: 0.8125rem;
  line-height: 1.7;
}

.close__team strong {
  color: rgb(251 250 246 / 88%);
}

.close :where(a):focus-visible {
  outline-color: var(--sky);
}

/* ---------- Responsive ---------- */

@media (max-width: 1020px) {
  .stats,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat:nth-child(3) {
    border-left: 0;
  }

  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid rgb(24 32 79 / 10%);
  }

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

@media (max-width: 720px) {
  .mast {
    justify-content: center;
    text-align: center;
  }

  .mast__actions {
    width: 100%;
    justify-content: center;
  }

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

  .hero--home h1 {
    font-size: clamp(2.375rem, 10vw, 3.125rem);
  }

  .hero__copy--wide {
    max-width: none;
  }

  .hero__cta .btn {
    flex: 1 1 100%;
  }

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

  .stat {
    border-left: 0;
    border-bottom: 1px solid rgb(24 32 79 / 10%);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .stat:nth-child(3) {
    border-left: 0;
  }

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

  .operator-value {
    padding-right: 20px;
    padding-left: 20px;
  }

  .benefit-card__head {
    min-height: 0;
  }

  .value-signoff {
    align-items: flex-start;
  }

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

  .close {
    border-radius: 24px;
  }

  .close__actions .btn {
    flex: 1 1 100%;
  }
}

/* ============================================================
   2026-08 content refresh — keep existing tokens, add sections
   from the operator-facing handoff (nav, map, cities, team,
   FAQ, application form).
   ============================================================ */

.mast {
  position: relative;
}

.menu-button {
  display: none;
  margin-left: auto;
  padding: 8px 14px;
  border: 1px solid rgb(24 32 79 / 16%);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-interface);
  font-size: 0.8125rem;
  font-weight: 750;
  cursor: pointer;
}

.menu-button:hover,
.menu-button:focus-visible {
  border-color: var(--cobalt);
  color: #344bc7;
}

.mast__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 4px 18px;
  margin-left: auto;
}

.mast__nav a {
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.mast__nav a:hover,
.mast__nav a:focus-visible,
.mast__nav a[aria-current="page"] {
  color: #344bc7;
}

.section h1 em,
.section h2 em,
.hero--home h1 em {
  font-style: italic;
  font-weight: 500;
}

.section h1 em,
.section h2 em {
  color: #0f5f5c;
}

.section__head--split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px 48px;
  max-width: none;
  align-items: end;
}

.section__intro {
  margin: 0;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.6;
}

.section__head--value .section__intro {
  max-width: 42rem;
  margin-top: 16px;
}

.billing-callout {
  display: grid;
  gap: 4px;
  max-width: 28rem;
  margin: 0 0 24px;
  padding: 14px 18px;
  border-left: 3px solid var(--copper);
  border-radius: 0 12px 12px 0;
  background: rgb(207 225 248 / 36%);
}

.billing-callout small {
  color: #344bc7;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.billing-callout strong {
  color: var(--ink-strong);
  font-size: 1.0625rem;
  font-weight: 750;
}

.proof-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 18px 0 0;
}

.proof-line span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-size: 0.8125rem;
  font-weight: 750;
}

.proof-line span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--copper);
  content: "";
}

.network-visual {
  margin: 0;
}

.network-visual .hero__horizon {
  object-position: center;
}

.network-visual figcaption {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 48px 22px 18px;
  background: linear-gradient(transparent, rgb(16 22 58 / 82%));
  color: var(--paper);
}

.network-visual figcaption span {
  display: block;
  margin-bottom: 4px;
  color: var(--sky);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.network-visual figcaption strong {
  font-family: var(--font-display);
  font-size: clamp(1.0625rem, 2vw, 1.375rem);
  font-weight: 550;
  letter-spacing: -0.03em;
}

.network-visual figcaption em {
  color: var(--sky);
  font-style: italic;
}

.steps--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.city-card,
.team-card {
  padding: 22px 22px 24px;
  border: 1px solid rgb(24 32 79 / 10%);
  border-radius: 20px;
  background: #fff;
}

.city-card h3,
.team-card h2,
.team-card h3 {
  margin: 0 0 6px;
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.city-card p,
.team-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.city-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.city-card h3::before {
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: rgb(24 32 79 / 22%);
  content: "";
}

.city-card--live h3 {
  color: #0f5f5c;
}

.city-card--live h3::before {
  background: #0f5f5c;
}

.city-card--onboarding h3::before {
  background: var(--cobalt);
}

.economics {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 32px 48px;
  align-items: start;
}

.economics__copy p:not(.eyebrow):not(.reassure) {
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.6;
}

.economics .reassure {
  margin-top: 20px;
}

.price-card {
  padding: 28px 28px 30px;
  border: 1px solid rgb(24 32 79 / 10%);
  border-radius: 24px;
  background: #fff;
}

.price-card__value {
  margin: 0;
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
}

.price-card__unit {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 650;
}

.price-card hr {
  margin: 20px 0;
  border: 0;
  border-top: 1px solid rgb(24 32 79 / 10%);
}

.price-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.price-card p:last-child {
  margin-bottom: 0;
}

.price-card strong {
  color: var(--ink);
}

.price-card__note {
  color: var(--muted);
  font-size: 0.8125rem !important;
}

.team-card__initials {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0 0 16px;
  place-items: center;
  border-radius: 50%;
  background: var(--limestone);
  color: var(--ink);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.team-card__role {
  margin: 0 0 12px !important;
  color: #344bc7 !important;
  font-size: 0.8125rem !important;
  font-weight: 750;
}

.team-page__cta {
  margin: 32px 0 0;
}

.page-title-link {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 18px 0 0;
}

.page-title-link a {
  color: #344bc7;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}

.page-title-link a:hover,
.page-title-link a:focus-visible,
.page-title-link a[aria-current="page"] {
  color: var(--ink);
}

.comment-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  width: 100%;
  max-width: none;
}

.comment-form label {
  display: block;
  max-width: 46rem;
  color: var(--ink);
  font-size: 1.0625rem;
  font-weight: 650;
  line-height: 1.55;
}

.comment-form textarea {
  display: block;
  width: 100%;
  min-height: 10.5rem;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgb(24 32 79 / 16%);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-interface);
  font-size: 1rem;
  line-height: 1.55;
  resize: vertical;
}

.comment-form textarea::placeholder {
  color: rgb(88 99 109 / 72%);
}

.comment-form textarea:focus-visible {
  outline: 2px solid #344bc7;
  outline-offset: 2px;
}

.comment-form textarea:user-invalid,
.comment-form textarea[aria-invalid="true"] {
  border-color: var(--copper);
}

.comment-form .btn {
  display: inline-flex;
}

.comment-form__actions {
  display: block;
  width: 100%;
}

.comment-form__note,
.comment-form__status {
  margin: 0;
  color: var(--muted);
  font-size: 0.8125rem;
  line-height: 1.55;
}

.comment-form__status {
  color: #344bc7;
}

.comment-form__status a {
  color: var(--ink);
  font-weight: 750;
}

#mission,
#promise,
#comment {
  scroll-margin-top: 20px;
}

.mission__copy {
  max-width: 46rem;
}

.mission__copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.mission__copy p:last-child {
  margin-bottom: 0;
}

.promise {
  max-width: 46rem;
}

.promise h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 550;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.promise blockquote {
  margin: 0 0 22px;
  padding: 0;
  border: 0;
}

.promise blockquote p {
  margin: 0;
  color: #0f5f5c;
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.6vw, 1.875rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.3;
}

.promise > p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.promise__close {
  margin-bottom: 0 !important;
  color: var(--ink) !important;
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 550;
  letter-spacing: -0.02em;
}

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgb(24 32 79 / 12%);
}

.faq-list details {
  border-bottom: 1px solid rgb(24 32 79 / 12%);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  cursor: pointer;
  font-size: 1.0625rem;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary::after {
  color: var(--copper);
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1;
  content: "+";
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  max-width: 46rem;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.975rem;
  line-height: 1.65;
}

.eyebrow--on-dark {
  color: var(--sky);
}

.eyebrow--on-dark::before {
  background: var(--copper);
}

.close h2 em {
  color: var(--sky);
  font-style: italic;
  font-weight: 500;
}

.apply-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: 28px 40px;
  max-width: 72rem;
  margin: 36px auto 0;
  text-align: left;
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 24px;
  border: 1px solid rgb(251 250 246 / 16%);
  border-radius: 20px;
}

.contact-card p {
  margin: 0;
  color: rgb(251 250 246 / 62%);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card a {
  color: var(--paper);
  font-size: 1.125rem;
  font-weight: 750;
  text-decoration: none;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  color: var(--sky);
}

.contact-card__logo {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 16px;
  background: var(--paper);
}

.contact-card__logo img {
  width: 56px;
  height: auto;
}

.apply-form {
  display: grid;
  gap: 14px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.apply-form label {
  display: block;
  color: rgb(251 250 246 / 78%);
  font-size: 0.8125rem;
  font-weight: 750;
}

.apply-form .req {
  display: inline;
  color: #e7b09a;
  font-weight: 800;
}

.apply-form input:user-invalid,
.apply-form input[aria-invalid="true"] {
  border-color: #e7b09a;
}

.apply-form input,
.apply-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid rgb(251 250 246 / 22%);
  border-radius: 12px;
  background: rgb(251 250 246 / 8%);
  color: var(--paper);
  font-family: var(--font-interface);
  font-size: 0.975rem;
}

.apply-form input::placeholder,
.apply-form textarea::placeholder {
  color: rgb(251 250 246 / 40%);
}

.apply-form input:focus-visible,
.apply-form textarea:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 2px;
}

.apply-form .btn {
  justify-self: start;
  margin-top: 6px;
}

.apply-form__note,
.apply-form__status {
  margin: 0;
  color: rgb(251 250 246 / 62%);
  font-size: 0.8125rem;
  line-height: 1.55;
}

.apply-form__status {
  color: var(--sky);
}

.apply-form__status a {
  color: var(--paper);
  font-weight: 750;
}

.foot--home {
  align-items: flex-start;
  padding-top: 28px;
}

.foot__brand p {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 550;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.foot__brand em {
  color: #0f5f5c;
}

.foot__contact {
  display: grid;
  justify-items: end;
  gap: 4px;
  text-align: right;
}

.foot__contact a {
  color: var(--muted);
  font-weight: 750;
  text-decoration: none;
}

.foot__contact a:hover,
.foot__contact a:focus-visible {
  color: #344bc7;
}

@media (max-width: 1100px) {
  .mast__nav {
    gap: 4px 14px;
  }

  .mast__nav a {
    font-size: 0.75rem;
  }
}

@media (max-width: 1020px) {
  .steps--four,
  .city-grid,
  .section__head--split,
  .economics,
  .apply-grid,
  .field-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section__head--split,
  .economics,
  .apply-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .mast {
    justify-content: flex-start;
    text-align: left;
  }

  .lockup {
    margin-right: auto;
  }

  .mast__phone {
    display: none;
  }

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

  .mast__nav {
    display: none;
    order: 4;
    width: 100%;
    margin: 0;
    padding: 8px 0 4px;
    flex-direction: column;
    align-items: stretch;
  }

  .mast__nav.is-open {
    display: flex;
  }

  .mast__nav a {
    padding: 10px 0;
    font-size: 0.9375rem;
    border-bottom: 1px solid rgb(24 32 79 / 8%);
  }

  .mast__actions {
    width: auto;
  }
}

@media (max-width: 720px) {
  .city-grid,
  .steps--four,
  .field-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .foot,
  .foot--home {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .foot__brand,
  .foot__contact {
    justify-items: center;
    text-align: center;
  }

  .apply-form .btn,
  .comment-form .btn,
  .contact-card__logo {
    justify-self: stretch;
    width: 100%;
  }

  .apply-form .btn {
    justify-content: center;
  }
}
