/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #E65C00;
  --orange-dark: #B84A00;
  --charcoal: #111111;
  --charcoal-light: #1E1E1E;
  --cream: #F5F0E8;
  --cream-dark: #EDE8DD;
  --white: #FFFFFF;
  --gray: #888888;
  --gray-light: #CCCCCC;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
.nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--cream-dark);
  background: var(--cream);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Bitter', serif;
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}
.nav-logo-accent { color: var(--orange); }
.nav-tagline {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  padding: 5rem 2rem 3rem;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230,92,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: 'Bitter', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.hero-divider {
  width: 48px;
  height: 3px;
  background: var(--orange);
  margin-bottom: 1.5rem;
}
.hero-note {
  font-size: 0.9rem;
  color: var(--gray);
  font-style: italic;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-stat-block {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 1.25rem 1.5rem;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.hero-stat-block::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--charcoal-light);
}
.hero-stat-block--accent::before { background: var(--orange); }
.hero-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.4rem;
}
.hero-stat-number {
  font-family: 'Bitter', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1;
}
.hero-stat-sub {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 0.35rem;
}
.hero-texas-bar {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cream-dark);
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.05em;
}
.hero-texas-sep { color: var(--orange); font-weight: 900; }

/* === STATS === */
.stats {
  background: var(--charcoal);
  padding: 4rem 2rem;
}
.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stats-item {
  padding: 1.5rem 2rem;
  border-right: 1px solid #333;
  text-align: center;
}
.stats-item:last-child { border-right: none; }
.stats-num {
  font-family: 'Bitter', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.stats-desc {
  font-size: 0.85rem;
  color: #AAAAAA;
  line-height: 1.5;
}

/* === SECTION SHARED === */
.section-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Bitter', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.section-header {
  margin-bottom: 3rem;
}

/* === HOW IT WORKS === */
.how {
  padding: 5rem 2rem;
  background: var(--cream);
}
.how .section-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
}
.how-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--charcoal);
}
.how-step {
  padding: 2rem 1.75rem 2rem 0;
  border-right: 1px solid var(--cream-dark);
  position: relative;
}
.how-step:last-child { border-right: none; }
.how-step-num {
  font-family: 'Bitter', serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(230,92,0,0.15);
  line-height: 1;
  margin-bottom: 1rem;
}
.how-step h3 {
  font-family: 'Bitter', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.how-step p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.65;
}

/* === OFF-MARKET === */
.offmarket {
  padding: 5rem 2rem;
  background: var(--charcoal);
  color: var(--white);
}
.offmarket-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: center;
}
.offmarket .section-title { color: var(--white); }
.offmarket-body {
  font-size: 1rem;
  color: #BBBBBB;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.offmarket-types {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.offmarket-type {
  background: var(--charcoal-light);
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--orange);
}
.offmarket-type-label {
  font-family: 'Bitter', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.offmarket-type-desc {
  font-size: 0.8rem;
  color: #888;
  line-height: 1.5;
}
.offmarket-quote {
  padding: 2.5rem;
  background: var(--orange);
  position: relative;
}
.offmarket-quote-mark {
  font-family: 'Bitter', serif;
  font-size: 5rem;
  color: rgba(255,255,255,0.3);
  line-height: 0.5;
  margin-bottom: 1.5rem;
}
.offmarket-quote blockquote {
  font-family: 'Bitter', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.offmarket-quote-bar {
  width: 40px;
  height: 3px;
  background: rgba(255,255,255,0.4);
}
.offmarket .section-tag { color: var(--orange); }

/* === CASH BUYERS === */
.buyers {
  padding: 5rem 2rem;
  background: var(--cream);
}
.buyers-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
}
.buyers-sub {
  font-size: 1.05rem;
  color: #555;
  margin-top: 0.75rem;
  max-width: 600px;
}
.buyers-types {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.buyers-type {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--cream-dark);
  border-top: 4px solid var(--orange);
}
.buyers-type-icon {
  width: 32px;
  height: 32px;
  background: var(--orange);
  margin-bottom: 1.25rem;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}
.buyers-type h3 {
  font-family: 'Bitter', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.buyers-type p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.65;
}
.buyers-cta {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding: 1.5rem 2rem;
  background: var(--charcoal);
  text-align: center;
}
.buyers-cta p {
  font-size: 1rem;
  color: #AAAAAA;
}
.buyers-cta strong { color: var(--orange); }

/* === PROOF === */
.proof {
  padding: 5rem 2rem;
  background: var(--cream-dark);
}
.proof .section-header { max-width: 1200px; margin: 0 auto 3rem; }
.proof-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.proof-card {
  background: var(--white);
  padding: 1.75rem;
  position: relative;
}
.proof-card-num {
  font-family: 'Bitter', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(230,92,0,0.12);
  line-height: 1;
  margin-bottom: 1rem;
}
.proof-card h3 {
  font-family: 'Bitter', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.proof-card p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
}

/* === CLOSING === */
.closing {
  padding: 6rem 2rem;
  background: var(--charcoal);
  text-align: center;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 0.4rem 1rem;
  margin-bottom: 2rem;
}
.closing-headline {
  font-family: 'Bitter', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.closing-body {
  font-size: 1rem;
  color: #AAAAAA;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

/* === FOOTER === */
.footer {
  background: var(--charcoal);
  border-top: 1px solid #222;
  padding: 3rem 2rem 1.5rem;
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-logo {
  font-family: 'Bitter', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.footer-logo span { color: var(--orange); }
.footer-tagline {
  font-size: 0.8rem;
  color: #666;
}
.footer-info p {
  font-size: 0.75rem;
  color: #555;
  max-width: 400px;
  line-height: 1.6;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid #222;
  display: flex;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: #555;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
  .stats-item:nth-child(2) { border-right: none; }
  .how-steps { grid-template-columns: 1fr 1fr; border-top: none; }
  .how-step { border-right: 1px solid var(--cream-dark); border-bottom: 1px solid var(--cream-dark); }
  .how-step:nth-child(even) { border-right: none; }
  .offmarket-inner { grid-template-columns: 1fr; }
  .buyers-types { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { flex-direction: column; }
}

@media (max-width: 600px) {
  .hero { padding: 3rem 1.25rem 2rem; }
  .hero-headline { font-size: 1.75rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .stats-item { border-right: none; border-bottom: 1px solid #333; }
  .how-steps { grid-template-columns: 1fr; }
  .offmarket-types { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .hero-texas-bar { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .hero-texas-sep { display: none; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
}