/* ══════════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════════ */
.hs-hero {
  position: relative;
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--line);
}
.hs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../../images/home-banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(0.85) sepia(0.55) brightness(0.72);
  z-index: 0;
}
.hs-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(247,244,238,0.9) 0%,
    rgba(247,244,238,0.85) 36%,
    rgba(247,244,238,0.8) 55%,
    rgba(247,244,238,0.8) 100%
  );
  z-index: 1;
}
.hs-hero > .container { position: relative; z-index: 2; }

.hs-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--under-bg);
  color: var(--under);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hs-hero h1 {
  font-size: clamp(36px, 5.5vw, 62px);
  letter-spacing: -.025em;
  margin-bottom: 20px;
  max-width: 720px;
}
.hs-hero h1 em { font-style: italic; color: var(--slate); }

.hs-hero-sub {
  font-size: 18px;
  color: var(--slate);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hs-search-bar {
  display: flex;
  max-width: 510px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(20,17,14,.06);
  margin-bottom: 20px;
  transition: border-color .2s;
}
.hs-search-bar:focus-within { border-color: var(--focus); box-shadow: 0 0 0 3px rgba(31,122,77,.12); }
.hs-search-bar .search-icon {
  padding: 0 12px 0 16px;
  display: flex;
  align-items: center;
  color: var(--slate);
  font-size: 20px;
  flex-shrink: 0;
}
.hs-search-bar input {
  flex: 1;
  padding: 14px 8px;
  border: none;
  background: transparent;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  min-width: 0;
}
.hs-search-bar input::placeholder { color: var(--unvalued); }
.hs-search-bar button {
  flex-shrink: 0;
  padding: 0 22px;
  background: var(--action);
  color: #fff;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity .15s;
  white-space: nowrap;
}
.hs-search-bar button:hover { opacity: .87; }

.hs-hero-stats {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--slate);
}
.hs-hero-stats strong { color: var(--ink); font-weight: 600; }
.hs-stats-dot {
  width: 3px;
  height: 3px;
  background: var(--line);
  border-radius: 50%;
  flex-shrink: 0;
}

.hs-hero-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 84px;
}

.hs-mini-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 2px 10px rgba(20,17,14,.05);
}
.hs-mini-card-addr { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.hs-mini-card-meta { font-size: 12px; color: var(--slate); margin-bottom: 12px; }
.hs-mini-card-price { font-size: 22px; font-weight: 500; color: var(--ink); margin-bottom: 10px; }

@media (max-width: 991px) {
  .hs-hero { padding: 64px 0 56px; }
  .hs-hero-cards {
    flex-direction: row;
    overflow-x: auto;
    position: static;
    padding-bottom: 4px;
    margin-top: 48px;
    gap: 12px;
    scrollbar-width: none;
  }
  .hs-hero-cards::-webkit-scrollbar { display: none; }
  .hs-mini-card { min-width: 240px; }
}
@media (max-width: 575px) {
  .hs-hero { padding: 48px 0 40px; }
  .hs-hero h1 { font-size: 32px; }
  .hs-hero-sub { font-size: 16px; }
}

/* ══════════════════════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════════════════════ */
.hs-how {
  background: var(--surface);
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.hs-how h2 { font-size: clamp(26px, 4vw, 40px); margin-bottom: 52px; }

.hs-step-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--slate);
  margin-bottom: 12px;
}
.hs-step-icon {
  width: 50px;
  height: 50px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.hs-step-icon i { font-size: 24px; color: var(--ink); }
.hs-step h4 {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
.hs-step p { font-size: 15px; color: var(--slate); margin: 0; line-height: 1.7; }

.hs-step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
  color: var(--line);
}
.hs-step-connector i { font-size: 20px; }

.hs-data-source {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  padding: 10px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  color: var(--slate);
}
.hs-data-source i { color: var(--under); font-size: 16px; }

@media (max-width: 767px) {
  .hs-how { padding: 56px 0; }
  .hs-how h2 { margin-bottom: 36px; }
  .hs-step-connector { display: none; }
}

/* ══════════════════════════════════════════════════════════════════
   FEATURED PROPERTIES
══════════════════════════════════════════════════════════════════ */
.hs-featured {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.hs-featured h2 { font-size: clamp(24px, 3.5vw, 36px); margin-bottom: 6px; }
.hs-featured-sub { font-size: 16px; color: var(--slate); margin-bottom: 40px; }

@media (max-width: 767px) {
  .hs-featured { padding: 56px 0; }
}

/* ══════════════════════════════════════════════════════════════════
   VERDICT EXPLAINER
══════════════════════════════════════════════════════════════════ */
.hs-explainer {
  background: var(--surface);
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.hs-explainer h2 { font-size: clamp(24px, 3.5vw, 36px); margin-bottom: 8px; }
.hs-explainer-sub { font-size: 16px; color: var(--slate); margin-bottom: 36px; }

.hs-honesty-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 24px;
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
}
.hs-honesty-box strong { color: var(--ink); }

.verdict-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.verdict-row:last-child { border-bottom: none; }
.verdict-row-pill { flex-shrink: 0; width: 210px; }
.verdict-row-desc { font-size: 14px; color: var(--slate); line-height: 1.65; }

@media (max-width: 767px) {
  .hs-explainer { padding: 56px 0; }
  .verdict-row { flex-direction: column; gap: 8px; }
  .verdict-row-pill { width: auto; }
}

/* ══════════════════════════════════════════════════════════════════
   PREMIUM UPSELL
══════════════════════════════════════════════════════════════════ */
.hs-premium {
  background: var(--brand);
  padding: 80px 0;
  color: #fff;
}
.hs-premium .section-label { color: rgba(255,255,255,.45); }

.hs-premium-count {
  font-family: 'Fraunces', serif;
  font-size: clamp(56px, 10vw, 96px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1;
  color: #fff;
  margin-bottom: 10px;
}
.hs-premium-count-sub {
  font-size: 20px;
  color: rgba(255,255,255,.7);
  margin-bottom: 40px;
}

.hs-locked-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  max-width: 480px;
  margin-bottom: 48px;
}
.hs-locked-bar .lock-icon { color: rgba(255,255,255,.4); font-size: 18px; flex-shrink: 0; }
.hs-locked-bar span { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.5; }
.hs-locked-bar span strong { color: rgba(255,255,255,.9); }

.hs-tier {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 28px 28px 32px;
  height: 100%;
}
.hs-tier.is-premium {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.22);
}
.hs-tier-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 6px;
}
.hs-tier-name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
}
.hs-tier-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  margin-bottom: 10px;
  line-height: 1.5;
}
.hs-tier-feature i { font-size: 17px; flex-shrink: 0; margin-top: 1px; }
.hs-tier-feature i.tick { color: var(--under); }

.btn-unlock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: #fff;
  color: var(--brand);
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  transition: opacity .15s;
  text-decoration: none;
  margin-top: 24px;
}
.btn-unlock:hover { opacity: .9; color: var(--brand); }

@media (max-width: 767px) {
  .hs-premium { padding: 56px 0; }
  .hs-premium-count { font-size: 56px; }
}
