/* Waitlist panels reuse the .plan card shell; only the countdown and the form are new. */
.plans-grid .plan { min-height: 0; }
.plan-lede { margin: 1.1rem 0 0; color: var(--muted); font-size: .94rem; line-height: 1.55; }

.countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: .55rem; margin-top: 1.6rem; }
.countdown[hidden] { display: none; }

.countdown-unit {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  padding: 1rem .4rem 1.05rem;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: rgb(251 250 246 / 55%);
  text-align: center;
}

.countdown-unit strong {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.75rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
}

.countdown-unit span {
  color: var(--muted);
  font-family: var(--font-label);
  font-size: .56rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.countdown-date { margin: 1.1rem 0 0; color: var(--quiet); font-size: .8rem; }

.countdown-open {
  margin-top: 1.6rem;
  padding: 1.4rem;
  border: 1px solid rgb(81 0 30 / 30%);
  border-radius: 6px;
  color: var(--wine);
  font-family: var(--font-display);
  font-size: var(--step-1);
  line-height: 1.25;
}

.countdown-open[hidden] { display: none; }

.waitlist-points {
  display: grid;
  gap: 0;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.waitlist-points li {
  position: relative;
  padding: .5rem 0 .5rem 1.35rem;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: .94rem;
}

.waitlist-points li::before { content: "—"; position: absolute; left: 0; color: var(--wine); }

.waitlist-form { display: grid; gap: 1.1rem; margin-top: 1.5rem; }
.waitlist-form[hidden] { display: none; }
.waitlist-form .field input { font-size: .9rem; }
.waitlist-form .button { width: 100%; margin-top: .2rem; }
.waitlist-form .button[disabled] { opacity: .6; cursor: progress; }

/* Honeypot: off-screen for people, irresistible for bots. */
.waitlist-hp { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; border: 0; overflow: hidden; clip-path: inset(50%); }

.consent { display: flex; align-items: flex-start; gap: .7rem; color: var(--muted); font-size: .8rem; line-height: 1.5; }
.consent input { flex: none; width: 1.05rem; height: 1.05rem; margin-top: .15rem; accent-color: var(--wine); }

.waitlist-note { margin: 0; color: var(--quiet); font-size: .78rem; line-height: 1.6; }
.waitlist-status { margin: 0; min-height: 1.2rem; color: var(--muted); font-size: .82rem; }
.waitlist-status[data-tone="error"] { color: var(--wine); }

.waitlist-success { margin-top: 1.5rem; }
.waitlist-success[hidden] { display: none; }
.waitlist-success:focus-visible { outline: 2px solid var(--wine); outline-offset: 6px; border-radius: 4px; }
.waitlist-success h3 { margin: 0 0 .7rem; font-family: var(--font-display); font-size: var(--step-1); font-weight: 400; }
.waitlist-success p { margin: 0 0 .8rem; color: var(--muted); font-size: .92rem; line-height: 1.6; }
.waitlist-success p:last-child { margin-bottom: 0; }

@media (max-width: 720px) {
  .countdown { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
}
