:root {
  --ink: #12201d;
  --coal: #1f2925;
  --muted: #5a6862;
  --line: #d9e0dc;
  --paper: #fbfcfa;
  --field: #eef3ef;
  --green: #176b4f;
  --green-dark: #0f4a38;
  --clay: #a45c28;
  --amber: #d59031;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(20, 33, 29, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(18, 32, 29, 0.86);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 44px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
}

.brand-mark img {
  width: 38px;
  height: 30px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 24px);
  font-size: 0.9rem;
  font-weight: 800;
}

nav a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

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

.nav-cta {
  min-height: 40px;
  padding: 9px 13px;
  border-radius: 8px;
  background: var(--amber);
  color: #1c1408;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 128px clamp(18px, 5vw, 70px) 46px;
  background:
    linear-gradient(90deg, rgba(9, 21, 18, 0.92) 0%, rgba(9, 21, 18, 0.76) 38%, rgba(9, 21, 18, 0.25) 72%),
    url("assets/terraforeman-hero.jpg") center / cover no-repeat;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 18%;
  background: linear-gradient(180deg, rgba(18, 32, 29, 0), var(--paper));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #fff2d7;
}

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

h1 {
  margin-bottom: 10px;
  font-size: clamp(4rem, 12vw, 9.4rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-copy {
  width: min(660px, 100%);
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--amber);
  color: #201408;
}

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

.button.secondary-dark {
  border-color: var(--green);
  background: transparent;
  color: var(--green-dark);
}

.button.full {
  width: 100%;
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.section,
.problem-band,
.cta-section {
  padding: clamp(58px, 9vw, 112px) clamp(18px, 5vw, 70px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.problem-band {
  background: var(--green);
  color: var(--white);
}

.problem-grid,
.outcome-grid,
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.problem-grid h2,
.cta-grid h2 {
  color: var(--white);
}

.problem-list {
  display: grid;
  gap: 10px;
}

.problem-list p {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading.compact {
  width: min(850px, 100%);
}

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

.workflow article,
.feature-grid article,
.price-card,
.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(18, 32, 29, 0.04);
}

.workflow article {
  min-height: 245px;
  padding: 18px;
}

.step-number {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 950;
}

.workflow p,
.feature-grid p,
.price-card p,
.outcomes span,
.faq-grid p,
.cta-grid p,
.site-footer p {
  color: var(--muted);
}

.muted {
  background: var(--field);
}

.action-section {
  background: var(--field);
}

.action-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.action-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.action-points {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.action-points article {
  padding: 16px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--amber);
  border-radius: 8px;
  background: var(--white);
}

.action-points strong,
.action-points span {
  display: block;
}

.action-points span {
  margin-top: 4px;
  color: var(--muted);
}

.action-demo {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #cfd9d4;
  border-radius: 8px;
  background: #111a17;
  box-shadow: var(--shadow);
}

.demo-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 900;
}

.demo-toolbar strong {
  color: var(--white);
}

.demo-stage {
  position: relative;
  display: grid;
  min-height: 520px;
  padding: 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    #12201d;
  background-size: 48px 48px;
}

.demo-card {
  position: absolute;
  width: min(330px, calc(100% - 36px));
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(251, 252, 250, 0.96);
  color: var(--ink);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
  animation: demoPulse 12s ease-in-out infinite;
}

.demo-card h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.demo-card p,
.demo-card li,
.demo-card dd {
  color: var(--muted);
}

.demo-card p {
  margin-bottom: 0;
}

.demo-card ul {
  margin: 0;
  padding-left: 18px;
}

.demo-card dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 14px 0 0;
}

.demo-card dl div {
  padding: 10px;
  border-radius: 8px;
  background: var(--field);
}

.demo-card dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.demo-card dd {
  margin: 2px 0 0;
  color: var(--green-dark);
  font-weight: 950;
}

.demo-tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #dff1e7;
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.demo-tag.amber {
  background: #fff2d7;
  color: #7b481f;
}

.demo-tag.clay {
  background: #f6e2d4;
  color: #743c1c;
}

.demo-lead {
  top: 24px;
  left: 24px;
  animation-delay: 0s;
}

.demo-photo {
  top: 122px;
  right: 24px;
  animation-delay: 2.6s;
}

.demo-estimate {
  bottom: 88px;
  left: 58px;
  animation-delay: 5.2s;
}

.demo-followup {
  right: 38px;
  bottom: 24px;
  animation-delay: 7.8s;
}

.estimate-lines {
  display: grid;
  gap: 8px;
  margin: 14px 0;
}

.estimate-lines span {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--amber));
}

.profit-killers-band {
  padding: clamp(42px, 7vw, 76px) clamp(18px, 5vw, 70px);
  background: #f6efe3;
}

.profit-killers-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

.profit-killers-grid h2 {
  margin-bottom: 0;
  font-size: clamp(1.85rem, 3.4vw, 3.25rem);
}

.profit-killers-copy {
  display: grid;
  gap: 18px;
  position: relative;
  padding: 22px;
  border: 1px solid #e0bf82;
  border-left: 5px solid var(--clay);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(18, 32, 29, 0.04);
}

.profit-killers-copy::before {
  content: "Built from the seat of the machine";
  width: max-content;
  max-width: 100%;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.profit-killers-copy p {
  margin: 0;
  color: #4d3321;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 850;
  line-height: 1.5;
}

.builder-band {
  padding: clamp(52px, 8vw, 92px) clamp(18px, 5vw, 70px);
  background: var(--paper);
}

.builder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.builder-copy {
  max-width: 760px;
}

.builder-copy h2 {
  color: var(--ink);
}

.builder-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
}

.builder-link {
  color: var(--green);
  font-weight: 950;
  text-decoration-color: rgba(35, 80, 62, 0.28);
  text-underline-offset: 4px;
}

.builder-proof {
  padding: 24px;
  border: 1px solid #d8c3a0;
  border-radius: 8px;
  background: #fffaf1;
  box-shadow: var(--shadow);
}

.builder-proof strong {
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 1.22rem;
  line-height: 1.15;
}

.builder-proof ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.builder-proof li {
  position: relative;
  padding-left: 24px;
  color: #4d3321;
  font-weight: 850;
  line-height: 1.38;
}

.builder-proof li::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--clay);
}

@keyframes demoPulse {
  0%,
  24%,
  100% {
    transform: translateY(0);
    opacity: 0.78;
  }

  8%,
  16% {
    transform: translateY(-7px);
    opacity: 1;
  }
}

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

.proof-section {
  padding-top: clamp(42px, 7vw, 78px);
  padding-bottom: clamp(34px, 6vw, 64px);
  background: var(--paper);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

.proof-grid h2 {
  margin-bottom: 0;
  font-size: clamp(1.75rem, 3vw, 3rem);
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.proof-strip {
  margin-bottom: 0;
}

.value-strip article {
  padding: 18px;
  border: 1px solid #cbd8d1;
  border-left: 5px solid var(--amber);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(18, 32, 29, 0.04);
}

.value-strip strong,
.value-strip span {
  display: block;
}

.value-strip strong {
  margin-bottom: 6px;
  color: var(--green-dark);
  font-size: 1.05rem;
  line-height: 1.22;
}

.value-strip span {
  color: var(--muted);
  font-size: 0.96rem;
}

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

.feature-grid article {
  min-height: 190px;
  padding: 22px;
}

.included-section {
  background: var(--paper);
}

.included-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.included-grid p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.included-list article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(18, 32, 29, 0.04);
}

.included-list strong,
.included-list span {
  display: block;
}

.included-list strong {
  margin-bottom: 5px;
  color: var(--clay);
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
}

.included-list span {
  color: var(--muted);
}

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

.outcome-section p,
.outcome-section .outcomes span {
  color: rgba(255, 255, 255, 0.74);
}

.outcomes {
  display: grid;
  gap: 12px;
}

.outcomes article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

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

.outcomes strong {
  margin-bottom: 5px;
  font-size: 1.05rem;
}

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

.pricing-section {
  background: var(--field);
}

.pricing-heading {
  width: min(880px, 100%);
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.price-card.featured {
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.featured-label {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plan-name {
  margin-bottom: 14px;
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: 2.45rem;
}

.price-card h3 span {
  color: var(--muted);
  font-size: 1rem;
}

.price-card .plan-summary {
  min-height: 76px;
  margin: 10px 0 0;
}

.price-card ul {
  flex: 1;
  margin: 20px 0;
  padding-left: 20px;
}

.price-card li {
  margin: 8px 0;
}

.price-card .trial-note {
  margin: 12px 0 0;
  font-size: 0.82rem;
  text-align: center;
}

.price-card .founding-list-price {
  margin: -4px 0 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.texting-addon {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  gap: 24px;
  align-items: center;
  margin-top: 16px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.texting-addon h3,
.texting-addon p {
  margin: 0;
}

.texting-addon .plan-name {
  margin-bottom: 6px;
}

.texting-addon > p {
  color: var(--muted);
}

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

.faq-grid details {
  padding: 18px;
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-grid p {
  margin: 12px 0 0;
}

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

.lead-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.lead-form h3,
.lead-form > p {
  margin-bottom: 0;
}

.signup-points {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.84);
}

.terms-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  line-height: 1.5;
  text-transform: none;
}

.terms-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--amber);
}

.terms-check a {
  color: var(--white);
}

.website-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font: inherit;
  text-transform: none;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
}

.form-status {
  min-height: 1.3rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 800;
}

.form-status.success {
  color: #dcfce7;
}

.form-status.error {
  color: #fee2e2;
}

.form-note a {
  color: var(--white);
  font-weight: 900;
}

.site-footer {
  padding: 24px clamp(18px, 5vw, 70px);
  background: #111a17;
  color: var(--white);
}

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

.footer-grid p {
  margin: 6px 0 0;
}

.legal-note {
  max-width: 680px;
  font-size: 0.82rem;
}

.footer-links {
  position: static;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  overflow: visible;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  text-decoration: none;
}

.legal-page {
  background: var(--paper);
}

.legal-main {
  min-height: 74vh;
  padding: 128px clamp(18px, 5vw, 70px) 72px;
}

.legal-content {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-content h1 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(2.6rem, 8vw, 5rem);
}

.legal-content h2 {
  margin-top: 32px;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 1.15rem;
  text-transform: uppercase;
}

.legal-content p {
  color: var(--muted);
}

.seo-hero {
  padding: 138px clamp(18px, 5vw, 70px) 72px;
  background:
    linear-gradient(90deg, rgba(18, 32, 29, 0.95), rgba(18, 32, 29, 0.72)),
    url("assets/terraforeman-hero.jpg") center / cover no-repeat;
  color: var(--white);
}

.seo-hero .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: end;
}

.seo-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(2.7rem, 6.4vw, 6.4rem);
  line-height: 0.96;
}

.seo-hero p {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
}

.seo-proof {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.seo-proof strong,
.seo-proof span {
  display: block;
}

.seo-proof strong {
  color: var(--amber);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.seo-content {
  padding: clamp(54px, 8vw, 94px) clamp(18px, 5vw, 70px);
}

.seo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.seo-article h2 {
  margin-top: 38px;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

.seo-article h2:first-child {
  margin-top: 0;
}

.seo-article p,
.seo-article li {
  color: var(--muted);
  font-size: 1.05rem;
}

.seo-article ul,
.seo-article ol {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding-left: 22px;
}

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

.seo-card,
.seo-sidebar {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(18, 32, 29, 0.04);
}

.seo-card {
  display: grid;
  gap: 8px;
  min-height: 210px;
  padding: 20px;
  text-decoration: none;
}

.seo-card:hover h3 {
  color: var(--green);
}

.home-seo-links .seo-card {
  min-height: auto;
}

.seo-card p,
.seo-sidebar p,
.seo-sidebar li {
  color: var(--muted);
}

.seo-sidebar {
  position: sticky;
  top: 90px;
  display: grid;
  gap: 18px;
  padding: 22px;
}

.seo-sidebar nav {
  display: grid;
  gap: 8px;
}

.seo-sidebar nav a {
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.seo-sidebar ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.seo-cta-band {
  padding: clamp(46px, 7vw, 76px) clamp(18px, 5vw, 70px);
  background: var(--green-dark);
  color: var(--white);
}

.seo-cta-band p {
  color: rgba(255, 255, 255, 0.78);
}

.updated {
  font-weight: 800;
}

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

  .feature-grid,
  .value-strip,
  .included-list,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .profit-killers-grid {
    grid-template-columns: 1fr;
  }

  .texting-addon {
    grid-template-columns: 1fr;
  }

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

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

  .seo-hero .section-inner,
  .seo-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    background: rgba(18, 32, 29, 0.74);
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  nav a {
    flex: 0 0 auto;
  }

  .hero {
    min-height: 86vh;
    padding-top: 124px;
    padding-bottom: 24px;
    background:
      linear-gradient(90deg, rgba(9, 21, 18, 0.94) 0%, rgba(9, 21, 18, 0.75) 60%, rgba(9, 21, 18, 0.42) 100%),
      url("assets/terraforeman-hero.jpg") center / cover no-repeat;
  }

  .section,
  .cta-section {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 3.25rem);
  }

  .workflow,
  .feature-grid,
  .value-strip,
  .included-list,
  .pricing-grid,
  .faq-grid,
  .problem-grid,
  .outcome-grid,
  .action-grid,
  .proof-grid,
  .builder-grid,
  .profit-killers-grid,
  .included-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    margin-bottom: 18px;
    font-size: 1.04rem;
  }

  .hero-actions {
    margin-bottom: 24px;
  }

  .workflow article {
    min-height: auto;
    padding: 14px 16px;
  }

  .workflow p,
  .feature-grid p {
    margin-bottom: 0;
  }

  .feature-grid.expanded article {
    min-height: auto;
    padding: 16px;
  }

  .demo-stage {
    min-height: auto;
  }

  .demo-card {
    position: relative;
    inset: auto;
    width: 100%;
    animation: none;
  }

  .demo-photo,
  .demo-estimate,
  .demo-followup {
    display: none;
  }

  .demo-stage {
    gap: 12px;
  }

  .step-number {
    margin-bottom: 8px;
  }

  .price-card .plan-summary {
    min-height: auto;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

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

  .home-seo-links .seo-card {
    padding: 14px 16px;
  }

  .home-seo-links .seo-card h3 {
    margin-bottom: 0;
  }

  .home-seo-links .seo-card p {
    display: none;
  }

  .seo-sidebar {
    position: static;
  }
}

@media (max-width: 460px) {
  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }
}

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

  .demo-card {
    animation: none;
  }
}
