/* ============================================================
   promio-brand.css
   Kleurpalet gebaseerd op www.promio.nl
   Primair:  rood     #e8192c
   Secundair: paars/indigo #2d2970
   Aanpassen: wijzig alleen de :root variabelen hieronder
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* ── Primaire merkkleur: rood ── */
  --red:          #e8192c;
  --red-dark:     #c4121f;
  --red-light:    #fff0f1;
  --red-border:   #fbbfc4;

  /* ── Secundaire merkkleur: indigo/paars ── */
  --indigo:       #2d2970;
  --indigo-dark:  #1f1c55;
  --indigo-light: #eeecf9;
  --indigo-border:#b8b4e0;

  /* ── Neutrale kleuren ── */
  --ink:    #1e1e1e;
  --ink-2:  #444;
  --ink-3:  #767676;
  --ink-4:  #a0a0a0;
  --white:  #ffffff;
  --bg:     #ffffff;
  --surface:#f5f5f5;
  --surface2:#ebebeb;
  --border: #dedede;
  --border2:#c8c8c8;

  /* ── Status kleuren ── */
  --ok:         #1a7a4a;
  --ok-bg:      #e8f5ee;
  --ok-border:  #a7f3d0;
  --err:        #c0392b;
  --err-bg:     #fdecea;
  --err-border: #fca5a5;
  --warn:       #92600a;
  --warn-bg:    #fdf6e3;
  --warn-border:#fde68a;
  --info:       #1a56a4;
  --info-bg:    #e8f0fb;
  --info-border:#bfdbfe;

  /* ── Typografie ── */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ── Radius ── */
  --r-sm: 2px;
  --r:    4px;
  --r-md: 6px;
  --r-lg: 10px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 14px;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: var(--font); }

/* ============================================================
   NAVIGATIE
   ============================================================ */
.prom-nav {
  height: 58px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 3rem);
  position: sticky;
  top: 0;
  z-index: 100;
}
.prom-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.prom-logo img {
  height: 26px;
  width: auto;
}
/* Fallback als SVG niet laadt */
.prom-logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--indigo);
  letter-spacing: -.03em;
}
.prom-logo-text .dot { color: var(--red); }
.prom-nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.prom-nav-link {
  font-size: 13px;
  color: var(--ink-2);
  text-decoration: none;
  transition: color .15s;
}
.prom-nav-link:hover { color: var(--red); text-decoration: none; }
.prom-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: .45rem 1rem;
  border-radius: var(--r);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .15s;
  white-space: nowrap;
}
.prom-nav-btn:hover { background: var(--red-dark); color: var(--white); text-decoration: none; }

/* ============================================================
   HERO
   ============================================================ */
.prom-hero {
  background: var(--indigo);
  padding: clamp(2.75rem, 7vw, 5rem) clamp(1rem, 4vw, 3rem);
}
.prom-hero-inner { max-width: 860px; margin: 0 auto; }

.prom-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.65);
  margin-bottom: 1rem;
}
.prom-eyebrow::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
}
.prom-hero h1 {
  font-size: clamp(1.7rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: .875rem;
}
.prom-hero p {
  font-size: 15px;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 1.75rem;
  font-weight: 300;
}
.prom-hero-stats {
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.prom-stat-num {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.prom-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  margin-top: .3rem;
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.prom-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: .65rem 1.375rem;
  border-radius: var(--r);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .15s;
  white-space: nowrap;
}
.prom-btn:hover { background: var(--red-dark); color: var(--white); text-decoration: none; }
.prom-btn:disabled { opacity: .5; cursor: not-allowed; }

.prom-btn-indigo {
  background: var(--indigo);
}
.prom-btn-indigo:hover { background: var(--indigo-dark); }

.prom-btn-ghost {
  background: transparent;
  color: var(--ink-2);
  border: 1px solid var(--border2);
}
.prom-btn-ghost:hover { background: var(--surface); color: var(--ink); text-decoration: none; }

/* ============================================================
   FORM CONTROLS
   ============================================================ */
.prom-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-2);
  margin-bottom: .35rem;
}
.prom-label .req { color: var(--red); }

.prom-input {
  width: 100%;
  height: 36px;
  padding: 0 .875rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-size: 13px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.prom-input:focus { border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(45,41,112,.1); }
.prom-input.error { border-color: var(--err); }

.prom-textarea {
  width: 100%;
  padding: .625rem .875rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-size: 13px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  resize: vertical;
  transition: border-color .15s, box-shadow .15s;
  line-height: 1.6;
}
.prom-textarea:focus { border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(45,41,112,.1); }

.prom-select {
  height: 36px;
  padding: 0 .75rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-size: 13px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color .15s;
}
.prom-select:focus { border-color: var(--indigo); }

.prom-field-err { font-size: 11px; color: var(--err); margin-top: .25rem; min-height: 1.2em; }

/* ============================================================
   BADGES / STATUS
   ============================================================ */
.prom-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: .2rem .55rem;
  border-radius: var(--r-sm);
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
}
.s-new         { background: var(--info-bg);  color: var(--info);  }
.s-reviewing   { background: var(--warn-bg);  color: var(--warn);  }
.s-shortlisted { background: var(--ok-bg);    color: var(--ok);    }
.s-rejected    { background: var(--err-bg);   color: var(--err);   }
.s-hired       { background: #dcfce7;          color: #166534;      }
.s-active      { background: var(--ok-bg);    color: var(--ok);    }
.s-draft       { background: var(--surface2); color: var(--ink-3); }
.s-closed      { background: var(--err-bg);   color: var(--err);   }
.r-superadmin  { background: var(--indigo-light); color: var(--indigo); }
.r-admin       { background: var(--info-bg);      color: var(--info);   }
.r-viewer      { background: var(--surface2);     color: var(--ink-3);  }

/* ============================================================
   ALERTS
   ============================================================ */
.prom-alert {
  padding: .65rem .875rem;
  border-radius: var(--r);
  font-size: 12px;
  line-height: 1.55;
  margin-bottom: .875rem;
  display: none;
}
.prom-alert-err  { background: var(--err-bg);  border: 1px solid var(--err-border); color: var(--err);  }
.prom-alert-ok   { background: var(--ok-bg);   border: 1px solid var(--ok-border);  color: var(--ok);   }
.prom-alert-warn { background: var(--warn-bg); border: 1px solid var(--warn-border) ; color: var(--warn); border-left: 3px solid #f59e0b; }
.prom-alert-info { background: var(--info-bg); border: 1px solid var(--info-border); color: var(--info); }

/* ============================================================
   CARDS / PANELS
   ============================================================ */
.prom-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.prom-card-hdr {
  padding: .875rem 1.25rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
}
.prom-card-hdr h2 { font-size: 13px; font-weight: 600; color: var(--ink); }
.prom-card-hdr a  { font-size: 11px; color: var(--red); text-decoration: none; }
.prom-card-hdr a:hover { text-decoration: underline; }
.prom-card-body { padding: 0; }

.prom-row-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 1.25rem;
  border-bottom: 1px solid #f2f2f2;
  font-size: 12px;
}
.prom-row-item:last-child { border-bottom: none; }
.prom-row-item:hover { background: #fafafa; }
.prom-row-name { font-weight: 500; color: var(--ink); }
.prom-row-sub  { font-size: 11px; color: var(--ink-4); margin-top: .1rem; }

/* ============================================================
   TABLES
   ============================================================ */
.prom-table-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.prom-table { width: 100%; border-collapse: collapse; }
.prom-table thead { background: #f8f8f8; }
.prom-table th {
  padding: .65rem 1.125rem;
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: .07em;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.prom-table td {
  padding: .8rem 1.125rem;
  font-size: 12px;
  border-bottom: 1px solid #f2f2f2;
  vertical-align: middle;
}
.prom-table tr:last-child td { border-bottom: none; }
.prom-table tbody tr:hover td { background: #fafafa; }
.cell-name { font-weight: 600; color: var(--ink); }
.cell-sub  { font-size: 11px; color: var(--ink-4); margin-top: .15rem; }

.prom-act-btn {
  background: transparent;
  border: 1px solid var(--border2);
  border-radius: var(--r-sm);
  padding: .25rem .65rem;
  font-size: 11px;
  cursor: pointer;
  color: var(--ink-2);
  transition: all .12s;
  margin-right: .25rem;
}
.prom-act-btn:hover { background: var(--surface); }
.prom-act-btn.danger:hover { background: var(--err-bg); color: var(--err); border-color: var(--err-border); }
.prom-act-btn:disabled { opacity: .35; cursor: not-allowed; }

/* ============================================================
   MODALS
   ============================================================ */
.prom-modal-bg {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 200;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem 1rem;
  overflow-y: auto;
}
.prom-modal-bg.open { display: flex; }
.prom-modal {
  background: var(--white);
  border-radius: var(--r-lg);
  width: 100%;
  max-width: 600px;
  margin: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
}
.prom-modal-sm { max-width: 440px; }
.prom-modal-hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.125rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.prom-modal-hdr h2 { font-size: 15px; font-weight: 600; color: var(--ink); }
.prom-modal-x { background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--ink-3); padding: 0; line-height: 1; }
.prom-modal-x:hover { color: var(--ink); }
.prom-modal-body { padding: 1.5rem; }
.prom-modal-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
}
.prom-modal-footer.space { justify-content: space-between; }

/* ============================================================
   PAGINATION
   ============================================================ */
.prom-pag {
  display: flex;
  gap: .375rem;
  justify-content: flex-end;
  margin-top: 1rem;
  align-items: center;
  font-size: 11px;
  color: var(--ink-3);
}
.prom-pag-btn {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: .3rem .65rem;
  cursor: pointer;
  font-size: 11px;
}
.prom-pag-btn.active { background: var(--indigo); color: var(--white); border-color: var(--indigo); }
.prom-pag-btn:disabled { opacity: .4; cursor: default; }

/* ============================================================
   FILE UPLOAD
   ============================================================ */
.prom-file-zone {
  border: 1px dashed var(--border2);
  border-radius: var(--r-md);
  padding: 1.75rem 1rem;
  text-align: center;
  cursor: pointer;
  position: relative;
  background: var(--surface);
  transition: border-color .15s, background .15s;
}
.prom-file-zone:hover, .prom-file-zone.over {
  border-color: var(--indigo);
  background: var(--indigo-light);
}
.prom-file-zone input[type=file] {
  position: absolute; inset: 0; opacity: 0; width: 100%; height: 100%; cursor: pointer;
}
.prom-file-prev {
  display: none;
  align-items: center;
  gap: .625rem;
  margin-top: .625rem;
  padding: .625rem .875rem;
  background: var(--ok-bg);
  border: 1px solid var(--ok-border);
  border-radius: var(--r);
}
.prom-file-prev .fp-name { font-size: 12px; font-weight: 500; color: var(--ok); flex: 1; }
.prom-file-prev .fp-size { font-size: 11px; color: var(--ok); }
.prom-file-prev .fp-rm   { background: none; border: none; cursor: pointer; color: var(--ok); font-size: 13px; padding: 0; }

/* ============================================================
   PRIVACY NOTICE
   ============================================================ */
.prom-privacy {
  margin-top: 1rem;
  padding: .75rem 1rem;
  background: var(--indigo-light);
  border-left: 3px solid var(--indigo-border);
  border-radius: 0 var(--r) var(--r) 0;
  font-size: 11px;
  color: var(--indigo-dark);
  line-height: 1.7;
}

/* ============================================================
   JOB LISTING (publieke pagina)
   ============================================================ */
.prom-job-list {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.prom-job-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: background .1s;
}
.prom-job-row:last-child { border-bottom: none; }
.prom-job-row:hover { background: var(--red-light); }
.prom-job-row:hover::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--red);
}
.prom-job-title { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: .35rem; }
.prom-job-meta  { display: flex; gap: .875rem; flex-wrap: wrap; }
.prom-meta-item { font-size: 11px; color: var(--ink-3); display: flex; align-items: center; gap: .25rem; }
.prom-job-right { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.prom-job-arrow { color: var(--ink-4); font-size: 16px; transition: transform .15s, color .15s; }
.prom-job-row:hover .prom-job-arrow { transform: translateX(4px); color: var(--red); }

/* ============================================================
   STAT CARDS (dashboard)
   ============================================================ */
.prom-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px,1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.prom-stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.25rem;
}
.prom-stat-card.accent { border-left: 3px solid var(--red); }
.prom-stat-lbl { font-size: 10px; font-weight: 600; color: var(--ink-3); text-transform: uppercase; letter-spacing: .07em; margin-bottom: .5rem; }
.prom-stat-num2 { font-size: 2rem; font-weight: 700; color: var(--ink); line-height: 1; }
.prom-stat-sub  { font-size: 11px; color: var(--ink-4); margin-top: .3rem; }

/* ============================================================
   ADMIN SIDEBAR (geïnjecteerd door admin-shell.js)
   ============================================================ */
.prom-layout { display: flex; min-height: 100vh; }
.prom-sidebar {
  width: 220px;
  flex-shrink: 0;
  background: var(--indigo);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 50;
}
.prom-sb-top {
  padding: 1.25rem 1rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.prom-sb-logo img {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1); /* wit logo op donkere achtergrond */
}
.prom-sb-logo-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.03em;
}
.prom-sb-logo-text .dot { color: var(--red); }
.prom-sb-tag {
  font-size: 10px;
  color: rgba(255,255,255,.35);
  margin-top: .25rem;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.prom-sb-nav { flex: 1; padding: .875rem 0; }
.prom-sb-link {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: .625rem 1rem;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: all .12s;
  border-left: 2px solid transparent;
}
.prom-sb-link:hover { color: var(--white); background: rgba(255,255,255,.07); text-decoration: none; }
.prom-sb-link.active { color: var(--white); background: rgba(255,255,255,.1); border-left-color: var(--red); }
.prom-sb-link .si { width: 16px; text-align: center; font-size: 13px; flex-shrink: 0; }
.prom-sb-footer {
  padding: .875rem 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.prom-sb-name { font-size: 12px; font-weight: 500; color: rgba(255,255,255,.75); margin-bottom: .15rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.prom-sb-role { font-size: 10px; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: .07em; margin-bottom: .625rem; }
.prom-sb-logout {
  width: 100%;
  height: 28px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-sm);
  color: rgba(255,255,255,.45);
  font-size: 11px;
  cursor: pointer;
  transition: all .15s;
}
.prom-sb-logout:hover { border-color: #fbbfc4; color: #fbbfc4; }
.prom-admin-main {
  flex: 1;
  background: var(--surface);
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* ── Page topbar ── */
.prom-pg-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: .875rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.prom-pg-bar h1 { font-size: 15px; font-weight: 600; color: var(--ink); }
.prom-pg-cnt   { font-size: 11px; color: var(--ink-4); }
.prom-content  { padding: 1.5rem; }

/* ── Toolbar (admin filters) ── */
.prom-toolbar { display: flex; gap: .625rem; flex-wrap: wrap; margin-bottom: 1rem; }

/* ── Filter tabs (public) ── */
.prom-filter-tabs { display: flex; gap: .375rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.prom-filter-tab {
  height: 30px;
  padding: 0 .875rem;
  font-size: 11px;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--white);
  color: var(--ink-2);
  cursor: pointer;
  transition: all .12s;
  white-space: nowrap;
}
.prom-filter-tab:hover { border-color: var(--red); color: var(--red); }
.prom-filter-tab.active { background: var(--indigo); color: var(--white); border-color: var(--indigo); }

/* ── Notice / warning ── */
.prom-notice {
  background: var(--warn-bg);
  border: 1px solid var(--warn-border);
  border-left: 3px solid #f59e0b;
  border-radius: var(--r);
  padding: .625rem 1rem;
  font-size: 11px;
  color: var(--warn);
  margin-bottom: 1.125rem;
  line-height: 1.6;
}

/* ── Footer ── */
.prom-footer {
  background: var(--indigo);
  border-top: 1px solid var(--border);
  padding: 1.5rem clamp(1rem, 4vw, 3rem);
  margin-top: 3rem;
}
.prom-footer-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
}
.prom-footer-copy { font-size: 11px; color: rgba(255,255,255,.45); }
.prom-footer-link { font-size: 11px; color: rgba(255,255,255,.45); text-decoration: none; }
.prom-footer-link:hover { color: var(--white); }

/* ── Empty state ── */
.prom-empty {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--ink-3);
  font-size: 13px;
}
.prom-empty b { display: block; font-size: 14px; color: var(--ink-2); margin-bottom: .5rem; }

/* ── Spinner ── */
@keyframes prom-spin { to { transform: rotate(360deg); } }
.prom-spin {
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: prom-spin .65s linear infinite;
  display: none;
}

/* ── Responsive sidebar ── */
@media (max-width: 768px) {
  .prom-layout { flex-direction: column; }
  .prom-sidebar { width: 100%; height: auto; position: static; flex-direction: row; flex-wrap: wrap; }
  .prom-sb-top { flex: 0 0 auto; border-bottom: none; border-right: 1px solid rgba(255,255,255,.1); padding: .75rem 1rem; }
  .prom-sb-nav { display: flex; flex: 1; padding: 0; align-items: center; overflow-x: auto; }
  .prom-sb-link { padding: .75rem .875rem; border-left: none; border-bottom: 2px solid transparent; flex-shrink: 0; font-size: 11px; }
  .prom-sb-link.active { border-left-color: transparent; border-bottom-color: var(--red); }
  .prom-sb-footer { display: none; }
}
@media (max-width: 500px) {
  .prom-hero-stats { gap: 1.5rem; }
  .prom-nav-link { display: none; }
}

/* ── Password strength bar ── */
.prom-pw-bar { height: 3px; background: var(--border); border-radius: 2px; margin-top: .375rem; overflow: hidden; }
.prom-pw-fill { height: 100%; border-radius: 2px; transition: width .25s, background .25s; }
.prom-pw-hint { font-size: 10px; color: var(--ink-4); margin-top: .2rem; }

/* ── Detail grid (modal) ── */
.prom-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .875rem; margin-bottom: 1.125rem; }
.prom-detail-item label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-3); display: block; margin-bottom: .25rem; }
.prom-detail-item p { font-size: 12px; color: var(--ink); word-break: break-word; }
.prom-motivation { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: .875rem; font-size: 12px; color: var(--ink-2); line-height: 1.75; white-space: pre-wrap; max-height: 160px; overflow-y: auto; margin-bottom: 1rem; }
.prom-dl-btn { display: inline-flex; align-items: center; gap: .375rem; font-size: 11px; font-weight: 500; background: var(--indigo-light); color: var(--indigo); border: none; border-radius: var(--r); padding: .4rem .875rem; cursor: pointer; text-decoration: none; }
.prom-dl-btn:hover { background: var(--indigo-border); color: var(--indigo-dark); text-decoration: none; }

@media (max-width: 520px) {
  .prom-detail-grid { grid-template-columns: 1fr; }
}
