/* ───────────────────────────────────────────────────────────────
   BookReady marketing — sub-page components
   Loaded *after* styles.css on /pricing, /templates, /templates/*,
   and /migration. Reuses the same tokens (cream + pink accent,
   0px radius, hairline borders, Inter + Fraunces). Kept separate
   from styles.css so the homepage stays untouched.
   ─────────────────────────────────────────────────────────────── */

/* ─── Active nav state ─── */
.br-nav__link[aria-current="page"],
.br-nav__trigger[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--text);
}

/* ─── Breadcrumbs ─── */
.br-crumbs {
  width: min(1360px, 100%);
  margin: 0 auto;
  padding: 20px 20px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.br-crumbs a { color: var(--muted); transition: color .12s ease; }
.br-crumbs a:hover { color: var(--text); }
.br-crumbs__sep { opacity: 0.5; }
.br-crumbs__current { color: var(--text); }

/* ─── Page header (compact sub-hero) ─── */
.br-pagehead {
  width: 100%;
  padding: 40px 20px 8px;
}
.br-pagehead__inner {
  width: min(1360px, 100%);
  margin: 0 auto;
  max-width: 920px;
}
.br-pagehead__title {
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 800;
  margin: 0 0 18px;
  color: var(--text);
}
.br-pagehead__intro {
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.6;
  margin: 0;
  max-width: 680px;
}
.br-pagehead__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

/* ─── Template detail hero ─── */
.br-tpl-hero {
  width: min(1360px, 100%);
  margin: 0 auto;
  padding: 32px 20px 8px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .br-tpl-hero { grid-template-columns: 1fr; gap: 40px; padding-top: 16px; }
}
.br-tpl-hero__meta { min-width: 0; }
.br-tpl-hero__label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  background: var(--accent);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.br-tpl-hero__name {
  font-family: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0 0 18px;
  color: var(--text);
}
.br-tpl-hero__desc {
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.6;
  margin: 0 0 26px;
  max-width: 520px;
}
.br-tpl-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}
@media (max-width: 540px) {
  .br-tpl-hero__actions { flex-direction: column; align-items: stretch; }
  .br-tpl-hero__actions .br-button,
  .br-tpl-hero__actions .br-text-link { width: 100%; text-align: center; justify-content: center; }
}

/* ─── Palette swatches ─── */
.br-palette {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.br-swatch { display: flex; flex-direction: column; gap: 7px; }
.br-swatch__chip {
  width: 56px;
  height: 56px;
  border: 1px solid var(--border);
}
.br-swatch__hex {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── Spec list (label / value grid) ─── */
.br-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
@media (min-width: 720px) { .br-specs { grid-template-columns: repeat(4, 1fr); } }
.br-spec {
  background: var(--card);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px;
}
.br-spec__k {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 8px;
}
.br-spec__v {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0;
  line-height: 1.4;
}

/* ─── Static feature cards grid ─── */
.br-feats {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
@media (min-width: 640px)  { .br-feats { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px)  { .br-feats { grid-template-columns: repeat(3, 1fr); } }
.br-feat {
  background: var(--card);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.br-feat__icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  margin-bottom: 16px;
}
.br-feat__icon svg { width: 19px; height: 19px; display: block; }
.br-feat h3 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 6px;
}
.br-feat p {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ─── Filter bar (templates gallery) ─── */
.br-filterbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.br-filter {
  padding: 10px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.br-filter:hover { background: var(--bg); }
.br-filter.is-active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

/* When the whole card is a link (hub page), inherit color + remove underline,
   and trigger image zoom + overlay on card hover, not just the preview. */
a.br-template-card {
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease;
}
a.br-template-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(18,18,18,0.10);
}
a.br-template-card:hover .br-template-card__preview img { transform: scale(1.04); }
a.br-template-card:hover .br-template-card__overlay {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  a.br-template-card { transition: none; }
  a.br-template-card:hover { transform: none; }
  a.br-template-card:hover .br-template-card__preview img { transform: none; }
}

/* Template card "coming soon" variant */
.br-template-card--soon { position: relative; }
.br-template-card--soon .br-template-card__preview {
  filter: grayscale(0.4);
  opacity: 0.75;
}
.br-template-card__soon-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--text);
  color: var(--bg);
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.br-template-card.is-hidden { display: none; }

/* ─── Migration: from-platform cards ─── */
.br-from {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
@media (min-width: 640px) { .br-from { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .br-from { grid-template-columns: repeat(3, 1fr); } }
.br-from__card {
  background: var(--card);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px;
}
.br-from__name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--text);
}
.br-from__note {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.br-from__tag {
  display: inline-block;
  margin-top: 14px;
  padding: 5px 10px;
  background: var(--bg);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}
.br-from__tag--watch { background: var(--accent); }

/* ─── Comparison table ─── */
.br-compare {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  background: var(--card);
  font-size: 14px;
}
.br-compare th,
.br-compare td {
  text-align: left;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  vertical-align: top;
}
.br-compare th {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg);
}
.br-compare td:first-child {
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
}
.br-compare td { color: var(--muted); font-weight: 600; line-height: 1.5; }
.br-compare tr:last-child td { border-bottom: none; }
.br-compare th:last-child,
.br-compare td:last-child { border-right: none; }
.br-compare__yes { color: var(--text); font-weight: 800; }
.br-compare__wrap { overflow-x: auto; }
@media (max-width: 600px) { .br-compare { min-width: 520px; } }

/* ─── Standalone pull-quote (template pages) ─── */
.br-quote {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 40px 36px;
  max-width: 860px;
}
.br-quote__text {
  font-family: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(21px, 2.7vw, 30px);
  line-height: 1.38;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--text);
  margin: 0 0 22px;
}
.br-quote__author { display: flex; align-items: center; gap: 12px; }
.br-quote__avatar {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--text);
  font-size: 16px;
  font-weight: 800;
  border-radius: 999px;
}
.br-quote__name { margin: 0; font-size: 14px; font-weight: 800; letter-spacing: -0.01em; }
.br-quote__role { margin: 0; font-size: 12px; font-weight: 600; color: var(--muted); }

/* ─── Booking demo on a template page (single column, centered) ─── */
.br-demoshow {
  display: flex;
  justify-content: center;
}
.br-demoshow .br-vt { margin: 0 auto; }

/* ─── Template detail: large cover hero (image-first) ─── */
.br-tpl-cover {
  width: min(1360px, 100%);
  margin: 0 auto;
  padding: 24px 20px 0;
}
.br-tpl-cover__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: 0 28px 60px rgba(18,18,18,0.12), 0 10px 22px rgba(18,18,18,0.08);
}
.br-tpl-cover__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 720px) {
  .br-tpl-cover__frame { aspect-ratio: 4 / 3; }
}

/* ─── Template detail: title block under the cover ─── */
.br-tpl-intro {
  width: min(1360px, 100%);
  margin: 0 auto;
  padding: 40px 20px 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) {
  .br-tpl-intro { grid-template-columns: 1fr; gap: 24px; padding-top: 28px; }
}
.br-tpl-intro__title {
  font-family: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0 0 18px;
  color: var(--text);
}
.br-tpl-intro__meaning {
  color: var(--muted);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.6;
  margin: 0;
  max-width: 540px;
}
.br-tpl-intro__meaning b {
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.br-tpl-intro__right {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 6px;
}
.br-tpl-mood {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 7px 14px;
  background: var(--accent);
  color: var(--text);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.br-tpl-intro__desc {
  color: var(--text);
  font-family: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.42;
  letter-spacing: -0.01em;
  font-weight: 400;
  margin: 0;
  max-width: 520px;
}
.br-tpl-intro__cta {
  align-self: flex-start;
  margin-top: 4px;
}
@media (max-width: 540px) {
  .br-tpl-intro__cta { align-self: stretch; text-align: center; justify-content: center; }
}

/* ─── Color groups (Base canvas, Highlight, etc.) ─── */
.br-cgroup {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.br-cgroup + .br-cgroup { margin-top: 36px; }
.br-cgroup__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.br-cgroup__title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0;
}
.br-cgroup__hint {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin: 0;
}
.br-cgroup__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}
.br-cswatch {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 12px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.br-cswatch:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(18,18,18,0.10);
}
.br-cswatch__chip {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
}
.br-cswatch__name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.25;
  margin: 0;
}
.br-cswatch__hex {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.br-cswatch--default::after {
  content: 'Default';
  align-self: flex-start;
  padding: 3px 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

/* ─── Fonts row ─── */
.br-fontlist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px) {
  .br-fontlist { grid-template-columns: repeat(3, 1fr); }
}
.br-fontcard {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 152px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.br-fontcard:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(18,18,18,0.10);
}
.br-fontcard__role {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.br-fontcard__sample {
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
}
.br-fontcard__name {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0;
}

/* ─── Demo CTA block (prominent "View live demo") ─── */
.br-demo-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 36px;
  background: var(--text);
  color: var(--bg);
  border: 1px solid var(--text);
}
.br-demo-cta__copy {
  min-width: 0;
  flex: 1;
}
.br-demo-cta__kicker {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244,239,231,0.62);
  margin: 0 0 8px;
}
.br-demo-cta__title {
  font-family: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 400;
  margin: 0 0 6px;
  color: #fff;
}
.br-demo-cta__sub {
  font-size: 14px;
  font-weight: 500;
  color: rgba(244,239,231,0.7);
  line-height: 1.55;
  margin: 0;
  max-width: 520px;
}
.br-demo-cta__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--accent);
  color: var(--text);
  text-decoration: none;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  border: 1px solid var(--accent);
  transition: transform .15s ease, box-shadow .15s ease;
}
.br-demo-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0,0,0,0.32);
}
.br-demo-cta__btn svg { width: 14px; height: 14px; display: block; }
@media (max-width: 720px) {
  .br-demo-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 22px;
  }
  .br-demo-cta__btn { width: 100%; justify-content: center; }
}

/* ─── Related templates strip heading ─── */
.br-related__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.br-related__head h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   Rich feature/platform pages — split hero + UI mockups + prose
   ═══════════════════════════════════════════════════════════════ */

/* ─── Split hero: copy on one side, a UI mockup on the other ─── */
.br-pagehero {
  width: min(1360px, 100%);
  margin: 0 auto;
  padding: 40px 20px 8px;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .br-pagehero { grid-template-columns: 1fr; gap: 36px; padding-top: 24px; }
}
.br-pagehero__meta { min-width: 0; }
.br-pagehero__visual { min-width: 0; display: flex; justify-content: center; }

/* ─── Hero image ───
   Placeholder photo for now; swap the <img src> for brand images later.
   Sized to sit opposite the hero copy in .br-pagehero. */
.br-pagehero__shot {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 28px 64px rgba(18,18,18,0.12), 0 8px 20px rgba(18,18,18,0.06);
}

/* ─── Prose + checklist (fleshed-out value sections) ─── */
.br-prose { max-width: 760px; }
.br-prose p {
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.65;
  margin: 0 0 16px;
}
.br-prose p strong { color: var(--text); font-weight: 700; }
.br-checklist {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) { .br-checklist { grid-template-columns: 1fr 1fr; } }
.br-checklist li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
}
.br-checklist li::before {
  content: "\2713";
  position: absolute; left: 0; top: 1px;
  width: 19px; height: 19px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: var(--text);
  font-size: 11px; font-weight: 800;
}

/* ═══════════════════════════════════════════════════════════════
   Content-aware spotlight blocks (pages drop in 1–2 that fit)
   ═══════════════════════════════════════════════════════════════ */

/* ─── Stat / proof band ─── */
.br-statband {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
@media (min-width: 720px) { .br-statband { grid-template-columns: repeat(3, 1fr); } }
.br-stat {
  background: var(--card);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 26px;
}
.br-stat__num {
  font-size: clamp(38px, 5vw, 54px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--text);
  margin: 0 0 10px;
}
.br-stat__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
}

/* ─── Coming-soon roadmap ─── */
.br-roadmap {
  border: 1px solid var(--border);
  background: var(--card);
}
.br-roadmap__row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}
.br-roadmap__row:last-child { border-bottom: none; }
.br-roadmap__label { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; color: var(--text); }
.br-roadmap__status {
  flex-shrink: 0;
  font-size: 11px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 11px; background: var(--bg); color: var(--muted);
}
.br-roadmap__status--build { background: var(--accent); color: var(--text); }

/* ═══════════════════════════════════════════════════════════════
   Resources pages — changelog timeline + signup form
   ═══════════════════════════════════════════════════════════════ */

/* ─── Changelog ─── */
.br-log { border-top: 1px solid var(--border); }
.br-log__entry {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 700px) { .br-log__entry { grid-template-columns: 1fr; gap: 12px; } }
.br-log__date { font-size: 13px; font-weight: 800; letter-spacing: 0.02em; color: var(--text); margin: 0 0 8px; }
.br-log__tag {
  display: inline-block;
  font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 9px; background: var(--accent); color: var(--text);
}
.br-log__title { font-size: 19px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; margin: 0 0 10px; color: var(--text); }
.br-log__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.br-log__list li { position: relative; padding-left: 20px; font-size: 14px; font-weight: 500; color: var(--muted); line-height: 1.55; }
.br-log__list li::before { content: "\2014"; position: absolute; left: 0; color: var(--text); font-weight: 800; }

/* ─── Signup form (newsletter / notify) ─── */
.br-signup { max-width: 520px; }
.br-signup--center { margin-left: auto; margin-right: auto; text-align: center; }
.br-signup__form { display: flex; gap: 10px; }
@media (max-width: 540px) { .br-signup__form { flex-direction: column; } }
.br-signup__input {
  flex: 1; min-width: 0;
  padding: 14px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font); font-size: 15px; font-weight: 500;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.br-signup__input:focus { border-color: var(--text); box-shadow: inset 0 0 0 1px var(--text); }
.br-signup__form .br-button { flex-shrink: 0; }
.br-signup__success {
  font-size: 15px; font-weight: 800; color: var(--text);
  margin: 0; padding: 14px 16px; background: var(--accent); text-align: center;
}
.br-signup__success[hidden] { display: none; }
.br-signup__fine { margin: 12px 0 0; font-size: 12px; font-weight: 700; letter-spacing: 0.03em; color: var(--muted); }

/* ═══════════════════════════════════════════════════════════════
   Depth & motion (added) — sub-page cards, a dark stat-band moment,
   and depth on the hero image.
   ═══════════════════════════════════════════════════════════════ */

/* Feature / card grids read as elevated blocks */
.br-feats,
.br-specs,
.br-from {
  box-shadow: 0 14px 34px rgba(18,18,18,0.05);
}

/* Cards (incl. related-link cards) rise on hover */
.br-feat,
.br-from__card,
.br-migration__step {
  transition: transform .2s ease, box-shadow .2s ease;
}
.br-feat:hover,
.br-from__card:hover,
.br-migration__step:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(18,18,18,0.13);
  position: relative;
  z-index: 2;
}
a.br-feat:hover { border-color: rgba(18,18,18,0.24); }
@media (prefers-reduced-motion: reduce) {
  .br-feat, .br-from__card, .br-migration__step { transition: none; }
  .br-feat:hover, .br-from__card:hover, .br-migration__step:hover { transform: none; }
}

/* Dark "moment": stat bands invert to near-black with a pink number pop */
.br-statband {
  background: #14110D;
  border-top-color: rgba(245,239,230,0.16);
  border-left-color: rgba(245,239,230,0.16);
}
.br-statband .br-stat {
  background: transparent;
  border-right-color: rgba(245,239,230,0.12);
  border-bottom-color: rgba(245,239,230,0.12);
}
.br-statband .br-stat__num { color: var(--accent); }
.br-statband .br-stat__label { color: rgba(244,239,231,0.62); }

/* Hero image gains depth: a slight tilt + layered shadow */
.br-pagehero__shot {
  transform: rotate(-1.4deg);
  box-shadow: 0 36px 70px rgba(18,18,18,0.18), 0 12px 26px rgba(18,18,18,0.10);
}
@media (max-width: 900px) { .br-pagehero__shot { transform: rotate(-0.8deg); } }
@media (prefers-reduced-motion: reduce) { .br-pagehero__shot { transform: none; } }

/* ─── Image placeholder (swap for a real <img> when ready) ─── */
.br-imgph {
  width: min(1360px, 100%);
  margin: 8px auto 0;
  padding: 0 20px;
}
.br-imgph__frame {
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background:
    repeating-linear-gradient(45deg, rgba(232,199,218,0.10) 0 14px, transparent 14px 28px),
    linear-gradient(135deg, var(--card), var(--bg));
  border: 1px dashed rgba(18,18,18,0.22);
  color: var(--muted);
}
.br-imgph__label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.br-imgph__hint { font-size: 12px; font-weight: 600; color: rgba(18,18,18,0.4); }
/* Filled variant: a real image swapped into the placeholder frame. */
.br-imgph__frame--filled {
  aspect-ratio: 1200 / 630;
  border: 0;
  background: none;
  padding: 0;
  overflow: hidden;
}
.br-imgph__frame--filled img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ═══════════════════════════════════════════════════════════════
   Blog / guide reading layout  (set class="br-article" on <body>)
   Turns the section-stack into a centered, readable editorial column:
   comfortable measure, dark body copy, real paragraph rhythm, and
   article-scale headings. Hero + figure slots are ready for imagery.
   ═══════════════════════════════════════════════════════════════ */

/* Center everything in a comfortable reading measure */
.br-article .br-pagehead__inner,
.br-article .br-section__inner { max-width: 720px; }
.br-article .br-pagehead { padding: 36px 20px 4px; }

/* Article sections: tight editorial rhythm, not full-page blocks */
.br-article .br-section { padding: 34px 20px; }
.br-article .br-section__head { margin-bottom: 0; max-width: none; }

/* Headings at article scale */
.br-article .br-section__title {
  font-size: clamp(23px, 3vw, 31px);
  line-height: 1.14;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}
.br-article .br-section__title .br-italic { font-weight: 300; }

/* Body copy: dark, readable, properly spaced */
.br-article .br-section__intro {
  color: rgba(18,18,18,0.84);
  font-size: 18px;
  line-height: 1.78;
  max-width: none;
  margin: 0 0 18px;
}
.br-article .br-section__intro:last-child { margin-bottom: 0; }
.br-article .br-section__intro strong { color: var(--text); font-weight: 700; }
.br-article .br-section__intro a {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: text-decoration-color .12s ease;
}
.br-article .br-section__intro a:hover { text-decoration-color: var(--text); }

/* Lead paragraphs (the pagehead intro): bigger, warmer, first one near-black */
.br-article .br-pagehead__intro {
  color: rgba(18,18,18,0.72);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.66;
  max-width: none;
  margin: 0 0 16px;
}
.br-article .br-pagehead__intro:first-of-type { color: var(--text); font-weight: 500; }

/* A small accent tick before each section kicker, for rhythm */
.br-article .br-section__head .br-kicker::before {
  content: "";
  width: 18px; height: 2px;
  background: var(--accent);
  margin-right: 10px;
}

/* Hero image under the title block */
.br-article__hero {
  width: min(1360px, 100%);
  margin: 10px auto 0;
  padding: 0 20px;
}
.br-article__hero figure { margin: 0 auto; max-width: 720px; }
.br-article__hero img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 28px 60px rgba(18,18,18,0.12), 0 10px 22px rgba(18,18,18,0.08);
}
.br-article__hero figcaption,
.br-article figure.br-figure figcaption {
  font-size: 12px; font-weight: 600; color: var(--muted);
  margin: 10px 0 0; letter-spacing: 0.01em;
}

/* Inline figures between sections */
.br-article figure.br-figure { margin: 6px 0; }
.br-article figure.br-figure img {
  width: 100%;
  display: block;
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(18,18,18,0.08);
}

/* Pull-quote rhythm inside an article (reuses .br-quote) */
.br-article .br-quote { margin: 8px 0; }

/* Comparison tables can use the full measure comfortably */
.br-article .br-compare { font-size: 13.5px; }
.br-article .br-compare th,
.br-article .br-compare td { padding: 13px 14px; }

/* ═══════════════════════════════════════════════════════════════
   Persona-page upgrades (idea-stack for paid TikTok/Reels traffic)
   — embedded demo proof, horizontal demo strip, mobile sticky CTA.
   Used by every /for-* page. Styled to match the existing pages.css
   rhythm: 0px radius, hairline borders, accent pink, Fraunces+Inter.
   ═══════════════════════════════════════════════════════════════ */

/* ─── Ghost (outline) button — used as the secondary demo CTA ─── */
.br-button--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.br-button--ghost:hover {
  background: var(--text);
  color: var(--bg);
}

/* ─── Embedded demo proof — phone-frame screenshot + 2 CTAs ───
   Left: a 320px-wide phone frame holding the mapped template's
   cover image. Right: copy + "Visit live site" + "Start with this
   template" buttons. Stacks on mobile with the phone centered. */
.br-demo-proof {
  display: grid;
  grid-template-columns: minmax(0, 320px) 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 24px;
}
@media (max-width: 820px) {
  .br-demo-proof {
    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: center;
    text-align: center;
  }
}
.br-demo-proof__phone {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 320 / 640;
  background: var(--text);
  padding: 12px;
  border: 1px solid var(--text);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.35);
  overflow: hidden;
}
.br-demo-proof__phone::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 4px;
  background: rgba(255,255,255,0.18);
  z-index: 1;
}
.br-demo-proof__shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  background: var(--bg);
}
.br-demo-proof__copy {
  min-width: 0;
}
.br-demo-proof__kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
}
.br-demo-proof__title {
  font-family: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 14px;
}
.br-demo-proof__sub {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 480px;
}
@media (max-width: 820px) {
  .br-demo-proof__sub { margin-left: auto; margin-right: auto; }
}
.br-demo-proof__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 540px) {
  .br-demo-proof__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .br-demo-proof__actions .br-button { width: 100%; }
}

/* ─── Demo strip — horizontal swipe of the other example sites ───
   Below the focused demo. Shows the other live BKRDY example sites
   so a visitor can see breadth. Horizontal scroll on mobile (snaps),
   wraps to a row on desktop. Each card opens the live subdomain. */
.br-demo-strip {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(18,18,18,0.10);
}
.br-demo-strip__label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
}
.br-demo-strip__row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin: 0 -20px;
  padding: 4px 20px 18px;
  scrollbar-width: thin;
}
.br-demo-strip__card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
  background: #FFFFFF;
  border: 1px solid rgba(18,18,18,0.10);
  transition: transform .15s ease, box-shadow .15s ease;
}
.br-demo-strip__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -12px rgba(0,0,0,0.18);
}
.br-demo-strip__card img {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.br-demo-strip__card-body {
  padding: 12px 14px 14px;
}
.br-demo-strip__card-name {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.005em;
  margin: 0 0 2px;
}
.br-demo-strip__card-mood {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

