/* ==========================================================================
   WV Coming Soon — per-page "feature not yet shipped" template
   --------------------------------------------------------------------------
   Mirrors wp-content/wv-maintenance/index.html visually. Self-contained
   typography (no .wv-* class applied to any element here) so the look
   matches the maintenance page exactly rather than tracking the H1/H-serif
   global scales — CLAUDE.md Rule 3 doesn't fire since no typography class
   is applied to the styled selectors.

   Applied via template-coming-soon.php — used pre-launch on /quiz,
   /shop-benefit, /bundles, /subscribe until each feature ships.
   ========================================================================== */

/* Body reset for the standalone page (no site chrome to push against). */
.wv-coming-soon-page {
  margin: 0;
  padding: 0;
}

.wv-coming-soon {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wv-color-background);
  color: var(--wv-color-text-primary);
  padding: 48px 24px;
}

.wv-coming-soon__wrap {
  width: 100%;
  max-width: 800px;
  text-align: center;
}

.wv-coming-soon__logo {
  height: 45px;
  width: auto;
  margin: 0 auto 56px;
  display: block;
}

/* Eyebrow — uppercase olive accent. */
.wv-coming-soon__eyebrow {
  font-family: var(--wv-font-primary);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wv-color-accent);
  margin: 0 0 20px;
}

.wv-coming-soon__headline {
  margin: 0 0 28px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.wv-coming-soon__headline-1 {
  display: block;
  font-family: var(--wv-font-primary);
  font-weight: 300;
  font-size: clamp(40px, 8vw, 70px);
  color: var(--wv-color-text-primary);
}

.wv-coming-soon__headline-2 {
  display: block;
  font-family: var(--wv-font-serif);
  font-weight: 400;
  font-size: clamp(40px, 8vw, 70px);
  color: var(--wv-color-accent);
}

.wv-coming-soon__body {
  font-family: var(--wv-font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--wv-color-text-secondary);
  max-width: 380px;
  margin: 0 auto 56px;
}

.wv-coming-soon__progress {
  max-width: 300px;
  margin: 0 auto 14px;
}

.wv-coming-soon__progress-track {
  height: 6px;
  background: var(--wv-color-surface);
  border-radius: 999px;
  overflow: hidden;
}

.wv-coming-soon__progress-fill {
  height: 100%;
  /* Static 25% fill — drop the hour-of-day cycling from the maintenance
     page. Per-feature progress is communicated via the label, not the
     bar width. */
  width: 25%;
  background: var(--wv-color-accent);
  border-radius: 999px;
}

.wv-coming-soon__progress-label {
  font-family: var(--wv-font-primary);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wv-color-surface-2);
  margin: 14px 0 32px;
}

/* CTA — single "Shop All" link sending visitors to the live store
   instead of leaving them stuck. */
.wv-coming-soon__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  min-height: 44px;
  background: var(--wv-color-text-primary);
  color: var(--wv-color-text-inverse);
  font-family: var(--wv-font-primary);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--wv-radius-pill);
  transition: var(--wv-transition-color);
}

.wv-coming-soon__cta:hover,
.wv-coming-soon__cta:focus-visible {
  background: var(--wv-color-accent);
  color: var(--wv-color-text-inverse);
}

.wv-coming-soon__footer {
  font-family: var(--wv-font-primary);
  font-weight: 600;
  font-size: 12px;
  color: var(--wv-color-text-secondary);
  margin: 64px 0 0;
}
