/* ============================================================
   Bullet · Paywall — screen-specific styles.
   Loaded AFTER /v7a/css/reset.css + /v7a/css/v7.css, so it shares
   the v7a tokens (--bg, --ink, --amber, --success, --rule, fonts)
   and base classes (.app, .btn, .callout, .cta-area, .top, .subhead).
   This file only adds paywall components: trial pill, plan card,
   nudge banner, Mariana message, locked interrupt, holding, email
   preview, and the overview hub.
   ============================================================ */

/* Trial day pill — "Day 4 of 7" */
.trial-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--amber);
  background: #FFF3E6;
  border: 1px solid #F0D9B0;
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 18px;
}

/* Plan / price card */
.plan {
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 20px;
  margin: 8px 0 4px;
  background: #FFFFFF;
}
.plan__name { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-muted); }
.plan__price { font-family: var(--font-display); font-weight: 700; color: var(--ink); line-height: 1; margin: 8px 0 2px; }
.plan__amt { font-size: 44px; }
.plan__cycle { font-size: 16px; color: var(--ink-muted); font-family: var(--font-sans); font-weight: 600; }
.plan__trial { font-size: 14px; color: var(--ink-muted); margin: 6px 0 14px; }
.plan__trial strong { color: var(--ink); }
.plan__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.plan__list li { font-size: 14.5px; color: var(--ink); display: flex; gap: 9px; align-items: flex-start; line-height: 1.4; }
.plan__list li::before { content: "✓"; color: var(--success); font-weight: 700; flex: 0 0 auto; }

/* Small reassurance line (cancel anytime, regulated, etc.) */
.reassure { font-size: 13px; color: var(--ink-muted); text-align: center; margin: 12px 0 0; line-height: 1.5; }
.reassure strong { color: var(--ink); }

/* In-app nudge banner (day 4 / day 6) — sits on a faux dashboard strip */
.faux-dash { border: 1px dashed var(--rule); border-radius: 12px; padding: 14px; color: var(--ink-soft); font-size: 13px; text-align: center; margin-bottom: 18px; }
.banner {
  border: 1px solid #F0D9B0;
  background: #FFF8EF;
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.banner__title { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--ink); }
.banner__body { font-size: 14px; color: var(--ink-muted); line-height: 1.5; }
.banner__actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }

/* Mariana (or Richie) personal message */
.msg { display: flex; gap: 12px; align-items: flex-start; }
.msg__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--amber); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 18px; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.msg__bubble { background: #F5F5F2; border-radius: 4px 14px 14px 14px; padding: 14px 16px; }
.msg__who { font-size: 12px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.msg__who span { color: var(--ink-muted); font-weight: 500; }
.msg__text { font-size: 15px; color: var(--ink); line-height: 1.5; }
.msg__text + .msg__text { margin-top: 8px; }

/* Locked-feature interrupt (modal-style card) */
.interrupt { border: 1px solid var(--rule); border-radius: 16px; padding: 24px 20px; text-align: center; box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.interrupt__lock { width: 48px; height: 48px; border-radius: 50%; background: #FFF3E6; color: var(--amber); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 22px; }
.interrupt__title { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--ink); margin: 0 0 8px; }
.interrupt__body { font-size: 15px; color: var(--ink-muted); line-height: 1.5; margin: 0 0 18px; }

/* Offboarding choices */
.choice-list { display: flex; flex-direction: column; gap: 10px; margin: 4px 0; }
.choice { display: block; border: 1px solid var(--rule); border-radius: 12px; padding: 14px 16px; text-decoration: none; color: var(--ink); }
.choice:hover { border-color: var(--ink); }
.choice__title { font-weight: 700; font-size: 15px; }
.choice__sub { font-size: 13px; color: var(--ink-muted); margin-top: 2px; }
.choice--danger .choice__title { color: var(--amber); }

/* Email preview mockup */
.email { border: 1px solid var(--rule); border-radius: 14px; overflow: hidden; background: #fff; }
.email__head { padding: 14px 16px; border-bottom: 1px solid var(--rule); background: #FAFAF7; }
.email__from { display: flex; align-items: center; gap: 10px; }
.email__avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--amber); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; }
.email__sender { font-size: 13px; font-weight: 700; color: var(--ink); }
.email__sender span { color: var(--ink-muted); font-weight: 500; }
.email__subject { font-size: 15px; font-weight: 700; color: var(--ink); margin-top: 10px; }
.email__body { padding: 16px; font-size: 14.5px; color: var(--ink); line-height: 1.6; }
.email__body p { margin: 0 0 12px; }
.email__cta { display: inline-block; background: var(--ink); color: #fff; text-decoration: none; font-weight: 700; font-size: 14px; padding: 10px 18px; border-radius: 8px; }
.email__sign { color: var(--ink-muted); font-size: 14px; }

/* Overview hub */
.hub { max-width: 760px; margin: 0 auto; padding: 40px 20px 80px; }
.hub__title { font-family: var(--font-display); font-weight: 700; font-size: 28px; color: var(--ink); margin: 0 0 4px; }
.hub__lede { color: var(--ink-muted); font-size: 15px; margin: 0 0 8px; line-height: 1.5; }
.hub__note { font-size: 13px; color: var(--amber); margin: 0 0 26px; }
.hub__group-title { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); margin: 26px 0 10px; }
.hub__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.hub__card { display: block; border: 1px solid var(--rule); border-radius: 12px; padding: 14px 16px; text-decoration: none; color: var(--ink); background: #fff; }
.hub__card:hover { border-color: var(--ink); }
.hub__card-step { font-size: 11px; font-weight: 700; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.hub__card-name { font-weight: 700; font-size: 15px; margin-top: 2px; }
.hub__card-desc { font-size: 12.5px; color: var(--ink-muted); margin-top: 4px; line-height: 1.4; }
.hub__card-tag { display: inline-block; margin-top: 8px; font-family: 'SF Mono', ui-monospace, Menlo, monospace; font-size: 10.5px; color: var(--amber); }
