/* ============================================
   FUNNEL.CSS — homepage two-doors + /buy/ inventory + atom cards
   Tokens from design-system.css. Brand-strict palette:
   coral #d97757 / cream #faf9f5 / ink #141413. No teal, no navy.
   ============================================ */

/* Atom variant plumbing: full-context pages hide compact copy.
   The .sidebar [data-variant="compact"] inverse rules live in listings.css
   alongside the listing-detail sidebar where compact mode is used. */
[data-variant="full"] [data-show-compact] {
  display: none;
}

/* ----- Two-Doors Hero (homepage) — mountain photo + cream cards ----- */
/* min-height: 0 defeats the 70vh from .hero base — content is tight.
   Top padding clears the 72px fixed nav. */
.hero--two-doors {
  position: relative;
  min-height: 0;
  padding: calc(72px + var(--space-8)) 0 var(--space-10);
  color: var(--color-light);
  overflow: hidden;
}
.hero--two-doors .hero__background {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero--two-doors .hero__background picture,
.hero--two-doors .hero__background img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0.4; /* matches old .hero--home — faded moody photo over ink */
}
.hero--two-doors .hero__background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 20, 19, 0.15) 0%,
    rgba(20, 20, 19, 0.35) 100%
  );
}
.hero--two-doors .container {
  position: relative;
  z-index: 2;
}
.hero--two-doors .hero__content {
  text-align: center;
  max-width: 1040px;
  margin: 0 auto;
}
.hero--two-doors .hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-primary);
  display: block;
  margin-bottom: var(--space-3);
}
.hero--two-doors .hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 var(--space-3);
}
.hero--two-doors .hero__title-accent {
  display: block;
  color: var(--color-accent-primary);
  font-style: italic;
  font-weight: 500;
}
.hero--two-doors .hero__subtitle {
  font-size: 1.05rem;
  opacity: 0.92;
  max-width: 580px;
  margin: 0 auto var(--space-8);
}

/* ----- Door cards (cream over photo) ----- */
.two-doors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  max-width: 1040px;
  margin: 0 auto;
  text-align: left;
}
@media (max-width: 820px) {
  .two-doors {
    grid-template-columns: 1fr;
  }
}
.two-doors__door {
  background: rgba(250, 249, 245, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-text);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: 0 20px 50px rgba(20, 20, 19, 0.28);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.two-doors__header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.two-doors__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(217, 119, 87, 0.12);
  color: var(--color-accent-primary);
}
.two-doors__icon svg {
  width: 22px;
  height: 22px;
}
.two-doors__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.35rem;
  margin: 0;
}
.two-doors__sub {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* Inner micro-search form */
.two-doors__form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: var(--space-2);
  background: #f3eee4;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-2);
}
.two-doors__form--solo {
  grid-template-columns: 1fr auto;
}
.two-doors__field {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--color-border);
  min-width: 0;
}
.two-doors__field-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 2px;
}
.two-doors__field select,
.two-doors__field input {
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: transparent;
  width: 100%;
  padding: 0;
}
.two-doors__submit {
  position: relative;
  background: var(--color-accent-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0 var(--space-4);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  transition: background 0.15s ease;
}
.two-doors__submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: shimmer-sweep 5s ease-in-out infinite;
  pointer-events: none;
}
.two-doors__submit:hover {
  background: #c5684a;
}
.two-doors__submit svg {
  width: 16px;
  height: 16px;
  position: relative;
  z-index: 1;
}
@keyframes shimmer-sweep {
  0%,
  70%,
  100% {
    left: -100%;
  }
  85% {
    left: 130%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .two-doors__submit::before {
    animation: none;
  }
}
.two-doors__bottom {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-align: center;
  margin: 0;
}
.two-doors__bottom a {
  color: var(--color-accent-primary);
  font-weight: 600;
}

/* ----- Mobile (<= 820px): shrink hero + tighten doors + reflow form ----- */
@media (max-width: 820px) {
  .hero--two-doors {
    padding: calc(72px + var(--space-4)) 0 var(--space-6);
  }
  .hero--two-doors .hero__eyebrow {
    font-size: 0.7rem;
    margin-bottom: var(--space-2);
  }
  .hero--two-doors .hero__title {
    font-size: clamp(1.55rem, 6.5vw, 2.15rem);
    line-height: 1.1;
  }
  .hero--two-doors .hero__subtitle {
    font-size: 0.95rem;
    margin-bottom: var(--space-5);
  }
  .two-doors {
    gap: var(--space-3);
  }
  .two-doors__door {
    background: rgba(250, 249, 245, 0.88);
    padding: var(--space-4);
    gap: var(--space-2);
    box-shadow: 0 12px 28px rgba(20, 20, 19, 0.32);
  }
  .two-doors__icon {
    width: 36px;
    height: 36px;
  }
  .two-doors__icon svg {
    width: 18px;
    height: 18px;
  }
  .two-doors__title {
    font-size: 1.1rem;
  }
  .two-doors__sub {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  .two-doors__form {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2);
    padding: var(--space-2);
  }
  .two-doors__form--solo {
    grid-template-columns: 1fr;
  }
  .two-doors__submit {
    grid-column: 1 / -1;
    justify-content: center;
    padding: var(--space-3);
  }
  .two-doors__bottom {
    font-size: 0.78rem;
  }
  .hero__just-listed {
    margin-top: var(--space-4);
    font-size: 0.75rem;
  }
}

/* Just-listed cue under the doors */
.hero__just-listed {
  text-align: center;
  margin-top: var(--space-6);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero__just-listed a {
  color: var(--color-light);
  opacity: 0.85;
}
.hero__just-listed a:hover {
  opacity: 1;
}

/* ----- Rich Trust Bar (4 SVG icon + bold + label) ----- */
.trust-bar {
  background: var(--color-light);
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--color-border);
}
.trust-bar__row {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--space-4);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
@media (max-width: 720px) {
  .trust-bar__row {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.trust-bar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(217, 119, 87, 0.12);
  color: var(--color-accent-primary);
}
.trust-bar__icon svg {
  width: 20px;
  height: 20px;
}
.trust-bar__text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.trust-bar__num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-text);
}
.trust-bar__label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ----- "What I do differently" 3-card ----- */
.differently {
  padding: var(--space-12) 0;
  background: var(--color-light);
}
.differently__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  max-width: 1040px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .differently__grid {
    grid-template-columns: 1fr;
  }
}
.differently__card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.differently__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.differently__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-4);
  border-radius: var(--radius-md);
  background: rgba(217, 119, 87, 0.12);
  color: var(--color-accent-primary);
}
.differently__icon svg {
  width: 24px;
  height: 24px;
}
.differently__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 0 var(--space-2);
}
.differently__copy {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-3);
  line-height: 1.55;
}
.differently__link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-accent-primary);
  text-decoration: none;
}
.differently__link:hover {
  opacity: 0.7;
}

/* ----- /buy/ Inventory-first hero (brand-strict ink + photo) ----- */
.hero--inventory {
  position: relative;
  min-height: 0;
  padding: calc(72px + var(--space-6)) 0 var(--space-8);
  background: var(--color-bg-dark);
  color: var(--color-light);
  overflow: hidden;
}
.hero--inventory .hero__background {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero--inventory .hero__background picture,
.hero--inventory .hero__background img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 1;
}
.hero--inventory .hero__background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20, 20, 19, 0.65),
    rgba(20, 20, 19, 0.5)
  );
}
.hero--inventory .container {
  position: relative;
  z-index: 2;
}
.hero--inventory .hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  margin: var(--space-2) 0;
}
.hero--inventory .hero__title em {
  color: var(--color-accent-primary);
  font-style: italic;
  display: block;
  font-weight: 500;
}
.hero--inventory .hero__sub {
  opacity: 0.92;
  font-size: 1.05rem;
  max-width: 600px;
}

/* ----- Just-listed row (uses existing .listing-card markup) ----- */
.just-listed-row {
  padding: var(--space-10) 0;
}
.just-listed-row__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-4);
}

/* ----- Price-range cards (/buy/) ----- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}
@media (max-width: 900px) {
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.price-card {
  position: relative;
  aspect-ratio: 5 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-4);
  color: var(--color-text);
  text-decoration: none;
  background: var(--color-light);
  border: 1px solid var(--color-border);
  transition:
    transform 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
.price-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-accent-primary);
  box-shadow: var(--shadow-md);
}
.price-card__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-text);
}
.price-card__count {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ----- Quadrant grid (/buy/) ----- */
.quad-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}
@media (max-width: 900px) {
  .quad-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.quad-card {
  position: relative;
  aspect-ratio: 5 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-4);
  color: var(--color-text);
  text-decoration: none;
  background: var(--color-light);
  border: 1px solid var(--color-border);
  transition:
    transform 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
.quad-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-accent-primary);
  box-shadow: var(--shadow-md);
}
.quad-card__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-text);
}
.quad-card__count {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ----- Atom: Video Walkthrough (ink card, brand colors) ----- */
.atom-video {
  padding: var(--space-10) 0;
  background: var(--color-light);
}
.atom-video__card {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: var(--space-6);
  background: linear-gradient(135deg, #141413, #2a2520);
  color: #fff;
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  align-items: center;
}
@media (max-width: 720px) {
  .atom-video__card {
    grid-template-columns: 1fr;
  }
}
.atom-video__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
  display: block;
  margin-bottom: var(--space-2);
  color: var(--color-accent-primary);
}
.atom-video__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0 0 var(--space-3);
  line-height: 1.2;
}
.atom-video__copy {
  opacity: 0.92;
  line-height: 1.55;
  margin: 0 0 var(--space-4);
}
.atom-video__ctas {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.atom-video__visual {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  background-image:
    radial-gradient(
      circle at 30% 30%,
      rgba(217, 119, 87, 0.12),
      transparent 60%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(255, 255, 255, 0.04),
      transparent 60%
    );
}
.atom-video__play {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--color-accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 12px 28px rgba(217, 119, 87, 0.4);
}
.atom-video__play svg {
  width: 36px;
  height: 36px;
  margin-left: 4px;
}
.atom-video__visual-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* Camera-reel SVG inside the visual panel — replaces the 🎥 emoji.
   Sized to a comfortable fraction of the square panel, coral stroke. */
.atom-video__icon svg {
  width: 72px;
  height: 72px;
  color: var(--color-accent-primary);
}

/* ----- Atom: Listing Alerts (ink card, brand colors) ----- */
.atom-alerts {
  padding: var(--space-10) 0;
}
.atom-alerts__card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-6);
  background: linear-gradient(135deg, #141413, #2a2520);
  color: #fff;
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  align-items: center;
}
@media (max-width: 720px) {
  .atom-alerts__card {
    grid-template-columns: 1fr;
  }
}
.atom-alerts__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--space-2);
  color: var(--color-accent-primary);
}
.atom-alerts__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0 0 var(--space-2);
  line-height: 1.2;
}
.atom-alerts__sub {
  opacity: 0.85;
  margin: 0;
  line-height: 1.5;
}
.atom-alerts__form {
  display: flex;
  gap: var(--space-3);
  flex-direction: column;
}
.atom-alerts__form input {
  padding: var(--space-3) var(--space-4);
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: var(--font-body);
}

/* ----- Compact variant: shared behavior across atom cards -----
   Compact collapses the full-variant 2-column grid to a single column
   so the card stacks vertically inside narrow contexts (sidebar rail,
   showcase preview). data-hide-compact / data-show-compact swap copy. */
[data-variant="compact"] .atom-video__card,
[data-variant="compact"] .atom-alerts__card {
  grid-template-columns: 1fr;
}
[data-variant="compact"] [data-hide-compact] {
  display: none;
}
[data-variant="compact"] [data-show-compact] {
  display: block;
}
[data-variant="full"] [data-show-compact] {
  display: none;
}

/* ----- Atom: Bay Area Card (cream, coral accent) ----- */
.atom-bay {
  padding: var(--space-10) 0;
}
.atom-bay__card {
  display: flex;
  gap: var(--space-5);
  align-items: center;
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent-primary);
  padding: var(--space-6);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.atom-bay__flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: rgba(217, 119, 87, 0.12);
  color: var(--color-accent-primary);
}
.atom-bay__flag svg {
  width: 28px;
  height: 28px;
}
.atom-bay__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.4rem;
  margin: 0 0 var(--space-2);
  color: var(--color-text);
}
.atom-bay__copy {
  color: var(--color-text-muted);
  line-height: 1.55;
  margin: 0 0 var(--space-2);
}
.atom-bay__link {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-accent-primary);
  text-decoration: none;
}
.atom-bay__link:hover {
  opacity: 0.7;
}

/* ----- Atom: First-Time Buyer ----- */
.atom-ftb {
  padding: var(--space-10) 0;
}
.atom-ftb__card {
  background: #f1efea;
  border: 1px solid #d7d2c5;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
}
.atom-ftb__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent-primary);
  display: block;
  margin-bottom: var(--space-2);
}
.atom-ftb__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.4rem;
  margin: 0 0 var(--space-3);
  color: #2a2a2a;
  line-height: 1.2;
}
.atom-ftb__copy {
  color: #4a4a4a;
  line-height: 1.55;
  margin: 0 0 var(--space-4);
}
.atom-ftb__copy-compact {
  color: #4a4a4a;
  margin: 0 0 var(--space-3);
}
.atom-ftb__ctas {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* ----- Sticky search wrapper on /buy/ ----- */
.buy-search-sticky {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* ----- 3 review quotes ----- */
.quotes-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  padding: var(--space-10) 0;
}
@media (max-width: 900px) {
  .quotes-row {
    grid-template-columns: 1fr;
  }
}
.quote-card {
  background: var(--color-light);
  padding: var(--space-5);
  border-left: 3px solid var(--color-accent-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.quote-card__stars {
  display: inline-flex;
  gap: 2px;
  color: var(--color-accent-primary);
  margin-bottom: var(--space-2);
}
.quote-card__stars svg {
  width: 16px;
  height: 16px;
}
.quote-card__text {
  font-style: italic;
  line-height: 1.6;
  margin: 0 0 var(--space-3);
}
.quote-card__who {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ------------------------------------------------------------------ */
/* Pre-qual band — /buy/ + /get-pre-qualified/ entry CTA              */
/* Layout differs from .valuation-band: button-with-copy on LEFT,     */
/* bullets on RIGHT (no form card).                                   */
/* ------------------------------------------------------------------ */
.prequal-band {
  background: var(--color-bg-dark);
  color: #faf9f5;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}
.prequal-band__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}
@media (min-width: 900px) {
  .prequal-band__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
  }
}
.prequal-band__intro .eyebrow {
  display: inline-block;
  color: var(--color-accent-primary);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.prequal-band__intro h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 var(--space-4);
  letter-spacing: -0.01em;
  color: #faf9f5;
}
.prequal-band__intro p {
  color: rgba(250, 249, 245, 0.82);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0 0 var(--space-6);
  max-width: 30rem;
}
.prequal-band__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.prequal-band__bullets li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: rgba(250, 249, 245, 0.92);
  font-size: 0.97rem;
}
.prequal-band__bullets svg {
  width: 22px;
  height: 22px;
  color: var(--color-accent-primary);
  flex-shrink: 0;
}
