/* Eturnal Rest -- first-access.html: the Plot Alerts buyer membership page.
   Landing-page shape: hero whose CTA is the join button itself (the separate
   pricing section was removed 2026-08-11), how-it-works, benefits, then a
   members-only area for saved searches and billing. Reuses tokens.css /
   base.css / the account-* vocabulary from account.css; only page-specific
   pieces live here. */

/* ---- hero ---- */
.fa-hero {
  max-width: 720px;
}
.fa-hero__lede {
  font-size: var(--fs-lede);
  color: var(--ink-2);
  line-height: var(--lh-body);
  max-width: 60ch;
  margin-bottom: var(--space-5);
}

/* Success/cancel banner, shown right under the hero when it has something to
   say. Reuses .account-banner's look; just needs a width cap here since it
   sits outside the narrow .account-wrap column. */
.fa-banner-wrap {
  max-width: 680px;
}
.fa-banner-wrap .account-banner {
  margin-top: 0;
}

/* ---- how it works: three steps ---- */
.fa-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-7);
}
.fa-step {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}
.fa-step__num {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-800);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.05rem;
}
.fa-step strong {
  display: block;
  color: var(--green-900);
  margin-bottom: 2px;
}

/* ---- benefits ---- */
.fa-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-5);
  margin: var(--space-6) 0 var(--space-5);
}
.fa-benefit {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.1rem 1.2rem;
  background: var(--surface-0);
}
.fa-benefit__ico {
  color: var(--blue-600);
  margin-bottom: 0.5rem;
}
.fa-benefit h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
}
.fa-benefit p {
  margin: 0;
  line-height: var(--lh-body);
  font-size: var(--fs-meta);
}

/* ---- members-only section spacing tweak ---- */
#fa-member {
  padding-top: var(--space-6);
  border-top: 1px solid var(--line);
}

/* ---- mobile: single column, full-width CTAs ---- */
@media (max-width: 720px) {
  .fa-steps {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
}
@media (max-width: 480px) {
  .fa-hero .btn--lg {
    width: 100%;
    justify-content: center;
  }
}

/* ---- width pass (Lorenzo, 2026-08-06: the page read thin; let it breathe) -- */

.fa-hero {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.fa-hero__lede {
  margin-left: auto;
  margin-right: auto;
}
.fa-banner-wrap {
  max-width: 860px;
  margin: 0 auto;
}

/* The members-only area below the pitch: wider than the account page's narrow
   column, and the saved-search form becomes a two-column grid on desktop so
   five stacked inputs stop reading as a thin ribbon of page. This stylesheet
   only loads on this page, so the account page keeps its own width. */
.account-wrap {
  max-width: 900px;
}
#fa-search-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3) var(--space-4);
  align-items: start;
}
#fa-search-form .btn,
#fa-search-form .form-status {
  grid-column: 1 / -1;
}
#fa-search-form .btn {
  justify-self: start;
}
@media (max-width: 720px) {
  #fa-search-form {
    grid-template-columns: 1fr;
  }
}

/* "Your head start": one row per listing whose contact window is still open,
   the plot on the left, the chat button on the right. */
.fa-early-list {
  display: grid;
  gap: var(--space-3);
}
.fa-early-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 12px 14px;
  border: 1px solid var(--line, #d8ded9);
  border-radius: var(--radius);
  background: var(--white);
}
.fa-early-card__title {
  font-weight: 600;
}
.fa-early-card__meta {
  font-size: 0.85rem;
  color: var(--ink-3);
}
@media (max-width: 560px) {
  .fa-early-card {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
  }
}
