/* ─────────────────────────────────────────
   NCHOTA · styles.css
   "To seek out" — AI Casting Infrastructure
   
   Palette philosophy:
   - Everything is greyscale/charcoal
   - One accent: amber (#c8a84b)
   - One success: sage (#5a8870)
   - No other colours anywhere
───────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Backgrounds — dark charcoal scale */
  --bg:       #090909;
  --bg2:      #0e0e0e;
  --surface:  #131313;
  --raised:   #181818;
  --hover:    #1e1e1e;

  /* Borders */
  --border:   #252525;
  --border2:  #303030;

  /* Text */
  --text:     #ede9e0;
  --text2:    #888078;
  --text3:    #484440;

  /* Amber — the only accent */
  --amber:     #c8a84b;
  --amber-dim: #7a6428;
  --amber-bg:  rgba(200,168,75,.07);
  --amber-brd: rgba(200,168,75,.22);

  /* Sage — success states only */
  --sage:     #5a8870;
  --sage-bg:  rgba(90,136,112,.09);
  --sage-brd: rgba(90,136,112,.22);

  /* Danger — declines only */
  --danger:     #7a4040;
  --danger-bg:  rgba(122,64,64,.09);
  --danger-brd: rgba(122,64,64,.22);

  /* Layout */
  --nav-h: 60px;
  --r:  10px;
  --rl: 14px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* film grain overlay */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9000;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  opacity: .45;
}

/* ─── CURSOR ─── */
#cursor {
  position: fixed;
  width: 9px; height: 9px;
  background: var(--amber);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s;
  mix-blend-mode: difference;
}
#cursor-ring {
  position: fixed;
  width: 28px; height: 28px;
  border: 1px solid rgba(200,168,75,.32);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: left .1s ease, top .1s ease, width .25s, height .25s;
}

/* ─── VIEWS ─── */
.view { display: none; }
.view.active { display: block; }

/* ─── NAV ─── */
.gnav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 8000;
  background: rgba(9,9,9,.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 52px);
}
.nav-logo {
  font-family: 'Bebas Neue';
  font-size: 20px; letter-spacing: 5px;
  color: var(--amber); cursor: none;
  user-select: none;
}
.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-link {
  padding: 7px 14px;
  font-family: 'Bebas Neue'; font-size: 11px; letter-spacing: 3px;
  color: var(--text3); cursor: none; border: none; background: none;
  border-radius: 5px; transition: color .2s;
}
.nav-link:hover { color: var(--text2); }
.nav-link.active { color: var(--amber); }
.nav-cta {
  padding: 8px 20px;
  background: var(--amber-bg); border: 1px solid var(--amber-brd);
  color: var(--amber); font-family: 'Bebas Neue'; font-size: 11px;
  letter-spacing: 3px; border-radius: 5px; cursor: none; transition: background .2s;
}
.nav-cta:hover { background: rgba(200,168,75,.13); }

.demo-bar {
  display: flex; gap: 2px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; padding: 3px; margin-left: 14px;
}
.demo-pill {
  padding: 5px 12px;
  font-family: 'Bebas Neue'; font-size: 10px; letter-spacing: 2px;
  color: var(--text3); cursor: none; border: none; background: none;
  border-radius: 5px; transition: all .2s; white-space: nowrap;
}
.demo-pill.on { background: var(--amber-bg); color: var(--amber); }

/* ─── TYPE ─── */
.display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700; line-height: .92;
}
.display em { color: var(--amber); font-style: italic; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px;
  background: var(--amber); color: #000;
  font-family: 'Bebas Neue'; font-size: 13px; letter-spacing: 4px;
  border: none; cursor: none; border-radius: 5px;
  transition: opacity .2s; white-space: nowrap;
}
.btn-primary:hover { opacity: .86; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px;
  background: none; border: 1px solid var(--border2);
  color: var(--text2); font-family: 'Bebas Neue'; font-size: 13px;
  letter-spacing: 4px; cursor: none; border-radius: 5px;
  transition: border-color .2s, color .2s; white-space: nowrap;
}
.btn-outline:hover { border-color: var(--amber-brd); color: var(--amber); }

.btn-ghost {
  padding: 7px 16px;
  background: none; border: 1px solid var(--border);
  color: var(--text3); font-family: 'Bebas Neue'; font-size: 11px;
  letter-spacing: 2px; cursor: none; border-radius: 5px;
  transition: all .2s; white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--border2); color: var(--text2); }
.btn-ghost.active { background: var(--amber-bg); border-color: var(--amber-brd); color: var(--amber); }

.btn-amber {
  padding: 8px 18px;
  background: var(--amber-bg); border: 1px solid var(--amber-brd);
  color: var(--amber); font-family: 'Bebas Neue'; font-size: 11px;
  letter-spacing: 2px; cursor: none; border-radius: 5px;
  transition: background .2s; white-space: nowrap;
}
.btn-amber:hover { background: rgba(200,168,75,.14); }

.btn-sage {
  padding: 8px 18px;
  background: var(--sage-bg); border: 1px solid var(--sage-brd);
  color: var(--sage); font-family: 'Bebas Neue'; font-size: 11px;
  letter-spacing: 2px; cursor: none; border-radius: 5px;
  transition: background .2s; white-space: nowrap;
}
.btn-sage:hover { background: rgba(90,136,112,.16); }

/* ─── TAGS ─── */
.tag {
  display: inline-block; padding: 3px 10px;
  border: 1px solid var(--border); border-radius: 20px;
  font-size: 11px; color: var(--text3);
}
.tag.amber { border-color: var(--amber-brd); color: var(--amber); background: var(--amber-bg); }
.tag.sage  { border-color: var(--sage-brd);  color: var(--sage);  background: var(--sage-bg); }

.toggle-tag {
  padding: 6px 14px; border-radius: 20px;
  border: 1px solid var(--border);
  font-size: 12px; color: var(--text3);
  cursor: none; transition: all .18s; user-select: none;
  display: inline-block;
}
.toggle-tag:hover { border-color: var(--border2); color: var(--text2); }
.toggle-tag.on { border-color: var(--amber-brd); color: var(--amber); background: var(--amber-bg); }

/* ─── BADGES ─── */
.badge {
  display: inline-block; padding: 2px 9px;
  border-radius: 4px; font-family: 'Bebas Neue';
  font-size: 9px; letter-spacing: 2px;
}
.b-new      { background: rgba(50,70,100,.2);  color: #6888b0; border: 1px solid rgba(50,70,100,.3); }
.b-reviewed { background: var(--amber-bg);     color: var(--amber); border: 1px solid var(--amber-brd); }
.b-short    { background: var(--sage-bg);      color: var(--sage);  border: 1px solid var(--sage-brd); }
.b-declined { background: var(--danger-bg);    color: var(--danger); border: 1px solid var(--danger-brd); }
.b-live     { background: var(--sage-bg);      color: var(--sage);  border: 1px solid var(--sage-brd); }
.b-draft    { background: var(--amber-bg);     color: var(--amber); border: 1px solid var(--amber-brd); }

/* ─── FORM ─── */
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-row3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }

label, .label {
  display: block;
  font-family: 'Bebas Neue'; font-size: 10px;
  letter-spacing: 3px; color: var(--text3); margin-bottom: 6px;
}
input[type=text], input[type=email], input[type=tel],
input[type=password], input[type=url], select, textarea {
  width: 100%;
  background: var(--raised); border: 1px solid var(--border);
  border-radius: var(--r); padding: 11px 13px;
  color: var(--text); font-family: 'DM Sans'; font-size: 14px;
  outline: none; transition: border-color .2s; cursor: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--amber-brd); }
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23484440' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
}
select option { background: var(--raised); }
textarea { resize: vertical; min-height: 84px; }
input[type=file] { display: none; }

/* ─── UPLOAD ZONE ─── */
.upload-zone {
  border: 2px dashed var(--border); border-radius: var(--rl);
  padding: clamp(24px, 5vw, 44px); text-align: center;
  cursor: none; transition: all .25s; background: var(--raised);
}
.upload-zone:hover, .upload-zone.drag { border-color: var(--amber-brd); background: var(--amber-bg); }
.upload-zone.filled { border-style: solid; border-color: var(--sage-brd); background: var(--sage-bg); }
.uz-icon { font-size: 32px; margin-bottom: 9px; display: block; opacity: .5; }
.uz-title { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 600; margin-bottom: 4px; }
.uz-sub { font-size: 13px; color: var(--text3); margin-bottom: 13px; }
.uz-limit { font-size: 11px; color: var(--text3); margin-top: 8px; }
.uz-preview { display: none; align-items: center; gap: 11px; padding: 10px 13px; background: var(--bg2); border-radius: var(--r); margin-top: 11px; }
.uz-preview.show { display: flex; }
.uz-pname { font-size: 13px; font-weight: 500; flex: 1; }
.uz-psize { font-size: 11px; color: var(--text3); }
.uz-check { width: 22px; height: 22px; border-radius: 50%; background: var(--sage-bg); border: 1px solid var(--sage-brd); display: flex; align-items: center; justify-content: center; color: var(--sage); font-size: 11px; }

/* ─── TOGGLE SWITCH ─── */
.switch {
  width: 40px; height: 22px; border-radius: 11px;
  background: var(--sage-bg); border: 1px solid var(--sage-brd);
  position: relative; cursor: none; flex-shrink: 0; transition: all .25s;
}
.switch::after {
  content: ''; position: absolute;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--sage); top: 2px; left: 20px; transition: left .2s;
}
.switch.off { background: var(--raised); border-color: var(--border); }
.switch.off::after { left: 2px; background: var(--text3); }

/* ─── SCROLL REVEAL ─── */
.rev { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.rev.vis { opacity: 1; transform: translateY(0); }

/* ─── TOAST ─── */
.toast {
  position: fixed; bottom: 22px; left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: var(--r); padding: 10px 20px;
  font-size: 13px; font-weight: 500; color: var(--text);
  z-index: 99999; opacity: 0; transition: all .35s;
  white-space: nowrap; pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--border); }

/* ─── KEYFRAMES ─── */
@keyframes blink   { 0%,49%,100%{opacity:1}  50%,99%{opacity:0} }
@keyframes pulse   { 0%,100%{opacity:1} 50%{opacity:.3} }
@keyframes popIn   { from{opacity:0;transform:scale(.3)} to{opacity:1;transform:scale(1)} }
@keyframes slideIn { from{transform:translateX(100%)} to{transform:translateX(0)} }
@keyframes fadeUp  { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:translateY(0)} }

/* ═══════════════════════════════════════════
   HOME — PUBLIC CASTINGS MARKETPLACE
═══════════════════════════════════════════ */
#home-view { min-height: 100vh; padding-top: var(--nav-h); }

.hero {
  position: relative; overflow: hidden;
  padding: clamp(64px,10vw,110px) clamp(20px,6vw,68px) clamp(48px,7vw,72px);
  background: radial-gradient(ellipse at 32% 50%, rgba(200,168,75,.05) 0%, transparent 55%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px; opacity: .5;
}
.hero-vign {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 32% 50%, transparent 18%, var(--bg) 70%);
}
.hero-inner { position: relative; z-index: 2; max-width: 580px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amber-bg); border: 1px solid var(--amber-brd);
  border-radius: 4px; padding: 4px 13px; margin-bottom: 20px;
}
.hero-pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); animation: blink .9s step-end infinite; }
.hero-pill-txt { font-family: 'Bebas Neue'; font-size: 10px; letter-spacing: 4px; color: var(--amber); }
.hero-title { font-size: clamp(42px,8vw,84px); margin-bottom: 18px; }
.hero-sub { font-size: clamp(13px,1.4vw,15px); color: var(--text2); line-height: 1.8; max-width: 440px; margin-bottom: 30px; }
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-kpis {
  position: absolute; right: clamp(20px,6vw,68px); top: 50%;
  transform: translateY(-50%); display: flex;
  flex-direction: column; gap: 10px; z-index: 2;
}
.kpi-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 13px 18px; text-align: center; min-width: 90px; }
.kpi-v { font-family: 'Bebas Neue'; font-size: clamp(20px,3vw,30px); color: var(--amber); }
.kpi-l { font-size: 10px; color: var(--text3); letter-spacing: 2px; margin-top: 2px; }

/* Filter bar */
.filter-bar {
  background: var(--bg2); border-bottom: 1px solid var(--border);
  padding: 0 clamp(16px,4vw,52px);
  display: flex; align-items: center; gap: 0;
  overflow-x: auto; position: sticky; top: var(--nav-h); z-index: 100;
}
.filter-bar::-webkit-scrollbar { display: none; }
.filter-group {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 20px 12px 0;
  border-right: 1px solid var(--border); margin-right: 20px; flex-shrink: 0;
}
.filter-group:last-of-type { border: none; margin-right: 0; }
.fg-label { font-family: 'Bebas Neue'; font-size: 9px; letter-spacing: 3px; color: var(--text3); margin-right: 4px; white-space: nowrap; }
.filter-count { font-family: 'Bebas Neue'; font-size: 10px; letter-spacing: 2px; color: var(--text3); margin-left: auto; padding-left: 20px; white-space: nowrap; flex-shrink: 0; }

/* Castings grid */
.castings-section { padding: clamp(22px,3.5vw,40px) clamp(16px,4vw,52px); }
.castings-hd { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; flex-wrap: wrap; gap: 10px; }
.castings-hd-label { font-family: 'Bebas Neue'; font-size: 11px; letter-spacing: 4px; color: var(--text3); }
.sort-row { display: flex; gap: 4px; }

.castings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr)); gap: 13px; }
.c-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--rl); overflow: hidden; cursor: none; transition: transform .2s, border-color .2s; }
.c-card:hover { transform: translateY(-3px); border-color: var(--border2); }
.c-card.featured { border-color: var(--amber-brd); }
.c-card-top { padding: 16px 18px; border-bottom: 1px solid var(--border); }
.c-type-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 9px; }
.c-fee { font-family: 'Bebas Neue'; font-size: 15px; color: var(--text); }
.c-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(16px,1.9vw,20px); font-weight: 700; line-height: 1.15; margin-bottom: 3px; }
.c-role { font-size: 12px; color: var(--text3); margin-bottom: 9px; }
.c-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.c-card-bottom { padding: 10px 18px; display: flex; align-items: center; justify-content: space-between; }
.c-meta { font-size: 12px; color: var(--text3); display: flex; gap: 12px; }
.no-results { grid-column: 1/-1; text-align: center; padding: 56px 20px; }
.no-results-icon { font-size: 36px; opacity: .2; margin-bottom: 10px; }
.no-results-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--text3); }


/* ═══════════════════════════════════════════
   DIRECTOR ONBOARDING
═══════════════════════════════════════════ */
#onboard-view { min-height: 100vh; padding-top: var(--nav-h); display: none; }
#onboard-view.active { display: flex; align-items: center; justify-content: center; padding: 40px 20px; }

.onboard-wrap { width: 100%; max-width: 620px; }
.onboard-logo { font-family: 'Bebas Neue'; font-size: 16px; letter-spacing: 4px; color: var(--amber); margin-bottom: 32px; }
.onboard-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(30px,5vw,52px); font-weight: 700; line-height: .95; margin-bottom: 10px; }
.onboard-title em { color: var(--amber); font-style: italic; }
.onboard-sub { font-size: 15px; color: var(--text2); margin-bottom: 36px; line-height: 1.7; }

/* Import options */
.import-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.import-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--rl); padding: 18px 20px;
  cursor: none; transition: all .22s; text-align: center;
}
.import-card:hover { border-color: var(--amber-brd); background: var(--amber-bg); }
.import-card.selected { border-color: var(--amber); background: var(--amber-bg); }
.import-card.manual-card { grid-column: 1 / -1; }
.ic-icon { font-size: 26px; margin-bottom: 8px; display: block; opacity: .7; }
.ic-label { font-family: 'Bebas Neue'; font-size: 12px; letter-spacing: 3px; color: var(--text2); margin-bottom: 3px; }
.ic-sub { font-size: 12px; color: var(--text3); }

/* Import URL field */
.import-url-section { display: none; margin-bottom: 20px; }
.import-url-section.show { display: block; }
.import-url-row { display: flex; gap: 8px; }
.import-url-row input { flex: 1; }

/* Divider */
.or-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; color: var(--text3); font-size: 12px; }
.or-divider::before, .or-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* Manual form */
.manual-form { display: none; }
.manual-form.show { display: block; }

/* Imported preview card */
.imported-preview {
  display: none; background: var(--surface); border: 1px solid var(--amber-brd);
  border-radius: var(--rl); padding: 18px 20px; margin-bottom: 20px;
}
.imported-preview.show { display: flex; gap: 14px; align-items: center; }
.ip-avatar { width: 52px; height: 52px; border-radius: 12px; background: var(--raised); border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.ip-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; margin-bottom: 2px; }
.ip-role { font-size: 13px; color: var(--text3); }
.ip-credits { font-size: 12px; color: var(--text2); margin-top: 5px; }
.ip-check { margin-left: auto; width: 28px; height: 28px; border-radius: 50%; background: var(--sage-bg); border: 1px solid var(--sage-brd); display: flex; align-items: center; justify-content: center; color: var(--sage); font-size: 14px; }


/* ═══════════════════════════════════════════
   TALENT SUBMISSION VIEW
═══════════════════════════════════════════ */
#talent-view { min-height: 100vh; padding-top: var(--nav-h); }

.brief-hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(44px,7vw,86px) clamp(20px,6vw,68px);
  overflow: hidden;
}
.bh-bg { position: absolute; inset: 0; background: linear-gradient(135deg,#060405 0%,#0b0910 50%,#060405 100%); }
.bh-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px; opacity: .3;
}
.bh-vign { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, transparent 18%, rgba(6,4,5,.92) 72%); }
.bh-inner { position: relative; z-index: 2; max-width: 600px; }
.bh-title { font-size: clamp(38px,7vw,76px); margin-bottom: 13px; }
.bh-studio { font-family: 'Bebas Neue'; font-size: clamp(11px,1.4vw,14px); letter-spacing: 3px; color: var(--text3); margin-bottom: 20px; }
.bh-desc { font-size: clamp(13px,1.4vw,15px); color: var(--text2); line-height: 1.8; max-width: 480px; margin-bottom: 26px; }
.req-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px,1fr)); gap: 7px; max-width: 480px; margin-bottom: 26px; }
.req-item { background: rgba(200,168,75,.04); border: 1px solid var(--amber-brd); border-radius: var(--r); padding: 9px 11px; }
.req-item-label { font-family: 'Bebas Neue'; font-size: 9px; letter-spacing: 3px; color: var(--text3); margin-bottom: 2px; }
.req-item-val { font-size: 13px; font-weight: 500; }
.fee-badge { display: inline-flex; align-items: center; gap: 12px; background: var(--raised); border: 1px solid var(--border2); border-radius: var(--r); padding: 10px 16px; margin-bottom: 30px; }
.fb-label { font-family: 'Bebas Neue'; font-size: 9px; letter-spacing: 3px; color: var(--text3); }
.fb-val { font-family: 'Bebas Neue'; font-size: clamp(18px,2.8vw,26px); color: var(--amber); }
.bh-bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 44px;
  background: rgba(9,9,9,.97); border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(16px,6vw,68px);
}
.bh-bar-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text3); }
.bh-bar-val { font-family: 'Bebas Neue'; font-size: 13px; color: var(--text2); }

.form-wrap { max-width: 680px; margin: 0 auto; padding: clamp(44px,6vw,64px) clamp(20px,6vw,44px); }
.form-step { margin-bottom: 48px; }
.step-num { font-family: 'Bebas Neue'; font-size: clamp(52px,9vw,90px); color: rgba(200,168,75,.06); line-height: 1; margin-bottom: -10px; display: block; }
.step-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(22px,3vw,32px); font-weight: 700; margin-bottom: 5px; }
.step-sub { font-size: 14px; color: var(--text2); margin-bottom: 18px; line-height: 1.65; }
.skill-grid { display: flex; flex-wrap: wrap; gap: 7px; }

/* Success */
.success-screen { display: none; min-height: 60vh; align-items: center; justify-content: center; flex-direction: column; text-align: center; padding: 48px 24px; }
.success-screen.show { display: flex; }
.ss-icon { font-size: 52px; margin-bottom: 16px; opacity: .75; }
.ss-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(26px,4.5vw,44px); font-weight: 700; margin-bottom: 9px; }
.ss-sub { font-size: 14px; color: var(--text2); max-width: 400px; margin: 0 auto 22px; }
.ss-receipt { background: var(--surface); border: 1px solid var(--border); border-radius: var(--rl); padding: 16px 22px; max-width: 340px; width: 100%; text-align: left; margin-bottom: 22px; }
.ss-row { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px solid var(--border); }
.ss-row:last-child { border: none; }
.ss-l { font-size: 12px; color: var(--text3); }
.ss-v { font-size: 13px; font-weight: 500; }

.profile-prompt { background: var(--surface); border: 1px solid var(--border); border-top: 2px solid var(--amber); border-radius: var(--rl); padding: clamp(20px,3.5vw,30px); max-width: 420px; width: 100%; margin-top: 18px; text-align: left; }
.pp-eye { font-family: 'Bebas Neue'; font-size: 10px; letter-spacing: 4px; color: var(--amber); margin-bottom: 7px; display: block; }
.pp-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(17px,2.5vw,24px); font-weight: 700; margin-bottom: 7px; }
.pp-sub { font-size: 13px; color: var(--text2); line-height: 1.7; margin-bottom: 14px; }
.pp-perks { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.pp-perk { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--text2); }
.pp-perk-ic { width: 22px; height: 22px; border-radius: 50%; background: var(--amber-bg); border: 1px solid var(--amber-brd); display: flex; align-items: center; justify-content: center; font-size: 10px; flex-shrink: 0; }
.pp-pw-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.pp-save { width: 100%; padding: 12px; background: var(--amber); color: #000; font-family: 'Bebas Neue'; font-size: 13px; letter-spacing: 4px; border: none; cursor: none; border-radius: var(--r); transition: opacity .2s; }
.pp-save:hover { opacity: .86; }
.pp-skip { display: block; text-align: center; margin-top: 9px; font-size: 12px; color: var(--text3); cursor: none; text-decoration: underline; text-underline-offset: 3px; }
.profile-saved { display: none; flex-direction: column; align-items: center; text-align: center; margin-top: 18px; max-width: 420px; width: 100%; }
.profile-saved.show { display: flex; }
.ps-check { width: 50px; height: 50px; border-radius: 50%; background: var(--sage-bg); border: 1px solid var(--sage-brd); display: flex; align-items: center; justify-content: center; color: var(--sage); font-size: 22px; margin-bottom: 12px; animation: popIn .45s cubic-bezier(.17,.67,.35,1.5); }


/* ═══════════════════════════════════════════
   DIRECTOR VIEW
═══════════════════════════════════════════ */
#director-view { min-height: 100vh; padding-top: var(--nav-h); display: none; }
#director-view.active { display: flex; flex-direction: column; }

.dir-sub {
  height: 46px; background: var(--bg2); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; padding: 0 26px; gap: 2px;
  position: sticky; top: var(--nav-h); z-index: 99; flex-shrink: 0;
}
.dsub-btn { padding: 6px 15px; font-family: 'Bebas Neue'; font-size: 11px; letter-spacing: 3px; color: var(--text3); cursor: none; border: none; background: none; border-radius: 5px; transition: all .2s; }
.dsub-btn:hover { color: var(--text2); }
.dsub-btn.on { background: var(--amber-bg); color: var(--amber); }
.dir-sub-right { margin-left: auto; display: flex; gap: 8px; align-items: center; }

.dir-panel { display: none; }
.dir-panel.on { display: block; }
.dir-panel.flex-layout.on { display: flex; flex-direction: column; flex: 1; }

/* Dashboard */
.dash-wrap { max-width: 980px; margin: 0 auto; padding: clamp(22px,3.5vw,40px) clamp(16px,4vw,40px); }
.dash-greeting { margin-bottom: 24px; }
.dash-greeting h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(22px,3.5vw,36px); font-weight: 700; margin-bottom: 4px; }
.dash-greeting p { font-size: 14px; color: var(--text2); }
.dash-kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 11px; margin-bottom: 28px; }
.dkpi { background: var(--surface); border: 1px solid var(--border); border-radius: var(--rl); padding: 16px 18px; }
.dkpi-v { font-family: 'Bebas Neue'; font-size: clamp(24px,3.5vw,38px); color: var(--amber); line-height: 1; margin-bottom: 3px; }
.dkpi-l { font-size: 10px; color: var(--text3); letter-spacing: 1px; }
.dkpi-d { font-size: 11px; color: var(--sage); margin-top: 5px; }
.dash-sec-hd { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.dsh-label { font-family: 'Bebas Neue'; font-size: 11px; letter-spacing: 4px; color: var(--text3); }
.dsh-action { font-family: 'Bebas Neue'; font-size: 10px; letter-spacing: 2px; color: var(--amber); cursor: none; background: none; border: none; transition: opacity .2s; }
.dsh-action:hover { opacity: .7; }

.my-castings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(240px,100%),1fr)); gap: 11px; margin-bottom: 28px; }
.my-cc { background: var(--surface); border: 1px solid var(--border); border-radius: var(--rl); overflow: hidden; cursor: none; transition: transform .2s, border-color .2s; }
.my-cc:hover { transform: translateY(-2px); border-color: var(--border2); }
.my-cc-top { padding: 13px 16px; border-bottom: 1px solid var(--border); }
.my-cc-hd { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; margin-bottom: 4px; }
.my-cc-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(14px,1.7vw,17px); font-weight: 700; line-height: 1.1; }
.my-cc-role { font-size: 11px; color: var(--text3); }
.my-cc-nums { display: flex; }
.mcn { flex: 1; padding: 8px 7px; text-align: center; border-right: 1px solid var(--border); }
.mcn:last-child { border: none; }
.mcn-v { font-family: 'Bebas Neue'; font-size: 16px; color: var(--text2); }
.mcn-l { font-size: 9px; color: var(--text3); letter-spacing: 1px; margin-top: 1px; }
.my-cc-foot { padding: 9px 16px; display: flex; justify-content: space-between; align-items: center; }
.my-cc-dead { font-size: 11px; color: var(--text3); }

.new-cc-card { border: 2px dashed var(--border); border-radius: var(--rl); display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 136px; cursor: none; transition: all .25s; padding: 18px; text-align: center; }
.new-cc-card:hover { border-color: var(--amber-brd); background: var(--amber-bg); }
.ncc-icon { font-size: 20px; opacity: .28; margin-bottom: 7px; }
.ncc-label { font-family: 'Bebas Neue'; font-size: 12px; letter-spacing: 3px; color: var(--amber); margin-bottom: 3px; }
.ncc-sub { font-size: 12px; color: var(--text3); }

.share-strip { background: var(--raised); border: 1px solid var(--border); border-radius: var(--rl); padding: 13px 17px; display: flex; align-items: center; gap: 13px; }
.ssr-icon { font-size: 17px; opacity: .4; flex-shrink: 0; }
.ssr-body { flex: 1; }
.ssr-label { font-family: 'Bebas Neue'; font-size: 9px; letter-spacing: 3px; color: var(--text3); margin-bottom: 4px; }
.ssr-url { font-family: monospace; font-size: 12px; color: var(--text2); background: var(--bg2); border: 1px solid var(--border); border-radius: 5px; padding: 5px 9px; display: block; margin-top: 4px; }

/* Review */
.review-layout { flex: 1; display: grid; grid-template-columns: 265px 1fr; min-height: 0; }
.app-sidebar { border-right: 1px solid var(--border); background: var(--bg2); overflow-y: auto; display: flex; flex-direction: column; }
.asi-hd { padding: 13px 14px 11px; border-bottom: 1px solid var(--border); }
.asi-title { font-family: 'Bebas Neue'; font-size: 11px; letter-spacing: 3px; color: var(--text3); margin-bottom: 9px; }
.asi-stats { display: flex; gap: 7px; }
.asi-stat { flex: 1; background: var(--surface); border: 1px solid var(--border); border-radius: 7px; padding: 7px 5px; text-align: center; }
.asis-v { font-family: 'Bebas Neue'; font-size: 17px; color: var(--amber); }
.asis-l { font-size: 9px; color: var(--text3); letter-spacing: 1px; }
.asi-filters { padding: 9px 14px; border-bottom: 1px solid var(--border); display: flex; gap: 4px; flex-wrap: wrap; }
.af-chip { padding: 3px 9px; border-radius: 20px; font-size: 10px; border: 1px solid var(--border); color: var(--text3); cursor: none; transition: all .2s; }
.af-chip.on { background: var(--amber-bg); border-color: var(--amber-brd); color: var(--amber); }

.app-list { flex: 1; overflow-y: auto; }
.app-item { padding: 12px 14px; border-bottom: 1px solid rgba(37,37,37,.9); cursor: none; transition: background .15s; display: flex; flex-direction: column; gap: 5px; }
.app-item:hover { background: rgba(200,168,75,.03); }
.app-item.selected { background: var(--amber-bg); border-left: 2px solid var(--amber); }
.ai-row { display: flex; align-items: center; gap: 9px; }
.ai-av { width: 33px; height: 33px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; background: var(--raised); }
.ai-name { font-size: 13px; font-weight: 500; flex: 1; }
.ai-score { font-family: 'Bebas Neue'; font-size: 15px; color: var(--text2); }
.ai-sub { font-size: 10px; color: var(--text3); }
.ai-tags { display: flex; gap: 4px; flex-wrap: wrap; }

.review-main { overflow-y: auto; background: var(--bg); }
.review-inner { padding: clamp(18px,3vw,30px); max-width: 760px; display: none; }
.empty-pane { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 400px; gap: 10px; text-align: center; padding: 40px; color: var(--text3); }
.empty-pane-icon { font-size: 36px; opacity: .17; }
.empty-pane-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; }

.adh { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.adh-av { width: 54px; height: 54px; border-radius: 12px; background: var(--raised); border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; }
.adh-name { font-family: 'Cormorant Garamond', serif; font-size: clamp(19px,3vw,30px); font-weight: 700; line-height: 1; margin-bottom: 3px; }
.adh-role { font-size: 12px; color: var(--text3); margin-bottom: 7px; }
.adh-meta { display: flex; gap: 10px; flex-wrap: wrap; }
.adh-m { font-size: 11px; color: var(--text3); }
.adh-actions { margin-left: auto; display: flex; flex-direction: column; gap: 5px; }
.act-btn { padding: 7px 14px; border-radius: 6px; font-family: 'Bebas Neue'; font-size: 10px; letter-spacing: 2px; border: none; cursor: none; transition: all .2s; white-space: nowrap; }
.act-sl  { background: var(--sage-bg);   color: var(--sage);   border: 1px solid var(--sage-brd); }
.act-sl:hover  { background: rgba(90,136,112,.16); }
.act-dc  { background: var(--danger-bg); color: var(--danger); border: 1px solid var(--danger-brd); }
.act-dc:hover  { background: rgba(122,64,64,.16); }
.act-msg { background: var(--amber-bg);  color: var(--amber);  border: 1px solid var(--amber-brd); }

.video-block { background: var(--surface); border: 1px solid var(--border); border-radius: var(--rl); overflow: hidden; margin-bottom: 14px; }
.video-tabs { display: flex; border-bottom: 1px solid var(--border); }
.vtab { flex: 1; padding: 10px; font-family: 'Bebas Neue'; font-size: 10px; letter-spacing: 3px; color: var(--text3); cursor: none; text-align: center; border-bottom: 2px solid transparent; transition: all .2s; }
.vtab.on { color: var(--amber); border-bottom-color: var(--amber); }
.vtab:hover { background: var(--amber-bg); }
.video-ph { aspect-ratio: 16/9; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; background: var(--bg2); }
.vph-icon { font-size: 42px; opacity: .16; }
.vph-label { font-family: 'Bebas Neue'; font-size: 11px; letter-spacing: 4px; color: var(--text3); }
.vph-sub { font-size: 11px; color: var(--text3); }

.info-block { background: var(--surface); border: 1px solid var(--border); border-radius: var(--rl); padding: 13px 16px; margin-bottom: 11px; }
.ib-label { font-family: 'Bebas Neue'; font-size: 9px; letter-spacing: 3px; color: var(--text3); margin-bottom: 7px; }
.ib-text { font-size: 14px; color: var(--text2); line-height: 1.7; }
.notes-ta { width: 100%; background: var(--raised); border: 1px solid var(--border); border-radius: var(--r); padding: 10px 12px; color: var(--text); font-family: 'DM Sans'; font-size: 13px; outline: none; resize: vertical; min-height: 68px; transition: border-color .2s; cursor: none; }
.notes-ta:focus { border-color: var(--amber-brd); }
.notes-save { padding: 7px 16px; float: right; margin-top: 8px; background: var(--amber-bg); border: 1px solid var(--amber-brd); color: var(--amber); font-family: 'Bebas Neue'; font-size: 10px; letter-spacing: 3px; border-radius: 5px; cursor: none; }


/* ─── CREATE DRAWER ─── */
.drawer-overlay { display: none; position: fixed; inset: 0; z-index: 7000; background: rgba(9,9,9,.72); backdrop-filter: blur(6px); justify-content: flex-end; }
.drawer-overlay.open { display: flex; }
.drawer { width: min(600px,100vw); height: 100vh; overflow: hidden; background: var(--bg); border-left: 1px solid var(--border); display: flex; flex-direction: column; animation: slideIn .3s cubic-bezier(.16,1,.3,1); }
.drawer-nav { height: 52px; background: var(--bg2); border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; padding: 0 20px; flex-shrink: 0; }
.drawer-nav-title { font-family: 'Bebas Neue'; font-size: 13px; letter-spacing: 3px; }
.drawer-close { width: 30px; height: 30px; border-radius: 50%; background: var(--raised); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; cursor: none; font-size: 13px; color: var(--text3); transition: all .2s; }
.drawer-close:hover { border-color: var(--danger-brd); color: var(--danger); }
.drawer-body { flex: 1; overflow-y: auto; padding: 22px 22px 8px; }
.drawer-foot { padding: 14px 22px; border-top: 1px solid var(--border); background: var(--bg2); display: flex; gap: 8px; flex-shrink: 0; }
.df-sec { margin-bottom: 22px; }
.df-sec-label { font-family: 'Bebas Neue'; font-size: 10px; letter-spacing: 4px; color: var(--text3); margin-bottom: 13px; padding-bottom: 9px; border-bottom: 1px solid var(--border); }
.df-row { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.req-taglist { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 5px; }
.submit-checklist { display: flex; flex-direction: column; gap: 6px; }
.srl { display: flex; align-items: center; gap: 10px; padding: 9px 12px; background: var(--raised); border: 1px solid var(--border); border-radius: var(--r); cursor: none; transition: all .2s; }
.srl.on { border-color: var(--amber-brd); background: var(--amber-bg); }
.srl-chk { width: 18px; height: 18px; border-radius: 4px; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 10px; flex-shrink: 0; transition: all .2s; }
.srl.on .srl-chk { background: var(--amber); border-color: var(--amber); color: #000; }
.srl-lbl { font-size: 13px; font-weight: 500; flex: 1; }
.srl-sub { font-size: 11px; color: var(--text3); margin-top: 1px; }
.link-preview { background: var(--raised); border: 1px solid var(--border); border-radius: var(--r); padding: 13px 15px; margin-top: 6px; }
.lp-slug { font-family: monospace; font-size: 10px; color: var(--text3); margin-bottom: 7px; }
.lp-title { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 700; margin-bottom: 2px; }
.lp-role { font-size: 11px; color: var(--text3); margin-bottom: 4px; }
.lp-fee { font-family: 'Bebas Neue'; font-size: 13px; color: var(--text2); }
.pub-confirm { display: none; padding: 24px; text-align: center; }
.pub-confirm.show { display: block; }
.pub-check { width: 50px; height: 50px; border-radius: 50%; background: var(--sage-bg); border: 1px solid var(--sage-brd); display: flex; align-items: center; justify-content: center; color: var(--sage); font-size: 22px; margin: 0 auto 13px; animation: popIn .45s cubic-bezier(.17,.67,.35,1.5); }
.pub-link-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--rl); padding: 14px 16px; margin: 13px 0; text-align: left; }
.plb-label { font-family: 'Bebas Neue'; font-size: 9px; letter-spacing: 4px; color: var(--amber); margin-bottom: 7px; }
.plb-url { font-family: monospace; font-size: 12px; color: var(--text); background: var(--bg2); border: 1px solid var(--border); border-radius: 5px; padding: 8px 10px; display: block; margin-bottom: 11px; word-break: break-all; }
.plb-btns { display: flex; gap: 7px; }
.plb-copy { flex: 1; padding: 10px; background: var(--amber); color: #000; font-family: 'Bebas Neue'; font-size: 10px; letter-spacing: 3px; border: none; border-radius: 6px; cursor: none; text-align: center; }
.plb-wa { flex: 1; padding: 10px; background: rgba(37,211,102,.07); border: 1px solid rgba(37,211,102,.22); color: #25d366; font-family: 'Bebas Neue'; font-size: 10px; letter-spacing: 3px; border-radius: 6px; cursor: none; text-align: center; }
.pub-next { background: var(--surface); border: 1px solid var(--border); border-radius: var(--rl); padding: 13px 16px; text-align: left; margin-bottom: 14px; }
.pn-label { font-family: 'Bebas Neue'; font-size: 9px; letter-spacing: 4px; color: var(--text3); margin-bottom: 12px; }
.pn-step { display: flex; gap: 9px; align-items: flex-start; margin-bottom: 10px; }
.pn-step:last-child { margin: 0; }
.pn-num { width: 18px; height: 18px; border-radius: 50%; background: var(--amber-bg); border: 1px solid var(--amber-brd); display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue'; font-size: 10px; color: var(--amber); flex-shrink: 0; margin-top: 1px; }
.pn-text { font-size: 13px; color: var(--text2); line-height: 1.55; }
.pn-text strong { color: var(--text); }


/* ═══════════════════════════════════════════
   PROFILE VIEW
═══════════════════════════════════════════ */
#profile-view { min-height: 100vh; padding-top: var(--nav-h); display: none; }
#profile-view.active { display: block; }
.prof-subnav { height: 46px; background: var(--bg2); border-bottom: 1px solid var(--border); display: flex; align-items: center; padding: 0 26px; gap: 2px; position: sticky; top: var(--nav-h); z-index: 99; }
.psub { padding: 6px 13px; font-family: 'Bebas Neue'; font-size: 11px; letter-spacing: 3px; color: var(--text3); cursor: none; border: none; background: none; border-radius: 5px; transition: all .2s; }
.psub.on { background: var(--amber-bg); color: var(--amber); }
.prof-hero { background: var(--bg2); border-bottom: 1px solid var(--border); padding: clamp(22px,4vw,40px) clamp(20px,5vw,44px); }
.ph-inner { max-width: 900px; margin: 0 auto; display: flex; gap: 18px; align-items: center; }
.ph-av { width: clamp(56px,7vw,76px); height: clamp(56px,7vw,76px); border-radius: 13px; border: 1px solid var(--border2); background: var(--surface); display: flex; align-items: center; justify-content: center; font-size: clamp(26px,3.8vw,38px); flex-shrink: 0; }
.ph-name { font-family: 'Cormorant Garamond', serif; font-size: clamp(22px,4vw,38px); font-weight: 700; line-height: 1; margin-bottom: 4px; }
.ph-tagline { font-size: 12px; color: var(--text3); margin-bottom: 8px; }
.ph-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.ph-stats { margin-left: auto; display: flex; gap: 9px; }
.phs { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 9px 14px; text-align: center; min-width: 65px; }
.phs-v { font-family: 'Bebas Neue'; font-size: clamp(15px,2.2vw,21px); color: var(--amber); }
.phs-l { font-size: 9px; color: var(--text3); letter-spacing: 1px; margin-top: 1px; }
.prof-body { max-width: 900px; margin: 0 auto; padding: clamp(16px,3vw,30px) clamp(16px,5vw,44px); display: grid; grid-template-columns: 1fr 245px; gap: 14px; }
.prof-sec { background: var(--surface); border: 1px solid var(--border); border-radius: var(--rl); padding: clamp(14px,2.5vw,20px); margin-bottom: 12px; }
.psec-hd { font-family: 'Bebas Neue'; font-size: 10px; letter-spacing: 4px; color: var(--text3); margin-bottom: 12px; display: flex; justify-content: space-between; align-items: center; }
.psec-edit { font-size: 9px; letter-spacing: 2px; color: var(--amber); cursor: none; }
.vid-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.vid-thumb { aspect-ratio: 16/9; background: var(--bg2); border: 1px solid var(--border); border-radius: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; overflow: hidden; cursor: none; transition: border-color .2s; }
.vid-thumb:hover { border-color: var(--border2); }
.vid-thumb::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(200,168,75,.04), transparent); }
.vt-play { width: 26px; height: 26px; border-radius: 50%; background: var(--amber-bg); border: 1px solid var(--amber-brd); display: flex; align-items: center; justify-content: center; font-size: 10px; z-index: 1; margin-bottom: 5px; color: var(--amber); }
.vt-lbl { font-size: 10px; color: var(--text3); z-index: 1; text-align: center; padding: 0 5px; }
.vt-src { position: absolute; bottom: 4px; right: 6px; font-size: 9px; color: var(--text3); font-family: 'Bebas Neue'; letter-spacing: 1px; }
.vt-add { border: 2px dashed var(--border); background: none; }
.vt-add:hover { border-color: var(--amber-brd); background: var(--amber-bg); }
.cast-row { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.cast-row:last-child { border: none; }
.cr-prod { flex: 1; }
.cr-name { font-size: 13px; font-weight: 500; margin-bottom: 2px; }
.cr-studio { font-size: 11px; color: var(--text3); }
.cr-date { font-size: 11px; color: var(--text3); }
.vis-row { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--border); }
.vis-row:last-of-type { border: none; }
.vr-lbl { font-size: 13px; font-weight: 500; }
.vr-sub { font-size: 11px; color: var(--text3); margin-top: 1px; }
.prof-url { background: var(--bg2); border: 1px solid var(--border); border-radius: 6px; padding: 7px 10px; font-family: monospace; font-size: 11px; color: var(--text3); word-break: break-all; margin-top: 8px; }
.str-bar { height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; margin: 5px 0 10px; }
.str-fill { height: 100%; width: 42%; background: var(--amber); border-radius: 2px; }
.str-item { display: flex; align-items: center; gap: 7px; font-size: 12px; margin-bottom: 5px; color: var(--text3); }
.str-item.done { color: var(--sage); }


/* ─── RESPONSIVE ─── */
@media (max-width: 860px) {
  .hero-kpis { display: none; }
  .dash-kpis { grid-template-columns: 1fr 1fr; }
  .review-layout { grid-template-columns: 1fr; }
  .prof-body { grid-template-columns: 1fr; }
  .ph-stats { display: none; }
  .field-row, .field-row3, .df-row, .pp-pw-row, .import-options { grid-template-columns: 1fr; }
  .import-options .manual-card { grid-column: 1; }
}
@media (max-width: 560px) {
  .nav-links .nav-link:not(.nav-cta) { display: none; }
  .vid-grid { grid-template-columns: 1fr 1fr; }
}
