/* ====================================================================
   Your Verses v2 — page-specific styles
   Builds on tokens from styles.css + shell from practice-loggedin.css
   + sidebar from home-loggedin.css + bv/mc vocabulary from
   memory-challenges.css + browse-verses.css.
   ==================================================================== */

/* ---------- Page wrap ---------- */
.yv2-page { gap: 44px; padding-top: 44px; }

/* ====================================================================
   Header — minimalist
   ==================================================================== */
.yv2-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 4px;
}
.yv2-head h1 {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.024em;
  color: var(--text-1);
  margin: 0;
  line-height: 1.0;
}
.yv2-head h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--brand);
}
.yv2-head .sub {
  margin-top: 14px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-3);
  max-width: 480px;
}
.yv2-head-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.yv2-head-cta .ghost,
.yv2-head-cta .primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.yv2-head-cta .ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border-strong);
}
.yv2-head-cta .ghost:hover { color: var(--text-1); }
.yv2-head-cta .primary {
  background: var(--brand);
  color: var(--brand-fg);
  border: 1px solid var(--brand);
}

/* ====================================================================
   Stats strip — calm 3-up
   ==================================================================== */
.yv2-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.yv2-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}
.yv2-stat:first-child { padding-left: 0; }
.yv2-stat:last-child { padding-right: 0; border-right: 0; }
.yv2-stat .l {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.yv2-stat .v {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -.018em;
  color: var(--text-1);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.yv2-stat .v .u {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--text-3);
}
.yv2-stat .meta {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.4;
}

/* ====================================================================
   Filter — minimalist chips
   ==================================================================== */
.yv2-filter {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: -8px 0 0;
}
.yv2-filter button {
  background: transparent;
  border: 0;
  color: var(--text-3);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.yv2-filter button:hover { color: var(--text-1); background: var(--surface-2); }
.yv2-filter button.active {
  background: var(--text-1);
  color: var(--bg);
}
.yv2-filter button.active .ct { color: var(--bg); opacity: .7; }
.yv2-filter button .ct {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-muted);
}
.yv2-filter .right {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
}

/* ====================================================================
   Cover thumbnails (gradient + icon)
   ==================================================================== */
.yv2-cover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: var(--radius-md);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -10px 30px rgba(0,0,0,0.18);
  flex-shrink: 0;
}
.yv2-cover-sm { width: 32px;  height: 32px; border-radius: var(--radius-sm); }
.yv2-cover-md { width: 44px;  height: 44px; }
.yv2-cover-lg { width: 56px;  height: 56px; border-radius: var(--radius-lg); }

/* ====================================================================
   Feature collection card — extends .mc-card
   ==================================================================== */
.yv2-feature .mc-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  font-size: 0;
}

/* Verse list inside the feature card */
.yv2-verses {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface-2);
  overflow: hidden;
}
.yv2-verse {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}
.yv2-verse:last-of-type { border-bottom: 0; }
.yv2-verse.next {
  background:
    linear-gradient(90deg, var(--accent-soft), transparent 60%),
    var(--surface);
}

.yv2-vring {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}
.yv2-vring svg { width: 100%; height: 100%; position: absolute; inset: 0; }
.yv2-vring .pct {
  position: relative;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--text-2);
}
.yv2-vring.done {
  background: var(--success);
  border-color: var(--success);
  color: white;
}

.yv2-vbody { min-width: 0; }
.yv2-vhead {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.yv2-vhead .ref {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-1);
}
.yv2-vhead .trans {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
}
.yv2-vhead .memorized {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--success);
  background: var(--success-soft);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}
.yv2-vhead .ynext {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}
.yv2-verse .vtext {
  font-family: var(--font-serif);
  font-size: 13.5px;
  font-style: italic;
  line-height: 1.55;
  color: var(--text-2);
  margin-bottom: 6px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.yv2-verse .vmeta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-3);
}
.yv2-verse .vmeta .sep {
  width: 2px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 50%;
}

.yv2-vbtn {
  align-self: center;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--text-2);
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.yv2-vbtn:hover { color: var(--text-1); border-color: var(--text-muted); }
.yv2-vbtn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.yv2-verse-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--surface-2);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
}
.yv2-verse-more button {
  background: transparent;
  border: 0;
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ====================================================================
   Collection card grid — minimalist
   ==================================================================== */
.yv2-coll-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.yv2-coll-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: border-color .15s, transform .15s, box-shadow .15s;
  cursor: pointer;
}
.yv2-coll-card:hover {
  border-color: color-mix(in oklab, var(--accent) 38%, var(--border));
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -12px rgba(11,20,38,0.22);
}
.theme-dark .yv2-coll-card:hover {
  box-shadow: 0 14px 30px -14px rgba(0,0,0,0.55);
}

.yv2-coll-cover {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -16px 40px rgba(0,0,0,0.18);
}
.yv2-coll-cover-ic { opacity: .9; }

.yv2-coll-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.yv2-coll-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--text-1);
  margin: 0;
  line-height: 1.2;
}
.yv2-coll-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-3);
}
.yv2-coll-meta .sep {
  width: 2px; height: 2px;
  background: var(--text-muted);
  border-radius: 50%;
}
.yv2-coll-meta .live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--brand);
  font-weight: 500;
}
.yv2-coll-meta .live .pulse {
  width: 5px; height: 5px; border-radius: 50%; background: var(--brand);
  animation: yv2pulse 1.8s infinite;
}
.yv2-coll-meta .memorized { color: var(--success); font-weight: 500; }
.yv2-coll-meta .paused { color: var(--text-muted); }
.yv2-coll-meta .course { color: var(--brand); font-weight: 500; }

.yv2-coll-progress { margin-top: 4px; }
.yv2-coll-progress-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-3);
  margin-bottom: 6px;
}
.yv2-coll-progress-row strong {
  color: var(--text-1);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12px;
}
.yv2-coll-progress-bar {
  height: 3px;
  background: var(--surface-2);
  border-radius: 2px;
  overflow: hidden;
}
.yv2-coll-progress-bar span { display: block; height: 100%; border-radius: 2px; }

@keyframes yv2pulse {
  0%   { box-shadow: 0 0 0 0 color-mix(in oklab, var(--brand) 60%, transparent); }
  70%  { box-shadow: 0 0 0 6px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

/* ====================================================================
   Recently added section
   ==================================================================== */
.yv2-recent {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
}
.yv2-recent-row {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}
.yv2-recent-row:last-child { border-bottom: 0; }
.yv2-recent-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.yv2-recent-info { min-width: 0; }
.yv2-recent-head {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 4px;
}
.yv2-recent-head .ref {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-1);
}
.yv2-recent-head .trans {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--border-strong);
}
.yv2-recent-head .from strong { color: var(--text-1); font-weight: 600; }
.yv2-recent-head .src {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
}
.yv2-recent-text {
  font-family: var(--font-serif);
  font-size: 12.5px;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-2);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.yv2-recent-when {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-3);
  white-space: nowrap;
}
.yv2-recent-act {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text-2);
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.yv2-recent-act:hover { color: var(--text-1); border-color: var(--text-muted); }

/* ====================================================================
   Recommended grid
   ==================================================================== */
.yv2-rec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.yv2-rec-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.yv2-rec-head {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
}
.yv2-rec-head .ref {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-1);
}
.yv2-rec-head .trans {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--border-strong);
}
.yv2-rec-text {
  font-family: var(--font-serif);
  font-size: 12.5px;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-2);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.yv2-rec-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px dashed var(--border);
}
.yv2-rec-foot .why {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-3);
}
.yv2-rec-foot button {
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid color-mix(in oklab, var(--accent) 30%, transparent);
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ====================================================================
   EMPTY STATE
   ==================================================================== */
.yv2-empty-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  padding: 24px 0 8px;
  align-items: start;
}
.yv2-empty-hero h2 {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.022em;
  color: var(--text-1);
  margin: 14px 0 12px;
  line-height: 1.0;
}
.yv2-empty-hero h2 em { font-style: italic; font-weight: 500; color: var(--accent); }
.yv2-empty-hero p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-3);
  max-width: 540px;
  margin-bottom: 24px;
}
.yv2-empty-hero p em {
  font-style: normal;
  color: var(--text-1);
  font-weight: 500;
  background: var(--accent-soft);
  padding: 0 4px;
  border-radius: 4px;
}

/* "Pick a kind" grid */
.yv2-pick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 560px;
  margin-bottom: 24px;
}
.yv2-pick {
  display: grid;
  grid-template-columns: 32px 1fr;
  grid-template-areas:
    "ic nm"
    ".  ds"
    ".  ex";
  gap: 4px 14px;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.yv2-pick:hover { border-color: var(--accent); background: var(--surface-elev); }
.yv2-pick .ic {
  grid-area: ic;
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.yv2-pick .nm {
  grid-area: nm;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-1);
}
.yv2-pick .ds {
  grid-area: ds;
  font-size: 12.5px;
  color: var(--text-3);
  line-height: 1.5;
}
.yv2-pick .ex {
  grid-area: ex;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.yv2-pick.chapter .ic { background: color-mix(in oklab, var(--warning) 18%, transparent); color: var(--warning); }

.yv2-empty-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.yv2-empty-actions .primary,
.yv2-empty-actions .ghost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.yv2-empty-actions .primary {
  background: var(--accent);
  color: white;
  border: 1px solid var(--accent);
}
.yv2-empty-actions .ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border-strong);
}

/* Builder preview (right column) */
.yv2-empty-builder {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-elev);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.yv2-eb-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.yv2-eb-ic {
  width: 22px; height: 22px;
  background: var(--accent);
  color: white;
  border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
}
.yv2-eb-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-1);
}
.yv2-eb-step {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
}

.yv2-eb-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.yv2-eb-cover {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}
.yv2-eb-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.yv2-eb-input {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--text-1);
  display: flex;
  align-items: center;
}
.yv2-eb-input.placeholder { color: var(--text-muted); font-style: italic; }
.yv2-eb-input .cursor {
  display: inline-block;
  width: 1.5px; height: 16px;
  background: var(--accent);
  margin-left: 2px;
  animation: yv2cursor 1s infinite;
}
@keyframes yv2cursor { 50% { opacity: 0; } }

.yv2-eb-count {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-muted);
}

.yv2-eb-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  background: var(--surface-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.yv2-eb-toggle-title {
  font-size: 13px; font-weight: 600; color: var(--text-1);
}
.yv2-eb-toggle-sub {
  font-size: 11.5px; color: var(--text-3); margin-top: 2px;
}
.yv2-eb-switch {
  width: 34px; height: 20px;
  background: var(--accent);
  border-radius: 10px;
  position: relative;
  flex-shrink: 0;
}
.yv2-eb-switch::after {
  content: ""; position: absolute;
  top: 2px; right: 2px;
  width: 16px; height: 16px;
  background: white;
  border-radius: 50%;
}

.yv2-eb-verses {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.yv2-eb-vchip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11.5px;
}
.yv2-eb-vchip .ref { color: var(--text-1); font-weight: 600; }
.yv2-eb-vchip .trans {
  font-size: 9.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 1px 5px;
  border-radius: 3px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
}
.yv2-eb-vchip .x {
  color: var(--text-muted);
  margin-left: 2px;
  cursor: pointer;
}
.yv2-eb-vchip.placeholder {
  border-style: dashed;
  color: var(--text-muted);
}

.yv2-eb-foot {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 8px;
}
.yv2-eb-foot .ghost,
.yv2-eb-foot .primary {
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.yv2-eb-foot .ghost { background: transparent; border: 1px solid var(--border-strong); color: var(--text-2); }
.yv2-eb-foot .primary { background: var(--accent); color: white; border: 1px solid var(--accent); }

/* ====================================================================
   Starter packs (empty state secondary section)
   ==================================================================== */
.yv2-pack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.yv2-pack {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
  transition: border-color .15s, transform .15s;
  cursor: pointer;
}
.yv2-pack:hover { border-color: var(--border-strong); transform: translateY(-1px); }
.yv2-pack-cover {
  position: relative;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.2),
    inset 0 -20px 60px rgba(0,0,0,0.18);
}
.yv2-pack-cover-count {
  position: absolute;
  top: 10px; right: 10px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  background: rgba(0,0,0,0.32);
  color: white;
  padding: 3px 7px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}
.yv2-pack-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.yv2-pack-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: var(--text-1);
}
.yv2-pack-refs {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-3);
  margin-top: -4px;
}
.yv2-pack-blurb {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-2);
  margin: 0;
}
.yv2-pack-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-3);
  padding-top: 6px;
  border-top: 1px dashed var(--border);
}
.yv2-pack-foot .joined { color: var(--text-2); font-weight: 500; }
.yv2-pack-cta {
  align-self: stretch;
  margin-top: 6px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  color: var(--text-1);
  padding: 9px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.yv2-pack-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

/* ====================================================================
   How it works section
   ==================================================================== */
.yv2-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.yv2-how-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.yv2-how-card .num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--accent);
}
.yv2-how-card .title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-1);
  line-height: 1.25;
}
.yv2-how-card .ds {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-3);
}

/* ====================================================================
   LOGGED-OUT widgets
   ==================================================================== */

/* Library preview widget (hero right column) */
.yv2lo-lib-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-elev);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.yv2lo-lib-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.yv2lo-lib-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-1);
}
.yv2lo-lib-title .ic {
  width: 22px; height: 22px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.yv2lo-lib-meta {
  display: flex;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-3);
}
.yv2lo-lib-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
}
.yv2lo-lib-meta span.primary {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: color-mix(in oklab, var(--accent) 30%, transparent);
}

.yv2lo-lib-feature {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background:
    linear-gradient(135deg, var(--accent-soft), transparent 70%),
    var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.yv2lo-lib-feature .cover {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}
.yv2lo-lib-feature .nm {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-1);
}
.yv2lo-lib-feature .mt {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}
.yv2lo-lib-feature .mt .sep {
  width: 2px; height: 2px; background: var(--text-muted); border-radius: 50%;
}
.yv2lo-lib-feature .live {
  color: var(--success);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.yv2lo-lib-feature .live .pulse {
  width: 5px; height: 5px; border-radius: 50%; background: var(--success);
  animation: yv2pulse 1.8s infinite;
}
.yv2lo-lib-feature .right { text-align: right; }
.yv2lo-lib-feature .pct {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--accent);
}
.yv2lo-lib-feature .lbl {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: .04em;
  color: var(--text-muted);
}

.yv2lo-lib-bar {
  height: 4px;
  background: var(--surface-2);
  border-radius: 2px;
  overflow: hidden;
}
.yv2lo-lib-bar .seg { display: block; height: 100%; background: var(--accent); border-radius: 2px; }

.yv2lo-lib-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.yv2lo-lib-row {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto 60px;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.yv2lo-lib-row:last-child { border-bottom: 0; }
.yv2lo-lib-row .cover {
  width: 28px; height: 28px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}
.yv2lo-lib-row .nm {
  font-family: var(--font-serif);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-1);
}
.yv2lo-lib-row .mt {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--text-3);
}
.yv2lo-lib-row .pct {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-2);
}
.yv2lo-lib-row .bar {
  height: 3px;
  background: var(--surface-2);
  border-radius: 2px;
  overflow: hidden;
}
.yv2lo-lib-row .bar span { display: block; height: 100%; border-radius: 2px; }

.yv2lo-lib-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px dashed var(--border);
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-3);
}
.yv2lo-lib-foot .link { color: var(--accent); }
.yv2lo-lib-foot span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Builder widget for section 2 */
.yv2lo-builder {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-elev);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 480px;
  margin: 0 auto;
}
.yv2lo-bd-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-1);
}
.yv2lo-bd-head .ic {
  width: 22px; height: 22px;
  background: var(--accent);
  color: white;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.yv2lo-bd-head .step {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
}
.yv2lo-bd-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.yv2lo-bd-row .cover {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.yv2lo-bd-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 6px;
}
.yv2lo-bd-input {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--text-1);
  display: flex; align-items: center;
}
.yv2lo-bd-input .cursor {
  display: inline-block;
  width: 1.5px; height: 16px;
  background: var(--accent);
  margin-left: 2px;
  animation: yv2cursor 1s infinite;
}
.yv2lo-bd-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.yv2lo-bd-chips .chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11.5px;
}
.yv2lo-bd-chips .chip .ref { color: var(--text-1); font-weight: 600; }
.yv2lo-bd-chips .chip .trans {
  font-size: 9.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 1px 5px;
  border-radius: 3px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
}
.yv2lo-bd-chips .chip.placeholder {
  border-style: dashed;
  color: var(--text-muted);
}
.yv2lo-bd-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: var(--surface-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.yv2lo-bd-toggle .yv2lo-bd-tt {
  font-size: 13px; font-weight: 600; color: var(--text-1);
}
.yv2lo-bd-toggle .yv2lo-bd-ts {
  font-size: 11.5px; color: var(--text-3); margin-top: 2px;
}
.yv2lo-bd-toggle .switch {
  width: 34px; height: 20px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  position: relative;
}
.yv2lo-bd-toggle .switch.on {
  background: var(--accent);
  border-color: var(--accent);
}
.yv2lo-bd-toggle .switch.on::after {
  content: ""; position: absolute;
  top: 2px; right: 2px;
  width: 14px; height: 14px;
  background: white;
  border-radius: 50%;
}
.yv2lo-bd-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px dashed var(--border);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
}
.yv2lo-bd-foot button {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--accent);
  color: white;
  border: 0;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

/* Schedule widget */
.yv2lo-sched {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-elev);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
  margin-left: auto;
}
.yv2lo-sched-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.yv2lo-sched-head .title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-1);
}
.yv2lo-sched-head .meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-3);
}
.yv2lo-sched-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.yv2lo-sched-day {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 8px;
  min-height: 84px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.yv2lo-sched-day .dn {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.yv2lo-sched-day.today {
  background: var(--accent-soft);
  border-color: color-mix(in oklab, var(--accent) 30%, transparent);
}
.yv2lo-sched-day.today .dn { color: var(--accent); }
.yv2lo-sched-day .dot-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.yv2lo-sched-day .dot {
  width: 10px; height: 10px; border-radius: 50%;
  opacity: .4;
}
.yv2lo-sched-day .dot.today { opacity: 1; box-shadow: 0 0 0 2px var(--accent-soft); }
.yv2lo-sched-day .dot.done { opacity: .85; }
.yv2lo-sched-day .rest {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--text-muted);
  text-transform: lowercase;
}
.yv2lo-sched-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.yv2lo-sched-legend .li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-3);
}
.yv2lo-sched-legend .sw {
  width: 8px; height: 8px; border-radius: 50%;
}
.yv2lo-sched-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px dashed var(--border);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
}
.yv2lo-sched-foot .cta {
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Features 3-col grid */
.yv2lo-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.yv2lo-feat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.yv2lo-feat .ic {
  width: 36px; height: 36px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.yv2lo-feat h4 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  margin: 0;
  color: var(--text-1);
}
.yv2lo-feat p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-3);
  margin: 0;
  flex: 1;
}
.yv2lo-feat-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-3);
}
.yv2lo-feat-foot.list { flex-wrap: wrap; }
.yv2lo-feat-foot.mini-stat { justify-content: space-between; }
.yv2lo-feat-foot.mini-stat .v {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-1);
}
.yv2lo-feat-foot.mini-stat .l {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Public collections strip */
.yv2lo-public-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.yv2lo-pub {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
  cursor: pointer;
  transition: border-color .15s;
}
.yv2lo-pub:hover { border-color: var(--border-strong); }
.yv2lo-pub .cover {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.2),
    inset 0 -20px 60px rgba(0,0,0,0.18);
}
.yv2lo-pub .cover .count {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  background: rgba(0,0,0,0.32);
  padding: 2px 6px;
  border-radius: var(--radius-pill);
}
.yv2lo-pub .body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.yv2lo-pub .nm {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-1);
}
.yv2lo-pub .refs {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-3);
}
.yv2lo-pub .foot {
  margin-top: auto;
  padding-top: 8px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-3);
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.yv2lo-pub .foot .dot { color: var(--text-muted); }

/* Closing CTA section */
.yv2lo-close {
  padding-top: 24px;
  padding-bottom: 32px;
}
.yv2lo-close h2 {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -.022em;
  line-height: 1.0;
  color: var(--text-1);
}
.yv2lo-close h2 em { font-style: italic; font-weight: 500; color: var(--accent); }

.yv2lo-features-head .eyebrow { display: inline-flex; }
.yv2lo-features-head h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--text-1);
}
.yv2lo-features-head h2 em { font-style: italic; font-weight: 500; color: var(--accent); }

/* ====================================================================
   MemoryVerses additions on top of the ported yv2 component CSS:
   shared eyebrow/marketing primitives the design borrows, the in-app
   shell offsets, and the responsive collapses the handoff omitted.
   (.mc-* vocabulary is supplied by linking memory_challenges_loggedin/styles.css;
    .nav/.hero/.btn/.section/.split/.eyebrow come from index_new/styles.css.)
   ==================================================================== */

/* Page background fills the in-app content column / full marketing page */
.yv-page-bg { background: var(--bg); min-height: 100vh; }
.yv-root { color: var(--text-1); }

/* Local color tokens — keeps page colors var-driven (dark-safe + audit-clean).
   Cover gradients are decorative collection "album art": intentionally static
   across themes (the handoff G map), so no dark override. --yv-on-fill is white
   text on the slate --accent / --accent-strong fills (white in both themes). */
.yv-root {
  --yv-on-fill: #FFFFFF;
  --yv-cover-ph: #000000;
  --yv-g1a: #F08B6E; --yv-g1b: #C25E3F;
  --yv-g2a: #9F7BAA; --yv-g2b: #6E4F8B;
  --yv-g3a: #7AAA8F; --yv-g3b: #3F8868;
  --yv-g4a: #E0B97A; --yv-g4b: #B4884E;
  --yv-g5a: #7A8A9F; --yv-g5b: #475164;
  --yv-g6a: #C97B92; --yv-g6b: #9B4D66;
  --yv-g7a: #5BA9B6; --yv-g7b: #2F7B85;
  --yv-g8a: #5F7BAA; --yv-g8b: #2F4FB8;
}

/* Mono eyebrow (page-scoped yv- vocabulary; was the borrowed .bv-eye) */
.yv-eye {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; color: var(--text-3); margin-bottom: 10px;
  font-family: var(--font-sans);
}
.yv-eye .ic { color: var(--accent); display: inline-flex; }
.yv-eye .sep { width: 3px; height: 3px; border-radius: 50%; background: var(--text-muted); }

/* Marketing primitives borrowed from For Churches (logged-out only) */
.fc-breadcrumb { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-3); padding-top: var(--sp-8); margin-bottom: var(--sp-6); font-family: var(--font-sans); }
.fc-bc-link { color: var(--accent); font-weight: 500; cursor: pointer; text-decoration: none; }
.fc-bc-chev { transform: rotate(-90deg); opacity: 0.5; }
.fc-bc-current { color: var(--text-2); font-weight: 500; }
.fc-hero-section { padding-bottom: var(--sp-20); }
.fc-hero { padding: 64px 0 80px; }
.fc-hero h1 { font-size: 64px; line-height: 1.0; letter-spacing: -0.022em; }
.fc-eyebrow-pill { display: inline-flex; align-items: center; gap: 10px; padding: 6px 14px 6px 6px; background: var(--accent-soft); border: 1px solid var(--accent-soft); border-radius: var(--radius-pill); text-transform: none; letter-spacing: 0.04em; font-size: 13px; font-weight: 600; color: var(--text-2); font-family: var(--font-sans); }
.fc-eyebrow-tag { background: var(--accent); color: var(--yv-on-fill); padding: 3px 9px; border-radius: var(--radius-pill); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.fc-signin { font-size: 14px; color: var(--text-3); font-family: var(--font-sans); }
.fc-signin-link { color: var(--accent); font-weight: 600; cursor: pointer; text-decoration: none; }
.fc-checklist { display: flex; flex-direction: column; gap: 12px; margin-top: var(--sp-6); margin-bottom: var(--sp-6); }
.fc-check { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text-2); font-family: var(--font-sans); }
.fc-check svg { flex-shrink: 0; width: 22px; height: 22px; padding: 4px; border-radius: 50%; background: var(--success-soft); color: var(--success); }

/* Pastor banner styling now lives in the shared partial (extensions/pastor_banner/). */

/* Create-collection modal (slate) */
.yv-modal { position: fixed; inset: 0; background: rgba(11,20,38,0.55); display: flex; align-items: center; justify-content: center; z-index: 10000; padding: 20px; }
.yv-modal.is-hidden { display: none; }
.yv-modal-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; width: 96%; max-width: 460px; box-shadow: var(--shadow-elev); }
.yv-modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.yv-modal-head h3 { font-family: var(--font-serif); font-size: 22px; font-weight: 600; color: var(--text-1); margin: 0; letter-spacing: -0.012em; }
.yv-modal-close { width: 30px; height: 30px; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--border); color: var(--text-3); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.yv-modal-label { font-family: var(--font-sans); font-size: 13px; font-weight: 600; color: var(--text-2); margin-bottom: 8px; display: block; }
.yv-modal-input { width: 100%; box-sizing: border-box; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px; font-size: 15px; color: var(--text-1); font-family: var(--font-sans); }
.yv-modal-input:focus { outline: none; border-color: var(--accent); }
.yv-modal-err { font-family: var(--font-sans); font-size: 13px; color: var(--danger); margin-top: 8px; }
.yv-modal-toggle { display: flex; align-items: center; justify-content: space-between; gap: 14px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 12px 14px; margin-top: 16px; }
.yv-modal-toggle .tt { font-family: var(--font-sans); font-size: 13px; font-weight: 600; color: var(--text-1); }
.yv-modal-toggle .ts { font-family: var(--font-sans); font-size: 12px; color: var(--text-3); margin-top: 2px; }
.yv-seg { display: inline-flex; gap: 6px; flex-shrink: 0; }
.yv-seg button { padding: 6px 14px; border-radius: var(--radius-sm); border: 1px solid var(--border); background: var(--bg); color: var(--text-3); font-family: var(--font-sans); font-size: 13px; font-weight: 600; cursor: pointer; }
.yv-seg button.active { background: var(--accent); border-color: var(--accent); color: var(--yv-on-fill); }
.yv-modal-actions { display: flex; gap: 12px; margin-top: 22px; }
.yv-modal-actions .primary { flex: 1; background: var(--brand); color: var(--brand-fg); border: 1px solid var(--brand); border-radius: var(--radius-pill); padding: 11px; font-family: var(--font-sans); font-size: 14px; font-weight: 700; cursor: pointer; }
.yv-modal-actions .ghost { flex: 1; background: transparent; color: var(--text-1); border: 1px solid var(--border-strong); border-radius: var(--radius-pill); padding: 11px; font-family: var(--font-sans); font-size: 14px; font-weight: 600; cursor: pointer; }

/* ====================================================================
   RESPONSIVE — the handoff CSS ships none.
   ==================================================================== */
@media (max-width: 1100px) {
  .yv2-empty-hero { grid-template-columns: 1fr !important; gap: 28px; }
  .yv2lo-lib-card { margin-top: 24px; }
}
@media (max-width: 980px) {
  .yv2-coll-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .yv2-pack-grid, .yv2lo-public-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .yv2-how-grid, .yv2lo-features { grid-template-columns: 1fr !important; }
  .fc-hero h1 { font-size: 48px; }
}
@media (max-width: 760px) {
  /* collapse the shared two-column .hero / .split so they don't scroll sideways on phones */
  .mv-root .hero, .mv-root .split, .mv-root .split.reverse { grid-template-columns: 1fr; }
  .mv-root .split.reverse > :first-child { order: 0; }
  .yv2-head { grid-template-columns: 1fr !important; gap: 16px; }
  .yv2-head h1 { font-size: 34px; }
  .yv2-stats { grid-template-columns: 1fr !important; }
  .yv2-coll-grid { grid-template-columns: 1fr !important; }
  .yv2-pick-grid { grid-template-columns: 1fr !important; }
  .yv2-pack-grid, .yv2lo-public-grid { grid-template-columns: 1fr !important; }
  .yv2-recent-row { grid-template-columns: 12px minmax(0, 1fr) auto; }
  .yv2-recent-act { display: none; }
  .mc-quickstats { grid-template-columns: repeat(2, 1fr); }
  .fc-breadcrumb { padding-left: 20px; padding-right: 20px; }
  .fc-hero { padding: 36px 0 48px; }
  .fc-hero h1 { font-size: 38px; }
  .yv2lo-sched-grid { grid-template-columns: repeat(7, 1fr); }
}

/* Phone portrait: hide the hero eyebrow/pill above the main H1 (section eyebrows stay). */
@media (max-width: 560px) { .mv-root .fc-eyebrow-pill { display: none !important; } }
