/* ═══════════════════════════════════════════════════════════
   NestVerdict — Landing Page Styles
   Aesthetic: Editorial Precision — refined, trustworthy, premium
═══════════════════════════════════════════════════════════ */

/* ─── Tokens ─────────────────────────────────────────────── */
:root {
  --navy:       #1B2B4B;
  --navy-80:    #1B2B4Bcc;
  --navy-light: #2D3F60;
  --teal:       #2BA8A0;
  --teal-light: #3EC4BC;
  --teal-dim:   #2BA8A020;
  --white:      #FFFFFF;
  --off-white:  #F8F9FC;
  --gray-50:    #F2F4F8;
  --gray-100:   #E4E8F0;
  --gray-200:   #CBD2DF;
  --gray-400:   #8A96AA;
  --gray-600:   #4E5A70;
  --text-base:  #2C3546;
  --text-muted: #6B7587;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  18px;
  --radius-xl:  24px;

  --shadow-sm:  0 1px 3px rgba(27,43,75,.08), 0 1px 2px rgba(27,43,75,.06);
  --shadow-md:  0 4px 16px rgba(27,43,75,.10), 0 2px 6px rgba(27,43,75,.06);
  --shadow-lg:  0 12px 40px rgba(27,43,75,.14), 0 4px 12px rgba(27,43,75,.08);
  --shadow-xl:  0 24px 64px rgba(27,43,75,.18), 0 8px 24px rgba(27,43,75,.10);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --max-w:      1200px;
  --header-h:   68px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-base);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ─── Utilities ──────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.section-eyebrow--light { color: var(--teal-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--navy);
}
.section-title em {
  font-style: italic;
  color: var(--teal);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  border-radius: 100px;
  padding: 11px 24px;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn--lg { font-size: 16px; padding: 14px 30px; }

.btn--primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(27,43,75,.25);
}
.btn--primary:hover {
  background: var(--navy-light);
  box-shadow: 0 4px 16px rgba(27,43,75,.30);
  transform: translateY(-1px);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray-200);
}
.btn--ghost:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.btn--teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(43,168,160,.30);
}
.btn--teal:hover {
  background: var(--teal-light);
  box-shadow: 0 4px 16px rgba(43,168,160,.40);
  transform: translateY(-1px);
}


/* ─── Scroll reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal--delay { transition-delay: .18s; }
.reveal--delay-2 { transition-delay: .32s; }
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ══════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow .3s ease;
}
.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__logo {
  flex-shrink: 0;
}

.logo-img {
  height: 52px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-link {
  font-size: 14.5px;
  font-weight: 400;
  color: var(--gray-600);
  transition: color .2s ease;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-link:hover { color: var(--navy); }
.nav-link:hover::after { transform: scaleX(1); }

.header__cta {
  margin-left: 8px;
  padding: 9px 20px;
  font-size: 14px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .25s ease;
}
.hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  box-shadow: var(--shadow-md);
}
.mobile-menu.is-open { display: flex; }
.mobile-link {
  font-size: 16px;
  color: var(--gray-600);
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-50);
}
.mobile-cta { margin-top: 12px; align-self: flex-start; }


/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 80px;
  overflow: hidden;
}

.hero__bg-accent {
  position: absolute;
  top: -120px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal-dim) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
  align-items: center;
}

.hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.10;
  color: var(--navy);
  margin-bottom: 24px;
}
.hero__headline em {
  font-style: italic;
  color: var(--teal);
  display: inline-block;
  position: relative;
}
.hero__headline em::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
  opacity: .35;
}

.hero__sub {
  font-size: 17.5px;
  font-weight: 300;
  color: var(--gray-600);
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ── Mockup ───────────────────────────────────────── */
.hero__mockup {
  position: relative;
}

.mockup-glow {
  position: absolute;
  inset: -30px -20px;
  background: radial-gradient(ellipse at 60% 40%, rgba(43,168,160,.12) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.mockup-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 20px;
  position: relative;
  z-index: 1;
}

.mockup-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.mockup-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-400);
}
.mockup-badge {
  font-size: 11px;
  font-weight: 600;
  background: var(--teal-dim);
  color: var(--teal);
  padding: 3px 10px;
  border-radius: 100px;
}

.mockup-homes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.home-card {
  background: var(--off-white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 13px 12px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.home-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.home-card--winner {
  background: var(--white);
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal), var(--shadow-sm);
}
.home-card--faded { opacity: .65; }

.home-card__tag {
  position: absolute;
  top: -9px; left: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--teal);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 100px;
}

.home-card__address {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-base);
  margin-bottom: 2px;
  margin-top: 6px;
}
.home-card__price {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.score-ring {
  position: relative;
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
}
.score-svg {
  width: 44px;
  height: 44px;
  transform: rotate(-90deg);
}
.score-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
}

.home-card__metrics {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}
.metric {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  color: var(--gray-600);
}
.metric__icon { font-size: 11px; }

.home-card__tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.pill {
  font-size: 9.5px;
  font-weight: 500;
  padding: 2px 7px;
  border-radius: 100px;
}
.pill--good  { background: rgba(43,168,160,.12); color: #1a8880; }
.pill--warn  { background: rgba(245,158,11,.12);  color: #b45309; }
.pill--bad   { background: rgba(224,92,92,.12);   color: #b33; }

.mockup-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 12px 16px;
}
.mockup-footer__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.mockup-footer__label {
  font-size: 10px;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.mockup-footer__value {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
}
.mockup-footer__divider {
  width: 1px;
  height: 28px;
  background: var(--gray-200);
}

/* scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--gray-400);
  animation: fadeInUp .8s 1.4s ease both;
}
.scroll-dot {
  animation: bounce 2.2s 1.8s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translate(-50%, 12px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}


/* ══════════════════════════════════════════════════════════
   PROBLEM
══════════════════════════════════════════════════════════ */
.problem {
  background: var(--gray-50);
  padding: 100px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.problem__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.problem__content .section-title {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  line-height: 1.22;
}

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

.problem-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, transform .25s ease;
}
.problem-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.problem-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--teal-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 16px;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.problem-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}


/* ══════════════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════════════ */
.how-it-works {
  padding: 110px 0;
  background: var(--white);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.step {
  display: grid;
  grid-template-columns: 1fr 2fr 1.4fr;
  gap: 40px 56px;
  align-items: center;
}
.step--reverse {
  grid-template-columns: 1fr 1.4fr 2fr;
}
.step--reverse .step__content { order: 2; }
.step--reverse .step__visual   { order: 3; }

.step__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--gray-100);
  line-height: 1;
  letter-spacing: -.03em;
  align-self: start;
  padding-top: 4px;
}

.step__content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}
.step__content p {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Step visual cards */
.step-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  box-shadow: var(--shadow-md);
}

.step-card__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-50);
}
.step-card__row:last-child { border-bottom: none; }
.step-card__row--adding { opacity: .7; }

.step-card__thumb {
  width: 40px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #d4e2f4 0%, #b8cce8 100%);
  flex-shrink: 0;
}
.step-card__thumb--2 {
  background: linear-gradient(135deg, #d4ede8 0%, #a8d8d0 100%);
}

.step-card__info { flex: 1; }
.skeleton {
  border-radius: 4px;
  background: var(--gray-100);
}
.skeleton--title { height: 11px; width: 80%; margin-bottom: 6px; }
.skeleton--sub   { height: 10px; width: 55%; }

.step-card__badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(43,168,160,.12);
  color: var(--teal);
}
.step-card__badge--active {
  background: rgba(245,158,11,.12);
  color: #b45309;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .6; }
}

/* Criteria card */
.step-card--criteria { display: flex; flex-direction: column; gap: 12px; }
.criteria-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
}
.criteria-row span:first-child { width: 100px; flex-shrink: 0; }
.criteria-bar {
  flex: 1;
  height: 6px;
  background: var(--gray-100);
  border-radius: 100px;
  overflow: hidden;
}
.criteria-fill {
  height: 100%;
  border-radius: 100px;
  background: var(--teal);
  transition: width .8s cubic-bezier(.4,0,.2,1);
}
.criteria-fill--warn { background: #f59e0b; }
.criteria-score {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  width: 24px;
  text-align: right;
  flex-shrink: 0;
}

/* Verdict card */
.step-card--verdict { display: flex; flex-direction: column; gap: 10px; }
.verdict-header {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.verdict-pick {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}
.verdict-reason {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-100);
}
.verdict-score-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
}
.verdict-bar {
  flex: 1;
  height: 6px;
  background: var(--gray-100);
  border-radius: 100px;
  overflow: hidden;
}
.verdict-fill {
  width: 87%;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  border-radius: 100px;
}
.verdict-score-bar span:last-child { font-weight: 600; color: var(--navy); }


/* ══════════════════════════════════════════════════════════
   FEATURES
══════════════════════════════════════════════════════════ */
.features {
  padding: 110px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--teal);
}
.feature-card:hover .feature-card__icon {
  background: var(--teal);
  color: var(--white);
}

.feature-card__icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--teal-dim);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background .25s ease, color .25s ease;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.feature-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
}


/* ══════════════════════════════════════════════════════════
   EARLY ACCESS
══════════════════════════════════════════════════════════ */
.early-access {
  position: relative;
  padding: 110px 0;
  background: var(--navy);
  overflow: hidden;
}

.early-access__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(43,168,160,.20) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(43,168,160,.12) 0%, transparent 50%);
  pointer-events: none;
}

.early-access__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 80px;
  align-items: center;
}

.early-access__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 16px;
}

.early-access__sub {
  font-size: 16.5px;
  font-weight: 300;
  color: rgba(255,255,255,.70);
  line-height: 1.7;
  margin-bottom: 28px;
}

.early-access__perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.early-access__perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: rgba(255,255,255,.80);
}
.early-access__perks li svg { flex-shrink: 0; }

.early-access__form-wrap {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 36px;
  backdrop-filter: blur(8px);
}

.signup-form__label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.70);
  margin-bottom: 8px;
  letter-spacing: .03em;
}

.signup-form__row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.signup-form__input {
  flex: 1;
  height: 50px;
  padding: 0 18px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color .2s ease, background .2s ease;
  min-width: 0;
}
.signup-form__input::placeholder { color: rgba(255,255,255,.38); }
.signup-form__input:focus {
  outline: none;
  border-color: var(--teal);
  background: rgba(255,255,255,.14);
}

.signup-form__btn {
  height: 50px;
  padding: 0 26px;
  flex-shrink: 0;
  font-size: 15px;
}

.signup-form__note {
  font-size: 12px;
  color: rgba(255,255,255,.40);
}

.signup-form__success {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--teal-light);
  background: rgba(43,168,160,.12);
  border: 1px solid rgba(43,168,160,.25);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-top: 12px;
}
.signup-form__success[hidden] { display: none; }


/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 36px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo-img--footer {
  height: 28px;
  opacity: .85;
  filter: brightness(0) invert(1);
}

.footer__tagline {
  font-size: 13.5px;
  color: rgba(255,255,255,.45);
}

.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,.35);
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .hero__headline { font-size: clamp(2.2rem, 6vw, 3.2rem); }
  .hero__sub { max-width: 100%; }
  .hero__mockup { max-width: 580px; margin: 0 auto; }
  .hero__scroll-hint { display: none; }

  .problem__inner { grid-template-columns: 1fr; gap: 40px; }
  .problem__cards { grid-template-columns: repeat(3, 1fr); }

  .step {
    grid-template-columns: 72px 1fr;
    grid-template-rows: auto auto;
    gap: 16px 24px;
  }
  .step--reverse { grid-template-columns: 72px 1fr; }
  .step__number { font-size: 3rem; }
  .step__content { grid-column: 2; }
  .step__visual  { grid-column: 1 / -1; }
  .step--reverse .step__content { order: 0; }
  .step--reverse .step__visual   { order: 0; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .early-access__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__cta { display: none; }
  .hamburger  { display: flex; }

  .hero { padding-top: calc(var(--header-h) + 40px); padding-bottom: 60px; }

  .mockup-homes { grid-template-columns: repeat(3, 1fr); }

  .problem__cards { grid-template-columns: 1fr; }

  .features-grid { grid-template-columns: 1fr; }

  .signup-form__row { flex-direction: column; }
  .signup-form__input { width: 100%; }
  .signup-form__btn   { width: 100%; }

  .footer__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer__brand { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 480px) {
  .mockup-homes {
    grid-template-columns: 1fr;
  }
  .home-card--faded { display: none; }
  .early-access__form-wrap { padding: 24px; }
}
