/* =========================================================
   Dream Neighborhood — Marketing Site (Home + Partners)
   Matches the live site brand system:
   - Font: Urbanist
   - Primary green: #127D6B
   - Lime accent: #ACEF00
   - Pale lime bg: #EBF8D1
   - Off-white surface: #F8FAFC
   - Body text: #111827, muted: #64748B
   - Pill buttons (radius 100px)
   ========================================================= */

:root {
  --green-900: #0d5a4d;
  --green-700: #127d6b;
  --green-500: #2aa28c;
  --green-100: rgba(18, 125, 107, 0.12);

  --lime-500: #acef00;
  --lime-400: #d5f25e;
  --lime-100: #ebf8d1;

  --ink-900: #111827;
  --ink-700: #1e293b;
  --ink-500: #475569;
  --ink-400: #64748b;
  --ink-300: #94a3b8;
  --ink-200: #cbd5e1;

  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-mint: #f3faf7;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04),
    0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.06),
    0 2px 6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12),
    0 8px 24px rgba(15, 23, 42, 0.06);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 100px;

  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink-900);
  font-family: "Urbanist", system-ui, -apple-system, Segoe UI, Roboto,
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.accent {
  color: var(--green-700);
}

.accent-lime {
  color: var(--lime-500);
}

/* ---------- PILLS / BADGES ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pill--solid {
  background: var(--green-700);
  color: #ffffff;
}

.pill--solid .pill__dot {
  width: 8px;
  height: 8px;
  background: var(--lime-500);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(172, 239, 0, 0.25);
}

.pill--on-dark {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  backdrop-filter: blur(6px);
}

.pill--light {
  background: var(--lime-100);
  color: var(--green-900);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    color 0.15s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn--lg {
  padding: 16px 40px;
  font-size: 16px;
}

.btn--primary {
  background: var(--green-700);
  color: var(--lime-500);
}

.btn--primary:hover {
  background: var(--green-900);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--lime {
  background: var(--lime-500);
  color: var(--ink-900);
}

.btn--lime:hover {
  background: var(--lime-400);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--ink-900);
  border-color: var(--ink-200);
}

.btn--ghost:hover {
  border-color: var(--green-700);
  color: var(--green-700);
}

.btn--outline-lime {
  background: transparent;
  color: var(--lime-500);
  border-color: var(--lime-500);
}

.btn--outline-lime:hover {
  background: var(--lime-500);
  color: var(--ink-900);
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
}

.nav__logo img {
  height: 44px;
  width: auto;
}

.nav__links {
  display: flex;
  gap: 28px;
  font-size: 15px;
  color: var(--ink-700);
}

.nav__links a:hover {
  color: var(--green-700);
}

.nav__cta {
  display: flex;
  gap: 12px;
}

@media (max-width: 600px) {
  .nav__cta .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 80px 0 80px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-mint) 100%);
}

.hero--illustrated {
  position: relative;
  padding: 72px 0 0;
  min-height: 820px;
  overflow: hidden;
}

.hero__illustration {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  display: block;
}

@media (min-width: 1500px) {
  .hero--illustrated {
    min-height: 920px;
  }
}

@media (max-width: 700px) {
  .hero--illustrated {
    min-height: 0;
    padding-bottom: 0;
  }
  .hero__illustration {
    position: relative;
    margin-top: 32px;
    opacity: 0.9;
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}

.hero__blob--a {
  width: 480px;
  height: 480px;
  background: var(--lime-100);
  top: -100px;
  right: -100px;
}

.hero__blob--b {
  width: 360px;
  height: 360px;
  background: rgba(18, 125, 107, 0.08);
  bottom: 40px;
  left: -80px;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero--illustrated .hero__grid {
  display: block;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero--illustrated .hero__copy {
  max-width: 760px;
  margin: 0 auto;
}

.hero--illustrated .hero__bullets,
.hero--illustrated .hero__ctas {
  justify-content: center;
}

.hero--illustrated .hero__body {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1000px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.hero__title {
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 24px 0 20px;
  color: var(--ink-900);
}

.hero__lead {
  font-size: 20px;
  color: var(--ink-700);
  margin: 0 0 16px;
  font-weight: 500;
}

.hero__body {
  font-size: 17px;
  color: var(--ink-400);
  margin: 0 0 24px;
  max-width: 560px;
}

.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__bullets li {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  color: var(--ink-700);
  font-weight: 500;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero trust strip (frosted mint + lime rail — reads clean on hero art) */
.hero__badge {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 4;
  display: flex;
  align-items: stretch;
  max-width: 280px;
  border-radius: 10px;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(235, 248, 209, 0.72) 48%,
    rgba(255, 255, 255, 0.94) 100%
  );
  border: 1px solid rgba(18, 125, 107, 0.22);
  box-shadow:
    0 10px 32px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero__badge::before {
  content: "";
  width: 4px;
  flex-shrink: 0;
  background: linear-gradient(180deg, var(--lime-400), var(--lime-500));
}

.hero__badge-text {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: var(--green-900);
}

@media (max-width: 1100px) {
  .hero__badge {
    top: 16px;
    right: 16px;
    max-width: 260px;
  }
  .hero__badge-text {
    font-size: 12px;
    padding: 9px 12px;
  }
}

@media (max-width: 760px) {
  .hero__badge {
    position: static;
    margin: 0 auto 20px;
  }
}

/* Demo page popup/embed toggle */
.demo-toggle {
  display: inline-flex;
  gap: 4px;
  margin: 18px auto 0;
  padding: 5px;
  background: var(--lime-100);
  border-radius: var(--radius-pill);
}

.demo-toggle__btn {
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--green-700);
  white-space: nowrap;
}

.demo-toggle__btn:hover {
  color: var(--green-900);
}

.demo-toggle__btn--active {
  background: var(--green-700);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.demo-toggle__btn--active:hover {
  color: #ffffff;
}

/* Skyline */
.hero__skyline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  opacity: 0.85;
}

.hero__skyline svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Rich illustrated skyline for Bill's Partners page */
.hero__skyline-illustration {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 380px;           /* Fixed height to prevent squishing */
  object-fit: cover;
  object-position: 50% 70%; /* Focus more on the buildings */
  opacity: 0.85;
  z-index: 1;
  pointer-events: none;
}

/* Better treatment specifically inside the Partners hero (two-column layout) */
.hero .hero__skyline-illustration {
  height: 220px;
  bottom: 0;
  object-position: 50% 70%;
}

/* On desktop, give the Partners hero more breathing room */
@media (min-width: 900px) {
  .hero .hero__skyline-illustration {
    height: 280px;
    bottom: 0;
    object-position: 50% 80%;
  }
}

/* Extra bottom space so the partner card clears the skyline illustration */
.hero--rich-skyline {
  padding-bottom: 200px;
  min-height: 640px;
}

/* Top-align the two columns so the tall partner card doesn't dip into the skyline */
.hero--rich-skyline .hero__grid {
  align-items: start;
}

@media (min-width: 900px) {
  .hero--rich-skyline {
    padding-bottom: 300px;
    min-height: 800px;
  }
}

@media (max-width: 700px) {
  .hero__skyline-illustration {
    height: 260px;
    bottom: 0;
    object-position: 50% 60%;
  }
}

/* Partner card (Realty Candy showcase) */
.partner-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 100% 0%,
      rgba(172, 239, 0, 0.15),
      transparent 50%
    ),
    radial-gradient(
      circle at 0% 100%,
      rgba(18, 125, 107, 0.07),
      transparent 50%
    );
  pointer-events: none;
}

.partner-card > * {
  position: relative;
}

.partner-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.partner-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--lime-100);
  color: var(--green-900);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.08em;
}

.partner-card__badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-700);
  box-shadow: 0 0 0 3px rgba(18, 125, 107, 0.2);
  animation: pulse 1.6s ease infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.partner-card__logo {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.partner-card__name {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink-900);
}

.partner-card__meta {
  color: var(--ink-400);
  font-size: 14px;
}

.partner-card__quote {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  margin: 24px 0;
  font-style: italic;
}

.partner-card__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.stat {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 14px;
  text-align: center;
}

.stat__num {
  font-size: 22px;
  font-weight: 700;
  color: var(--green-700);
  line-height: 1;
}

.stat__label {
  font-size: 11px;
  color: var(--ink-400);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.partner-card__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-700);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
}

.chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime-500);
  box-shadow: 0 0 0 3px rgba(172, 239, 0, 0.25);
}

/* ---------- TRUSTED BY ---------- */
.trusted {
  padding: 80px 0;
  background: #ffffff;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.trusted__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--ink-900);
  margin: 20px 0 16px;
}

.section-lead {
  color: var(--ink-400);
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

.section-lead strong {
  color: var(--green-700);
  font-weight: 600;
}

.logo-rail {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: center;
}

@media (max-width: 900px) {
  .logo-rail {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 500px) {
  .logo-rail {
    grid-template-columns: repeat(2, 1fr);
  }
}

.logo-rail__item {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-300);
  padding: 18px 12px;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  letter-spacing: -0.01em;
  transition: color 0.15s ease, background 0.15s ease;
}

.logo-rail__item:hover {
  color: var(--green-700);
  background: var(--lime-100);
}

/* ---------- SECTION BASE ---------- */
.section {
  padding: 72px 0;
}

.section--alt {
  background: #f8fafc;
}

.section--alt {
  background: var(--bg-soft);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

/* ---------- TWO COL LAYOUT ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.two-col--reverse .two-col__copy {
  order: 2;
}

.two-col--reverse .two-col__visual {
  order: 1;
}

@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .two-col--reverse .two-col__copy,
  .two-col--reverse .two-col__visual {
    order: initial;
  }
}

/* ---------- FEATURE GRID (checkmark list) ---------- */
.feature-grid {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.feature-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--ink-700);
  font-weight: 500;
}

.check {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lime-100);
  position: relative;
}

.check::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23127D6B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px;
}

/* ---------- LIME BANNER ---------- */
.lime-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--lime-100);
  border: 1px solid rgba(18, 125, 107, 0.15);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  margin-top: 8px;
}

.lime-banner__num {
  font-size: 36px;
  font-weight: 700;
  color: var(--green-700);
  line-height: 1;
}

.lime-banner__text {
  color: var(--ink-700);
  font-size: 15px;
  line-height: 1.4;
}

/* ---------- FEATURE BOX (full-width highlight) ---------- */
.feature-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  color: #fff;
  padding: 22px 26px;
  border-radius: var(--radius-lg);
  margin: 0 auto 28px;
  max-width: 880px;
  box-shadow: 0 18px 40px rgba(13, 90, 77, 0.25);
}

.feature-box__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--lime-500);
  color: var(--green-900);
}

.feature-box__title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.feature-box__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.feature-box__text strong {
  color: var(--lime-400);
}

.feature-box__cta {
  margin-top: 16px;
}

@media (max-width: 640px) {
  .feature-box {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 20px 22px;
  }
}

/* ---------- MOCK STACK (illustration) ---------- */
.two-col__visual {
  position: relative;
}

.mock-stack {
  position: relative;
  height: 480px;
}

.mock-card {
  position: absolute;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15, 23, 42, 0.05);
  padding: 22px;
}

.mock-card__title {
  font-weight: 600;
  font-size: 16px;
  color: var(--ink-900);
  margin-bottom: 14px;
}

.mock-card__title.light,
.mock-card__row.light {
  color: #ffffff;
}

.mock-card--front {
  top: 0;
  left: 0;
  width: 320px;
  z-index: 2;
}

.mock-bar {
  background: var(--bg-soft);
  height: 80px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}

.mock-bar__fill {
  position: absolute;
  bottom: 0;
  left: 16px;
  width: 36px;
  height: var(--w);
  background: var(--lime-500);
  border-radius: 6px 6px 0 0;
}

.mock-bar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 68px;
  width: 36px;
  height: 50%;
  background: var(--green-500);
  border-radius: 6px 6px 0 0;
}

.mock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink-400);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.mock-row strong {
  color: var(--ink-900);
  font-weight: 700;
}

.mock-card--mid {
  top: 120px;
  right: 0;
  width: 320px;
  z-index: 3;
}

.mock-pill {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 8px;
}

.mock-pill span {
  color: var(--ink-400);
  font-weight: 500;
}

.mock-progress {
  margin-top: 10px;
}

.mock-progress__label {
  font-size: 13px;
  color: var(--ink-400);
  margin-bottom: 6px;
}

.mock-progress__bar {
  height: 8px;
  background: var(--bg-soft);
  border-radius: 8px;
  overflow: hidden;
}

.mock-progress__bar > div {
  height: 100%;
  background: linear-gradient(90deg, var(--lime-500), var(--green-500));
  border-radius: 8px;
}

.mock-card--score {
  bottom: 40px;
  left: 30px;
  background: var(--green-700);
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  border-radius: var(--radius-pill);
  z-index: 4;
}

.mock-score__num {
  font-size: 28px;
  font-weight: 700;
  color: var(--lime-500);
}

.mock-score__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.mock-card--mobility {
  bottom: 0;
  right: 40px;
  width: 220px;
  background: var(--green-700);
  color: #ffffff;
  z-index: 1;
}

.mock-card--mobility .mock-card__row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mock-card--mobility .mock-card__row strong {
  color: var(--lime-500);
}

/* ---------- THREE-UP ---------- */
.three-up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

@media (max-width: 600px) {
  .three-up {
    grid-template-columns: 1fr;
  }
}

.three-up__item {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-sm);
}

.three-up__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lime-100);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.three-up__item h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-900);
}

.three-up__item p {
  margin: 0;
  color: var(--ink-400);
  font-size: 14px;
  line-height: 1.5;
}

/* ---------- BROWSER MOCKUP ---------- */
.browser {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-lg);
}

.browser__bar {
  background: var(--bg-soft);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.browser__bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ink-200);
}

.browser__bar span:first-child {
  background: #ff5f57;
}
.browser__bar span:nth-child(2) {
  background: #febc2e;
}
.browser__bar span:nth-child(3) {
  background: #28c840;
}

.browser__url {
  margin-left: 12px;
  background: #ffffff;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  color: var(--ink-400);
  border: 1px solid rgba(15, 23, 42, 0.06);
  flex: 1;
  text-align: center;
}

.browser__body {
  padding: 24px;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
  min-height: 320px;
  position: relative;
}

.browser__listing {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-sm);
}

.browser__photo {
  height: 180px;
  background: linear-gradient(135deg, #c1ddd2 0%, #8ec8b3 100%);
  position: relative;
}

.browser__photo::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: var(--radius-sm);
  background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.3),
      rgba(255, 255, 255, 0)
    ),
    radial-gradient(circle at 30% 70%, rgba(18, 125, 107, 0.3), transparent 60%);
}

.browser__meta {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.browser__meta strong {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink-900);
}

.browser__meta span {
  color: var(--ink-400);
  font-size: 14px;
}

.floating-explore {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-700);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  border: 0;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  animation: bob 3s ease-in-out infinite;
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

/* ---------- ONE LINE OF CODE ---------- */
.section--code {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-mint) 100%);
}

.code-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 900px) {
  .code-wrap {
    grid-template-columns: 1fr;
  }
}

.no-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.no-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-500);
  font-weight: 500;
  font-size: 15px;
  text-decoration: line-through;
  text-decoration-color: rgba(15, 23, 42, 0.18);
}

.x {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.code-tag {
  font-size: 18px;
  font-weight: 600;
  color: var(--green-700);
  margin-top: 16px;
}

.code-block {
  background: #0f172a;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.code-block__bar {
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.code-block__bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.code-block__bar span:first-child {
  background: #ff5f57;
}
.code-block__bar span:nth-child(2) {
  background: #febc2e;
}
.code-block__bar span:nth-child(3) {
  background: #28c840;
}

.code-block__file {
  margin-left: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.code-block pre {
  margin: 0;
  padding: 32px 24px;
  overflow-x: auto;
}

.code-block code {
  font-family: "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;
  font-size: 14px;
  line-height: 1.6;
  color: #e2e8f0;
  white-space: pre-wrap;
  word-break: break-word;
}

.code-block .tag {
  color: var(--lime-500);
}

.code-block .attr {
  color: #93c5fd;
}

.code-block .str {
  color: #fcd34d;
}

.code-block__foot {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(172, 239, 0, 0.08);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ---------- STEPS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    border-color 0.2s ease;
  position: relative;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(18, 125, 107, 0.2);
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--lime-500);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 16px;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-900);
}

.step p {
  margin: 0;
  color: var(--ink-400);
  font-size: 14px;
  line-height: 1.55;
}

/* ---------- MODELS GRID ---------- */
.models {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .models {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .models {
    grid-template-columns: 1fr;
  }
}

.model {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.model:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.model__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--lime-100);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.model h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-900);
}

.model p {
  margin: 0;
  color: var(--ink-400);
  font-size: 14px;
  line-height: 1.55;
}

/* Four equal-width models on a single row (Ways to Partner) */
.models--four {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1000px) {
  .models--four {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .models--four {
    grid-template-columns: 1fr;
  }
}

/* ---------- REVENUE CARD ---------- */
.revenue-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
}

.revenue-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.revenue-card__live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime-100);
  color: var(--green-900);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.revenue-card__num {
  font-size: 56px;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.revenue-card__num span {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink-400);
}

.revenue-card__label {
  color: var(--ink-400);
  font-size: 14px;
  margin-top: 8px;
  margin-bottom: 32px;
}

.revenue-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
  padding: 12px 0;
  border-radius: var(--radius-md);
  background: linear-gradient(
    180deg,
    rgba(172, 239, 0, 0.08) 0%,
    transparent 100%
  );
  margin-bottom: 24px;
}

.revenue-chart > div {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--lime-500), var(--green-500));
  border-radius: 6px 6px 0 0;
  transition: opacity 0.2s ease;
}

.revenue-card__foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.revenue-card__foot > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.revenue-card__foot strong {
  font-size: 20px;
  font-weight: 700;
  color: var(--green-700);
}

.revenue-card__foot span {
  font-size: 12px;
  color: var(--ink-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- CTA ---------- */
.cta {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0d5a4d 0%, #127d6b 100%);
  color: #ffffff;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(172, 239, 0, 0.15),
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(172, 239, 0, 0.1),
      transparent 50%
    );
  pointer-events: none;
}

.cta__inner {
  position: relative;
  text-align: center;
  max-width: 800px;
}

.cta__title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 24px 0 20px;
  color: #ffffff;
}

.cta__lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 32px;
}

.cta__btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta__form-intro {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin: 0 auto 20px;
  line-height: 1.55;
}

/* Calendly links disabled until realtor/partner form is submitted (see calendly-gate.js) */
a.calendly-gate.calendly-gate--locked {
  opacity: 0.42;
  cursor: not-allowed;
  text-decoration: none;
}

.form-unlock-hint {
  font-size: 14px;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.55);
  margin-top: 14px;
  max-width: 460px;
  line-height: 1.45;
}
.hero--rich-skyline .form-unlock-hint {
  color: rgba(255, 255, 255, 0.78);
}
.hero--rich-skyline .form-unlock-hint a {
  color: #c6f7e8;
  text-decoration: underline;
  font-weight: 700;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #ffffff;
  padding-top: 64px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
}

@media (max-width: 800px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer__brand p {
  color: var(--ink-400);
  margin-top: 16px;
  font-size: 15px;
  max-width: 320px;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 500px) {
  .footer__cols {
    grid-template-columns: 1fr;
  }
}

.footer__cols h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-900);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
}

.footer__cols a {
  display: block;
  color: var(--ink-400);
  font-size: 15px;
  padding: 6px 0;
  transition: color 0.15s ease;
}

.footer__cols a:hover {
  color: var(--green-700);
}

.footer__legal {
  background: var(--bg-soft);
  padding: 20px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.footer__legal-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--ink-400);
  flex-wrap: wrap;
  gap: 12px;
}

.footer__legal a {
  margin-left: 16px;
  transition: color 0.15s ease;
}

.footer__legal a:hover {
  color: var(--green-700);
}

/* =========================================================
   HOME PAGE COMPONENTS
   ========================================================= */

/* ---------- NAV LINKS (used on home page) ---------- */
.nav__links a {
  font-weight: 500;
  transition: color 0.15s ease;
}
.nav__links a.nav__main {
  font-weight: 600;
  color: #0f172a;
  font-size: 15px;
}
.nav__links a.nav__main:hover {
  background: #f1f5f9;
  color: #0f172a;
}

@media (max-width: 900px) {
  .nav__links {
    display: none;
  }
}

/* ---------- HERO (home variant: explorer mock visual) ---------- */
.hero-mock {
  position: relative;
}

.hero-mock__floating {
  position: absolute;
  z-index: 4;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--ink-900);
  white-space: nowrap;
}

.hero-mock__floating--a {
  top: -16px;
  left: -28px;
  animation: bob 3.6s ease-in-out infinite;
}

.hero-mock__floating--b {
  bottom: 32px;
  right: -28px;
  animation: bob 4.2s ease-in-out infinite;
}

.hero-mock__floating strong {
  color: var(--green-700);
  font-weight: 700;
}

@media (max-width: 1000px) {
  .hero-mock__floating--a {
    left: 0;
  }
  .hero-mock__floating--b {
    right: 0;
  }
}

/* ---------- EXPLORER MOCK (reusable popup card) ---------- */
.explorer-mock {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
}

.explorer-mock::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 90% 0%,
      rgba(172, 239, 0, 0.18),
      transparent 55%
    ),
    radial-gradient(
      circle at 0% 100%,
      rgba(18, 125, 107, 0.08),
      transparent 55%
    );
  pointer-events: none;
}

.explorer-mock > * {
  position: relative;
}

.explorer-mock__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.explorer-mock__location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-soft);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-900);
}

.explorer-mock__location svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.explorer-mock__close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-400);
  font-weight: 700;
  font-size: 14px;
}

.explorer-mock__tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-soft);
  padding: 5px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.explorer-mock__tab {
  flex: 1;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-400);
  padding: 8px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.explorer-mock__tab--active {
  background: var(--green-700);
  color: var(--lime-500);
}

.explorer-mock__scores {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.score-tile {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  text-align: center;
}

.score-tile--green {
  background: var(--green-700);
  color: #ffffff;
}

.score-tile__num {
  font-size: 24px;
  font-weight: 700;
  color: var(--green-700);
  line-height: 1;
}

.score-tile--green .score-tile__num {
  color: var(--lime-500);
}

.score-tile__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-400);
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}

.score-tile--green .score-tile__label {
  color: rgba(255, 255, 255, 0.75);
}

.explorer-mock__schools {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}

.explorer-mock__schools h4 {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-400);
}

.school-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 14px;
}

.school-row:first-of-type {
  border-top: 0;
}

.school-row strong {
  color: var(--ink-900);
  font-weight: 600;
}

.school-row__rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--lime-100);
  color: var(--green-900);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  font-weight: 700;
  font-size: 12px;
}

/* ---------- STAT BANNER (Why it matters) ---------- */
.stat-banner {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-mint) 100%);
  padding: 100px 0;
  text-align: center;
}

.stat-banner__inner {
  max-width: 880px;
  margin: 0 auto;
}

.stat-banner__num {
  font-size: clamp(72px, 12vw, 132px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(120deg, var(--green-700), var(--lime-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}

.stat-banner__title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
  color: var(--ink-900);
  line-height: 1.2;
}

.stat-banner__body {
  color: var(--ink-400);
  font-size: 17px;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 720px;
}

.stat-banner__body + .stat-banner__body {
  margin-top: 16px;
}

.stat-banner__body--alert {
  margin-top: 28px;
  max-width: 760px;
  font-size: clamp(19px, 2.4vw, 24px);
  line-height: 1.5;
  font-weight: 500;
  color: var(--ink-900);
}

.stat-banner__body--alert strong {
  color: var(--green-700);
  font-weight: 700;
}

.stat-banner__highlight {
  font-weight: 700;
  color: var(--ink-900);
  background: linear-gradient(180deg, transparent 58%, var(--lime-400) 58%);
  padding: 0 3px;
  white-space: nowrap;
}

/* ---------- DATA MOAT (proprietary database stream) ---------- */
.data-moat {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 48px;
  align-items: center;
  margin-top: 8px;
}

.data-moat__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.data-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--ink-200);
  font-size: 13px;
  font-weight: 600;
  color: var(--green-700);
}

.data-stream {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  height: 460px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
}

.data-stream__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  animation: data-scroll linear infinite;
  will-change: transform;
}

.data-stream__col--a { animation-duration: 34s; }
.data-stream__col--b { animation-duration: 42s; animation-direction: reverse; }
.data-stream__col--c { animation-duration: 38s; }

@keyframes data-scroll {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

.data-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink-700);
  box-shadow: 0 4px 14px rgba(2, 32, 27, 0.04);
}

.data-item__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--lime-100);
  color: var(--green-700);
}

.data-item__icon svg {
  display: block;
  width: 17px;
  height: 17px;
}

@media (prefers-reduced-motion: reduce) {
  .data-stream__col { animation: none; }
}

@media (max-width: 860px) {
  .data-moat { grid-template-columns: 1fr; gap: 32px; }
  .data-stream { height: 320px; }
}

/* ---------- BENEFIT LIST (arrow rows) ---------- */
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  color: var(--ink-700);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
}

.benefit-list li::before {
  content: "→";
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--lime-100);
  color: var(--green-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

/* ---------- INSIGHT CARDS (5 categories) ---------- */
.insights {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

@media (max-width: 1100px) {
  .insights {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .insights {
    grid-template-columns: 1fr;
  }
}

/* Evenly spaced 3-up variant (Partners: For Your Clients) */
.insights--3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .insights--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .insights--3 {
    grid-template-columns: 1fr;
  }
}

.insight-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(18, 125, 107, 0.2);
}

.insight-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--lime-100);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.insight-card__icon svg {
  width: 24px;
  height: 24px;
}

.insight-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-900);
}

.insight-card p {
  margin: 0;
  color: var(--ink-400);
  font-size: 14px;
  line-height: 1.55;
}

/* ---------- LEAD FORM MOCK ---------- */
.leadform-mock {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15, 23, 42, 0.06);
  overflow: hidden;
  position: relative;
}

.leadform-mock__top {
  position: relative;
  background: linear-gradient(135deg, #f3faf7, #ebf8d1);
  padding: 24px;
}

.leadform-mock__top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, #ffffff 100%);
  pointer-events: none;
}

.leadform-mock__blur {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  filter: blur(2px);
  opacity: 0.7;
}

.leadform-mock__blur > div {
  background: rgba(255, 255, 255, 0.85);
  height: 56px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 23, 42, 0.06);
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-weight: 700;
  color: var(--green-700);
}

.leadform-mock__form {
  padding: 24px 28px 28px;
  display: grid;
  gap: 12px;
  position: relative;
  margin-top: -32px;
  z-index: 1;
}

.leadform-mock__form h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-900);
}

.leadform-mock__form > p {
  margin: 0 0 8px;
  color: var(--ink-400);
  font-size: 14px;
}

.leadform-mock__field {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--radius-pill);
  padding: 13px 18px;
  font-size: 14px;
  color: var(--ink-400);
  background: var(--bg-soft);
}

.leadform-mock__btn {
  margin-top: 4px;
  background: var(--green-700);
  color: var(--lime-500);
  border-radius: var(--radius-pill);
  padding: 14px 16px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
}

/* ---------- USE CASES ---------- */
.use-cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .use-cases {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .use-cases {
    grid-template-columns: 1fr;
  }
}

.use-case {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.use-case:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(18, 125, 107, 0.2);
}

.use-case__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--lime-100);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.use-case h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-900);
}

.use-case p {
  margin: 0;
  color: var(--ink-400);
  font-size: 14px;
  line-height: 1.55;
}

/* ---------- BROKERAGE STEPS (numbered, large) ---------- */
.brokerage-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 700px) {
  .brokerage-steps {
    grid-template-columns: 1fr;
  }
}

.brokerage-step {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: flex-start;
}

.brokerage-step__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--lime-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
}

.brokerage-step h3 {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 600;
  color: var(--ink-900);
}

.brokerage-step p {
  margin: 0;
  color: var(--ink-400);
  font-size: 15px;
  line-height: 1.55;
}

.brokerage-step ul {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--ink-400);
  font-size: 14px;
  line-height: 1.6;
}

/* ---------- HOW IT WORKS: unified, centered cards ---------- */
.how-steps {
  grid-template-columns: repeat(3, 1fr);
}

.how-steps .brokerage-step {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 14px;
}

@media (max-width: 800px) {
  .how-steps {
    grid-template-columns: 1fr;
  }
}

#how .insight-card {
  text-align: center;
}

#how .insight-card__icon {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- PRICING ---------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .pricing {
    grid-template-columns: 1fr;
  }
}

.plan {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.plan--featured {
  background: linear-gradient(180deg, var(--green-900), var(--green-700));
  color: #ffffff;
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.plan--featured::after {
  content: "MOST POPULAR";
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--lime-500);
  color: var(--ink-900);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.plan__name {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink-900);
}

.plan--featured .plan__name {
  color: #ffffff;
}

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 16px 0 4px;
}

.plan__price strong {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  line-height: 1;
}

.plan--featured .plan__price strong {
  color: var(--lime-500);
}

.plan__price span {
  color: var(--ink-400);
  font-size: 16px;
  font-weight: 500;
}

.plan--featured .plan__price span {
  color: rgba(255, 255, 255, 0.8);
}

.plan__annual {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-700);
}

.plan--featured .plan__annual {
  color: var(--lime-500);
}

.plan__sub {
  color: var(--ink-400);
  font-size: 14px;
  margin: 0 0 24px;
}

.plan--featured .plan__sub {
  color: rgba(255, 255, 255, 0.8);
}

.plan__features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
}

.plan__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-700);
  font-weight: 500;
  line-height: 1.4;
}

.plan--featured .plan__features li {
  color: rgba(255, 255, 255, 0.92);
}

.plan__features li::before {
  content: "";
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--lime-100);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23127D6B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px;
}

.plan--featured .plan__features li::before {
  background-color: rgba(172, 239, 0, 0.15);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ACEF00' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}

.plan .btn {
  margin-top: auto;
  width: 100%;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq__item {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-900);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--lime-100);
  color: var(--green-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.faq__item[open] summary::after {
  content: "−";
  background: var(--green-700);
  color: var(--lime-500);
}

.faq__item > div {
  padding: 0 24px 22px;
  color: var(--ink-400);
  font-size: 15px;
  line-height: 1.65;
}

.faq__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.faq__btns .btn {
  font-size: 14px;
}

/* Grouped FAQ categories (comprehensive FAQ pages) */
.faq-group {
  max-width: 820px;
  margin: 0 auto;
}

.faq-group + .faq-group {
  margin-top: 44px;
}

.faq-group__head {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-700);
  margin: 0 0 16px;
  padding-left: 4px;
}

/* FAQ audience switch (Realtors vs Partners) */
.faq-switch {
  text-align: center;
  margin-bottom: 44px;
}

.faq-switch .demo-toggle {
  margin-top: 0;
}

.faq-switch .demo-toggle__btn {
  cursor: pointer;
}

/* =========================================================
   New sections for Bill's review Partners page
   ========================================================= */

/* Metrics strip - improved card style */
.metrics-strip {
  padding: 56px 0;
  background: #f8fafc;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}
.metric-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}
.metric-card__num {
  font-size: 26px;
  font-weight: 700;
  color: #127d6b;
  line-height: 1.1;
  margin-bottom: 8px;
}
.metric-card__label {
  font-size: 14px;
  color: #475569;
  line-height: 1.35;
}
.metrics-note {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}
.metrics-note p {
  margin: 0 0 8px;
}
.metrics-note__highlight {
  font-weight: 500;
  color: #0f172a;
  margin-top: 12px !important;
}

/* Partner types */
.partner-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.partner-type {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
}
.partner-type h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #0f172a;
}
.partner-type p {
  margin: 0;
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}

/* Revenue grid */
.revenue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.revenue-item {
  background: #f8fafc;
  border-radius: 10px;
  padding: 20px;
}
.revenue-item h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: #127d6b;
}
.revenue-item p {
  margin: 0;
  font-size: 14px;
  color: #475569;
}

/* General content improvements */
.content-wide {
  max-width: 780px;
  margin: 0 auto;
}
.big-lead {
  font-size: 21px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 16px;
}
.emphasis {
  font-weight: 600;
  color: #0f172a;
}
.ecosystem-list {
  font-size: 15px;
  color: #475569;
  margin-top: 16px;
}

/* Section-level CTAs for better distribution */
.section-cta {
  margin-top: 32px;
  text-align: center;
}
.section-cta .btn {
  margin: 0 8px 8px 0;
}
.two-col-grid {
  columns: 2;
  column-gap: 40px;
}
@media (max-width: 700px) {
  .two-col-grid {
    columns: 1;
  }
}

/* New Benefits Grid for Value section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.benefit {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 18px 20px;
}
.benefit h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
  color: #127d6b;
}
.benefit p {
  margin: 0;
  font-size: 14px;
  color: #475569;
  line-height: 1.4;
}

/* See How It Works Demo Section - Realistic Listing + Full Width Explorer */
.demo-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 4px;
}
.demo-tab {
  padding: 10px 20px;
  border: none;
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -4px;
  transition: all 0.2s ease;
}
.demo-tab.active {
  color: #127d6b;
  border-bottom-color: #127d6b;
}
.demo-tab:hover {
  color: #0f172a;
}

.demo-view {
  display: none;
}
.demo-view.active {
  display: block;
}

/* Realistic listing card for the demo */
.real-listing-demo {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  margin-bottom: 12px;
}

.real-listing-header {
  display: flex;
  padding: 16px;
  gap: 16px;
  border-bottom: 1px solid #f1f5f9;
}

.real-listing-photo {
  width: 160px;
  height: 110px;
  background: linear-gradient(135deg, #64748b, #475569);
  border-radius: 8px;
  flex-shrink: 0;
  background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56b773?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=60'); /* placeholder riverfront home */
  background-size: cover;
  background-position: center;
}

.real-listing-details {
  flex: 1;
  min-width: 0;
}

.real-listing-price {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
}

.real-listing-meta {
  font-size: 14px;
  color: #64748b;
  margin-top: 4px;
}

.real-listing-address {
  font-size: 14px;
  color: #334155;
  margin-top: 6px;
  font-weight: 500;
}

.real-listing-desc {
  font-size: 13px;
  color: #475569;
  margin-top: 8px;
  line-height: 1.4;
}

/* Fake listing card for See How It Works demo */
.fake-listing-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  margin-bottom: 12px;
}

.fake-listing-photo {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.fake-listing-body {
  padding: 16px;
}

.fake-listing-price {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
}

.fake-listing-meta {
  font-size: 14px;
  color: #64748b;
  margin-top: 4px;
}

.fake-listing-address {
  font-size: 14px;
  color: #334155;
  margin-top: 6px;
  font-weight: 500;
}

.fake-listing-desc {
  font-size: 13px;
  color: #475569;
  margin-top: 8px;
  line-height: 1.4;
}

/* Full width explorer inside the realistic listing demo */
.real-listing-demo #dn-explorer {
  width: 100% !important;
  min-height: 420px;
  display: block;
}

.demo-caption {
  text-align: center;
  font-size: 13px;
  color: #64748b;
  margin-top: 12px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Popup Modal */
.explorer-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.explorer-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
}
.explorer-modal__content {
  position: relative;
  max-width: 520px;
  margin: 60px auto;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}
.explorer-modal__header {
  padding: 16px 20px;
  border-bottom: 1px solid #e2e8f0;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fafc;
}
.explorer-modal__close {
  font-size: 28px;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  color: #64748b;
}
.explorer-modal__body {
  padding: 20px;
}
.modal-mock-map {
  height: 220px;
  background: linear-gradient(180deg, #bae6fd, #7dd3fc);
  border-radius: 10px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
}
.modal-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.modal-stat {
  background: #f8fafc;
  padding: 12px;
  border-radius: 8px;
  font-size: 13px;
}
.modal-stat strong {
  display: block;
  font-size: 14px;
  color: #0f172a;
}
.modal-actions {
  display: flex;
  gap: 12px;
}
.modal-actions .btn {
  flex: 1;
}

/* =========================================================
   Partners page: density, case study, chips, contact form
   ========================================================= */

/* Chip row (search-term pills used in Why Buyers Leave / Why Now) */
.chip-row {
  list-style: none;
  padding: 0;
  margin: 0 auto 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 720px;
}
.chip-row li {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  color: var(--ink-700);
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
}
.section--alt .chip-row li {
  background: #ffffff;
}

/* Featured partner / case study block */
.case-study {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 8px;
}
@media (max-width: 800px) {
  .case-study {
    grid-template-columns: 1fr;
  }
}
.case-study__main {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.case-study__main h3 {
  margin: 0 0 16px;
  font-size: 19px;
  font-weight: 600;
  color: var(--ink-900);
}
.case-study__main .benefit-list {
  margin-top: 0;
}
.case-study__side {
  background: linear-gradient(180deg, var(--green-900), var(--green-700));
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.case-study__side-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime-500);
}
.case-study__platforms {
  list-style: none;
  padding: 0;
  margin: 8px 0 24px;
  display: grid;
  gap: 8px;
}
.case-study__platforms li {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.case-study__side .btn {
  width: 100%;
}

/* Partner contact form (Netlify Forms) */
.partner-form {
  max-width: 760px;
  margin: 8px auto 0;
  text-align: left;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(6px);
}
.partner-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 600px) {
  .partner-form__row {
    grid-template-columns: 1fr;
  }
}
.partner-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.partner-form__field > span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}
.partner-form__field input,
.partner-form__field select {
  font-family: inherit;
  font-size: 15px;
  color: var(--ink-900);
  background: #ffffff;
  border: 1.5px solid transparent;
  border-radius: var(--radius-pill);
  padding: 13px 18px;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.partner-form__field input::placeholder {
  color: var(--ink-300);
}
.partner-form__field input:focus,
.partner-form__field select:focus {
  outline: none;
  border-color: var(--lime-500);
  box-shadow: 0 0 0 3px rgba(172, 239, 0, 0.25);
}
.partner-form__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
}
.partner-form__actions .btn {
  border: none;
}
.partner-form__actions .btn--outline-lime {
  border: 1.5px solid var(--lime-500);
}
.partner-form__success {
  max-width: 620px;
  margin: 16px auto 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(172, 239, 0, 0.4);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.partner-form__success h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}
.partner-form__success-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.55;
}
.partner-form__success-actions {
  margin-top: 20px;
}
.partner-form__success-actions .btn {
  text-decoration: none;
}
