/* Oja design system — Concept A "Oja Signal" */

/* The `hidden` attribute must always win, even over a class that sets `display`
   (e.g. overlays styled display:flex). Without this, JS that hides an element
   via `el.hidden = true` leaves a display:flex element covering the page and
   swallowing every click until a refresh. */
[hidden] { display: none !important; }

:root {
  /* Core brand */
  --obsidian: #101412;      /* near-black ground for dark surfaces + primary ink */
  --obsidian2: #1b211d;     /* raised dark surface / hover on dark */
  --signal: #ff4d1c;        /* primary / CTA */
  --signal-ink: #d8380e;    /* darker signal for hover + links on light (>=4.5:1 on bone) */
  --bone: #f4f0e7;          /* app + page background */
  --mint: #9be28f;          /* mineral green accent (fills, positives on dark) */
  --mint-tint: #e6f5e2;     /* mint wash for positive surfaces on light */
  --green: #12805a;         /* readable success text on light */
  --gold: #e7a93b;

  /* Neutrals tuned to bone */
  --muted: #6f6a5e;         /* secondary text (>=4.5:1 on bone) */
  --line: #e3dccc;          /* hairline borders on bone */
  --line-strong: #d3cab6;
  --surface: #ffffff;       /* cards */

  /* Legacy aliases — existing component rules keep working through these */
  --plum: var(--obsidian);
  --plum2: var(--obsidian2);
  --blush: var(--bone);
  --coral: var(--signal);
  --coral-ink: var(--signal-ink);

  --radius: 16px;
  --shadow: 0 8px 30px rgba(16, 20, 18, 0.07);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--blush);
  color: var(--plum);
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

h1, h2, h3, .display {
  font-family: "Bricolage Grotesque", "DM Sans", system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 0.5rem;
}

a { color: var(--signal-ink); }

.wrap { max-width: 640px; margin: 0 auto; padding: 16px; }
.wrap-wide { max-width: 860px; margin: 0 auto; padding: 16px; }

.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; max-width: 860px; margin: 0 auto;
}
/* Brand lockup: awning mark + lowercase wordmark */
.brand {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800; font-size: 1.3rem; color: var(--plum);
  text-decoration: none; letter-spacing: -0.03em; text-transform: lowercase;
}
.brand span { color: var(--signal); }
.brand-mark {
  width: 30px; height: 30px; border-radius: 9px; flex: none;
  background: var(--signal); display: inline-flex;
  align-items: center; justify-content: center;
}
.brand-mark svg { width: 19px; height: 19px; display: block; }

.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px; margin-bottom: 16px;
  box-shadow: var(--shadow);
}
.card h2 { font-size: 1.15rem; }
.card .hint { color: var(--muted); font-size: 0.9rem; margin: 4px 0 12px; }

.btn {
  display: inline-block; border: 0; cursor: pointer;
  background: var(--coral); color: #fff;
  font: 600 1rem "DM Sans", sans-serif;
  padding: 12px 20px; border-radius: 999px;
  text-decoration: none; text-align: center;
  transition: background 0.15s ease, transform 0.1s ease;
}
.btn:hover { background: var(--coral-ink); }
.btn:active { transform: scale(0.98); }
.btn:focus-visible { outline: 3px solid var(--obsidian); outline-offset: 2px; }
.btn.block { display: block; width: 100%; }
.btn.secondary { background: var(--surface); color: var(--plum); border: 1.5px solid var(--line-strong); }
.btn.secondary:hover { border-color: var(--obsidian); background: var(--surface); }
/* Obsidian button — the dark secondary CTA used across the reference
   ("View a live store", "Access your files"). */
.btn.dark { background: var(--obsidian); color: #fff; }
.btn.dark:hover { background: var(--obsidian2); }
.btn.small { padding: 7px 14px; font-size: 0.85rem; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; }
.btn.danger { background: var(--surface); color: var(--signal-ink); border: 1.5px solid var(--line-strong); }

label { display: block; font-weight: 600; font-size: 0.9rem; margin: 12px 0 4px; }
input[type="text"], input[type="email"], input[type="password"], input[type="number"],
input[type="url"], input[type="tel"], input[type="file"], textarea, select {
  width: 100%; padding: 11px 12px;
  border: 1.5px solid var(--line); border-radius: 10px;
  font: 1rem "DM Sans", sans-serif; color: var(--plum); background: #fff;
}
input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid rgba(255, 77, 28, 0.32); border-color: var(--signal);
}
textarea { min-height: 90px; resize: vertical; }

.pill {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 700; text-transform: capitalize;
}
.pill.pending { background: #f7eccf; color: #7a5807; }
.pill.paid { background: var(--mint-tint); color: var(--green); }
.pill.processing { background: #e4ece7; color: #2c5647; }
.pill.delivered { background: var(--mint-tint); color: var(--green); }
.pill.cancelled, .pill.failed { background: #f6ded4; color: var(--signal-ink); }

/* Dashboard tabs — styled as a right-side rail further down (see section-rail) */

/* Money tiles */
.stat-grid {
  display: grid; gap: 10px; grid-template-columns: 1fr 1fr; margin-bottom: 14px;
}
@media (min-width: 640px) { .stat-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-grid.tight { grid-template-columns: 1fr; margin-bottom: 0; }
@media (min-width: 560px) { .stat-grid.tight { grid-template-columns: repeat(3, 1fr); } }
.stat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px; display: flex; flex-direction: column; gap: 2px;
}
.stat-label { font-size: 0.75rem; color: var(--muted); font-weight: 600; }
.stat-value {
  font-family: "Bricolage Grotesque", "DM Sans", sans-serif;
  font-size: 1.25rem; font-weight: 800; line-height: 1.2;
}
.stat-value.big { font-size: 1.9rem; color: var(--green); }
.stat-note { font-size: 0.72rem; color: var(--muted); }
.stat-link { font-size: 0.78rem; font-weight: 700; text-decoration: none; }

/* Signed amounts in ledger/sales rows */
.amount { font-weight: 800; white-space: nowrap; }
.amount.in { color: var(--green); }
.amount.out { color: var(--coral-ink); }

/* Per-product share link */
.link-row {
  display: flex; align-items: center; gap: 8px; margin-top: 6px; flex-wrap: wrap;
}
.link-row code {
  font-size: 0.75rem; color: var(--muted); word-break: break-all;
}

/* Slug editor */
.slug-field {
  display: flex; align-items: center; gap: 0; border: 1px solid var(--line);
  border-radius: 10px; background: #fff; overflow: hidden;
}
.slug-prefix {
  padding: 0 0 0 12px; font-size: 0.8rem; color: var(--muted);
  white-space: nowrap; max-width: 55%; overflow: hidden; text-overflow: ellipsis;
}
.slug-field input { border: 0; margin: 0; flex: 1; min-width: 0; }
.slug-field:focus-within { outline: 3px solid var(--coral); }

/* Checkout totals */
.totals {
  border-top: 1px solid var(--line); margin-top: 14px; padding-top: 10px;
}
.totals-row {
  display: flex; justify-content: space-between; padding: 3px 0; font-size: 0.9rem;
}
.totals-row.discount { color: var(--green); font-weight: 600; }
.totals-row.total {
  font-weight: 800; font-size: 1.05rem; border-top: 1px solid var(--line);
  margin-top: 6px; padding-top: 8px;
}

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

.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px; text-decoration: none; color: var(--plum); display: block;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.product-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.product-card .emoji { font-size: 2rem; line-height: 1; }
.product-card .cover {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  border-radius: 10px; margin-bottom: 10px; background: var(--blush);
}
.product-card h3 { margin: 8px 0 2px; font-size: 1.05rem; }
.price { font-weight: 800; color: var(--plum); }

.muted { color: var(--muted); }

/* Placeholder cover when a product has no image */
.product-card .cover-empty { display: flex; align-items: center; justify-content: center; }
.cover-empty svg { width: 40px; height: 40px; fill: none; stroke: var(--muted); stroke-width: 1.3; opacity: 0.5; }
/* Product thumbnail in the dashboard list */
.p-thumb {
  width: 40px; height: 40px; border-radius: 8px; overflow: hidden; flex: none;
  background: var(--blush); display: flex; align-items: center; justify-content: center;
}
.p-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Style picker (product form) ---- */
.style-picker { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 12px; }
@media (min-width: 520px) { .style-picker { grid-template-columns: repeat(4, 1fr); } }
.style-opt {
  text-align: left; background: #fff; border: 1.5px solid var(--line); border-radius: 12px;
  padding: 10px; cursor: pointer; display: flex; flex-direction: column; gap: 3px;
  font: inherit; color: var(--plum);
}
.style-opt b { font-size: 0.9rem; }
.style-opt small { color: var(--muted); font-size: 0.72rem; }
.style-opt.active { border-color: var(--coral); background: var(--blush); }
.style-opt:focus-visible { outline: 3px solid var(--coral); outline-offset: 2px; }
.style-preview { height: 38px; border-radius: 8px; background: var(--blush); display: flex; gap: 3px; padding: 6px; margin-bottom: 4px; }
.style-preview i { background: var(--line); border-radius: 3px; display: block; flex: 1; }
.sp-classic { flex-direction: column; }
.sp-editorial { flex-direction: row; }
.sp-minimal { justify-content: center; }
.sp-minimal i { flex: none; width: 42%; }
.sp-bold i:first-child { background: var(--coral); }

/* ---- Image manager (product form) ---- */
.image-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 10px; }
.image-grid:empty { display: none; }
.image-tile { position: relative; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); background: var(--blush); }
.image-tile > img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.image-cover-tag {
  position: absolute; top: 6px; left: 6px; background: var(--coral); color: #fff;
  font-size: 0.62rem; font-weight: 700; padding: 2px 7px; border-radius: 999px; text-transform: uppercase;
}
.image-tile-actions { display: flex; gap: 4px; padding: 6px; flex-wrap: wrap; }
.image-tile-actions .btn { flex: 1; padding: 5px 6px; font-size: 0.7rem; }

/* ---- Public product page (styles: classic / editorial / minimal / bold) ---- */
.pp { max-width: 1040px; margin: 0 auto; padding: 16px 20px 48px; }
.pp-back { display: inline-block; margin-bottom: 16px; font-weight: 600; text-decoration: none; }
.gallery-main { width: 100%; border-radius: 14px; background: var(--blush); display: block; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.gallery-thumb {
  width: 64px; height: 64px; border-radius: 10px; overflow: hidden; padding: 0; cursor: pointer;
  border: 2px solid transparent; background: var(--blush);
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumb.active { border-color: var(--coral); }
.gallery-thumb:focus-visible { outline: 3px solid var(--coral); }
.gallery-empty {
  aspect-ratio: 4 / 3; border-radius: 14px; background: var(--blush);
  display: flex; align-items: center; justify-content: center;
}
.gallery-empty svg { width: 68px; height: 68px; fill: none; stroke: var(--muted); stroke-width: 1.2; opacity: 0.5; }
.pp-name { font-size: clamp(1.6rem, 4vw, 2.2rem); letter-spacing: -0.02em; margin: 0 0 6px; }
.pp-price { font-size: 1.4rem; font-weight: 800; color: var(--plum); margin: 0 0 14px; }
.pp-desc { color: #5c4450; margin: 0 0 14px; }
.pp-desc p { margin: 0 0 10px; }
.pp-desc p:last-child { margin-bottom: 0; }
.pp-desc ul, .pp-desc ol { margin: 0 0 12px; padding-left: 22px; }
.pp-desc li { margin: 4px 0; }
.pp-desc strong { font-weight: 700; color: var(--plum); }
.pp-desc a { color: var(--coral-ink); text-decoration: underline; }

/* Description formatting toolbar + live preview (product form) */
.rt-toolbar { display: flex; gap: 6px; margin: 4px 0 6px; flex-wrap: wrap; }
.rt-btn {
  border: 1px solid var(--line); background: #fff; color: var(--plum);
  border-radius: 8px; padding: 5px 11px; font: 600 0.82rem "DM Sans", sans-serif;
  cursor: pointer; min-width: 34px;
}
.rt-btn:hover { border-color: var(--coral); background: var(--blush); }
.rt-btn:focus-visible { outline: 3px solid var(--coral); outline-offset: 2px; }
.rt-preview-wrap {
  margin-top: 8px; border: 1px dashed var(--line); border-radius: 10px;
  padding: 12px 14px; background: var(--blush);
}
.rt-preview-label {
  display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 6px;
}
.pp-note { color: var(--muted); font-size: 0.9rem; margin: 0 0 18px; }
.pp-buy-h { font-size: 1.15rem; margin: 0 0 12px; }

/* Primary CTA on the product page — opens the checkout sheet */
.buy-cta { margin-top: 4px; padding: 15px 20px; font-size: 1.05rem; }

/* Checkout sheet: bottom-sheet on mobile, centered dialog on desktop.
   Keeps the product page clean; the buy form lives in here. White
   surface (a money-touching screen — deliberately not warm-frost). */
.checkout-modal {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: flex-end; justify-content: center;
}
.checkout-modal[hidden] { display: none; }
.checkout-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(42, 18, 36, 0.55);
  opacity: 0; transition: opacity 0.24s ease;
}
.checkout-modal.open .checkout-modal-backdrop { opacity: 1; }
.checkout-panel {
  position: relative; z-index: 1;
  width: 100%; max-width: 460px;
  max-height: 92vh; overflow-y: auto;
  background: #fff; border-radius: 20px 20px 0 0;
  padding: 22px 20px calc(22px + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 40px rgba(42, 18, 36, 0.28);
  transform: translateY(100%);
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.checkout-modal.open .checkout-panel { transform: translateY(0); }
.checkout-close {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; color: var(--plum);
  font-size: 1.4rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.checkout-close:hover { background: var(--blush); }
.checkout-close:focus-visible { outline: 3px solid var(--coral); outline-offset: 2px; }
@media (min-width: 640px) {
  .checkout-modal { align-items: center; padding: 24px; }
  .checkout-panel {
    border-radius: var(--radius);
    box-shadow: 0 24px 60px rgba(42, 18, 36, 0.32);
    transform: translateY(14px) scale(0.98); opacity: 0;
    transition: transform 0.24s ease, opacity 0.24s ease;
  }
  .checkout-modal.open .checkout-panel { transform: none; opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .checkout-modal-backdrop, .checkout-panel { transition: none; }
}

/* Classic: stacked cards (the original look) */
.pp-classic { max-width: 640px; }
.pp-classic .pp-gallery, .pp-classic .pp-info {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px; box-shadow: var(--shadow);
}
.pp-classic .pp-gallery { margin-bottom: 16px; }
.pp-classic .pp-buy { border-top: 1px solid var(--line); margin-top: 18px; padding-top: 16px; }

/* Editorial: two columns, gallery + sticky info/buy */
@media (min-width: 860px) {
  .pp-editorial { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px; align-items: start; }
  .pp-editorial .pp-back { grid-column: 1 / -1; }
  .pp-editorial .pp-info { position: sticky; top: 20px; }
}
.pp-editorial .pp-name { font-size: clamp(1.8rem, 4.5vw, 3rem); }
.pp-editorial .pp-buy, .pp-minimal .pp-buy, .pp-bold .pp-buy {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px; box-shadow: var(--shadow); margin-top: 20px;
}

/* Minimal: centered, image-forward */
.pp-minimal { max-width: 560px; text-align: center; }
.pp-minimal .pp-back { display: block; text-align: left; }
.pp-minimal .pp-info { margin-top: 20px; }
.pp-minimal .gallery-thumbs { justify-content: center; }
.pp-minimal .pp-buy { text-align: left; }

/* Bold: oversized type, coral price pill */
.pp-bold { max-width: 820px; }
.pp-bold .pp-name { font-size: clamp(2.2rem, 8vw, 4rem); line-height: 1.02; }
.pp-bold .pp-price {
  display: inline-block; background: var(--coral); color: #fff;
  padding: 6px 18px; border-radius: 999px; font-size: 1.3rem;
}
.pp-bold .gallery-main, .pp-bold .gallery-empty { border-radius: 18px; }
.error-box {
  background: #fbe2dc; color: var(--coral-ink); border-radius: 10px;
  padding: 10px 14px; margin: 10px 0; font-size: 0.92rem; display: none;
}
.error-box.show { display: block; }
.success-box {
  background: #dcf3ea; color: var(--green); border-radius: 10px;
  padding: 10px 14px; margin: 10px 0; font-size: 0.92rem;
}

/* Transient action confirmation (JS `toast()`) */
.oja-toast {
  position: fixed; left: 50%; bottom: 26px; z-index: 1000;
  transform: translate(-50%, 16px); opacity: 0;
  background: var(--obsidian); color: #fff;
  padding: 12px 18px; border-radius: 999px;
  font: 600 0.9rem "DM Sans", sans-serif;
  box-shadow: 0 14px 34px rgba(16,20,18,0.3);
  display: flex; align-items: center; gap: 8px;
  max-width: calc(100vw - 32px);
  transition: opacity 0.24s ease, transform 0.24s ease;
  pointer-events: none;
}
.oja-toast::before { content: "✓"; color: var(--mint); font-weight: 800; }
.oja-toast.err { background: var(--signal-ink); }
.oja-toast.err::before { content: "!"; color: #fff; }
.oja-toast.show { opacity: 1; transform: translate(-50%, 0); }
@media (prefers-reduced-motion: reduce) { .oja-toast { transition: opacity 0.24s ease; transform: translate(-50%, 0); } }

/* Inline text button that looks like a link */
.linkish { border: 0; background: none; padding: 0; margin: 0; cursor: pointer; color: var(--signal-ink); font: inherit; font-weight: 700; text-decoration: underline; }

/* Seller wallet balance */
.wallet-balance { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 14px 16px; background: var(--bone); border: 1px solid var(--line); border-radius: 12px; }
.wallet-balance b { font-family: "Bricolage Grotesque", sans-serif; font-size: 1.8rem; letter-spacing: -0.02em; }

/* Explore page featured badge */
.xp-badge { display: inline-block; align-self: flex-start; background: var(--mint-tint); color: var(--green); font-weight: 800; font-size: 0.72rem; letter-spacing: 0.02em; padding: 3px 9px; border-radius: 999px; margin-bottom: 6px; }

/* 2FA enrolment */
.tfa-qr { width: 180px; height: 180px; margin: 10px 0; }
.tfa-qr svg { width: 100%; height: 100%; display: block; }
.tfa-secret { background: var(--bone); border: 1px solid var(--line); border-radius: 8px; padding: 4px 8px; font-size: 0.9rem; letter-spacing: 0.06em; word-break: break-all; }
.field-2fa { margin-top: 4px; }

/* App dialog (JS `Dialog.confirm/alert/prompt`) — replaces native browser dialogs */
.oja-dialog-overlay {
  position: fixed; inset: 0; z-index: 1100;
  display: flex; align-items: center; justify-content: center;
  padding: 20px; background: rgba(16,20,18,0.55);
  opacity: 0; transition: opacity 0.18s ease;
}
.oja-dialog-overlay.show { opacity: 1; }
.oja-dialog {
  width: 100%; max-width: 420px;
  background: var(--surface); color: var(--plum);
  border-radius: 18px; padding: 24px;
  box-shadow: 0 30px 70px rgba(16,20,18,0.4);
  transform: translateY(8px) scale(0.98); transition: transform 0.18s ease;
}
.oja-dialog-overlay.show .oja-dialog { transform: translateY(0) scale(1); }
.oja-dialog-title { font-family: "Bricolage Grotesque", sans-serif; font-size: 1.25rem; letter-spacing: -0.02em; margin: 0 0 8px; }
.oja-dialog-msg { color: #3f3b34; line-height: 1.55; margin: 0 0 18px; }
.oja-dialog-input { width: 100%; margin: 0 0 18px; }
.oja-dialog-actions { display: flex; justify-content: flex-end; gap: 10px; }
.oja-dialog-actions .btn { min-width: 96px; }
@media (prefers-reduced-motion: reduce) {
  .oja-dialog-overlay, .oja-dialog { transition: opacity 0.18s ease; }
  .oja-dialog { transform: none; }
}

.order-row {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  justify-content: space-between; padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.order-row:last-child { border-bottom: 0; }

.share-box {
  display: flex; gap: 8px; align-items: center;
  background: var(--blush); border-radius: 10px; padding: 10px 12px;
}
.share-box code { font-size: 0.85rem; word-break: break-all; flex: 1; }

.seg {
  display: flex; background: var(--blush); border-radius: 999px; padding: 4px; gap: 4px;
}
.seg button {
  flex: 1; border: 0; background: transparent; padding: 9px 8px;
  border-radius: 999px; font: 600 0.9rem "DM Sans", sans-serif;
  color: var(--muted); cursor: pointer;
}
.seg button.active { background: var(--plum); color: #fff; }
.seg button:focus-visible { outline: 3px solid var(--coral); }

.hero { text-align: center; padding: 48px 16px 24px; }
.hero h1 { font-size: clamp(2rem, 6vw, 3rem); letter-spacing: -0.03em; }
.hero p { color: var(--muted); max-width: 420px; margin: 0 auto 24px; }

.asset-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; padding: 8px 0; border-bottom: 1px dashed var(--line);
  font-size: 0.92rem;
}
.asset-row:last-child { border-bottom: 0; }

footer.site { text-align: center; color: var(--muted); font-size: 0.85rem; padding: 24px; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* ---- Right-side vertical section menu (scrollspy) + app nav rail ----
   Shared visual language: a frosted pill of items, each a dot + label.
   Desktop: fixed to the right, vertically centred. Mobile/tablet: collapses
   to a bottom tab bar (≤5 items, thumb-reachable). Smooth-scroll only when the
   viewer allows motion; the global reduced-motion rule above kills the rest. */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
/* keep an anchored heading clear of the fixed topbar when jumped to */
[data-rail-target] { scroll-margin-top: 88px; }

.section-rail {
  position: fixed; z-index: 45; top: 50%; right: 20px; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 2px; align-items: stretch;
  padding: 8px; border-radius: 22px; margin: 0; max-width: none; overflow: visible;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid var(--line); box-shadow: 0 10px 34px rgba(42, 18, 36, 0.16);
}

.rail-item {
  display: flex; align-items: center; gap: 9px; flex: none;
  padding: 8px 14px 8px 12px; border-radius: 999px;
  text-decoration: none; color: var(--muted); white-space: nowrap;
  font: 700 0.82rem "DM Sans", sans-serif; text-align: left;
  transition: color 0.15s ease, background 0.15s ease;
}
.rail-item:hover { color: var(--plum); background: rgba(255, 90, 54, 0.08); }
.rail-item:focus-visible { outline: 3px solid var(--coral); outline-offset: 2px; }

.rail-dot {
  width: 8px; height: 8px; border-radius: 999px; background: var(--line); flex: none;
  transition: background 0.15s ease, transform 0.15s ease;
}
.rail-item:hover .rail-dot { background: var(--coral); }
.rail-item.active { color: var(--plum); background: var(--blush); }
.rail-item.active .rail-dot { background: var(--coral); transform: scale(1.4); }

/* Desktop side rail only where the centred content leaves room beside it;
   below that it becomes a bottom bar. */
@media (max-width: 1199.98px) {
  .section-rail {
    top: auto; right: 12px; left: 12px; bottom: 12px; transform: none;
    flex-direction: row; border-radius: 999px; padding: 6px;
  }
  .section-rail .rail-item {
    flex: 1; flex-direction: column; gap: 4px; padding: 7px 4px;
    justify-content: center; text-align: center; font-size: 0.7rem;
  }
  body.has-rail { padding-bottom: 84px; }
}

/* ===== Seller back-office: fixed left sidebar + main column (warm brand) ===== */
.admin-shell { display: flex; min-height: 100vh; align-items: stretch; }

.sidebar {
  position: fixed; top: 0; left: 0; bottom: 0; width: 250px; z-index: 60;
  display: flex; flex-direction: column;
  background: var(--obsidian); border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 12px; overflow-y: auto;
}
.side-brand {
  display: flex; align-items: center; gap: 11px; padding: 4px 8px 14px;
  text-decoration: none; color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08); margin-bottom: 8px;
}
.side-logo {
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  background: var(--signal); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.side-logo svg { width: 23px; height: 23px; display: block; }
.side-brand-text { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.side-brand-text b {
  font-family: "Bricolage Grotesque", sans-serif; font-size: 1.05rem;
  letter-spacing: -0.02em; text-transform: lowercase;
}
.side-brand-text small {
  color: rgba(244, 240, 231, 0.6); font-size: 0.78rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 160px;
}

.side-nav { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.side-group {
  font-size: 0.67rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(244, 240, 231, 0.42); margin: 15px 11px 5px;
}
.side-link {
  display: flex; align-items: center; gap: 11px; padding: 9px 11px;
  border-radius: 10px; text-decoration: none; color: rgba(244, 240, 231, 0.74);
  font: 600 0.92rem "DM Sans", sans-serif; white-space: nowrap;
  border: 0; background: transparent; width: 100%; text-align: left; cursor: pointer;
  transition: background 0.14s ease, color 0.14s ease;
}
.side-badge {
  margin-left: auto; min-width: 20px; height: 20px; padding: 0 6px;
  border-radius: 999px; background: var(--signal); color: #fff;
  font: 800 0.72rem "DM Sans", sans-serif; display: inline-flex;
  align-items: center; justify-content: center;
}
.side-link svg {
  width: 19px; height: 19px; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.side-link:hover { background: rgba(255, 255, 255, 0.06); color: #fff; }
.side-link:focus-visible { outline: 3px solid var(--signal); outline-offset: 2px; }
.side-link.on { background: rgba(255, 77, 28, 0.16); color: #fff; font-weight: 700; }
.side-link.on svg { stroke: var(--signal); }

.side-foot {
  display: flex; flex-direction: column; gap: 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 10px; margin-top: 8px;
}
.side-signout:hover { background: rgba(255, 77, 28, 0.16); color: var(--signal); }

.admin-main {
  flex: 1; min-width: 0; margin-left: 250px;
  padding: 20px clamp(16px, 3vw, 34px) 56px;
}
.admin-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.admin-title { font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 0; flex: 1; }
.admin-actions { display: flex; gap: 8px; flex: none; }
.admin-burger { display: none; }
.side-scrim { display: none; }

/* Stat cards */
.admin-cards {
  display: grid; gap: 14px; margin-bottom: 18px;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
}
.acard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 6px;
}
.acard-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
}
.acard-value {
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 800;
  font-size: clamp(1.4rem, 4.5vw, 1.85rem);
  line-height: 1.05; color: var(--plum); letter-spacing: -0.01em;
}
.acard-note { font-size: 0.74rem; color: var(--muted); }
.acard-link { font-size: 0.76rem; font-weight: 700; text-decoration: none; color: var(--coral-ink); }
.acard.accent { border-color: rgba(18, 128, 90, 0.4); background: var(--mint-tint); }
.acard.accent .acard-value { color: var(--green); }
.acard.accent .acard-label { color: var(--green); }

/* Two-column panels (quick actions + how it works) */
.admin-cols { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .admin-cols { grid-template-columns: 1.25fr 1fr; } }
.panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; box-shadow: var(--shadow);
}
.panel-h {
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 14px;
}
.qa-list { display: flex; flex-direction: column; gap: 8px; }
.qa {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  border: 1px solid var(--line); border-radius: 12px; text-decoration: none;
  color: var(--plum); font-weight: 700; background: #fff;
  transition: border-color 0.14s ease, transform 0.1s ease, background 0.14s ease;
}
.qa:hover { border-color: var(--coral); background: var(--blush); transform: translateX(3px); }
.qa .qa-arrow { color: var(--coral); font-weight: 800; font-size: 1.1rem; }

.rank {
  width: 26px; height: 26px; border-radius: 999px; flex: none;
  background: var(--blush); color: var(--coral-ink);
  display: inline-flex; align-items: center; justify-content: center;
  font: 800 0.85rem "Bricolage Grotesque", sans-serif;
}

.how-list { list-style: none; margin: 0; padding: 0; counter-reset: how; display: flex; flex-direction: column; gap: 16px; }
.how-list li { display: flex; gap: 12px; align-items: flex-start; color: #5c4450; font-size: 0.95rem; line-height: 1.5; }
.how-list li::before {
  counter-increment: how; content: counter(how);
  width: 26px; height: 26px; border-radius: 999px; flex: none;
  background: var(--blush); color: var(--coral-ink);
  display: flex; align-items: center; justify-content: center;
  font: 800 0.85rem "Bricolage Grotesque", sans-serif;
}

/* Data table (superadmin stores list) */
.table-scroll { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; min-width: 660px; }
.admin-table th {
  text-align: left; font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); font-weight: 700; padding: 0 12px 10px; border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.admin-table td { padding: 12px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: 0; }
.admin-table .num, .admin-table th.num { text-align: right; white-space: nowrap; }
.admin-table .actions { white-space: nowrap; text-align: right; }
.admin-table .actions .btn { margin-left: 6px; }
.tag {
  display: inline-block; background: var(--blush); color: var(--coral-ink);
  border-radius: 999px; font-size: 0.66rem; font-weight: 700; padding: 2px 8px;
  text-transform: uppercase; letter-spacing: 0.04em; vertical-align: middle;
}

/* Mobile: sidebar becomes an off-canvas drawer */
@media (max-width: 899.98px) {
  .sidebar {
    transform: translateX(-100%); transition: transform 0.22s ease;
    box-shadow: 0 0 46px rgba(42, 18, 36, 0.35);
  }
  body.side-open .sidebar { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .admin-burger {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 11px; border: 1px solid var(--line);
    background: #fff; color: var(--plum); cursor: pointer; flex: none; padding: 0;
  }
  .admin-burger svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
  .admin-burger:focus-visible { outline: 3px solid var(--coral); outline-offset: 2px; }
  .side-scrim {
    display: block; position: fixed; inset: 0; z-index: 55;
    background: rgba(42, 18, 36, 0.42);
    opacity: 0; pointer-events: none; transition: opacity 0.22s ease;
  }
  body.side-open .side-scrim { opacity: 1; pointer-events: auto; }
}

/* ---- Landing page (Selar-style: plum drench hero, clean white sections) ----
   Contrast: white on plum ~19:1; gold #E7A93B on plum ~8:1; #e8d5e1 body on
   plum ~13:1. On white: plum body ✓, .soft #5c4450 ✓ (7:1). */

.hero-band {
  background: var(--plum);
  background-image:
    radial-gradient(circle 3px at 12% 18%, rgba(255, 90, 54, 0.55) 3px, transparent 4px),
    radial-gradient(circle 3px at 85% 12%, rgba(231, 169, 59, 0.55) 3px, transparent 4px),
    radial-gradient(circle 2px at 70% 40%, rgba(252, 239, 233, 0.35) 2px, transparent 3px),
    radial-gradient(circle 3px at 25% 65%, rgba(231, 169, 59, 0.45) 3px, transparent 4px),
    radial-gradient(circle 2px at 92% 60%, rgba(255, 90, 54, 0.5) 2px, transparent 3px),
    radial-gradient(circle 2px at 45% 15%, rgba(252, 239, 233, 0.3) 2px, transparent 3px);
  color: #fff;
}

.land-hero {
  max-width: 780px; margin: 0 auto; text-align: center;
  padding: clamp(48px, 8vw, 88px) 20px 0;
}
.hero-kicker {
  font: 700 0.82rem "DM Sans", sans-serif; letter-spacing: 0.14em;
  text-transform: uppercase; color: #d9c3d2; margin: 0 0 18px;
}
.hero-kicker b { color: var(--gold); }
.land-hero h1 {
  color: #fff; font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 800; letter-spacing: -0.02em; text-wrap: balance;
  margin: 0 0 16px;
}
.hero-sub {
  color: #e8d5e1; font-size: 1.05rem; max-width: 54ch; margin: 0 auto 26px;
}
.land-cta-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.btn.paper { background: #fff; color: var(--plum); }
.btn.paper:hover { background: var(--blush); }
.btn.ghost-light {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}
.btn.ghost-light:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }
.hero-hint { color: #d9c3d2; font-size: 0.88rem; margin: 16px 0 0; }

/* Browser-framed store demo, overlapping the fold like a real screenshot */
.browser-mock {
  position: relative;
  width: min(560px, 92vw);
  margin: clamp(36px, 6vw, 56px) auto -72px;
  background: #fff; border-radius: 14px;
  box-shadow: 0 30px 70px rgba(42, 18, 36, 0.45);
  text-align: left;
  color: var(--plum); /* the hero band sets white; the card must not inherit it */
}
.browser-bar {
  display: flex; align-items: center; gap: 10px;
  background: var(--blush); border-radius: 14px 14px 0 0;
  padding: 10px 14px; border-bottom: 1px solid var(--line);
}
.browser-dots { display: flex; gap: 5px; }
.browser-dots i {
  width: 10px; height: 10px; border-radius: 999px; display: block;
}
.browser-dots i:nth-child(1) { background: var(--coral); }
.browser-dots i:nth-child(2) { background: var(--gold); }
.browser-dots i:nth-child(3) { background: var(--green); }
.browser-url {
  flex: 1; background: #fff; border-radius: 999px;
  font-size: 0.78rem; color: var(--muted); padding: 5px 12px;
  border: 1px solid var(--line);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.mock-store { padding: 20px; }
.mock-head { display: flex; flex-direction: column; margin-bottom: 8px;
  font-family: "Bricolage Grotesque", sans-serif; font-size: 1.1rem; }
.mock-head .muted { font-size: 0.8rem; font-family: "DM Sans", sans-serif; }
.mock-row {
  display: flex; justify-content: space-between; gap: 10px;
  padding: 11px 0; border-bottom: 1px dashed var(--line); font-size: 0.95rem;
}
.mock-row:last-child { border-bottom: 0; }
.mock-price { font-weight: 800; }
.mock-toast {
  position: absolute; right: -10px; bottom: -16px;
  background: var(--green); color: #fff; font-weight: 700; font-size: 0.88rem;
  padding: 10px 16px; border-radius: 999px;
  box-shadow: 0 12px 28px rgba(14, 20, 18, 0.4);
}

/* Sections */
.soft { color: #5c4450; }
.land-section { max-width: var(--ln-w); margin: 0 auto; padding: clamp(44px, 8vw, 84px) var(--ln-pad); }
.land-section.first-after-hero { padding-top: clamp(110px, 14vw, 140px); }
.land-h {
  text-align: center; font-size: clamp(1.6rem, 4vw, 2.3rem);
  letter-spacing: -0.02em; margin-bottom: 12px; text-wrap: balance;
}
.land-sub {
  text-align: center; max-width: 56ch; margin: 0 auto 36px;
}

/* Category grid ("sell anything") */
.cat-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.cat {
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 22px;
}
.cat .cat-icon { font-size: 1.7rem; line-height: 1; margin-bottom: 10px; display: block; }
.cat h3 { font-size: 1.08rem; margin: 0 0 6px; }
.cat p { margin: 0; font-size: 0.93rem; }

/* Steps (clean, centered) */
.steps { display: grid; gap: 28px; text-align: center; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step h3 { font-size: 1.1rem; margin: 14px 0 6px; }
.step p { margin: 0 auto; font-size: 0.95rem; max-width: 34ch; }
.step-num {
  width: 46px; height: 46px; border-radius: 999px; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font: 800 1.3rem "Bricolage Grotesque", sans-serif;
  margin: 0 auto;
}

/* Alternating feature banners */
.banner {
  display: grid; gap: 28px; align-items: center;
  background: #fff; border: 1.5px solid var(--line);
  border-radius: 20px; padding: clamp(24px, 5vw, 44px);
  margin-bottom: 22px;
}
.banner > * { min-width: 0; } /* let nowrap pills truncate instead of widening the grid */
@media (min-width: 760px) {
  .banner { grid-template-columns: 1.2fr 1fr; }
  .banner.flip .banner-visual { order: -1; }
}
.banner h3 { font-size: clamp(1.3rem, 3vw, 1.7rem); letter-spacing: -0.01em; margin: 0 0 10px; }
.banner p { margin: 0 0 8px; }
.banner-visual {
  display: flex; align-items: center; justify-content: center;
  min-height: 150px; border-radius: 14px;
}
.banner-visual.naira {
  background: var(--coral);
  color: #fff; font: 800 clamp(3.5rem, 8vw, 5rem) "Bricolage Grotesque", sans-serif;
}
.banner-visual.delivery { background: var(--blush); flex-direction: column; gap: 10px; padding: 20px; }
.link-pill {
  background: #fff; border: 1.5px solid var(--line); border-radius: 999px;
  font-size: 0.82rem; color: var(--plum); padding: 8px 16px;
  box-shadow: var(--shadow); white-space: nowrap; overflow: hidden;
  text-overflow: ellipsis; max-width: 100%;
}
.link-pill.expired { color: var(--muted); text-decoration: line-through; }

/* Final CTA band (full-bleed plum, confetti like the hero) */
.cta-band {
  background: var(--plum);
  background-image:
    radial-gradient(circle 3px at 15% 25%, rgba(255, 90, 54, 0.5) 3px, transparent 4px),
    radial-gradient(circle 2px at 80% 20%, rgba(231, 169, 59, 0.5) 2px, transparent 3px),
    radial-gradient(circle 3px at 60% 75%, rgba(252, 239, 233, 0.3) 3px, transparent 4px),
    radial-gradient(circle 2px at 30% 80%, rgba(231, 169, 59, 0.4) 2px, transparent 3px);
  color: #fff; text-align: center;
  padding: clamp(56px, 9vw, 96px) 20px;
}
.cta-band h2 {
  color: #fff; font-size: clamp(1.8rem, 5vw, 2.8rem);
  letter-spacing: -0.02em; text-wrap: balance; margin: 0 0 10px;
}
.cta-band p { color: #e8d5e1; max-width: 46ch; margin: 0 auto 26px; }
.cta-band .cta-trust { font-size: 0.85rem; color: #cdb3c4; margin-top: 26px; }

/* Landing footer columns */
.land-footer {
  max-width: 980px; margin: 0 auto;
  display: grid; gap: 28px; padding: 44px 20px 8px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.land-footer h4 { font-size: 0.95rem; margin: 0 0 10px; }
.land-footer ul { list-style: none; margin: 0; padding: 0; }
.land-footer li { margin-bottom: 8px; }
.land-footer a { color: #5c4450; text-decoration: none; font-size: 0.92rem; }
.land-footer a:hover { color: var(--coral-ink); text-decoration: underline; }

/* ============================================================
   Landing — Concept A "Oja Signal" (image-4 layout)
   ============================================================ */

/* Top nav — sits on the obsidian hero, seamless dark top */
.ln-nav {
  display: flex; align-items: center; gap: 20px;
  background: var(--obsidian); color: #fff;
  /* Full-bleed dark bar, but items line up with the page's content column. */
  padding: 16px max(var(--ln-pad), calc((100% - var(--ln-w)) / 2 + var(--ln-pad)));
}
.ln-nav .brand { color: #fff; }
.ln-links { display: flex; gap: 22px; flex: 1; }
.ln-links a { color: rgba(244,240,231,0.8); text-decoration: none; font-weight: 600; font-size: 0.92rem; }
.ln-links a:hover { color: #fff; }
.ln-nav-cta { display: flex; align-items: center; gap: 16px; flex: none; }
.ln-signin { color: #fff; text-decoration: none; font-weight: 600; font-size: 0.92rem; }
@media (max-width: 820px) { .ln-links { display: none; } }

/* Hero — two column on the obsidian band */
.ln-hero-band { padding: 0; }
.hero-band {
  background: var(--obsidian);
  background-image:
    radial-gradient(circle 3px at 12% 22%, rgba(255,77,28,0.55) 3px, transparent 4px),
    radial-gradient(circle 3px at 88% 14%, rgba(155,226,143,0.4) 3px, transparent 4px),
    radial-gradient(circle 2px at 70% 46%, rgba(244,240,231,0.28) 2px, transparent 3px),
    radial-gradient(circle 3px at 24% 70%, rgba(255,77,28,0.4) 3px, transparent 4px),
    radial-gradient(circle 2px at 93% 66%, rgba(155,226,143,0.4) 2px, transparent 3px);
}
.ln-hero {
  max-width: var(--ln-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center;
  padding: clamp(40px, 7vw, 80px) var(--ln-pad) clamp(48px, 8vw, 90px);
}
@media (min-width: 900px) { .ln-hero { grid-template-columns: minmax(0, 43%) minmax(0, 57%); gap: 48px; } }
@media (min-width: 1440px) { .ln-hero { gap: 56px; } }
.ln-hero-copy { text-align: left; }
.ln-h1 {
  color: #fff; font-size: clamp(2.4rem, 6.2vw, 4rem);
  font-weight: 800; letter-spacing: -0.035em; line-height: 1.02; margin: 14px 0 18px;
}
.ln-h1 .hl { color: var(--signal); }
.ln-hero .hero-kicker { margin: 0; color: rgba(244,240,231,0.7); }
.ln-hero .hero-sub { color: rgba(244,240,231,0.82); margin: 0 0 26px; font-size: 1.08rem; max-width: 46ch; }
.ln-cta-row { justify-content: flex-start; }
.btn.ln-outline {
  background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.4);
}
.btn.ln-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.ln-chips { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 22px; }
.ln-chip { display: inline-flex; align-items: center; gap: 7px; color: rgba(244,240,231,0.72); font-size: 0.86rem; font-weight: 600; }
.ln-chip i { color: var(--mint); font-style: normal; }

/* Hero dashboard mock */
.ln-hero-mock { min-width: 0; }
.ln-mock { width: 100%; margin: 0; box-shadow: 0 40px 90px rgba(0,0,0,0.5); }
.ln-mock-body { display: flex; min-height: 260px; }
.ln-mock-side {
  width: 74px; flex: none; background: var(--obsidian); padding: 14px 12px;
  display: flex; flex-direction: column; gap: 10px; border-radius: 0 0 0 14px;
}
.ln-mock-logo { width: 30px; height: 30px; border-radius: 8px; background: var(--signal); display: flex; align-items: center; justify-content: center; }
.ln-mock-logo svg { width: 19px; height: 19px; }
.ln-mock-nav { height: 9px; border-radius: 999px; background: rgba(255,255,255,0.12); }
.ln-mock-nav.on { background: var(--signal); }
.ln-mock-main { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 14px; }
.ln-mock-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ln-mock-stat { border: 1px solid var(--line); border-radius: 10px; padding: 10px; display: flex; flex-direction: column; }
.ln-mock-stat b { font-family: "Bricolage Grotesque", sans-serif; font-size: 1rem; }
.ln-mock-stat span { font-size: 0.66rem; color: var(--muted); }
.ln-mock-stat.pos { background: var(--mint-tint); border-color: rgba(18,128,90,0.3); }
.ln-mock-stat.pos b { color: var(--green); }
.ln-mock-chart { flex: 1; border: 1px solid var(--line); border-radius: 10px; padding: 10px; min-height: 90px; }
.ln-mock-chart svg { width: 100%; height: 90px; display: block; }

/* Paystack trust strip */
.ln-paystrip { background: var(--obsidian2); color: #fff; }
.ln-paystrip-in {
  max-width: var(--ln-w); margin: 0 auto; padding: 16px var(--ln-pad);
  display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between;
  font-size: 0.9rem;
}
.ln-pay-eyebrow { color: rgba(244,240,231,0.55); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.68rem; font-weight: 700; margin-right: 8px; }
.ln-pay-left b { color: #fff; }
.ln-pay-cards { color: rgba(244,240,231,0.6); margin-left: 8px; }
.ln-pay-note { color: rgba(244,240,231,0.78); }

/* Section heads with eyebrow + left alignment */
.ln-eyebrow { font: 700 0.72rem "DM Sans", sans-serif; letter-spacing: 0.12em; text-transform: uppercase; color: var(--signal-ink); margin: 0 0 12px; }
.ln-eyebrow.on-dark { color: var(--signal); }
.land-h.ln-left { text-align: left; }
.ln-sec-head { display: grid; gap: 12px 40px; align-items: end; margin-bottom: 32px; }
@media (min-width: 820px) { .ln-sec-head { grid-template-columns: 1.4fr 1fr; } }
.ln-sec-sub { margin: 0; }
.land-section { max-width: var(--ln-w); }

/* Flow (4 steps) */
.ln-flow { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.ln-flow-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.ln-flow-num { width: 34px; height: 34px; border-radius: 999px; background: var(--bone); color: var(--signal-ink); display: flex; align-items: center; justify-content: center; font: 800 1rem "Bricolage Grotesque", sans-serif; margin-bottom: 14px; border: 1px solid var(--line); }
.ln-flow-card h3 { font-size: 1.1rem; margin: 0 0 6px; }
.ln-flow-card p { margin: 0; font-size: 0.92rem; }

/* Dark product strip */
.ln-dark { background: var(--obsidian); color: #fff; }
.ln-dark-in { max-width: var(--ln-w); margin: 0 auto; padding: clamp(48px,8vw,84px) var(--ln-pad); }
.ln-dark-h { color: #fff; font-size: clamp(1.6rem,4vw,2.3rem); letter-spacing: -0.025em; margin: 0; }
.ln-dark-sub { color: rgba(244,240,231,0.7); margin: 0; }
.ln-prod-row { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.ln-prod { text-decoration: none; color: #fff; display: flex; flex-direction: column; gap: 6px; }
.ln-prod-cover {
  aspect-ratio: 3/4; border-radius: 12px; padding: 16px; display: flex; align-items: flex-end;
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 1.05rem; line-height: 1.1;
  color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,0.4); box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.ln-prod b { font-family: "DM Sans", sans-serif; font-size: 0.92rem; margin-top: 6px; }
.ln-prod-meta { color: rgba(244,240,231,0.6); font-size: 0.8rem; }
.ln-prod-cover.c1 { background: linear-gradient(150deg,#14382e,#0c2620); }
.ln-prod-cover.c2 { background: linear-gradient(150deg,#c9776a,#8f463c); }
.ln-prod-cover.c3 { background: linear-gradient(150deg,#e0c8a0,#b08a52); color: var(--obsidian); text-shadow: none; }
.ln-prod-cover.c4 { background: linear-gradient(150deg,#1b211d,#0c0f0d); }
.ln-prod-cover.c5 { background: linear-gradient(150deg,#7a1f12,#3a0d07); }
.ln-prod-cover.c6 { background: linear-gradient(150deg,#e8d7c0,#c2a06e); color: var(--obsidian); text-shadow: none; }

/* Feature grid */
.ln-feat-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); margin: 8px 0 22px; }
.ln-feat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.ln-feat-ic { font-size: 1.5rem; display: block; margin-bottom: 10px; }
.ln-feat h3 { font-size: 1.05rem; margin: 0 0 6px; }
.ln-feat p { margin: 0; font-size: 0.92rem; }

/* Two-up cards (settlement + security) */
.ln-two { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 820px) { .ln-two { grid-template-columns: 1fr 1fr; } }
.ln-two-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.ln-two-card h3 { font-size: 1.2rem; margin: 0 0 6px; }
.ln-mini-ledger { list-style: none; margin: 16px 0; padding: 0; }
.ln-mini-ledger li { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 0.95rem; }
.ln-mini-ledger li.tot { border-bottom: 0; border-top: 1.5px solid var(--line); font-weight: 700; }
.ln-mini-ledger .neg { color: var(--signal-ink); }
.ln-mini-ledger .pos { color: var(--green); }
.ln-settle-note { display: flex; gap: 8px; align-items: flex-start; background: var(--mint-tint); border-radius: 12px; padding: 12px 14px; font-size: 0.88rem; margin: 0; }
.ln-dot-ok { color: var(--green); font-weight: 800; }
.ln-check { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.ln-check li { position: relative; padding-left: 28px; font-size: 0.95rem; }
.ln-check li::before { content: "✓"; position: absolute; left: 0; top: -1px; color: var(--green); font-weight: 800; }

/* Pricing */
.ln-price-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.ln-price-list li { position: relative; padding-left: 26px; font-size: 0.95rem; }
.ln-price-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }

/* FAQ */
.ln-faq { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .ln-faq { grid-template-columns: 1fr 1fr; } }
.ln-faq details { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 4px 18px; }
.ln-faq summary { cursor: pointer; font-weight: 700; padding: 14px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.ln-faq summary::-webkit-details-marker { display: none; }
.ln-faq summary::after { content: "+"; color: var(--signal); font-size: 1.4rem; font-weight: 400; line-height: 1; }
.ln-faq details[open] summary::after { content: "\2013"; }
.ln-faq p { margin: 0 0 16px; font-size: 0.93rem; }

/* CTA band — signal orange (matches reference) */
.cta-band.ln-cta-band { background: var(--signal); background-image: none; text-align: left; }
.ln-cta-in { max-width: var(--ln-w); margin: 0 auto; display: grid; gap: 24px; align-items: center; }
@media (min-width: 820px) { .ln-cta-in { grid-template-columns: 1.4fr 1fr; } }
.ln-cta-band h2 { color: #fff; }
.ln-cta-band p { color: rgba(255,255,255,0.9); margin: 0; max-width: 42ch; }
.ln-cta-eyebrow { font: 700 0.72rem "DM Sans", sans-serif; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.75); margin: 0 0 10px; }
.ln-cta-actions { justify-content: flex-start; }
.cta-band.ln-cta-band .btn.paper { background: #fff; color: var(--signal-ink); }
.cta-band.ln-cta-band .btn.ghost-light { border-color: rgba(255,255,255,0.6); }

/* Footer */
.ln-footer { max-width: var(--ln-w); grid-template-columns: 2fr repeat(3, 1fr); padding-top: clamp(40px,6vw,64px); }
@media (max-width: 700px) { .ln-footer { grid-template-columns: 1fr 1fr; } }
.ln-foot-brand .brand { color: var(--obsidian); margin-bottom: 8px; }
.ln-foot-brand p { margin: 0; }

/* ============================================================
   Public store surfaces — storefront + product (Concept A)
   ============================================================ */
.st-nav { position: sticky; top: 0; z-index: 50; }
.brand-mark.sm { width: 20px; height: 20px; border-radius: 6px; }
.brand-mark.sm svg { width: 13px; height: 13px; }

/* Shared initial-letter avatar */
.sf-avatar {
  width: 104px; height: 104px; border-radius: 999px; flex: none;
  background: var(--obsidian); color: var(--bone);
  display: inline-flex; align-items: center; justify-content: center;
  font: 800 2.6rem "Bricolage Grotesque", sans-serif;
}
.sf-avatar.lg { width: 120px; height: 120px; font-size: 3rem; }
.sf-avatar.xl { width: 150px; height: 150px; font-size: 3.6rem; border-radius: 18px; }

/* Storefront header */
.sf-head { background: var(--bone); border-bottom: 1px solid var(--line); }
.sf-head-in {
  max-width: var(--ln-w); margin: 0 auto; padding: clamp(28px,5vw,52px) var(--ln-pad);
  display: grid; gap: 36px; align-items: center; grid-template-columns: 1fr;
}
@media (min-width: 900px) { .sf-head-in { grid-template-columns: 1fr 1.1fr; } }
.sf-id { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.sf-powered {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: 4px 12px 4px 6px; font-size: 0.74rem; font-weight: 700; color: var(--muted);
}
.sf-name { font-family: "Bricolage Grotesque", sans-serif; font-size: clamp(2rem,4.5vw,3rem); letter-spacing: -0.03em; margin: 8px 0 0; line-height: 1.02; }
.sf-handle { color: var(--muted); margin: 2px 0 10px; font-size: 0.95rem; }
.sf-bio { color: #4a463d; max-width: 42ch; margin: 0 0 14px; }
.sf-socials { display: flex; gap: 8px; margin-bottom: 16px; }
.sf-social { width: 36px; height: 36px; border-radius: 99px; border: 1px solid var(--line); background: var(--surface); display: inline-flex; align-items: center; justify-content: center; color: var(--muted); cursor: pointer; text-decoration: none; font-size: 0.95rem; }
.sf-social:hover { color: var(--plum); border-color: var(--line-strong); }
.sf-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.sf-copy-btn { padding-left: 12px; padding-right: 12px; }

/* Featured product — dark horizontal card */
.sf-feature {
  display: grid; grid-template-columns: 1fr; text-decoration: none; color: #fff;
  background: var(--obsidian); border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(16,20,18,0.3); position: relative;
  background-image: radial-gradient(circle 2px at 88% 20%, rgba(255,77,28,0.4) 2px, transparent 3px);
}
@media (min-width: 560px) { .sf-feature { grid-template-columns: 1.1fr 0.9fr; } }
.sf-feature-body { padding: clamp(20px,3vw,30px); display: flex; flex-direction: column; align-items: flex-start; }
.sf-feature-tag { color: var(--signal); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.sf-feature-name { font-family: "Bricolage Grotesque", sans-serif; font-size: clamp(1.4rem,2.6vw,2rem); letter-spacing: -0.02em; line-height: 1.05; }
.sf-feature-desc { color: rgba(244,240,231,0.72); font-size: 0.9rem; margin: 10px 0 0; }
.sf-feature-cta { margin: 16px 0 14px; }
.sf-feature-meta { color: rgba(244,240,231,0.6); font-size: 0.82rem; margin-top: auto; }
.sf-feature-meta b { color: #fff; }
.sf-feature-art { position: relative; min-height: 150px; background: linear-gradient(150deg,#14382e,#0c1f18); }
.sf-feature-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sf-feature-empty { display: block; width: 100%; height: 100%; }

/* Toolbar: tabs + search */
.sf-bar { max-width: var(--ln-w); margin: clamp(24px,3vw,36px) auto 0; padding: 0 var(--ln-pad); display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; }
.sf-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.sf-tabs button { border: 1px solid var(--line); background: var(--surface); border-radius: 99px; padding: 8px 16px; font: 600 0.86rem "DM Sans", sans-serif; color: var(--muted); cursor: pointer; }
.sf-tabs button:hover { color: var(--plum); }
.sf-tabs button.on { background: var(--obsidian); color: #fff; border-color: var(--obsidian); }
.sf-search { display: inline-flex; align-items: center; gap: 8px; background: var(--surface); border: 1.5px solid var(--line); border-radius: 999px; padding: 8px 16px; min-width: 240px; }
.sf-search svg { width: 17px; height: 17px; flex: none; fill: none; stroke: var(--muted); stroke-width: 2; stroke-linecap: round; }
.sf-search input { border: 0; outline: 0; padding: 0; width: 100%; background: transparent; font-size: 0.92rem; }
.sf-search input:focus-visible { outline: 0; }
.sf-products { padding-top: clamp(24px,3vw,32px) !important; }

.sf-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.sf-card {
  display: flex; flex-direction: column; text-decoration: none; color: var(--plum);
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow); transition: transform 0.14s ease, box-shadow 0.14s ease, border-color 0.14s ease;
}
.sf-card:hover { transform: translateY(-3px); border-color: var(--line-strong); box-shadow: 0 16px 40px rgba(16,20,18,0.12); }
.sf-card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; background: var(--bone); }
.sf-card-empty { display: flex; align-items: center; justify-content: center; }
.sf-card-empty svg { width: 40px; height: 40px; fill: none; stroke: var(--line-strong); stroke-width: 1.5; }
.sf-card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.sf-card-body h3 { font-size: 1.05rem; margin: 0; letter-spacing: -0.01em; }
.sf-card-type { font-size: 0.74rem; color: var(--muted); font-weight: 600; }
.sf-card-price { color: var(--signal-ink); font-weight: 800; font-size: 1.05rem; margin-top: 2px; }
.sf-card-desc { color: var(--muted); font-size: 0.88rem; margin: 4px 0 0; }
.sf-card-cta { margin-top: 14px; }
.sf-empty-search { text-align: center; color: var(--muted); padding: 32px 0; }

/* Storefront trust band (mineral wash) */
.sf-trust { background: var(--mint-tint); }
.sf-trust-in { max-width: var(--ln-w); margin: 0 auto; padding: 24px var(--ln-pad); display: grid; gap: 20px; align-items: center; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); }
.sf-trust-item { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 12px; align-items: center; }
.sf-trust-ic { grid-row: 1 / 3; width: 38px; height: 38px; border-radius: 99px; background: var(--obsidian); color: var(--mint); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.sf-trust-item b { font-size: 0.9rem; }
.sf-trust-item span:not(.sf-trust-ic) { color: #3f5a4e; font-size: 0.8rem; }
.sf-trust-script { font-family: "Bricolage Grotesque", cursive; font-style: italic; font-weight: 600; color: var(--green); font-size: 1.4rem; line-height: 1.1; text-align: right; }
@media (max-width: 900px) { .sf-trust-script { display: none; } }

/* Storefront about */
.sf-about { display: grid; gap: 32px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 760px) { .sf-about { grid-template-columns: 150px 1fr auto; } }
.sf-about-body h2 { margin: 6px 0 10px; }
.sf-about-body .soft { max-width: 56ch; font-size: 1.02rem; }
.sf-about-script { font-family: "Bricolage Grotesque", cursive; font-style: italic; font-weight: 600; color: var(--signal); font-size: 1.5rem; line-height: 1.15; }
@media (max-width: 759px) { .sf-about-script { display: none; } }

/* Bold storefront hero + banner + avatar image */
.sf-head { position: relative; overflow: hidden; }
.sf-head-in { position: relative; z-index: 1; }
.sf-avatar-img { overflow: hidden; padding: 0; }
.sf-avatar-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sf-head.has-banner { background-size: cover; background-position: center; border-bottom: 0; }
.sf-head-scrim { position: absolute; inset: 0; z-index: 0; background: linear-gradient(180deg, rgba(16,20,18,0.35), rgba(16,20,18,0.82)); }
.sf-head.has-banner .sf-name { color: #fff; }
.sf-head.has-banner .sf-handle { color: rgba(255,255,255,0.82); }
.sf-head.has-banner .sf-bio { color: rgba(255,255,255,0.92); }
.sf-head.has-banner .sf-powered { background: rgba(255,255,255,0.92); border-color: transparent; }
.sf-head.has-banner .sf-social { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.32); color: #fff; }
.sf-head.has-banner .sf-copy-btn { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.32); color: #fff; }
.sf-head.has-banner .sf-avatar { border: 3px solid rgba(255,255,255,0.6); }

/* ── Store settings page ── */
.set-grid { display: grid; gap: 20px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 1000px) { .set-grid { grid-template-columns: 1.6fr 1fr; } }
.set-main { display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 1000px) { .set-side { position: sticky; top: 20px; } }
.set-two { display: grid; gap: 0 16px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .set-two { grid-template-columns: 1fr 1fr; } }
.set-banner { height: 130px; border-radius: 12px; background: var(--bone) center/cover no-repeat; border: 1.5px dashed var(--line-strong); display: flex; align-items: center; justify-content: center; text-align: center; }
.set-banner.has-img { border-style: solid; border-color: var(--line); }
.set-banner-empty { color: var(--muted); font-size: 0.85rem; padding: 12px; }
.set-avatar-row { display: flex; align-items: center; gap: 16px; }
.set-avatar { width: 66px; height: 66px; border-radius: 99px; background: var(--obsidian) center/cover no-repeat; color: var(--bone); display: inline-flex; align-items: center; justify-content: center; font: 800 1.5rem "Bricolage Grotesque", sans-serif; flex: none; }
.set-main .btn#save-btn, #save-btn { align-self: flex-start; }

/* Live preview */
.set-preview-card .dash-chart-head { margin-bottom: 14px; }
.sp { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--surface); }
.sp-banner { height: 84px; background: linear-gradient(120deg, var(--obsidian), var(--obsidian2)) center/cover no-repeat; }
.sp-body { padding: 0 16px 18px; margin-top: -30px; display: flex; flex-direction: column; align-items: flex-start; }
.sp-avatar { width: 58px; height: 58px; border-radius: 99px; background: var(--obsidian) center/cover no-repeat; color: var(--bone); display: flex; align-items: center; justify-content: center; font: 800 1.4rem "Bricolage Grotesque", sans-serif; border: 3px solid var(--surface); }
.sp-powered { display: inline-flex; align-items: center; gap: 6px; background: var(--bone); border: 1px solid var(--line); border-radius: 99px; padding: 3px 10px 3px 5px; font-size: 0.66rem; font-weight: 700; color: var(--muted); margin: 8px 0; }
.sp-name { font-family: "Bricolage Grotesque", sans-serif; font-size: 1.35rem; letter-spacing: -0.02em; }
.sp-handle { color: var(--muted); font-size: 0.82rem; }
.sp-bio { font-size: 0.86rem; color: #4a463d; margin: 8px 0 0; }
.sp-socials { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.sp-social { width: 28px; height: 28px; border-radius: 99px; border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center; font-size: 0.78rem; color: var(--muted); }

/* ---- Product detail ---- */
.pd { max-width: var(--ln-w); margin: 0 auto; padding: 20px clamp(16px,4vw,40px) 0; }
.pd-crumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 0.85rem; color: var(--muted); margin: 8px 0 22px; }
.pd-crumbs a { color: var(--signal-ink); text-decoration: none; }
.pd-crumbs a:first-child { font-weight: 700; }
.pd-crumb-now { color: var(--muted); }

.pd-hero { display: grid; gap: 22px; align-items: start; }
@media (min-width: 900px) { .pd-hero { grid-template-columns: 1.28fr 0.82fr; gap: 28px; } }

.pd-gallery { position: sticky; top: 78px; }
.pd-stage { position: relative; }
/* contain (not cover) so the seller's whole image is visible, whatever its
   shape — it fits inside the box with a matching dark backdrop, never cropped. */
.pd-main { width: 100%; aspect-ratio: 4/3; object-fit: contain; border-radius: 18px; display: block; background: var(--obsidian); box-shadow: 0 24px 60px rgba(16,20,18,0.22); }
.pd-main-empty { display: flex; align-items: center; justify-content: center; }
.pd-main-empty svg { width: 64px; height: 64px; fill: none; stroke: rgba(255,255,255,0.3); stroke-width: 1.4; }
.pd-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,0.92); backdrop-filter: blur(4px); color: var(--obsidian); font-size: 1.4rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(16,20,18,0.18); transition: transform 0.12s ease, background 0.12s ease; }
.pd-nav:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.pd-prev { left: 14px; } .pd-next { right: 14px; }
.pd-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 12px; }
.pd-thumb { position: relative; aspect-ratio: 1/1; width: 100%; border-radius: 12px; overflow: hidden; border: 2px solid transparent; padding: 0; cursor: pointer; background: var(--bone); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-thumb.active { border-color: var(--signal); }
.pd-thumb-more img { filter: brightness(0.4); }
.pd-thumb-count { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; font: 800 1rem "Bricolage Grotesque", sans-serif; line-height: 1; }
.pd-thumb-count small { font: 600 0.62rem "DM Sans", sans-serif; opacity: 0.85; margin-top: 2px; }

/* Dark buy card */
.pd-buy { background: var(--obsidian); color: #fff; border-radius: 18px; padding: clamp(22px,3vw,30px); box-shadow: 0 24px 60px rgba(16,20,18,0.28); }
.pd-buy-eyebrow { font: 700 0.7rem "DM Sans", sans-serif; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(244,240,231,0.55); margin: 0 0 10px; }
.pd-name { color: #fff; font-size: clamp(1.7rem,3.4vw,2.3rem); letter-spacing: -0.03em; line-height: 1.05; margin: 0 0 16px; }
.pd-by { display: flex; align-items: center; gap: 9px; color: rgba(244,240,231,0.72); font-size: 0.9rem; margin-bottom: 18px; }
.pd-by a { color: #fff; text-decoration: none; font-weight: 600; }
.pd-by-avatar { width: 28px; height: 28px; border-radius: 999px; background: var(--signal); color: #fff; display: inline-flex; align-items: center; justify-content: center; font: 800 0.8rem "Bricolage Grotesque", sans-serif; overflow: hidden; flex: none; }
.pd-by-avatar-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-price { color: var(--signal); font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: clamp(2rem,4vw,2.5rem); letter-spacing: -0.02em; margin: 0 0 18px; display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px; }
.pd-price-was { color: rgba(255,255,255,0.55); font-size: 0.5em; font-weight: 700; text-decoration: line-through; letter-spacing: 0; }
.pd-price-off { color: #fff; background: var(--signal); font-family: "DM Sans", sans-serif; font-size: 0.42em; font-weight: 800; letter-spacing: 0.02em; padding: 4px 10px; border-radius: 999px; align-self: center; }
.pd-cta { margin-bottom: 24px; }
.pd-sale-flag { position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--signal); color: #fff; font: 800 0.78rem "DM Sans", sans-serif; letter-spacing: 0.03em; padding: 6px 12px; border-radius: 999px; box-shadow: 0 6px 18px rgba(255,77,28,0.4); }
.pd-more-price .pd-price-was { color: var(--muted); font-size: 0.82rem; font-weight: 700; text-decoration: line-through; }
.pd-buy-inline { margin-bottom: 24px; }
.pd-buy-inline label { color: rgba(244,240,231,0.85); }
.pd-buy-inline input, .pd-buy-inline textarea, .pd-buy-inline select { color: var(--plum); }

.pd-assure { list-style: none; margin: 0 0 24px; padding: 24px 0; display: flex; flex-direction: column; gap: 18px; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
.pd-assure li { display: flex; align-items: flex-start; gap: 13px; }
.pd-assure-ic { flex: none; width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.pd-assure-ic svg { width: 18px; height: 18px; fill: none; stroke: var(--bone); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.pd-assure b { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.pd-assure span { color: rgba(244,240,231,0.6); font-size: 0.8rem; line-height: 1.4; }

.pd-spec { margin: 0; display: flex; flex-direction: column; gap: 13px; }
.pd-spec div { display: flex; justify-content: space-between; gap: 16px; font-size: 0.88rem; }
.pd-spec dt { color: rgba(244,240,231,0.55); margin: 0; }
.pd-spec dd { color: #fff; margin: 0; font-weight: 600; text-align: right; }

/* Info band — copy · what you'll get · formats + perfect for */
.pd-info { display: grid; gap: 32px; padding: clamp(44px,7vw,80px) 0; }
@media (min-width: 900px) { .pd-info { grid-template-columns: 1.2fr 1fr 1fr; gap: 0; } }
.pd-info > div { padding: 0 clamp(24px,3vw,40px); }
.pd-info > div:first-child { padding-left: 0; }
.pd-info > div:last-child { padding-right: 0; }
@media (min-width: 900px) { .pd-info-get, .pd-info-side { border-left: 1px solid var(--line); } }
.pd-info-h { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: clamp(1.6rem,3vw,2.15rem); letter-spacing: -0.03em; line-height: 1.08; margin: 8px 0 16px; }
.pd-desc { color: #3f3b34; line-height: 1.65; }
.pd-desc :is(h1,h2,h3) { letter-spacing: -0.02em; }
.pd-checks { list-style: none; margin: 6px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.pd-checks li { position: relative; padding-left: 30px; font-size: 0.92rem; color: #2e2b25; line-height: 1.45; }
.pd-checks li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 20px; height: 20px; border-radius: 999px; background: var(--mint-tint); color: var(--green); font-size: 0.72rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.pd-fmts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 6px; }
.pd-fmt { border: 1px solid var(--line); border-radius: 13px; padding: 14px 10px; text-align: center; background: var(--surface); box-shadow: var(--shadow); }
.pd-fmt-ic { font-size: 1.5rem; display: block; margin-bottom: 6px; }
.pd-fmt b { display: block; font-size: 0.82rem; letter-spacing: 0.02em; }
.pd-fmt span { display: block; color: var(--muted); font-size: 0.72rem; margin-top: 2px; }

/* Creator band */
.pd-creator { background: var(--obsidian); color: #fff; border-radius: 22px; padding: clamp(24px,4vw,44px); display: grid; gap: 26px; align-items: center; margin-bottom: clamp(44px,7vw,80px); overflow: hidden; }
@media (min-width: 980px) { .pd-creator { grid-template-columns: 260px 1fr auto; gap: 40px; } }
.pd-creator-photo { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; background: var(--obsidian2); }
@media (min-width: 980px) { .pd-creator-photo { align-self: stretch; aspect-ratio: auto; min-height: 240px; } }
.pd-creator-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-creator-initial { width: 100%; height: 100%; min-height: 180px; display: flex; align-items: center; justify-content: center; color: var(--mint); font: 800 3.4rem "Bricolage Grotesque", sans-serif; }
.pd-creator-eyebrow { color: var(--mint) !important; }
.pd-creator-body h2 { color: #fff; font-family: "Bricolage Grotesque", sans-serif; font-size: clamp(1.6rem,3vw,2.3rem); letter-spacing: -0.02em; margin: 6px 0 10px; }
.pd-creator-body p { color: rgba(244,240,231,0.75); max-width: 52ch; margin: 0 0 20px; line-height: 1.6; }
.pd-creator-points { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 980px) { .pd-creator-points { padding-left: 40px; border-left: 1px solid rgba(255,255,255,0.12); } }
.pd-creator-points li { display: flex; align-items: center; gap: 12px; font-size: 0.88rem; color: rgba(244,240,231,0.85); white-space: nowrap; }
.pd-creator-points li span { flex: none; width: 30px; height: 30px; border-radius: 999px; background: rgba(255,255,255,0.08); display: inline-flex; align-items: center; justify-content: center; color: var(--mint); font-size: 0.9rem; }

/* More from creator — horizontal cards */
.pd-more { padding-bottom: clamp(48px,8vw,84px); }
.pd-more-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.pd-more-all { color: var(--signal-ink); text-decoration: none; font-weight: 700; font-size: 0.9rem; white-space: nowrap; }
.pd-more-row { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(250px,1fr)); }
.pd-more-card { display: flex; align-items: center; gap: 14px; padding: 14px; border: 1px solid var(--line); border-radius: 15px; background: var(--surface); text-decoration: none; color: inherit; box-shadow: var(--shadow); transition: transform 0.12s ease, box-shadow 0.12s ease; }
.pd-more-card:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(16,20,18,0.12); }
.pd-more-img { flex: none; width: 74px; height: 74px; border-radius: 11px; object-fit: cover; background: var(--bone); }
.pd-more-empty { display: flex; align-items: center; justify-content: center; }
.pd-more-empty svg { width: 26px; height: 26px; fill: none; stroke: var(--muted); stroke-width: 1.5; }
.pd-more-body { display: flex; flex-direction: column; min-width: 0; }
.pd-more-body b { font-size: 0.95rem; line-height: 1.25; letter-spacing: -0.01em; }
.pd-more-by { color: var(--muted); font-size: 0.76rem; margin: 2px 0 6px; }
.pd-more-price { color: var(--signal-ink); font-weight: 800; font-size: 0.95rem; }

/* Product-page FAQ (2-col) */
.pd-faq { padding-bottom: clamp(48px,8vw,84px); }
.pd-faq-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.pd-faq-head .soft { margin: 0; }
.pd-faq-head a { color: var(--signal-ink); font-weight: 700; text-decoration: none; }
.pd-faq-grid { display: grid; gap: 12px; }
@media (min-width: 760px) { .pd-faq-grid { grid-template-columns: 1fr 1fr; gap: 12px 24px; } }
.pd-faq-grid details { border: 1px solid var(--line); border-radius: 12px; background: var(--surface); padding: 4px 16px; }
.pd-faq-grid summary { list-style: none; cursor: pointer; font-weight: 600; padding: 13px 0; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.pd-faq-grid summary::-webkit-details-marker { display: none; }
.pd-faq-grid summary::after { content: "+"; color: var(--muted); font-size: 1.25rem; line-height: 1; font-weight: 400; }
.pd-faq-grid details[open] summary::after { content: "–"; }
.pd-faq-grid details p { margin: 0 0 14px; }

/* ============================================================
   Seller data screens — sales / earnings / customers (Concept A)
   ============================================================ */
.admin-lead { color: var(--muted); margin: -10px 0 20px; max-width: 70ch; }

/* Segmented status tabs (sales) — distinct from the form's .seg toggle */
.seg-tabs { display: inline-flex; gap: 4px; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 4px; margin-bottom: 18px; flex-wrap: wrap; }
.seg-tabs button { border: 0; background: transparent; cursor: pointer; border-radius: 999px; padding: 7px 15px; font: 600 0.86rem "DM Sans", sans-serif; color: var(--muted); display: inline-flex; align-items: center; gap: 7px; }
.seg-tabs button:hover { color: var(--plum); }
.seg-tabs button.on { background: var(--obsidian); color: #fff; }
.seg-n { font-size: 0.74rem; background: rgba(0,0,0,0.08); border-radius: 999px; padding: 1px 7px; font-weight: 700; }
.seg-tabs button.on .seg-n { background: rgba(255,255,255,0.18); }

/* Table panel */
.table-panel { padding: 8px 8px 4px; }
.table-panel .panel-h { padding: 12px 12px 4px; }
.admin-table tbody tr { cursor: pointer; transition: background 0.12s ease; }
.admin-table tbody tr:hover { background: var(--bone); }
.admin-table tbody tr:focus-visible { outline: 2px solid var(--signal); outline-offset: -2px; }
.t-ref { font-weight: 700; display: block; }
.t-sub { display: block; color: var(--muted); font-size: 0.78rem; }
.t-name { font-weight: 700; display: block; }
.t-nowrap { white-space: nowrap; }
.t-muted { color: var(--muted); }
.t-cust { display: inline-flex; align-items: center; gap: 10px; }
.t-avatar { width: 30px; height: 30px; border-radius: 999px; flex: none; background: var(--obsidian); color: var(--bone); display: inline-flex; align-items: center; justify-content: center; font: 800 0.85rem "Bricolage Grotesque", sans-serif; }
.t-avatar.lg { width: 64px; height: 64px; font-size: 1.7rem; }
.dot-status { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 600; }
.dot-status::before { content: ""; width: 8px; height: 8px; border-radius: 999px; background: var(--muted); }
.dot-status.on { color: var(--green); }
.dot-status.on::before { background: var(--green); }
.dot-status.off { color: var(--muted); }

/* Detail drawer */
.drawer-scrim { position: fixed; inset: 0; z-index: 70; background: rgba(16,20,18,0.42); }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 71; width: min(420px, 92vw);
  background: var(--surface); border-left: 1px solid var(--line); overflow-y: auto;
  box-shadow: -20px 0 50px rgba(16,20,18,0.18);
  transform: translateX(100%); transition: transform 0.24s cubic-bezier(0.22,1,0.36,1);
}
body.drawer-open .drawer { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 20px 22px 14px; border-bottom: 1px solid var(--line); position: sticky; top: 0; background: var(--surface); }
.drawer-title { font-size: 1.15rem; margin: 0; letter-spacing: -0.01em; }
.drawer-close { border: 0; background: var(--bone); width: 34px; height: 34px; border-radius: 999px; font-size: 1.3rem; line-height: 1; cursor: pointer; color: var(--muted); flex: none; }
.drawer-close:hover { color: var(--plum); }
.drawer-body { padding: 20px 22px 28px; }
.dl-hero { background: var(--bone); border-radius: 14px; padding: 18px; margin-bottom: 20px; }
.dl-hero-cust { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.dl-amount { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 1.8rem; letter-spacing: -0.02em; margin: 10px 0 4px; }
.dl-prod { margin: 0; font-weight: 700; }
.dl-actions { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.dl-actions .btn { flex: 1; }
.dl-sec { border-top: 1px solid var(--line); padding-top: 14px; margin-bottom: 14px; }
.dl-h { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin: 0 0 10px; font-weight: 700; }
.dl-row { display: flex; justify-content: space-between; gap: 16px; padding: 6px 0; font-size: 0.9rem; }
.dl-row span { color: var(--muted); }
.dl-row b { text-align: right; }
.dl-row code { font-size: 0.82rem; }
.dl-view { margin-top: 8px; }

/* Donut + settlement */
.w-split { display: grid; gap: 16px; grid-template-columns: 1fr; margin-bottom: 18px; }
@media (min-width: 860px) { .w-split { grid-template-columns: 1fr 1fr; } }
.donut-wrap { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.donut { width: 150px; height: 150px; border-radius: 999px; flex: none; display: flex; align-items: center; justify-content: center; }
.donut-hole { width: 96px; height: 96px; border-radius: 999px; background: var(--surface); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.donut-hole b { font-family: "Bricolage Grotesque", sans-serif; font-size: 1.5rem; letter-spacing: -0.02em; }
.donut-hole span { font-size: 0.72rem; color: var(--muted); }
.donut-legend { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.donut-legend li { display: flex; align-items: center; gap: 9px; font-size: 0.92rem; }
.donut-legend b { margin-left: auto; font-family: "Bricolage Grotesque", sans-serif; }
.donut-legend .dot { width: 11px; height: 11px; border-radius: 999px; flex: none; }
.dot-net { background: var(--mint); }
.dot-fee { background: var(--signal); }
.settle-badge { margin: 0 0 10px; }
.settle-dest { font-weight: 700; margin: 0 0 10px; }

/* ============================================================
   Order confirmation / delivery (Concept A)
   ============================================================ */
.oc-wrap { max-width: 560px; margin: 0 auto; padding: clamp(28px,6vw,56px) 16px; }
.oc-card { background: var(--obsidian); color: #fff; border-radius: 20px; padding: clamp(26px,5vw,40px); text-align: center; box-shadow: 0 30px 70px rgba(16,20,18,0.3); }
.oc-check { width: 76px; height: 76px; border-radius: 999px; background: rgba(155,226,143,0.15); color: var(--mint); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.oc-check svg { width: 38px; height: 38px; }
.oc-h { color: #fff; font-size: clamp(1.7rem,4vw,2.2rem); letter-spacing: -0.02em; margin: 0 0 8px; }
.oc-sub { color: rgba(244,240,231,0.75); margin: 0 auto 22px; max-width: 42ch; font-size: 0.95rem; }
.oc-line { display: flex; align-items: center; justify-content: space-between; gap: 12px; text-align: left; background: rgba(255,255,255,0.06); border-radius: 12px; padding: 14px 16px; }
.oc-line-price { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; white-space: nowrap; }
.oc-coupon { color: var(--mint); font-size: 0.85rem; margin: 10px 0 0; }
.oc-was { color: rgba(244,240,231,0.5); }
.oc-refbox { display: flex; flex-direction: column; gap: 4px; text-align: left; background: rgba(255,255,255,0.06); border-radius: 12px; padding: 12px 16px; margin-top: 12px; }
.oc-reflabel { font-size: 0.72rem; color: rgba(244,240,231,0.55); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.oc-refrow { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.oc-refrow code { font-size: 0.95rem; color: #fff; }
.oc-copy { border: 0; background: rgba(255,255,255,0.12); color: #fff; border-radius: 8px; padding: 5px 12px; font: 600 0.8rem "DM Sans", sans-serif; cursor: pointer; }
.oc-copy:hover { background: rgba(255,255,255,0.2); }
.oc-files { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.oc-file { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: rgba(255,255,255,0.06); border-radius: 12px; padding: 12px 16px; text-align: left; }
.oc-file-name { font-size: 0.9rem; }
.oc-file-meta { display: block; color: rgba(244,240,231,0.55); font-size: 0.78rem; }
.oc-file-btn { background: var(--mint); color: var(--obsidian); }
.oc-file-btn:hover { background: #86d178; }
.oc-access { margin-top: 18px; background: var(--mint); color: var(--obsidian); }
.oc-access:hover { background: #86d178; }
.oc-instructions { white-space: pre-wrap; text-align: left; color: rgba(244,240,231,0.8); font-size: 0.9rem; margin-top: 14px; }
.oc-help { color: rgba(244,240,231,0.6); font-size: 0.86rem; margin: 22px 0 0; }
.oc-help a { color: var(--mint); }
.oc-pending .oc-spinner { width: 44px; height: 44px; border-radius: 999px; border: 3px solid rgba(255,255,255,0.15); border-top-color: var(--signal); margin: 0 auto 18px; animation: oc-spin 0.9s linear infinite; }
@media (prefers-reduced-motion: reduce) { .oc-pending .oc-spinner { animation: none; } }
@keyframes oc-spin { to { transform: rotate(360deg); } }
.oc-ref { color: rgba(244,240,231,0.6); font-size: 0.85rem; margin: 14px 0 0; }
.oc-keep { text-align: center; color: var(--muted); font-size: 0.84rem; margin: 18px 0 0; }

/* ============================================================
   Product form — image-7 two-column builder (Concept A)
   ============================================================ */
.pf { display: grid; gap: 20px; align-items: start; grid-template-columns: 1fr; }
@media (min-width: 1040px) { .pf { grid-template-columns: minmax(0,1fr) 340px; } }
.pf-main { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.req { color: var(--signal-ink); }
.pf-opt { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); background: var(--bone); border-radius: 999px; padding: 2px 8px; vertical-align: middle; }

.pf-sec { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.pf-sec-head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.pf-sec-head h2 { font-size: 1.1rem; margin: 0; }
.pf-sec-head .hint { margin: 2px 0 0; }
.pf-num { width: 28px; height: 28px; border-radius: 999px; flex: none; background: var(--obsidian); color: #fff; display: inline-flex; align-items: center; justify-content: center; font: 800 0.9rem "Bricolage Grotesque", sans-serif; }
.pf-grid2 { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .pf-grid2 { grid-template-columns: 1fr 1fr; } }
.pf-mini-label { margin-top: 14px; }

/* Artwork uploader */
.pf-artwork { border: 1.5px dashed var(--line-strong); border-radius: 12px; padding: 16px; text-align: center; background: var(--bone); }
.pf-art-empty { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--muted); padding: 14px 0; }
.pf-art-empty svg { width: 30px; height: 30px; fill: none; stroke: var(--muted); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.pf-art-empty span { font-weight: 700; color: var(--plum); font-size: 0.9rem; }
.pf-art-empty small { font-size: 0.74rem; }
.pf-art-preview { margin-bottom: 12px; position: relative; }
.pf-art-preview img { width: 100%; max-height: 200px; object-fit: cover; border-radius: 10px; display: block; }
.pf-art-badge { position: absolute; top: 8px; left: 8px; background: var(--signal); color: #fff; font: 800 0.66rem "DM Sans", sans-serif; letter-spacing: 0.04em; text-transform: uppercase; padding: 3px 9px; border-radius: 999px; }
.pf-gate { color: var(--muted); font-style: italic; }
/* Sale (% off) control */
.pf-discount-in { display: inline-flex; align-items: center; gap: 8px; }
.pf-discount-in input { width: 110px; margin: 0; }
.pf-discount-suffix { font-weight: 700; color: var(--muted); }
.pf-discount-preview { margin-top: 8px; font-size: 0.86rem; font-weight: 600; color: var(--green); }
.pf-pv-was { color: var(--muted); font-weight: 700; font-size: 0.85em; }
.pf-pv-off { color: #fff; background: var(--signal); font-size: 0.7rem; font-weight: 800; padding: 2px 7px; border-radius: 999px; vertical-align: middle; }
.btn:disabled { opacity: 0.5; }

/* Delivery mode cards */
.pf-mode { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.pf-mode button { text-align: left; background: var(--surface); border: 1.5px solid var(--line); border-radius: 12px; padding: 14px 16px; cursor: pointer; display: flex; flex-direction: column; gap: 2px; font-family: "DM Sans", sans-serif; }
.pf-mode button b { font-size: 0.95rem; }
.pf-mode button small { color: var(--muted); font-size: 0.78rem; }
.pf-mode-ic { font-size: 1.2rem; margin-bottom: 4px; }
.pf-mode button.active { border-color: var(--signal); background: #fff6f3; box-shadow: 0 0 0 3px rgba(255,77,28,0.12); }
.pf-limits { margin-top: 16px; }
.pf-limits .hint { margin-top: 4px; }

/* Notify-buyers-of-an-update panel */
.pf-notify { margin-top: 18px; border: 1.5px solid var(--mint); background: var(--mint-tint); border-radius: 14px; padding: 16px; }
.pf-notify-h { margin: 0; font-size: 0.95rem; color: var(--obsidian); }
.pf-notify-h b { color: var(--green); }
.pf-notify .hint { color: #3f4a3f; }
.pf-notify textarea { background: #fff; }

/* Side column */
.pf-side { display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 1040px) { .pf-side { position: sticky; top: 20px; } }
.pf-panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.pf-panel-title { display: block; font-size: 0.95rem; }
.pf-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
.pf-device { display: inline-flex; gap: 2px; background: var(--bone); border-radius: 999px; padding: 3px; }
.pf-device button { border: 0; background: transparent; cursor: pointer; border-radius: 999px; padding: 4px 10px; font: 600 0.74rem "DM Sans", sans-serif; color: var(--muted); }
.pf-device button.on { background: var(--obsidian); color: #fff; }

/* Live preview card */
.pf-preview { background: var(--bone); border-radius: 12px; padding: 14px; display: flex; justify-content: center; }
.pf-pv-card { width: 100%; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; transition: max-width 0.2s ease; }
.pf-preview.mobile .pf-pv-card { max-width: 200px; }
.pf-pv-img { aspect-ratio: 16/10; background: var(--bone) center/cover no-repeat; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--line); }
.pf-pv-img.has-img { background-size: cover; }
.pf-pv-img.has-img svg { display: none; }
.pf-pv-img svg { width: 34px; height: 34px; fill: none; stroke: var(--line-strong); stroke-width: 1.5; }
.pf-pv-body { padding: 14px; }
.pf-pv-body h3 { font-size: 1.05rem; margin: 0 0 4px; letter-spacing: -0.01em; }
.pf-pv-price { color: var(--signal-ink); font-weight: 800; font-size: 1.1rem; margin: 0 0 10px; }
.pf-pv-buy { pointer-events: none; margin-bottom: 10px; }
.pf-pv-desc { font-size: 0.82rem; color: #4a463d; }
.pf-pv-desc p { margin: 0 0 6px; }

.pf-status { margin-top: 14px; padding: 12px 14px; border-radius: 10px; background: var(--mint-tint); color: var(--green); font-size: 0.85rem; font-weight: 600; }

/* ============================================================
   Landing — exact-copy build (real cropped assets + live copy)
   ============================================================ */
/* Nav search glyph */
.ln-search { display: inline-flex; }
.ln-search svg { width: 18px; height: 18px; fill: none; stroke: rgba(244,240,231,0.8); stroke-width: 2; stroke-linecap: round; }

/* Hero dashboard mockup — built in HTML, scaled with container-query units so
   it grows to a real statement on wide screens. */
.hero-band { overflow: hidden; }
.ln-hero-mock { min-width: 0; }
.hm {
  position: relative; container-type: inline-size;
  width: 100%; max-width: 460px; margin: 0 auto;
  font-family: "DM Sans", system-ui, sans-serif; color: var(--plum);
  padding-bottom: 8cqw; /* room for the bleeding phone */
}
@media (min-width: 900px) { .hm { max-width: none; } }
@media (min-width: 1200px) { .hm { width: 112%; } }        /* bleed right on wide screens */
@media (min-width: 1440px) { .hm { width: 120%; } }

.hm-dash { display: flex; background: var(--bone); border-radius: 3cqw; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 6cqw 16cqw rgba(0,0,0,0.4); }
.hm-side { width: 24cqw; flex: none; background: var(--obsidian); padding: 2.6cqw 1.6cqw; display: flex; flex-direction: column; gap: 0.4cqw; }
.hm-side-brand { display: flex; align-items: center; gap: 1.2cqw; color: #fff; margin-bottom: 1.8cqw; }
.hm-side-brand b { font-family: "Bricolage Grotesque", sans-serif; font-size: 2.4cqw; letter-spacing: -0.02em; }
.hm-logo { width: 4cqw; height: 4cqw; border-radius: 1.2cqw; background: var(--signal); display: inline-flex; align-items: center; justify-content: center; flex: none; }
.hm-logo svg { width: 2.6cqw; height: 2.6cqw; }
.hm-nav { display: flex; align-items: center; gap: 1.4cqw; color: rgba(244,240,231,0.68); font-size: 1.85cqw; padding: 1.1cqw 1.4cqw; border-radius: 1.4cqw; text-decoration: none; }
.hm-nav.on { background: rgba(255,77,28,0.16); color: #fff; font-weight: 600; }
.hm-dot { width: 1.6cqw; height: 1.6cqw; border-radius: 0.4cqw; background: var(--signal); flex: none; }
.hm-grp { color: rgba(244,240,231,0.4); font-size: 1.25cqw; letter-spacing: 0.12em; text-transform: uppercase; margin: 1.6cqw 1.4cqw 0.5cqw; font-weight: 700; }
.hm-side-foot { margin-top: auto; display: flex; flex-direction: column; gap: 0.4cqw; padding-top: 2cqw; }

.hm-main { flex: 1; min-width: 0; padding: 2.6cqw; }
.hm-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2cqw; }
.hm-head b { font-family: "Bricolage Grotesque", sans-serif; font-size: 3cqw; letter-spacing: -0.02em; }
.hm-btn { background: #fff; border: 1px solid var(--line); border-radius: 99px; font-size: 1.55cqw; padding: 0.9cqw 2cqw; color: var(--plum); }
.hm-link { background: #fff; border: 1px solid var(--line); border-radius: 2cqw; padding: 1.6cqw 2cqw; margin-bottom: 2cqw; }
.hm-link-l { display: block; font-size: 1.45cqw; color: var(--muted); margin-bottom: 0.9cqw; }
.hm-link-row { display: flex; align-items: center; justify-content: space-between; gap: 1cqw; }
.hm-link-row code { font-size: 1.7cqw; color: var(--plum); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hm-copy { background: var(--bone); border: 1px solid var(--line); border-radius: 99px; font-size: 1.4cqw; padding: 0.7cqw 1.7cqw; color: var(--muted); flex: none; }
.hm-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4cqw; margin-bottom: 1.8cqw; }
.hm-card { background: #fff; border: 1px solid var(--line); border-radius: 2cqw; padding: 1.7cqw; }
.hm-card.mint { background: var(--mint-tint); border-color: rgba(18,128,90,0.3); }
.hm-k { display: block; font-size: 1.35cqw; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; margin-bottom: 0.7cqw; }
.hm-v { font-family: "Bricolage Grotesque", sans-serif; font-size: 3.3cqw; letter-spacing: -0.02em; }
.hm-card.mint .hm-v { color: var(--green); }
.hm-up { font-size: 1.35cqw; color: var(--green); font-weight: 700; margin-left: 0.8cqw; }
.hm-chart { background: #fff; border: 1px solid var(--line); border-radius: 2cqw; padding: 1.8cqw 2cqw; }
.hm-chart-h { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.2cqw; }
.hm-chart-h b { font-family: "Bricolage Grotesque", sans-serif; font-size: 1.9cqw; }
.hm-tag { font-size: 1.35cqw; color: var(--muted); border: 1px solid var(--line); border-radius: 99px; padding: 0.5cqw 1.4cqw; }
.hm-graph { position: relative; height: 18cqw; }
.hm-graph svg { width: 100%; height: 100%; display: block; }
.hm-tip { position: absolute; left: 52%; top: 6%; transform: translateX(-40%); background: var(--obsidian); color: #fff; font-size: 1.35cqw; font-weight: 700; padding: 0.7cqw 1.4cqw; border-radius: 1.2cqw; white-space: nowrap; z-index: 2; }
.hm-axis { display: flex; justify-content: space-between; font-size: 1.25cqw; color: var(--muted); margin-top: 0.8cqw; }

.hm-phone { position: absolute; right: -3cqw; bottom: 0; width: 29cqw; background: var(--obsidian); border-radius: 5cqw; padding: 1.4cqw; box-shadow: 0 8cqw 22cqw rgba(0,0,0,0.45); }
.hm-ph-screen { background: var(--bone); border-radius: 3.8cqw; overflow: hidden; }
.hm-ph-top { display: flex; align-items: center; gap: 1cqw; background: var(--obsidian); color: #fff; padding: 1.5cqw 1.8cqw; }
.hm-ph-top b { font-size: 1.9cqw; letter-spacing: -0.02em; }
.hm-logo.sm { width: 3cqw; height: 3cqw; border-radius: 0.9cqw; }
.hm-logo.sm svg { width: 2cqw; height: 2cqw; }
.hm-ph-id { padding: 1.8cqw 1.8cqw 1cqw; display: flex; flex-direction: column; gap: 0.3cqw; }
.hm-ph-av { width: 6cqw; height: 6cqw; border-radius: 99px; background: var(--obsidian); color: var(--bone); display: flex; align-items: center; justify-content: center; font-family: "Bricolage Grotesque", sans-serif; font-size: 3cqw; margin-bottom: 0.6cqw; }
.hm-ph-id b { font-size: 2cqw; letter-spacing: -0.01em; }
.hm-ph-handle { font-size: 1.5cqw; color: var(--muted); }
.hm-ph-tabs { display: flex; align-items: center; gap: 1cqw; padding: 0.6cqw 1.8cqw 1.4cqw; font-size: 1.35cqw; }
.hm-ph-tabs span { color: var(--muted); }
.hm-ph-tabs .on { background: var(--obsidian); color: #fff; border-radius: 99px; padding: 0.5cqw 1.5cqw; }
.hm-ph-prod { margin: 0 1.8cqw 1.8cqw; background: #fff; border: 1px solid var(--line); border-radius: 2.4cqw; overflow: hidden; }
.hm-ph-prod img { width: 100%; display: block; aspect-ratio: 16/10; object-fit: cover; }
.hm-ph-prod b { display: block; padding: 1.4cqw 1.6cqw 0; font-size: 1.8cqw; }
.hm-ph-price { display: block; padding: 0.4cqw 1.6cqw 0; color: var(--signal-ink); font-weight: 800; font-size: 1.8cqw; }
.hm-ph-buy { display: block; margin: 1cqw 1.6cqw 1.6cqw; background: var(--signal); color: #fff; text-align: center; border-radius: 99px; padding: 1.1cqw; font-size: 1.55cqw; font-weight: 700; }

/* Paystack strip with real logos */
.ln-paystrip-in { align-items: center; }
.ln-pay-left { display: inline-flex; align-items: center; gap: 16px; }
.ln-pay-eyebrow { color: rgba(244,240,231,0.5); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.62rem; font-weight: 700; line-height: 1.3; margin: 0; }
.ln-pay-logos { height: 22px; width: auto; display: block; }
.ln-pay-note { display: inline-flex; align-items: center; gap: 10px; color: rgba(244,240,231,0.75); font-size: 0.82rem; line-height: 1.35; }
.ln-pay-note b { color: #fff; font-weight: 600; }
.ln-lock { font-size: 1rem; }

/* Banded screenshot sections */
.ln-band-sec { max-width: 1120px; }
@media (min-width: 1240px) { .ln-band-sec { max-width: 1240px; } }
@media (min-width: 1500px) { .ln-band-sec { max-width: 1320px; } }
.ln-band { display: block; width: 100%; height: auto; border-radius: 16px; margin-top: 8px; }
.ln-dark-in { max-width: 1120px; }
@media (min-width: 1240px) { .ln-dark-in { max-width: 1240px; } }
@media (min-width: 1500px) { .ln-dark-in { max-width: 1320px; } }
.ln-viewall { color: var(--signal); text-decoration: none; font-weight: 700; font-size: 0.9rem; white-space: nowrap; align-self: end; }
.ln-dark .ln-sec-head { align-items: end; }

/* Flow — 4 mini-mockups rebuilt in HTML (cqw-scaled internals) */
.ln-flow { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; margin-top: 8px; }
@media (min-width: 960px) { .ln-flow { grid-template-columns: repeat(4, 1fr); gap: 28px; } }
@media (min-width: 1240px) { .ln-flow { gap: 34px; } }
/* Statement width on large screens (matches the hero's presence) */
#how.ln-band-sec { max-width: 1120px; }
@media (min-width: 1240px) { #how.ln-band-sec { max-width: 1240px; } }
@media (min-width: 1500px) { #how.ln-band-sec { max-width: 1320px; } }
.fc { display: flex; flex-direction: column; position: relative; }
@media (min-width: 960px) {
  .fc:not(:last-child)::after { content: "→"; position: absolute; top: 44%; right: -18px; transform: translateY(-50%); color: var(--line-strong); font-size: 1.1rem; z-index: 2; }
}
.fc-mock { flex: 1; width: 100%; container-type: inline-size; background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 5%; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.fc-mock.fm-center { align-items: center; text-align: center; justify-content: center; }

.fm-nav { display: flex; align-items: center; gap: 2.4cqw; margin-bottom: 4cqw; }
.fm-nav b { font-family: "Bricolage Grotesque", sans-serif; font-size: 5.6cqw; letter-spacing: -0.02em; flex: 1; }
.fm-logo { width: 8cqw; height: 8cqw; border-radius: 2.4cqw; background: var(--signal); display: inline-flex; align-items: center; justify-content: center; flex: none; }
.fm-logo svg { width: 5.2cqw; height: 5.2cqw; }
.fm-burger { color: var(--muted); font-size: 5.2cqw; }
.fm-store { display: flex; align-items: center; gap: 2.6cqw; margin-bottom: 4cqw; }
.fm-av { width: 10.5cqw; height: 10.5cqw; border-radius: 99px; background: var(--obsidian); color: var(--bone); display: inline-flex; align-items: center; justify-content: center; font-family: "Bricolage Grotesque", sans-serif; font-size: 5.4cqw; flex: none; }
.fm-store-id { display: flex; flex-direction: column; min-width: 0; }
.fm-store-id b { font-size: 4.4cqw; }
.fm-handle { font-size: 3.6cqw; color: var(--muted); }
.fm-prodcard { background: var(--bone); border: 1px solid var(--line); border-radius: 3cqw; padding: 3.2cqw; display: flex; flex-direction: column; flex: 1; }
.fm-cover { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 2cqw; display: block; flex: 1; min-height: 0; }
.fm-cover.lg { width: 62cqw; aspect-ratio: 4/5; flex: none; margin-bottom: 1cqw; }
.fm-cover.xs { width: 13cqw; aspect-ratio: 1/1; flex: none; }
.fm-title { font-family: "Bricolage Grotesque", sans-serif; font-size: 5cqw; letter-spacing: -0.01em; margin-top: 3cqw; }
.fm-by { font-size: 3.6cqw; color: var(--muted); margin-top: 1.2cqw; }
.fm-price { color: var(--signal-ink); font-weight: 800; font-size: 5.2cqw; margin-top: 1.8cqw; }
.fm-btn { display: inline-block; background: var(--signal); color: #fff; text-align: center; border-radius: 99px; font-weight: 700; font-size: 4cqw; padding: 3cqw 3.5cqw; margin-top: 3.2cqw; }
.fm-btn.wide { display: block; width: 100%; }
.fm-btn.dark { background: var(--obsidian); }
.fm-h { font-family: "Bricolage Grotesque", sans-serif; font-size: 5cqw; margin-bottom: 3.4cqw; }
.fm-line { display: flex; align-items: center; gap: 2.6cqw; background: var(--bone); border: 1px solid var(--line); border-radius: 2.6cqw; padding: 2.6cqw; margin-bottom: 3.4cqw; }
.fm-line-name { flex: 1; font-size: 3.8cqw; font-weight: 700; display: flex; flex-direction: column; min-width: 0; line-height: 1.25; }
.fm-line-name small { font-weight: 400; color: var(--muted); font-size: 3.1cqw; }
.fm-price.sm { font-size: 3.8cqw; margin: 0; }
.fm-flabel { font-size: 3.4cqw; font-weight: 700; margin-bottom: 1.6cqw; }
.fm-input { display: block; height: 8cqw; border: 1px solid var(--line); border-radius: 2cqw; background: #fff; margin-bottom: 3.4cqw; }
.fm-pay { display: flex; align-items: center; gap: 1.8cqw; font-size: 3.4cqw; color: var(--muted); margin-bottom: 3.4cqw; }
.fm-pay-mk { width: 4.4cqw; height: 3.2cqw; border-radius: 1cqw; background: #0aa0e0; display: inline-block; flex: none; }
.fm-check { width: 17cqw; height: 17cqw; border-radius: 99px; border: 1.6px solid var(--green); color: var(--green); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 4.5cqw; }
.fm-check svg { width: 9cqw; height: 9cqw; }
.fm-succ-h { font-family: "Bricolage Grotesque", sans-serif; font-size: 5cqw; line-height: 1.15; }
.fm-succ-t { font-size: 3.7cqw; color: var(--muted); margin: 2.8cqw 0 4.5cqw; }

.fc-cap { display: flex; gap: 11px; align-items: flex-start; padding: 16px 2px 0; }
.fc-num { width: 27px; height: 27px; border-radius: 99px; background: var(--obsidian); color: #fff; display: inline-flex; align-items: center; justify-content: center; font: 800 0.88rem "Bricolage Grotesque", sans-serif; flex: none; }
.fc-cap b { display: block; font-size: 1rem; letter-spacing: -0.01em; margin-bottom: 2px; }
.fc-cap span { color: var(--muted); font-size: 0.86rem; line-height: 1.4; }

/* Featured-products marquee (superadmin-curated, auto-scroll) */
.ln-marquee { overflow: hidden; margin-top: 4px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.ln-marquee-track { display: flex; gap: 22px; width: max-content; padding: 8px 22px; animation: mq-scroll 48s linear infinite; }
.ln-marquee:hover .ln-marquee-track { animation-play-state: paused; }
@keyframes mq-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .ln-marquee { overflow-x: auto; }
  .ln-marquee-track { animation: none; }
}
.mq-card { flex: 0 0 auto; width: 236px; background: #fff; border-radius: 16px; overflow: hidden; text-decoration: none; color: var(--plum); box-shadow: 0 18px 44px rgba(0,0,0,0.34); transition: transform 0.16s ease; }
.mq-card:hover { transform: translateY(-4px); }
.mq-cover { display: block; aspect-ratio: 5/4; background: var(--bone); }
.mq-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mq-cover-empty { display: flex; align-items: center; justify-content: center; height: 100%; }
.mq-cover-empty svg { width: 40px; height: 40px; fill: none; stroke: var(--line-strong); stroke-width: 1.4; }
.mq-body { display: block; padding: 15px 18px 18px; }
.mq-name { display: block; font-size: 1.02rem; letter-spacing: -0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mq-type { display: block; color: var(--muted); font-size: 0.8rem; margin: 4px 0 9px; }
.mq-price { display: block; font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 1.08rem; letter-spacing: -0.02em; }

/* Superadmin featured-products table thumbnail */
.feat-thumb { width: 42px; height: 42px; border-radius: 9px; object-fit: cover; flex: none; background: var(--bone); }
.feat-thumb-empty { display: inline-block; border: 1px solid var(--line); }

/* Features — capability cards + panels (HTML) */
.ln-feat-grid { grid-template-columns: 1fr; gap: 16px; margin: 8px 0 20px; }
@media (min-width: 560px) { .ln-feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .ln-feat-grid { grid-template-columns: repeat(4, 1fr); } }
.ln-feat { display: flex; flex-direction: column; padding: 20px; min-width: 0; }
.ln-feat-top { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.ln-feat-ic { width: 38px; height: 38px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; font-size: 1.15rem; flex: none; margin: 0; }
.ln-feat-ic.mint { background: var(--mint-tint); }
.ln-feat-ic.coral { background: #ffe7df; }
.ln-feat-ic.blue { background: #e3ecf4; }
.ln-feat-top h3 { font-size: 1rem; margin: 0 0 2px; }
.ln-feat-top p { font-size: 0.83rem; margin: 0; }
.fv-analytics, .fv-list, .fv-coupon, .fv-orders { margin-top: auto; }

.fv-analytics { background: var(--bone); border-radius: 12px; padding: 14px; }
.fv-stat { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; }
.fv-stat b { font-family: "Bricolage Grotesque", sans-serif; font-size: 1.35rem; letter-spacing: -0.02em; }
.fv-up { color: var(--green); font-weight: 700; font-size: 0.8rem; }
.fv-bars { display: flex; align-items: flex-end; gap: 5px; height: 62px; }
.fv-bars i { flex: 1; background: linear-gradient(var(--signal), #ff9169); border-radius: 3px 3px 0 0; display: block; }

.fv-list, .fv-orders { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.fv-list li { display: flex; align-items: center; gap: 10px; font-size: 0.86rem; }
.fv-thumb { width: 26px; height: 32px; border-radius: 4px; flex: none; }
.fv-thumb.c1 { background: linear-gradient(150deg, #14382e, #0c2620); }
.fv-thumb.c2 { background: linear-gradient(150deg, #c9776a, #8f463c); }
.fv-thumb.c3 { background: linear-gradient(150deg, #7a1f12, #3a0d07); }
.fv-li-name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight: 600; }
.fv-list b, .fv-orders b { font-size: 0.84rem; white-space: nowrap; }

.fv-coupon { background: var(--bone); border-radius: 12px; padding: 14px; }
.fv-coupon-h { display: block; color: var(--signal-ink); font-weight: 700; font-size: 0.82rem; margin-bottom: 11px; }
.fv-fields { display: flex; gap: 8px; margin-bottom: 11px; }
.fv-field { flex: 1; min-width: 0; }
.fv-field small { display: block; color: var(--muted); font-size: 0.68rem; margin-bottom: 3px; }
.fv-inp { display: block; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 6px 10px; font-size: 0.82rem; font-weight: 600; overflow: hidden; text-overflow: ellipsis; }
.fv-coupon-btn { display: block; background: var(--signal); color: #fff; text-align: center; border-radius: 8px; padding: 8px; font-size: 0.82rem; font-weight: 700; }

.fv-orders li { display: flex; align-items: center; gap: 9px; font-size: 0.85rem; }
.fv-dot { width: 7px; height: 7px; border-radius: 99px; background: var(--green); flex: none; }
.fv-o-name { flex: 1; font-weight: 600; }
.fv-o-date { color: var(--muted); font-size: 0.76rem; }

/* Settlement + security panels */
.ln-two { grid-template-columns: 1fr; }
@media (min-width: 820px) { .ln-two { grid-template-columns: 1.35fr 1fr; } }
.ln-settle-row { display: grid; gap: 14px; margin-top: 16px; }
@media (min-width: 560px) { .ln-settle-row { grid-template-columns: 1fr 1fr; align-items: center; } }
.ln-mini-ledger { margin: 0; }
.ln-settle-note { flex-direction: row; align-items: flex-start; margin: 0; }
.ln-settle-note > div { display: flex; flex-direction: column; gap: 2px; }
.ln-settle-note b { font-size: 0.9rem; color: var(--plum); }
.ln-settle-note span { font-size: 0.82rem; color: #3f5a4e; }
.ln-settle-active { margin-top: 8px; color: var(--green) !important; font-size: 0.76rem !important; }
.ln-settle-active b { color: var(--green); }

/* Creator story — statement scale + editable content */
.ln-creator { max-width: 1120px; gap: 40px; }
@media (min-width: 1240px) { .ln-creator { max-width: 1240px; } }
@media (min-width: 1500px) { .ln-creator { max-width: 1320px; } }
@media (min-width: 900px) { .ln-creator { grid-template-columns: 340px 1fr 300px; gap: 52px; } }
.ln-creator-photo { width: 100%; aspect-ratio: 5/4; object-fit: cover; object-position: center; border-radius: 18px; box-shadow: 0 22px 55px rgba(16,20,18,0.2); display: block; }
.ln-creator-name { font-size: clamp(2rem, 3.6vw, 3rem); margin: 6px 0 12px; }
.ln-creator-body .soft { font-size: 1.06rem; max-width: 48ch; }
.ln-creator-body .btn { margin-top: 18px; }
.ln-cc-stack { display: flex; gap: 10px; margin-bottom: 10px; }
.ln-cc { flex: 1; min-width: 0; border-radius: 10px; overflow: hidden; box-shadow: 0 10px 26px rgba(16,20,18,0.16); }
.ln-cc img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.ln-creator-covers p { font-size: 0.84rem; margin: 0; }

/* Superadmin creator-story editor */
.cs-grid { display: grid; gap: 16px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 820px) { .cs-grid { grid-template-columns: 1.4fr 1fr; } }
.cs-two { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
.cs-photo { aspect-ratio: 5/4; border-radius: 12px; overflow: hidden; background: var(--bone); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; }
.cs-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cs-photo-empty { color: var(--muted); font-size: 0.85rem; text-align: center; padding: 16px; }

/* ============================================================
   Landing rhythm — one shared content width + side padding so
   every section's left/right edges line up on every screen.
   ============================================================ */
:root { --ln-w: 1120px; --ln-pad: 24px; }
@media (min-width: 720px)  { :root { --ln-pad: 32px; } }
@media (min-width: 1024px) { :root { --ln-pad: 40px; } }
@media (min-width: 1240px) { :root { --ln-w: 1240px; } }
@media (min-width: 1440px) { :root { --ln-w: 1340px; } }
@media (min-width: 1680px) { :root { --ln-w: 1520px; --ln-pad: 48px; } }
@media (min-width: 1920px) { :root { --ln-w: 1680px; } }

.ln-hero,
.ln-paystrip-in,
#how.ln-band-sec,
.ln-band-sec,
.ln-dark-in,
.ln-creator,
.land-section,
.ln-cta-in,
.ln-footer {
  max-width: var(--ln-w);
  margin-left: auto; margin-right: auto;
  padding-left: var(--ln-pad); padding-right: var(--ln-pad);
}
/* Full-bleed bands carry no side padding of their own — the inner
   container above provides the consistent inset. */
.cta-band.ln-cta-band { padding-left: 0; padding-right: 0; }

/* Even vertical rhythm between stacked sections */
.land-section { padding-top: clamp(52px, 7vw, 88px); padding-bottom: clamp(52px, 7vw, 88px); }
.ln-dark-in { padding-top: clamp(52px, 7vw, 88px); padding-bottom: clamp(52px, 7vw, 88px); }

/* ============================================================
   Auth pages — split-screen create-store / log-in
   ============================================================ */
body.auth-body { background: var(--obsidian); }
.auth {
  min-height: 100vh; display: flex; flex-direction: column; color: #fff;
  background: var(--obsidian);
  background-image:
    radial-gradient(circle 3px at 90% 8%, rgba(255,77,28,0.16) 3px, transparent 4px),
    radial-gradient(circle 2px at 12% 40%, rgba(155,226,143,0.12) 2px, transparent 3px);
}
.auth-nav { display: flex; align-items: center; gap: 22px; width: 100%; max-width: 1240px; margin: 0 auto; padding: 20px clamp(20px, 4vw, 40px); }
.auth-nav .brand { color: #fff; }
.auth-nav .ln-links { flex: 1; }
.auth-nav-cta { display: flex; align-items: center; gap: 16px; flex: none; }
.auth-nav-note { color: rgba(244,240,231,0.7); font-size: 0.9rem; }
@media (max-width: 720px) { .auth-nav .ln-links, .auth-nav-note { display: none; } }

.auth-main { flex: 1; width: 100%; max-width: 1240px; margin: 0 auto; padding: clamp(20px,3vw,40px) clamp(20px,4vw,40px) clamp(32px,4vw,56px); display: grid; gap: clamp(28px,4vw,64px); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 940px) { .auth-main { grid-template-columns: 1.05fr 0.95fr; } }

.auth-eyebrow { font: 700 0.72rem "DM Sans", sans-serif; letter-spacing: 0.14em; text-transform: uppercase; color: var(--signal); margin: 0 0 16px; }
.auth-h1 { color: #fff; font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: clamp(2.6rem, 5.6vw, 4.4rem); line-height: 0.98; letter-spacing: -0.035em; margin: 0 0 20px; }
.auth-h1 .hl { color: var(--signal); }
.auth-sub { color: rgba(244,240,231,0.82); font-size: 1.05rem; max-width: 40ch; margin: 0 0 24px; }
.auth-checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.auth-checklist li { position: relative; padding-left: 30px; color: rgba(244,240,231,0.9); font-weight: 600; font-size: 0.96rem; }
.auth-checklist li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 20px; height: 20px; border-radius: 99px; background: rgba(155,226,143,0.2); color: var(--mint); font-size: 0.72rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }

/* Form card */
.auth-card { background: #f7f2e9; color: var(--plum); border-radius: 22px; padding: clamp(24px, 3vw, 40px); box-shadow: 0 30px 80px rgba(0,0,0,0.4); align-self: stretch; }
.auth-card-h { font-family: "Bricolage Grotesque", sans-serif; font-size: clamp(1.5rem, 2.4vw, 1.9rem); letter-spacing: -0.02em; margin: 0 0 6px; }
.auth-card-sub { color: var(--muted); margin: 0 0 20px; font-size: 0.95rem; }
.auth-card label { margin-top: 16px; }
.auth-card label:first-of-type { margin-top: 0; }
.field-pw { position: relative; display: block; }
.field-pw input { padding-right: 44px; }
.pw-toggle { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); border: 0; background: transparent; cursor: pointer; font-size: 1rem; opacity: 0.55; padding: 6px; line-height: 1; }
.pw-toggle:hover, .pw-toggle.on { opacity: 1; }
.handle-field { display: flex; align-items: stretch; border: 1.5px solid var(--line); border-radius: 10px; background: #fff; overflow: hidden; }
.handle-field input { border: 0; border-radius: 0; }
.handle-field input:focus-visible { outline: 2px solid var(--signal); outline-offset: -2px; }
.handle-suffix { display: flex; align-items: center; padding: 0 14px; background: var(--bone); color: var(--muted); font-size: 0.9rem; font-weight: 600; white-space: nowrap; border-left: 1px solid var(--line); }
.auth-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 14px; }
.auth-check { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 600; margin: 0; }
.auth-check input { width: auto; }
.auth-forgot { color: var(--signal-ink); font-weight: 700; font-size: 0.9rem; text-decoration: none; }
.auth-alt { text-align: center; color: var(--muted); font-size: 0.92rem; margin: 16px 0 0; }
.auth-alt a { color: var(--signal-ink); font-weight: 700; text-decoration: none; }

/* Foot bar */
.auth-foot { border-top: 1px solid rgba(255,255,255,0.08); }
.auth-foot > * { max-width: 1240px; margin: 0 auto; padding: 16px clamp(20px,4vw,40px); }
.auth-pay { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.auth-pay-label { color: rgba(244,240,231,0.5); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.62rem; font-weight: 700; line-height: 1.3; }
.auth-pay-logos { height: 20px; width: auto; display: block; }
.auth-pay-verve { color: #fff; font-weight: 800; font-style: italic; font-size: 0.95rem; letter-spacing: -0.02em; }
.auth-pay-note { margin-left: auto; color: rgba(244,240,231,0.7); font-size: 0.85rem; }
.auth-legal { display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.06); color: rgba(244,240,231,0.5); font-size: 0.82rem; }
.auth-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.auth-legal a { color: rgba(244,240,231,0.5); text-decoration: none; }
.auth-legal a:hover { color: #fff; }

/* Decorative mockups */
.auth-mock { position: relative; margin-top: 34px; container-type: inline-size; max-width: 440px; }
@media (max-width: 939px) {
  .auth .auth-mock { display: none; }
  .auth-card { order: -1; }
}
.auth-scribble { position: absolute; z-index: 3; font-family: "Bricolage Grotesque", cursive; font-style: italic; color: var(--signal); font-size: 4cqw; line-height: 1.15; font-weight: 600; }
.as-store { left: -8cqw; bottom: 18cqw; transform: rotate(-8deg); }
.as-dash { left: -6cqw; bottom: 8cqw; transform: rotate(-8deg); }

/* register store mock */
.am-store { background: #fff; border-radius: 5cqw; padding: 5cqw; color: var(--plum); box-shadow: 0 30px 70px rgba(0,0,0,0.45); }
.am-store-head { display: flex; align-items: flex-start; gap: 3cqw; }
.am-avatar { width: 13cqw; height: 13cqw; border-radius: 99px; overflow: hidden; flex: none; }
.am-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.am-store-id { flex: 1; min-width: 0; }
.am-store-id b { font-family: "Bricolage Grotesque", sans-serif; font-size: 4cqw; display: block; }
.am-store-id > span { font-size: 2.8cqw; color: var(--muted); display: block; }
.am-socials { display: flex; gap: 1.6cqw; margin-top: 2cqw; }
.am-socials i { width: 4cqw; height: 4cqw; border-radius: 99px; background: var(--bone); display: block; }
.am-visit { background: var(--signal); color: #fff; font-size: 2.8cqw; font-weight: 700; padding: 1.6cqw 3cqw; border-radius: 99px; flex: none; }
.am-tabs { display: flex; gap: 4cqw; margin: 4cqw 0 3cqw; font-size: 2.9cqw; color: var(--muted); border-bottom: 1px solid var(--line); padding-bottom: 2cqw; }
.am-tabs .on { color: var(--plum); font-weight: 700; }
.am-prods { display: grid; grid-template-columns: 1fr 1fr; gap: 3cqw; }
.am-prod { display: flex; flex-direction: column; }
.am-prod img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 2.4cqw; display: block; }
.am-prod > b { font-size: 3cqw; margin-top: 2cqw; }
.am-prod > span { font-size: 2.5cqw; color: var(--muted); margin-top: 0.6cqw; line-height: 1.3; }
.am-price { font-size: 3.4cqw; margin-top: 1.6cqw; }
.am-cart { background: var(--signal); color: #fff; text-align: center; font-size: 2.7cqw; font-weight: 700; padding: 1.8cqw; border-radius: 99px; margin-top: 2cqw; }

/* login dashboard mock */
.am-dash { display: flex; background: #fff; border-radius: 4cqw; overflow: hidden; color: var(--plum); box-shadow: 0 30px 70px rgba(0,0,0,0.45); }
.am-dash-side { width: 26cqw; flex: none; background: var(--obsidian); padding: 3cqw 2.4cqw; display: flex; flex-direction: column; gap: 1cqw; }
.am-dash-logo { width: 6cqw; height: 6cqw; border-radius: 1.8cqw; background: var(--signal); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1.6cqw; }
.am-dash-logo svg { width: 4cqw; height: 4cqw; }
.am-dl { color: rgba(244,240,231,0.6); font-size: 2.5cqw; padding: 1.2cqw 1.6cqw; border-radius: 1.4cqw; }
.am-dl.on { background: rgba(255,77,28,0.16); color: #fff; font-weight: 700; }
.am-dash-main { flex: 1; min-width: 0; padding: 3.4cqw; }
.am-dash-hi { font-family: "Bricolage Grotesque", sans-serif; font-size: 3.6cqw; display: block; }
.am-dash-note { font-size: 2.5cqw; color: var(--muted); display: block; margin-bottom: 3cqw; }
.am-dash-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 2cqw; margin-bottom: 3cqw; }
.am-ds { border: 1px solid var(--line); border-radius: 2.4cqw; padding: 2.2cqw; }
.am-ds span { font-size: 2.1cqw; color: var(--muted); display: block; }
.am-ds b { font-family: "Bricolage Grotesque", sans-serif; font-size: 3cqw; display: block; letter-spacing: -0.02em; }
.am-ds em { font-size: 2cqw; color: var(--green); font-style: normal; font-weight: 700; }
.am-dash-orders { border: 1px solid var(--line); border-radius: 2.4cqw; padding: 2.6cqw; }
.am-do-head { display: flex; justify-content: space-between; font-size: 2.4cqw; margin-bottom: 2cqw; }
.am-do-head span:first-child { font-weight: 700; }
.am-do-all { color: var(--signal-ink); }
.am-do { display: flex; align-items: center; gap: 2cqw; font-size: 2.5cqw; padding: 1.4cqw 0; border-top: 1px solid var(--line); }
.am-do-ic { width: 4.5cqw; height: 4.5cqw; border-radius: 1.2cqw; background: var(--bone); flex: none; }
.am-do-name { flex: 1; font-weight: 600; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.am-do-t { color: var(--muted); font-size: 2.1cqw; }
.am-do b { font-size: 2.5cqw; }

/* ============================================================
   Seller top-bar chrome + dashboard (Concept A)
   ============================================================ */
.topbar-chrome { display: flex; align-items: center; gap: 10px; flex: none; margin-left: auto; }
.tb-store { display: inline-flex; align-items: center; gap: 8px; background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 7px 12px; font-size: 0.86rem; }
.tb-store svg { width: 16px; height: 16px; fill: none; stroke: var(--muted); stroke-width: 1.6; }
.tb-store b { font-weight: 700; max-width: 170px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tb-ic { width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--line); background: var(--surface); display: inline-flex; align-items: center; justify-content: center; color: var(--muted); }
.tb-ic svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.tb-ic:hover { color: var(--plum); border-color: var(--line-strong); }
.tb-user { display: inline-flex; align-items: center; gap: 9px; }
.tb-av { width: 34px; height: 34px; border-radius: 99px; background: var(--obsidian); color: #fff; display: inline-flex; align-items: center; justify-content: center; font: 800 0.8rem "Bricolage Grotesque", sans-serif; }
.tb-name { font-weight: 700; font-size: 0.9rem; max-width: 140px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@media (max-width: 760px) { .tb-store, .tb-name { display: none; } }

/* Dashboard header */
.dash-head { display: grid; gap: 18px; grid-template-columns: 1fr; margin-bottom: 20px; align-items: start; }
@media (min-width: 1100px) { .dash-head { grid-template-columns: 1fr auto minmax(320px, 380px); } }
.dash-hi { color: var(--muted); font-weight: 600; margin: 0 0 6px; font-size: 0.95rem; }
.dash-h { font-family: "Bricolage Grotesque", sans-serif; font-size: clamp(1.9rem, 3.2vw, 2.7rem); letter-spacing: -0.025em; line-height: 1.04; margin: 0 0 8px; }
.dash-sub { margin: 0; }
.dash-add { align-self: start; white-space: nowrap; padding-left: 22px; padding-right: 22px; }
.dash-add-plus { font-weight: 400; margin-right: 2px; }
.dash-sharecard { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 16px; box-shadow: var(--shadow); }
.dash-share-label { font-size: 0.8rem; color: var(--muted); margin: 0 0 8px; }
.dash-share-btns { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.dash-sb { display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--line); border-radius: 99px; padding: 6px 12px; font-size: 0.8rem; font-weight: 600; color: var(--plum); text-decoration: none; background: var(--surface); cursor: pointer; }
.dash-sb:hover { border-color: var(--line-strong); }
.dash-sb-ic.wa { color: #25d366; } .dash-sb-ic.ig { color: #d6249f; } .dash-sb-ic.x { color: var(--plum); }

/* Stat cards */
.dash-stats { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; margin-bottom: 18px; }
@media (min-width: 900px) { .dash-stats { grid-template-columns: repeat(4, 1fr); } }
.acard-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 6px; }
.acard-ic { width: 34px; height: 34px; border-radius: 9px; background: var(--bone); display: inline-flex; align-items: center; justify-content: center; font-size: 1rem; }
.acard.accent .acard-ic { background: #fff; }
.delta { font-weight: 700; }
.delta.up { color: var(--green); }
.delta.down { color: var(--signal-ink); }

/* Rows */
.dash-row { display: grid; gap: 16px; grid-template-columns: 1fr; margin-bottom: 16px; }
@media (min-width: 1000px) { .dash-row-a, .dash-row-b { grid-template-columns: 1.7fr 1fr; align-items: start; } }
.dash-side { display: flex; flex-direction: column; gap: 16px; }
.dash-chart-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.dash-panel-h { font-family: "Bricolage Grotesque", sans-serif; font-size: 1.05rem; margin: 0; letter-spacing: -0.01em; }
.dash-range { font-size: 0.8rem; color: var(--muted); border: 1px solid var(--line); border-radius: 99px; padding: 5px 12px; }
.dash-all { color: var(--signal-ink); font-weight: 700; font-size: 0.85rem; text-decoration: none; white-space: nowrap; }

/* Chart */
.dchart { display: grid; grid-template-columns: 44px 1fr; grid-template-rows: 1fr auto; gap: 6px 8px; }
.dchart-y { grid-column: 1; grid-row: 1; display: flex; flex-direction: column; justify-content: space-between; font-size: 0.7rem; color: var(--muted); text-align: right; padding: 4px 6px 4px 0; }
.dchart-plot { grid-column: 2; grid-row: 1; position: relative; height: 230px; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.dchart-plot svg { width: 100%; height: 100%; display: block; }
.dchart-x { grid-column: 2; grid-row: 2; display: flex; justify-content: space-between; font-size: 0.7rem; color: var(--muted); }
.dchart-dot { position: absolute; width: 9px; height: 9px; border-radius: 99px; background: var(--signal); border: 2px solid #fff; transform: translate(-50%, -50%); box-shadow: 0 2px 6px rgba(0,0,0,0.25); }
.dchart-tip { position: absolute; transform: translate(-50%, -150%); background: var(--obsidian); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 5px 9px; border-radius: 8px; white-space: nowrap; }

/* Top products */
.dash-top { display: flex; flex-direction: column; gap: 14px; }
.dash-top-row { display: flex; align-items: center; gap: 12px; }
.dash-top-rank { width: 18px; color: var(--muted); font-weight: 700; font-size: 0.85rem; flex: none; text-align: center; }
.dash-top-cover { width: 40px; height: 40px; border-radius: 8px; overflow: hidden; background: var(--bone); flex: none; }
.dash-top-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dash-top-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.dash-top-info b { font-size: 0.92rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dash-top-info span { font-size: 0.78rem; color: var(--muted); }
.dash-top-fig { text-align: right; display: flex; flex-direction: column; flex: none; }
.dash-top-fig b { font-size: 0.92rem; }
.dash-top-fig span { font-size: 0.76rem; color: var(--muted); }

/* Recent orders table on dashboard */
.dash-orders { min-width: 480px; }

/* Settlement + quick actions */
.dash-settle { display: flex; gap: 12px; align-items: flex-start; background: var(--mint-tint); border-radius: 12px; padding: 14px; }
.dash-settle-ok { width: 26px; height: 26px; border-radius: 99px; background: var(--green); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.78rem; flex: none; }
.dash-settle b { display: block; color: var(--green); font-size: 0.92rem; margin-bottom: 2px; }
.dash-settle .soft { font-size: 0.85rem; }
.dash-paystack { color: var(--muted); font-size: 0.8rem; font-weight: 700; }
.dash-qa { display: flex; flex-direction: column; gap: 8px; }
.dash-qa-item { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border: 1px solid var(--line); border-radius: 10px; text-decoration: none; color: var(--plum); font-weight: 600; font-size: 0.9rem; }
.dash-qa-item:hover { border-color: var(--signal); background: var(--bone); }
.dash-qa-item span { width: 20px; text-align: center; flex: none; }

/* Creator story (bold + aligned to the shared landing width) */
.ln-creator { max-width: var(--ln-w); display: grid; gap: 40px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .ln-creator { grid-template-columns: 340px 1fr 300px; gap: 52px; } }
.ln-creator-photo { width: 100%; aspect-ratio: 5/4; object-fit: cover; object-position: center; border-radius: 18px; box-shadow: 0 22px 55px rgba(16, 20, 18, 0.2); display: block; }
.ln-creator-body h2 { margin: 6px 0 12px; }
.ln-creator-body .btn { margin-top: 18px; }
.ln-creator-covers img { display: block; }
.ln-creator-covers p { font-size: 0.84rem; margin: 0; }

/* FAQ head row */
.ln-faq-head { display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: baseline; justify-content: space-between; margin-bottom: 24px; }
.ln-faq-contact { margin: 0; color: var(--muted); font-size: 0.9rem; }
.ln-faq-contact a { color: var(--signal-ink); text-decoration: none; font-weight: 700; }

/* Footer — full columns + social + base bar */
.ln-footer { max-width: var(--ln-w); grid-template-columns: 1.6fr repeat(3, 1fr) auto; align-items: start; }
@media (max-width: 760px) { .ln-footer { grid-template-columns: 1fr 1fr; } }
.ln-foot-social { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.ln-socials { display: flex; gap: 10px; }
.ln-socials span { width: 30px; height: 30px; border-radius: 8px; background: var(--surface); border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center; font-size: 0.9rem; }
.ln-region { font-size: 0.85rem; color: var(--muted); }
.ln-foot-base { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; border-top: 1px solid var(--line); margin-top: 20px; padding: 18px 0 8px; color: var(--muted); font-size: 0.82rem; }

/* ============================================================
   Cinematic landing system  (reusable — see PRODUCT.md brand)
   Two full-height "stage" sections with a warm crossfade
   backdrop, Oja's warm-frost surfaces, and blur-in type.
   Everything namespaced under .cine* so it can be dropped onto
   any brand-register (marketing) page without touching Product
   screens. NOT for money-touching surfaces.
   ============================================================ */

/* --- Warm frost: Oja's answer to "liquid glass". Blush-tinted,
   warm inner highlight, gold→coral edge. Reads as Oja, never
   cold fintech glass. Two weights: .frost (chrome) / .frost-2
   (heavier blur, for the primary CTA & stat cards). --- */
.frost {
  position: relative;
  background: rgba(252, 239, 233, 0.06);
  -webkit-backdrop-filter: blur(6px) saturate(1.3);
  backdrop-filter: blur(6px) saturate(1.3);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.16);
  overflow: hidden;
}
.frost-2 {
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  backdrop-filter: blur(24px) saturate(1.3);
  box-shadow: 0 8px 24px rgba(42, 18, 36, 0.28),
              inset 0 1px 1px rgba(255, 255, 255, 0.22);
}
/* Warm edge highlight — the liquid-glass rim, retuned gold/coral */
.frost::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  padding: 1.3px; pointer-events: none;
  background: linear-gradient(150deg,
    rgba(231, 169, 59, 0.55) 0%,
    rgba(255, 90, 54, 0.28) 24%,
    rgba(255, 255, 255, 0) 46%,
    rgba(255, 255, 255, 0) 60%,
    rgba(252, 239, 233, 0.30) 82%,
    rgba(231, 169, 59, 0.50) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask-composite: exclude;
}

/* --- Stage shell: full-height, black-plum base, layered --- */
.cine {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column;
  background: #140812;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.cine-stage { position: absolute; inset: 0; z-index: 0; }
/* Each scene is a full-bleed layer; JS crossfades opacity between
   them (the vanilla generalization of the brief's FadingVideo).
   Default scenes are warm gradients — cinematic at zero data cost.
   A scene may also hold a <video> (data-video), played on activate. */
.cine-scene {
  position: absolute; inset: 0; opacity: 0;
  background-size: cover; background-position: center;
  will-change: opacity;
}
.cine-scene video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.cine-scene.s-dusk {
  background:
    radial-gradient(120% 90% at 20% 0%, #5a1d3f 0%, transparent 55%),
    radial-gradient(120% 100% at 90% 20%, #7a2a1a 0%, transparent 50%),
    linear-gradient(180deg, #3a1330 0%, #140812 78%);
}
.cine-scene.s-market {
  background:
    radial-gradient(100% 80% at 78% 8%, #b9772a 0%, transparent 52%),
    radial-gradient(120% 90% at 12% 30%, #6a1f36 0%, transparent 55%),
    linear-gradient(180deg, #4a2140 0%, #140812 80%);
}
.cine-scene.s-dawn {
  background:
    radial-gradient(110% 80% at 30% 6%, #d1502f 0%, transparent 50%),
    radial-gradient(120% 90% at 88% 30%, #7c4a1f 0%, transparent 52%),
    linear-gradient(180deg, #4a2140 0%, #140812 82%);
}
/* Slow drift gives the gradient scenes a "living" cinematic feel */
@media (prefers-reduced-motion: no-preference) {
  .cine-scene { animation: cineDrift 26s ease-in-out infinite alternate; }
  .cine-scene.s-market { animation-duration: 30s; }
  .cine-scene.s-dawn { animation-duration: 34s; }
}
@keyframes cineDrift {
  from { transform: scale(1.06) translate3d(-1.5%, -1%, 0); }
  to   { transform: scale(1.12) translate3d(1.5%, 1.5%, 0); }
}

/* Drifting confetti-dot motif (Oja's signature) over the scenes */
.cine-dots {
  position: absolute; inset: -20%; z-index: 1; pointer-events: none;
  background-image:
    radial-gradient(circle 3px at 12% 18%, rgba(255,90,54,0.55) 3px, transparent 4px),
    radial-gradient(circle 3px at 85% 12%, rgba(231,169,59,0.55) 3px, transparent 4px),
    radial-gradient(circle 2px at 70% 40%, rgba(252,239,233,0.35) 2px, transparent 3px),
    radial-gradient(circle 3px at 25% 65%, rgba(231,169,59,0.45) 3px, transparent 4px),
    radial-gradient(circle 2px at 92% 60%, rgba(255,90,54,0.50) 2px, transparent 3px),
    radial-gradient(circle 2px at 45% 82%, rgba(252,239,233,0.30) 2px, transparent 3px);
}
@media (prefers-reduced-motion: no-preference) {
  .cine-dots { animation: cineDots 40s linear infinite; }
}
@keyframes cineDots {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(3%, 4%, 0); }
}

/* Warm scrim guarantees text contrast over any scene (WCAG) */
.cine-scrim {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg,
    rgba(20, 8, 18, 0.30) 0%,
    rgba(20, 8, 18, 0.10) 34%,
    rgba(20, 8, 18, 0.55) 82%,
    rgba(20, 8, 18, 0.86) 100%);
}
.cine-inner { position: relative; z-index: 3; display: flex; flex-direction: column;
  flex: 1; width: 100%; }

/* --- Cinematic nav (transparent, scrolls away with the hero) --- */
.cine-nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 18px clamp(16px, 4vw, 40px);
}
.cine-logo {
  width: 46px; height: 46px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 800;
  font-size: 1.4rem; color: #fff; text-decoration: none; flex: none;
}
.cine-navlinks { display: none; }
@media (min-width: 900px) {
  .cine-navlinks {
    display: flex; align-items: center; gap: 2px;
    padding: 6px; border-radius: 999px;
  }
  .cine-navlinks a {
    color: rgba(255,255,255,0.9); text-decoration: none;
    font: 600 0.88rem "DM Sans", sans-serif;
    padding: 8px 14px; border-radius: 999px;
  }
  .cine-navlinks a:hover { color: #fff; background: rgba(255,255,255,0.08); }
}
.cine-nav .btn { white-space: nowrap; }

/* --- Hero content --- */
.cine-hero {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: clamp(24px, 6vw, 56px) clamp(16px, 4vw, 40px) clamp(28px, 5vw, 48px);
}
.cine-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 6px 6px 6px; border-radius: 999px;
  font: 500 0.82rem "DM Sans", sans-serif; color: rgba(255,255,255,0.92);
  margin-bottom: clamp(18px, 4vw, 28px);
}
.cine-chip .tag {
  background: #fff; color: var(--plum); border-radius: 999px;
  padding: 3px 10px; font-weight: 800; font-size: 0.72rem;
}
.cine-chip .txt { padding-right: 10px; }
.cine-h1 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800; color: #fff;
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  line-height: 0.98; letter-spacing: -0.035em;
  max-width: 15ch; margin: 0 0 clamp(16px, 3vw, 22px);
  text-wrap: balance;
}
.cine-sub {
  color: #f0dfe8; font: 400 clamp(1rem, 2.2vw, 1.15rem) "DM Sans", sans-serif;
  line-height: 1.5; max-width: 56ch; margin: 0 0 clamp(24px, 4vw, 30px);
}
.cine-cta-row {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: clamp(14px, 3vw, 22px); justify-content: center;
}
.cine-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 999px;
  font: 700 1rem "DM Sans", sans-serif; text-decoration: none;
  color: #fff; cursor: pointer;
}
.cine-cta svg { width: 20px; height: 20px; flex: none; }
.cine-cta.ghost { color: #fff; padding: 13px 6px; }
.cine-cta.ghost .play {
  width: 30px; height: 30px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.14);
}
.cine-cta:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }

/* --- Stat cards --- */
.cine-stats { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  margin-top: clamp(30px, 5vw, 44px); }
.cine-stat {
  border-radius: 20px; padding: 18px 20px;
  width: min(240px, 78vw); text-align: left;
  display: flex; flex-direction: column; gap: 12px;
}
.cine-stat .ic {
  width: 34px; height: 34px; color: #fff;
}
.cine-stat .ic svg { width: 26px; height: 26px; }
.cine-stat .num {
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.1rem); line-height: 1; letter-spacing: -0.02em;
  color: #fff;
}
.cine-stat .lbl { font: 400 0.8rem "DM Sans", sans-serif; color: #e3cdda; }

/* --- Trust / makers strip --- */
.cine-trust {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  padding: 0 20px clamp(28px, 5vw, 40px);
}
.cine-trust .chip {
  border-radius: 999px; padding: 7px 16px;
  font: 500 0.78rem "DM Sans", sans-serif; color: #fff;
}
.cine-makers {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(20px, 5vw, 48px);
}
.cine-makers span {
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 600;
  font-size: clamp(1.3rem, 3vw, 1.8rem); color: rgba(255,255,255,0.92);
  letter-spacing: -0.01em;
}

/* --- Section 2: capabilities --- */
.cine-cap { justify-content: flex-start; }
.cine-cap-inner {
  padding: clamp(84px, 12vw, 120px) clamp(20px, 5vw, 56px) clamp(40px, 6vw, 64px);
  width: 100%; max-width: 1200px; margin: 0 auto;
}
.cine-kicker { font: 500 0.9rem "DM Sans", sans-serif; color: rgba(255,255,255,0.8);
  margin: 0 0 clamp(18px, 3vw, 26px); }
.cine-cap-h {
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; color: #fff;
  font-size: clamp(2.4rem, 7vw, 4.4rem); line-height: 0.94; letter-spacing: -0.03em;
  margin: 0 0 clamp(36px, 6vw, 56px);
}
.cap-grid {
  display: grid; gap: 18px; grid-template-columns: 1fr;
}
@media (min-width: 700px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
.cap-card {
  border-radius: 22px; padding: 24px;
  min-height: 300px; display: flex; flex-direction: column;
}
.cap-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.cap-ic {
  width: 46px; height: 46px; border-radius: 13px; flex: none;
  display: flex; align-items: center; justify-content: center;
}
.cap-ic svg { width: 24px; height: 24px; color: #fff; }
.cap-tags { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 6px; max-width: 72%; }
.cap-tag {
  border-radius: 999px; padding: 4px 11px; white-space: nowrap;
  font: 500 0.7rem "DM Sans", sans-serif; color: rgba(255,255,255,0.92);
}
.cap-bottom { margin-top: auto; padding-top: 26px; }
.cap-bottom h3 {
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; color: #fff;
  font-size: clamp(1.5rem, 3vw, 1.9rem); line-height: 1; letter-spacing: -0.02em;
  margin: 0;
}
.cap-bottom p {
  margin: 12px 0 0; max-width: 34ch;
  font: 400 0.92rem "DM Sans", sans-serif; color: #ecd9e4; line-height: 1.5;
}

/* Reduced motion: hold on the last-active scene, no drift */
@media (prefers-reduced-motion: reduce) {
  .cine-scene, .cine-dots { animation: none !important; }
}

/* ---- Legal / policy pages ---------------------------------------------- */
.legal { max-width: 760px; margin: 0 auto; padding: 28px 20px 64px; }
.legal .eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--coral-ink); margin: 0 0 6px;
}
.legal h1 { font-size: clamp(1.6rem, 5vw, 2.1rem); margin: 0 0 6px; }
.legal .updated { color: var(--muted); font-size: 0.9rem; margin: 0 0 24px; }
.legal .lede {
  font-size: 1.05rem; line-height: 1.6; color: var(--plum2);
  border-left: 3px solid var(--coral); padding-left: 14px; margin: 0 0 28px;
}
.legal h2 {
  font-size: 1.15rem; margin: 30px 0 10px; padding-top: 20px;
  border-top: 1px solid var(--line);
}
.legal h2:first-of-type { border-top: 0; padding-top: 0; }
.legal p, .legal li { line-height: 1.65; }
.legal ul { padding-left: 20px; margin: 8px 0 14px; }
.legal li { margin: 5px 0; }
.legal a { font-weight: 600; }
.legal .note {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 16px; margin: 20px 0; font-size: 0.95rem;
}

/* ── Superadmin: unified approvals queue ─────────────────────────── */
.ap-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 22px; height: 22px; padding: 0 7px; margin-left: 6px;
  border-radius: 999px; background: var(--signal); color: #fff;
  font: 800 0.75rem "DM Sans", sans-serif; vertical-align: middle;
}
.ap-list { margin-top: 6px; }
.ap-item {
  display: flex; flex-wrap: wrap; gap: 12px 16px; align-items: flex-start;
  justify-content: space-between; padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.ap-item:last-child { border-bottom: 0; }
.ap-item.ap-recent { padding: 11px 0; }
.ap-main { flex: 1; min-width: 240px; }
.ap-head { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 6px; }
.ap-time { color: var(--muted); font-size: 0.78rem; margin-left: auto; }
.ap-kind {
  display: inline-flex; align-items: center; padding: 2px 9px; border-radius: 999px;
  font: 800 0.68rem "DM Sans", sans-serif; letter-spacing: 0.02em;
  text-transform: uppercase; background: var(--bone); color: var(--muted);
  border: 1px solid var(--line);
}
.ap-kind-payout { background: #eef2fb; color: #37507e; border-color: #dbe3f4; }
.ap-kind-wallet_migration { background: #f1ecfb; color: #5a3f8e; border-color: #e5dcf6; }
.ap-kind-withdrawal { background: var(--mint-tint); color: var(--green); border-color: #cfe9c9; }
.ap-explain { margin: 0 0 8px; line-height: 1.5; font-size: 0.95rem; }
.ap-detail { font-size: 0.88rem; color: var(--plum); margin: 2px 0; }
.ap-detail .t-sub { display: inline; }
.ap-note {
  margin-top: 6px; font-size: 0.83rem; color: var(--signal-ink);
  background: #f6ded4; border-radius: 8px; padding: 6px 10px;
}
.ap-actions { display: flex; flex-direction: column; gap: 8px; align-items: stretch; min-width: 120px; }
.ap-actions .btn { white-space: nowrap; }
.ap-actions .btn:disabled { opacity: 0.5; cursor: not-allowed; }
@media (max-width: 560px) {
  .ap-actions { flex-direction: row; width: 100%; }
  .ap-actions .btn { flex: 1; }
}
