/* ============================================================
   MUSE — design system
   Editorial black & white. Serif display, sans UI.
   ============================================================ */

:root {
  --ink: #111111;
  --ink-soft: #444444;
  --ink-mute: #8a8a8a;
  --paper: #ffffff;
  --paper-warm: #f6f5f3;
  --hairline: #e6e4e0;
  --hairline-dark: #2a2a2a;
  --accent-red: #c8442c;
  --accent-green: #2e7d4f;
  --dark: #101010;
  --dark-soft: #1a1a1a;
  --dark-mute: #9b9b9b;
  --serif: "Times New Roman", Times, Georgia, serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --radius: 2px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

/* ---------- type utilities ---------- */
.serif { font-family: var(--serif); }
.label {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 500;
}
.label-dark { color: var(--dark-mute); }
.value { font-size: 14px; font-weight: 500; margin-top: 2px; }

/* ---------- layout ---------- */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
main { min-height: calc(100vh - 120px); }
.view { display: none; }
.view.active { display: block; animation: fadeUp .35s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ---------- top nav ---------- */
.topnav {
  position: sticky; top: 0; z-index: 100;
  background: var(--dark); color: #fff;
  border-bottom: 1px solid var(--hairline-dark);
}
.topnav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; gap: 36px; height: 58px;
}
.brand {
  font-family: var(--serif); font-size: 20px; letter-spacing: 0.22em;
  font-weight: 700; color: #fff; flex-shrink: 0;
}
.brand em { font-style: italic; font-weight: 400; }
.nav-links { display: flex; gap: 26px; flex: 1; }
.nav-links a {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: #bbb; padding: 6px 0; border-bottom: 1px solid transparent; transition: color .15s;
}
.nav-links a:hover { color: #fff; }
.nav-links a.on { color: #fff; border-bottom-color: #fff; }
.nav-drop { position: relative; }
.nav-drop > button {
  background: none; border: none; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: #bbb; padding: 6px 0; border-bottom: 1px solid transparent; font-family: inherit;
}
.nav-drop:hover > button, .nav-drop.on > button { color: #fff; }
.nav-drop.on > button { border-bottom-color: #fff; }
.nav-drop-menu {
  display: none; position: absolute; top: calc(100% + 12px); left: -14px; background: #fff;
  border: 1px solid var(--hairline); border-radius: 3px; min-width: 170px; z-index: 150;
  box-shadow: 0 16px 40px rgba(0,0,0,0.22); padding: 6px 0;
}
.nav-drop:hover .nav-drop-menu { display: block; }
.nav-drop-menu::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.nav-drop-menu a {
  display: block; padding: 9px 18px; font-size: 12px; color: var(--ink-soft) !important;
  letter-spacing: 0.06em; text-transform: none; border-bottom: none !important;
}
.nav-drop-menu a:hover { background: var(--paper-warm); color: var(--ink) !important; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .ghost { background: none; border: none; color: #bbb; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.nav-cta .ghost:hover { color: #fff; }
.btn-solid {
  background: #fff; color: var(--ink); border: 1px solid #fff;
  padding: 9px 20px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600; border-radius: var(--radius); transition: background .15s;
}
.btn-solid:hover { background: #e2e2e2; }
.btn-dark {
  background: var(--ink); color: #fff; border: 1px solid var(--ink);
  padding: 11px 24px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600; border-radius: var(--radius); transition: opacity .15s;
}
.btn-dark:hover { opacity: 0.82; }
.btn-line {
  background: none; color: var(--ink); border: 1px solid var(--ink);
  padding: 10px 22px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600; border-radius: var(--radius); transition: all .15s;
}
.btn-line:hover { background: var(--ink); color: #fff; }
.btn-line-light {
  background: none; color: #fff; border: 1px solid #555;
  padding: 10px 22px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600; border-radius: var(--radius); transition: all .15s;
}
.btn-line-light:hover { border-color: #fff; }

/* ---------- ticker ---------- */
.ticker {
  background: var(--paper-warm); border-bottom: 1px solid var(--hairline);
  overflow: hidden; height: 36px; display: flex; align-items: center;
}
.ticker-tag {
  position: relative; z-index: 2;
  flex-shrink: 0; background: var(--ink); color: #fff; font-size: 9px;
  letter-spacing: 0.16em; text-transform: uppercase; padding: 4px 14px 4px 32px;
  height: 36px; display: flex; align-items: center; font-weight: 600;
}
.ticker-track { display: flex; gap: 48px; white-space: nowrap; animation: tick 55s linear infinite; padding-left: 24px; }
.ticker-track span { font-size: 12px; color: var(--ink-soft); }
.ticker-track b { font-weight: 600; color: var(--ink); }
.ticker-track .dot { color: var(--accent-red); }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- hero ---------- */
.hero { background: var(--dark); color: #fff; position: relative; overflow: hidden; }
.hero-inner {
  max-width: 1280px; margin: 0 auto; padding: 96px 32px 80px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center;
}
.hero h1 {
  font-family: var(--serif); font-size: clamp(44px, 5.4vw, 72px);
  line-height: 1.04; font-weight: 500; letter-spacing: -0.01em;
}
.hero h1 em { font-style: italic; }
.hero-sub { margin-top: 22px; color: #a8a8a8; font-size: 15px; max-width: 420px; line-height: 1.65; }
.hero-search { margin-top: 36px; display: flex; max-width: 480px; }
.hero-search input {
  flex: 1; background: rgba(255,255,255,0.07); border: 1px solid #3a3a3a;
  border-right: none; color: #fff; padding: 14px 18px; font-size: 13px; outline: none;
  border-radius: var(--radius) 0 0 var(--radius); font-family: inherit;
}
.hero-search input::placeholder { color: #777; }
.hero-search input:focus { border-color: #666; }
.hero-search button {
  background: #fff; color: var(--ink); border: none; padding: 0 26px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.hero-chips { margin-top: 20px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.hero-chips .label { color: #777; margin-right: 4px; }
.chip {
  background: none; border: 1px solid #3a3a3a; color: #ccc; font-size: 11px;
  padding: 6px 14px; border-radius: 100px; letter-spacing: 0.04em; transition: all .15s;
}
.chip:hover { border-color: #fff; color: #fff; }
.hero-visual { position: relative; height: 460px; }
.hero-card {
  position: absolute; background: var(--dark-soft); border: 1px solid var(--hairline-dark);
  border-radius: 3px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}
.hero-card .portrait { width: 100%; height: 100%; }
.hero-card-1 { width: 250px; height: 330px; top: 10px; left: 30px; transform: rotate(-2.5deg); z-index: 2; }
.hero-card-2 { width: 230px; height: 300px; top: 90px; right: 40px; transform: rotate(2deg); }
.hero-card-meta {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75)); padding: 40px 16px 14px;
}
.hero-card-meta .nm { font-family: var(--serif); font-size: 17px; color: #fff; }
.hero-card-meta .ag { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: #bbb; margin-top: 2px; }

/* ---------- stat bar ---------- */
.statbar { background: var(--dark); border-top: 1px solid var(--hairline-dark); color: #fff; }
.statbar-inner {
  max-width: 1280px; margin: 0 auto; padding: 28px 32px;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
}
.stat .n { font-family: var(--serif); font-size: 30px; font-weight: 500; }
.stat .t { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: #888; margin-top: 4px; }

/* ---------- persona cards ---------- */
.personas { padding-top: 88px; padding-bottom: 88px; }
.personas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.persona {
  border: 1px solid var(--hairline); padding: 36px 30px; border-radius: 3px;
  transition: all .2s; background: var(--paper);
}
.persona:hover { border-color: var(--ink); transform: translateY(-3px); }
.persona .icon { font-size: 22px; margin-bottom: 18px; }
.persona h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; }
.persona p { color: var(--ink-mute); font-size: 13.5px; margin: 12px 0 24px; line-height: 1.6; }
.persona .note { font-size: 11px; color: var(--accent-red); letter-spacing: 0.06em; margin-bottom: 20px; font-weight: 500; }

/* ---------- section headers ---------- */
.sec-head { display: flex; align-items: baseline; justify-content: space-between; }
.sec-head h2 { font-family: var(--serif); font-size: 34px; font-weight: 500; }
.sec-head .more { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; border-bottom: 1px solid var(--ink); padding-bottom: 2px; }
.sec-kicker { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 10px; font-weight: 600; }

/* ---------- market strip on landing ---------- */
.market-strip { background: var(--paper-warm); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); padding: 72px 0; }
.market-cols { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; margin-top: 36px; }
.news-item {
  display: flex; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--hairline);
  align-items: baseline; cursor: pointer;
}
.news-item:hover .news-h { text-decoration: underline; }
.news-date { font-size: 11px; color: var(--ink-mute); flex-shrink: 0; width: 90px; }
.news-h { font-family: var(--serif); font-size: 17px; flex: 1; }
.news-type {
  font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid var(--hairline); padding: 3px 10px; border-radius: 100px; color: var(--ink-soft); flex-shrink: 0;
}
.news-type.Watch { border-color: var(--accent-red); color: var(--accent-red); }
.ending-card { background: var(--dark); color: #fff; padding: 28px; border-radius: 3px; }
.ending-card h4 { font-family: var(--serif); font-size: 20px; font-weight: 500; margin-bottom: 4px; }
.ending-card .sub { font-size: 12px; color: #999; margin-bottom: 18px; }
.ending-row {
  display: flex; align-items: center; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid #2a2a2a; cursor: pointer;
}
.ending-row:last-child { border-bottom: none; }
.ending-row .thumb { width: 38px; height: 48px; border-radius: 2px; overflow: hidden; flex-shrink: 0; }
.ending-row .who { flex: 1; }
.ending-row .who .nm { font-size: 13.5px; font-weight: 600; }
.ending-row .who .ag { font-size: 11px; color: #999; }
.ending-row .when { font-size: 11px; color: var(--accent-red); text-align: right; font-weight: 600; }

/* ---------- new faces on landing ---------- */
.newfaces { padding-top: 88px; padding-bottom: 88px; }
.face-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 36px; }

/* ---------- model card (shared) ---------- */
.mcard { cursor: pointer; }
.mcard .ph {
  aspect-ratio: 3 / 4; border-radius: 3px; overflow: hidden; position: relative;
  background: var(--paper-warm);
}
.mcard .ph .portrait { transition: transform .4s ease; }
.mcard:hover .ph .portrait { transform: scale(1.03); }
.mcard .badge {
  position: absolute; top: 10px; left: 10px; background: rgba(16,16,16,0.85); color: #fff;
  font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px;
}
.mcard .badge.free { background: rgba(46,125,79,0.92); }
.mcard .save {
  position: absolute; top: 8px; right: 8px; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.9); border: none; font-size: 13px; line-height: 1;
  display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .2s;
}
.mcard:hover .save, .mcard .save.onx { opacity: 1; }
.mcard .meta { padding: 12px 2px 0; }
.mcard .nm { font-family: var(--serif); font-size: 17px; font-weight: 500; display: flex; align-items: center; gap: 5px; }
.mcard .vf { font-size: 10px; color: var(--ink); }
.mcard .sub { font-size: 12px; color: var(--ink-mute); margin-top: 2px; }
.mcard .contract-line { font-size: 11px; margin-top: 6px; color: var(--ink-soft); }
.mcard .contract-line.soon { color: var(--accent-red); font-weight: 600; }
.mcard .contract-line.free { color: var(--accent-green); font-weight: 600; }

/* ---------- portraits (generated) ---------- */
.portrait { width: 100%; height: 100%; object-fit: cover; }

/* ---------- footer ---------- */
footer { background: var(--dark); color: #999; margin-top: 0; }
.foot-inner {
  max-width: 1280px; margin: 0 auto; padding: 56px 32px 40px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.foot-inner h5 { color: #fff; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; }
.foot-inner a { display: block; font-size: 13px; padding: 4px 0; color: #999; }
.foot-inner a:hover { color: #fff; }
.foot-brand { font-family: var(--serif); font-size: 22px; letter-spacing: 0.22em; color: #fff; margin-bottom: 12px; }
.foot-note { font-size: 12px; line-height: 1.7; max-width: 300px; }
.foot-legal {
  border-top: 1px solid #2a2a2a; padding: 20px 32px; max-width: 1280px; margin: 0 auto;
  font-size: 11px; color: #666; display: flex; justify-content: space-between;
}

/* ============================================================
   DISCOVER
   ============================================================ */
.discover-layout { display: grid; grid-template-columns: 240px 1fr; gap: 44px; padding-top: 44px; padding-bottom: 80px; }
.filters { position: sticky; top: 90px; align-self: start; }
.filters-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 20px; }
.filters-head .t { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; }
.filters-head button { background: none; border: none; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); }
.fgroup { border-top: 1px solid var(--hairline); padding: 16px 0; }
.fgroup .gt {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  display: flex; justify-content: space-between; cursor: pointer; color: var(--ink);
}
.fgroup .opts { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.fopt { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--ink-soft); cursor: pointer; }
.fopt input { accent-color: var(--ink); width: 14px; height: 14px; }
.fopt:hover { color: var(--ink); }
.range-row { display: flex; justify-content: space-between; font-size: 11px; color: var(--ink-mute); margin-top: 8px; }
input[type="range"] { width: 100%; accent-color: var(--ink); margin-top: 10px; }

.results-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.results-head .count { font-size: 13px; color: var(--ink-mute); }
.results-head .count b { color: var(--ink); font-weight: 600; }
.results-tools { display: flex; align-items: center; gap: 16px; }
.seg { display: flex; border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden; }
.seg button { background: none; border: none; padding: 7px 12px; font-size: 12px; color: var(--ink-mute); }
.seg button.on { background: var(--ink); color: #fff; }
.sort select {
  border: 1px solid var(--hairline); background: #fff; padding: 8px 12px; font-size: 12px;
  border-radius: var(--radius); font-family: inherit; color: var(--ink); outline: none;
}
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.results-list { display: flex; flex-direction: column; }
.lrow {
  display: grid; grid-template-columns: 64px 1.6fr 1fr 0.7fr 1.1fr 40px;
  gap: 18px; align-items: center; padding: 14px 8px;
  border-bottom: 1px solid var(--hairline); cursor: pointer; transition: background .12s;
}
.lrow:hover { background: var(--paper-warm); }
.lrow .thumb { width: 56px; height: 70px; border-radius: 2px; overflow: hidden; }
.lrow .nm { font-family: var(--serif); font-size: 17px; }
.lrow .ag { font-size: 12px; color: var(--ink-mute); margin-top: 1px; }
.lrow .cell { font-size: 13px; color: var(--ink-soft); }
.lrow .cell .lt { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); display: block; }
.lrow .exp { font-size: 13px; font-weight: 600; }
.lrow .exp.soon { color: var(--accent-red); }
.lrow .exp.free { color: var(--accent-green); }
.lrow .exp .lt { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); display: block; font-weight: 400; }
.star-btn { background: none; border: none; font-size: 16px; color: var(--ink-mute); }
.star-btn:hover { color: var(--ink); }
.empty { padding: 80px 0; text-align: center; color: var(--ink-mute); font-size: 14px; }

/* ============================================================
   PROFILE
   ============================================================ */
.crumbs { padding: 20px 0 0; font-size: 11px; letter-spacing: 0.06em; color: var(--ink-mute); text-transform: uppercase; }
.crumbs a:hover { color: var(--ink); text-decoration: underline; }
.profile-top { display: grid; grid-template-columns: 340px 1fr 300px; gap: 44px; padding: 28px 0 40px; }
.profile-photo { aspect-ratio: 3/4; border-radius: 3px; overflow: hidden; position: relative; }
.photo-count {
  position: absolute; bottom: 12px; right: 12px; background: rgba(16,16,16,0.8);
  color: #fff; font-size: 10px; padding: 4px 10px; border-radius: 100px; letter-spacing: 0.08em;
}
.profile-id h1 { font-family: var(--serif); font-size: 42px; font-weight: 500; display: flex; align-items: center; gap: 10px; }
.profile-id .vbadge { font-size: 15px; }
.profile-id .agline { font-size: 13px; color: var(--ink-mute); margin-top: 6px; }
.profile-id .agline a { border-bottom: 1px solid var(--hairline); }
.profile-id .agline a:hover { border-color: var(--ink); }
.avail-pill {
  display: inline-flex; align-items: center; gap: 7px; font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; margin-top: 14px; padding: 5px 12px; border: 1px solid var(--hairline); border-radius: 100px;
}
.avail-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-green); }
.avail-pill.on-contract .dot { background: var(--accent-red); }
.measure-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 28px; margin-top: 30px; }
.profile-actions { display: flex; gap: 10px; margin-bottom: 20px; }
.contract-card { background: var(--paper-warm); border: 1px solid var(--hairline); border-radius: 3px; padding: 24px; }
.contract-card h4 { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; margin-bottom: 18px; }
.contract-exp { font-family: var(--serif); font-size: 28px; font-weight: 500; }
.contract-exp small { font-size: 13px; font-family: var(--sans); color: var(--ink-mute); margin-left: 6px; }
.contract-exp.soon { color: var(--accent-red); }
.cbar { height: 3px; background: var(--hairline); border-radius: 100px; margin: 14px 0 4px; position: relative; }
.cbar .fill { height: 100%; background: var(--ink); border-radius: 100px; }
.cbar-lbl { font-size: 10px; color: var(--ink-mute); display: flex; justify-content: space-between; }
.contract-rows { margin-top: 18px; display: flex; flex-direction: column; gap: 14px; }
.free-card { background: var(--accent-green); color: #fff; border: none; }
.free-card .label { color: rgba(255,255,255,0.7); }
.free-card h4 { color: #fff; }

.ptabs { border-bottom: 1px solid var(--hairline); display: flex; gap: 30px; }
.ptabs button {
  background: none; border: none; padding: 14px 0; font-size: 11px; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--ink-mute); border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.ptabs button.on { color: var(--ink); border-bottom-color: var(--ink); font-weight: 600; }
.ptab-body { padding: 32px 0 80px; }
.folio-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.folio-grid .shot { aspect-ratio: 3/4; border-radius: 3px; overflow: hidden; }
.folio-grid .viewall {
  aspect-ratio: 3/4; border-radius: 3px; background: var(--dark); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer;
}

.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-tile { border: 1px solid var(--hairline); border-radius: 3px; padding: 24px; }
.stat-tile .n { font-family: var(--serif); font-size: 34px; }
.stat-tile .t { font-size: 10px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink-mute); margin-top: 4px; }
.clients-row { margin-top: 32px; }
.clients-row .logos { display: flex; gap: 36px; flex-wrap: wrap; margin-top: 16px; }
.clients-row .logos span { font-family: var(--serif); font-size: 19px; letter-spacing: 0.08em; color: var(--ink-soft); }

.timeline { max-width: 640px; }
.tl-item { display: flex; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--hairline); }
.tl-item .d { width: 90px; flex-shrink: 0; font-size: 12px; color: var(--ink-mute); padding-top: 3px; }
.tl-item .body .move { font-family: var(--serif); font-size: 19px; }
.tl-item .body .move .arrow { color: var(--ink-mute); margin: 0 8px; font-family: var(--sans); font-size: 14px; }
.tl-item .body .note { font-size: 12.5px; color: var(--ink-mute); margin-top: 4px; }
.tl-item .tag {
  margin-left: auto; align-self: flex-start; font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid var(--hairline); padding: 3px 10px; border-radius: 100px; color: var(--ink-soft); flex-shrink: 0;
}

/* ============================================================
   MARKET DATA
   ============================================================ */
.market-hero { background: var(--dark); color: #fff; padding: 60px 0 48px; }
.market-hero h1 { font-family: var(--serif); font-size: 46px; font-weight: 500; }
.market-hero p { color: #999; margin-top: 10px; max-width: 520px; font-size: 14px; }
.market-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 36px; }
.kpi { border: 1px solid var(--hairline-dark); border-radius: 3px; padding: 20px; }
.kpi .n { font-family: var(--serif); font-size: 30px; }
.kpi .t { font-size: 10px; letter-spacing: 0.13em; text-transform: uppercase; color: #888; margin-top: 4px; }
.kpi .delta { font-size: 11px; margin-top: 8px; color: var(--accent-green); }
.kpi .delta.red { color: #e07a5f; }

.market-body { padding-top: 56px; padding-bottom: 80px; display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; }
.mtable { width: 100%; border-collapse: collapse; margin-top: 20px; }
.mtable th {
  text-align: left; font-size: 10px; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 600; padding: 10px 12px; border-bottom: 1px solid var(--ink);
}
.mtable td { padding: 14px 12px; border-bottom: 1px solid var(--hairline); font-size: 13.5px; vertical-align: middle; }
.mtable tr { cursor: pointer; }
.mtable tbody tr:hover { background: var(--paper-warm); }
.mtable .mv { font-weight: 600; }
.mtable .rank { font-family: var(--serif); font-size: 16px; color: var(--ink-mute); width: 30px; }
.mtable .tname { display: flex; align-items: center; gap: 12px; }
.mtable .tname .thumb { width: 34px; height: 42px; border-radius: 2px; overflow: hidden; flex-shrink: 0; }
.mtable .tname .nm { font-weight: 600; }
.mtable .tname .ag { font-size: 11px; color: var(--ink-mute); }
.trend-up { color: var(--accent-green); }
.trend-flat { color: var(--ink-mute); }
.exp-cell { font-weight: 600; }
.exp-cell.soon { color: var(--accent-red); }

/* ============================================================
   APPLY (Raya-style)
   ============================================================ */
.apply-hero { background: var(--dark); color: #fff; padding: 88px 0; text-align: center; }
.apply-hero .kick { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: #888; margin-bottom: 18px; }
.apply-hero h1 { font-family: var(--serif); font-size: clamp(38px, 4.5vw, 58px); font-weight: 500; max-width: 720px; margin: 0 auto; line-height: 1.1; }
.apply-hero h1 em { font-style: italic; }
.apply-hero p { color: #999; max-width: 460px; margin: 22px auto 0; font-size: 14.5px; line-height: 1.7; }
.apply-facts { display: flex; justify-content: center; gap: 56px; margin-top: 44px; flex-wrap: wrap; }
.apply-facts .f .n { font-family: var(--serif); font-size: 30px; white-space: nowrap; }
.apply-facts .f .t { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: #888; margin-top: 4px; }

.apply-body { max-width: 640px; margin: 0 auto; padding: 64px 32px 96px; }
.steps-rail { display: flex; gap: 0; margin-bottom: 44px; }
.steps-rail .s { flex: 1; text-align: center; position: relative; }
.steps-rail .s .b {
  width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: center; font-size: 11px; margin: 0 auto;
  background: #fff; position: relative; z-index: 2; color: var(--ink-mute);
}
.steps-rail .s.done .b, .steps-rail .s.now .b { background: var(--ink); color: #fff; border-color: var(--ink); }
.steps-rail .s .t { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 8px; color: var(--ink-mute); }
.steps-rail .s.now .t { color: var(--ink); font-weight: 600; }
.steps-rail .s::after {
  content: ""; position: absolute; top: 13px; left: 50%; width: 100%; height: 1px; background: var(--hairline); z-index: 1;
}
.steps-rail .s:last-child::after { display: none; }
.steps-rail .s.done::after { background: var(--ink); }

.form-card h3 { font-family: var(--serif); font-size: 26px; font-weight: 500; margin-bottom: 6px; }
.form-card .hint { font-size: 13px; color: var(--ink-mute); margin-bottom: 28px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.frow.single { grid-template-columns: 1fr; }
.field label { display: block; font-size: 10px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 7px; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid var(--hairline); padding: 12px 14px; font-size: 14px;
  font-family: inherit; border-radius: var(--radius); outline: none; background: #fff; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); }
.uploader {
  border: 1px dashed var(--hairline); border-radius: 3px; padding: 36px; text-align: center;
  color: var(--ink-mute); font-size: 13px; cursor: pointer; transition: border-color .15s;
}
.uploader:hover { border-color: var(--ink); }
.uploader .big { font-size: 24px; margin-bottom: 8px; }
.upload-tips { margin-top: 14px; font-size: 12px; color: var(--ink-mute); line-height: 1.8; }
.form-nav { display: flex; justify-content: space-between; margin-top: 36px; }
.review-box { background: var(--paper-warm); border: 1px solid var(--hairline); border-radius: 3px; padding: 24px; margin-bottom: 24px; }
.review-box .rrow { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--hairline); font-size: 13.5px; }
.review-box .rrow:last-child { border: none; }
.review-box .rrow .k { color: var(--ink-mute); }
.done-card { text-align: center; padding: 40px 0; }
.done-card .mark { font-size: 40px; margin-bottom: 20px; }
.done-card h3 { font-family: var(--serif); font-size: 30px; font-weight: 500; }
.done-card p { color: var(--ink-mute); max-width: 400px; margin: 16px auto 0; font-size: 14px; line-height: 1.7; }

/* ============================================================
   AGENCY DASHBOARD
   ============================================================ */
.dash { display: grid; grid-template-columns: 220px 1fr; min-height: calc(100vh - 58px); }
.dash > *, .market-body > *, .discover-layout > *, .market-cols > * { min-width: 0; }
.dash-side { background: var(--dark); color: #fff; padding: 32px 0; }
.dash-side .dtitle { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: #777; padding: 0 28px 20px; }
.dash-side a {
  display: flex; align-items: center; gap: 12px; padding: 11px 28px; font-size: 13px; color: #aaa;
  border-left: 2px solid transparent;
}
.dash-side a:hover { color: #fff; }
.dash-side a.on { color: #fff; border-left-color: #fff; background: rgba(255,255,255,0.04); }
.dash-side .badge-n {
  margin-left: auto; background: #fff; color: var(--ink); font-size: 10px; font-weight: 700;
  border-radius: 100px; padding: 1px 8px;
}
.dash-agency { margin-top: auto; padding: 24px 28px 0; border-top: 1px solid #2a2a2a; display: flex; align-items: center; gap: 12px; }
.dash-agency .av { width: 34px; height: 34px; border-radius: 50%; background: #333; display: flex; align-items: center; justify-content: center; font-family: var(--serif); }
.dash-agency .nm { font-size: 13px; font-weight: 600; }
.dash-agency .vp { font-size: 10px; color: #888; letter-spacing: 0.08em; text-transform: uppercase; }
.dash-side { display: flex; flex-direction: column; }
.dash-side nav { flex: 1; }

.dash-main { padding: 36px 40px 80px; background: #fbfaf9; }
.dash-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.dash-head h1 { font-family: var(--serif); font-size: 32px; font-weight: 500; }
.dash-tabs { display: flex; gap: 24px; border-bottom: 1px solid var(--hairline); margin: 20px 0 0; }
.dash-tabs button {
  background: none; border: none; padding: 12px 0; font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-mute); border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.dash-tabs button.on { color: var(--ink); border-bottom-color: var(--ink); font-weight: 600; }
.scout-table { width: 100%; border-collapse: collapse; margin-top: 8px; background: #fff; border: 1px solid var(--hairline); border-radius: 3px; }
.scout-table th {
  text-align: left; font-size: 10px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink-mute);
  font-weight: 600; padding: 14px 16px; border-bottom: 1px solid var(--hairline); background: var(--paper-warm);
}
.scout-table td { padding: 14px 16px; border-bottom: 1px solid var(--hairline); font-size: 13.5px; vertical-align: middle; }
.scout-table tr:last-child td { border-bottom: none; }
.scout-table tbody tr:hover { background: var(--paper-warm); cursor: pointer; }
.scout-table .tname { display: flex; align-items: center; gap: 12px; }
.scout-table .thumb { width: 36px; height: 44px; border-radius: 2px; overflow: hidden; flex-shrink: 0; }
.scout-table .nm { font-weight: 600; }
.scout-table .muted { color: var(--ink-mute); font-size: 12px; }
.match-pill {
  font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 100px;
  background: rgba(46,125,79,0.1); color: var(--accent-green);
}
.match-pill.mid { background: rgba(200,120,40,0.1); color: #a6690f; }
.dash-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 24px 0 32px; }
.dcard { background: #fff; border: 1px solid var(--hairline); border-radius: 3px; padding: 20px; }
.dcard .n { font-family: var(--serif); font-size: 28px; }
.dcard .t { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); margin-top: 4px; }
.dcard .d { font-size: 11px; color: var(--accent-green); margin-top: 8px; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-hero { background: var(--dark); color: #fff; padding: 72px 0 56px; text-align: center; }
.pricing-hero h1 { font-family: var(--serif); font-size: clamp(38px, 4.5vw, 54px); font-weight: 500; }
.pricing-hero h1 em { font-style: italic; }
.pricing-hero p { color: #999; max-width: 520px; margin: 18px auto 0; font-size: 14.5px; line-height: 1.7; }
.fee-strip {
  display: flex; justify-content: center; gap: 0; margin: 44px auto 0; max-width: 860px;
  border: 1px solid var(--hairline-dark); border-radius: 3px;
}
.fee-strip .f { flex: 1; padding: 24px 20px; border-right: 1px solid var(--hairline-dark); }
.fee-strip .f:last-child { border-right: none; }
.fee-strip .n { font-family: var(--serif); font-size: 34px; }
.fee-strip .t { font-size: 10px; letter-spacing: 0.13em; text-transform: uppercase; color: #888; margin-top: 6px; }
.fee-strip .d { font-size: 12px; color: #aaa; margin-top: 8px; line-height: 1.5; }

.fee-rules { max-width: 860px; margin: 28px auto 0; display: flex; flex-direction: column; gap: 10px; }
.fee-rules .fr {
  display: flex; gap: 14px; align-items: baseline; text-align: left;
  font-size: 13px; color: #a8a8a8; line-height: 1.7;
  border: 1px solid var(--hairline-dark); border-radius: 3px; padding: 14px 18px;
}
.fee-rules .fr b { color: #fff; font-weight: 600; }
.fee-rules .frn { font-family: var(--serif); color: #cbb26a; flex-shrink: 0; }
.worked-examples { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 8px 0 20px; }
.worked-examples .we { border: 1px solid var(--hairline); border-radius: 3px; padding: 24px; }
.worked-examples .we p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.75; margin-top: 8px; }
.worked-examples .we p b { color: var(--ink); font-weight: 600; }
@media (max-width: 1080px) { .worked-examples { grid-template-columns: 1fr; } }
.own-banner {
  background: rgba(46,125,79,0.07); border: 1px solid var(--accent-green); color: var(--accent-green);
  border-radius: 3px; padding: 14px 18px; font-size: 12px; line-height: 1.65; margin-bottom: 20px;
}
.linkish { background: none; border: none; padding: 0; font: inherit; color: inherit;
  text-decoration: underline; cursor: pointer; }
.cdoc-own { font-family: var(--serif); font-size: 13px; line-height: 1.75; white-space: pre-wrap;
  color: var(--ink-soft); margin-top: 22px; }
.tag-list { margin-top: 14px; }
.tag-list .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.tagchip { font-family: ui-monospace, Menlo, monospace; font-size: 10.5px; border: 1px solid var(--hairline);
  background: var(--paper-warm); border-radius: 3px; padding: 4px 8px; color: var(--ink-soft); }
.tagchip:hover { border-color: var(--ink); color: var(--ink); }

/* contract document + specimen warning */
.spec-banner {
  background: rgba(200,68,44,0.07); border: 1px solid var(--accent-red); color: var(--accent-red);
  border-radius: 3px; padding: 14px 18px; font-size: 12px; line-height: 1.65; margin-bottom: 20px;
}
.contract-doc {
  border: 1px solid var(--hairline); border-radius: 3px; padding: 34px 38px;
  font-family: var(--serif); max-height: 460px; overflow-y: auto; background: #fff;
}
.cdoc-head { display: flex; justify-content: space-between; align-items: flex-start;
  border-bottom: 2px solid var(--ink); padding-bottom: 12px; }
.cdoc-brand { font-size: 18px; letter-spacing: 0.22em; font-weight: 700; }
.cdoc-meta { font-family: var(--sans); font-size: 10px; color: var(--ink-mute); text-align: right; line-height: 1.6; }
.cdoc-title { font-size: 21px; font-weight: 500; text-align: center; margin: 26px 0 22px; }
.cdoc-clause { margin-bottom: 16px; }
.cdoc-clause h4 { font-family: var(--sans); font-size: 11px; letter-spacing: 0.08em; margin-bottom: 5px; }
.cdoc-clause p { font-size: 13px; line-height: 1.7; color: var(--ink-soft); }
.cdoc-clause p b { color: var(--ink); }
.cdoc-clause p i { color: var(--accent-red); font-size: 12px; }
.cdoc-sign { display: flex; gap: 36px; margin-top: 34px; }
.cdoc-sign .sig { flex: 1; font-size: 12px; font-family: var(--sans); color: var(--ink-soft); }
.cdoc-sign .sigline { border-bottom: 1px solid var(--ink); height: 40px; margin-bottom: 8px; }
.cdoc-foot { margin-top: 26px; padding-top: 10px; border-top: 1px solid var(--hairline);
  font-family: var(--sans); font-size: 10px; color: var(--ink-mute); }

.lockin { background: var(--dark); color: #fff; border-radius: 3px; padding: 56px 48px; margin: 56px 0 24px; }
.lockin h2 { font-family: var(--serif); font-size: 32px; font-weight: 500; }
.lockin h2 em { font-style: italic; }
.lockin-sub { color: #999; font-size: 14px; line-height: 1.75; max-width: 620px; margin-top: 12px; }
.lockin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.lk { border: 1px solid var(--hairline-dark); border-radius: 3px; padding: 26px; }
.lk.on { border-color: #4a5c4f; background: rgba(46,125,79,0.08); }
.lk .lkh { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: #888; font-weight: 700; margin-bottom: 16px; }
.lk.on .lkh { color: var(--accent-green); }
.lk ul { list-style: none; }
.lk li { font-size: 13px; color: #a8a8a8; line-height: 1.6; padding: 9px 0 9px 20px; position: relative; border-bottom: 1px solid rgba(255,255,255,0.06); }
.lk li:last-child { border-bottom: none; }
.lk li::before { content: "✕"; position: absolute; left: 0; color: #6a6a6a; }
.lk.on li::before { content: "✓"; color: var(--accent-green); }
.lk.on li b { color: #fff; }
.lockin-foot { margin-top: 28px; font-size: 13.5px; color: #999; line-height: 1.75; max-width: 720px; }
.lockin-foot b { color: #fff; }
@media (max-width: 1080px) { .lockin { padding: 36px 24px; } .lockin-grid { grid-template-columns: 1fr; } }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 64px 0 24px; align-items: start; }
.plan { border: 1px solid var(--hairline); border-radius: 3px; padding: 34px 30px; background: var(--paper); position: relative; }
.plan.featured { background: var(--dark); color: #fff; border-color: var(--dark); }
.plan .who { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); font-weight: 700; }
.plan.featured .who { color: #999; }
.plan h3 { font-family: var(--serif); font-size: 26px; font-weight: 500; margin-top: 10px; }
.plan .price { margin: 18px 0 4px; font-family: var(--serif); font-size: 40px; }
.plan .price small { font-size: 13px; font-family: var(--sans); color: var(--ink-mute); }
.plan.featured .price small { color: #999; }
.plan .psub { font-size: 12px; color: var(--ink-mute); min-height: 34px; }
.plan.featured .psub { color: #999; }
.plan ul { list-style: none; margin: 22px 0 28px; }
.plan li { font-size: 13.5px; padding: 8px 0 8px 22px; border-bottom: 1px solid var(--hairline); position: relative; color: var(--ink-soft); }
.plan.featured li { border-color: #2a2a2a; color: #ccc; }
.plan li::before { content: "—"; position: absolute; left: 0; color: var(--ink-mute); }
.plan li b { color: var(--ink); font-weight: 600; }
.plan.featured li b { color: #fff; }
.plan .tagline {
  position: absolute; top: -11px; left: 30px; background: var(--accent-green); color: #fff;
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; font-weight: 700;
}
.pricing-note { text-align: center; padding: 8px 0 72px; font-size: 12.5px; color: var(--ink-mute); max-width: 560px; margin: 0 auto; line-height: 1.8; }

/* ============================================================
   TRUST & SAFETY
   ============================================================ */
.trust-hero { background: var(--dark); color: #fff; padding: 80px 0 64px; }
.trust-hero .kick { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: #888; margin-bottom: 16px; }
.trust-hero h1 { font-family: var(--serif); font-size: clamp(38px, 4.5vw, 56px); font-weight: 500; max-width: 700px; line-height: 1.08; }
.trust-hero h1 em { font-style: italic; }
.trust-hero p { color: #999; max-width: 520px; margin-top: 20px; font-size: 14.5px; line-height: 1.7; }
.age-badge {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 28px;
  border: 1px solid #444; border-radius: 100px; padding: 8px 18px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #ddd;
}
.age-badge .n { font-family: var(--serif); font-size: 18px; color: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 64px 0; }
.trust-card { border: 1px solid var(--hairline); border-radius: 3px; padding: 30px 28px; }
.trust-card .tnum { font-family: var(--serif); font-size: 15px; color: var(--ink-mute); margin-bottom: 14px; }
.trust-card h3 { font-family: var(--serif); font-size: 21px; font-weight: 500; margin-bottom: 10px; }
.trust-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.7; }
.trust-card p b { font-weight: 600; color: var(--ink); }
.desk-band { background: var(--paper-warm); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.desk-band .inner { max-width: 1280px; margin: 0 auto; padding: 64px 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.desk-band h2 { font-family: var(--serif); font-size: 32px; font-weight: 500; }
.desk-band p { font-size: 14px; color: var(--ink-soft); line-height: 1.75; margin-top: 14px; }
.desk-flow { border: 1px solid var(--hairline); background: #fff; border-radius: 3px; }
.desk-step { display: flex; gap: 16px; padding: 18px 22px; border-bottom: 1px solid var(--hairline); align-items: baseline; }
.desk-step:last-child { border-bottom: none; }
.desk-step .n { font-family: var(--serif); font-size: 18px; color: var(--ink-mute); width: 22px; flex-shrink: 0; }
.desk-step .b .t { font-size: 13.5px; font-weight: 600; }
.desk-step .b .d { font-size: 12.5px; color: var(--ink-mute); margin-top: 2px; }

/* visibility tag on contract card */
.vis-tag {
  display: inline-flex; align-items: center; gap: 6px; font-size: 9px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-mute); border: 1px solid var(--hairline);
  border-radius: 100px; padding: 3px 10px; margin-left: 10px; vertical-align: middle; font-weight: 600;
}

/* field error */
.ferr { color: var(--accent-red); font-size: 12px; margin-top: 6px; display: none; }
.ferr.show { display: block; }
.field input.bad { border-color: var(--accent-red); }

/* ============================================================
   CASTINGS
   ============================================================ */
.cast-hero { background: var(--dark); color: #fff; padding: 60px 0 44px; }
.cast-hero h1 { font-family: var(--serif); font-size: 44px; font-weight: 500; }
.cast-hero p { color: #999; margin-top: 10px; max-width: 540px; font-size: 14px; line-height: 1.7; }
.cast-tabs { display: flex; gap: 10px; margin-top: 28px; }
.cast-tabs button {
  background: none; border: 1px solid #3a3a3a; color: #ccc; font-size: 11px;
  padding: 7px 18px; border-radius: 100px; letter-spacing: 0.08em; text-transform: uppercase;
}
.cast-tabs button.on { background: #fff; color: var(--ink); border-color: #fff; font-weight: 600; }
.cast-list { padding: 44px 0 80px; display: flex; flex-direction: column; gap: 16px; }
.cast-card {
  border: 1px solid var(--hairline); border-radius: 3px; padding: 24px 28px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr auto; gap: 24px; align-items: center;
  transition: border-color .15s; background: var(--paper);
}
.cast-card:hover { border-color: var(--ink); }
.cast-card .brand { font-family: var(--serif); font-size: 21px; letter-spacing: 0.04em; display: flex; align-items: center; gap: 8px; }
.cast-card .brand .vf { font-size: 11px; color: var(--accent-green); }
.cast-card .ct { font-size: 13.5px; color: var(--ink-soft); margin-top: 3px; }
.chips { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.cchip {
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid var(--hairline);
  padding: 3px 10px; border-radius: 100px; color: var(--ink-soft);
}
.cast-card .kv .label { margin-bottom: 2px; }
.cast-card .kv + .kv { margin-top: 12px; }
.cast-card .rate { font-family: var(--serif); font-size: 19px; }
.cast-card .apps { font-size: 11px; color: var(--ink-mute); margin-top: 6px; }
.cast-cta { display: flex; flex-direction: column; gap: 8px; align-items: stretch; }

/* ============================================================
   INSTAGRAM COMPARISON (landing)
   ============================================================ */
.compare-band { background: var(--dark); color: #fff; padding: 88px 0; }
.compare-band h2 { font-family: var(--serif); font-size: 34px; font-weight: 500; max-width: 520px; }
.compare-band h2 em { font-style: italic; }
.compare-band .sub { color: #999; font-size: 14px; margin-top: 14px; max-width: 460px; line-height: 1.7; }
.compare-table { margin-top: 44px; border: 1px solid var(--hairline-dark); border-radius: 3px; overflow: hidden; }
.compare-row { display: grid; grid-template-columns: 1.6fr 1fr 1fr; border-bottom: 1px solid var(--hairline-dark); }
.compare-row:last-child { border-bottom: none; }
.compare-row > div { padding: 14px 20px; font-size: 13.5px; }
.compare-row .feat { color: #ccc; }
.compare-row .ig, .compare-row .mu { text-align: center; }
.compare-row .ig { color: #777; }
.compare-row .mu { color: #fff; font-weight: 600; background: rgba(255,255,255,0.04); }
.compare-row.head > div { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: #888; font-weight: 700; padding: 12px 20px; background: rgba(255,255,255,0.03); }
.compare-row .no { color: #6a6a6a; }
.compare-row .yes { color: var(--accent-green); margin-right: 6px; }

/* ============================================================
   PROFILE VERIFICATION CARD
   ============================================================ */
/* application track fork */
.track-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.track-card {
  border: 1px solid var(--hairline); border-radius: 3px; padding: 30px 28px;
  cursor: pointer; transition: border-color .15s, transform .15s;
}
.track-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.track-card.pro { border-color: var(--accent-green); background: rgba(46,125,79,0.04); }
.track-card .tk-label { font-family: var(--serif); font-size: 24px; font-weight: 500; }
.track-card .tk-blurb { font-size: 13.5px; color: var(--ink-soft); line-height: 1.7; margin: 10px 0 14px; }
.track-card .tk-promise {
  font-size: 12px; color: var(--ink-mute); line-height: 1.65;
  border-top: 1px solid var(--hairline); padding-top: 12px;
}
.track-note {
  font-size: 12.5px; color: var(--ink-mute); line-height: 1.8;
  margin-top: 22px; padding: 16px 18px; background: var(--paper-warm);
  border: 1px solid var(--hairline); border-radius: 3px;
}
.track-note b { color: var(--ink); }
.pro-evidence { margin-top: 14px; border-left: 2px solid var(--accent-green); padding-left: 14px; }
.pro-evidence .pe-row { font-size: 12.5px; color: var(--ink-soft); line-height: 1.7; margin-top: 4px; }
@media (max-width: 1080px) { .track-grid { grid-template-columns: 1fr; } }

/* consent checklist on the claim page */
.consent-list { margin-top: 16px; display: flex; flex-direction: column; gap: 2px; }
.consent-row {
  display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px;
  border: 1px solid var(--hairline); border-radius: 3px; cursor: pointer;
  font-size: 13.5px; line-height: 1.6; color: var(--ink-soft); transition: border-color .12s;
}
.consent-row:hover { border-color: var(--ink); }
.consent-row input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--ink); flex-shrink: 0; }
.consent-row:has(input:checked) { border-color: var(--accent-green); background: rgba(46,125,79,0.04); }

/* verification state chips */
.vchip {
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
  border-radius: 100px; padding: 3px 9px; margin-left: 7px; vertical-align: middle;
  white-space: nowrap; font-family: var(--sans);
}
.vchip.neutral { background: rgba(120,120,120,0.12); color: var(--ink-mute); }
.vchip.wait    { background: rgba(166,105,15,0.10);  color: #a6690f; }
.vchip.good    { background: rgba(46,125,79,0.12);   color: var(--accent-green); }
.vchip.bad     { background: rgba(200,68,44,0.10);   color: var(--accent-red); }
.vrow .bad { color: var(--accent-red); font-weight: 700; flex-shrink: 0; }

.verify-card { border: 1px solid var(--hairline); border-radius: 3px; padding: 18px 20px; margin-bottom: 14px; }
.verify-card h4 { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; margin-bottom: 12px; color: var(--ink-soft); }
.vrow { display: flex; gap: 10px; font-size: 12.5px; color: var(--ink-soft); padding: 5px 0; align-items: baseline; }
.vrow .ck { color: var(--accent-green); font-weight: 700; flex-shrink: 0; }
.vrow .pend { color: var(--ink-mute); }

/* verified work history (stats tab) */
.work-rows { margin-top: 14px; border: 1px solid var(--hairline); border-radius: 3px; }
.work-row { display: grid; grid-template-columns: 1.2fr 1fr 0.8fr 0.8fr auto; gap: 16px; padding: 14px 20px; border-bottom: 1px solid var(--hairline); font-size: 13.5px; align-items: center; }
.work-row:last-child { border-bottom: none; }
.work-row .cl { font-family: var(--serif); font-size: 16px; letter-spacing: 0.03em; }
.work-row .mut { color: var(--ink-mute); }
.work-row .val { font-weight: 600; }
.verified-pill {
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
  color: var(--accent-green); border: 1px solid rgba(46,125,79,0.35); border-radius: 100px; padding: 3px 10px;
}

/* ============================================================
   ROSTER TAB (dashboard) + COMP CARD
   ============================================================ */
.roster-tools { display: flex; gap: 10px; align-items: center; }
.roster-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; flex-wrap: wrap; gap: 12px; }
.roster-bar .rb-count { font-size: 13px; color: var(--ink-mute); }
.roster-bar .rb-count b { color: var(--ink); font-weight: 600; }
.avail-select {
  border: 1px solid var(--hairline); background: #fff; padding: 6px 10px; font-size: 12px;
  border-radius: var(--radius); font-family: inherit; color: var(--ink); outline: none;
}
.invoice-card { background: var(--dark); color: #fff; border-radius: 3px; padding: 22px 24px; margin-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.invoice-card .t { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: #999; }
.invoice-card .n { font-family: var(--serif); font-size: 26px; margin-top: 4px; }
.invoice-card .d { font-size: 12px; color: #999; margin-top: 4px; }

.compcard { padding: 34px; }
.compcard-inner { border: 1px solid var(--ink); padding: 26px; }
.compcard .cc-head { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px solid var(--ink); padding-bottom: 14px; }
.compcard .cc-brand { font-family: var(--serif); letter-spacing: 0.22em; font-size: 15px; font-weight: 700; }
.compcard .cc-agency { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); }
.compcard .cc-body { display: grid; grid-template-columns: 1.1fr 1fr; gap: 22px; padding: 22px 0; }
.compcard .cc-photo { aspect-ratio: 3/4; overflow: hidden; }
.compcard .cc-shots { display: grid; grid-template-rows: 1fr 1fr; gap: 10px; }
.compcard .cc-shots .s { overflow: hidden; }
.compcard .cc-shots .s img { height: 100%; }
.compcard h3 { font-family: var(--serif); font-size: 28px; font-weight: 500; }
.compcard .cc-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px 18px; border-top: 1px solid var(--ink); padding-top: 16px; }
.compcard .cc-foot { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); border-top: 1px solid var(--hairline); margin-top: 16px; padding-top: 12px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 6px; }

@media (max-width: 1080px) {
  .cast-card { grid-template-columns: 1fr 1fr; }
  .cast-card .cast-cta { grid-column: 1 / -1; flex-direction: row; }
  .compare-row > div { padding: 12px 12px; font-size: 12.5px; }
  .work-row { grid-template-columns: 1fr 1fr; }
  .compcard .cc-body { grid-template-columns: 1fr; }
  .compcard .cc-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   BOOKING MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(12,12,12,0.55); z-index: 200;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  animation: fadeUp .2s ease both;
}
.modal {
  background: #fff; border-radius: 4px; width: 560px; max-width: 100%;
  max-height: 90vh; overflow-y: auto; box-shadow: 0 40px 80px rgba(0,0,0,0.35);
}
.modal.wide { width: 900px; }
.import-table th { vertical-align: top; min-width: 110px; }
.import-table td { font-size: 12.5px; white-space: nowrap; }
.modal-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 28px; border-bottom: 1px solid var(--hairline); }
.modal-head h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; }
.modal-head .x { background: none; border: none; font-size: 20px; color: var(--ink-mute); line-height: 1; }
.modal-head .x:hover { color: var(--ink); }
.modal-body { padding: 26px 28px; }
.modal-model { display: flex; gap: 14px; align-items: center; margin-bottom: 22px; }
.modal-model .thumb { width: 46px; height: 58px; border-radius: 2px; overflow: hidden; flex-shrink: 0; }
.modal-model .nm { font-family: var(--serif); font-size: 17px; }
.modal-model .ag { font-size: 12px; color: var(--ink-mute); }
.fee-calc { background: var(--paper-warm); border: 1px solid var(--hairline); border-radius: 3px; padding: 18px 20px; margin-top: 20px; }
.fee-calc .row { display: flex; justify-content: space-between; font-size: 13.5px; padding: 6px 0; }
.fee-calc .row .k { color: var(--ink-mute); }
.fee-calc .row.total { border-top: 1px solid var(--ink); margin-top: 8px; padding-top: 12px; font-weight: 700; font-size: 15px; }
.fee-calc .row.muse { color: var(--accent-green); font-weight: 600; }
.escrow-note { display: flex; gap: 10px; margin-top: 16px; font-size: 12px; color: var(--ink-mute); line-height: 1.6; }
.escrow-note .ic { flex-shrink: 0; }
.modal-foot { padding: 0 28px 28px; }
.modal-done { text-align: center; padding: 36px 28px 44px; }
.modal-done .mark { font-size: 34px; margin-bottom: 14px; }
.modal-done h3 { font-family: var(--serif); font-size: 26px; font-weight: 500; }
.modal-done p { color: var(--ink-mute); font-size: 13.5px; margin-top: 12px; line-height: 1.7; }

@media (max-width: 1080px) {
  .plans, .trust-grid { grid-template-columns: 1fr; }
  .desk-band .inner { grid-template-columns: 1fr; }
  .fee-strip { flex-direction: column; }
  .fee-strip .f { border-right: none; border-bottom: 1px solid var(--hairline-dark); }
  .fee-strip .f:last-child { border-bottom: none; }
}

/* ============================================================
   AUTH, HEADER SESSION, CHECKOUT
   ============================================================ */
.auth-msg { font-size: 13px; color: var(--ink-mute); margin-bottom: 18px; line-height: 1.6; }
.auth-tabs { display: flex; border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden; margin-bottom: 22px; }
.auth-tabs button { flex: 1; background: none; border: none; padding: 10px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); }
.auth-tabs button.on { background: var(--ink); color: #fff; font-weight: 600; }
.auth-demo { margin-top: 22px; border-top: 1px solid var(--hairline); padding-top: 16px; }
.auth-demo-btns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 10px; }
.auth-demo-btns button.owner { background: var(--dark); color: #fff; border-color: var(--dark); }
.auth-demo-btns button.owner small { color: #999; }
.auth-demo-btns button {
  border: 1px solid var(--hairline); background: var(--paper-warm); border-radius: 3px;
  padding: 10px 6px; font-size: 12px; line-height: 1.5; transition: border-color .15s;
}
.auth-demo-btns button small { color: var(--ink-mute); font-size: 10px; }
.auth-demo-btns button:hover { border-color: var(--ink); }

.hbtn {
  position: relative; color: #bbb; font-size: 15px; padding: 4px 6px; line-height: 1;
}
.hbtn:hover { color: #fff; }
.hbadge {
  position: absolute; top: -6px; right: -7px; background: var(--accent-red); color: #fff;
  font-size: 9px; font-weight: 700; border-radius: 100px; padding: 1px 5px; font-family: var(--sans);
}
.user-chip {
  position: relative; display: flex; align-items: center; gap: 9px; cursor: pointer;
  border: 1px solid #3a3a3a; border-radius: 100px; padding: 5px 14px 5px 6px;
}
.user-chip:hover { border-color: #666; }
.uc-av {
  width: 26px; height: 26px; border-radius: 50%; background: #fff; color: var(--ink);
  display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; letter-spacing: 0.04em;
}
.uc-name { font-size: 12px; color: #fff; font-weight: 600; }
.uc-role { font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: #999; }
.user-menu {
  display: none; position: absolute; top: calc(100% + 10px); right: 0; background: #fff; color: var(--ink);
  border: 1px solid var(--hairline); border-radius: 3px; min-width: 200px; z-index: 150;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18); padding: 6px 0;
}
.user-menu.open { display: block; }
.user-menu a { display: block; padding: 9px 18px; font-size: 13px; color: var(--ink-soft); }
.user-menu a:hover { background: var(--paper-warm); color: var(--ink); }

/* ============================================================
   INBOX, SHORTLIST, BOOKINGS
   ============================================================ */
.page-head { padding: 44px 0 8px; }
.page-head h1 { font-family: var(--serif); font-size: 36px; font-weight: 500; }
.page-head p { color: var(--ink-mute); font-size: 13.5px; margin-top: 6px; }
.thread { border: 1px solid var(--hairline); border-radius: 3px; margin-top: 16px; overflow: hidden; }
.thread summary {
  list-style: none; cursor: pointer; display: flex; gap: 16px; align-items: baseline;
  padding: 16px 20px; background: var(--paper);
}
.thread summary::-webkit-details-marker { display: none; }
.thread summary:hover { background: var(--paper-warm); }
.thread .t-ag { font-weight: 700; font-size: 13.5px; flex-shrink: 0; }
.thread .t-subj { font-family: var(--serif); font-size: 16px; flex: 1; }
.thread .t-when { font-size: 11px; color: var(--ink-mute); flex-shrink: 0; }
.thread .t-new { background: var(--accent-red); color: #fff; font-size: 9px; letter-spacing: 0.1em; padding: 2px 8px; border-radius: 100px; font-weight: 700; }
.t-msgs { border-top: 1px solid var(--hairline); padding: 18px 20px; background: var(--paper-warm); }
.t-msg { max-width: 78%; margin-bottom: 12px; }
.t-msg .who { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 4px; }
.t-msg .bubble { background: #fff; border: 1px solid var(--hairline); border-radius: 3px; padding: 10px 14px; font-size: 13.5px; line-height: 1.6; }
.t-msg.mine { margin-left: auto; }
.t-msg.mine .bubble { background: var(--ink); color: #fff; border-color: var(--ink); }
.t-msg.mine .who { text-align: right; }
.t-reply { display: flex; gap: 8px; margin-top: 6px; }
.t-reply input { flex: 1; border: 1px solid var(--hairline); padding: 10px 14px; font-size: 13.5px; border-radius: var(--radius); outline: none; font-family: inherit; }
.t-reply input:focus { border-color: var(--ink); }

.picker-row { display: flex; gap: 14px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--hairline); }
.picker-row:last-child { border-bottom: none; }
.picker-row .thumb { width: 42px; height: 52px; border-radius: 2px; overflow: hidden; flex-shrink: 0; }
.picker-row .who { flex: 1; }
.picker-row .nm { font-weight: 600; font-size: 14px; }
.picker-row .mut { font-size: 12px; color: var(--ink-mute); }

.booking-card { border: 1px solid var(--hairline); border-radius: 3px; padding: 22px 24px; margin-top: 16px; display: grid; grid-template-columns: 56px 1.4fr 1fr 1fr; gap: 20px; align-items: center; }
.booking-card .thumb { width: 52px; height: 66px; border-radius: 2px; overflow: hidden; }
.booking-card .ref { font-size: 11px; color: var(--ink-mute); }
.booking-card .nm { font-family: var(--serif); font-size: 18px; }
.booking-card .sum { font-size: 13px; color: var(--ink-soft); margin-top: 2px; }
.status-steps { display: flex; align-items: center; gap: 6px; margin-top: 8px; }
.status-steps .sdot { width: 8px; height: 8px; border-radius: 50%; background: var(--hairline); }
.status-steps .sdot.on { background: var(--accent-green); }
.status-lbl { font-size: 12px; font-weight: 600; }
.status-lbl.done { color: var(--accent-green); }
.mine-tag { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; background: var(--ink); color: #fff; padding: 3px 10px; border-radius: 100px; font-weight: 700; }

/* upload previews */
.photo-previews { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.photo-previews .pp { position: relative; width: 84px; height: 108px; border-radius: 3px; overflow: hidden; border: 1px solid var(--hairline); }
.photo-previews .pp img { width: 100%; height: 100%; object-fit: cover; }
.photo-previews .pp button {
  position: absolute; top: 3px; right: 3px; width: 20px; height: 20px; border-radius: 50%;
  border: none; background: rgba(16,16,16,0.8); color: #fff; font-size: 10px; line-height: 1;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.modal-overlay.lightbox { background: rgba(8,8,8,0.92); }
.lb-frame { max-width: min(62vh, 84vw); width: 100%; }
.lb-img { width: 100%; border-radius: 3px; }
.lb-meta { color: #bbb; font-size: 12px; text-align: center; margin-top: 12px; letter-spacing: 0.04em; }
.lb-nav {
  background: none; border: 1px solid #444; color: #ddd; width: 44px; height: 44px; border-radius: 50%;
  font-size: 22px; line-height: 1; margin: 0 18px; flex-shrink: 0;
}
.lb-nav:hover { border-color: #fff; color: #fff; }
.lb-close { position: fixed; top: 20px; right: 24px; background: none; border: none; color: #ddd; font-size: 22px; }
.lb-close:hover { color: #fff; }

/* ============================================================
   PRINT — comp card only
   ============================================================ */
@media print {
  header.topnav, .ticker, main, footer, #toast { display: none !important; }
  .modal-overlay { position: static !important; background: none !important; padding: 0 !important; }
  .modal.compcard { box-shadow: none !important; width: 100% !important; max-height: none !important; overflow: visible !important; }
  .modal.compcard > div:last-child { display: none !important; }
}

/* ============================================================
   OWNER / ADMIN + PERSONAL HOME + INTELLIGENCE
   ============================================================ */
.imp-chip {
  background: var(--accent-red); color: #fff; border: none; border-radius: 100px;
  padding: 7px 14px; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
}
.user-chip.admin { border-color: #8a7a4a; }
.user-chip.admin .uc-av { background: #cbb26a; }

.admin-hero { background: var(--dark); color: #fff; padding: 48px 0 40px; }
.admin-hero h1 { font-family: var(--serif); font-size: 38px; font-weight: 500; }
.admin-hero p { color: #999; font-size: 13.5px; margin-top: 8px; }
.admin-kpis { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 28px; }
.admin-kpis .kpi .n { font-size: 26px; }
.admin-sec { padding: 40px 0 0; }
.admin-sec:last-child { padding-bottom: 80px; }
.admin-sec h2 { font-family: var(--serif); font-size: 26px; font-weight: 500; margin-bottom: 6px; }
.admin-sec .sub { font-size: 13px; color: var(--ink-mute); margin-bottom: 18px; }
.admin-table { width: 100%; border-collapse: collapse; border: 1px solid var(--hairline); border-radius: 3px; }
.admin-table th { text-align: left; font-size: 10px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; padding: 12px 16px; border-bottom: 1px solid var(--hairline); background: var(--paper-warm); }
.admin-table td { padding: 12px 16px; border-bottom: 1px solid var(--hairline); font-size: 13.5px; vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.role-pill { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; border: 1px solid var(--hairline); border-radius: 100px; padding: 3px 10px; color: var(--ink-soft); }
.role-pill.admin { background: #cbb26a; border-color: #cbb26a; color: #fff; }
.app-review { border: 1px solid var(--hairline); border-radius: 3px; padding: 26px; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: start; }
.app-review .decided { font-weight: 700; }
.danger-zone { border: 1px solid rgba(200,68,44,0.4); border-radius: 3px; padding: 22px 26px; display: flex; gap: 12px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.danger-zone .t { font-size: 13.5px; color: var(--ink-soft); max-width: 520px; line-height: 1.6; }

/* personal home strip */
.phome { background: var(--dark); color: #fff; padding: 56px 0; }
.phome .greet { font-family: var(--serif); font-size: clamp(30px, 3.6vw, 44px); font-weight: 500; }
.phome .greet em { font-style: italic; }
.phome .psub { color: #999; font-size: 14px; margin-top: 10px; max-width: 560px; line-height: 1.7; }
.phome-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.phome-card { border: 1px solid var(--hairline-dark); border-radius: 3px; padding: 22px; cursor: pointer; transition: border-color .15s; }
.phome-card:hover { border-color: #777; }
.phome-card .k { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: #888; }
.phome-card .v { font-family: var(--serif); font-size: 24px; margin-top: 8px; line-height: 1.2; }
.phome-card .d { font-size: 12px; color: #999; margin-top: 8px; line-height: 1.6; }
.phome-card .d b { color: #fff; }
.phome-card.hot { border-color: #4a5c4f; background: rgba(46,125,79,0.08); }

/* match & score chips */
.match-chip {
  font-size: 10px; font-weight: 700; padding: 4px 11px; border-radius: 100px; letter-spacing: 0.04em;
  background: rgba(46,125,79,0.12); color: var(--accent-green); white-space: nowrap;
}
.match-chip.mid { background: rgba(166,105,15,0.1); color: #a6690f; }
.match-chip.low { background: rgba(120,120,120,0.12); color: var(--ink-mute); }
.score-badge { display: flex; align-items: baseline; gap: 10px; border-top: 1px solid var(--hairline); margin-top: 12px; padding-top: 12px; }
.score-badge .sn { font-family: var(--serif); font-size: 30px; }
.score-badge .st { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); }
.score-parts { margin-top: 10px; }
.score-parts .sp { display: flex; justify-content: space-between; align-items: center; font-size: 11.5px; color: var(--ink-soft); padding: 3px 0; }
.score-parts .bar { flex: 1; height: 3px; background: var(--hairline); margin: 0 10px; border-radius: 100px; overflow: hidden; }
.score-parts .bar i { display: block; height: 100%; background: var(--ink); }
.comps-note { background: rgba(46,125,79,0.07); border: 1px solid rgba(46,125,79,0.25); border-radius: 3px; padding: 12px 16px; margin-top: 12px; font-size: 12.5px; color: var(--ink-soft); line-height: 1.6; }
.comps-note b { color: var(--accent-green); }

@media (max-width: 1080px) {
  .admin-kpis { grid-template-columns: repeat(2, 1fr); }
  .phome-grid { grid-template-columns: 1fr; }
  .app-review { grid-template-columns: 1fr; }
  .admin-table { display: block; overflow-x: auto; }
}

/* ============================================================
   CONSENT COMMS — agencies directory, submissions, brand follows
   ============================================================ */
.agency-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 24px 0 32px; }
.agency-card { border: 1px solid var(--hairline); border-radius: 3px; padding: 28px; transition: border-color .15s; }
.agency-card:hover { border-color: var(--ink); }
.agency-card .ag-tier { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-green); font-weight: 700; }
.agency-card h3 { font-family: var(--serif); font-size: 23px; font-weight: 500; margin-top: 10px; }
.agency-card .ag-meta { font-size: 12.5px; color: var(--ink-mute); margin: 8px 0 20px; }

.policy-note {
  background: var(--paper-warm); border: 1px solid var(--hairline); border-radius: 3px;
  padding: 14px 18px; font-size: 12.5px; color: var(--ink-soft); line-height: 1.7; margin-top: 16px;
}
.policy-note b { color: var(--ink); }

.subs-panel { background: #fff; border: 1px solid var(--accent-green); border-radius: 3px; padding: 18px 22px; margin-bottom: 20px; }
.subs-panel .sec-kicker { color: var(--accent-green); margin-bottom: 4px; }

.fav-star {
  background: none; border: none; font-size: 17px; color: var(--ink-mute);
  padding: 0 2px; line-height: 1; vertical-align: middle;
}
.fav-star:hover, .fav-star.on { color: #c9a227; }

.brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; max-height: 320px; overflow-y: auto; }
.brand-opt {
  border: 1px solid var(--hairline); background: #fff; border-radius: 100px;
  padding: 9px 8px; font-size: 12px; font-family: var(--serif); letter-spacing: 0.04em;
  transition: all .12s; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.brand-opt:hover { border-color: var(--ink); }
.brand-opt.on { background: var(--ink); color: #fff; border-color: var(--ink); }

@media (max-width: 1080px) {
  .agency-grid { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   AGENCY-GRADE POLISH (Le Management-inspired) + SAFETY
   ============================================================ */
.boards { display: flex; align-items: baseline; gap: 28px; padding: 40px 0 0; border-bottom: 1px solid var(--hairline); flex-wrap: wrap; }
.board {
  background: none; border: none; font-family: var(--serif); font-size: 27px;
  color: var(--ink-mute); padding: 0 0 14px; border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color .15s;
}
.board:hover { color: var(--ink); }
.board.on { color: var(--ink); border-bottom-color: var(--ink); }
.letter-strip { margin-left: auto; display: flex; gap: 2px; flex-wrap: wrap; align-items: center; padding-bottom: 14px; }
.letter-strip button {
  background: none; border: none; font-size: 11px; letter-spacing: 0.08em; color: var(--ink-mute);
  padding: 4px 6px; border-radius: 2px;
}
.letter-strip button:hover { color: var(--ink); }
.letter-strip button.on { background: var(--ink); color: #fff; }

/* hover-reveal measurements on cards — the agency-book feel */
.mcard .hoverinfo {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(12,12,12,0.82));
  display: flex; justify-content: center; gap: 16px; padding: 34px 10px 12px;
  opacity: 0; transition: opacity .25s; pointer-events: none;
}
.mcard:hover .hoverinfo { opacity: 1; }
.mcard .hoverinfo span { color: #fff; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; }
.mcard .hoverinfo i { font-style: normal; font-size: 9px; color: #bbb; letter-spacing: 0.1em; }
.mcard .save.onx { opacity: 1; }

/* why-not-agency-sites cards on landing */
.agvs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.agvs-card { border: 1px solid var(--hairline-dark); border-radius: 3px; padding: 26px; }
.agvs-card .k { font-family: var(--serif); font-size: 19px; margin-bottom: 12px; }
.agvs-card p { font-size: 13px; color: #a8a8a8; line-height: 1.75; }
.agvs-card p b { color: #fff; font-weight: 600; }

/* trust: AI cards + pledge */
.trust-card.ai-card { background: var(--dark); color: #fff; border-color: var(--dark); }
.trust-card.ai-card .tnum { color: #cbb26a; }
.trust-card.ai-card p { color: #a8a8a8; }
.trust-card.ai-card p b { color: #fff; }
.trust-card.ai-card h3 { color: #fff; }
.pledge-band { border-top: 1px solid var(--hairline); padding: 72px 0 88px; text-align: center; }
.pledge {
  font-family: var(--serif); font-size: clamp(20px, 2.6vw, 28px); line-height: 1.55;
  max-width: 820px; margin: 18px auto 0; font-style: italic; color: var(--ink);
}
.pledge-sig { margin-top: 22px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); }

.report-btn { flex: 0 0 auto; padding: 10px 14px; color: var(--ink-mute); }
.report-btn:hover { color: #fff; background: var(--accent-red); border-color: var(--accent-red); }

@media (max-width: 1080px) {
  .agvs-grid { grid-template-columns: 1fr; }
  .boards { gap: 18px; }
  .board { font-size: 21px; }
  .letter-strip { margin-left: 0; }
}

/* ============================================================
   PHOTOGRAPHERS + DIGITALS RULES
   ============================================================ */
.photog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.photog-card { border: 1px solid var(--hairline); border-radius: 3px; display: grid; grid-template-columns: 150px 1fr; overflow: hidden; transition: border-color .15s; }
.photog-card:hover { border-color: var(--ink); }
.photog-card .ph-visual { background: var(--paper-warm); }
.photog-card .ph-visual img { width: 100%; height: 100%; object-fit: cover; }
.photog-card .ph-body { padding: 22px 24px; }
.photog-card h3 { font-family: var(--serif); font-size: 21px; font-weight: 500; margin-top: 8px; }
.photog-card .ph-pack .value { font-size: 13px; }
.photog-card .ph-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; gap: 10px; }

.rules-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0 22px; }
.rules-col { border: 1px solid var(--hairline); border-radius: 3px; padding: 18px 20px; }
.rules-col .rt { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; margin-bottom: 12px; }
.rules-col .rt.do { color: var(--accent-green); }
.rules-col .rt.dont { color: var(--accent-red); }
.rules-col ul { list-style: none; }
.rules-col li { font-size: 12.5px; color: var(--ink-soft); padding: 5px 0 5px 14px; position: relative; line-height: 1.5; }
.rules-col li::before { content: "—"; position: absolute; left: 0; color: var(--ink-mute); }
.rules-col li b { color: var(--accent-red); }

/* real nearby studios (live OSM results) */
.picker-row.real-studio {
  border: 1px solid var(--hairline); border-radius: 3px;
  padding: 14px 18px; margin-top: 10px; background: var(--paper);
}
.picker-row.real-studio:hover { border-color: var(--ink); }
.picker-row.real-studio .nm { display: flex; align-items: center; flex-wrap: wrap; gap: 4px; }

@media (max-width: 1080px) {
  .photog-grid { grid-template-columns: 1fr; }
  .rules-cols { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .photog-card { grid-template-columns: 1fr; }
  .photog-card .ph-visual { height: 140px; }
}

/* ---------- toast ---------- */
#toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: #fff; padding: 12px 24px; border-radius: 3px; font-size: 13px;
  opacity: 0; pointer-events: none; transition: all .3s; z-index: 300; box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .personas-grid, .face-grid { grid-template-columns: repeat(2, 1fr); }
  .statbar-inner { grid-template-columns: repeat(3, 1fr); }
  .market-cols, .market-body { grid-template-columns: 1fr; }
  .market-kpis { grid-template-columns: repeat(2, 1fr); }
  .mtable, .scout-table { display: block; overflow-x: auto; }
  .stats-strip, .dash-cards { grid-template-columns: repeat(2, 1fr); }
  .profile-top { grid-template-columns: 1fr; }
  .discover-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .folio-grid { grid-template-columns: repeat(3, 1fr); }
  .dash { grid-template-columns: 1fr; }
  .dash-side { display: none; }
}
@media (max-width: 640px) {
  .personas-grid, .face-grid, .results-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .frow { grid-template-columns: 1fr; }
  .cs-ess, .cs-cols { flex-direction: column; }
}

/* ============================================================
   CALL SHEET — the structured casting brief
   ============================================================ */
.cs-doc { color: var(--ink); font-family: var(--sans); }
.cs-top { border-bottom: 2px solid var(--ink); padding-bottom: 16px; margin-bottom: 20px; }
.cs-kicker { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; }
.cs-client { font-family: var(--serif); font-size: 30px; font-weight: 500; margin: 8px 0 3px; line-height: 1.1; }
.cs-project { font-size: 13.5px; color: var(--ink-soft); }

.cs-ess { display: flex; gap: 12px; margin: 18px 0 6px; flex-wrap: wrap; }
.cs-tile { flex: 1; min-width: 150px; border: 1px solid var(--hairline); border-radius: 8px; padding: 13px 15px; background: var(--paper-warm); }
.cs-tile .l { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; }
.cs-tile .v { font-size: 16px; font-weight: 700; margin-top: 4px; line-height: 1.3; }
.cs-tile .v a { color: var(--ink); text-decoration: underline; }
.cs-tile .s { font-size: 12px; color: var(--ink-mute); margin-top: 4px; }

.cs-sec { margin: 24px 0; }
.cs-h { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: var(--ink);
  border-bottom: 1px solid var(--hairline); padding-bottom: 7px; margin-bottom: 14px; }

.cs-show { border-left: 3px solid var(--ink); padding: 3px 0 3px 14px; margin-bottom: 14px; }
.cs-show .n { font-weight: 700; font-size: 14.5px; }
.cs-show .r { font-size: 13px; color: var(--ink-soft); margin-top: 1px; }
.cs-show .c { font-size: 13px; font-weight: 700; color: var(--accent-green); margin-top: 2px; }

.cs-cols { display: flex; gap: 26px; flex-wrap: wrap; }
.cs-col { flex: 1; min-width: 220px; }
.cs-col h5 { font-size: 12px; letter-spacing: 0.04em; margin-bottom: 7px; text-transform: uppercase; color: var(--ink-mute); }
.cs-col ul { margin: 0; padding-left: 18px; }
.cs-col li { font-size: 13.5px; margin-bottom: 4px; line-height: 1.45; }

.cs-note { font-size: 13.5px; line-height: 1.55; margin: 7px 0; color: var(--ink-soft); }
.cs-note b { color: var(--ink); }
.cs-fine { font-size: 11.5px; color: var(--ink-mute); margin-top: 8px; }
.cs-foot { margin-top: 26px; padding-top: 13px; border-top: 1px solid var(--hairline); font-size: 10.5px; color: var(--ink-mute); line-height: 1.5; }

/* "put you forward" banner on the call sheet */
.cs-banner { background: var(--ink); color: #fff; font-size: 13px; padding: 12px 16px; border-radius: 8px; margin-bottom: 18px; line-height: 1.5; }
.cs-banner b { font-weight: 700; }

/* ---------- casting invitations in the model inbox ---------- */
.invites-block { border: 1px solid var(--ink); border-radius: 12px; padding: 20px 22px; margin-bottom: 26px; background: var(--paper-warm); }
.invites-head { font-family: var(--serif); font-size: 22px; font-weight: 500; }
.invites-sub { font-size: 13px; color: var(--ink-mute); margin: 4px 0 16px; }
.invite-card { display: flex; gap: 16px; align-items: center; justify-content: space-between; flex-wrap: wrap;
  background: var(--paper); border: 1px solid var(--hairline); border-radius: 8px; padding: 14px 16px; margin-bottom: 10px; }
.invite-card.done { opacity: 0.72; }
.invite-main { min-width: 220px; flex: 1; }
.invite-kicker { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-green); font-weight: 700; }
.invite-title { font-family: var(--serif); font-size: 17px; font-weight: 500; margin: 3px 0 2px; }
.invite-meta { font-size: 12.5px; color: var(--ink-mute); }
.invite-actions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.invite-actions .subtle { color: var(--ink-mute); }
.invite-confirmed { font-size: 12.5px; color: var(--accent-green); font-weight: 600; }
@media (max-width: 640px) { .invite-actions { width: 100%; } }

/* ---------- two-tier portfolio: public book + private digitals ---------- */
.folio-note { font-size: 12.5px; color: var(--ink-mute); margin-top: 16px; line-height: 1.55; }
.folio-note b { color: var(--ink-soft); }
.ptabs .pt-lock { color: var(--ink); }

.digitals-banner { display: flex; gap: 14px; align-items: flex-start; background: var(--ink); color: #fff;
  border-radius: 10px; padding: 16px 18px; margin-bottom: 16px; line-height: 1.5; font-size: 13.5px; }
.digitals-banner b { font-weight: 700; }
.db-lock { font-size: 22px; line-height: 1; flex-shrink: 0; }
.db-fine { display: block; margin-top: 7px; font-size: 12px; color: rgba(255,255,255,0.72); }
.digitals-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.digitals-meta span { font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-mute);
  border: 1px solid var(--hairline); border-radius: 999px; padding: 4px 11px; }
.dig-req { color: var(--accent-red) !important; border-color: var(--accent-red) !important; font-weight: 600; }
.dig-opt { color: var(--accent-green) !important; border-color: var(--accent-green) !important; font-weight: 600; }
.guideline-list { margin: 14px 0 4px; padding-left: 22px; }
.guideline-list li { font-size: 13.5px; line-height: 1.5; margin-bottom: 9px; color: var(--ink-soft); }
.acct-digitals { margin-top: 18px; border-top: 1px solid var(--hairline); padding-top: 16px; }
.ad-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.ad-head > span:first-child { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: var(--ink); }
.ad-tools { display: flex; gap: 14px; }
.ad-note { font-size: 12.5px; color: var(--ink-mute); line-height: 1.55; margin-top: 12px; }
.ad-note b { color: var(--ink-soft); }

.deliver-note { background: var(--ink); color: #fff; border-radius: 8px; padding: 14px 16px; margin: 14px 0 4px; font-size: 13.5px; line-height: 1.55; }
.deliver-note.ok { background: rgba(46,125,79,0.08); color: var(--ink); border: 1px solid var(--accent-green); }
.deliver-note b { font-weight: 700; }

.intake-list { display: flex; flex-direction: column; gap: 2px; margin-top: 6px; }
.intake-row { display: grid; grid-template-columns: 90px 1.2fr 1.6fr auto; gap: 12px; align-items: baseline;
  padding: 10px 0; border-bottom: 1px solid var(--hairline); font-size: 13px; }
.ir-kind { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-green); font-weight: 700; }
.ir-who { font-weight: 600; }
.ir-meta, .ir-when { color: var(--ink-mute); font-size: 12px; }
@media (max-width: 640px) { .intake-row { grid-template-columns: 1fr 1fr; } }

.ms-status { margin-top: 8px; }
.ms-pill { display: inline-block; font-size: 11px; letter-spacing: 0.05em; font-weight: 600; padding: 4px 12px; border-radius: 999px; border: 1px solid; }
.ms-pill.est { color: var(--accent-green); border-color: var(--accent-green); background: rgba(46,125,79,0.06); }
.ms-pill.new { color: var(--ink-soft); border-color: var(--hairline); background: var(--paper-warm); }

.why-box { background: var(--paper-warm); border: 1px solid var(--hairline); border-left: 3px solid var(--ink);
  border-radius: 8px; padding: 15px 17px; font-size: 13.5px; line-height: 1.6; color: var(--ink-soft); }
.why-box b { color: var(--ink); display: block; margin-bottom: 5px; }
.why-box em { font-style: italic; color: var(--ink); }

.digitals-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.polaroid { background: #fff; border: 1px solid var(--hairline); border-radius: 4px; padding: 8px 8px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.pola-img { aspect-ratio: 3 / 4; overflow: hidden; background: var(--paper-warm); }
.pola-img img { width: 100%; height: 100%; display: block; object-fit: cover; }
.polaroid figcaption { font-size: 11.5px; color: var(--ink-soft); text-align: center; padding: 9px 4px 11px;
  font-family: var(--sans); letter-spacing: 0.02em; }
@media (max-width: 640px) { .digitals-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- long-form legal documents (privacy, terms) ---------- */
.legal-doc { max-width: 760px; margin: 0 auto; padding: 56px 0 96px; }
.legal-doc h2 { font-family: var(--serif); font-size: 24px; margin: 44px 0 12px; }
.legal-doc h3 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: #888; margin: 26px 0 8px; }
.legal-doc p, .legal-doc li { font-size: 14.5px; line-height: 1.75; color: var(--ink); }
.legal-doc ul { padding-left: 20px; margin: 8px 0 14px; }
.legal-doc li { margin-bottom: 6px; }
.legal-doc table { width: 100%; border-collapse: collapse; margin: 12px 0 20px; font-size: 13.5px; }
.legal-doc th, .legal-doc td { text-align: left; padding: 9px 10px; border-bottom: 1px solid var(--hairline-dark); vertical-align: top; }
.legal-doc th { font-size: 10px; letter-spacing: .13em; text-transform: uppercase; color: #888; }
.legal-draft { border: 1px solid #a6690f; color: #a6690f; border-radius: 3px; padding: 14px 16px; font-size: 13.5px; line-height: 1.6; margin-bottom: 8px; }
.legal-updated { font-size: 12px; color: #888; margin-top: 6px; }
