/* ============================================
   Fairytale Dreamers Alerts
   Sits on top of the FDT theme tokens in _theme.css
   and the rich palette in style.css. This stylesheet
   adds the alerts-specific surfaces (hero, pricing
   card, alert rows, billing pane, sign-in form).
   ============================================ */

/* ---------- Layout primitives ---------- */
.alerts-shell {
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}
.alerts-shell--narrow { max-width: 640px; }

.alerts-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(58, 46, 90, 0.08);
  background: var(--cream-50, #fdfbf6);
  flex-wrap: wrap;
}
.alerts-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-weight: 600;
  color: var(--purple-900, #2a1f4a);
  font-size: 1.15rem;
  text-decoration: none;
}
.alerts-nav__brand:hover { color: var(--gold-600, #b8975e); }
.alerts-nav__brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: var(--purple-900, #2a1f4a);
  color: var(--gold-300, #e4d2ae);
  border-radius: 8px;
  font-size: 1rem;
  flex-shrink: 0;
}
.alerts-nav__links {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  font-size: .92rem;
}
.alerts-nav__links a,
.alerts-nav__links button {
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--purple-800, #3a2e5a);
  text-decoration: none;
  font: inherit;
  padding: 6px 8px;
  border-radius: 6px;
}
.alerts-nav__links a:hover,
.alerts-nav__links button:hover {
  background: rgba(58, 46, 90, 0.06);
  color: var(--gold-700, #8a6a38);
}

/* ---- Mobile header: stack brand row above nav row, tighten everything.
   Below 720px the brand text + 4 nav items + Buy button overflow a
   typical phone viewport (~375px) and mash into each other. Switching
   to a column layout with centered nav row breathes properly. ---- */
@media (max-width: 720px) {
  .alerts-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px 14px;
  }
  .alerts-nav__brand {
    justify-content: center;
    gap: 8px;
    font-size: 1.05rem;
  }
  .alerts-nav__brand-mark {
    width: 28px; height: 28px;
    font-size: .9rem;
  }
  .alerts-nav__links {
    justify-content: center;
    gap: 4px 6px;
    font-size: .86rem;
  }
  .alerts-nav__links a,
  .alerts-nav__links button {
    padding: 6px 8px;
  }
  .alerts-nav__links .btn--buy,
  .alerts-nav__links .btn--small {
    padding: 8px 14px;
    font-size: .82rem;
  }
  /* Email span on app.html — let it occupy its own row so it doesn't
     squeeze account links sideways. */
  .alerts-nav__links #me-email {
    flex-basis: 100%;
    text-align: center;
  }
}

/* Very small phones: drop the brand text to keep the mark + nav crisp. */
@media (max-width: 380px) {
  .alerts-nav__brand { font-size: .95rem; gap: 6px; }
  .alerts-nav__links { font-size: .8rem; }
}

/* ---------- Hero ---------- */
.hero {
  text-align: center;
  padding: 56px 16px 40px;
  background:
    radial-gradient(ellipse at top, rgba(212, 160, 23, 0.10) 0%, transparent 65%),
    var(--cream-50, #fdfbf6);
}
.hero h1 {
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  line-height: 1.1;
  color: var(--purple-900, #2a1f4a);
  margin: 0 0 16px;
  letter-spacing: .005em;
}
.hero .pitch {
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  color: var(--ink-soft, #5a5470);
  max-width: 620px;
  margin: 0 auto 28px;
}
.hero .eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  color: var(--gold-700, #8a6a38);
  font-weight: 700;
  margin-bottom: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .12s ease;
  font-family: inherit;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--purple-900, #2a1f4a);
  color: var(--cream-50, #fdfbf6);
}
.btn--primary:hover { background: var(--purple-800, #3a2e5a); color: var(--white, #fff); }
.btn--gold {
  background: var(--gold-600, #b8975e);
  color: #fff;
}
.btn--gold:hover { background: var(--gold-700, #8a6a38); color: #fff; }
.btn--outline {
  background: transparent;
  color: var(--purple-900, #2a1f4a);
  border-color: rgba(58, 46, 90, 0.25);
}
.btn--outline:hover { border-color: var(--gold-500, #c7a678); color: var(--gold-700, #8a6a38); }
.btn--small { padding: 7px 14px; font-size: .85rem; }
.btn--full { width: 100%; }
.btn:disabled { opacity: .55; cursor: not-allowed; }
.btn:focus-visible {
  outline: 3px solid rgba(212, 160, 23, 0.45);
  outline-offset: 2px;
}

/* ---------- Section helpers ---------- */
.section { padding: 48px 0; }
.section h2 {
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--purple-900, #2a1f4a);
  margin: 0 0 24px;
  text-align: center;
}
.section--cream { background: var(--cream-100, #f8f1e7); }
.section--ink { background: var(--purple-900, #2a1f4a); color: var(--cream-50, #fdfbf6); }
.section--ink h2 { color: var(--cream-50, #fdfbf6); }
.section--ink p { color: rgba(253, 251, 246, 0.78); }

/* ---------- "How it works" steps ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 720px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.step {
  background: #fff;
  border: 1px solid rgba(58, 46, 90, 0.08);
  border-radius: 14px;
  padding: 22px 22px 24px;
  box-shadow: 0 4px 14px rgba(58, 46, 90, 0.05);
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--gold-500, #c7a678);
  color: #fff;
  font-weight: 700;
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: 1.15rem;
  margin-bottom: 14px;
}
.step h3 {
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: 1.2rem;
  margin: 0 0 8px;
  color: var(--purple-900, #2a1f4a);
}
.step p { margin: 0; color: var(--ink-soft, #5a5470); font-size: .95rem; }

/* ---------- Pricing card ---------- */
.pricing-card {
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(58, 46, 90, 0.10);
  border-radius: 18px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(58, 46, 90, 0.08);
}
.pricing-card .price {
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: 3rem;
  color: var(--purple-900, #2a1f4a);
  margin: 0;
  line-height: 1;
}
.pricing-card .price small {
  font-size: 1rem;
  color: var(--ink-soft, #5a5470);
  font-weight: 400;
}
/* Two-tier roster on the pricing card. Stacks on phones, side-by-side ≥520px. */
.pricing-card__tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 520px) {
  .pricing-card__tiers { grid-template-columns: 1fr 1fr; gap: 18px; }
}
.pricing-card__tier {
  padding: 16px 14px;
  border: 1.5px solid rgba(58, 46, 90, 0.12);
  border-radius: 12px;
  background: var(--cream-50, #fdfbf6);
}
.pricing-card__tier .price { font-size: 2.2rem; margin-top: 4px; }
.pricing-card__tier-name {
  font-size: .8rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--purple-800, #3a2e5a); margin: 0;
}
.pricing-card__tier-cap {
  margin: 8px 0 0; font-size: .92rem;
  color: var(--ink, #2a2540);
}
.pricing-card .comp-callout {
  margin-top: 18px;
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid rgba(212, 160, 23, 0.35);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--gold-700, #8a6a38);
  font-weight: 600;
  font-size: .95rem;
}
.pricing-card .comp-callout small {
  display: block;
  font-weight: 400;
  color: var(--ink-soft, #5a5470);
  margin-top: 4px;
  font-size: .85rem;
}

/* ---------- Watch list ---------- */
.watch-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 720px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 640px) {
  .watch-list { grid-template-columns: 1fr 1fr; }
}
.watch-list li {
  background: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: .95rem;
  color: var(--ink, #2a2540);
  border: 1px solid rgba(58, 46, 90, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}
.watch-list .badge {
  display: inline-block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 3px 7px;
  border-radius: 4px;
  font-weight: 700;
}
.badge--live { background: rgba(122, 171, 96, 0.18); color: #2f5c1f; }
.badge--soon { background: rgba(199, 166, 120, 0.20); color: var(--gold-700, #8a6a38); }

/* ---------- Honest small-print ---------- */
.honest {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(110, 94, 151, 0.06);
  border-left: 4px solid var(--gold-500, #c7a678);
  padding: 20px 22px;
  border-radius: 8px;
  font-size: .92rem;
  color: var(--ink-soft, #5a5470);
}
.honest h3 {
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  color: var(--purple-900, #2a1f4a);
  margin: 0 0 6px;
  font-size: 1.1rem;
}
.honest p { margin: 0 0 10px; }
.honest p:last-child { margin-bottom: 0; }

/* ---------- Footer ---------- */
.alerts-footer {
  margin-top: 60px;
  padding: 28px 20px;
  text-align: center;
  font-size: .85rem;
  color: var(--ink-soft, #5a5470);
  border-top: 1px solid rgba(58, 46, 90, 0.08);
  background: var(--cream-50, #fdfbf6);
}
.alerts-footer a { color: var(--purple-800, #3a2e5a); }
.alerts-footer a:hover { color: var(--gold-700, #8a6a38); }
.alerts-footer .links {
  margin-top: 8px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Forms ---------- */
.card {
  background: #fff;
  border: 1px solid rgba(58, 46, 90, 0.08);
  border-radius: 14px;
  padding: 24px 22px;
  box-shadow: 0 4px 14px rgba(58, 46, 90, 0.05);
  margin: 0 0 24px;
}
.card h2 {
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: 1.4rem;
  color: var(--purple-900, #2a1f4a);
  margin: 0 0 14px;
  text-align: left;
}
.card h3 {
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: 1.15rem;
  margin: 0 0 10px;
  color: var(--purple-900, #2a1f4a);
}

/* Reset native <fieldset> chrome: groove border, default padding, and
   `min-inline-size: min-content` (the last one is the spec default and the
   reason a long <select> option pushes the form past the viewport on iPhone). */
.kind-fields,
fieldset.reset {
  border: 0;
  margin: 0;
  padding: 0;
  min-inline-size: 0;
}

.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-weight: 600;
  color: var(--purple-900, #2a1f4a);
  font-size: .92rem;
  margin-bottom: 6px;
}
.field .hint {
  display: block;
  font-size: .82rem;
  color: var(--ink-soft, #5a5470);
  margin-bottom: 6px;
}
.field input[type="email"],
.field input[type="text"],
.field input[type="tel"],
.field input[type="number"],
.field input[type="date"],
.field input[type="time"],
.field select,
.field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid rgba(58, 46, 90, 0.22);
  border-radius: 10px;
  font: inherit;
  font-size: .96rem;
  background: var(--cream-50, #fdfbf6);
  color: var(--ink, #2a2540);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-500, #c7a678);
  box-shadow: 0 0 0 3px rgba(199, 166, 120, 0.22);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 560px) {
  .field-row--2 { grid-template-columns: 1fr 1fr; }
  .field-row--3 { grid-template-columns: 1fr 1fr 1fr; }
}

.checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 4px 0 4px;
}
.checkbox-row label {
  font-weight: 500;
  font-size: .92rem;
  color: var(--ink, #2a2540);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}
.checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold-600, #b8975e);
}

.toggle-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}
.toggle-row label {
  font-size: .92rem;
  color: var(--ink, #2a2540);
  cursor: pointer;
  flex: 1;
}

.status {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: .92rem;
}
.status--error { background: rgba(217, 113, 136, 0.14); color: #963f60; }
.status--success { background: rgba(122, 171, 96, 0.14); color: #2f5c1f; }
.status--info { background: var(--cream-100, #f8f1e7); color: var(--ink-soft, #5a5470); }

/* ---------- Alert rows (app.html) ---------- */
.alert-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.alert-row {
  background: #fff;
  border: 1px solid rgba(58, 46, 90, 0.08);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 12px;
}
.alert-row__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}
.alert-row__title {
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: 1.15rem;
  color: var(--purple-900, #2a1f4a);
  margin: 0 0 4px;
}
.alert-row__meta {
  font-size: .85rem;
  color: var(--ink-soft, #5a5470);
  margin: 0;
}
.alert-row__stats {
  font-size: .85rem;
  color: var(--ink-soft, #5a5470);
  margin: 8px 0 0;
}
.alert-row__stats strong {
  color: var(--purple-900, #2a1f4a);
  font-weight: 700;
}
.alert-row__actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.pill {
  display: inline-block;
  font-size: .72rem;
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.pill--active { background: rgba(122, 171, 96, 0.18); color: #2f5c1f; }
.pill--paused { background: rgba(199, 166, 120, 0.20); color: var(--gold-700, #8a6a38); }
.pill--expired { background: rgba(217, 113, 136, 0.14); color: #963f60; }

.empty-state {
  text-align: center;
  padding: 28px 20px;
  color: var(--ink-soft, #5a5470);
  background: var(--cream-100, #f8f1e7);
  border-radius: 12px;
}
.empty-state p { margin: 0; font-size: .95rem; }

/* ---------- Plan state (profile) ---------- */
.plan-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.plan-card__state {
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: 1.25rem;
  color: var(--purple-900, #2a1f4a);
  margin: 0 0 4px;
}
.plan-card__note {
  font-size: .9rem;
  color: var(--ink-soft, #5a5470);
  margin: 0;
}
.plan-card__main { min-width: 0; flex: 1 1 200px; }
.plan-card__actions {
  display: flex; flex-wrap: wrap; gap: 8px;
  flex: 1 1 auto;
}
.plan-card__usage {
  display: inline-block;
  margin: 8px 0 0;
  padding: 4px 10px;
  font-size: .82rem;
  font-weight: 500;
  background: rgba(58, 46, 90, 0.06);
  color: var(--purple-900, #2a1f4a);
  border-radius: 999px;
}
.plan-card__usage--full {
  background: rgba(212, 160, 23, 0.16);
  color: var(--gold-700, #8a6a38);
}

/* ---------- Small accessibility helper ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Spinner ---------- */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(58, 46, 90, 0.18);
  border-top-color: var(--gold-600, #b8975e);
  border-radius: 50%;
  animation: alerts-spin .8s linear infinite;
  vertical-align: middle;
}
@keyframes alerts-spin { to { transform: rotate(360deg); } }

/* ============================================================
   v20260525 — Marketing surface: hero phone mock, interactive
   demos, FAQ accordion, live-watch ticker, screenshot mocks,
   how-it-works walkthrough, setup tutorial.
   All motion gated by @media (prefers-reduced-motion: no-preference).
   ============================================================ */

/* ---------- Hero (two-column with live phone mock) ---------- */
.hero--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  text-align: left;
  padding: 64px 24px 56px;
  max-width: 1140px;
  margin: 0 auto;
}
.hero--split .hero__copy { text-align: left; }
.hero--split .hero__copy h1 { text-align: left; margin-left: 0; margin-right: 0; }
.hero--split .pitch { margin-left: 0; margin-right: 0; }
.hero__stage {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}
@media (min-width: 920px) {
  .hero--split { grid-template-columns: 1.05fr 0.95fr; gap: 48px; padding: 80px 32px 72px; }
}

.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(122, 171, 96, 0.16);
  color: #2f5c1f;
  font-size: .78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: .04em;
  margin-bottom: 14px;
}
.hero__chip__dot {
  width: 8px;
  height: 8px;
  background: #4f8a2f;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(79, 138, 47, .55);
}
@media (prefers-reduced-motion: no-preference) {
  .hero__chip__dot { animation: alerts-pulse 1.8s ease-out infinite; }
}
@keyframes alerts-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(79, 138, 47, .55); }
  70%  { box-shadow: 0 0 0 10px rgba(79, 138, 47, 0); }
  100% { box-shadow: 0 0 0 0 rgba(79, 138, 47, 0); }
}

.hero__cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.hero__legal {
  font-size: .85rem;
  color: var(--ink-soft, #5a5470);
  margin-top: 18px;
}

/* ---------- Phone mock (iOS-Messages style) ---------- */
.phone {
  position: relative;
  width: 280px;
  height: 568px;
  background: #0a0a0c;
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 30px 60px rgba(42, 31, 74, 0.25),
    0 6px 16px rgba(42, 31, 74, 0.18),
    inset 0 0 0 2px #1a1a1f;
}
.phone__notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 24px;
  background: #0a0a0c;
  border-radius: 0 0 18px 18px;
  z-index: 3;
}
.phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone__statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px 6px;
  font-size: .75rem;
  font-weight: 600;
  color: #0a0a0c;
  font-feature-settings: "tnum" 1;
}
.phone__statusbar__right {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.phone__statusbar__icon {
  display: inline-block;
  width: 12px;
  height: 8px;
  background: #0a0a0c;
  border-radius: 1px;
  opacity: .85;
}
.phone__app-header {
  text-align: center;
  padding: 8px 0 10px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.phone__app-header strong {
  display: block;
  font-size: .82rem;
  color: #0a0a0c;
}
.phone__app-header span {
  display: block;
  font-size: .68rem;
  color: #888;
  margin-top: 1px;
}
.phone__messages {
  flex: 1;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f6f8 100%);
}

.phone__bubble {
  max-width: 86%;
  align-self: flex-start;
  background: #e9e9eb;
  color: #0a0a0c;
  padding: 10px 13px;
  border-radius: 18px 18px 18px 4px;
  font-size: .78rem;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(20px);
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.phone__bubble strong { color: #2a1f4a; }
.phone__bubble a {
  color: #1f4e8c;
  font-weight: 600;
  text-decoration: none;
}
.phone__bubble--gold {
  background: linear-gradient(140deg, #fff8e7 0%, #fef0d4 100%);
  border: 1px solid rgba(212, 160, 23, 0.35);
}

/* Typing-indicator bubble (3 dots) */
.phone__typing {
  align-self: flex-start;
  background: #e9e9eb;
  padding: 10px 14px;
  border-radius: 18px 18px 18px 4px;
  display: inline-flex;
  gap: 4px;
  opacity: 0;
}
.phone__typing span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #98989a;
  border-radius: 50%;
}
@media (prefers-reduced-motion: no-preference) {
  .phone__typing span {
    animation: phone-typing 1.2s ease-in-out infinite;
  }
  .phone__typing span:nth-child(2) { animation-delay: .15s; }
  .phone__typing span:nth-child(3) { animation-delay: .30s; }
}
@keyframes phone-typing {
  0%, 60%, 100% { transform: translateY(0); opacity: .55; }
  30%           { transform: translateY(-3px); opacity: 1; }
}

/* Phone animation cycle — 4 bubbles rotate, each visible ~10s */
@media (prefers-reduced-motion: no-preference) {
  .phone__cycle .phone__typing { animation: phone-typing-show 40s ease-in-out infinite; }
  .phone__cycle .phone__bubble--b1 { animation: phone-bubble-1 40s ease-in-out infinite; }
  .phone__cycle .phone__bubble--b2 { animation: phone-bubble-2 40s ease-in-out infinite; }
  .phone__cycle .phone__bubble--b3 { animation: phone-bubble-3 40s ease-in-out infinite; }
  .phone__cycle .phone__bubble--b4 { animation: phone-bubble-4 40s ease-in-out infinite; }
}
/* Each "phase" is 10 seconds = 25% of a 40s cycle.
   Phase = 0–2s typing, 2–8s bubble visible, 8–10s fading. */
@keyframes phone-typing-show {
  0%, 1%       { opacity: 0; }
  2%, 5%       { opacity: 1; }
  6%, 24%      { opacity: 0; }
  25%, 26%     { opacity: 0; }
  27%, 30%     { opacity: 1; }
  31%, 49%     { opacity: 0; }
  50%, 51%     { opacity: 0; }
  52%, 55%     { opacity: 1; }
  56%, 74%     { opacity: 0; }
  75%, 76%     { opacity: 0; }
  77%, 80%     { opacity: 1; }
  81%, 100%    { opacity: 0; }
}
@keyframes phone-bubble-1 {
  0%, 5%        { opacity: 0; transform: translateY(20px) scale(.95); }
  8%            { opacity: 1; transform: translateY(0) scale(1); }
  10%, 22%      { opacity: 1; transform: translateY(0) scale(1); }
  24%, 100%     { opacity: 0; transform: translateY(-8px) scale(.98); }
}
@keyframes phone-bubble-2 {
  0%, 30%       { opacity: 0; transform: translateY(20px) scale(.95); }
  33%           { opacity: 1; transform: translateY(0) scale(1); }
  35%, 47%      { opacity: 1; transform: translateY(0) scale(1); }
  49%, 100%     { opacity: 0; transform: translateY(-8px) scale(.98); }
}
@keyframes phone-bubble-3 {
  0%, 55%       { opacity: 0; transform: translateY(20px) scale(.95); }
  58%           { opacity: 1; transform: translateY(0) scale(1); }
  60%, 72%      { opacity: 1; transform: translateY(0) scale(1); }
  74%, 100%     { opacity: 0; transform: translateY(-8px) scale(.98); }
}
@keyframes phone-bubble-4 {
  0%, 80%       { opacity: 0; transform: translateY(20px) scale(.95); }
  83%           { opacity: 1; transform: translateY(0) scale(1); }
  85%, 97%      { opacity: 1; transform: translateY(0) scale(1); }
  99%, 100%     { opacity: 0; transform: translateY(-8px) scale(.98); }
}
/* Reduced-motion: just show bubble 1 as a static screenshot */
@media (prefers-reduced-motion: reduce) {
  .phone__cycle .phone__bubble--b1 { opacity: 1; transform: none; }
  .phone__cycle .phone__bubble--b2,
  .phone__cycle .phone__bubble--b3,
  .phone__cycle .phone__bubble--b4,
  .phone__cycle .phone__typing { display: none; }
}

/* ---------- "What an alert looks like" demo (SMS + Email cards) ---------- */
.alert-demo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 760px) {
  .alert-demo { grid-template-columns: 1fr 1fr; gap: 36px; }
}
.alert-demo__card {
  background: #fff;
  border: 1px solid rgba(58, 46, 90, 0.10);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 8px 22px rgba(58, 46, 90, 0.07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.alert-demo__card:hover,
.alert-demo__card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(58, 46, 90, 0.14);
  border-color: rgba(212, 160, 23, 0.45);
}
.alert-demo__card[data-channel].is-active {
  outline: 2px solid var(--gold-500, #c7a678);
  outline-offset: 4px;
}
.alert-demo__label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 700;
  color: var(--gold-700, #8a6a38);
  margin-bottom: 12px;
}
.alert-demo__toggle {
  display: inline-flex;
  background: rgba(58, 46, 90, 0.06);
  border-radius: 999px;
  padding: 4px;
  margin: 24px auto 0;
  position: relative;
}
.alert-demo__toggle button {
  border: 0;
  background: transparent;
  font: inherit;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-soft, #5a5470);
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.alert-demo__toggle button[aria-pressed="true"] {
  background: var(--purple-900, #2a1f4a);
  color: var(--cream-50, #fdfbf6);
}
.alert-demo__toggle-wrap {
  text-align: center;
  margin-top: 20px;
}

/* SMS card uses .phone__bubble styling; reuse with a chrome wrapper */
.sms-card__chrome {
  background: linear-gradient(180deg, #f6f6f8 0%, #eef0f3 100%);
  border-radius: 14px;
  padding: 16px;
  margin-top: 8px;
}
.sms-card__from {
  font-size: .72rem;
  color: #777;
  margin-bottom: 6px;
}
.sms-card__from strong { color: #0a0a0c; }
.sms-card__bubble {
  background: #fff;
  padding: 11px 14px;
  border-radius: 14px 14px 14px 4px;
  font-size: .85rem;
  line-height: 1.4;
  color: #0a0a0c;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
}
.sms-card__bubble strong { color: #2a1f4a; }
.sms-card__bubble a {
  color: #1f4e8c;
  font-weight: 700;
  text-decoration: none;
}

/* Email card */
.email-card__chrome {
  border: 1px solid rgba(58, 46, 90, 0.10);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 8px;
}
.email-card__header {
  background: linear-gradient(180deg, #f8f1e7 0%, #f3e8d3 100%);
  padding: 14px 16px;
  border-bottom: 1px solid rgba(58, 46, 90, 0.08);
}
.email-card__from { font-size: .82rem; color: #5a5470; }
.email-card__from strong { color: #2a1f4a; }
.email-card__subj {
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: 1.1rem;
  color: var(--purple-900, #2a1f4a);
  margin: 4px 0 0;
  font-weight: 600;
}
.email-card__body {
  padding: 18px 16px 16px;
  background: #fff;
  font-size: .9rem;
  line-height: 1.5;
  color: var(--ink, #2a2540);
}
.email-card__body p { margin: 0 0 10px; }
.email-card__details {
  background: var(--cream-50, #fdfbf6);
  border-radius: 8px;
  padding: 10px 12px;
  margin: 10px 0;
  font-size: .85rem;
}
.email-card__details dt {
  font-weight: 600;
  color: var(--gold-700, #8a6a38);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.email-card__details dd {
  margin: 1px 0 6px;
  color: var(--ink, #2a2540);
}
.email-card__details dd:last-child { margin-bottom: 0; }
.email-card__cta {
  display: inline-block;
  background: var(--gold-600, #b8975e);
  color: #fff;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: .85rem;
  margin-top: 4px;
  transition: background .2s ease;
}
.email-card__cta:hover { background: var(--gold-700, #8a6a38); }

/* ---------- "How it works" steps, enhanced ---------- */
.step {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.step:hover,
.step:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(58, 46, 90, 0.10);
  border-color: rgba(212, 160, 23, 0.35);
}
.step__mini {
  margin-top: 14px;
  border-radius: 10px;
  border: 1px solid rgba(58, 46, 90, 0.10);
  overflow: hidden;
  background: var(--cream-50, #fdfbf6);
}
.step__mini-head {
  background: var(--purple-900, #2a1f4a);
  color: var(--cream-50, #fdfbf6);
  padding: 6px 10px;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.step__mini-body {
  padding: 12px;
  font-size: .82rem;
  color: var(--ink, #2a2540);
}
.step__mini-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px dotted rgba(58, 46, 90, 0.15);
}
.step__mini-row:last-child { border-bottom: 0; }
.step__mini-row strong { color: var(--purple-900, #2a1f4a); font-weight: 600; }

/* ---------- Living watch list (ticker) ---------- */
.ticker {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}
.ticker__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 540px) { .ticker__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 860px) { .ticker__grid { grid-template-columns: 1fr 1fr 1fr; } }

.ticker__card {
  background: #fff;
  border: 1px solid rgba(58, 46, 90, 0.10);
  border-radius: 12px;
  padding: 14px 16px;
  position: relative;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.ticker__card:hover { box-shadow: 0 8px 22px rgba(58, 46, 90, 0.10); }
.ticker__card__name {
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: 1.05rem;
  color: var(--purple-900, #2a1f4a);
  margin: 0 0 4px;
  font-weight: 600;
}
.ticker__card__meta {
  font-size: .82rem;
  color: var(--ink-soft, #5a5470);
  margin: 0 0 10px;
}
.ticker__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #2f5c1f;
  background: rgba(122, 171, 96, 0.16);
  padding: 4px 10px;
  border-radius: 999px;
}
.ticker__status__dot {
  width: 7px;
  height: 7px;
  background: #4f8a2f;
  border-radius: 50%;
}
@media (prefers-reduced-motion: no-preference) {
  .ticker__status__dot { animation: alerts-pulse 1.8s ease-out infinite; }
}
.ticker__hit-badge {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, #fff8e7 0%, #fef0d4 100%);
  color: var(--purple-900, #2a1f4a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-weight: 700;
  font-size: .95rem;
  opacity: 0;
  pointer-events: none;
  border-radius: 12px;
  border: 1px solid rgba(212, 160, 23, 0.55);
}
.ticker__hit-badge small {
  font-size: .72rem;
  font-weight: 600;
  color: var(--gold-700, #8a6a38);
  text-transform: uppercase;
  letter-spacing: .1em;
}
/* Stagger HIT flashes across the grid, one card at a time. */
@media (prefers-reduced-motion: no-preference) {
  .ticker__card:nth-child(1) .ticker__hit-badge { animation: ticker-hit 30s ease-in-out infinite; animation-delay: 2s; }
  .ticker__card:nth-child(2) .ticker__hit-badge { animation: ticker-hit 30s ease-in-out infinite; animation-delay: 7s; }
  .ticker__card:nth-child(3) .ticker__hit-badge { animation: ticker-hit 30s ease-in-out infinite; animation-delay: 12s; }
  .ticker__card:nth-child(4) .ticker__hit-badge { animation: ticker-hit 30s ease-in-out infinite; animation-delay: 17s; }
  .ticker__card:nth-child(5) .ticker__hit-badge { animation: ticker-hit 30s ease-in-out infinite; animation-delay: 22s; }
  .ticker__card:nth-child(6) .ticker__hit-badge { animation: ticker-hit 30s ease-in-out infinite; animation-delay: 27s; }
}
@keyframes ticker-hit {
  0%, 6%       { opacity: 0; transform: scale(.98); }
  8%           { opacity: 1; transform: scale(1); }
  9%, 12%      { opacity: 1; transform: scale(1); }
  14%          { opacity: 0; transform: scale(1.01); }
  15%, 100%    { opacity: 0; }
}

/* ---------- "Free with booking" callout ---------- */
.free-callout {
  max-width: 720px;
  margin: 28px auto 0;
  background: linear-gradient(135deg, #fff8e7 0%, #fef0d4 100%);
  border-left: 4px solid var(--gold-500, #c7a678);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.free-callout__star {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
}
.free-callout__body { flex: 1; }
.free-callout__title {
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: 1.15rem;
  color: var(--purple-900, #2a1f4a);
  margin: 0 0 4px;
  font-weight: 600;
}
.free-callout__body p {
  margin: 0;
  font-size: .92rem;
  color: var(--ink, #2a2540);
}
.free-callout__body a {
  color: var(--gold-700, #8a6a38);
  font-weight: 600;
}

/* ---------- Watch list (hoverable cards) ---------- */
.watch-list li {
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
}
.watch-list li:hover,
.watch-list li:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(58, 46, 90, 0.08);
}
.watch-list li:hover:has(.badge--live) {
  border-color: rgba(212, 160, 23, 0.55);
  box-shadow: 0 6px 18px rgba(212, 160, 23, 0.18);
}
.watch-list__notify {
  display: none;
  font-size: .78rem;
  margin-left: auto;
  color: var(--gold-700, #8a6a38);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.watch-list li:hover .watch-list__notify,
.watch-list li:focus-within .watch-list__notify {
  display: inline-block;
}

/* ---------- CTA pair (bottom-of-section) ---------- */
.cta-pair {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 28px auto 0;
  padding: 0 20px;
}

/* ---------- FAQ accordion ---------- */
.faq {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}
.faq__group {
  margin-bottom: 28px;
}
.faq__group-title {
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: 1.35rem;
  color: var(--purple-900, #2a1f4a);
  margin: 0 0 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(58, 46, 90, 0.10);
}
.faq__item {
  background: #fff;
  border: 1px solid rgba(58, 46, 90, 0.10);
  border-radius: 12px;
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq__item[open] { border-color: rgba(212, 160, 23, 0.35); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 18px;
  font-weight: 600;
  color: var(--purple-900, #2a1f4a);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: .96rem;
  transition: background .15s ease;
}
.faq__item summary:hover { background: rgba(212, 160, 23, 0.06); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cream-100, #f8f1e7);
  color: var(--purple-900, #2a1f4a);
  font-size: 1rem;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
  flex-shrink: 0;
}
.faq__item[open] summary::after {
  content: "−";
  background: var(--gold-500, #c7a678);
  color: #fff;
}
.faq__item summary:focus-visible {
  outline: 3px solid rgba(212, 160, 23, 0.45);
  outline-offset: -2px;
}
.faq__body {
  padding: 4px 18px 18px;
  font-size: .92rem;
  line-height: 1.55;
  color: var(--ink, #2a2540);
}
.faq__body p { margin: 0 0 10px; }
.faq__body p:last-child { margin-bottom: 0; }
.faq__body a { color: var(--purple-800, #3a2e5a); }
.faq__body strong { color: var(--purple-900, #2a1f4a); }

/* ---------- Page intro (for FAQ / how-it-works / setup) ---------- */
.page-intro {
  text-align: center;
  padding: 56px 20px 36px;
  background:
    radial-gradient(ellipse at top, rgba(212, 160, 23, 0.08) 0%, transparent 65%),
    var(--cream-50, #fdfbf6);
}
.page-intro h1 {
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  color: var(--purple-900, #2a1f4a);
  margin: 8px 0 12px;
  line-height: 1.15;
}
.page-intro p {
  max-width: 580px;
  margin: 0 auto;
  color: var(--ink-soft, #5a5470);
  font-size: 1.05rem;
}

/* ---------- Walkthrough (how-it-works.html) ---------- */
.walk {
  max-width: 1080px;
  margin: 0 auto;
  padding: 30px 20px 60px;
}
.walk__step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  padding: 36px 0;
  border-top: 1px solid rgba(58, 46, 90, 0.08);
}
.walk__step:first-of-type { border-top: 0; }
@media (min-width: 820px) {
  .walk__step { grid-template-columns: 1fr 1fr; gap: 44px; }
  .walk__step--rev .walk__copy { order: 2; }
  .walk__step--rev .walk__mock { order: 1; }
}
.walk__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-500, #c7a678);
  color: #fff;
  font-weight: 700;
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.walk__title {
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--purple-900, #2a1f4a);
  margin: 0 0 10px;
}
.walk__copy p {
  color: var(--ink, #2a2540);
  margin: 0 0 10px;
  line-height: 1.55;
}
.walk__copy ul {
  padding-left: 18px;
  color: var(--ink, #2a2540);
  margin: 6px 0 0;
}
.walk__copy ul li { margin-bottom: 6px; }

/* Fake screenshot (a styled card that LOOKS like a page).
   Purely decorative — pointer-events:none so the mock CTAs inside don't
   feel "broken" when a curious visitor clicks them (no scroll-to-top from
   stub <a href="#">, no dead-feel from <span>-styled-as-button). */
.shot {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(58, 46, 90, 0.12);
  box-shadow: 0 18px 40px rgba(58, 46, 90, 0.12);
  overflow: hidden;
  position: relative;
  pointer-events: none;
}
.shot__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(180deg, #f6f6f8 0%, #ececef 100%);
  padding: 9px 12px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
/* The three traffic-light dots — scoped so .shot__url (also a span child)
   doesn't inherit the pink background + 10px height clamp. */
.shot__chrome > span:not(.shot__url) {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d97188;
}
.shot__chrome > span:nth-child(2):not(.shot__url) { background: #d4a017; }
.shot__chrome > span:nth-child(3):not(.shot__url) { background: #7aab60; }
.shot__url {
  margin-left: 14px;
  font-size: .72rem;
  color: #5a5470;
  background: #fff;
  padding: 3px 10px;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,.06);
  flex: 1;
  text-align: center;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
.shot__body { padding: 20px 22px; }
.shot__h {
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: 1.15rem;
  color: var(--purple-900, #2a1f4a);
  margin: 0 0 6px;
}
.shot__sub { font-size: .82rem; color: var(--ink-soft, #5a5470); margin: 0 0 14px; }
.shot__field {
  background: var(--cream-50, #fdfbf6);
  border: 1.5px solid rgba(58, 46, 90, 0.18);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: .85rem;
  margin-bottom: 10px;
  color: var(--ink, #2a2540);
}
.shot__field--focused {
  border-color: var(--gold-500, #c7a678);
  box-shadow: 0 0 0 3px rgba(199, 166, 120, 0.22);
}
.shot__field-label {
  font-size: .72rem;
  font-weight: 600;
  color: var(--purple-900, #2a1f4a);
  margin-bottom: 4px;
  display: block;
}
.shot__chip-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.shot__chip {
  background: rgba(58, 46, 90, 0.06);
  color: var(--ink, #2a2540);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .75rem;
  border: 1px solid transparent;
}
.shot__chip--on {
  background: var(--gold-500, #c7a678);
  color: #fff;
  font-weight: 600;
}
.shot__cta {
  display: inline-block;
  background: var(--purple-900, #2a1f4a);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  margin-top: 6px;
}
.shot__cta--gold { background: var(--gold-600, #b8975e); }

/* Annotation callout (arrow pointing to a field in a shot) */
.callout {
  background: var(--purple-900, #2a1f4a);
  color: var(--cream-50, #fdfbf6);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: .82rem;
  line-height: 1.4;
  position: relative;
  max-width: 280px;
  margin: 14px 0;
  box-shadow: 0 6px 14px rgba(42, 31, 74, 0.18);
}
.callout::before {
  content: "";
  position: absolute;
  width: 0; height: 0;
  border-style: solid;
}
.callout--up::before {
  top: -8px; left: 22px;
  border-width: 0 8px 8px 8px;
  border-color: transparent transparent var(--purple-900, #2a1f4a) transparent;
}
.callout--down::before {
  bottom: -8px; left: 22px;
  border-width: 8px 8px 0 8px;
  border-color: var(--purple-900, #2a1f4a) transparent transparent transparent;
}
.callout strong { color: var(--gold-300, #e4d2ae); }

/* Step 3 timeline (animated "watching" strip) */
.watching-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px;
  background: var(--cream-100, #f8f1e7);
  border-radius: 12px;
  border: 1px solid rgba(58, 46, 90, 0.10);
  margin-top: 14px;
  flex-wrap: wrap;
}
.watching-strip__pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4f8a2f;
  flex-shrink: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .watching-strip__pulse { animation: alerts-pulse 1.8s ease-out infinite; }
}
.watching-strip__bars {
  display: flex;
  gap: 4px;
  align-items: end;
  flex: 1;
  min-width: 120px;
  height: 30px;
}
.watching-strip__bars span {
  flex: 1;
  background: rgba(122, 171, 96, 0.45);
  border-radius: 2px 2px 0 0;
  height: 30%;
}
@media (prefers-reduced-motion: no-preference) {
  .watching-strip__bars span { animation: bar-bob 2.4s ease-in-out infinite; }
  .watching-strip__bars span:nth-child(1) { animation-delay: 0s; }
  .watching-strip__bars span:nth-child(2) { animation-delay: .2s; }
  .watching-strip__bars span:nth-child(3) { animation-delay: .4s; }
  .watching-strip__bars span:nth-child(4) { animation-delay: .6s; }
  .watching-strip__bars span:nth-child(5) { animation-delay: .8s; }
  .watching-strip__bars span:nth-child(6) { animation-delay: 1.0s; }
  .watching-strip__bars span:nth-child(7) { animation-delay: 1.2s; }
  .watching-strip__bars span:nth-child(8) { animation-delay: 1.4s; }
}
@keyframes bar-bob {
  0%, 100% { height: 30%; }
  50%      { height: 90%; }
}

/* Step 4 split (email + sms together) */
.shot-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 540px) {
  .shot-pair { grid-template-columns: 1fr 1fr; }
}

/* ---------- Walkthrough closer ---------- */
.walk__closer {
  text-align: center;
  padding: 36px 20px 0;
}

/* ---------- Setup tutorial (setup.html) ---------- */
.setup {
  max-width: 760px;
  margin: 0 auto;
  padding: 20px 20px 60px;
}
.setup__step {
  background: #fff;
  border: 1px solid rgba(58, 46, 90, 0.10);
  border-radius: 14px;
  padding: 22px 22px 24px;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(58, 46, 90, 0.05);
  transition:
    transform .35s cubic-bezier(.2,.7,.2,1),
    box-shadow .35s cubic-bezier(.2,.7,.2,1),
    border-color .35s ease;
}
.setup__step:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(58, 46, 90, 0.12);
  border-color: rgba(199, 166, 120, 0.45);
}
/* Inside-card reactions when the card is hovered (mock screenshot lifts
   gently, gold CTAs in the mock pick up a soft halo). */
.setup__step .shot {
  transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s ease;
}
.setup__step:hover .shot {
  transform: translateY(-2px) scale(1.006);
  box-shadow: 0 24px 50px rgba(58, 46, 90, 0.16);
}
.setup__step .shot__cta,
.setup__step .email-card__cta {
  transition: box-shadow .35s ease, transform .35s ease;
}
.setup__step:hover .shot__cta--gold {
  box-shadow: 0 0 0 5px rgba(199, 166, 120, 0.18);
  transform: scale(1.03);
}
.setup__step:hover .shot__cta:not(.shot__cta--gold) {
  box-shadow: 0 0 0 5px rgba(42, 31, 74, 0.14);
  transform: scale(1.03);
}
.setup__step:hover .email-card__cta {
  box-shadow: 0 0 0 5px rgba(42, 31, 74, 0.14);
  transform: scale(1.02);
}
.setup__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.setup__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--purple-900, #2a1f4a);
  color: var(--gold-300, #e4d2ae);
  font-weight: 700;
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: 1rem;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 4px 10px rgba(42, 31, 74, 0.18);
  transition: box-shadow .35s ease, transform .35s ease;
}
/* Soft "ring" that breathes outward — visible only when the parent card
   is hovered, so the page reads calm at rest. */
.setup__num::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--gold-500, #c7a678);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}
.setup__step:hover .setup__num {
  box-shadow: 0 8px 20px rgba(42, 31, 74, 0.28);
  transform: scale(1.06);
}
.setup__step:hover .setup__num::after {
  opacity: .55;
  transform: scale(1.15);
}
@media (prefers-reduced-motion: no-preference) {
  /* Ambient breathing — each step number inhales/exhales on a slow,
     staggered loop so the page has a quiet pulse without being noisy. */
  .setup__num {
    animation: setup-breathe 4.2s ease-in-out infinite;
  }
  .setup__step:nth-of-type(1) .setup__num { animation-delay: 0s; }
  .setup__step:nth-of-type(2) .setup__num { animation-delay: .6s; }
  .setup__step:nth-of-type(3) .setup__num { animation-delay: 1.2s; }
  .setup__step:nth-of-type(4) .setup__num { animation-delay: 1.8s; }
  .setup__step:nth-of-type(5) .setup__num { animation-delay: 2.4s; }
  .setup__step:nth-of-type(6) .setup__num { animation-delay: 3.0s; }
  .setup__step:nth-of-type(7) .setup__num { animation-delay: 3.6s; }
}
@keyframes setup-breathe {
  0%,   100% { box-shadow: 0 4px 10px rgba(42, 31, 74, 0.18); }
  50%        { box-shadow: 0 4px 18px rgba(199, 166, 120, 0.45); }
}
.setup__title {
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: 1.25rem;
  color: var(--purple-900, #2a1f4a);
  margin: 0;
}
.setup__body {
  font-size: .95rem;
  line-height: 1.55;
  color: var(--ink, #2a2540);
}
.setup__body p { margin: 0 0 10px; }
.setup__body p:last-child { margin-bottom: 0; }
.setup__mock {
  margin: 14px 0;
}

/* ---------- Section header utilities ---------- */
.section__lede {
  text-align: center;
  max-width: 640px;
  margin: -10px auto 30px;
  color: var(--ink-soft, #5a5470);
  font-size: 1.02rem;
  padding: 0 20px;
}

/* ---------- Honor reduced motion globally on these surfaces ---------- */
@media (prefers-reduced-motion: reduce) {
  .ticker__hit-badge { display: none; }
  .watching-strip__bars span { height: 60% !important; }
  /* Strip the setup-page hover lifts + breathing for sensitive viewers. */
  .setup__step,
  .setup__step .shot,
  .setup__step .shot__cta,
  .setup__step .email-card__cta,
  .setup__num { transition: none; animation: none; }
  .setup__step:hover { transform: none; }
  .setup__step:hover .shot { transform: none; }
  .setup__step:hover .setup__num { transform: none; }
  .setup__step:hover .setup__num::after { opacity: 0; }
  .setup__step:hover .shot__cta--gold,
  .setup__step:hover .shot__cta:not(.shot__cta--gold),
  .setup__step:hover .email-card__cta { transform: none; }
}

/* ============================================
   Buy flow + demo modal (v20260525-2)
   ============================================ */

/* ---------- Demo modal ---------- */
.demo-modal__backdrop {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(42, 31, 74, 0.55);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity .18s ease, visibility 0s linear .18s;
}
.demo-modal__backdrop.is-open {
  opacity: 1; visibility: visible;
  transition: opacity .18s ease, visibility 0s;
}
.demo-modal {
  background: var(--cream-50, #fdfbf6);
  border-radius: 14px;
  max-width: 460px; width: 100%;
  padding: 36px 32px 28px;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 80px rgba(42, 31, 74, 0.4);
  transform: translateY(8px);
  transition: transform .22s ease;
}
.demo-modal__backdrop.is-open .demo-modal { transform: translateY(0); }
.demo-modal__close {
  position: absolute; top: 12px; right: 14px;
  background: transparent; border: 0; font-size: 1.8rem;
  width: 36px; height: 36px; line-height: 1;
  color: var(--ink-soft, #5a5470);
  cursor: pointer; border-radius: 8px;
  font-family: inherit;
}
.demo-modal__close:hover {
  background: rgba(58, 46, 90, 0.06);
  color: var(--purple-900, #2a1f4a);
}
.demo-modal__icon {
  font-size: 2.4rem; line-height: 1;
  margin: 4px 0 12px;
}
.demo-modal__title {
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: 1.7rem;
  color: var(--purple-900, #2a1f4a);
  margin: 0 0 12px;
}
.demo-modal__body {
  font-size: .98rem; line-height: 1.55;
  color: var(--ink, #2a2540);
  margin: 0 0 12px;
}
.demo-modal__body--soft {
  color: var(--ink-soft, #5a5470);
  font-size: .92rem;
}
.demo-modal__actions {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center; margin-top: 20px;
}
.demo-modal__actions .btn { flex: 1 1 auto; min-width: 160px; }

/* Make the in-demo "Tap to grab it" links visually feel clickable + safe */
.phone__bubble a[href="#"],
.alert-demo a[href="#"],
.step__mini a[href="#"],
.email-card__cta[href="#"] {
  cursor: pointer;
}

/* ---------- Buy page ---------- */
.buy-shell {
  max-width: 540px;
  margin: 0 auto;
  padding: 40px 22px 80px;
}
.buy-hero {
  text-align: center;
  margin-bottom: 24px;
}
.buy-hero__eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .76rem;
  color: var(--gold-700, #8a6a38);
  font-weight: 700;
  margin-bottom: 12px;
}
.buy-hero__price {
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(2.4rem, 6vw, 3.2rem);
  color: var(--purple-900, #2a1f4a);
  line-height: 1;
  margin: 0;
}
.buy-hero__price small {
  font-size: 1rem; color: var(--ink-soft, #5a5470);
  font-weight: 400; font-family: inherit;
}
.buy-hero__sub {
  color: var(--ink-soft, #5a5470);
  font-size: 1rem; margin: 10px 0 0;
}
.buy-card {
  background: var(--cream-50, #fdfbf6);
  border: 1px solid rgba(58, 46, 90, 0.10);
  border-radius: 14px;
  padding: 28px 26px;
  box-shadow: 0 6px 24px rgba(42, 31, 74, 0.06);
}
.buy-includes {
  list-style: none; padding: 0; margin: 0 0 18px;
  display: flex; flex-direction: column; gap: 10px;
}
.buy-includes li {
  color: var(--ink, #2a2540);
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  row-gap: 1px;
  align-items: baseline;
}
.buy-includes li::before {
  content: "✓"; color: var(--gold-700, #8a6a38);
  font-weight: 700; grid-row: 1 / span 2;
  align-self: start; line-height: 1.3;
}
.buy-includes li strong {
  grid-column: 2;
  font-size: .94rem;
  color: var(--purple-900, #2a1f4a);
  font-weight: 600;
}
.buy-includes li span {
  grid-column: 2;
  font-size: .82rem;
  color: var(--ink-soft, #5a5470);
  line-height: 1.4;
}
.buy-card__divider {
  height: 1px; background: rgba(58, 46, 90, 0.10);
  margin: 18px 0;
}
.buy-card__free {
  background: rgba(212, 160, 23, 0.08);
  border-left: 3px solid var(--gold-500, #d4a017);
  padding: 14px 16px; border-radius: 8px;
  margin-bottom: 18px;
  font-size: .92rem; line-height: 1.5;
  color: var(--ink, #2a2540);
}
.buy-card__free strong {
  display: block; color: var(--gold-700, #8a6a38);
  margin-bottom: 4px;
}
/* Two-tier picker on buy.html — radio cards, both visible, lower price preselected. */
.tier-picker {
  border: 0; margin: 0 0 18px; padding: 0; min-inline-size: 0;
}
.tier-picker__legend {
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: 1.25rem; color: var(--purple-900, #2a1f4a);
  padding: 0; margin-bottom: 6px;
}
.tier-picker__hint {
  font-size: .85rem; color: var(--ink-soft, #5a5470);
  margin: 0 0 14px;
}
.tier-picker__grid {
  display: grid; grid-template-columns: 1fr; gap: 10px;
}
@media (min-width: 520px) {
  .tier-picker__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}
.tier-card {
  display: block; cursor: pointer; position: relative;
}
.tier-card input[type="radio"] {
  position: absolute; opacity: 0; pointer-events: none;
}
.tier-card__inner {
  display: block;
  padding: 16px 14px;
  border: 2px solid rgba(58, 46, 90, 0.18);
  border-radius: 12px;
  background: var(--cream-50, #fdfbf6);
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.tier-card input[type="radio"]:checked ~ .tier-card__inner {
  border-color: var(--gold-500, #c7a678);
  background: rgba(212, 160, 23, 0.06);
  box-shadow: 0 0 0 3px rgba(199, 166, 120, 0.18);
}
.tier-card input[type="radio"]:focus-visible ~ .tier-card__inner {
  outline: 3px solid var(--focus, #1e90ff);
  outline-offset: 2px;
}
.tier-card__name {
  display: block; font-weight: 700; font-size: .78rem;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--purple-800, #3a2e5a); margin-bottom: 4px;
}
.tier-card__price {
  display: block; font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: 1.7rem; color: var(--purple-900, #2a1f4a);
  line-height: 1.05; margin-bottom: 4px;
}
.tier-card__price small {
  font-family: inherit; font-size: .55em; color: var(--ink-soft, #5a5470);
  font-weight: 400;
}
.tier-card__cap {
  display: block; font-size: .92rem;
  color: var(--ink, #2a2540); margin-bottom: 4px;
}
.tier-card__note {
  display: block; font-size: .78rem; color: var(--ink-soft, #5a5470);
  line-height: 1.35;
}

.buy-card__form .field { margin-bottom: 16px; }
.buy-card__form label {
  display: block; font-weight: 600;
  font-size: .9rem; color: var(--purple-900, #2a1f4a);
  margin-bottom: 6px;
}
.buy-card__form .hint {
  display: block; font-size: .82rem;
  color: var(--ink-soft, #5a5470); margin-bottom: 8px;
}
.buy-card__form input[type="email"] {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid rgba(58, 46, 90, 0.22);
  border-radius: 8px; font-family: inherit;
  font-size: 1rem; background: var(--white, #fff);
  color: var(--ink, #2a2540); box-sizing: border-box;
}
.buy-card__form input[type="email"]:focus {
  outline: none; border-color: var(--gold-500, #d4a017);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.18);
}
.buy-card__steps {
  margin-top: 18px;
  font-size: .85rem; color: var(--ink-soft, #5a5470);
  line-height: 1.55;
}
.buy-card__steps ol {
  margin: 8px 0 0; padding-left: 22px;
}
.buy-card__steps li { margin-bottom: 4px; }

/* "Buy now" prominent CTA — gold-shifted version of btn--gold */
.btn--buy {
  background: linear-gradient(135deg, var(--gold-500, #d4a017) 0%, #c19015 100%);
  color: var(--purple-900, #2a1f4a);
  border-color: var(--gold-500, #d4a017);
  font-weight: 700;
  letter-spacing: .01em;
  box-shadow: 0 4px 14px rgba(212, 160, 23, 0.28);
}
.btn--buy:hover {
  background: linear-gradient(135deg, #e8b322 0%, var(--gold-500, #d4a017) 100%);
  box-shadow: 0 6px 20px rgba(212, 160, 23, 0.38);
  transform: translateY(-1px);
}
.btn--buy:active { transform: translateY(0); }

/* Auto-checkout splash overlay on app.html when arriving from buy intent */
.checkout-splash {
  position: fixed; inset: 0; z-index: 1100;
  background: var(--cream-50, #fdfbf6);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 18px;
  padding: 40px 22px; text-align: center;
}
.checkout-splash__spinner {
  width: 44px; height: 44px;
  border: 3px solid rgba(58, 46, 90, 0.12);
  border-top-color: var(--purple-900, #2a1f4a);
  border-radius: 50%;
  animation: checkoutSpin 0.9s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .checkout-splash__spinner { animation: none; }
}
@keyframes checkoutSpin { to { transform: rotate(360deg); } }
.checkout-splash__title {
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: 1.6rem; color: var(--purple-900, #2a1f4a);
  margin: 0;
}
.checkout-splash__body {
  color: var(--ink-soft, #5a5470);
  max-width: 360px; font-size: .95rem;
}
.checkout-splash--ok .checkout-splash__spinner {
  border-color: rgba(46, 125, 50, 0.25);
  border-top-color: #2E7D32;
  animation: none;
}

/* ============================================
   how-it-works.html — interactive demos
   (v20260525-3)
   ============================================ */

/* Each .walk__step gets a .walk__demo: a "Try it" pane that supplements
   the static .walk__mock with live, animatable content. */
.walk__demo {
  margin-top: 18px;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.08) 0%, rgba(42, 31, 74, 0.04) 100%);
  border: 1px solid rgba(212, 160, 23, 0.22);
  border-radius: 12px;
  padding: 18px 20px;
}
.walk__demo__label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-700, #8a6a38);
  font-weight: 700; margin-bottom: 10px;
}
.walk__demo__label::before {
  content: "▸";
  color: var(--gold-500, #d4a017);
}
.walk__demo__hint {
  font-size: .82rem;
  color: var(--ink-soft, #5a5470);
  margin: 8px 0 0;
}

/* ---------- Step 1: live magic-link sender ---------- */
.demo-signin {
  display: flex; gap: 10px; align-items: flex-start;
  flex-wrap: wrap;
}
.demo-signin__field {
  flex: 1 1 220px; min-width: 200px;
  padding: 11px 14px;
  border: 1.5px solid rgba(58, 46, 90, 0.22);
  border-radius: 8px;
  font: inherit; font-size: .95rem;
  background: var(--white, #fff); color: var(--ink, #2a2540);
}
.demo-signin__field:focus {
  outline: none; border-color: var(--gold-500, #d4a017);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.18);
}
.demo-signin__btn {
  flex: 0 0 auto;
  padding: 11px 18px;
  background: var(--purple-900, #2a1f4a);
  color: var(--cream-50, #fdfbf6);
  border: 0; border-radius: 8px;
  font: inherit; font-weight: 600; font-size: .92rem;
  cursor: pointer;
  transition: background .18s ease, transform .12s ease;
}
.demo-signin__btn:hover { background: var(--purple-800, #3a2e5a); transform: translateY(-1px); }
.demo-signin__btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.demo-signin__status {
  margin: 12px 0 0;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: .9rem;
  line-height: 1.5;
  display: none;
}
.demo-signin__status.is-ok {
  display: block;
  background: rgba(122, 171, 96, 0.14);
  color: #2f5c1f;
  border-left: 3px solid #5a8a3f;
}
.demo-signin__status.is-err {
  display: block;
  background: rgba(142, 62, 26, 0.10);
  color: #8E3E1A;
  border-left: 3px solid #8E3E1A;
}

/* Step 1 mock: auto-typing email field */
@media (prefers-reduced-motion: no-preference) {
  .shot__field--autotype {
    position: relative;
    overflow: hidden;
    color: transparent;
  }
  .shot__field--autotype::before {
    content: attr(data-text);
    position: absolute; left: 14px; top: 50%;
    transform: translateY(-50%);
    color: var(--ink, #2a2540);
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    animation: shotTypeEmail 3.2s steps(20, end) 0.8s infinite both;
  }
  .shot__field--autotype::after {
    content: "";
    position: absolute; top: 50%;
    transform: translateY(-50%);
    width: 2px; height: 1.1em;
    background: var(--gold-700, #8a6a38);
    animation: shotBlink 1s steps(2, end) infinite, shotCaretMove 3.2s steps(20, end) 0.8s infinite both;
  }
}
@keyframes shotTypeEmail {
  0%   { width: 0; }
  60%  { width: 13ch; }     /* "you@example" */
  80%  { width: 17ch; }     /* "you@example.com" */
  85%  { width: 17ch; }
  90%  { width: 17ch; opacity: 1; }
  92%  { opacity: 0; width: 17ch; }
  93%  { opacity: 0; width: 0; }
  100% { opacity: 1; width: 0; }
}
@keyframes shotCaretMove {
  0%   { left: 14px; }
  60%  { left: calc(14px + 13ch * 0.55); }
  80%  { left: calc(14px + 17ch * 0.55); }
  92%  { left: calc(14px + 17ch * 0.55); }
  93%  { left: 14px; }
  100% { left: 14px; }
}
@keyframes shotBlink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }
.shot__field--focused.shot__field--autotype { border-color: var(--gold-500, #d4a017); }

/* Step 1 mock: button auto-pulses */
@media (prefers-reduced-motion: no-preference) {
  .shot__cta--auto-send {
    animation: shotCtaPulse 3.2s ease-in-out 0.8s infinite both;
  }
}
@keyframes shotCtaPulse {
  0%, 86% { transform: none; box-shadow: none; }
  90%, 94% {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(212, 160, 23, 0.34);
  }
  100% { transform: none; box-shadow: none; }
}

/* ---------- Step 2: interactive alert builder ---------- */
.demo-builder {
  display: grid; grid-template-columns: 1fr; gap: 10px;
}
.demo-builder__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
@media (max-width: 520px) {
  .demo-builder__row { grid-template-columns: 1fr; }
}
.demo-builder__field { display: flex; flex-direction: column; gap: 4px; }
.demo-builder__field label {
  font-size: .72rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft, #5a5470); font-weight: 700;
}
.demo-builder__field select,
.demo-builder__field input {
  padding: 9px 12px;
  border: 1.5px solid rgba(58, 46, 90, 0.22);
  border-radius: 7px;
  background: var(--white, #fff); color: var(--ink, #2a2540);
  font: inherit; font-size: .92rem;
}
.demo-builder__field select:focus,
.demo-builder__field input:focus {
  outline: none; border-color: var(--gold-500, #d4a017);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.18);
}
.demo-builder__chips { display: flex; gap: 6px; flex-wrap: wrap; }
.demo-builder__chip {
  display: inline-flex; align-items: center;
  padding: 6px 12px;
  border: 1.5px solid rgba(58, 46, 90, 0.22);
  border-radius: 999px;
  background: var(--white, #fff);
  color: var(--ink, #2a2540);
  font: inherit; font-size: .85rem; font-weight: 600;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.demo-builder__chip:hover { border-color: var(--gold-500, #d4a017); }
.demo-builder__chip.is-on {
  background: var(--gold-500, #d4a017);
  border-color: var(--gold-500, #d4a017);
  color: var(--purple-900, #2a1f4a);
}
.demo-builder__cta {
  margin-top: 6px;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--gold-500, #d4a017) 0%, #c19015 100%);
  color: var(--purple-900, #2a1f4a);
  border: 1.5px solid var(--gold-500, #d4a017);
  border-radius: 999px;
  font: inherit; font-weight: 700; font-size: .92rem;
  cursor: pointer;
  align-self: flex-start;
}
.demo-builder__cta:hover {
  background: linear-gradient(135deg, #e8b322 0%, var(--gold-500, #d4a017) 100%);
  transform: translateY(-1px);
}
.demo-builder__preview {
  margin-top: 12px;
  padding: 12px 14px;
  background: var(--white, #fff);
  border: 1.5px dashed rgba(212, 160, 23, 0.4);
  border-radius: 10px;
  display: none;
  font-size: .9rem;
  color: var(--ink, #2a2540);
}
.demo-builder__preview.is-shown { display: block; animation: previewIn .4s ease both; }
@keyframes previewIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}
.demo-builder__preview strong {
  display: block; color: var(--gold-700, #8a6a38);
  margin-bottom: 4px;
}
.demo-builder__preview-cta {
  display: inline-block; margin-top: 8px;
  font-weight: 700; color: var(--purple-800, #3a2e5a);
  text-decoration: none;
  border-bottom: 1.5px solid var(--gold-500, #d4a017);
}
.demo-builder__preview-cta:hover { color: var(--gold-700, #8a6a38); }

/* Step 2 mock: dropdown auto-opens on scroll-in */
.shot__field--dropdown { position: relative; }
.shot__field--dropdown.is-open::after {
  content: "";
  position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%) rotate(180deg);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--ink-soft, #5a5470);
  transition: transform .2s ease;
}
.shot__dropdown-panel {
  position: absolute; left: 0; right: 0; top: calc(100% + 4px);
  background: var(--white, #fff);
  border: 1.5px solid rgba(58, 46, 90, 0.22);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(42, 31, 74, 0.18);
  padding: 6px;
  z-index: 5;
  max-height: 220px; overflow-y: auto;
  opacity: 0; transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.shot__field--dropdown.is-open .shot__dropdown-panel {
  opacity: 1; transform: none; pointer-events: auto;
}
.shot__dropdown-item {
  padding: 8px 10px;
  font-size: .86rem;
  color: var(--ink, #2a2540);
  border-radius: 6px;
  cursor: pointer;
}
.shot__dropdown-item:hover,
.shot__dropdown-item.is-highlighted {
  background: rgba(212, 160, 23, 0.14);
  color: var(--purple-900, #2a1f4a);
}

/* ---------- Step 3: live "last checked" + HIT flash ---------- */
.demo-watch {
  display: grid; grid-template-columns: 1fr; gap: 12px;
}
.demo-watch__row {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 14px;
  padding: 10px 14px;
  background: var(--white, #fff);
  border: 1px solid rgba(58, 46, 90, 0.10);
  border-radius: 10px;
}
.demo-watch__row__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #5a8a3f;
  box-shadow: 0 0 0 0 rgba(90, 138, 63, 0.55);
}
@media (prefers-reduced-motion: no-preference) {
  .demo-watch__row__dot { animation: watchDotPulse 2.2s ease-out infinite; }
}
@keyframes watchDotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(90, 138, 63, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(90, 138, 63, 0); }
  100% { box-shadow: 0 0 0 0 rgba(90, 138, 63, 0); }
}
.demo-watch__row__meta {
  font-size: .86rem;
  color: var(--ink, #2a2540);
  line-height: 1.4;
}
.demo-watch__row__meta strong { color: var(--purple-900, #2a1f4a); }
.demo-watch__row__meta small {
  display: block;
  font-size: .76rem;
  color: var(--ink-soft, #5a5470);
  margin-top: 2px;
}
.demo-watch__row__counter {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  font-size: .82rem;
  color: var(--ink-soft, #5a5470);
  text-align: right;
  min-width: 110px;
}

/* HIT flash overlay on watch rows */
.demo-watch__row.is-hit {
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.18) 0%, rgba(212, 160, 23, 0.08) 100%);
  border-color: var(--gold-500, #d4a017);
  animation: watchHit 1.2s ease;
}
.demo-watch__row.is-hit .demo-watch__row__dot {
  background: var(--gold-500, #d4a017);
  box-shadow: 0 0 0 6px rgba(212, 160, 23, 0.35);
}
.demo-watch__row.is-hit .demo-watch__row__meta strong { color: var(--gold-700, #8a6a38); }
@keyframes watchHit {
  0%   { transform: none; box-shadow: 0 0 0 0 rgba(212, 160, 23, 0); }
  35%  { transform: scale(1.02); box-shadow: 0 0 0 8px rgba(212, 160, 23, 0.16); }
  100% { transform: none; box-shadow: 0 0 0 0 rgba(212, 160, 23, 0); }
}
.demo-watch__hit-badge {
  display: none;
  background: var(--purple-900, #2a1f4a);
  color: var(--gold-300, #e4d2ae);
  padding: 4px 10px; border-radius: 999px;
  font-size: .68rem; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 700;
  margin-left: 8px;
}
.demo-watch__row.is-hit .demo-watch__hit-badge { display: inline-block; }

.demo-watch__skip {
  align-self: flex-start;
  margin-top: 4px;
  background: transparent;
  border: 1.5px solid rgba(58, 46, 90, 0.25);
  color: var(--purple-800, #3a2e5a);
  padding: 8px 14px;
  border-radius: 999px;
  font: inherit; font-weight: 600; font-size: .85rem;
  cursor: pointer;
  transition: all .15s ease;
}
.demo-watch__skip:hover {
  border-color: var(--gold-500, #d4a017);
  color: var(--gold-700, #8a6a38);
  background: rgba(212, 160, 23, 0.06);
}

/* ---------- Step 4: ping → claim → confirmed sequence ---------- */
.demo-ping {
  display: grid; grid-template-columns: 1fr; gap: 12px;
}
.demo-ping__channels {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
@media (max-width: 600px) {
  .demo-ping__channels { grid-template-columns: 1fr; }
}
.demo-ping__channel {
  padding: 12px 14px;
  background: var(--white, #fff);
  border: 1px solid rgba(58, 46, 90, 0.10);
  border-radius: 10px;
  opacity: 0.45;
  transition: opacity .35s ease, border-color .35s ease, transform .35s ease;
  position: relative;
}
.demo-ping__channel.is-arrived {
  opacity: 1;
  border-color: var(--gold-500, #d4a017);
  transform: translateY(-2px);
}
.demo-ping__channel__label {
  font-size: .68rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft, #5a5470);
  font-weight: 700;
  margin-bottom: 6px;
}
.demo-ping__channel.is-arrived .demo-ping__channel__label {
  color: var(--gold-700, #8a6a38);
}
.demo-ping__channel__body {
  font-size: .88rem;
  line-height: 1.45;
  color: var(--ink, #2a2540);
}
.demo-ping__channel__body strong { color: var(--purple-900, #2a1f4a); }
.demo-ping__channel__action {
  display: inline-block; margin-top: 8px;
  padding: 6px 12px;
  background: var(--purple-900, #2a1f4a);
  color: var(--cream-50, #fdfbf6);
  text-decoration: none;
  border-radius: 6px;
  font-size: .82rem; font-weight: 700;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.demo-ping__channel__action:hover { background: var(--purple-800, #3a2e5a); }
.demo-ping__channel__action[disabled] { opacity: .5; cursor: not-allowed; }

.demo-ping__claim {
  background: var(--cream-50, #fdfbf6);
  border: 1.5px solid rgba(58, 46, 90, 0.10);
  border-radius: 10px;
  padding: 16px 18px;
  min-height: 100px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-size: .92rem;
  color: var(--ink-soft, #5a5470);
  transition: all .25s ease;
}
.demo-ping__claim__step { display: none; width: 100%; }
.demo-ping__claim__step.is-active { display: block; animation: claimStepIn .4s ease both; }
@keyframes claimStepIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: none; }
}
.demo-ping__claim__step h4 {
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: 1.2rem;
  margin: 0 0 8px;
  color: var(--purple-900, #2a1f4a);
}
.demo-ping__claim__step--loading .demo-ping__spinner {
  display: inline-block;
  width: 24px; height: 24px;
  border: 3px solid rgba(58, 46, 90, 0.12);
  border-top-color: var(--purple-900, #2a1f4a);
  border-radius: 50%;
  margin-bottom: 10px;
}
@media (prefers-reduced-motion: no-preference) {
  .demo-ping__claim__step--loading .demo-ping__spinner { animation: checkoutSpin 0.9s linear infinite; }
}
.demo-ping__claim__step--confirmed {
  color: var(--ink, #2a2540);
}
.demo-ping__claim__step--confirmed .demo-ping__check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #5a8a3f; color: var(--cream-50, #fdfbf6);
  font-size: 1.5rem; font-weight: 700;
  margin-bottom: 8px;
}
.demo-ping__claim__step--confirmed dl {
  display: grid; grid-template-columns: auto 1fr;
  gap: 4px 14px; margin: 12px 0 0; padding: 0;
  font-size: .85rem; text-align: left;
  max-width: 280px; margin-left: auto; margin-right: auto;
}
.demo-ping__claim__step--confirmed dt {
  font-weight: 700; color: var(--ink-soft, #5a5470);
  font-size: .72rem; letter-spacing: .08em;
  text-transform: uppercase;
  padding-top: 2px;
}
.demo-ping__claim__step--confirmed dd { margin: 0; color: var(--purple-900, #2a1f4a); }

.demo-ping__replay {
  align-self: flex-start;
  margin-top: 4px;
  background: transparent;
  border: 1.5px solid rgba(58, 46, 90, 0.25);
  color: var(--purple-800, #3a2e5a);
  padding: 8px 14px;
  border-radius: 999px;
  font: inherit; font-weight: 600; font-size: .85rem;
  cursor: pointer;
  transition: all .15s ease;
}
.demo-ping__replay:hover {
  border-color: var(--gold-500, #d4a017);
  color: var(--gold-700, #8a6a38);
  background: rgba(212, 160, 23, 0.06);
}

/* ---------- Reveal-on-scroll: lift each step into view ---------- */
@media (prefers-reduced-motion: no-preference) {
  .walk__step {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .55s ease, transform .55s ease;
  }
  .walk__step.is-in-view {
    opacity: 1;
    transform: none;
  }
}
