:root {
  --orange: #f26b21;
  --orange-dark: #a83f08;
  --orange-light: #fef2eb;
  --orange-mid: #fddeca;
  --black: #111111;
  --gray-900: #222222;
  --gray-700: #444444;
  --gray-600: #626262;
  --gray-200: #e8e8e8;
  --gray-100: #f4f4f4;
  --gray-50: #f9f9f9;
  --white: #ffffff;
  --green: #006f4d;
  --green-light: #e9f7f1;
  --font: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max-w: 1200px;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.07);
  --shadow: 0 12px 36px rgba(17, 17, 17, 0.1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: var(--font);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 16px;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius-sm);
  font-weight: 700;
}

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

.container {
  width: min(100%, var(--max-w));
  margin: 0 auto;
  padding: 0 48px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 70px;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.2s ease;
}

.nav.nav--shadow {
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav__logo {
  flex-shrink: 0;
  line-height: 0;
}

.nav__logo img {
  width: auto;
  height: 56px;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__links a {
  display: block;
  padding: 8px 10px;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--black);
  background: var(--gray-100);
}

.nav__links a[aria-current="page"] {
  font-weight: 700;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav__button--primary {
  color: var(--black);
  background: var(--orange);
  border-color: var(--orange);
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--black);
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.nav__toggle span {
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  inset-inline: 0;
  z-index: 99;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
  padding: 16px 24px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}

.mobile-menu[data-open="true"] {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 13px 0;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  font-weight: 600;
  text-decoration: none;
}

.mobile-menu a[aria-current="page"] {
  color: var(--orange-dark);
}

.mobile-menu__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.mobile-menu__actions a {
  padding: 11px;
  text-align: center;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14px;
}

.mobile-menu__actions a:last-child {
  color: var(--black);
  background: var(--orange);
  border-color: var(--orange);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 72px;
  color: var(--white);
  background: var(--black);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 380px;
  height: 380px;
  top: -190px;
  right: 2%;
  border: 58px solid rgba(242, 107, 33, 0.13);
}

.hero::after {
  width: 190px;
  height: 190px;
  bottom: -110px;
  left: 44%;
  border: 34px solid rgba(255, 255, 255, 0.05);
}

.breadcrumbs {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 0 0 36px;
  padding: 0;
  color: rgba(255, 255, 255, 0.68);
  list-style: none;
  font-size: 13px;
}

.breadcrumbs a {
  text-decoration: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: 72px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ff9a63;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hero__lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

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

.button--primary {
  color: var(--black);
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 8px 26px rgba(242, 107, 33, 0.24);
}

.button--secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.34);
}

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

.hero__fine-print {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.hero__panel {
  position: relative;
  padding: 30px;
  background: #1c1c1c;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.hero__panel-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.hero__panel-header p,
.hero__panel-header strong {
  margin: 0;
}

.hero__panel-header p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.hero__panel-header strong {
  font-size: 20px;
}

.hero__panel-index {
  color: var(--black);
  background: var(--orange);
  padding: 4px 9px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 900;
}

.hero__pathways {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 32px 0 12px;
}

.hero__pathways::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 9%;
  right: 9%;
  height: 1px;
  background: rgba(242, 107, 33, 0.42);
}

.hero__path {
  position: relative;
  min-height: 96px;
  padding: 24px 8px 10px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  font-size: 11px;
  line-height: 1.4;
}

.hero__path::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 50%;
  width: 9px;
  height: 9px;
  transform: translateX(-50%);
  background: var(--orange);
  border: 4px solid #1c1c1c;
  border-radius: 50%;
  box-sizing: content-box;
}

.hero__path strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
  font-size: 13px;
}

.proof {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof__item {
  padding: 24px 24px 24px 0;
}

.proof__item + .proof__item {
  padding-left: 24px;
  border-left: 1px solid var(--gray-200);
}

.proof__item strong,
.proof__item span {
  display: block;
}

.proof__item strong {
  font-size: 17px;
  line-height: 1.25;
}

.proof__item span {
  margin-top: 4px;
  color: var(--gray-600);
  font-size: 12px;
  line-height: 1.5;
}

.section {
  padding: 104px 0;
}

.section--soft {
  background: var(--gray-50);
  border-block: 1px solid var(--gray-200);
}

.section-header {
  max-width: 700px;
  margin-bottom: 48px;
}

.section-header--center {
  margin-inline: auto;
  text-align: center;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.section-header > p:last-child {
  margin: 16px 0 0;
  color: var(--gray-600);
  font-size: 17px;
  line-height: 1.72;
}

.explainer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.explainer {
  padding: 30px;
  background: var(--white);
  border-top: 3px solid var(--orange);
  box-shadow: inset 0 0 0 1px var(--gray-200);
}

.explainer__number {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--orange-dark);
  background: var(--orange-light);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.explainer h3 {
  margin: 20px 0 8px;
  font-size: 20px;
}

.explainer p {
  margin: 0;
  color: var(--gray-600);
  font-size: 14px;
}

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

.impact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 72px;
  align-items: start;
}

.impact__intro {
  position: sticky;
  top: 120px;
}

.impact__intro h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.impact__intro > p:last-child {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  line-height: 1.72;
}

.impact__points {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.impact__points article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.impact__points article > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--black);
  background: var(--orange);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.impact__points h3 {
  margin: 1px 0 6px;
  font-size: 20px;
}

.impact__points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.7;
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 42px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}

.filter-bar p {
  margin: 0;
  color: var(--gray-600);
  font-size: 14px;
}

.filters {
  display: flex;
  gap: 6px;
}

.filter {
  padding: 9px 14px;
  color: var(--gray-700);
  background: var(--gray-100);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.filter[aria-pressed="true"] {
  color: var(--black);
  background: var(--orange);
  border-color: var(--orange);
}

.project-group + .project-group {
  margin-top: 64px;
}

.project-group[hidden],
.project-card[hidden] {
  display: none;
}

.project-group__heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(280px, 1.3fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gray-200);
}

.project-group__heading .eyebrow {
  margin-bottom: 6px;
}

.project-group__heading h3,
.project-group__heading p {
  margin: 0;
}

.project-group__heading h3 {
  font-size: 27px;
}

.project-group__heading > p {
  color: var(--gray-600);
  font-size: 14px;
}

.project-grid {
  display: grid;
  gap: 18px;
}

.project-grid--residential {
  grid-template-columns: repeat(2, 1fr);
}

.project-grid--commercial {
  grid-template-columns: repeat(3, 1fr);
}

.project-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.project-card:hover {
  transform: translateY(-3px);
  border-color: rgba(242, 107, 33, 0.52);
  box-shadow: var(--shadow);
}

.project-card--featured {
  border-color: rgba(242, 107, 33, 0.6);
}

.project-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  padding: 5px 9px;
  color: var(--green);
  background: var(--green-light);
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 800;
}

.status span {
  width: 7px;
  height: 7px;
  background: currentColor;
  border-radius: 50%;
}

.status--paused {
  color: #795600;
  background: #fff5d6;
}

.status--closed {
  color: var(--gray-700);
  background: var(--gray-100);
}

.project-card__type {
  color: var(--gray-600);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card__region {
  margin: 24px 0 2px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card h4 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.project-card__summary {
  margin: 12px 0 14px;
  color: var(--gray-600);
  font-size: 14px;
}

.project-card__eligibility {
  min-height: 68px;
  margin: 0 0 22px;
  color: var(--gray-600);
  font-size: 12px;
  line-height: 1.55;
}

.project-card__eligibility strong {
  color: var(--gray-900);
}

.project-card__rate {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px;
  padding: 18px 0;
  border-block: 1px solid var(--gray-200);
}

.project-card__rate strong {
  font-size: 24px;
  line-height: 1;
}

.project-card__rate span {
  color: var(--gray-600);
  font-size: 12px;
}

.project-card__examples {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.project-card__examples li {
  position: relative;
  padding-left: 15px;
  color: var(--gray-700);
  font-size: 12px;
}

.project-card__examples li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 2px;
  background: var(--orange);
}

.project-card__notice {
  margin: auto 0 16px;
  color: var(--gray-600);
  font-size: 11px;
  line-height: 1.55;
}

.button--project {
  width: 100%;
  min-height: 44px;
  color: var(--black);
  background: var(--orange-light);
  border-color: var(--orange-mid);
  font-size: 13px;
}

.button--project:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.verification-note {
  margin: 28px 0 0;
  color: var(--gray-600);
  font-size: 12px;
  text-align: center;
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.comparison {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: var(--white);
}

.comparison th,
.comparison td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--gray-200);
  text-align: left;
  vertical-align: top;
}

.comparison thead th {
  color: var(--gray-700);
  background: var(--gray-100);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.comparison tbody th {
  font-size: 14px;
}

.comparison tbody td {
  color: var(--gray-700);
  font-size: 13px;
}

.comparison tbody tr:last-child th,
.comparison tbody tr:last-child td {
  border-bottom: 0;
}

.comparison td strong {
  color: var(--black);
}

.comparison td span {
  color: var(--gray-600);
  font-size: 11px;
}

.comparison-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 20px;
}

.comparison-note > div {
  padding: 22px 24px;
  background: var(--orange-light);
  border-left: 3px solid var(--orange);
}

.comparison-note h3,
.comparison-note p {
  margin: 0;
}

.comparison-note h3 {
  font-size: 17px;
}

.comparison-note p {
  margin-top: 7px;
  color: var(--gray-700);
  font-size: 13px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.step {
  position: relative;
  padding: 28px 22px;
  background: var(--white);
}

.step + .step {
  border-left: 1px solid var(--gray-200);
}

.step__number {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--black);
  background: var(--orange);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.step h3 {
  margin: 18px 0 7px;
  font-size: 17px;
  line-height: 1.3;
}

.step p {
  margin: 0;
  color: var(--gray-600);
  font-size: 12px;
}

.requirements {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 64px;
  align-items: start;
}

.requirements__intro {
  position: sticky;
  top: 104px;
}

.requirements__intro h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.requirements__intro > p:last-of-type {
  margin: 16px 0 0;
  color: var(--gray-600);
}

.requirements__list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--gray-200);
}

.requirements__list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--gray-200);
}

.requirements__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--orange-dark);
  background: var(--orange-light);
  border-radius: var(--radius);
  font-weight: 900;
}

.requirements__list strong,
.requirements__list span {
  display: block;
}

.requirements__list strong {
  font-size: 16px;
}

.requirements__list span {
  margin-top: 3px;
  color: var(--gray-600);
  font-size: 13px;
}

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

.truth__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 72px;
  align-items: center;
}

.truth h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.truth__lead {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
}

.truth__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.truth__fact {
  padding: 24px;
  background: #1a1a1a;
}

.truth__fact strong,
.truth__fact span {
  display: block;
}

.truth__fact strong {
  color: #ff9a63;
  font-size: 17px;
}

.truth__fact span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.truth__disclaimer {
  grid-column: 1 / -1;
  margin: 0;
  padding: 18px 24px;
  color: rgba(255, 255, 255, 0.62);
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.referral {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  overflow: hidden;
  background: var(--orange-light);
  border: 1px solid var(--orange-mid);
  border-radius: var(--radius-lg);
}

.referral__content {
  padding: 42px;
}

.referral__content h2 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.referral__content > p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--gray-700);
}

.referral__content .button {
  margin-top: 24px;
}

.referral__numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--orange-mid);
  border-left: 1px solid var(--orange-mid);
}

.referral__number {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
  background: var(--white);
}

.referral__number strong,
.referral__number span {
  display: block;
}

.referral__number strong {
  font-size: 28px;
}

.referral__number span {
  margin-top: 3px;
  color: var(--gray-600);
  font-size: 12px;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.story {
  margin: 0;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}

.story::before {
  content: "“";
  display: block;
  height: 40px;
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 58px;
  line-height: 1;
}

.story p {
  margin: 12px 0 24px;
  font-size: 18px;
  line-height: 1.6;
}

.story footer {
  color: var(--gray-600);
  font-size: 13px;
}

.stories-link {
  margin-top: 22px;
  text-align: center;
}

.stories-link a {
  color: var(--orange-dark);
  font-weight: 800;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--gray-200);
}

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 2px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  flex-shrink: 0;
  color: var(--orange-dark);
  font-size: 24px;
  font-weight: 500;
}

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

.faq-list details > div {
  padding: 0 52px 22px 2px;
  color: var(--gray-600);
  font-size: 14px;
}

.faq-list details p {
  margin: 0;
}

.faq-list a {
  color: var(--orange-dark);
  font-weight: 700;
}

.section--support {
  padding-top: 0;
}

.support-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 48px;
  align-items: center;
  padding: 42px 46px;
  background: var(--orange-light);
  border: 1px solid var(--orange-mid);
  border-radius: var(--radius-lg);
}

.support-panel h2 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.support-panel p:not(.eyebrow) {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--gray-700);
  line-height: 1.7;
}

.support-panel__action {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  text-align: center;
}

.support-panel__action span {
  color: var(--gray-600);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.final-cta {
  padding: 64px;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius-lg);
  text-align: center;
}

.final-cta h2 {
  max-width: 680px;
  margin: 0 auto;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.final-cta p {
  max-width: 680px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.68);
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.footer {
  padding: 68px 0 28px;
  color: var(--white);
  background: #080808;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 42px;
}

.footer__brand img {
  width: auto;
  height: 48px;
  border-radius: var(--radius);
}

.footer__brand p {
  max-width: 330px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.footer__column h2 {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__column ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__column a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  text-decoration: none;
}

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

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.52);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.footer__bottom p {
  margin: 0;
}

@media (max-width: 1100px) {
  .container {
    padding-inline: 32px;
  }

  .nav__links a {
    padding-inline: 7px;
    font-size: 13px;
  }

  .hero__grid {
    gap: 44px;
  }

  .project-grid--commercial {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-grid--commercial .project-card:last-child {
    grid-column: 1 / -1;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .step:nth-child(4) {
    border-left: 0;
  }

  .step:nth-child(n + 4) {
    border-top: 1px solid var(--gray-200);
  }
}

@media (max-width: 900px) {
  .nav__links,
  .nav__actions {
    display: none;
  }

  .nav__inner {
    justify-content: space-between;
  }

  .nav__toggle {
    display: flex;
  }

  .hero {
    padding-top: 48px;
  }

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

  .requirements,
  .truth__grid,
  .referral,
  .impact__grid,
  .support-panel {
    grid-template-columns: 1fr;
  }

  .impact__intro {
    position: static;
  }

  .hero__panel {
    min-width: 0;
    max-width: 620px;
  }

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

  .proof__item:nth-child(3) {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--gray-200);
  }

  .proof__item:nth-child(4) {
    border-top: 1px solid var(--gray-200);
  }

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

  .explainer {
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 18px;
  }

  .explainer h3 {
    margin: 2px 0 6px;
  }

  .explainer p {
    grid-column: 2;
  }

  .requirements__intro {
    position: static;
  }

  .referral__numbers {
    border-left: 0;
    border-top: 1px solid var(--orange-mid);
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .container {
    padding-inline: 20px;
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    padding: 34px 0 52px;
  }

  .breadcrumbs {
    margin-bottom: 28px;
  }

  .hero h1 {
    font-size: clamp(36px, 11vw, 50px);
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__panel {
    padding: 22px;
  }

  .hero__pathways {
    grid-template-columns: repeat(5, minmax(70px, 1fr));
    overflow-x: auto;
    padding-bottom: 18px;
  }

  .proof__item {
    padding: 20px 16px 20px 0;
  }

  .proof__item + .proof__item {
    padding-left: 16px;
  }

  .filter-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .filters {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .filter {
    padding-inline: 8px;
  }

  .project-group__heading {
    grid-template-columns: 1fr;
    gap: 9px;
  }

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

  .project-grid--commercial .project-card:last-child {
    grid-column: auto;
  }

  .project-card__summary {
    min-height: 0;
  }

  .project-card__eligibility {
    min-height: 0;
  }

  .comparison-note,
  .stories-grid {
    grid-template-columns: 1fr;
  }

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

  .step + .step,
  .step:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--gray-200);
  }

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

  .truth__disclaimer {
    grid-column: auto;
  }

  .referral__content {
    padding: 30px 24px;
  }

  .support-panel {
    gap: 28px;
    padding: 32px 24px;
  }

  .support-panel__action .button {
    width: 100%;
  }

  .final-cta {
    padding: 48px 24px;
  }

  .final-cta__actions .button {
    width: 100%;
  }

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

  .footer__brand {
    grid-column: auto;
  }

  .footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .container {
    padding-inline: 16px;
  }

  .nav__logo img {
    height: 40px;
  }

  .mobile-menu {
    padding-inline: 16px;
  }

  .mobile-menu__actions {
    grid-template-columns: 1fr;
  }

  .hero__panel-header {
    flex-direction: column;
  }

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

  .proof__item,
  .proof__item + .proof__item,
  .proof__item:nth-child(3),
  .proof__item:nth-child(4) {
    padding: 18px 0;
    border-left: 0;
    border-top: 1px solid var(--gray-200);
  }

  .proof__item:first-child {
    border-top: 0;
  }

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

  .project-card {
    padding: 22px;
  }

  .project-card__topline {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

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