:root {
  --black: #050505;
  --black-soft: #0c0d0f;
  --ink: #111216;
  --white: #f7f8fb;
  --paper: #f1f3f7;
  --muted: #a7acb7;
  --muted-dark: #666c78;
  --line: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(17, 18, 22, 0.18);
  --blue: #1463ff;
  --blue-dark: #0645c7;
  --blue-light: #a9c6ff;
  --max: 1180px;
  --header-height: 78px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--blue-light);
  outline-offset: 4px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--black);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.shell {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  background: rgba(5, 5, 5, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  transition:
    background-color 180ms ease,
    height 180ms ease;
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(5, 5, 5, 0.94);
}

.header-inner {
  width: min(calc(100% - 48px), 1340px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(247, 248, 251, 0.74);
  font-size: 13px;
  font-weight: 600;
}

.primary-nav > a:not(.button) {
  position: relative;
  text-decoration: none;
  transition: color 160ms ease;
}

.primary-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  inset: auto 0 -8px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.primary-nav > a:not(.button):hover,
.primary-nav > a:not(.button):focus-visible {
  color: var(--white);
}

.primary-nav > a:not(.button):hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 12px;
}

.button-primary {
  background: var(--blue);
  color: var(--white);
}

.button-primary:hover {
  background: #2e72ff;
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.button-outline:hover,
.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--black);
}

.button-light:hover {
  background: #dce6ff;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 3, 5, 0.94) 0%, rgba(2, 3, 5, 0.72) 48%, rgba(2, 3, 5, 0.22) 100%),
    linear-gradient(0deg, rgba(2, 3, 5, 0.76) 0%, rgba(2, 3, 5, 0) 42%),
    url("assets/live-nature.webp") center 58% / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(3, 20, 50, 0.08);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 152px 164px;
}

.eyebrow {
  margin: 0 0 24px;
  color: #77a4ff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

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

.eyebrow-blue {
  color: var(--blue-light);
}

.hero h1,
.section-heading h2,
.intro-copy h2,
.start-inner h2 {
  margin: 0;
  font-weight: 900;
  line-height: 0.94;
}

.hero h1 {
  max-width: 950px;
  font-size: 96px;
}

.hero-copy {
  max-width: 710px;
  margin: 30px 0 0;
  color: rgba(247, 248, 251, 0.9);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.55;
}

.support-line {
  margin: 20px 0 0;
  font-size: 16px;
  font-weight: 800;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-build {
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 22px max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 5, 5, 0.66);
  backdrop-filter: blur(12px);
  text-decoration: none;
}

.hero-build-label {
  color: var(--blue-light);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-build strong {
  font-size: 23px;
}

.hero-build-action {
  color: rgba(247, 248, 251, 0.7);
  font-size: 13px;
  font-weight: 600;
}

.section {
  padding-block: 112px;
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.section-blue {
  background: var(--blue);
  color: var(--white);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 58px;
}

.section-heading h2,
.intro-copy h2 {
  font-size: 58px;
}

.section-heading-split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 80px;
}

.section-heading-split > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.section-light .section-heading-split > p {
  color: var(--muted-dark);
}

.intro {
  padding-block: 128px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  align-items: center;
  gap: 94px;
}

.intro-copy .section-lead {
  max-width: 600px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  margin-top: 30px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--blue);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.intro-media {
  position: relative;
  margin: 0;
}

.intro-media::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 18px auto auto -18px;
  width: 92px;
  height: 92px;
  border-top: 3px solid var(--blue);
  border-left: 3px solid var(--blue);
  pointer-events: none;
}

.intro-media img {
  width: 100%;
  height: 610px;
  border-radius: 4px;
  object-fit: cover;
}

.intro-media figcaption {
  position: absolute;
  inset: auto 0 0 auto;
  padding: 12px 16px;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.stewardship-band {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4, 5, 7, 0.92) 0%, rgba(4, 5, 7, 0.58) 54%, rgba(4, 5, 7, 0.2) 100%),
    linear-gradient(0deg, rgba(4, 5, 7, 0.72), rgba(4, 5, 7, 0.06) 62%),
    url("assets/live-stewardship.webp") center 58% / cover no-repeat;
}

.stewardship-content {
  position: relative;
  z-index: 1;
  padding-block: 84px;
}

.stewardship-content h2 {
  max-width: 740px;
  margin: 0;
  font-size: 58px;
  font-weight: 900;
  line-height: 0.98;
}

.stewardship-content > p:not(.eyebrow) {
  max-width: 630px;
  margin: 24px 0 0;
  color: rgba(247, 248, 251, 0.82);
  font-size: 17px;
  line-height: 1.7;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.step {
  min-height: 340px;
  padding: 34px 36px 40px 0;
}

.step + .step {
  padding-left: 36px;
  border-left: 1px solid var(--line-dark);
}

.step-number {
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
}

.step h3 {
  margin: 70px 0 16px;
  font-size: 31px;
  line-height: 1.1;
}

.step p {
  max-width: 310px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.7;
}

.transparency-note {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 36px;
  padding: 26px 30px;
  border: 1px solid var(--line-dark);
  border-left: 5px solid var(--blue);
  border-radius: 4px;
}

.transparency-note span {
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.transparency-note p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.transparency-note .text-link {
  grid-column: 2;
  justify-self: start;
}

.builds-section {
  background:
    linear-gradient(rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.94)),
    url("assets/move-pattern.webp") center / 720px auto repeat;
}

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

.project-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--black-soft);
}

.project-card-featured {
  grid-column: 1 / -1;
  min-height: 590px;
}

.project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.project-card:hover img {
  transform: scale(1.025);
}

.project-content .project-logo {
  position: static;
  width: min(320px, 78%);
  height: auto;
  margin-bottom: 18px;
  object-fit: contain;
}

.project-card:hover .project-logo {
  transform: none;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 4, 5, 0.18) 12%, rgba(4, 4, 5, 0.9) 100%),
    linear-gradient(90deg, rgba(4, 4, 5, 0.45), rgba(4, 4, 5, 0));
}

.project-content {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  background: rgba(4, 4, 5, 0.52);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.status-live {
  border-color: #8fb2ff;
  background: var(--blue);
}

.status-building {
  border-color: var(--blue-light);
}

.project-content h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1.05;
}

.project-card-featured .project-content h3 {
  font-size: 52px;
}

.project-content p {
  max-width: 580px;
  margin: 14px 0 22px;
  color: rgba(247, 248, 251, 0.76);
  font-size: 15px;
}

.project-content a,
.lane a {
  display: inline-flex;
  gap: 9px;
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.project-content a {
  padding-bottom: 4px;
  border-bottom: 2px solid var(--blue);
}

.lane-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.lane {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 34px 38px 36px 0;
}

.lane + .lane {
  padding-left: 38px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.lane > span {
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 800;
}

.lane h3 {
  margin: 64px 0 16px;
  font-size: 35px;
  line-height: 1;
}

.lane p {
  max-width: 300px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.7;
}

.lane a {
  margin-top: auto;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 0 70px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.stats div {
  min-height: 165px;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  padding: 26px 28px 26px 0;
}

.stats div + div {
  padding-left: 28px;
  border-left: 1px solid var(--line-dark);
}

.stats dt {
  margin-top: 7px;
  color: var(--muted-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.stats dd {
  margin: 0;
  color: var(--ink);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  min-height: 490px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  background: #fff;
}

.story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px;
}

.story-copy h3 {
  margin: 0;
  font-size: 38px;
  line-height: 1.1;
}

.story-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted-dark);
  font-size: 16px;
  line-height: 1.75;
}

.text-link-dark {
  color: var(--ink);
}

.start-section {
  position: relative;
  overflow: hidden;
  padding-block: 118px;
  background: var(--blue);
}

.start-pattern {
  position: absolute;
  inset: 0 0 0 auto;
  width: 52%;
  background:
    linear-gradient(90deg, var(--blue), rgba(20, 99, 255, 0.44)),
    url("assets/move-pattern.webp") center / cover no-repeat;
  opacity: 0.34;
}

.start-inner {
  position: relative;
  z-index: 1;
}

.start-inner h2 {
  font-size: 72px;
}

.start-inner > p:not(.eyebrow) {
  max-width: 600px;
  margin: 24px 0 0;
  font-size: 18px;
}

.interest-form {
  max-width: 650px;
  margin-top: 58px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.interest-form > label {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.interest-form > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.interest-form input {
  min-width: 0;
  height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.18);
  color: var(--white);
}

.interest-form input::placeholder {
  color: rgba(255, 255, 255, 0.68);
}

.interest-form button {
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 4px;
  background: var(--black);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
}

.form-message {
  min-height: 24px;
  margin: 10px 0 0;
  font-size: 13px;
}

.site-footer {
  padding: 72px 0 28px;
  background: var(--black);
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer-brand p {
  margin: 16px 0 2px;
  font-size: 19px;
  font-weight: 900;
}

.footer-brand span {
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 28px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #777d88;
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1040px) {
  .primary-nav {
    gap: 18px;
  }

  .hero h1 {
    font-size: 76px;
  }

  .intro-grid {
    gap: 54px;
  }

  .section-heading h2,
  .intro-copy h2 {
    font-size: 50px;
  }

  .story-copy {
    padding: 40px;
  }
}

@media (max-width: 880px) {
  :root {
    --header-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    min-height: calc(100svh - var(--header-height));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 32px 24px;
    background: rgba(5, 5, 5, 0.98);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .primary-nav > a:not(.button) {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    color: var(--white);
    font-size: 20px;
  }

  .primary-nav .button {
    margin-top: 28px;
  }

  .primary-nav > a:not(.button)::after {
    display: none;
  }

  .hero {
    min-height: 92svh;
    background-position: 58% center;
  }

  .hero-content {
    padding-block: 132px 178px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .hero-copy {
    max-width: 620px;
    font-size: 18px;
  }

  .hero-build {
    grid-template-columns: 1fr auto;
    gap: 5px 20px;
  }

  .hero-build-label {
    grid-column: 1 / -1;
  }

  .hero-build-action {
    text-align: right;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    max-width: 680px;
  }

  .intro-media img {
    height: 520px;
  }

  .section-heading-split {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }

  .section-heading-split > p {
    max-width: 620px;
  }

  .steps,
  .lane-grid {
    grid-template-columns: 1fr;
  }

  .step,
  .lane {
    min-height: 0;
    padding: 30px 0;
  }

  .step + .step,
  .lane + .lane {
    padding-left: 0;
    border-top: 1px solid currentColor;
    border-left: 0;
  }

  .step + .step {
    border-top-color: var(--line-dark);
  }

  .lane + .lane {
    border-top-color: rgba(255, 255, 255, 0.35);
  }

  .step h3,
  .lane h3 {
    margin-top: 34px;
  }

  .lane p {
    margin-bottom: 32px;
  }

  .project-card-featured,
  .project-card {
    min-height: 500px;
  }

  .story {
    grid-template-columns: 1fr;
  }

  .story img {
    height: 410px;
  }
}

@media (max-width: 680px) {
  .shell,
  .header-inner {
    width: min(calc(100% - 32px), var(--max));
  }

  .brand {
    font-size: 15px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: 91svh;
    background:
      linear-gradient(90deg, rgba(2, 3, 5, 0.93) 0%, rgba(2, 3, 5, 0.56) 100%),
      linear-gradient(0deg, rgba(2, 3, 5, 0.86) 0%, rgba(2, 3, 5, 0) 48%),
      url("assets/live-nature.webp") 56% center / cover no-repeat;
  }

  .hero-content {
    padding-block: 116px 186px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: 52px;
    line-height: 0.96;
  }

  .hero-copy {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.6;
  }

  .support-line {
    margin-top: 16px;
    font-size: 14px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
    margin-top: 28px;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-build {
    min-height: 102px;
    padding: 18px 16px;
  }

  .hero-build strong {
    font-size: 19px;
  }

  .hero-build-action {
    max-width: 145px;
    font-size: 11px;
  }

  .section,
  .intro,
  .start-section {
    padding-block: 76px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2,
  .intro-copy h2 {
    font-size: 39px;
    line-height: 1;
  }

  .intro-copy .section-lead {
    margin-top: 22px;
    font-size: 16px;
  }

  .intro-grid {
    gap: 48px;
  }

  .intro-media::before {
    inset: 10px auto auto -8px;
    width: 64px;
    height: 64px;
  }

  .intro-media img {
    height: 440px;
  }

  .stewardship-band {
    min-height: 460px;
    background-position: 62% center;
  }

  .stewardship-content {
    padding-block: 64px;
  }

  .stewardship-content h2 {
    max-width: 330px;
    font-size: 40px;
  }

  .stewardship-content > p:not(.eyebrow) {
    max-width: 340px;
    font-size: 15px;
  }

  .transparency-note {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px;
  }

  .transparency-note .text-link {
    grid-column: auto;
    margin-top: 8px;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-card-featured {
    grid-column: auto;
  }

  .project-card,
  .project-card-featured {
    min-height: 460px;
  }

  .project-content {
    padding: 22px;
  }

  .project-content h3,
  .project-card-featured .project-content h3 {
    font-size: 30px;
  }

  .project-content p {
    font-size: 14px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .stats div {
    min-height: 128px;
    padding: 24px 0;
  }

  .stats div + div {
    padding-left: 0;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .stats dd {
    font-size: 34px;
  }

  .story img {
    height: 300px;
  }

  .story-copy {
    padding: 30px 24px 36px;
  }

  .story-copy h3 {
    font-size: 31px;
  }

  .start-inner h2 {
    font-size: 48px;
  }

  .start-pattern {
    width: 100%;
    opacity: 0.18;
  }

  .interest-form {
    margin-top: 42px;
  }

  .interest-form > div {
    grid-template-columns: 1fr;
  }

  .footer-grid,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 18px 24px;
  }

  .footer-bottom {
    margin-top: 44px;
    gap: 8px;
  }
}

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

  .section-heading h2,
  .intro-copy h2 {
    font-size: 35px;
  }

  .project-card,
  .project-card-featured {
    min-height: 430px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

}

/* Inner pages */
.primary-nav a[aria-current="page"] {
  color: var(--white);
}

.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.page-hero {
  position: relative;
  min-height: 82svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--black);
  background-position: center;
  background-size: cover;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 4, 6, 0.94) 0%, rgba(3, 4, 6, 0.64) 56%, rgba(3, 4, 6, 0.18) 100%),
    linear-gradient(0deg, rgba(3, 4, 6, 0.82), rgba(3, 4, 6, 0.02) 56%);
}

.page-hero-about {
  background-image: url("assets/live-community.webp");
  background-position: center 56%;
}

.page-hero-projects {
  background-image: url("assets/valley-aerial.webp");
  background-position: center 48%;
}

.page-hero-membership {
  background-image: url("assets/live-nature.webp");
  background-position: center 58%;
}

.page-hero-contact {
  background-image: url("assets/live-participation.webp");
  background-position: center 38%;
}

.page-hero-events {
  background-image: url("assets/live-community.webp");
  background-position: center 38%;
}

.page-hero-readiness {
  background-image: url("assets/valley-aerial.webp");
  background-position: center 52%;
}

.events-statement {
  background-image:
    linear-gradient(90deg, rgba(3, 4, 6, 0.9), rgba(3, 4, 6, 0.14)),
    url("assets/creek.jpg");
  background-position: center 46%;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding-block: 190px 96px;
}

.page-hero-content h1 {
  max-width: 940px;
  margin: 0;
  font-size: 78px;
  font-weight: 900;
  line-height: 0.96;
}

.page-hero-content > p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(247, 248, 251, 0.86);
  font-size: 20px;
  line-height: 1.65;
}

.page-hero-content > .button {
  margin-top: 34px;
}

.page-section {
  padding-block: 112px;
}

.page-section h2,
.join-section h2,
.contact-section h2,
.image-statement h2 {
  margin: 0;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
}

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  gap: 100px;
  align-items: start;
}

.content-split-center {
  align-items: center;
}

.rich-copy {
  color: var(--muted-dark);
  font-size: 18px;
  line-height: 1.8;
}

.rich-copy p {
  margin: 0;
}

.rich-copy p + p {
  margin-top: 24px;
}

.rich-copy-light {
  color: rgba(255, 255, 255, 0.84);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.principle {
  min-height: 300px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle > span,
.benefit > span,
.join-grid article > span,
.contact-lanes > a > span {
  color: var(--blue-light);
  font-size: 11px;
  font-weight: 800;
}

.principle h3,
.benefit h3,
.join-grid h3 {
  margin: 64px 0 14px;
  font-size: 27px;
  line-height: 1.1;
}

.principle p,
.benefit p,
.join-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.image-statement {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.image-statement::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 5, 7, 0.94), rgba(4, 5, 7, 0.4) 66%, rgba(4, 5, 7, 0.12)),
    linear-gradient(0deg, rgba(4, 5, 7, 0.8), rgba(4, 5, 7, 0.04) 58%);
}

.image-statement-valley {
  background-image: url("assets/live-nature.webp");
}

.image-statement-content {
  position: relative;
  z-index: 1;
  padding-block: 92px;
}

.image-statement-content h2 {
  max-width: 780px;
}

.image-statement-content > p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(247, 248, 251, 0.84);
  font-size: 17px;
  line-height: 1.7;
}

.image-statement-content .button {
  margin-top: 30px;
}

.project-detail-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1.08fr) minmax(0, 0.92fr);
  gap: 82px;
  align-items: center;
}

.project-detail-grid-reverse .project-detail-media {
  order: 2;
}

.project-detail-grid-reverse .project-detail-copy {
  order: 1;
}

.project-detail-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--black-soft);
}

.project-detail-media > img:first-child {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-detail-copy .eyebrow {
  margin-top: 28px;
}

.project-detail-copy h2 {
  margin: 0;
}

.page-lead {
  margin: 24px 0 0;
  color: var(--muted-dark);
  font-size: 18px;
  line-height: 1.75;
}

.section-dark .page-lead {
  color: var(--muted);
}

.project-facts {
  margin: 38px 0;
  border-top: 1px solid var(--line-dark);
}

.project-facts div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 26px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
}

.project-facts dt {
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.project-facts dd {
  margin: 0;
  color: var(--muted-dark);
  font-size: 14px;
}

.project-facts-dark {
  border-top-color: var(--line);
}

.project-facts-dark div {
  border-bottom-color: var(--line);
}

.project-facts-dark dt {
  color: var(--blue-light);
}

.project-facts-dark dd {
  color: var(--muted);
}

.status-dark {
  border-color: var(--ink);
  background: var(--ink);
}

.project-detail-food::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.36);
}

.project-detail-media .project-detail-logo {
  position: absolute;
  z-index: 2;
  inset: auto auto 42px 42px;
  width: min(400px, calc(100% - 84px));
  height: auto;
}

.legal-notice {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  padding: 28px 30px;
  border: 1px solid var(--line-dark);
  border-left: 5px solid var(--blue);
  border-radius: 4px;
}

.legal-notice strong {
  color: var(--blue-dark);
  font-size: 12px;
  text-transform: uppercase;
}

.legal-notice p {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
}

.membership-heading {
  align-items: end;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.4fr) minmax(16rem, 0.6fr);
}

.membership-heading > p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 0.4rem;
}

.membership-plan-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 3rem;
  overflow: hidden;
}

.membership-plan {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  flex-direction: column;
  min-height: 36rem;
  padding: clamp(1.6rem, 3vw, 2.5rem);
}

.membership-plan-featured {
  background: var(--blue);
  border-color: var(--blue);
}

.membership-plan-type {
  color: #a9bce7;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 1.4rem;
  text-transform: uppercase;
}

.membership-plan-featured .membership-plan-type {
  color: #dce7ff;
}

.membership-plan h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.12;
  margin: 0;
}

.membership-price {
  align-items: baseline;
  display: flex;
  gap: 0.55rem;
  margin: 2rem 0 0;
}

.membership-price strong {
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  line-height: 0.95;
}

.membership-price span,
.membership-annual {
  color: var(--muted);
}

.membership-plan-featured .membership-price span,
.membership-plan-featured .membership-annual {
  color: #dce7ff;
}

.membership-annual {
  font-size: 0.85rem;
  margin: 0.8rem 0 0;
}

.membership-plan ul {
  display: grid;
  gap: 0.9rem;
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}

.membership-plan li {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  line-height: 1.55;
  padding-top: 0.9rem;
}

.membership-plan .button {
  margin-top: auto;
  width: 100%;
}

.membership-terms-note {
  color: var(--muted);
  line-height: 1.7;
  margin: 2rem 0 0;
  max-width: 72rem;
}

.membership-terms-note a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--blue);
  text-underline-offset: 0.22rem;
}

.operations-links {
  border-top: 1px solid var(--line);
}

.operations-links a {
  align-items: start;
  color: var(--white);
  display: grid;
  gap: 0.6rem 1rem;
  grid-template-columns: 2rem minmax(0, 1fr);
  padding: 1.5rem 0;
  text-decoration: none;
  transition: color 160ms ease;
}

.operations-links a + a {
  border-top: 1px solid var(--line);
}

.operations-links a:hover,
.operations-links a:focus-visible {
  color: #b9caff;
}

.operations-links span {
  color: #8fa8e2;
  font-size: 0.75rem;
  font-weight: 800;
}

.operations-links strong {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.operations-links small {
  color: var(--muted);
  font-size: 0.9rem;
  grid-column: 2;
  line-height: 1.65;
}

.onboarding-steps {
  border-top: 1px solid var(--line-dark);
  list-style: none;
  margin: 0;
  padding: 0;
}

.onboarding-steps li {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  padding: 1.4rem 0;
}

.onboarding-steps li + li {
  border-top: 1px solid var(--line-dark);
}

.onboarding-steps span {
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 800;
}

.onboarding-steps h3,
.onboarding-steps p {
  margin: 0;
}

.onboarding-steps h3 {
  font-size: 1.15rem;
}

.onboarding-steps p {
  color: var(--muted-dark);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 0.35rem;
}

.onboarding-layout {
  display: grid;
  gap: clamp(3rem, 8vw, 8rem);
  grid-template-columns: minmax(0, 0.75fr) minmax(30rem, 1.25fr);
}

.onboarding-intro h2 {
  margin-bottom: 1.5rem;
}

.onboarding-intro > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}

.policy-links {
  border-top: 1px solid var(--line);
  display: grid;
  margin-top: 2.5rem;
}

.policy-links a {
  border-bottom: 1px solid var(--line);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 1rem 0;
  text-decoration: none;
}

.policy-links a:hover,
.policy-links a:focus-visible {
  color: #b9caff;
}

.roster-form {
  background: #0c0c0c;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: clamp(1.4rem, 3vw, 2.5rem);
}

.roster-form > label,
.field-grid label {
  color: var(--white);
  display: grid;
  font-size: 0.78rem;
  font-weight: 700;
  gap: 0.55rem;
}

.roster-form > label + label,
.roster-form > label + .check-field,
.roster-form .field-grid + label {
  margin-top: 1.25rem;
}

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

.roster-form input,
.roster-form select,
.roster-form textarea {
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 2px;
  color: var(--white);
  font: inherit;
  font-size: 0.95rem;
  padding: 0.9rem 1rem;
  width: 100%;
}

.roster-form textarea {
  line-height: 1.55;
  resize: vertical;
}

.roster-form input:focus,
.roster-form select:focus,
.roster-form textarea:focus {
  border-color: #8fa8e2;
  outline: 2px solid rgba(36, 88, 210, 0.4);
  outline-offset: 2px;
}

.roster-form .check-field {
  align-items: start;
  display: grid;
  font-weight: 500;
  gap: 0.8rem;
  grid-template-columns: 1.1rem minmax(0, 1fr);
  line-height: 1.6;
}

.roster-form .check-field input {
  accent-color: var(--blue);
  height: 1.1rem;
  margin-top: 0.2rem;
  padding: 0;
  width: 1.1rem;
}

.field-help,
.optional {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.65;
}

.field-help {
  margin: 0.75rem 0 1.25rem;
}

.roster-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.roster-actions .button[disabled] {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.roster-form .form-message {
  min-height: 1.5rem;
  margin-top: 1rem;
}

.roster-preview {
  border-top: 1px solid var(--line);
  margin-top: 1rem;
  padding-top: 1.4rem;
}

.roster-preview label {
  display: grid;
  font-size: 0.78rem;
  font-weight: 700;
  gap: 0.6rem;
}

.rich-copy-light,
.rich-copy-light p {
  color: var(--muted);
}

.rich-copy-light .button {
  margin-top: 1.2rem;
}

.cancellation-facts {
  border-top: 1px solid var(--line);
  margin-top: 2rem;
}

.cancellation-facts p {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  padding: 1rem 0;
}

.cancellation-facts strong {
  color: var(--white);
}

.readiness-board {
  margin-top: 58px;
  border-top: 1px solid var(--line-dark);
}

.readiness-row {
  display: grid;
  grid-template-columns: minmax(250px, 0.9fr) minmax(320px, 1.45fr) 92px;
  gap: 38px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-dark);
}

.readiness-code {
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.readiness-row h3 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.readiness-row > p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 15px;
}

.readiness-state {
  display: inline-flex;
  min-width: 76px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-size: 11px;
  text-transform: uppercase;
}

.state-live {
  color: #157246;
}

.state-hold {
  color: #8a5500;
}

.readiness-date {
  margin: 22px 0 0;
  color: var(--muted-dark);
  font-size: 12px;
}

.readiness-principles {
  border-top: 1px solid var(--line);
}

.readiness-principles div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.readiness-principles span {
  color: var(--blue-light);
  font-size: 11px;
  font-weight: 800;
}

.readiness-principles p {
  margin: 0;
  color: var(--muted);
}

.readiness-contact {
  padding-block: 76px;
  background: var(--blue);
}

.readiness-contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
}

.readiness-contact h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1;
}

.readiness-contact .eyebrow {
  color: var(--white);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.benefit {
  min-height: 310px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-light .benefit-grid {
  border-color: var(--line-dark);
}

.section-light .benefit {
  border-color: var(--line-dark);
}

.section-light .benefit > span {
  color: var(--blue-dark);
}

.section-light .benefit p {
  color: var(--muted-dark);
}

.standards-list {
  border-top: 1px solid var(--line-dark);
}

.standards-list div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
}

.standards-list span {
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 800;
}

.standards-list p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 16px;
  line-height: 1.65;
}

.section-dark .standards-list,
.section-dark .standards-list div {
  border-color: var(--line);
}

.section-dark .standards-list span {
  color: var(--blue-light);
}

.section-dark .standards-list p {
  color: var(--muted);
}

.join-section {
  padding-block: 112px;
  background:
    linear-gradient(rgba(5, 5, 5, 0.93), rgba(5, 5, 5, 0.93)),
    url("assets/move-pattern.webp") center / 720px auto repeat;
}

.join-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.join-grid article {
  min-height: 300px;
  padding: 30px 34px 34px 0;
}

.join-grid article + article {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: 90px;
}

.faq-layout h2 {
  font-size: 48px;
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

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

.faq-list summary {
  position: relative;
  padding: 25px 42px 25px 0;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  inset: 22px 0 auto auto;
  color: var(--blue-dark);
  font-size: 22px;
}

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

.faq-list details p {
  margin: -5px 0 24px;
  padding-right: 42px;
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.7;
}

.contact-lanes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.contact-lanes > a {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  text-decoration: none;
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.contact-lanes > a:hover {
  background: var(--blue);
  color: var(--white);
}

.contact-lanes > a > span {
  color: var(--blue-dark);
}

.contact-lanes > a:hover > span {
  color: var(--blue-light);
}

.contact-lanes strong {
  margin-top: 54px;
  font-size: 23px;
}

.contact-lanes p {
  margin: 12px 0 0;
  color: var(--muted-dark);
  font-size: 13px;
  line-height: 1.6;
}

.contact-lanes > a:hover p {
  color: rgba(255, 255, 255, 0.8);
}

.contact-section {
  padding-block: 112px;
  background: var(--black);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.28fr);
  gap: 82px;
  align-items: start;
}

.contact-intro > p:not(.eyebrow, .contact-note) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.contact-details {
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.contact-details > div {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.contact-details span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-light);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-details a,
.contact-details p {
  margin: 0;
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.contact-note {
  margin: 30px 0 0;
  color: #777d88;
  font-size: 12px;
  line-height: 1.65;
}

.form-context,
.contact-direct,
.contact-intro {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.form-context {
  margin: 0 0 1rem;
}

.contact-direct {
  margin-top: 2rem;
}

.contact-direct a {
  color: var(--white);
  font-weight: 700;
}

.embedded-form {
  height: 700px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #000;
}

.embedded-form iframe {
  display: block;
  width: 100%;
  height: 700px !important;
  min-height: 700px;
  border: 0;
}

.embedded-form-application,
.embedded-form-application iframe {
  height: 1040px !important;
  min-height: 1040px;
}

.legal-main {
  background: var(--paper);
  color: var(--ink);
}

.legal-header {
  padding: 180px 0 76px;
  background: var(--black);
  color: var(--white);
}

.legal-header h1 {
  max-width: 900px;
  margin: 0;
  font-size: 70px;
  font-weight: 900;
  line-height: 1;
}

.legal-header p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.legal-document {
  max-width: 900px;
  padding-block: 84px 120px;
}

.legal-document > p:first-child {
  color: var(--ink);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.75;
}

.legal-document h2 {
  margin: 54px 0 16px;
  font-size: 29px;
  line-height: 1.2;
}

.legal-document p,
.legal-document li {
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.8;
}

.legal-document a {
  color: var(--blue-dark);
  font-weight: 700;
}

.legal-document li + li {
  margin-top: 8px;
}

.not-found {
  min-height: 100svh;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(5, 5, 5, 0.84), rgba(5, 5, 5, 0.94)),
    url("assets/live-nature.webp") center / cover no-repeat;
}

.not-found img {
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
}

.not-found h1 {
  max-width: 780px;
  margin: 0;
  font-size: 62px;
  font-weight: 900;
  line-height: 1;
}

.not-found p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.not-found .button {
  margin-top: 30px;
}

@media (max-width: 1040px) {
  .page-hero-content h1 {
    font-size: 66px;
  }

  .content-split,
  .project-detail-grid,
  .contact-layout {
    gap: 54px;
  }

  .page-section h2,
  .join-section h2,
  .contact-section h2,
  .image-statement h2 {
    font-size: 49px;
  }

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

@media (max-width: 880px) {
  .page-hero {
    min-height: 74svh;
  }

  .page-hero-content {
    padding-block: 150px 74px;
  }

  .content-split,
  .membership-heading,
  .project-detail-grid,
  .faq-layout,
  .contact-layout,
  .onboarding-layout {
    grid-template-columns: 1fr;
  }

  .project-detail-grid-reverse .project-detail-media,
  .project-detail-grid-reverse .project-detail-copy {
    order: initial;
  }

  .project-detail-media {
    min-height: 540px;
  }

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

  .membership-plan-grid {
    grid-template-columns: 1fr;
  }

  .membership-plan {
    min-height: 0;
  }

  .join-grid {
    grid-template-columns: 1fr;
  }

  .join-grid article {
    min-height: 0;
    padding: 28px 0;
  }

  .join-grid article + article {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .join-grid h3 {
    margin-top: 30px;
  }

  .contact-layout {
    gap: 58px;
  }

  .onboarding-layout {
    gap: 3.5rem;
  }

  .readiness-row {
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  }

  .readiness-state {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .page-hero {
    min-height: 68svh;
  }

  .page-hero::before {
    background:
      linear-gradient(90deg, rgba(3, 4, 6, 0.92), rgba(3, 4, 6, 0.48)),
      linear-gradient(0deg, rgba(3, 4, 6, 0.84), rgba(3, 4, 6, 0.04) 58%);
  }

  .page-hero-content {
    padding-block: 132px 60px;
  }

  .page-hero-content h1 {
    font-size: 47px;
  }

  .page-hero-content > p:not(.eyebrow) {
    margin-top: 22px;
    font-size: 16px;
  }

  .page-section,
  .join-section,
  .contact-section {
    padding-block: 74px;
  }

  .page-section h2,
  .join-section h2,
  .contact-section h2,
  .image-statement h2 {
    font-size: 38px;
  }

  .rich-copy {
    font-size: 16px;
  }

  .content-split {
    gap: 34px;
  }

  .readiness-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 26px 0;
  }

  .readiness-state {
    grid-column: auto;
  }

  .readiness-contact-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .readiness-contact h2 {
    font-size: 34px;
  }

  .principle-grid,
  .benefit-grid,
  .membership-plan-grid,
  .contact-lanes {
    grid-template-columns: 1fr;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .roster-form {
    padding: 1.25rem;
  }

  .roster-actions,
  .roster-actions .button {
    width: 100%;
  }

  .principle,
  .benefit {
    min-height: 250px;
    padding: 26px;
  }

  .principle h3,
  .benefit h3 {
    margin-top: 42px;
  }

  .image-statement {
    min-height: 540px;
    background-position: 58% center;
  }

  .image-statement-content {
    padding-block: 68px;
  }

  .project-detail-grid {
    gap: 38px;
  }

  .project-detail-media {
    min-height: 420px;
  }

  .project-detail-copy .eyebrow {
    margin-top: 22px;
  }

  .page-lead {
    font-size: 16px;
  }

  .project-facts div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .project-detail-media .project-detail-logo {
    inset: auto 24px 26px;
    width: calc(100% - 48px);
  }

  .legal-notice {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 44px;
    padding: 22px;
  }

  .standards-list div {
    grid-template-columns: 34px 1fr;
  }

  .faq-layout {
    gap: 38px;
  }

  .faq-layout h2 {
    font-size: 38px;
  }

  .contact-lanes > a {
    min-height: 210px;
  }

  .contact-lanes strong {
    margin-top: 38px;
  }

  .embedded-form,
  .embedded-form iframe {
    height: 760px !important;
    min-height: 760px;
  }

  .embedded-form-application,
  .embedded-form-application iframe {
    height: 1160px !important;
    min-height: 1160px;
  }

  .legal-header {
    padding: 140px 0 58px;
  }

  .legal-header h1 {
    font-size: 46px;
  }

  .legal-document {
    padding-block: 56px 84px;
  }

  .legal-document > p:first-child {
    font-size: 17px;
  }

  .legal-document h2 {
    margin-top: 42px;
    font-size: 25px;
  }

  .not-found h1 {
    font-size: 44px;
  }
}
