:root {
  --carbon:    #080808;
  --carbon2:   #111111;
  --carbon3:   #1A1A1A;
  --carbon4:   #242424;
  --orange:    #FF5500;
  --orange-dim: rgba(255,85,0,0.15);
  --green:     #00A86B;
  --green-dim: rgba(0,168,107,0.12);
  --white:     #F4F1EC;
  --white-55:  rgba(244,241,236,0.55);
  --white-40:  rgba(244,241,236,0.40);
  --white-20:  rgba(244,241,236,0.20);
  --gray1:     #888888;
  --gray2:     #555555;
  --gray3:     #333333;
  --rule:      #1E1E1E;
}

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

body {
  background: var(--carbon);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  max-width: 1920px;
  margin: 0 auto;
  display: block;
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rule);
}
.nav-brand {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
}
.nav-brand span { color: var(--orange); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray1);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--carbon) !important;
  background: var(--orange);
  padding: 10px 24px;
  text-decoration: none;
  transition: background 0.3s;
}
.nav-cta:hover { background: #FF7733; color: var(--carbon) !important; }


/* ═══════════════════
   SECTION 1 — HERO
   ═══════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 80px 78px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,8,0) 0%, rgba(8,8,8,0.3) 40%, rgba(8,8,8,0.85) 75%, #080808 100%),
    linear-gradient(90deg, rgba(8,8,8,0.7) 0%, rgba(8,8,8,0.1) 50%, rgba(8,8,8,0) 100%);
  z-index: 1;
}
.hero-img {
  position: absolute;
  inset: 0;
  background: var(--carbon3);
  /* PLACEHOLDER: Replace with aerial drone photo of Hill Country cedar thicket / cleared estate */
}
.hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255,85,0,0.03) 59px, rgba(255,85,0,0.03) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,85,0,0.03) 59px, rgba(255,85,0,0.03) 60px);
}
.hero-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray3);
  border: 1px dashed var(--gray3);
  margin: 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.hero-headline {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.hero-headline .accent { color: var(--orange); }
.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--white-55);
  max-width: 540px;
  margin-bottom: 40px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--carbon);
  background: var(--orange);
  padding: 16px 36px;
  text-decoration: none;
  transition: all 0.3s;
}
.hero-cta:hover { background: #FF7733; gap: 24px; }
.hero-cta::after { content: '→'; }

.hero-geo {
  position: absolute;
  bottom: 32px;
  right: 48px;
  z-index: 2;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-40);
  text-align: right;
  line-height: 2;
}


/* ═══════════════════════
   SECTION 2 — PAIN POINTS
   ═══════════════════════ */
.pain-section {
  padding: 120px 78px;
  border-top: 1px solid var(--rule);
}
.section-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
}
.pain-card {
  background: var(--carbon2);
  padding: 48px 40px;
  position: relative;
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--orange);
  opacity: 0;
  transition: opacity 0.3s;
}
.pain-card:hover::before { opacity: 1; }
.pain-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.pain-title {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.3;
  margin-bottom: 16px;
}
.pain-title .accent { color: var(--orange); }
.pain-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--white-55);
}


/* ═══════════════════════════
   SECTION 3 — SERVICE PATHWAY
   ═══════════════════════════ */
.pathway-section {
  padding: 120px 78px;
  border-top: 1px solid var(--rule);
}
.pathway-title {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 40px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}
.pathway-title .accent { color: var(--orange); }
.pathway-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--white-55);
  max-width: 600px;
  margin-bottom: 64px;
}
.pathway-flow {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.pathway-step {
  flex: 1;
  background: var(--carbon2);
  padding: 36px 28px;
  position: relative;
  border-left: 1px solid var(--carbon);
}
.pathway-step:first-child { border-left: none; }
.pathway-step-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--green);
  margin-bottom: 16px;
}
.pathway-step-title {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.pathway-step-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--white-55);
}
.pathway-arrow {
  display: flex;
  align-items: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px;
  color: var(--orange);
  padding: 0 2px;
  background: var(--carbon);
}
.pathway-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--orange);
  text-decoration: none;
  margin-top: 12px;
  display: inline-block;
  border-bottom: 1px solid rgba(255,85,0,0.3);
  transition: border-color 0.3s;
}
.pathway-link:hover { border-color: var(--orange); }


/* ═══════════════════════════════════
   SECTION 4 — MEDIA / BEFORE-AFTER
   ═══════════════════════════════════ */
.media-section {
  border-top: 1px solid var(--rule);
}
.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.media-panel {
  position: relative;
  overflow: hidden;
  background: var(--carbon3);
}
.media-label {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--carbon);
  background: var(--orange);
  padding: 6px 14px;
}
.media-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 560px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray3);
  padding: 40px;
  text-align: center;
  line-height: 2;
  border: 1px dashed var(--gray3);
  margin: 24px;
}
.video-section {
  padding: 2px 0 0 0;
  border-top: 1px solid var(--rule);
}
.video-placeholder {
  background: var(--carbon2);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray3);
  position: relative;
}
.video-placeholder::before {
  content: '▶';
  font-size: 48px;
  color: var(--orange);
  position: absolute;
  opacity: 0.3;
}


/* ════════════════════════════════════════
   SECTION 5 — TAILORED 5-PHASE TECHNOLOGY
   Matches Figma node 191:3501 layout
   ════════════════════════════════════════ */
.tech-section {
  border-top: 1px solid var(--rule);
}

/* Phase Intro Header */
.phase-intro {
  background: var(--carbon);
  padding: 56px 78px 48px;
}
.phase-intro-small {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 18px;
  color: var(--white-55);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.phase-intro-small::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.phase-intro-headline {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.2;
}
.phase-intro-headline .accent { color: var(--orange); }

/* Phase Card Layout — matches Figma 452px left / 828px right split */
.phase-card {
  display: grid;
  grid-template-columns: 452px 1fr;
  min-height: 543px;
  border-top: 1px solid var(--rule);
}
.phase-left {
  background: var(--carbon);
  padding: 28px 65px 40px 65px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.phase-right {
  background: var(--carbon3);
  position: relative;
  overflow: hidden;
}
.phase-right-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray3);
  padding: 40px;
  text-align: center;
  line-height: 2;
  border: 1px dashed var(--gray3);
  margin: 20px;
}

/* Phase progress indicator — left edge vertical line */
.phase-indicator {
  position: absolute;
  left: 1.5px;
  top: 32px;
  bottom: 32px;
  width: 40px;
}
.phase-track {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--white-20);
}
.phase-track-active {
  position: absolute;
  left: 0;
  width: 3px;
  height: 91px;
  background: var(--orange);
}
.phase-counter {
  position: absolute;
  left: 20px;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: var(--orange);
}

/* Phase text hierarchy — matching Figma exactly */
.phase-category {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-40);
  margin-bottom: 21px;
}
.phase-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px;
  color: var(--white-55);
  margin-bottom: 20px;
}
.phase-headline {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 40px;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 20px;
}
.phase-headline .accent { color: var(--orange); }
.phase-body {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--white-55);
  max-width: 320px;
  flex: 1;
}
.phase-specs {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px;
  line-height: 1.5;
  color: var(--orange);
  text-transform: uppercase;
  max-width: 340px;
  margin-top: auto;
  padding-top: 20px;
}


/* ════════════════════════════════════
   SECTION 6 — VEGETATION MANAGEMENT
   SUBSCRIPTION TIERS
   ════════════════════════════════════ */
.sub-section {
  padding: 120px 78px;
  border-top: 1px solid var(--rule);
}
.sub-intro {
  max-width: 640px;
  margin-bottom: 64px;
}
.sub-headline {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 40px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}
.sub-headline .accent { color: var(--green); }
.sub-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--white-55);
}
.tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
}
.tier-card {
  background: var(--carbon2);
  padding: 48px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}
.tier-card:hover { transform: translateY(-2px); }
.tier-card.featured {
  border-top: 3px solid var(--green);
}
.tier-badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.tier-name {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
.tier-coverage {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gray1);
  margin-bottom: 24px;
}
.tier-price {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 4px;
}
.tier-price .period {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray1);
  letter-spacing: 0.05em;
}
.tier-freq {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray2);
  margin-bottom: 32px;
}
.tier-features {
  list-style: none;
  flex: 1;
}
.tier-features li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--white-55);
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
  padding-left: 20px;
  position: relative;
}
.tier-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 12px;
}
.tier-cta {
  display: block;
  text-align: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 24px;
  margin-top: 32px;
  transition: all 0.3s;
}
.tier-cta-outline {
  color: var(--white);
  border: 1px solid var(--gray3);
}
.tier-cta-outline:hover { border-color: var(--white); }
.tier-cta-fill {
  color: var(--carbon);
  background: var(--green);
  border: 1px solid var(--green);
}
.tier-cta-fill:hover { background: #00C27A; }


/* ════════════════════════════
   SECTION 7 — SOCIAL PROOF
   ════════════════════════════ */
.proof-section {
  padding: 120px 78px;
  border-top: 1px solid var(--rule);
}
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
}
.proof-stat {
  background: var(--carbon2);
  padding: 48px 40px;
  text-align: center;
}
.proof-num {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: var(--orange);
  margin-bottom: 8px;
}
.proof-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-55);
}
.proof-quote {
  background: var(--carbon2);
  padding: 64px 78px;
  margin-top: 2px;
  position: relative;
}
.proof-quote-mark {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 120px;
  color: var(--orange);
  opacity: 0.15;
  position: absolute;
  top: 20px;
  left: 60px;
  line-height: 1;
}
.proof-quote-text {
  font-family: 'Barlow', sans-serif;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--white-55);
  max-width: 800px;
  position: relative;
  z-index: 1;
}
.proof-quote-attr {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray2);
  margin-top: 24px;
  position: relative;
  z-index: 1;
}


/* ═══════════════════
   SECTION 8 — CTA
   ═══════════════════ */
.cta-section {
  padding: 120px 78px;
  border-top: 1px solid var(--rule);
  text-align: center;
}
.cta-headline {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 48px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 24px;
}
.cta-headline .accent { color: var(--orange); }
.cta-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--white-55);
  max-width: 540px;
  margin: 0 auto 48px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--carbon);
  background: var(--orange);
  padding: 20px 48px;
  text-decoration: none;
  transition: all 0.3s;
}
.cta-btn:hover { background: #FF7733; gap: 24px; }
.cta-btn::after { content: '→'; }
.cta-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray2);
  margin-top: 24px;
}


/* ═══════════════════
   FOOTER
   ═══════════════════ */
.footer {
  padding: 48px 78px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-brand {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 6px;
}
.footer-brand span { color: var(--orange); }
.footer-tagline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray2);
}
.footer-links {
  display: flex;
  gap: 32px;
}
.footer-links a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray2);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }
.c-m4 {
	padding-top: 5.5rem;
}
.c-m4 {
    flex-direction: column;
    align-items: center;
    display: flex;
}
.c-m4__sticky {
    width: 100%;
    max-width: 1440px;
}
.c-m4__sticky-wrap {
    height: 500vh;
    position: relative;
}
.c-m4__container.sticky {
    z-index: 900;
    width: 100%;
    max-width: 1440px;
    padding-left: 110px;
    padding-right: 110px;
    position: sticky;
}
.c-m4__triggers {
    z-index: 999;
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
}
.c-m4__products-wrap {
    z-index: 50;
    width: 100%;
    height: 500vh;
    display: block;
    position: absolute;
    top: 0;
}
.c-m4__product-wrapper {
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100vh;
    display: flex;
}
.c-m4__product-shot {
    height: 740px;
}
.c-m4__image {
    object-fit: contain;
    width: 900px;
    height: 900px;
}
.c-m4__copy-wrap {
    z-index: 600;
    width: 31%;
    position: relative;
}
.c-m4__trigger {
    z-index: 999;
    width: 1px;
    height: 1px;
    position: absolute;
}
.hero-img {
	background-image: url('https://clearground.com/wp-content/uploads/2026/03/serv_01_n.jpg');
	background-size: cover;
}

/* ═══════════════════
   RESPONSIVE
   ═══════════════════ */
@media (max-width: 1024px) {
  .phase-card { grid-template-columns: 1fr; }
  .phase-right { min-height: 400px; }
  .pain-grid { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .pathway-flow { flex-direction: column; }
  .pathway-arrow { transform: rotate(90deg); padding: 6px; justify-content: center; }
  .media-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero { padding: 0 32px 64px; }
  .pain-section, .pathway-section, .sub-section, .proof-section, .cta-section { padding: 80px 32px; }
  .phase-intro { padding: 40px 32px; }
  .phase-left { padding: 28px 32px 40px; }
  .nav { padding: 16px 24px; }
  .footer { flex-direction: column; gap: 24px; }
}