/* css/journey-intro.css - the per-persona intro gate (js/journey-intro.js), shown
   before a scripted journey auto-plays. Brand-styled with --brand-* (brand.css) so
   SPARKS-SIX frames the (skinned) demo. Mounts into .message-list, so it fills the
   chat column and centres its card; removed on Watch, then beats play. ASCII only. */

.journey-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 24px 8px;
  background: var(--brand-bg);
  background-image: var(--brand-glow);
}

.journey-intro__card {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 32px 28px;
  border: 1px solid var(--brand-line);
  border-radius: 18px;
  background: var(--brand-raised);
  color: var(--brand-ink);
  box-shadow: 0 18px 50px -24px rgba(0, 0, 0, 0.6);
}

.journey-intro__eyebrow {
  font-family: var(--brand-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-accent);
}
.journey-intro__name {
  margin: 0;
  font-family: var(--brand-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--brand-ink);
}
.journey-intro__role {
  margin: 0;
  font-family: var(--brand-sans);
  font-size: 0.98rem;
  color: var(--brand-ink);
}
.journey-intro__tool {
  margin: 0;
  font-family: var(--brand-sans);
  font-size: 0.85rem;
  color: var(--brand-ink-60);
}
.journey-intro__watchlabel {
  margin-top: 12px;
  font-family: var(--brand-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-ink-60);
}
.journey-intro__watch {
  margin: 0;
  max-width: 38ch;
  font-family: var(--brand-sans);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--brand-ink);
}
.journey-intro__btn {
  margin-top: 18px;
  min-height: 48px;
  padding: 0 28px;
  border: none;
  border-radius: 999px;
  background: var(--brand-accent);
  /* --brand-bg contrasts with --brand-accent in BOTH themes: dark ink on gold
     (Atelier), light paper on teal (Editorial). */
  color: var(--brand-bg);
  font-family: var(--brand-sans);
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.08s ease, filter 0.12s ease;
}
.journey-intro__btn:hover { filter: brightness(1.06); }
.journey-intro__btn:active { transform: translateY(1px); }
.journey-intro__btn:focus-visible { outline: 2px solid var(--brand-accent); outline-offset: 3px; }

@media (max-width: 480px) {
  .journey-intro__card { padding: 26px 20px; border-radius: 16px; }
  .journey-intro__name { font-size: 1.7rem; }
  .journey-intro__btn { width: 100%; }
}
