/* Indie Showcase — Marquee direction, extended components for full screen set.
   Loads after directions.css; everything lives inside .pp.dir-marquee wrappers. */

/* ---------- extra key-art gradients ---------- */
.art-emberwick { background:
  radial-gradient(90% 80% at 30% 20%, #e8a14e 0%, rgba(232,161,78,0) 50%),
  linear-gradient(160deg, #6b3c1c 0%, #3c2010 55%, #241208 100%); }
.art-staticbloom { background:
  radial-gradient(80% 90% at 75% 15%, #d052b8 0%, rgba(208,82,184,0) 52%),
  linear-gradient(165deg, #43164f 0%, #250a30 55%, #16061f 100%); }
.art-bogstandard { background:
  radial-gradient(90% 80% at 22% 14%, #a8b54a 0%, rgba(168,181,74,0) 50%),
  linear-gradient(160deg, #4a5a22 0%, #2a3613 55%, #1a220c 100%); }
.art-skylark { background:
  radial-gradient(90% 90% at 75% 20%, #f4b8a0 0%, rgba(244,184,160,0) 55%),
  linear-gradient(170deg, #5a90c4 0%, #38628e 55%, #25415f 100%); }
.art-marrow { background:
  radial-gradient(80% 80% at 25% 18%, #d8c8b4 0%, rgba(216,200,180,0) 50%),
  linear-gradient(160deg, #7a4444 0%, #4c2828 55%, #2e1818 100%); }

/* ---------- footer ---------- */
.ftr {
  border-top: 2px solid var(--line);
  padding: 22px 32px;
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  flex-wrap: wrap;
}
.ftr .ftr-brand { color: var(--ink); font-family: var(--font-title); font-weight: var(--title-weight); font-size: 15px; margin-right: auto; }

/* ---------- home hero ---------- */
.hero {
  text-align: center;
  padding: 74px 32px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.hero h1 {
  font-family: var(--font-title);
  font-weight: var(--title-weight);
  letter-spacing: var(--title-spacing);
  font-size: 58px;
  line-height: 1.04;
  margin: 0;
  max-width: 880px;
  text-wrap: balance;
}
.hero .sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 620px;
  text-wrap: pretty;
}
.hero-cta { display: flex; gap: 14px; margin-top: 10px; }
.hero-cta .btn { padding: 0 26px; height: 50px; font-size: 15.5px; }

/* ---------- shelves ---------- */
.shelfwrap { max-width: 1376px; margin: 0 auto; padding: 26px 32px; }
.shelf4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.shelf3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.promo-panel {
  background: var(--warm-bg);
  border: 2px solid var(--warm);
  border-radius: var(--radius-lg);
  padding: 22px 24px 26px;
}
.promo-panel .shelf-sub { color: var(--ink); opacity: .75; }
.promo-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-top: 16px; align-items: stretch; }
.promo-slot {
  border: 2px dashed var(--warm);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  padding: 20px;
  color: var(--warm);
}
.promo-slot .ps-t { font-weight: 800; font-size: 15px; }
.promo-slot .ps-d { font-size: 12.5px; }

.see-all {
  display: inline-block;
  margin-top: 18px;
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- for-developers strip ---------- */
.devstrip { background: var(--surface); border-top: 2px solid var(--line); }
.devstrip-inner { max-width: 1376px; margin: 0 auto; padding: 48px 32px 54px; text-align: center; }
.devstrip h2 {
  font-family: var(--font-title);
  font-weight: var(--title-weight);
  letter-spacing: var(--title-spacing);
  font-size: 34px;
  margin: 0 0 28px;
}
.dev3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; text-align: left; }
.dev3 .blk {
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg);
  padding: 20px 22px;
  box-shadow: var(--card-shadow);
}
.dev3 .blk h3 { margin: 0 0 8px; font-size: 16.5px; font-weight: 800; }
.dev3 .blk p { font-size: 14px; color: var(--muted); text-wrap: pretty; }
.dev-close { margin: 30px auto 18px; font-size: 16px; max-width: 560px; text-wrap: pretty; font-weight: 600; }

/* ---------- filter bar ---------- */
.fbar {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  padding: 12px 14px;
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
}
.fbar .fsearch {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 12px;
  font-size: 13.5px;
  color: var(--muted);
  min-width: 220px;
}
.fbar .fdrop {
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  background: var(--bg);
  white-space: nowrap;
}
.fbar .fdrop .car { font-size: 9px; opacity: .6; }
.fbar .ftoggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 99px;
  border: 1.5px solid #1c6b2e;
  color: #1c6b2e;
  background: #e3f4e6;
  white-space: nowrap;
}
.fbar .ftoggle.cool-t { border-color: var(--cool); color: var(--cool); background: var(--cool-bg); }
.fbar .fclear { margin-left: auto; font-size: 13px; font-weight: 700; text-decoration: underline; white-space: nowrap; }

/* ---------- browse page ---------- */
.pagehead { max-width: 1376px; margin: 0 auto; padding: 36px 32px 18px; }
.pagehead h1 {
  font-family: var(--font-title);
  font-weight: var(--title-weight);
  letter-spacing: var(--title-spacing);
  font-size: 40px;
  margin: 0 0 8px;
}
.pagehead .intro { color: var(--muted); font-size: 16px; max-width: 620px; text-wrap: pretty; }
.results-bar {
  max-width: 1376px;
  margin: 0 auto;
  padding: 18px 32px 4px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--muted);
}
.results-bar .cnt strong { color: var(--ink); }
.results-bar .sort { display: flex; gap: 8px; align-items: baseline; }
.results-bar .sort .fdrop { border: 1.5px solid var(--line); border-radius: var(--radius); padding: 6px 10px; font-weight: 700; color: var(--ink); background: var(--bg); }
.bgrid {
  max-width: 1376px;
  margin: 0 auto;
  padding: 14px 32px 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pgn {
  max-width: 1376px;
  margin: 0 auto;
  padding: 26px 32px 36px;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
.pgn .pg {
  min-width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-size: 13.5px;
  font-weight: 700;
  background: var(--bg);
  padding: 0 10px;
}
.pgn .pg.cur { background: var(--ink); color: var(--bg); }
.lowdensity {
  max-width: 1376px;
  margin: 0 auto 8px;
  padding: 0 32px;
}
.lowdensity .ld-inner {
  border: 2px dashed var(--line);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  font-size: 13.5px;
  color: var(--muted);
  text-align: center;
}

/* ---------- forms / editor ---------- */
.edwrap {
  max-width: 1376px;
  margin: 0 auto;
  padding: 30px 32px 44px;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 36px;
  align-items: start;
}
.ed-welcome { font-size: 15px; color: var(--muted); margin-bottom: 18px; max-width: 620px; text-wrap: pretty; }
.callout {
  border: 2px solid var(--cool);
  background: var(--cool-bg);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  font-size: 13.5px;
  margin-bottom: 24px;
  text-wrap: pretty;
}
.callout .co-t { font-weight: 800; margin-bottom: 4px; color: var(--cool); font-size: 12px; text-transform: uppercase; letter-spacing: .07em; }
.fsec { border: 2px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--card-shadow); padding: 22px 24px; margin-bottom: 22px; }
.fsec h3 {
  margin: 0 0 16px;
  font-family: var(--font-title);
  font-weight: var(--title-weight);
  font-size: 20px;
  letter-spacing: var(--title-spacing);
}
.f-row { margin-bottom: 18px; }
.f-row:last-child { margin-bottom: 0; }
.f-label { display: flex; justify-content: space-between; align-items: baseline; font-size: 13px; font-weight: 800; margin-bottom: 6px; }
.f-label .req { color: var(--warm); font-size: 11px; font-weight: 700; }
.f-input {
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  padding: 10px 12px;
  font-size: 14px;
  font-family: var(--font-ui);
  color: var(--ink);
  width: 100%;
}
.f-input.ph { color: var(--muted); }
.f-input.area { min-height: 64px; }
.f-help { font-size: 12.5px; color: var(--muted); margin-top: 6px; text-wrap: pretty; }
.f-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.upload {
  border: 2px dashed var(--line);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1200/420;
  display: flex; align-items: flex-end;
}
.upload .up-note {
  position: relative;
  margin: 12px;
  font-size: 12px;
  color: #fff;
  background: rgba(8,10,8,.55);
  border-radius: 99px;
  padding: 4px 12px;
}
.upload .up-act {
  font-size: 11.5px;
  font-weight: 700;
  color: #fff;
  background: rgba(8,10,8,.55);
  border: 1.5px solid rgba(255,255,255,.5);
  border-radius: 99px;
  padding: 3px 10px;
  cursor: pointer;
  line-height: 1.4;
  white-space: nowrap;
}
.upload .up-act:hover { background: rgba(8,10,8,.8); }

/* visibility toggle */
.vtg { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.vtg-btns { display: inline-flex; border: 1.5px solid var(--ink); border-radius: var(--radius); overflow: hidden; width: fit-content; }
.vtg-btns .vb {
  padding: 7px 14px;
  font-size: 12.5px;
  font-weight: 700;
  background: var(--bg);
  color: var(--muted);
  border: none;
}
.vtg-btns .vb.on { background: var(--ink); color: var(--bg); }
.vtg-exp { font-size: 12px; color: var(--muted); text-wrap: pretty; }

.ed-actions { display: flex; gap: 12px; align-items: center; }
.ed-actions .btn { padding: 0 22px; }
.btn-ghost { background: transparent; border: none; font-weight: 700; text-decoration: underline; font-size: 14px; color: var(--ink); }

/* live preview column */
.prevcol { position: relative; }
.prev-tag { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 10px; }
.prevcard { border: 2px solid var(--ink); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--card-shadow); background: var(--surface); }
.prevcard .pv-art { aspect-ratio: 16/8; position: relative; display: flex; align-items: flex-end; }
.prevcard .pv-art .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,10,8,0) 30%, rgba(8,10,8,.75) 100%); }
.prevcard .pv-art .pv-t { position: relative; padding: 14px 16px; color: #fff; }
.prevcard .pv-art .pv-t h4 { margin: 0; font-family: var(--font-title); font-weight: var(--title-weight); font-size: 26px; letter-spacing: var(--title-spacing); }
.prevcard .pv-art .pv-t p { font-size: 13px; color: rgba(255,255,255,.9); }
.prevcard .pv-body { padding: 14px 16px; display: flex; flex-direction: column; gap: 10px; }

/* ---------- modal ---------- */
.modal-scrim {
  position: absolute;
  inset: 0;
  background: rgba(21,17,12,.55);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal {
  width: 760px;
  background: var(--bg);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 8px 8px 0 rgba(0,0,0,.35);
  padding: 28px 30px;
}
.modal h2 {
  font-family: var(--font-title);
  font-weight: var(--title-weight);
  letter-spacing: var(--title-spacing);
  font-size: 28px;
  margin: 0 0 6px;
}
.modal .m-sub { color: var(--muted); font-size: 14px; margin-bottom: 18px; text-wrap: pretty; }
.vtable { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.vtable th {
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  padding: 8px 10px;
  border-bottom: 2px solid var(--ink);
}
.vtable td { padding: 9px 10px; border-bottom: 1px dashed var(--line); }
.vtable td.fname { font-weight: 700; }
.vtable td.fval { color: var(--muted); max-width: 300px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vis-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 99px;
  border: 1.5px solid var(--line);
  white-space: nowrap;
}
.vis-chip.pub { border-color: #1c6b2e; color: #1c6b2e; background: #e3f4e6; }
.vis-chip.gated { border-color: var(--cool); color: var(--cool); background: var(--cool-bg); }
.modal-actions { display: flex; justify-content: flex-end; gap: 16px; align-items: center; margin-top: 22px; }

/* ---------- app layout (dashboard / inbox) ---------- */
.app { display: grid; grid-template-columns: 256px 1fr; min-height: 0; }
.side {
  border-right: 2px solid var(--line);
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--surface);
}
.side .s-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.side .s-item.on { background: var(--ink); color: var(--bg); font-weight: 700; }
.side .s-item .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--warm); margin-left: auto; }
.main { padding: 28px 32px 40px; }
.main-h { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.main-h h1 {
  font-family: var(--font-title);
  font-weight: var(--title-weight);
  letter-spacing: var(--title-spacing);
  font-size: 32px;
  margin: 0;
}

/* project rows */
.prow {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 20px;
  align-items: center;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--card-shadow);
  padding: 16px 18px;
  margin-bottom: 16px;
}
.prow .p-thumb { aspect-ratio: 16/9; border-radius: var(--radius); border: 1.5px solid var(--ink); }
.prow .p-t { font-family: var(--font-title); font-weight: var(--title-weight); font-size: 20px; letter-spacing: var(--title-spacing); margin-bottom: 4px; display: flex; gap: 10px; align-items: center; }
.prow .p-meta { font-size: 13px; color: var(--muted); }
.prow .p-actions { display: flex; gap: 10px; }
.prow .p-actions .btn { height: 38px; padding: 0 16px; font-size: 13px; }
.pstatus {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 9px;
  border-radius: 99px;
  border: 1.5px solid #1c6b2e;
  color: #1c6b2e;
  background: #e3f4e6;
}
.pstatus.draft { border-color: var(--muted); color: var(--muted); background: var(--bg); }

.statcards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; margin-top: 10px; }
.statcards .sc {
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--card-shadow);
  padding: 18px 20px;
}
.statcards .sc .v { font-family: var(--font-title); font-weight: var(--title-weight); font-size: 34px; letter-spacing: var(--title-spacing); }
.statcards .sc .l { font-size: 12.5px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-top: 2px; }
.h2-small {
  font-family: var(--font-title);
  font-weight: var(--title-weight);
  letter-spacing: var(--title-spacing);
  font-size: 22px;
  margin: 30px 0 14px;
}

/* shortlist */
.reassure { font-size: 13px; color: var(--muted); margin: -14px 0 20px; }
.slist { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 22px; }
.slist .s-note { margin-top: 10px; }
.s-note .f-input { font-size: 13px; min-height: 56px; }
.s-note .n-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 5px; }
.s-note .n-l { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); }
.s-note .n-rm { font-size: 12px; font-weight: 700; text-decoration: underline; color: var(--muted); }

/* ---------- inbox ---------- */
.ibx { display: grid; grid-template-columns: 360px 1fr; border-top: 2px solid var(--line); min-height: 0; }
.ibx-list { border-right: 2px solid var(--line); background: var(--surface); }
.ibx-list .il-h { padding: 18px 20px 10px; font-family: var(--font-title); font-weight: var(--title-weight); font-size: 24px; letter-spacing: var(--title-spacing); }
.thr {
  padding: 14px 20px;
  border-top: 1px dashed var(--line);
  display: flex;
  flex-direction: column;
  gap: 3px;
  position: relative;
}
.thr.on { background: var(--bg); border-left: 4px solid var(--ink); padding-left: 16px; }
.thr .t-who { font-weight: 800; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.thr .t-game { font-size: 11.5px; font-weight: 700; color: var(--cool); text-transform: uppercase; letter-spacing: .05em; }
.thr .t-snip { font-size: 12.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.thr .udot { width: 9px; height: 9px; border-radius: 50%; background: var(--warm); flex: none; }
.thr .t-arch { font-size: 11px; color: var(--muted); text-decoration: underline; position: absolute; right: 20px; top: 14px; }
.ibx-view { display: flex; flex-direction: column; }
.ibx-vh {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 2px solid var(--line);
}
.ibx-vh .vh-who { font-weight: 800; font-size: 15px; }
.ibx-vh .vh-sub { font-size: 12.5px; color: var(--muted); }
.ibx-vh .vh-link { font-size: 13px; font-weight: 700; text-decoration: underline; }
.ibx-msgs { padding: 20px 24px; display: flex; flex-direction: column; gap: 14px; }
.notice {
  border: 2px dashed var(--line);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
  text-wrap: pretty;
}
.msg { max-width: 540px; }
.msg .m-b {
  border: 1.5px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  font-size: 14px;
  text-wrap: pretty;
}
.msg.out { align-self: flex-end; }
.msg.out .m-b { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.msg .m-meta { font-size: 11.5px; color: var(--muted); margin-top: 4px; }
.msg.out .m-meta { text-align: right; }
.compose { margin-top: auto; border-top: 2px solid var(--line); padding: 16px 24px 20px; }
.compose .c-row { display: flex; gap: 12px; }
.compose .f-input { flex: 1; }
.compose .btn { height: 44px; padding: 0 24px; }
.compose .c-note { font-size: 12px; color: var(--muted); margin-top: 8px; }

/* ---------- signup ---------- */
.su-stage { display: flex; justify-content: center; padding: 64px 32px 72px; }
.su-card {
  width: 620px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--card-shadow);
  padding: 34px 38px 38px;
}
.su-card h1 {
  font-family: var(--font-title);
  font-weight: var(--title-weight);
  letter-spacing: var(--title-spacing);
  font-size: 30px;
  margin: 0 0 22px;
  text-align: center;
}
.role2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
.role-card {
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bg);
}
.role-card.sel { border-color: var(--ink); box-shadow: var(--card-shadow); }
.role-card .r-t { font-weight: 800; font-size: 16px; }
.role-card .r-d { font-size: 13px; color: var(--muted); text-wrap: pretty; flex: 1; }
.role-card .btn { height: 40px; font-size: 13px; }
.su-q { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin: 24px 0 4px; }

/* ---------- static pages ---------- */
.prose { max-width: 760px; margin: 0 auto; padding: 48px 32px 64px; }
.prose h1 {
  font-family: var(--font-title);
  font-weight: var(--title-weight);
  letter-spacing: var(--title-spacing);
  font-size: 42px;
  margin: 0 0 22px;
}
.prose p { font-size: 16px; line-height: 1.65; margin: 0 0 16px; text-wrap: pretty; }
.prose p strong { font-weight: 800; }
.prose .em { font-weight: 700; }
.prose h2 {
  font-family: var(--font-title);
  font-weight: var(--title-weight);
  letter-spacing: var(--title-spacing);
  font-size: 24px;
  margin: 34px 0 12px;
}
.prose h3 { font-size: 18px; font-weight: 800; margin: 24px 0 8px; }
.prose ul { margin: 0 0 16px; padding-left: 22px; }
.prose li { font-size: 16px; line-height: 1.6; margin: 0 0 8px; }
.prose a { color: var(--cool); font-weight: 700; }
.prose .legal-meta {
  font-size: 14px;
  color: var(--ink-soft, #6b6357);
  border-bottom: 2px solid var(--line);
  padding-bottom: 14px;
  margin: 0 0 24px;
}
.prose .legal-meta strong { font-weight: 800; }
.prose .legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 20px;
  font-size: 14px;
}
.prose .legal-table th, .prose .legal-table td {
  border: 1.5px solid var(--line);
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
  line-height: 1.5;
}
.prose .legal-table th { font-weight: 800; background: var(--cool-bg, #efeafc); }

/* ---------- empty states ---------- */
.estate {
  border: 2px dashed var(--line);
  border-radius: var(--radius-lg);
  padding: 52px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto;
}
.estate h3 {
  font-family: var(--font-title);
  font-weight: var(--title-weight);
  letter-spacing: var(--title-spacing);
  font-size: 26px;
  margin: 0;
}
.estate p { font-size: 14.5px; color: var(--muted); max-width: 460px; text-wrap: pretty; }
.estate .btn { margin-top: 8px; padding: 0 24px; }
.estate .e-reassure { font-size: 12.5px; color: var(--muted); margin-top: 6px; }
.esteps { display: flex; flex-direction: column; gap: 8px; text-align: left; margin: 6px 0; }
.esteps .st { display: flex; gap: 12px; align-items: baseline; font-size: 14.5px; color: var(--muted); max-width: 480px; }
.esteps .st b { color: var(--ink); font-size: 13px; border: 1.5px solid var(--ink); border-radius: 50%; width: 24px; height: 24px; flex: none; display: inline-flex; align-items: center; justify-content: center; }

/* ---------- pending review banner ---------- */
.pending {
  background: var(--cool-bg);
  border-bottom: 2px solid var(--cool);
  color: var(--cool);
  padding: 10px 32px;
  font-size: 13.5px;
  font-weight: 700;
  text-align: center;
}
