/* ============================================================
   dashboard.css — customer dashboard layer (loads after site.css)
   Adds: monthly kit banner + "why is it cheap" infographic.
   Reuses site.css warm tokens (--ink, --blue, --line, ...).
   ============================================================ */

/* ---- Monthly Claude kit banner (top of dashboard) ---- */
.kit-banner {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 22px; padding: 20px 22px;
  border: 1px solid #e6cdbd; border-radius: 14px;
  background: linear-gradient(180deg, #fdf6f0, #f8ece3);
}
.kit-banner__icon { flex: 0 0 auto; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; background: #f3ddcd; color: var(--blue); }
.kit-banner__icon svg { width: 24px; height: 24px; }
.kit-banner__text { flex: 1 1 auto; min-width: 0; }
.kit-banner__text .eyebrow { margin-bottom: 6px; }
.kit-banner__text h2 { font-size: 18px; letter-spacing: -.01em; }
.kit-banner__desc { margin: 6px 0 0; color: var(--ink-2); font-size: 13px; line-height: 1.6; }
.kit-banner__action { flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.kit-banner__action .button { white-space: nowrap; }
.kit-banner .button:disabled { cursor: default; }
.kit-banner__soon { padding: 3px 10px; border-radius: 999px; background: #efe8dd; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .02em; }

/* ---- "Why is it cheap?" infographic ---- */
.why-cheap { margin-bottom: 22px; padding: 24px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); }
.why-cheap__head { max-width: 640px; }
.why-cheap__head h2 { font-size: 20px; letter-spacing: -.01em; }
.why-cheap__lead { margin: 10px 0 0; color: var(--ink-2); font-size: 14px; line-height: 1.7; }
.why-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; gap: 12px; margin: 22px 0 0; padding: 0; list-style: none; }
.why-flow__step { text-align: center; padding: 4px 8px; }
.why-flow__ico { display: inline-grid; place-items: center; width: 48px; height: 48px; margin-bottom: 10px; border-radius: 50%; background: #f6ece4; color: var(--blue); }
.why-flow__ico svg { width: 24px; height: 24px; }
.why-flow__step strong { display: block; font-size: 14px; }
.why-flow__step p { margin: 6px 0 0; color: var(--muted); font-size: 12.5px; line-height: 1.55; word-break: keep-all; }
.why-flow__arrow { display: grid; place-items: center; padding-top: 12px; color: #cbb8a6; }
.why-flow__arrow svg { width: 22px; height: 22px; }
.why-cheap__seat { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.why-cheap__seat h3 { font-size: 15px; }
.why-cheap__seat p { margin: 8px 0 0; color: var(--ink-2); font-size: 13px; line-height: 1.65; word-break: keep-all; }
.why-cheap__seat b { color: var(--ink); font-weight: 700; }
.why-cheap__faq { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 16px 26px; }
.faq-item { min-width: 0; }
.faq-q { margin: 0; display: flex; gap: 8px; align-items: flex-start; font-size: 13.5px; font-weight: 750; color: var(--ink); }
.faq-q::before { content: "Q"; flex: 0 0 auto; width: 19px; height: 19px; display: grid; place-items: center; border-radius: 50%; background: #f6ece4; color: var(--blue); font-size: 11px; font-weight: 800; }
.faq-a { margin: 6px 0 0 27px; color: var(--muted); font-size: 12.5px; line-height: 1.6; word-break: keep-all; }

@media (max-width: 720px) {
  .kit-banner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .kit-banner__action { flex-direction: row; align-self: stretch; align-items: center; }
  .kit-banner__action .button { flex: 1 1 auto; }
  .why-flow { grid-template-columns: 1fr; gap: 4px; }
  .why-flow__arrow { transform: rotate(90deg); padding: 2px 0; }
  .why-cheap__faq { grid-template-columns: 1fr; gap: 14px; }
}
