/* ============================================================
   SOLVORIZ — STYLE.CSS
   Design: editorial editorial, warm-neutral + electric blue accent
   Fonts: Syne (display) + DM Sans (body)
============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --ink:           #0d0c0a;
  --ink-2:         #2d2b27;
  --ink-3:         #6e6a62;
  --ink-4:         #b0aa9f;
  --surface:       #f7f5f1;
  --surface-2:     #eeeae3;
  --surface-3:     #e0dbd0;
  --white:         #ffffff;
  --accent:        #1847f8;
  --accent-h:      #0f35cc;
  --accent-warm:   #f85a18;
  --accent-green:  #0e7a50;
  --accent-amber:  #c97a00;
  --danger:        #c92f2f;
  --border:        #ddd9d0;
  --border-strong: #c4bfb4;
  --radius:        10px;
  --radius-lg:     16px;
  --radius-xl:     24px;
  --shadow-sm:     0 1px 3px rgba(13,12,10,.07);
  --shadow:        0 4px 18px rgba(13,12,10,.09), 0 1px 4px rgba(13,12,10,.05);
  --shadow-lg:     0 20px 60px rgba(13,12,10,.14), 0 4px 16px rgba(13,12,10,.07);
  --sidebar-w:     240px;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 15px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--surface);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp   { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn   { from { opacity: 0; } to { opacity: 1; } }
@keyframes spin     { to { transform: rotate(360deg); } }
@keyframes toastIn  { from { transform: translateY(20px) scale(.95); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes toastOut { to   { transform: translateY(20px) scale(.95); opacity: 0; } }

.animate-fade-up { animation: fadeUp .45s cubic-bezier(.22,1,.36,1) both; }
.animate-fade-in { animation: fadeIn .3s ease both; }

/* ── UTILS ───────────────────────────────────────────────── */
.hidden       { display: none !important; }
.muted        { color: var(--ink-3); font-size: 13px; }
.flex         { display: flex; }
.flex-col     { flex-direction: column; }
.items-center { align-items: center; }
.gap-2        { gap: 8px; }
.gap-3        { gap: 12px; }
.gap-4        { gap: 16px; }
.mt-4         { margin-top: 16px; }
.text-sm      { font-size: 13px; }

/* ── TOAST ───────────────────────────────────────────────── */
#toast-container {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 9999;
  display: flex; flex-direction: column; gap: 8px;
  pointer-events: none;
}
.toast {
  display: flex; align-items: center; gap: 10px;
  background: var(--ink-2);
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  animation: toastIn .3s cubic-bezier(.22,1,.36,1) both;
  pointer-events: all;
  max-width: 340px;
  min-width: 220px;
}
.toast--success { background: var(--accent-green); }
.toast--error   { background: var(--danger); }
.toast--warn    { background: var(--accent-amber); }
.toast--out     { animation: toastOut .3s ease forwards; }
.toast__icon    { font-size: 16px; flex-shrink: 0; }

/* ── SPINNER ─────────────────────────────────────────────── */
.spinner {
  width: 15px; height: 15px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .65s linear infinite;
  display: inline-block; flex-shrink: 0;
}
.spinner--dark { border-color: rgba(13,12,10,.15); border-top-color: var(--ink); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 14px; font-weight: 500;
  transition: all .18s ease;
  white-space: nowrap;
  letter-spacing: .01em;
}
.btn:disabled { opacity: .55; pointer-events: none; }

.btn--primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 2px 8px rgba(24,71,248,.25);
}
.btn--primary:hover { background: var(--accent-h); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(24,71,248,.35); }

.btn--outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--border-strong);
}
.btn--outline:hover { border-color: var(--ink-3); background: var(--surface-2); }

.btn--ghost {
  background: transparent; color: var(--ink-2);
}
.btn--ghost:hover { background: var(--surface-2); }

.btn--danger {
  background: var(--danger); color: #fff;
}
.btn--danger:hover { background: #a82424; }

.btn--sm { padding: 6px 14px; font-size: 12.5px; border-radius: 8px; }
.btn--lg { padding: 13px 28px; font-size: 15px; }

.btn-full { width: 100%; }

/* ── FORM ELEMENTS ───────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group:last-of-type { margin-bottom: 0; }
label { font-size: 13px; font-weight: 500; color: var(--ink-2); }

.input, .textarea, .select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color .18s;
}
.input:focus, .textarea:focus, .select:focus { border-color: var(--accent); }
.textarea { resize: vertical; min-height: 100px; }
.select { cursor: pointer; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── SKILL TAG INPUT ─────────────────────────────────────── */
.skills-input-wrap {
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
  padding: 8px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  cursor: text;
  min-height: 44px;
  position: relative;
  transition: border-color .18s;
}
.skills-input-wrap:focus-within { border-color: var(--accent); }
.skills-input-wrap .input-inline {
  border: none; outline: none; padding: 2px 4px;
  background: transparent; font-size: 13.5px;
  flex: 1; min-width: 100px;
}
.skill-suggestions {
  position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 100;
  overflow: hidden;
  min-width: 200px;
}
.skill-suggest__item {
  padding: 9px 14px; font-size: 13.5px;
  cursor: pointer; transition: background .12s;
}
.skill-suggest__item:hover { background: var(--surface-2); }

/* ── SKILL TAGS & CHIPS ──────────────────────────────────── */
.skill-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--accent); color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px; font-weight: 500;
  user-select: none;
}
.skill-tag__remove {
  color: rgba(255,255,255,.8); font-size: 14px; line-height: 1;
  transition: color .12s;
}
.skill-tag__remove:hover { color: #fff; }

.skill-chip {
  display: inline-block;
  padding: 3px 10px;
  background: var(--surface-2);
  color: var(--ink-2);
  border-radius: 20px;
  font-size: 12px; font-weight: 500;
  border: 1px solid var(--border);
}
.skill-chip--sm { padding: 2px 8px; font-size: 11px; }
.skill-chip--more { background: var(--surface-3); color: var(--ink-3); }

.skill-chips-row { display: flex; flex-wrap: wrap; gap: 6px; }
.skill-chips-row--sm { gap: 4px; }

/* ── CARDS ───────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.card__title {
  font-family: 'Syne', sans-serif;
  font-size: 16px; font-weight: 700;
  margin-bottom: 4px;
}
.card__sub { font-size: 13px; color: var(--ink-3); }

/* ── AVAILABILITY BADGES ─────────────────────────────────── */
.avail-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px; font-weight: 600;
  text-transform: capitalize;
}
.avail-badge--green  { background: #d4f7e7; color: #0e7a50; }
.avail-badge--amber  { background: #fdf3dc; color: #c97a00; }
.avail-badge--grey   { background: var(--surface-3); color: var(--ink-3); }

/* ── ROLE BADGES ─────────────────────────────────────────── */
.role-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em;
}
.role-badge--student   { background: #e6eeff; color: var(--accent); }
.role-badge--recruiter { background: #fff4e6; color: #c97a00; }
.role-badge--admin     { background: #fde8e8; color: var(--danger); }

/* ── ICON BUTTONS ────────────────────────────────────────── */
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 8px;
  font-size: 15px;
  transition: background .15s;
  color: var(--ink-2);
}
.icon-btn:hover { background: var(--surface-2); }
.icon-btn--danger:hover { background: #fde8e8; color: var(--danger); }

/* ── MODALS ──────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(13,12,10,.5);
  backdrop-filter: blur(4px);
  z-index: 500;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fadeIn .2s ease;
}
.modal-overlay.hidden { display: none; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%; max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  animation: fadeUp .3s cubic-bezier(.22,1,.36,1) both;
}
.modal-box--lg { max-width: 720px; }
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px 0;
  position: sticky; top: 0; background: var(--white);
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px; margin-bottom: 0;
}
.modal-header__title {
  font-family: 'Syne', sans-serif;
  font-size: 18px; font-weight: 700;
}
.modal-close {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--ink-3);
  transition: background .15s;
}
.modal-close:hover { background: var(--surface-2); color: var(--ink); }
.modal-body { padding: 24px 28px; }

/* ── DASHBOARD LAYOUT ────────────────────────────────────── */
.dash-layout {
  display: flex; min-height: 100vh;
}
.dash-sidebar {
  width: var(--sidebar-w);
  background: var(--white);
  border-right: 1.5px solid var(--border);
  display: flex; flex-direction: column;
  position: sticky; top: 0; height: 100vh;
  flex-shrink: 0;
}
.sidebar-logo {
  padding: 24px 20px 20px;
  border-bottom: 1px solid var(--border);
}
.sidebar-logo a {
  font-family: 'Syne', sans-serif;
  font-size: 20px; font-weight: 800;
  color: var(--accent);
  letter-spacing: -.02em;
}
.sidebar-logo .logo-dot { color: var(--accent-warm); }

.sidebar-nav {
  flex: 1;
  padding: 16px 12px;
  display: flex; flex-direction: column; gap: 2px;
  overflow-y: auto;
}
.nav-section-label {
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-4);
  padding: 12px 8px 6px;
}
.nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius);
  font-size: 13.5px; font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
  transition: all .15s;
  border: none; background: none; width: 100%;
  text-align: left;
}
.nav-item:hover { background: var(--surface-2); color: var(--ink); }
.nav-item.active { background: var(--accent); color: #fff; }
.nav-item .nav-icon { font-size: 15px; width: 20px; text-align: center; }

.sidebar-user {
  padding: 16px;
  border-top: 1px solid var(--border);
}
.sidebar-user__card {
  display: flex; align-items: center; gap: 10px;
}
.user-avatar-sm {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  flex-shrink: 0;
}
.sidebar-user__name { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sidebar-user__email { font-size: 11px; color: var(--ink-3); }
.sidebar-user__logout {
  margin-top: 10px; width: 100%;
  padding: 7px 12px;
  border-radius: var(--radius);
  font-size: 12.5px; font-weight: 500;
  color: var(--danger); background: none;
  border: 1px solid #f7d4d4;
  transition: all .15s; text-align: center;
}
.sidebar-user__logout:hover { background: #fde8e8; }

/* ── MAIN CONTENT ────────────────────────────────────────── */
.dash-main { flex: 1; min-width: 0; }
.dash-section { display: none; padding: 32px; }
.dash-section.active { display: block; }

.section-header {
  margin-bottom: 28px;
}
.section-header__title {
  font-family: 'Syne', sans-serif;
  font-size: 26px; font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 4px;
}
.section-header__sub { color: var(--ink-3); font-size: 14px; }

/* ── OVERVIEW STATS ──────────────────────────────────────── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.stat-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.stat-card__label { font-size: 12px; font-weight: 600; color: var(--ink-3); text-transform: uppercase; letter-spacing: .05em; }
.stat-card__value {
  font-family: 'Syne', sans-serif;
  font-size: 32px; font-weight: 800;
  line-height: 1.1; margin-top: 4px;
  color: var(--ink);
}

/* ── PROJECT CARDS ───────────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.project-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
  display: flex; flex-direction: column; gap: 12px;
}
.project-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.project-card__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.project-card__title { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; }
.project-card__actions { display: flex; gap: 4px; flex-shrink: 0; }
.project-card__desc { font-size: 13px; color: var(--ink-2); line-height: 1.55; }
.project-card__skills { display: flex; flex-wrap: wrap; gap: 5px; }
.project-card__links { display: flex; gap: 8px; flex-wrap: wrap; }
.project-link {
  font-size: 12.5px; font-weight: 500; color: var(--accent);
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid rgba(24,71,248,.2);
  transition: background .15s;
}
.project-link:hover { background: rgba(24,71,248,.07); }
.project-card__footer { border-top: 1px solid var(--border); padding-top: 10px; }
.project-date { font-size: 11.5px; color: var(--ink-4); }

/* ── STUDENT CARDS ───────────────────────────────────────── */
.students-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.student-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: box-shadow .2s, transform .2s;
  display: flex; flex-direction: column; gap: 12px;
}
.student-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.student-card__top { display: flex; align-items: flex-start; gap: 12px; }
.student-avatar {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-h) 100%);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700;
  flex-shrink: 0;
}
.student-avatar--lg { width: 64px; height: 64px; font-size: 22px; border-radius: 16px; }
.student-card__info { flex: 1; min-width: 0; }
.student-card__name { font-weight: 700; font-size: 14.5px; }
.student-card__headline { font-size: 13px; color: var(--ink-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.student-card__loc { font-size: 12.5px; color: var(--ink-3); }
.student-card__skills { display: flex; flex-wrap: wrap; gap: 5px; }
.student-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; border-top: 1px solid var(--border); padding-top: 12px; }
.proj-count { font-size: 12px; color: var(--ink-3); }

.shortlist-btn {
  font-size: 18px; color: var(--ink-4); line-height: 1; flex-shrink: 0;
  transition: color .15s, transform .15s;
}
.shortlist-btn:hover, .shortlist-btn.shortlisted { color: var(--accent-amber); transform: scale(1.2); }

/* ── SEARCH & FILTER BAR ──────────────────────────────────── */
.search-bar {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 24px;
  align-items: center;
}
.search-input-wrap {
  position: relative; flex: 1; min-width: 200px;
}
.search-input-wrap .search-icon {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: var(--ink-4); pointer-events: none;
}
.search-input-wrap .input { padding-left: 36px; }

.filter-row {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: flex-start;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-bottom: 20px;
}
.filter-group { display: flex; flex-direction: column; gap: 5px; min-width: 160px; }
.filter-group label { font-size: 11.5px; font-weight: 600; color: var(--ink-3); text-transform: uppercase; letter-spacing: .05em; }

/* ── LOADING STATE ───────────────────────────────────────── */
.loading-state {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 60px 20px;
  gap: 12px; color: var(--ink-3);
}
.loading-state .spinner { width: 28px; height: 28px; border-color: rgba(13,12,10,.15); border-top-color: var(--accent); }

/* ── EMPTY STATES ────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-3);
}
.empty-state__icon { font-size: 48px; margin-bottom: 12px; }
.empty-state__title { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: var(--ink-2); margin-bottom: 6px; }
.empty-state__sub { font-size: 13.5px; }

/* ── ADMIN TABLE ─────────────────────────────────────────── */
.table-wrap {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.data-table {
  width: 100%; border-collapse: collapse;
  font-size: 13.5px;
}
.data-table th {
  background: var(--surface-2);
  padding: 11px 16px;
  text-align: left;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--ink-3);
  border-bottom: 1.5px solid var(--border);
}
.data-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--surface); }
.table-empty { color: var(--ink-3); text-align: center; padding: 40px; }

.user-cell { display: flex; align-items: center; gap: 10px; }
.user-cell__avatar {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--accent);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.user-cell__name { font-weight: 600; font-size: 13.5px; }
.user-cell__email { font-size: 11.5px; color: var(--ink-3); }

/* ── STUDENT MODAL CONTENT ───────────────────────────────── */
.student-modal__header {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 24px;
}
.student-modal__headline { color: var(--ink-3); font-size: 14px; margin: 2px 0 8px; }
.student-modal__loc { font-size: 13px; color: var(--ink-3); margin-bottom: 8px; }
.student-modal__bio { margin-bottom: 20px; }
.student-modal__bio h4, .student-modal__skills h4, .student-modal__projects h4 {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: var(--ink-3); margin-bottom: 10px;
}
.student-modal__bio p { font-size: 14px; color: var(--ink-2); line-height: 1.6; }
.student-modal__skills { margin-bottom: 20px; }
.student-modal__projects { margin-bottom: 24px; }
.student-modal__actions { display: flex; gap: 10px; }

.modal-project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  margin-bottom: 10px;
  display: flex; flex-direction: column; gap: 8px;
}
.modal-project-card__head {
  display: flex; align-items: center; justify-content: space-between;
}

/* ── OVERVIEW PROFILE CARD ───────────────────────────────── */
.overview-profile-card {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-h) 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 28px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.overview-profile-card::after {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
}
.overview-profile-card__name {
  font-family: 'Syne', sans-serif;
  font-size: 22px; font-weight: 800;
  margin-bottom: 4px;
}
.overview-profile-card__headline { opacity: .85; font-size: 14px; margin-bottom: 16px; }
.overview-profile-card__meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 13px; opacity: .8; }

/* ── LANDING PAGE ────────────────────────────────────────── */
.landing-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,245,241,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.landing-logo {
  font-family: 'Syne', sans-serif;
  font-size: 22px; font-weight: 800;
  color: var(--ink);
  letter-spacing: -.03em;
}
.landing-logo span { color: var(--accent); }
.landing-logo .dot { color: var(--accent-warm); }

.nav-actions { display: flex; gap: 10px; align-items: center; }

.landing-hero {
  max-width: 860px; margin: 0 auto;
  padding: 96px 48px 72px;
  text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px; font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.hero-badge__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-green); }

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 20px;
}
.hero-title .accent-text { color: var(--accent); }
.hero-title .warm-text   { color: var(--accent-warm); }

.hero-sub {
  font-size: 17px; color: var(--ink-3);
  max-width: 540px; margin: 0 auto 40px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-social-proof {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  font-size: 13px; color: var(--ink-3);
}
.avatar-stack { display: flex; }
.avatar-stack__item {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--surface);
  background: var(--accent);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  margin-left: -8px;
}
.avatar-stack__item:first-child { margin-left: 0; }

/* Features grid */
.landing-features {
  padding: 64px 48px;
  background: var(--white);
  border-top: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
}
.features-header { text-align: center; margin-bottom: 48px; }
.features-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 4vw, 40px); font-weight: 800;
  letter-spacing: -.025em; margin-bottom: 10px;
}
.features-header p { color: var(--ink-3); font-size: 15px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1000px; margin: 0 auto;
}
.feature-card {
  padding: 24px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.feature-card__icon { font-size: 28px; margin-bottom: 14px; }
.feature-card__title { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.feature-card__desc { font-size: 13.5px; color: var(--ink-3); line-height: 1.55; }

/* Role section */
.landing-roles {
  padding: 72px 48px;
  max-width: 960px; margin: 0 auto;
}
.roles-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 3.5vw, 36px); font-weight: 800;
  letter-spacing: -.025em; text-align: center;
  margin-bottom: 40px;
}
.roles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.role-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 14px;
}
.role-card--student { border-top: 3px solid var(--accent); }
.role-card--recruiter { border-top: 3px solid var(--accent-warm); }
.role-card__header { display: flex; align-items: center; gap: 12px; }
.role-card__icon { font-size: 28px; }
.role-card__title { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; }
.role-card__desc { font-size: 13.5px; color: var(--ink-2); line-height: 1.6; }
.role-card__features { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.role-card__features li { font-size: 13px; color: var(--ink-2); display: flex; align-items: center; gap: 8px; }
.role-card__features li::before { content: '✓'; color: var(--accent-green); font-weight: 700; flex-shrink: 0; }

/* Footer */
.landing-footer {
  padding: 32px 48px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--ink-3);
}

/* ── AUTH PAGE ───────────────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  display: flex;
}
.auth-left {
  flex: 1; display: flex; flex-direction: column;
  padding: 48px;
  max-width: 480px;
}
.auth-right {
  flex: 1;
  background: linear-gradient(135deg, var(--accent) 0%, #0b2d9e 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 48px;
  position: relative; overflow: hidden;
}
.auth-right::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.auth-right-content { position: relative; color: #fff; text-align: center; max-width: 400px; }
.auth-right-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: 32px; font-weight: 800;
  letter-spacing: -.025em; margin-bottom: 16px;
}
.auth-right-content p { opacity: .8; font-size: 15px; line-height: 1.65; margin-bottom: 32px; }
.auth-feature-list { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 12px; }
.auth-feature-list li { display: flex; gap: 10px; font-size: 14px; }
.auth-feature-list li span:first-child { flex-shrink: 0; }

.auth-logo {
  font-family: 'Syne', sans-serif;
  font-size: 22px; font-weight: 800;
  color: var(--accent);
  letter-spacing: -.02em;
  margin-bottom: 40px; display: block;
}
.auth-logo .dot { color: var(--accent-warm); }

.auth-title {
  font-family: 'Syne', sans-serif;
  font-size: 28px; font-weight: 800;
  letter-spacing: -.025em;
  margin-bottom: 6px;
}
.auth-sub { font-size: 14px; color: var(--ink-3); margin-bottom: 32px; }

.role-select-group {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 20px;
}
.role-option { display: none; }
.role-option-label {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all .18s;
  text-align: center;
}
.role-option:checked + .role-option-label {
  border-color: var(--accent);
  background: rgba(24,71,248,.06);
  color: var(--accent);
}
.role-option-label .role-icon { font-size: 24px; }
.role-option-label .role-name { font-size: 13px; font-weight: 600; }

.auth-divider {
  text-align: center; font-size: 12.5px; color: var(--ink-4);
  margin: 16px 0;
  position: relative;
}
.auth-divider::before {
  content: '';
  position: absolute; top: 50%; left: 0; right: 0;
  height: 1px; background: var(--border);
}
.auth-divider span { background: var(--white); padding: 0 12px; position: relative; }

.auth-switch { font-size: 13px; color: var(--ink-3); text-align: center; margin-top: 20px; }
.auth-switch a { color: var(--accent); font-weight: 500; }
.auth-switch a:hover { text-decoration: underline; }

/* ── PROFILE COMPLETION PROMPT ───────────────────────────── */
.prompt-banner {
  background: linear-gradient(135deg, rgba(24,71,248,.08) 0%, rgba(24,71,248,.04) 100%);
  border: 1.5px solid rgba(24,71,248,.2);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
}
.prompt-banner__icon { font-size: 22px; flex-shrink: 0; }
.prompt-banner__text strong { font-size: 14px; display: block; }
.prompt-banner__text span { font-size: 13px; color: var(--ink-3); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .roles-grid { grid-template-columns: 1fr; }
  .auth-right { display: none; }
  .auth-left { max-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .dash-sidebar { display: none; }
  .dash-section { padding: 20px 16px; }
  .landing-hero { padding: 60px 24px 48px; }
  .landing-nav { padding: 0 20px; }
  .landing-features, .landing-roles { padding: 48px 24px; }
  .landing-footer { padding: 24px; flex-direction: column; gap: 8px; text-align: center; }
}