/* ============================================================
   Eddy landing - beta invitation
   ============================================================ */

/* Plain and centered, like .home-final-cta below the FAQ — no card, no
   badge, no color accent beyond the buttons. */

.home-beta {
  text-align: center;
  padding-top: clamp(var(--sp-7), 8vw, 5rem);
}

.home-beta-inner {
  max-width: 40rem;
  margin: 0 auto;

  /* Scroll-in entrance, independent of the sitewide .reveal system (see
     runBetaPanelReveal in home-motion.js). */
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.home-beta-inner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Same type scale as the rest of the page (.home-section-headline is 56px,
   .home-section-lede is 22px — see base.css) — only layout is overridden
   here, not typography, so this reads at the same size as sections 2/3. */
.home-beta-title.home-section-headline {
  max-width: 22ch;
  margin: 0 auto var(--sp-3);
}

.home-beta-lede.home-section-lede {
  max-width: 46ch;
  margin: var(--sp-4) auto 0;
}

.home-beta-cta {
  margin-top: clamp(var(--sp-5), 3vw, var(--sp-6));
}

/* Fact strip: plain centered row, hairline-topped. Flex-wrap rather than a
   3-col grid: the three facts are different lengths, so equal-width columns
   forced uneven wrapping and jagged row heights. No between-item dividers
   either — a border-left on wrapped flex items leaves an orphaned rule at
   the start of the next line. */
.home-beta-points {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: clamp(var(--sp-6), 4vw, 2.5rem) 0 0;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
  list-style: none;
}

.home-beta-point {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0.5rem 1.1rem;
  color: var(--ink-3);
  font-family: var(--font-subheadline);
  font-size: var(--text-sm);
  line-height: 1.4;
  white-space: nowrap;
}

.home-beta-point-icon {
  display: inline-flex;
  flex: 0 0 auto;
  color: var(--ink-4);
}

.home-hero-beta-note {
  margin: calc(-1 * var(--sp-3)) 0 var(--sp-6);
  color: var(--ink-3);
  font-family: var(--font-subheadline);
  font-size: var(--text-sm);
  line-height: 1.45;
}

@media (max-width: 640px) {
  .home-beta-points {
    flex-direction: column;
    align-items: stretch;
  }

  .home-beta-point {
    justify-content: flex-start;
    padding: 0.7rem 0;
  }

  .home-beta-point + .home-beta-point {
    border-top: 1px solid var(--border);
  }

  .home-beta-cta {
    width: 100%;
  }
}
