/* ═══════════════════════════════════════════════════════════
   OrionHost Carrières — Main Stylesheet
   Design: Dark luxury, deep navy, crisp blues, space-inspired
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg:          #07071a;
  --bg-2:        #0d0d26;
  --bg-3:        #13132e;
  --bg-card:     #0f0f28;
  --border:      rgba(108, 143, 255, 0.12);
  --border-2:    rgba(108, 143, 255, 0.22);
  --accent:      #6c8fff;
  --accent-2:    #4a6bff;
  --accent-glow: rgba(108, 143, 255, 0.25);
  --text:        #e0e5f7;
  --text-muted:  #8892aa;
  --text-dim:    #505878;
  --white:       #ffffff;
  --success:     #2fd77f;
  --warning:     #f0a500;
  --danger:      #f05575;
  --radius:      14px;
  --radius-sm:   8px;
  --radius-lg:   20px;
  --shadow:      0 8px 32px rgba(0,0,10,0.4);
  --shadow-lg:   0 20px 60px rgba(0,0,10,0.6);
  --trans:       all .22s cubic-bezier(.4,0,.2,1);
  --font-head:   'Syne', sans-serif;
  --font-body:   'DM Sans', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: var(--accent); text-decoration: none; transition: var(--trans); }
a:hover { color: var(--white); }
img { max-width: 100%; }
ul { list-style: none; }
main { flex: 1; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 3px; }

/* ═══ NAVBAR ═══ */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(7,7,26,.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-container {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center;
  height: 68px; gap: 32px;
}
.nav-logo {
  font-family: var(--font-head); font-size: 20px; font-weight: 800;
  color: var(--white); display: flex; align-items: center; gap: 10px;
  letter-spacing: -0.5px;
}
.logo-mark {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px var(--accent-glow);
}
.logo-mark::after {
  content: '✦';
  color: #fff; font-size: 14px;
}
.nav-logo .accent { color: var(--accent); }
.nav-badge {
  font-size: 10px; font-weight: 600; font-family: var(--font-body);
  background: rgba(108,143,255,.15); color: var(--accent);
  border: 1px solid rgba(108,143,255,.3);
  padding: 2px 8px; border-radius: 20px; letter-spacing: .5px;
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.nav-link {
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: var(--trans);
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(108,143,255,.1); }
.btn-nav {
  font-size: 14px; font-weight: 600; color: var(--white);
  padding: 9px 20px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 4px 20px var(--accent-glow);
  transition: var(--trans);
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 6px 28px var(--accent-glow); color: #fff; }
.btn-nav-secondary {
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  padding: 8px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--border-2); transition: var(--trans);
}
.btn-nav-secondary:hover { color: var(--white); border-color: var(--accent); }
.nav-toggle { display: none; }

/* ═══ FLASH ═══ */
.flash {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; font-size: 14px; font-weight: 500;
  border-bottom: 1px solid transparent;
  animation: slideDown .3s ease;
}
.flash-success { background: rgba(47,215,127,.12); color: var(--success); border-color: rgba(47,215,127,.25); }
.flash-error   { background: rgba(240,85,117,.12); color: var(--danger);  border-color: rgba(240,85,117,.25); }
.flash-info    { background: rgba(108,143,255,.12); color: var(--accent); border-color: var(--border); }
.flash button { background: none; border: none; color: inherit; cursor: pointer; font-size: 18px; opacity: .7; }

/* ═══ HERO ═══ */
.hero {
  position: relative; padding: 120px 24px 100px;
  text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(74,107,255,.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 20% 50%, rgba(108,143,255,.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 50%, rgba(74,107,255,.08) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(rgba(108,143,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(108,143,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black, transparent);
}
.hero-content { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); background: rgba(108,143,255,.1);
  border: 1px solid rgba(108,143,255,.2);
  padding: 6px 16px; border-radius: 20px; margin-bottom: 28px;
}
.hero-eyebrow::before { content: '✦'; }
.hero h1 {
  font-family: var(--font-head); font-size: clamp(42px,6vw,76px);
  font-weight: 800; line-height: 1.05; letter-spacing: -2px;
  color: var(--white); margin-bottom: 24px;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, #a0b4ff 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub { font-size: 18px; color: var(--text-muted); max-width: 540px; margin: 0 auto 48px; font-weight: 300; }
.hero-stats {
  display: flex; justify-content: center; gap: 48px;
  padding-top: 48px; border-top: 1px solid var(--border); margin-top: 48px;
}
.hero-stat-num { font-family: var(--font-head); font-size: 36px; font-weight: 800; color: var(--white); }
.hero-stat-label { font-size: 13px; color: var(--text-muted); font-weight: 400; }

/* ═══ CONTAINER / GRID ═══ */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { font-family: var(--font-head); font-size: clamp(28px,4vw,44px); font-weight: 800; color: var(--white); letter-spacing: -1px; margin-bottom: 12px; }
.section-head p  { font-size: 16px; color: var(--text-muted); max-width: 520px; margin: 0 auto; }

/* ═══ FILTERS ═══ */
.filters {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  margin-bottom: 48px; padding: 20px 24px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.filter-group { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-chip {
  font-size: 13px; font-weight: 500; padding: 7px 16px;
  border-radius: 20px; border: 1px solid var(--border);
  color: var(--text-muted); cursor: pointer; background: transparent;
  transition: var(--trans); font-family: var(--font-body);
}
.filter-chip:hover, .filter-chip.active {
  background: rgba(108,143,255,.15); color: var(--accent); border-color: var(--accent);
}
.filter-search {
  margin-left: auto;
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 8px 16px;
}
.filter-search input {
  background: none; border: none; outline: none;
  color: var(--text); font-family: var(--font-body); font-size: 14px; width: 200px;
}
.filter-search input::placeholder { color: var(--text-dim); }
.filter-search svg { opacity: .4; flex-shrink: 0; }

/* ═══ OFFERS GRID ═══ */
.offers-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 20px;
}
.offer-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: var(--trans); position: relative; overflow: hidden;
  cursor: pointer;
}
.offer-card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, rgba(108,143,255,.06), transparent);
  opacity: 0; transition: var(--trans);
}
.offer-card:hover { border-color: var(--border-2); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,10,.5), 0 0 0 1px rgba(108,143,255,.15); }
.offer-card:hover::before { opacity: 1; }
.offer-card-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; gap: 12px; }
.offer-dept {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent); background: rgba(108,143,255,.12); border: 1px solid rgba(108,143,255,.2);
  padding: 4px 12px; border-radius: 20px;
}
.offer-contract {
  font-size: 12px; font-weight: 500; color: var(--text-dim);
  background: var(--bg-2); border: 1px solid var(--border); padding: 4px 10px; border-radius: 20px;
}
.offer-title { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.2; }
.offer-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.offer-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.offer-meta-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-dim); }
.offer-meta-item svg { opacity: .6; }
.offer-card-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 20px; }
.offer-salary { font-size: 14px; font-weight: 600; color: var(--success); }
.btn-apply {
  font-size: 13px; font-weight: 600; color: var(--white);
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  padding: 9px 22px; border-radius: var(--radius-sm);
  border: none; cursor: pointer; transition: var(--trans); font-family: var(--font-body);
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-apply:hover { transform: translateY(-1px); box-shadow: 0 6px 20px var(--accent-glow); color: #fff; }

/* ═══ OFFER DETAIL ═══ */
.offer-detail-hero { padding: 80px 0 60px; }
.offer-detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 32px; padding: 60px 0; }
.offer-body h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--white); margin: 32px 0 12px; }
.offer-body h3:first-child { margin-top: 0; }
.offer-body p  { color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; }
.offer-body ul { margin: 0 0 20px 0; }
.offer-body ul li { position: relative; padding-left: 20px; color: var(--text-muted); margin-bottom: 8px; line-height: 1.7; }
.offer-body ul li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-size: 12px; top: 4px; }
.offer-sidebar { position: sticky; top: 100px; height: fit-content; }
.sidebar-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; margin-bottom: 16px;
}
.sidebar-card h3 { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.sidebar-info-row { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.sidebar-info-row:last-child { border-bottom: none; }
.sidebar-info-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(108,143,255,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sidebar-info-label { font-size: 11px; color: var(--text-dim); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.sidebar-info-value { font-size: 14px; color: var(--text); font-weight: 500; }
.btn-full { width: 100%; text-align: center; padding: 15px; font-size: 15px; border-radius: var(--radius-sm); }

/* ═══ AUTH PAGES ═══ */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 40px 24px; }
.auth-card {
  width: 100%; max-width: 460px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 48px; position: relative; overflow: hidden;
}
.auth-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent), #a0b4ff);
}
.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-logo .logo-text { font-family: var(--font-head); font-size: 28px; font-weight: 800; color: var(--white); }
.auth-logo .logo-text span { color: var(--accent); }
.auth-logo p { font-size: 14px; color: var(--text-muted); margin-top: 8px; }
.auth-title { font-family: var(--font-head); font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.auth-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }
.auth-footer { text-align: center; margin-top: 28px; font-size: 14px; color: var(--text-muted); }
.auth-divider { height: 1px; background: var(--border); margin: 24px 0; }

/* ═══ FORMS ═══ */
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; letter-spacing: .3px; }
label .req { color: var(--danger); margin-left: 3px; }
input[type=text], input[type=email], input[type=password], input[type=tel], input[type=number], input[type=datetime-local], input[type=url],
select, textarea {
  width: 100%; background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text); font-family: var(--font-body); font-size: 15px;
  padding: 12px 16px; transition: var(--trans); outline: none;
  -webkit-appearance: none; appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow);
}
textarea { resize: vertical; min-height: 120px; }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236c8fff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }
.form-hint { font-size: 12px; color: var(--text-dim); margin-top: 6px; }
.form-error { font-size: 12px; color: var(--danger); margin-top: 6px; }
.checkbox-group { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.checkbox-group input[type=checkbox] { width: 18px; height: 18px; flex-shrink: 0; cursor: pointer; accent-color: var(--accent); }
.checkbox-group label { margin: 0; font-size: 14px; font-weight: 400; color: var(--text-muted); cursor: pointer; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-sm); font-family: var(--font-body);
  font-size: 15px; font-weight: 600; cursor: pointer; transition: var(--trans); border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent)); color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--accent-glow); color: #fff; }
.btn-secondary { background: var(--bg-2); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--accent); color: var(--white); }
.btn-danger  { background: rgba(240,85,117,.15); color: var(--danger); border: 1px solid rgba(240,85,117,.3); }
.btn-danger:hover { background: var(--danger); color: #fff; }
.btn-success { background: rgba(47,215,127,.15); color: var(--success); border: 1px solid rgba(47,215,127,.3); }
.btn-success:hover { background: var(--success); color: #fff; }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none !important; }

/* ═══ CARDS / PANELS ═══ */
.card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px;
}
.card-title { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.card-title svg { color: var(--accent); }

/* ═══ STATUS BADGES ═══ */
.status-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 600;
}
.status-pending      { background: rgba(240,165,0,.12);   color: var(--warning); border: 1px solid rgba(240,165,0,.25); }
.status-avail        { background: rgba(108,143,255,.12); color: var(--accent);  border: 1px solid var(--border-2); }
.status-scheduled    { background: rgba(108,143,255,.18); color: #b0c4ff;        border: 1px solid rgba(108,143,255,.35); }
.status-waiting      { background: rgba(240,165,0,.08);   color: #c08030;        border: 1px solid rgba(240,165,0,.2); }
.status-accepted     { background: rgba(47,215,127,.12);  color: var(--success); border: 1px solid rgba(47,215,127,.25); }
.status-rejected     { background: rgba(240,85,117,.12);  color: var(--danger);  border: 1px solid rgba(240,85,117,.25); }
.status-hired        { background: linear-gradient(135deg,rgba(47,215,127,.15),rgba(108,143,255,.15)); color: var(--success); border: 1px solid rgba(47,215,127,.3); }

/* ═══ ACCOUNT PAGE ═══ */
.account-grid { display: grid; grid-template-columns: 280px 1fr; gap: 28px; padding: 60px 0; }
.account-sidebar .card { margin-bottom: 16px; }
.profile-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 28px; font-weight: 800; color: #fff;
  margin: 0 auto 16px; flex-shrink: 0;
}
.profile-name { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--white); text-align: center; }
.profile-email { font-size: 13px; color: var(--text-dim); text-align: center; margin-top: 4px; }
.profile-role { display: flex; justify-content: center; margin-top: 12px; }
.profile-role .status-badge { font-size: 11px; text-transform: uppercase; letter-spacing: .5px; }
.sidebar-nav { margin-top: 20px; border-top: 1px solid var(--border); padding-top: 16px; }
.sidebar-nav a {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--radius-sm);
  color: var(--text-muted); font-size: 14px; font-weight: 500; transition: var(--trans);
}
.sidebar-nav a:hover, .sidebar-nav a.active { background: rgba(108,143,255,.1); color: var(--white); }

/* Applications list */
.application-item {
  background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 24px; margin-bottom: 12px; transition: var(--trans);
  display: flex; align-items: center; gap: 20px; cursor: pointer;
}
.application-item:hover { border-color: var(--border-2); background: var(--bg-3); }
.application-item-body { flex: 1; min-width: 0; }
.application-item-title { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.application-item-meta { font-size: 13px; color: var(--text-dim); }

/* Application detail */
.app-timeline { position: relative; }
.timeline-step { display: flex; gap: 20px; margin-bottom: 4px; }
.timeline-step:last-child .timeline-line { display: none; }
.timeline-dot-wrap { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.timeline-dot {
  width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 14px; border: 2px solid var(--border); background: var(--bg-2);
  flex-shrink: 0;
}
.timeline-dot.done   { background: rgba(47,215,127,.15); border-color: rgba(47,215,127,.4); }
.timeline-dot.active { background: rgba(108,143,255,.15); border-color: var(--accent); box-shadow: 0 0 20px var(--accent-glow); }
.timeline-dot.rejected-dot { background: rgba(240,85,117,.15); border-color: rgba(240,85,117,.4); }
.timeline-line { width: 2px; flex: 1; min-height: 32px; background: var(--border); margin: 4px 0; }
.timeline-content { padding: 6px 0 32px; }
.timeline-title { font-weight: 600; color: var(--white); font-size: 15px; margin-bottom: 4px; }
.timeline-sub  { font-size: 13px; color: var(--text-dim); }

/* ═══ RH / ADMIN PANEL ═══ */
.panel-header {
  background: var(--bg-card); border-bottom: 1px solid var(--border);
  padding: 24px 0; margin-bottom: 40px;
}
.panel-header-inner { display: flex; align-items: center; justify-content: space-between; }
.panel-title { font-family: var(--font-head); font-size: 28px; font-weight: 800; color: var(--white); letter-spacing: -1px; }
.panel-subtitle { font-size: 14px; color: var(--text-muted); margin-top: 4px; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
.stat-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; display: flex; align-items: center; gap: 16px;
}
.stat-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.stat-icon.blue   { background: rgba(108,143,255,.15); }
.stat-icon.green  { background: rgba(47,215,127,.15); }
.stat-icon.yellow { background: rgba(240,165,0,.15); }
.stat-icon.red    { background: rgba(240,85,117,.15); }
.stat-num { font-family: var(--font-head); font-size: 32px; font-weight: 800; color: var(--white); }
.stat-label { font-size: 13px; color: var(--text-dim); font-weight: 500; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-dim); padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.data-table td { padding: 16px; border-bottom: 1px solid rgba(108,143,255,.06); font-size: 14px; color: var(--text-muted); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(108,143,255,.04); color: var(--text); }
.data-table .name-cell { color: var(--white); font-weight: 500; }

/* ═══ PAGE HERO ═══ */
.page-hero { padding: 60px 0 40px; border-bottom: 1px solid var(--border); margin-bottom: 48px; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(28px,4vw,44px); font-weight: 800; color: var(--white); letter-spacing: -1px; }
.page-hero p  { font-size: 16px; color: var(--text-muted); margin-top: 8px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-dim); margin-bottom: 16px; }
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { opacity: .4; }

/* ═══ EMPTY STATE ═══ */
.empty-state { text-align: center; padding: 80px 40px; color: var(--text-dim); }
.empty-state-icon { font-size: 48px; margin-bottom: 16px; opacity: .5; }
.empty-state h3 { font-family: var(--font-head); font-size: 20px; color: var(--text-muted); margin-bottom: 8px; }
.empty-state p { font-size: 14px; }

/* ═══ MODAL ═══ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,10,.8);
  backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--bg-card); border: 1px solid var(--border-2); border-radius: var(--radius-lg);
  max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto;
  transform: translateY(20px); transition: transform .25s;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header { padding: 28px 28px 20px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.modal-title { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--white); }
.modal-close { background: none; border: none; color: var(--text-dim); cursor: pointer; font-size: 20px; transition: var(--trans); }
.modal-close:hover { color: var(--white); }
.modal-body { padding: 28px; }
.modal-footer { padding: 20px 28px; border-top: 1px solid var(--border); display: flex; gap: 12px; justify-content: flex-end; }

/* ═══ STEPS (application form) ═══ */
.form-steps { display: flex; margin-bottom: 40px; gap: 4px; }
.form-step {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 12px;
  color: var(--text-dim); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; position: relative;
}
.form-step::after {
  content: ''; position: absolute; top: 18px; left: 60%; right: -40%;
  height: 1px; background: var(--border); z-index: 0;
}
.form-step:last-child::after { display: none; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%; background: var(--bg-2); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; z-index: 1;
}
.form-step.active .step-num { background: var(--accent-2); border-color: var(--accent); color: #fff; box-shadow: 0 0 20px var(--accent-glow); }
.form-step.done   .step-num { background: rgba(47,215,127,.15); border-color: var(--success); color: var(--success); }

/* ═══ HIRED CELEBRATION ═══ */
.hired-card {
  text-align: center; padding: 60px 40px;
  background: linear-gradient(135deg, rgba(47,215,127,.05) 0%, rgba(108,143,255,.05) 100%);
  border: 1px solid rgba(47,215,127,.2); border-radius: var(--radius-lg);
}
.hired-emoji { font-size: 72px; margin-bottom: 24px; animation: bounce 1s ease infinite alternate; }
.hired-card h2 { font-family: var(--font-head); font-size: 36px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.hired-card p { font-size: 16px; color: var(--text-muted); max-width: 440px; margin: 0 auto; }

/* ═══ FOOTER ═══ */
.site-footer {
  background: var(--bg-card); border-top: 1px solid var(--border); margin-top: auto;
}
.footer-inner {
  max-width: 1240px; margin: 0 auto; padding: 64px 24px 40px;
  display: grid; grid-template-columns: 300px 1fr; gap: 64px;
}
.footer-logo { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.footer-logo span { color: var(--accent); }
.footer-tagline { font-size: 14px; color: var(--text-dim); line-height: 1.6; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dim); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: var(--text-dim); margin-bottom: 10px; transition: var(--trans); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1240px; margin: 0 auto; padding: 20px 24px;
  border-top: 1px solid var(--border); display: flex; justify-content: space-between;
  font-size: 13px; color: var(--text-dim); align-items: center;
}
.footer-powered { opacity: .5; }

/* ═══ ANIMATIONS ═══ */
@keyframes slideDown { from { transform: translateY(-20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes bounce    { from { transform: translateY(0); } to { transform: translateY(-12px); } }
@keyframes fadeIn    { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.animate-in { animation: fadeIn .5s ease both; }
.delay-1 { animation-delay: .1s; } .delay-2 { animation-delay: .2s; } .delay-3 { animation-delay: .3s; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .offer-detail-grid { grid-template-columns: 1fr; }
  .offer-sidebar { position: static; }
  .account-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--bg-card); border-bottom: 1px solid var(--border); flex-direction: column; padding: 16px; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
  .nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 1px; transition: var(--trans); }
  .offers-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .auth-card { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .hero { padding: 80px 20px 60px; }
  .stats-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}

/* ═══ UTILS ═══ */
.text-center { text-align: center; }
.text-muted  { color: var(--text-muted); }
.mb-0  { margin-bottom: 0; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.d-flex { display: flex; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }
.prose p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.prose ul { margin: 0 0 20px 0; }
.prose ul li { position: relative; padding-left: 20px; color: var(--text-muted); margin-bottom: 8px; }
.prose ul li::before { content: '→'; position: absolute; left: 0; color: var(--accent); }
hr.divider { border: none; border-top: 1px solid var(--border); margin: 32px 0; }
.tag { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; background: rgba(108,143,255,.1); color: var(--accent); border: 1px solid rgba(108,143,255,.2); }
.alert { padding: 14px 18px; border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 20px; }
.alert-info    { background: rgba(108,143,255,.1); color: var(--accent); border: 1px solid var(--border-2); }
.alert-success { background: rgba(47,215,127,.1); color: var(--success); border: 1px solid rgba(47,215,127,.25); }
.alert-danger  { background: rgba(240,85,117,.1); color: var(--danger); border: 1px solid rgba(240,85,117,.25); }
.alert-warning { background: rgba(240,165,0,.1); color: var(--warning); border: 1px solid rgba(240,165,0,.25); }
