:root {
  --green: #66bd29;
  --deep: #082111;
  --black: #050505;
  --paper: #f7f5ef;
  --ink: #111;
  --muted: #5b6260;
  --line: rgba(0,0,0,.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--paper);
  color: var(--ink);
}

.hidden {
  display: none !important;
}

.wrap {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(6, 31, 16, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 28px;
  color: white;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: -.03em;
  font-weight: 950;
  line-height: 1;
}

.brand span {
  color: var(--green);
  font-size: 18px;
}

.brand strong {
  color: white;
  font-size: 30px;
}

nav {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
}

nav a,
.phone {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 900;
}

nav a:hover,
.phone:hover {
  color: var(--green);
}

.phone {
  border: 1px solid rgba(102,189,41,.74);
  padding: 12px 14px;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 92% 12%, rgba(102,189,41,.18), transparent 26%),
    #050505;
  padding: 72px 0;
}

.hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,.94), rgba(5,5,5,.64) 42%, rgba(5,5,5,.42)),
    linear-gradient(0deg, rgba(5,5,5,.65), rgba(5,5,5,.12) 54%),
    url("we-buy-lansing-hero.png") center / cover no-repeat;
  filter: contrast(1.06) saturate(.9);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 150px;
  background: linear-gradient(90deg, rgba(102,189,41,.92), rgba(102,189,41,.34), transparent 70%);
  clip-path: polygon(0 48%, 12% 35%, 22% 56%, 38% 31%, 52% 62%, 70% 38%, 86% 55%, 100% 42%, 100% 100%, 0 100%);
  opacity: .62;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .72fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: 12px;
  font-weight: 950;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(52px, 7vw, 98px);
  line-height: .9;
  letter-spacing: -.06em;
  text-transform: uppercase;
  font-weight: 950;
}

.lead {
  margin: 30px 0 0;
  max-width: 650px;
  color: #eeeeee;
  font-size: 20px;
  line-height: 1.58;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-points span {
  border: 1px solid rgba(102,189,41,.68);
  background: rgba(0,0,0,.36);
  padding: 10px 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 11px;
  font-weight: 950;
}

.lead-form {
  background: white;
  color: #111;
  border-top: 7px solid var(--green);
  padding: 30px;
  box-shadow: 0 34px 90px rgba(0,0,0,.38);
}

.form-head {
  margin-bottom: 24px;
}

.form-head span {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 950;
}

.form-head strong {
  display: block;
  margin-top: 8px;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 15px;
  color: #333;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
}

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

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid #ccd3d0;
  background: #fbfbfb;
  padding: 13px 14px;
  color: #111;
  font: inherit;
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
}

textarea {
  min-height: 128px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(102,189,41,.35);
  border-color: var(--green);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  line-height: 1.45;
  color: #444;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

button {
  width: 100%;
  min-height: 66px;
  border: 0;
  background: var(--green);
  color: #071007;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 17px;
  font-weight: 950;
  cursor: pointer;
  clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
}

.form-note {
  margin: 16px 0 0;
  color: #545454;
  font-size: 13px;
  line-height: 1.45;
}

.section {
  padding: 86px 0;
}

.dark-band {
  background:
    radial-gradient(circle at 14% 10%, rgba(102,189,41,.17), transparent 30%),
    #050505;
  color: white;
}

.paper {
  background: #f8f6ef;
}

.section-head {
  max-width: 900px;
  margin-bottom: 36px;
}

.compact-head {
  max-width: 980px;
}

.section-intro,
.split-copy {
  max-width: 760px;
  margin: 22px 0 0;
  color: #d8d8d8;
  font-size: 18px;
  line-height: 1.65;
}

.section-intro a,
.split-copy a,
.lead a {
  color: var(--green);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  font-weight: 850;
}

.paper .section-intro,
.deal-form-section .section-intro {
  color: #333;
}

.section-head h2,
.split h2,
.compare-copy h2,
.company-head h2,
.about-grid h2,
.founder-grid h2,
.service-grid h2 {
  margin: 0;
  font-size: clamp(38px, 5.8vw, 74px);
  line-height: .92;
  text-transform: uppercase;
  letter-spacing: -.055em;
  font-weight: 950;
}

.green-text {
  color: var(--green);
}

.trust-strip {
  background: #f8f6ef;
  border-top: 1px solid rgba(0,0,0,.12);
  border-bottom: 1px solid rgba(0,0,0,.12);
}

.trust-section {
  padding: 0;
  background: #f8f6ef;
  border-top: 1px solid rgba(0,0,0,.12);
  border-bottom: 1px solid rgba(0,0,0,.12);
}

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

.trust-grid span {
  min-height: 72px;
  display: grid;
  place-items: center;
  border-left: 1px solid rgba(0,0,0,.1);
  color: #111;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 12px;
  font-weight: 950;
}

.trust-grid span:last-child {
  border-right: 1px solid rgba(0,0,0,.1);
}

.benefits-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(102,189,41,.14), transparent 30%),
    #fff;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.benefits-section .section-intro,
.what-we-buy-section .section-intro {
  color: #333;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.benefit-grid article {
  background: #f8f6ef;
  padding: 28px 24px;
  min-height: 280px;
}

.benefit-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 36px;
  border-radius: 50%;
  background: #061f22;
  color: var(--green);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: .08em;
}

.benefit-grid h3 {
  margin: 0 0 14px;
  color: #111;
  font-size: 23px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -.03em;
}

.benefit-grid p {
  color: #333;
  font-size: 16px;
  line-height: 1.62;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.12);
}

.step-grid article {
  background: #050505;
  padding: 32px 28px;
  min-height: 260px;
}

.step-grid span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #061f22;
  color: var(--green);
  font-weight: 950;
  letter-spacing: .08em;
  margin-bottom: 42px;
}

.step-grid h3,
.situation-grid h3 {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: -.03em;
  line-height: 1;
}

.step-grid h3 {
  color: white;
  font-size: 25px;
}

.step-grid p,
.about-grid p {
  color: #d8d8d8;
  line-height: 1.62;
}

.split,
.compare-grid,
.about-grid,
.service-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.situation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.what-we-buy-section .situation-grid {
  grid-template-columns: repeat(3, 1fr);
}

.situation-grid article {
  background: #fbfaf5;
  padding: 28px 26px;
  min-height: 240px;
}

.card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 50%;
  background: #061f22;
  color: var(--green);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: .08em;
}

.situation-grid h3 {
  font-size: 24px;
}

.situation-grid p,
.compare-copy p,
.option-list span,
.split p {
  color: #333;
  font-size: 17px;
  line-height: 1.65;
}

.paper .split-copy,
.service-area .split-copy {
  color: #333;
  font-size: 17px;
}

.compare-section {
  background:
    radial-gradient(circle at 80% 6%, rgba(102,189,41,.12), transparent 30%),
    #fff;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.options-prompt {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  background: #f8f6ef;
  border: 1px solid rgba(0,0,0,.12);
}

.options-prompt h2 {
  max-width: 920px;
  margin: 0;
  color: #111;
  font-size: clamp(34px, 5vw, 62px);
  line-height: .94;
  text-transform: uppercase;
  letter-spacing: -.055em;
  font-weight: 950;
}

.options-prompt p:not(.eyebrow) {
  max-width: 850px;
  margin: 18px 0 0;
  color: #333;
  font-size: 17px;
  line-height: 1.62;
}

.options-prompt a {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 16px 22px;
  background: var(--green);
  color: #071007;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 950;
}

.option-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.option-list div {
  background: #f8f6ef;
  padding: 28px;
}

.option-list strong {
  display: block;
  margin-bottom: 10px;
  color: #111;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -.03em;
}

.founder-section {
  background:
    radial-gradient(circle at 82% 8%, rgba(102,189,41,.12), transparent 30%),
    #f8f6ef;
  border-top: 1px solid rgba(0,0,0,.08);
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.founder-photo {
  margin: 0;
  min-height: 520px;
  position: relative;
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(8,33,17,.24);
  box-shadow: 0 28px 80px rgba(0,0,0,.18);
}

.founder-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 44%;
  background: linear-gradient(0deg, rgba(5,5,5,.92), transparent);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.founder-copy {
  border-left: 8px solid var(--green);
  padding-left: 34px;
}

.founder-copy h2 {
  margin: 0 0 26px;
  font-size: clamp(38px, 5.8vw, 72px);
  line-height: .92;
  text-transform: uppercase;
  letter-spacing: -.055em;
  font-weight: 950;
}

.founder-grid p {
  color: #333;
  font-size: 18px;
  line-height: 1.65;
}

.founder-copy .text-button {
  margin-top: 8px;
}

.ethos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 28px;
  background: rgba(8,33,17,.18);
  border: 1px solid rgba(8,33,17,.18);
}

.ethos-grid span {
  min-height: 88px;
  display: grid;
  place-items: center;
  padding: 14px;
  background: #fff;
  color: #111;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 950;
}

.service-area {
  background:
    radial-gradient(circle at 16% 4%, rgba(102,189,41,.14), transparent 26%),
    #fff;
  border-top: 1px solid rgba(0,0,0,.08);
}

.area-visual {
  display: grid;
  gap: 18px;
}

.service-head {
  max-width: none;
}

.service-copy .split-copy {
  margin-top: 0;
}

.map-card {
  overflow: hidden;
  background: #032f22;
  border: 1px solid rgba(102,189,41,.38);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
}

.map-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1484 / 1059;
  object-fit: cover;
}

.map-pins circle {
  fill: #f05578;
  stroke: #fff;
  stroke-width: 3;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.35));
}

.map-pins .main-node {
  fill: var(--green);
  stroke: white;
  stroke-width: 4;
}

.map-labels text {
  fill: #24333b;
  font-size: 15px;
}

.map-labels .state-label {
  fill: rgba(5,5,5,.55);
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 950;
  stroke: rgba(255,255,255,.62);
  stroke-width: 4px;
}

.map-title-text {
  fill: var(--green);
  font-size: 18px;
  letter-spacing: .12em;
  text-transform: uppercase;
  stroke: rgba(0,0,0,.28);
  stroke-width: 3px;
}

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

.company-head {
  margin-bottom: 34px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.12);
}

.values-grid article {
  min-height: 240px;
  padding: 28px;
  background: #050505;
}

.values-grid span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 36px;
  border-radius: 50%;
  background: #061f22;
  color: var(--green);
  font-weight: 950;
  letter-spacing: .08em;
}

.values-grid h3 {
  margin: 0 0 14px;
  color: white;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.values-grid p {
  margin: 0;
  color: #d8d8d8;
  font-size: 16px;
  line-height: 1.62;
}

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

.partner-solution-grid article {
  min-height: 250px;
}

.philosophy-band {
  background:
    radial-gradient(circle at 84% 10%, rgba(102,189,41,.16), transparent 28%),
    linear-gradient(135deg, #071410, #050505 68%);
  color: white;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.philosophy-callout-simple {
  position: relative;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid rgba(102,189,41,.34);
  background:
    linear-gradient(90deg, rgba(102,189,41,.10), transparent 46%),
    rgba(255,255,255,.045);
  overflow: hidden;
}

.philosophy-callout-simple::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -130px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(102,189,41,.22);
  border-radius: 50%;
}

.philosophy-copy {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.promise-mark {
  position: relative;
  z-index: 1;
  margin: 0;
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 22px;
  border: 1px solid rgba(102,189,41,.38);
  background: #fff;
}

.promise-mark img {
  display: block;
  width: min(100%, 260px);
  height: auto;
}

.philosophy-copy h3 {
  margin: 0;
  color: white;
  font-size: clamp(32px, 5vw, 62px);
  line-height: .94;
  letter-spacing: -.055em;
  text-transform: uppercase;
  font-weight: 950;
}

.philosophy-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: #d8d8d8;
  font-size: 17px;
  line-height: 1.62;
}

.philosophy-copy a {
  margin-top: 24px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 14px 18px;
  background: var(--green);
  color: #071007;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 950;
}

.agent-referral-section {
  background:
    radial-gradient(circle at 86% 4%, rgba(102,189,41,.11), transparent 28%),
    #ffffff;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.agent-referral-section .section-intro {
  color: #333;
}

.referral-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.referral-grid article {
  min-height: 260px;
  padding: 28px;
  background: #f8f6ef;
}

.referral-grid span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 36px;
  border-radius: 50%;
  background: #061f22;
  color: var(--green);
  font-weight: 950;
  letter-spacing: .08em;
}

.referral-grid h3 {
  margin: 0 0 14px;
  color: #111;
  font-size: 25px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -.03em;
}

.referral-grid p {
  margin: 0;
  color: #333;
  font-size: 16px;
  line-height: 1.62;
}

.referral-link {
  margin-top: 26px;
}

.referral-link a {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  padding: 14px 18px;
  background: var(--green);
  color: #071007;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
}

.faq-section {
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.08);
  box-shadow: inset 0 8px 0 var(--green);
}

.faq-section .section-head {
  text-align: center;
}

.faq-section .section-intro {
  margin-left: auto;
  margin-right: auto;
  color: #4c4c4c;
}

.faq-list {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(0,0,0,.14);
  background: rgba(0,0,0,.14);
}

.faq-list details {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.14);
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  min-height: 86px;
  display: grid;
  grid-template-columns: 1fr 52px;
  gap: 18px;
  align-items: center;
  padding: 24px 28px;
  color: #111;
  list-style: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: -.025em;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 950;
}

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

.faq-list summary::after {
  content: "+";
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  justify-self: end;
  background: var(--green);
  color: #071007;
  font-size: 30px;
  line-height: 1;
}

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

.faq-list details p {
  max-width: 860px;
  margin: 0;
  padding: 0 28px 28px;
  color: #333;
  font-size: 17px;
  line-height: 1.65;
}

.subpage-hero {
  padding: 92px 0 78px;
  background:
    radial-gradient(circle at 88% 4%, rgba(102,189,41,.2), transparent 30%),
    #050505;
  color: white;
}

.subpage-hero h1 {
  max-width: 980px;
  font-size: clamp(52px, 8vw, 104px);
}

.subpage-hero p:not(.eyebrow) {
  max-width: 860px;
  margin: 28px 0 0;
  color: #e5e5e5;
  font-size: 20px;
  line-height: 1.62;
}

.last-updated {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: 22px;
  padding: 8px 11px;
  border: 1px solid rgba(102,189,41,.5);
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 11px;
  font-weight: 950;
}

.article-section {
  background: #f8f6ef;
  padding: 72px 0 92px;
}

.article-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 780px);
  gap: 56px;
  align-items: start;
}

.article-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 1px;
  background: rgba(0,0,0,.14);
  border: 1px solid rgba(0,0,0,.14);
}

.article-sidebar .eyebrow {
  margin: 0;
  padding: 18px;
  background: #050505;
}

.article-sidebar a {
  display: block;
  padding: 15px 18px;
  background: #fff;
  color: #111;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 950;
}

.article-sidebar a:hover {
  color: #071007;
  background: var(--green);
}

.article-body {
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
  padding: clamp(30px, 5vw, 58px);
}

.article-lead {
  color: #111;
  font-size: 24px;
  line-height: 1.55;
  font-weight: 700;
}

.article-body section {
  margin-top: 48px;
  padding-top: 42px;
  border-top: 1px solid rgba(0,0,0,.12);
}

.article-body h2 {
  margin: 0 0 20px;
  color: #111;
  font-size: clamp(30px, 4vw, 52px);
  line-height: .98;
  letter-spacing: -.045em;
  text-transform: uppercase;
  font-weight: 950;
}

.article-body p {
  color: #333;
  font-size: 18px;
  line-height: 1.72;
}

.article-body a,
.faq-list a {
  color: #0d4a18;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  font-weight: 850;
}

.article-body a:hover,
.faq-list a:hover,
.section-intro a:hover,
.split-copy a:hover,
.lead a:hover {
  color: var(--green);
}

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

.sitemap-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.14);
  padding: clamp(24px, 3vw, 34px);
}

.sitemap-card h2 {
  margin: 0 0 20px;
  color: #111;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -.03em;
}

.sitemap-card a {
  display: block;
  padding: 12px 0;
  color: #123;
  font-weight: 850;
  text-decoration: none;
  border-top: 1px solid rgba(0,0,0,.1);
}

.sitemap-card a:hover {
  color: var(--green);
}

.article-summary {
  margin-top: 54px;
  padding: 30px;
  background: #050505;
  color: white;
  border-top: 7px solid var(--green);
}

.article-summary strong {
  display: block;
  color: white;
  font-size: clamp(26px, 4vw, 44px);
  line-height: .98;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.article-summary p {
  color: #e5e5e5;
}

.article-summary a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  margin-right: 10px;
  padding: 14px 20px;
  background: var(--green);
  color: #071007;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 950;
}

.about-company-hero h1 {
  max-width: 1080px;
}

.about-principles {
  background: #050505;
  color: white;
  border-top: 1px solid rgba(102,189,41,.45);
  border-bottom: 1px solid rgba(102,189,41,.45);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.principle-grid article {
  min-height: 280px;
  padding: clamp(28px, 5vw, 52px);
  border-right: 1px solid rgba(255,255,255,.14);
}

.principle-grid article:last-child {
  border-right: 0;
}

.principle-grid span {
  display: inline-grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 999px;
  background: #062924;
  color: var(--green);
  font-weight: 950;
  letter-spacing: .08em;
}

.principle-grid h2 {
  margin: 0 0 18px;
  color: white;
  font-size: clamp(32px, 4vw, 58px);
  line-height: .9;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.principle-grid p {
  margin: 0;
  color: #d8e8d2;
  font-size: 18px;
  line-height: 1.6;
}

.about-video-section {
  background: #f8f6ef;
  padding: 76px 0;
}

.about-video-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 5vw, 62px);
  align-items: center;
}

.about-video-grid h2 {
  max-width: 620px;
  margin: 0 0 22px;
  color: #111;
  font-size: clamp(38px, 5vw, 72px);
  line-height: .94;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.about-video-grid p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: #333;
  font-size: 19px;
  line-height: 1.65;
}

.video-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #050505;
  border: 1px solid rgba(0,0,0,.18);
  border-top: 8px solid var(--green);
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.founder-note-section {
  background:
    linear-gradient(135deg, rgba(102,189,41,.16), transparent 42%),
    #0b1412;
  color: white;
  padding: 82px 0;
}

.founder-note {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
}

.founder-note-photo {
  width: 100%;
  margin: 0;
  aspect-ratio: 1 / 1.18;
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(102,189,41,.46);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}

.founder-note-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.founder-note-copy {
  padding: clamp(28px, 5vw, 52px);
  background: rgba(0,0,0,.42);
  border: 1px solid rgba(102,189,41,.36);
  box-shadow: 0 32px 90px rgba(0,0,0,.22);
}

.founder-note-copy p {
  color: #e7efe3;
  font-size: 18px;
  line-height: 1.72;
}

.founder-note-copy .note-lead {
  margin-top: 0;
  color: var(--green);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: -.02em;
  font-weight: 950;
}

.note-statement {
  color: white;
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.03;
  letter-spacing: -.04em;
  text-transform: uppercase;
  font-weight: 950;
}

.note-signature {
  margin: 28px 0 0;
  color: white;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 44px;
  line-height: 1;
}

.article-callout {
  margin: 30px 0;
  padding: 26px;
  background: #f8f6ef;
  border-left: 7px solid var(--green);
}

.article-callout strong {
  display: block;
  color: #111;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 950;
}

.article-callout p {
  margin-bottom: 0;
}

.case-video-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: clamp(26px, 5vw, 54px);
  align-items: center;
  background: #071713;
  margin-inline: calc(clamp(30px, 5vw, 58px) * -1);
  padding: clamp(30px, 5vw, 54px);
  border-top: 8px solid var(--green);
}

.case-video-section h2 {
  color: white;
}

.case-video-section .eyebrow {
  color: var(--green);
}

.case-video-section p:not(.eyebrow) {
  color: #d8e8d2;
}

.vertical-video-frame {
  position: relative;
  overflow: hidden;
  width: min(100%, 320px);
  aspect-ratio: 9 / 16;
  justify-self: center;
  background: #050505;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 24px 70px rgba(0,0,0,.34);
}

.vertical-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.case-study-strip {
  background:
    radial-gradient(circle at 82% 4%, rgba(102,189,41,.14), transparent 26%),
    #050505;
  color: white;
}

.case-study-strip .section-intro {
  color: #d8d8d8;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.12);
}

.story-grid article {
  min-height: 310px;
  display: grid;
  align-content: start;
  padding: 28px;
  background: #050505;
}

.story-grid span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 50%;
  background: #061f22;
  color: var(--green);
  font-weight: 950;
  letter-spacing: .08em;
}

.story-grid h3 {
  margin: 0 0 16px;
  color: white;
  text-transform: uppercase;
  letter-spacing: -.035em;
  font-size: clamp(24px, 3vw, 36px);
  line-height: .98;
}

.story-grid p {
  margin: 0;
  color: #d8d8d8;
  font-size: 16px;
  line-height: 1.62;
}

.story-grid a {
  align-self: end;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 13px 16px;
  background: var(--green);
  color: #071007;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
}

.case-study-card {
  display: grid;
  grid-template-columns: .82fr 1.18fr auto;
  gap: 30px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(102,189,41,.36);
  background:
    radial-gradient(circle at 0 0, rgba(102,189,41,.16), transparent 34%),
    rgba(255,255,255,.06);
}

.case-study-card h3 {
  margin: 0;
  color: white;
  font-size: clamp(26px, 4vw, 48px);
  line-height: .98;
  letter-spacing: -.045em;
  text-transform: uppercase;
  font-weight: 950;
}

.case-study-card p:not(.eyebrow) {
  margin: 0;
  color: #d8d8d8;
  font-size: 17px;
  line-height: 1.62;
}

.case-study-card a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 14px 18px;
  background: var(--green);
  color: #071007;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 950;
}

.partner-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.partner-signal {
  padding: 28px;
  border: 1px solid rgba(102,189,41,.4);
  background:
    radial-gradient(circle at 100% 0, rgba(102,189,41,.18), transparent 34%),
    rgba(255,255,255,.06);
}

.partner-signal strong {
  display: block;
  color: white;
  font-size: clamp(30px, 4vw, 54px);
  line-height: .95;
  letter-spacing: -.045em;
  text-transform: uppercase;
  font-weight: 950;
}

.partner-signal p {
  margin: 20px 0 0;
  color: #d8d8d8;
  font-size: 17px;
  line-height: 1.62;
}

.partner-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(0,0,0,.14);
  border: 1px solid rgba(0,0,0,.14);
}

.partner-card-grid article {
  min-height: 250px;
  padding: 28px 24px;
  background: #fff;
}

.partner-card-grid span {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 999px;
  background: #071410;
  color: var(--green);
  font-weight: 950;
  letter-spacing: .08em;
}

.partner-card-grid h3 {
  margin: 0 0 14px;
  color: #111;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.partner-card-grid p {
  margin: 0;
  color: #333;
  font-size: 16px;
  line-height: 1.62;
}

.investor-section {
  background:
    radial-gradient(circle at 10% 8%, rgba(102,189,41,.16), transparent 30%),
    #050505;
  color: white;
}

.investor-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.investor-grid h2 {
  margin: 0;
  color: white;
  max-width: 520px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1;
  letter-spacing: -.045em;
  text-transform: uppercase;
  font-weight: 950;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.investor-grid p {
  color: #d8d8d8;
  font-size: 18px;
  line-height: 1.68;
}

.investor-proof-band {
  padding: 0 0 86px;
  background: #050505;
  color: white;
}

.investor-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(102,189,41,.38);
  background:
    radial-gradient(circle at 0 0, rgba(102,189,41,.16), transparent 34%),
    rgba(255,255,255,.06);
}

.investor-proof-grid h2 {
  margin: 0;
  color: white;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1;
  letter-spacing: -.045em;
  text-transform: uppercase;
  font-weight: 950;
}

.investor-proof-copy p {
  margin: 0;
  color: #d8d8d8;
  font-size: 17px;
  line-height: 1.66;
}

.investor-proof-copy p + p {
  margin-top: 18px;
}

.deal-form-section {
  background: #f8f6ef;
}

.deal-form-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(320px, 1.14fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.deal-form-grid h2 {
  margin: 0;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: .92;
  letter-spacing: -.05em;
  text-transform: uppercase;
}

.deal-form-grid p {
  color: #333;
  font-size: 18px;
  line-height: 1.68;
}

.about-alex-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 48px;
  align-items: center;
}

.about-alex-portrait {
  margin: 0;
  aspect-ratio: 1 / 1.18;
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(102,189,41,.42);
  box-shadow: 0 30px 80px rgba(0,0,0,.32);
}

.about-alex-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.focus-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.focus-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(8,33,17,.18);
  background: #f8f6ef;
  padding: 10px 13px;
  color: #111;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 900;
}

.compare-hero {
  padding-bottom: 92px;
}

.compare-hero h1 {
  max-width: 760px;
  font-size: clamp(56px, 8vw, 112px);
}

.compare-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.compare-hero-form {
  box-shadow: 0 28px 90px rgba(0,0,0,.36);
}

.compare-table-section {
  background: #f8f6ef;
  padding: 78px 0 92px;
}

.compare-table-section .section-intro {
  color: #333;
}

.comparison-board {
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  box-shadow: 0 24px 70px rgba(0,0,0,.08);
}

.comparison-row {
  display: grid;
  grid-template-columns: .78fr repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid rgba(0,0,0,.12);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row > div {
  min-height: 96px;
  padding: 22px;
  color: #333;
  font-size: 16px;
  line-height: 1.5;
  border-right: 1px solid rgba(0,0,0,.1);
}

.comparison-row > div:last-child {
  border-right: 0;
}

.comparison-head > div {
  min-height: auto;
  background: #f1efe7;
  color: #111;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 950;
}

.comparison-factor {
  background: #faf9f4;
  color: #111 !important;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 12px !important;
  font-weight: 950;
}

.comparison-head .wbl-head,
.comparison-row .wbl-cell {
  background: #071410;
  color: #eaf3e6;
  border-right: 0;
}

.comparison-head .wbl-head {
  color: var(--green);
}

.comparison-row .wbl-cell {
  font-weight: 800;
}

.numbers-section {
  border-top: 0;
}

.numbers-grid,
.compare-content-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.numbers-grid h2,
.compare-content-grid h2 {
  margin: 0;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: .92;
  letter-spacing: -.05em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.numbers-copy p,
.compare-content-grid p {
  color: #e5e5e5;
  font-size: 19px;
  line-height: 1.7;
}

.compare-content-grid p {
  color: #333;
}

.risk-table {
  margin-top: 30px;
  border: 1px solid rgba(102,189,41,.4);
  background: rgba(0,0,0,.24);
}

.risk-table div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.risk-table div:last-child {
  border-bottom: 0;
}

.risk-table span {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 950;
}

.risk-table strong {
  color: white;
  font-size: 18px;
  line-height: 1.35;
}

.risk-table-result {
  background: rgba(102,189,41,.14);
}

.risk-table-result strong {
  color: var(--green);
  font-size: 19px;
}

.fit-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(102,189,41,.18), transparent 34%),
    linear-gradient(135deg, #050705 0%, #071410 58%, #0b2b1a 100%);
  color: #fff;
  border-top: 8px solid var(--green);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.fit-section .eyebrow {
  color: var(--green);
}

.fit-section .section-head h2 {
  color: #fff;
}

.fit-section .section-intro {
  color: #d8e9d0;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.16);
}

.fit-grid article {
  min-height: 360px;
  padding: clamp(28px, 4vw, 44px);
  border-right: 1px solid rgba(0,0,0,.12);
  background: #fbfaf6;
}

.fit-grid article:last-child {
  border-right: 0;
}

.fit-grid span {
  display: inline-grid;
  width: 68px;
  height: 68px;
  place-items: center;
  margin-bottom: 32px;
  border-radius: 999px;
  background: #071410;
  color: var(--green);
  font-weight: 950;
  letter-spacing: .08em;
}

.fit-grid h3 {
  margin: 0 0 18px;
  color: #111;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: .98;
  letter-spacing: -.04em;
  text-transform: uppercase;
  font-weight: 950;
}

.fit-grid p {
  margin: 0;
  color: #333;
  font-size: 17px;
  line-height: 1.65;
}

.fit-grid p a {
  color: #071410;
  font-weight: 900;
  text-decoration-color: var(--green);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.compare-content {
  border-top: 1px solid rgba(0,0,0,.08);
}

.text-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  margin-right: 10px;
  padding: 14px 20px;
  background: var(--green);
  color: #071007;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 950;
}

.text-button:hover {
  background: #82de32;
  color: #071007;
}

.text-button + .text-button {
  background: #071410;
  color: var(--green);
  border: 1px solid rgba(102,189,41,.52);
}

.text-button + .text-button:hover {
  background: var(--green);
  color: #071007;
}

.process-hero h1 {
  max-width: 740px;
}

.process-intro {
  background: #fff;
  color: #111;
  padding: 64px 0;
  border-top: 8px solid var(--green);
  border-bottom: 1px solid rgba(0,0,0,.1);
}

.process-intro-grid {
  padding: clamp(28px, 5vw, 52px);
  background:
    linear-gradient(90deg, rgba(102,189,41,.13), transparent 42%),
    #f8f6ef;
  border: 1px solid rgba(0,0,0,.12);
  border-left: 8px solid var(--green);
}

.process-intro-grid,
.process-content-grid,
.offer-balance-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.process-intro h2,
.process-content-grid h2,
.offer-balance-grid h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: .92;
  letter-spacing: -.05em;
  text-transform: uppercase;
}

.process-intro p:not(.eyebrow),
.offer-balance-grid p,
.process-content-grid p {
  margin: 0;
  color: #e5e5e5;
  font-size: 19px;
  line-height: 1.7;
}

.process-intro p:not(.eyebrow) {
  color: #333;
}

.process-steps-section {
  background: #f8f6ef;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.1);
}

.process-timeline {
  display: grid;
  gap: 1px;
  background: rgba(0,0,0,.14);
  border: 1px solid rgba(0,0,0,.14);
}

.process-timeline article {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  padding: clamp(28px, 5vw, 50px);
  background: #fff;
}

.process-timeline span {
  display: inline-grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 999px;
  background: #071410;
  color: var(--green);
  font-weight: 950;
  letter-spacing: .08em;
}

.process-timeline h3 {
  margin: 0 0 14px;
  color: #111;
  font-size: clamp(30px, 4vw, 54px);
  line-height: .96;
  letter-spacing: -.045em;
  text-transform: uppercase;
  font-weight: 950;
}

.process-timeline p {
  max-width: 820px;
  margin: 0;
  color: #333;
  font-size: 18px;
  line-height: 1.7;
}

.offer-balance-section {
  border-top: 0;
}

.offer-balance-section .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  background: var(--green);
  color: #071007;
}

.offer-balance-card {
  display: grid;
  gap: 1px;
  background: rgba(102,189,41,.38);
  border: 1px solid rgba(102,189,41,.38);
}

.offer-balance-card div {
  padding: 24px;
  background: rgba(0,0,0,.36);
}

.offer-balance-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 950;
}

.offer-balance-card strong {
  display: block;
  color: white;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.04;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.process-content-grid p {
  color: #333;
}

.process-content {
  background:
    linear-gradient(180deg, rgba(102,189,41,.1), transparent 210px),
    #f8f6ef;
  border-top: 8px solid var(--green);
  border-bottom: 1px solid rgba(0,0,0,.1);
}

.process-content-grid {
  padding: clamp(28px, 5vw, 54px);
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
}

.offer-equation {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
  margin-bottom: 30px;
}

.offer-equation div {
  position: relative;
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 10px;
  min-width: 0;
  padding: 18px 16px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
}

.offer-equation b {
  display: none;
}

.offer-equation div:not(:last-of-type)::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: -20px;
  z-index: 2;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  background: #fff;
  color: var(--green);
  border: 1px solid rgba(102,189,41,.45);
  border-radius: 999px;
  font-size: 20px;
  line-height: 1;
  font-weight: 950;
}

.offer-equation div:nth-of-type(3)::after {
  content: "=";
}

.offer-equation span {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 11px;
  font-weight: 950;
}

.offer-equation strong {
  overflow-wrap: anywhere;
  color: #111;
  text-transform: uppercase;
  letter-spacing: -.03em;
  font-size: clamp(17px, 1.8vw, 24px);
  line-height: 1.04;
}

.offer-equation .equation-result {
  background: #071410;
}

.offer-equation .equation-result strong {
  color: white;
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.city-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(8,33,17,.18);
  background: #f8f6ef;
  padding: 10px 13px;
  color: #111;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 900;
}

.cta {
  background: var(--green);
  color: #071007;
  padding: 44px 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 24px;
  align-items: center;
}

.cta strong {
  display: block;
  font-size: clamp(26px, 4vw, 45px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -.045em;
  font-weight: 950;
}

.cta span {
  display: block;
  margin-top: 8px;
  color: #092009;
  font-size: 17px;
}

.cta a {
  color: #071007;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.mini-lead-form {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(140px, .7fr) auto;
  gap: 10px;
}

.mini-lead-form input {
  min-height: 56px;
  border-color: rgba(0,0,0,.24);
  background: #fff;
}

.mini-lead-form button {
  width: auto;
  min-height: 56px;
  padding: 0 22px;
  background: #050505;
  color: white;
  font-size: 12px;
  clip-path: none;
}

footer {
  background: #050505;
  color: white;
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .72fr .72fr .82fr;
  gap: 42px;
}

.footer-brand {
  margin-bottom: 18px;
}

footer p,
footer a {
  color: #d4d4d4;
  line-height: 1.58;
}

footer a {
  display: block;
  text-decoration: none;
  margin-bottom: 9px;
}

footer a:hover {
  color: var(--green);
}

footer h4 {
  margin: 0 0 14px;
  color: white;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 12px;
}

.disclosure {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #9c9c9c;
  font-size: 12px;
  line-height: 1.55;
}

@media (max-width: 1050px) {
  .hero-grid,
  .split,
  .compare-grid,
  .compare-hero-grid,
  .numbers-grid,
  .compare-content-grid,
  .process-intro-grid,
  .process-content-grid,
  .offer-balance-grid,
  .about-grid,
  .about-video-grid,
  .founder-grid,
  .founder-note,
  .partner-hero-grid,
  .investor-grid,
  .investor-proof-grid,
  .deal-form-grid,
  .service-grid,
  .philosophy-callout-simple,
  .options-prompt,
  .cta-grid,
  .sitemap-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .benefit-grid,
  .partner-card-grid,
  .values-grid,
  .referral-grid,
  .principle-grid,
  .what-we-buy-section .situation-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .comparison-board {
    overflow-x: auto;
  }

  .comparison-row {
    min-width: 920px;
  }

  .risk-table div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .principle-grid article:nth-child(2) {
    border-right: 0;
  }

  .principle-grid article:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255,255,255,.14);
  }

  .lead-form {
    max-width: 720px;
  }

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

  .mini-lead-form {
    grid-template-columns: 1fr;
  }

  .philosophy-callout-simple {
    grid-template-columns: 1fr;
  }

  .case-study-card {
    grid-template-columns: 1fr;
  }

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

  .article-layout {
    grid-template-columns: 1fr;
  }

  .about-alex-hero-grid {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
    grid-template-columns: repeat(3, 1fr);
  }

  .article-sidebar .eyebrow {
    grid-column: 1 / -1;
  }

  .offer-equation {
    grid-template-columns: 1fr;
  }

  .offer-equation b {
    justify-self: center;
  }

  .offer-equation div:not(:last-of-type)::after {
    top: auto;
    right: auto;
    bottom: -21px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 760px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  nav {
    margin-left: 0;
    justify-content: flex-start;
    gap: 14px;
  }

  .phone {
    margin-top: 2px;
  }

  .hero {
    min-height: auto;
    padding: 54px 0;
  }

  .hero-image {
    opacity: .72;
  }

  .form-row,
  .situation-grid,
  .trust-grid,
  .benefit-grid,
  .case-video-section,
  .story-grid,
  .partner-card-grid,
  .values-grid,
  .referral-grid,
  .fit-grid,
  .principle-grid,
  .sitemap-grid,
  .ethos-grid {
    grid-template-columns: 1fr;
  }

  .fit-grid article,
  .fit-grid article:nth-child(2),
  .fit-grid article:last-child {
    grid-column: auto;
    min-height: auto;
    border-right: 0;
    border-top: 1px solid rgba(0,0,0,.12);
  }

  .fit-grid article:first-child {
    border-top: 0;
  }

  .process-timeline article {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .principle-grid article,
  .principle-grid article:nth-child(2),
  .principle-grid article:last-child {
    grid-column: auto;
    min-height: auto;
    border-right: 0;
    border-top: 1px solid rgba(255,255,255,.14);
  }

  .principle-grid article:first-child {
    border-top: 0;
  }

  h1 {
    font-size: clamp(47px, 16vw, 72px);
  }

  .lead,
  .situation-grid p,
  .compare-copy p,
  .option-list span {
    font-size: 16px;
  }

  .lead-form {
    padding: 24px 20px;
  }

  .founder-photo,
  .founder-photo img {
    min-height: 390px;
  }

  .founder-copy {
    padding-left: 22px;
    border-left-width: 6px;
  }

  .values-grid article {
    min-height: 210px;
  }

  .philosophy-callout-simple {
    padding: 22px;
  }

  .philosophy-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .subpage-hero {
    padding: 64px 0 56px;
  }

  .subpage-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .article-section {
    padding: 44px 0 64px;
  }

  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .article-body p,
  .article-lead {
    font-size: 17px;
  }

  .about-alex-portrait {
    max-width: 360px;
  }

  .trust-grid span {
    min-height: 58px;
    border-right: 1px solid rgba(0,0,0,.1);
    border-bottom: 1px solid rgba(0,0,0,.08);
  }

  .faq-list summary {
    min-height: 74px;
    grid-template-columns: 1fr 44px;
    padding: 20px;
    font-size: 20px;
  }

  .faq-list summary::after {
    width: 44px;
    height: 44px;
  }

  .faq-list details p {
    padding: 0 20px 22px;
    font-size: 16px;
  }
}
