/* =========================================================
   IAMPROMOTER.COM — DESIGN SYSTEM
   Typeface: Poppins (single family, weights 300–800)
   Motif: "spotlight" — a soft radial glow stands in for the
   stage light every promoter and act is chasing. Used once
   per screen, never scattered.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root{
  /* --- color tokens --- */
  --ink:        #14121F;
  --ink-soft:   #211D33;
  --paper:      #F7F5FB;
  --paper-dim:  #EDE9F7;
  --white:      #FFFFFF;

  --violet:       #6C4CF1;
  --violet-deep:  #4B32C3;
  --violet-tint:  #EEE9FD;

  --coral:        #FF6B4A;
  --coral-deep:   #E14E2D;
  --coral-tint:   #FFEBE4;

  --mint:         #1FA97F;
  --mint-tint:    #E3F7EF;

  --amber:        #E8960A;
  --amber-tint:   #FFF3DC;

  --grey-900: #211D33;
  --grey-700: #4B4760;
  --grey-500: #79758C;
  --grey-300: #B5AFC9;
  --line:     #E3DEF0;
  --line-soft:#EDE9F7;

  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  --shadow-soft: 0 1px 2px rgba(20,18,31,.04), 0 8px 24px -12px rgba(20,18,31,.12);
  --shadow-card: 0 1px 1px rgba(20,18,31,.03), 0 16px 32px -18px rgba(20,18,31,.18);

  --max: 1160px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family:'Poppins', sans-serif;
  background:var(--paper);
  color:var(--ink);
  font-weight:400;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
input, textarea, select{ font-family:inherit; font-size:inherit; color:inherit; }

:focus-visible{
  outline:2.5px solid var(--violet);
  outline-offset:2px;
  border-radius:4px;
}
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; transition-duration:0.001ms !important; }
}

.wrap{ max-width:var(--max); margin:0 auto; padding:0 28px; }

/* --- type scale --- */
h1,h2,h3,h4{ margin:0; font-weight:700; letter-spacing:-0.02em; color:var(--ink); }
h1{ font-size:clamp(2.4rem, 4.4vw, 3.6rem); line-height:1.06; font-weight:800; letter-spacing:-0.03em; }
h2{ font-size:clamp(1.7rem, 2.6vw, 2.35rem); line-height:1.14; }
h3{ font-size:1.28rem; line-height:1.3; }
h4{ font-size:1.02rem; line-height:1.4; }
p{ margin:0; color:var(--grey-700); }
.lede{ font-size:1.15rem; color:var(--grey-700); line-height:1.65; }
.eyebrow{ font-size:.82rem; font-weight:600; color:var(--violet); }
.muted{ color:var(--grey-500); }
.small{ font-size:.86rem; }

/* =========================================================
   NAV
   ========================================================= */
.site-nav{
  position:sticky; top:0; z-index:50;
  background:rgba(247,245,251,.86);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.site-nav .bar{
  display:flex; align-items:center; justify-content:space-between;
  height:76px;
}
.logo{ display:flex; align-items:center; gap:9px; font-weight:800; font-size:1.18rem; color:var(--ink); }
.logo .dot{ width:10px; height:10px; border-radius:50%; background:var(--coral); display:inline-block; }
.nav-links{ display:flex; align-items:center; gap:30px; }
.nav-links a{ font-size:.95rem; font-weight:500; color:var(--grey-700); }
.nav-links a.active, .nav-links a:hover{ color:var(--ink); }
.nav-actions{ display:flex; align-items:center; gap:12px; flex-wrap:wrap; justify-content:flex-end; }
.nav-toggle{ display:none; background:none; border:0; font-size:1.3rem; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:12px 22px; border-radius:var(--radius-pill);
  font-weight:600; font-size:.94rem; border:1.5px solid transparent;
  transition:transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
  white-space:nowrap;
}
.btn:active{ transform:scale(.97); }
.btn-primary{ background:var(--ink); color:var(--white); }
.btn-primary:hover{ background:var(--violet-deep); }
.btn-accent{ background:var(--coral); color:var(--white); }
.btn-accent:hover{ background:var(--coral-deep); }
.btn-ghost{ background:transparent; color:var(--ink); border-color:var(--line); }
.btn-ghost:hover{ border-color:var(--ink); }
.btn-violet{ background:var(--violet); color:var(--white); }
.btn-violet:hover{ background:var(--violet-deep); }
.btn-sm{ padding:8px 16px; font-size:.85rem; }
.btn-block{ width:100%; }
.btn[disabled]{ opacity:.5; cursor:not-allowed; }

.icon-btn{
  width:40px; height:40px; border-radius:50%; display:inline-flex;
  align-items:center; justify-content:center; border:1.5px solid var(--line);
  background:var(--white); color:var(--ink);
}

/* follow button distinct state */
.btn-follow{ background:var(--violet-tint); color:var(--violet-deep); border-color:transparent; }
.btn-follow:hover{ background:var(--violet); color:var(--white); }
.btn-following{ background:transparent; color:var(--grey-700); border-color:var(--line); }

/* =========================================================
   HERO / SPOTLIGHT MOTIF
   ========================================================= */
.spotlight{
  position:relative; overflow:hidden;
  background:
    radial-gradient(720px 480px at 18% -10%, rgba(108,76,241,.24), transparent 60%),
    radial-gradient(520px 420px at 100% 0%, rgba(255,107,74,.16), transparent 55%),
    var(--ink);
  color:var(--white);
}
.spotlight h1, .spotlight h2{ color:var(--white); }
.spotlight p{ color:rgba(255,255,255,.72); }

.hero{ padding:96px 0 80px; }
.hero-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:56px; align-items:center; }
.hero-tag{
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16);
  padding:7px 14px; border-radius:var(--radius-pill); font-size:.82rem; font-weight:500;
  color:rgba(255,255,255,.85); margin-bottom:22px;
}
.hero-stats{ display:flex; gap:36px; margin-top:36px; }
.hero-stats .num{ font-size:1.7rem; font-weight:800; color:var(--white); }
.hero-stats .lbl{ font-size:.84rem; color:rgba(255,255,255,.6); }

.hero-visual{
  position:relative; border-radius:28px; overflow:hidden;
  aspect-ratio:4/5; background:linear-gradient(155deg,#2A2440,#181528);
  border:1px solid rgba(255,255,255,.1);
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section{ padding:88px 0; }
.section-tight{ padding:56px 0; }
.section-head{ max-width:640px; margin-bottom:48px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-alt{ background:var(--white); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }

/* =========================================================
   CARDS
   ========================================================= */
.card{
  background:var(--white); border:1px solid var(--line);
  border-radius:var(--radius-lg); box-shadow:var(--shadow-card);
}
.card-pad{ padding:26px; }

.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.grid-2{ display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }

/* role chip */
.chip{
  display:inline-flex; align-items:center; gap:6px;
  padding:4px 11px; border-radius:var(--radius-pill);
  font-size:.76rem; font-weight:600;
}
.chip-promoter{ background:var(--violet-tint); color:var(--violet-deep); }
.chip-agency{ background:var(--coral-tint); color:var(--coral-deep); }
.chip-mint{ background:var(--mint-tint); color:var(--mint); }
.chip-amber{ background:var(--amber-tint); color:var(--amber); }
.chip-grey{ background:var(--paper-dim); color:var(--grey-700); }

/* status pill (workflow states used across job / space-request / invoice) */
.status{ display:inline-flex; align-items:center; gap:7px; font-size:.82rem; font-weight:600; }
.status::before{ content:''; width:7px; height:7px; border-radius:50%; }
.status-draft::before{ background:var(--grey-300); }
.status-review::before{ background:var(--amber); }
.status-approved::before{ background:var(--mint); }
.status-invoice::before{ background:var(--violet); }
.status-paid::before{ background:var(--mint); }
.status-declined::before{ background:var(--coral); }
.status-draft{ color:var(--grey-500); }
.status-review{ color:var(--amber); }
.status-approved,.status-paid{ color:var(--mint); }
.status-invoice{ color:var(--violet-deep); }
.status-declined{ color:var(--coral-deep); }

/* =========================================================
   PROFILE / PORTFOLIO
   ========================================================= */
.profile-header{
  position:relative; border-radius:24px; overflow:hidden; background:var(--ink);
}
.profile-cover{
  height:230px; width:100%;
  background:
    radial-gradient(480px 300px at 20% 0%, rgba(255,107,74,.30), transparent 60%),
    radial-gradient(420px 280px at 90% 10%, rgba(108,76,241,.35), transparent 55%),
    linear-gradient(160deg,#211D33,#14121F);
}
.profile-card{
  background:var(--white); border-radius:24px; margin:-64px 24px 0;
  padding:28px; position:relative; box-shadow:var(--shadow-card); border:1px solid var(--line);
}
.avatar{
  width:104px; height:104px; border-radius:24px; border:4px solid var(--white);
  background:linear-gradient(160deg,var(--violet),var(--coral));
  margin-top:-90px; box-shadow:var(--shadow-soft);
}
.profile-meta{ display:flex; flex-wrap:wrap; gap:22px; margin-top:18px; }
.profile-meta .item{ font-size:.88rem; color:var(--grey-500); display:flex; align-items:center; gap:6px; }

.privacy-toggle{
  display:inline-flex; align-items:center; gap:6px; padding:5px 6px 5px 11px;
  border:1px solid var(--line); border-radius:var(--radius-pill); background:var(--paper);
  font-size:.78rem; font-weight:600; color:var(--grey-700);
}
.privacy-toggle select{
  border:0; background:var(--white); border-radius:var(--radius-pill); padding:4px 10px;
  font-size:.78rem; font-weight:600; color:var(--ink);
}

.tab-row{ display:flex; gap:6px; border-bottom:1px solid var(--line); margin:34px 0 28px; overflow-x:auto; }
.tab-row button{
  background:none; border:0; padding:12px 18px; font-weight:600; font-size:.92rem;
  color:var(--grey-500); border-bottom:2.5px solid transparent; white-space:nowrap;
}
.tab-row button.active{ color:var(--ink); border-color:var(--coral); }

.portfolio-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.portfolio-item{ aspect-ratio:3/4; border-radius:14px; background:linear-gradient(150deg,var(--paper-dim),var(--line)); overflow:hidden; position:relative; }

.social-row{ display:flex; flex-wrap:wrap; gap:10px; }
.social-pill{
  display:inline-flex; align-items:center; gap:8px; padding:9px 15px; border-radius:var(--radius-pill);
  background:var(--paper); border:1px solid var(--line); font-size:.86rem; font-weight:500;
  color:var(--ink); text-decoration:none;
}
a.social-pill:hover{ border-color:var(--violet,#6c4cf1); color:var(--violet-deep,#5b3df5); }

/* =========================================================
   STATUS / FEED POST
   ========================================================= */
.composer{ display:flex; gap:14px; }
.composer-avatar{ width:46px; height:46px; border-radius:14px; background:linear-gradient(160deg,var(--violet),var(--coral)); flex:none; }
.composer textarea{
  width:100%; border:1px solid var(--line); border-radius:16px; padding:14px 16px;
  resize:none; min-height:54px; background:var(--paper);
}
.composer-bar{ display:flex; align-items:center; justify-content:space-between; margin-top:12px; }
.composer-tools{ display:flex; gap:8px; }
.audience-select{
  border:1px solid var(--line); border-radius:var(--radius-pill); padding:8px 14px;
  font-size:.84rem; font-weight:600; background:var(--paper); display:flex; gap:6px; align-items:center;
}

.post{ padding:22px 0; border-bottom:1px solid var(--line); }
.post:last-child{ border-bottom:0; }
.post-head{ display:flex; align-items:center; gap:12px; }
.post-avatar{ width:44px; height:44px; border-radius:13px; background:linear-gradient(160deg,var(--violet),var(--coral)); }
.post-images{ display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin-top:14px; }
.post-images div{ aspect-ratio:1/1; border-radius:12px; background:var(--paper-dim); }
.post-actions{ display:flex; gap:22px; margin-top:14px; }
.post-actions button{
  background:none; border:0; display:flex; align-items:center; gap:7px;
  font-size:.86rem; font-weight:500; color:var(--grey-500);
}

/* =========================================================
   JOB BOARD
   ========================================================= */
.job-card{
  display:grid; grid-template-columns:auto 1fr auto; gap:20px; align-items:center;
  padding:22px; border:1px solid var(--line); border-radius:18px; background:var(--white);
  transition:border-color .15s ease, box-shadow .15s ease;
}
.job-card:hover{ border-color:var(--violet); box-shadow:var(--shadow-card); }
.job-logo{ width:54px; height:54px; border-radius:14px; background:linear-gradient(160deg,var(--coral),var(--violet)); flex:none; }
.job-tags{ display:flex; gap:8px; flex-wrap:wrap; margin-top:8px; }
.job-salary{ font-weight:700; color:var(--ink); font-size:1.02rem; }

.filter-bar{ display:flex; flex-wrap:wrap; gap:10px; align-items:center; }
.filter-pill{
  padding:9px 16px; border-radius:var(--radius-pill); border:1px solid var(--line);
  background:var(--white); font-size:.86rem; font-weight:500; color:var(--grey-700);
}
.filter-pill.active{ background:var(--ink); color:var(--white); border-color:var(--ink); }

/* =========================================================
   FORMS
   ========================================================= */
.form-shell{
  max-width:460px; margin:0 auto; background:var(--white); border:1px solid var(--line);
  border-radius:24px; padding:40px; box-shadow:var(--shadow-card);
}
.field{ margin-bottom:18px; }
.field label{ display:block; font-size:.86rem; font-weight:600; margin-bottom:7px; color:var(--ink); }
.field input, .field textarea, .field select{
  width:100%; padding:13px 15px; border:1.5px solid var(--line); border-radius:12px;
  background:var(--paper); transition:border-color .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus{ border-color:var(--violet); outline:0; background:var(--white); }
.field-hint{ font-size:.78rem; color:var(--grey-500); margin-top:6px; }

.role-pick{ display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:22px; }
.role-option{
  border:1.5px solid var(--line); border-radius:16px; padding:18px 16px; cursor:pointer;
}
.role-option.selected{ border-color:var(--violet); background:var(--violet-tint); }
.role-option .role-icon{ width:38px; height:38px; border-radius:11px; margin-bottom:12px; }

.otp-row{ display:flex; gap:10px; }
.otp-row input{ width:52px; text-align:center; font-size:1.3rem; font-weight:700; padding:12px 0; }

/* =========================================================
   ADMIN
   ========================================================= */
.admin-shell{ display:grid; grid-template-columns:250px 1fr; min-height:100vh; }
.admin-side{ background:var(--ink); color:var(--white); padding:28px 20px; display:flex; flex-direction:column; }
.admin-side .logo{ color:var(--white); margin-bottom:28px; }
.admin-nav{ display:flex; flex-direction:column; }
.admin-nav a{
  display:flex; align-items:center; gap:11px; padding:10px 13px; border-radius:10px;
  font-size:.9rem; font-weight:500; color:rgba(255,255,255,.62); margin-bottom:2px;
}
.admin-nav a.active, .admin-nav a:hover{ background:rgba(255,255,255,.08); color:var(--white); }
.admin-nav a.active{ box-shadow:inset 3px 0 0 var(--coral,#ff6b4a); }
.admin-nav-group{
  font-size:.66rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  color:rgba(255,255,255,.4); margin:18px 13px 7px; padding-top:12px; border-top:1px solid rgba(255,255,255,.1);
}
.admin-nav .dot-count{
  margin-left:auto; background:var(--coral); color:var(--white); font-size:.68rem; font-weight:700;
  padding:2px 7px; border-radius:var(--radius-pill);
}
.admin-side .admin-logout{ margin-top:auto; }
.admin-side form{ margin-top:22px; }
.admin-side form button,
.admin-side .btn-ghost{
  width:100%; background:rgba(255,255,255,.06); color:#fff !important; border-color:rgba(255,255,255,.22);
}
.admin-side form button:hover,
.admin-side .btn-ghost:hover{ background:var(--coral,#ff6b4a); border-color:transparent; color:#fff !important; }
.admin-main{ padding:36px 40px; }
.admin-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:30px; }

.stat-card{ background:var(--white); border:1px solid var(--line); border-radius:16px; padding:20px 22px; }
.stat-card .num{ font-size:1.9rem; font-weight:800; }
.stat-card .lbl{ font-size:.84rem; color:var(--grey-500); margin-top:4px; }

table{ width:100%; border-collapse:collapse; background:var(--white); border-radius:16px; overflow:hidden; }
thead th{
  text-align:left; font-size:.76rem; font-weight:600; color:var(--grey-500);
  padding:14px 18px; border-bottom:1px solid var(--line); background:var(--paper);
}
tbody td{ padding:15px 18px; border-bottom:1px solid var(--line-soft); font-size:.9rem; }
tbody tr:last-child td{ border-bottom:0; }
.table-card{ border:1px solid var(--line); border-radius:16px; overflow:hidden; }
.row-actions{ display:flex; gap:8px; }

/* =========================================================
   BLOG / NEWS
   ========================================================= */
.blog-card{ border-radius:18px; overflow:hidden; border:1px solid var(--line); background:var(--white); }
.blog-thumb{ aspect-ratio:16/10; background:linear-gradient(150deg,var(--paper-dim),var(--line)); }
.blog-body{ padding:20px; }
.blog-cat{ font-size:.76rem; font-weight:700; color:var(--coral-deep); }

/* =========================================================
   BROWSE / DIRECTORY (promoters.html)
   ========================================================= */
.browse-shell{ display:grid; grid-template-columns:264px 1fr; gap:36px; align-items:start; }
.filter-sidebar{
  background:var(--white); border:1px solid var(--line); border-radius:18px;
  padding:24px; position:sticky; top:96px;
}
.filter-group{ margin-bottom:26px; }
.filter-group:last-child{ margin-bottom:0; }
.filter-group h4{ font-size:.86rem; margin-bottom:14px; }
.filter-check{
  display:flex; align-items:center; gap:9px; margin-bottom:11px;
  font-size:.88rem; color:var(--grey-700); cursor:pointer;
}
.filter-check input{ width:16px; height:16px; accent-color:var(--violet); }
.range-inputs{ display:flex; align-items:center; gap:8px; }
.range-inputs input{
  width:100%; padding:9px 10px; border:1.5px solid var(--line);
  border-radius:10px; font-size:.85rem; background:var(--paper);
}
.range-inputs span{ color:var(--grey-500); font-size:.82rem; }

.promoter-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.promoter-card{
  background:var(--white); border:1px solid var(--line); border-radius:18px;
  padding:20px; transition:border-color .15s ease, box-shadow .15s ease; display:block;
}
.promoter-card:hover{ border-color:var(--violet); box-shadow:var(--shadow-card); }
.promoter-card .p-avatar{ width:56px; height:56px; border-radius:16px; background:linear-gradient(160deg,var(--violet),var(--coral)); margin-bottom:14px; }
.promoter-card .p-rate{ font-weight:700; color:var(--ink); }

/* =========================================================
   DASHBOARD (post-signup)
   ========================================================= */
.dash-shell{ display:grid; grid-template-columns:244px 1fr; gap:0; min-height:calc(100vh - 76px); }
.dash-side{ border-right:1px solid var(--line); padding:24px 16px; }
.dash-nav{ display:flex; flex-direction:column; min-height:100%; }
.dash-nav a{
  display:flex; align-items:center; gap:11px; padding:10px 12px; border-radius:10px;
  font-size:.9rem; font-weight:500; color:var(--grey-700); margin-bottom:2px;
}
.dash-nav a.active, .dash-nav a:hover{ background:var(--paper-dim); color:var(--ink); }
.dash-nav a.active{ box-shadow:inset 3px 0 0 var(--coral,#ff6b4a); }
.dash-nav-group{
  font-size:.68rem; font-weight:700; letter-spacing:.09em; text-transform:uppercase;
  color:var(--grey-500); margin:20px 12px 7px; padding-top:12px; border-top:1px solid var(--line-soft,var(--line));
}
.dash-nav > a:first-child + .dash-nav-group{ margin-top:14px; }
.dash-nav .badge-count{
  margin-left:auto; background:var(--coral,#ff6b4a); color:#fff; font-size:.68rem; font-weight:700;
  border-radius:999px; padding:1px 7px;
}
.dash-logout{ margin-top:auto; padding-top:22px; }
.btn-logout{ background:var(--coral-tint,#ffe9e3); color:var(--coral-deep,#d64a2a); border-color:transparent; }
.btn-logout:hover{ background:var(--coral,#ff6b4a); color:#fff; }
.dash-main{ padding:40px; }

.setup-card{
  border-radius:24px; padding:40px; position:relative; overflow:hidden;
  background:
    radial-gradient(560px 360px at 12% -10%, rgba(108,76,241,.22), transparent 60%),
    radial-gradient(420px 320px at 100% 0%, rgba(255,107,74,.18), transparent 55%),
    var(--ink);
  color:var(--white);
}
.setup-card h2{ color:var(--white); }
.setup-card p{ color:rgba(255,255,255,.72); }
.setup-steps{ display:flex; gap:26px; margin-top:26px; flex-wrap:wrap; }
.setup-steps .step{ display:flex; gap:10px; align-items:flex-start; max-width:200px; }
.setup-steps .num{
  width:26px; height:26px; border-radius:50%; background:rgba(255,255,255,.12);
  display:flex; align-items:center; justify-content:center; font-size:.78rem; font-weight:700; flex:none;
}

.locked-card{ position:relative; opacity:.55; }
.locked-card::after{
  content:'Unlocks once your profile is live'; position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center; text-align:center;
  font-size:.78rem; font-weight:600; color:var(--grey-500); background:rgba(255,255,255,.4);
  border-radius:inherit; padding:20px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background:var(--ink); color:rgba(255,255,255,.7); padding:64px 0 28px; margin-top:0; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; }
.footer-grid h4{ color:var(--white); font-size:.9rem; margin-bottom:16px; }
.footer-grid a{ display:block; font-size:.88rem; color:rgba(255,255,255,.6); margin-bottom:10px; }
.footer-grid a:hover{ color:var(--white); }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  border-top:1px solid rgba(255,255,255,.12); margin-top:48px; padding-top:22px;
  font-size:.82rem; color:rgba(255,255,255,.45);
}

/* =========================================================
   MISC
   ========================================================= */
.divider{ height:1px; background:var(--line); margin:32px 0; }
.legal h2{ margin-top:38px; margin-bottom:14px; }
.legal p{ margin-bottom:14px; }
.legal ul{ margin:14px 0; padding-left:20px; list-style:disc; color:var(--grey-700); }
.legal li{ margin-bottom:8px; }

.upgrade-meter{ background:var(--paper-dim); border-radius:var(--radius-pill); height:10px; overflow:hidden; }
.upgrade-meter span{ display:block; height:100%; background:linear-gradient(90deg,var(--violet),var(--coral)); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns:1fr; }
  .grid-3, .grid-4, .grid-2{ grid-template-columns:repeat(2,1fr); }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .admin-shell{ grid-template-columns:1fr; }
  .admin-side{ display:none; }
  .portfolio-grid{ grid-template-columns:repeat(3,1fr); }
  .browse-shell{ grid-template-columns:1fr; }
  .filter-sidebar{ position:static; }
  .promoter-grid{ grid-template-columns:repeat(2,1fr); }
  .dash-shell{ grid-template-columns:1fr; }
  .dash-side{ display:none; }
}
@media (max-width: 860px){
  .nav-links{
    display:none; position:absolute; top:76px; left:0; right:0; z-index:60;
    flex-direction:column; align-items:stretch; gap:2px;
    background:var(--paper,#f7f5fb); border-bottom:1px solid var(--line); padding:12px 20px 18px;
  }
  .nav-links.open{ display:flex; }
  .nav-links a{ padding:11px 6px; border-bottom:1px solid var(--line-soft,var(--line)); }
  .nav-toggle{ display:block; }
}
@media (max-width: 680px){
  .grid-3, .grid-4, .grid-2{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .job-card{ grid-template-columns:1fr; text-align:left; }
  .role-pick{ grid-template-columns:1fr; }
  .portfolio-grid{ grid-template-columns:repeat(2,1fr); }
  .promoter-grid{ grid-template-columns:1fr; }
  .setup-steps{ flex-direction:column; gap:16px; }
  .dash-main{ padding:24px; }
  .hero{ padding:56px 0 48px; }
  .section{ padding:56px 0; }
  .wrap{ padding:0 18px; }
}

/* =========================================================
   BLOG LAYOUT (2-column with category rail)
   ========================================================= */
.blog-shell{ display:grid; grid-template-columns:1fr 280px; gap:40px; align-items:start; }
.blog-rail{ position:sticky; top:96px; }
.blog-rail h4{ margin:0 0 14px; font-size:.9rem; }
.cat-list{ display:flex; flex-direction:column; gap:2px; }
.cat-list a{ display:flex; justify-content:space-between; align-items:center; gap:10px; padding:10px 12px; border-radius:10px; color:var(--ink); font-size:.88rem; font-weight:600; text-decoration:none; border:1.5px solid transparent; }
.cat-list a:hover{ background:var(--paper); }
.cat-list a.active{ background:var(--violet-tint,#efeafe); border-color:var(--violet); color:var(--violet-deep); }
.cat-list a .count{ font-size:.78rem; font-weight:700; color:var(--grey-500); background:var(--paper); border-radius:999px; padding:1px 9px; }
@media (max-width: 980px){
  .blog-shell{ grid-template-columns:1fr; }
  .blog-rail{ position:static; order:-1; }
  .cat-list{ flex-flow:row wrap; }
}

/* =========================================================
   MESSAGES
   ========================================================= */
.thread-list{ display:flex; flex-direction:column; }
.thread-row{ display:flex; gap:14px; align-items:center; padding:16px 14px; border-bottom:1px solid var(--line); text-decoration:none; color:var(--ink); }
.thread-row:last-child{ border-bottom:0; }
.thread-row:hover{ background:var(--paper); }
.thread-row .who{ font-weight:700; font-size:.92rem; }
.thread-row .snip{ color:var(--grey-500); font-size:.85rem; margin-top:2px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; max-width:420px; }
.thread-row .dot-unread{ width:9px; height:9px; border-radius:999px; background:var(--coral,#ff6b4a); flex:none; }
.chat{ display:flex; flex-direction:column; gap:10px; padding:8px 0 4px; }
.bubble{ max-width:74%; padding:11px 14px; border-radius:16px; font-size:.92rem; line-height:1.5; white-space:pre-line; }
.bubble.them{ align-self:flex-start; background:var(--paper); border:1px solid var(--line); border-bottom-left-radius:5px; }
.bubble.me{ align-self:flex-end; background:var(--violet-deep,#5b3df5); color:#fff; border-bottom-right-radius:5px; }
.bubble .stamp{ display:block; margin-top:6px; font-size:.7rem; opacity:.7; }

/* =========================================================
   INTEREST PICKER  (promoter & agency profile)
   ========================================================= */
.interest-picker{ display:block; }
.interest-tags{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:10px; }
.interest-tags:empty{ display:none; }
.interest-tag{ display:inline-flex; align-items:center; gap:6px; padding:6px 10px; border-radius:999px;
  background:var(--violet-tint,#efeafe); border:1.5px solid var(--violet,#6c4cf1); color:var(--violet-deep,#5b3df5);
  font-size:.82rem; font-weight:600; }
.interest-tag-x{ border:0; background:transparent; color:inherit; font-size:1rem; line-height:1; cursor:pointer; padding:0 2px; }
.interest-input-wrap{ position:relative; }
.interest-input{ width:100%; padding:11px 12px; border:1.5px solid var(--line); border-radius:10px; background:var(--paper); font-size:.88rem; }
.interest-suggest{ position:absolute; z-index:20; top:calc(100% + 4px); left:0; right:0; background:#fff;
  border:1.5px solid var(--line); border-radius:12px; box-shadow:0 12px 32px rgba(20,18,31,.12); overflow:hidden; max-height:240px; overflow-y:auto; }
.interest-suggest-row{ display:block; width:100%; text-align:left; border:0; background:transparent; padding:10px 14px;
  font-size:.86rem; color:var(--ink); cursor:pointer; }
.interest-suggest-row:hover{ background:var(--paper); }

/* Interest filter checkboxes (directory & job board sidebars) */
.filter-checks{ display:flex; flex-direction:column; gap:8px; max-height:220px; overflow-y:auto; }
.filter-check{ display:flex; align-items:center; gap:8px; font-size:.85rem; color:var(--ink); cursor:pointer; }
.filter-check input{ width:15px; height:15px; }

/* =========================================================
   MESSAGE DISCLAIMER  (pinned on every conversation)
   ========================================================= */
.msg-disclaimer{ background:var(--paper); border:1px solid var(--line); border-left:4px solid var(--coral,#ff6b4a);
  border-radius:12px; padding:14px 16px; margin:14px 0 6px; }
.msg-disclaimer-head{ display:flex; align-items:center; gap:8px; font-size:.9rem; margin-bottom:6px; }
.msg-disclaimer-pin{ font-size:.95rem; }
.msg-disclaimer p{ font-size:.8rem; line-height:1.6; color:var(--grey-500); margin:0; }

/* =========================================================
   PORTFOLIO CAPTIONS + LIGHTBOX
   ========================================================= */
.portfolio-item[data-full]{ cursor:zoom-in; }
.portfolio-figure{ display:flex; flex-direction:column; gap:6px; }
.portfolio-figure figcaption{ font-size:.8rem; color:var(--grey-500); line-height:1.4; }
.portfolio-caption-form{ display:flex; gap:6px; margin-top:6px; }
.portfolio-caption-form input{
  flex:1; padding:7px 9px; border:1.5px solid var(--line); border-radius:9px;
  font-size:.78rem; background:var(--paper);
}
.caption-fields{ display:flex; flex-direction:column; gap:10px; margin-top:12px; }
.caption-field{ display:flex; align-items:center; gap:10px; }
.caption-field .thumb{
  width:44px; height:44px; border-radius:9px; background-size:cover; background-position:center;
  background-color:var(--paper-dim); flex:none;
}
.caption-field input[type="text"]{
  flex:1; padding:9px 11px; border:1.5px solid var(--line); border-radius:10px;
  font-size:.85rem; background:var(--paper);
}

.lightbox{
  position:fixed; inset:0; z-index:2000; display:flex; align-items:center; justify-content:center;
  background:rgba(15,13,26,.92); padding:40px;
}
.lightbox[hidden]{ display:none !important; }
.lightbox-figure{ margin:0; max-width:min(1100px,92vw); max-height:88vh; display:flex; flex-direction:column; gap:14px; align-items:center; }
.lightbox-img{ max-width:100%; max-height:78vh; border-radius:10px; object-fit:contain; box-shadow:0 24px 70px rgba(0,0,0,.5); }
.lightbox-caption{ color:rgba(255,255,255,.82); font-size:.9rem; text-align:center; max-width:640px; }
.lightbox-caption:empty{ display:none; }
.lightbox-close{
  position:absolute; top:18px; right:22px; width:42px; height:42px; border-radius:50%;
  background:rgba(255,255,255,.12); color:#fff; border:0; font-size:1.1rem; cursor:pointer;
}
.lightbox-close:hover{ background:rgba(255,255,255,.24); }
.lightbox-nav{
  position:absolute; top:50%; transform:translateY(-50%); width:48px; height:48px; border-radius:50%;
  background:rgba(255,255,255,.12); color:#fff; border:0; font-size:1.7rem; line-height:1; cursor:pointer;
}
.lightbox-nav:hover{ background:rgba(255,255,255,.24); }
.lightbox-prev{ left:20px; }
.lightbox-next{ right:20px; }
.lightbox-nav[hidden]{ display:none; }
@media (max-width:680px){
  .lightbox{ padding:16px; }
  .lightbox-prev{ left:6px; }
  .lightbox-next{ right:6px; }
}

/* =========================================================
   DIRECTORY FILTER SIDEBAR EXTRAS  (companies)
   ========================================================= */
.filter-sidebar .filter-check{ margin-bottom:0; }
.directory-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:18px; gap:12px; flex-wrap:wrap; }

/* Admin: role tabs + generic detail lists */
.seg-tabs{ display:inline-flex; gap:4px; background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-pill); padding:4px; }
.seg-tabs a{ padding:7px 16px; border-radius:var(--radius-pill); font-size:.85rem; font-weight:600; color:var(--grey-700); text-decoration:none; }
.seg-tabs a.active{ background:var(--ink); color:#fff; }
.detail-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:14px 28px; }
.detail-grid .k{ font-size:.74rem; text-transform:uppercase; letter-spacing:.05em; color:var(--grey-500); font-weight:700; }
.detail-grid .v{ font-size:.92rem; margin-top:2px; }
@media (max-width:680px){ .detail-grid{ grid-template-columns:1fr; } }
.filter-bar{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; margin-bottom:18px; }
.filter-bar input, .filter-bar select{
  padding:9px 12px; border:1.5px solid var(--line); border-radius:10px; font-size:.86rem; background:var(--paper);
}
