/* ============================================================
   SkyTeam Virtuel — Global Stylesheet
   Premium light theme · Cormorant Garamond + Inter · Material Icons
   ============================================================ */

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

:root {
  --navy:       #0d1f3c;
  --navy-mid:   #1a3358;
  --blue:       #1a56db;
  --blue-mid:   #1e40af;
  --blue-light: #3b82f6;
  --blue-pale:  rgba(59,130,246,0.08);
  --white:      #ffffff;
  --bg:         #f8fafc;
  --bg-2:       #f1f5f9;
  --line:       #e2e8f0;
  --line-mid:   #cbd5e1;
  --text:       #0d1f3c;
  --text-2:     #475569;
  --text-3:     #94a3b8;
  --green:      #16a34a;
  --green-pale: rgba(22,163,74,0.08);
  --amber:      #d97706;
  --amber-pale: rgba(217,119,6,0.08);
  --red:        #dc2626;
  --red-pale:   rgba(220,38,38,0.08);
  --r:          4px;
  --r-lg:       10px;
  --shadow:     0 1px 4px rgba(13,31,60,0.06), 0 4px 16px rgba(13,31,60,0.06);
  --shadow-lg:  0 4px 24px rgba(13,31,60,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.3px;
  color: var(--navy);
}
h1 { font-size: clamp(36px, 5vw, 56px); }
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: 22px; }
p  { color: var(--text-2); line-height: 1.75; }
a  { color: var(--blue); }

/* ── TOPBAR ── */
.topbar {
  background: var(--navy);
  height: 38px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 400; letter-spacing: 0.4px;
  color: rgba(255,255,255,0.55);
}
.topbar strong { color: rgba(255,255,255,0.9); font-weight: 500; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 200;
  height: 66px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center;
  padding: 0 40px;
}
.nav-inner {
  width: 100%; max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 36px; width: auto; display: block; }
.nav-logo-placeholder {
  height: 36px; width: 130px;
  border: 1.5px dashed var(--line-mid);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 500; letter-spacing: 0.6px;
  text-transform: uppercase; color: var(--text-3); gap: 5px;
}
.nav-logo-placeholder .material-icons-round { font-size: 14px; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: var(--r);
  font-size: 13px; font-weight: 400; color: var(--text-2);
  text-decoration: none; transition: background .15s, color .15s;
}
.nav-links a .material-icons-round { font-size: 15px; opacity: .7; }
.nav-links a:hover { background: var(--bg-2); color: var(--navy); }
.nav-sep { width: 1px; height: 18px; background: var(--line); margin: 0 8px; }
.nav-btn {
  display: flex; align-items: center; gap: 7px;
  padding: 9px 18px; background: var(--navy);
  color: #fff; font-size: 13px; font-weight: 500;
  border-radius: var(--r); text-decoration: none; transition: background .15s;
}
.nav-btn .material-icons-round { font-size: 15px; }
.nav-btn:hover { background: var(--navy-mid); }

/* Language selector */
.lang-select { display: flex; align-items: center; gap: 2px; margin-right: 10px; }
.lang-btn {
  padding: 5px 9px; border-radius: var(--r);
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.3px;
  color: var(--text-3); text-decoration: none;
  border: 1px solid transparent; transition: all .15s;
}
.lang-btn:hover { border-color: var(--line); color: var(--text); }
.lang-btn.active { border-color: var(--line); color: var(--blue); background: var(--blue-pale); }

/* ── HERO ── */
.hero {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 80px 0 0;
  overflow: hidden;
}
.hero-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 40px 80px;
  display: grid; grid-template-columns: 1fr 460px;
  gap: 80px; align-items: flex-start;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--blue); margin-bottom: 20px;
}
.hero-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--blue); }
.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--text-2); }
.hero-sub { font-size: 15px; max-width: 460px; margin-bottom: 40px; line-height: 1.8; color: var(--text-2); }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; background: var(--blue);
  color: #fff; font-size: 13px; font-weight: 500;
  border-radius: var(--r); text-decoration: none;
  transition: background .15s, transform .15s;
}
.btn-primary:hover { background: var(--blue-mid); transform: translateY(-1px); }
.btn-primary .material-icons-round { font-size: 16px; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; background: var(--white);
  color: var(--text); font-size: 13px; font-weight: 500;
  border-radius: var(--r); text-decoration: none;
  border: 1px solid var(--line); transition: background .15s;
}
.btn-secondary:hover { background: var(--bg-2); }
.btn-secondary .material-icons-round { font-size: 16px; }
.btn-danger {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; background: var(--red-pale);
  color: var(--red); font-size: 12.5px; font-weight: 500;
  border-radius: var(--r); text-decoration: none; border: none; cursor: pointer;
  transition: background .15s;
}
.btn-danger:hover { background: rgba(220,38,38,0.15); }
.btn-danger .material-icons-round { font-size: 15px; }

/* Hero panel */
.hero-panel {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow); margin-top: 8px;
}
.hero-panel-head {
  background: var(--bg-2); border-bottom: 1px solid var(--line);
  padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.panel-label { font-size: 10.5px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: var(--text-3); }
.panel-live { display: flex; align-items: center; gap: 6px; font-size: 10.5px; color: var(--green); font-weight: 500; }
.panel-live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.hero-stats-grid { display: grid; grid-template-columns: 1fr 1fr; background: var(--white); }
.stat-cell {
  padding: 24px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-cell:nth-child(2), .stat-cell:nth-child(4) { border-right: none; }
.stat-cell:nth-child(3), .stat-cell:nth-child(4) { border-bottom: none; }
.stat-n { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 300; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.stat-l { font-size: 10.5px; font-weight: 500; letter-spacing: 0.8px; text-transform: uppercase; color: var(--text-3); }
.hero-panel-foot {
  background: var(--blue-pale); border-top: 1px solid rgba(59,130,246,0.15);
  padding: 12px 20px;
  display: flex; align-items: center; gap: 7px;
  font-size: 11.5px; color: var(--blue); font-weight: 500;
}
.hero-panel-foot .material-icons-round { font-size: 14px; }

/* ── SECTIONS ── */
.section { padding: 80px 0; border-bottom: 1px solid var(--line); }
.section-alt { background: var(--white); }
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.section-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--blue); margin-bottom: 14px;
}
.section-eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--blue); }
.section-desc { font-size: 14px; color: var(--text-2); max-width: 460px; line-height: 1.75; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 44px; gap: 24px;
}
.see-all {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 500; color: var(--text-3);
  text-decoration: none; border-bottom: 1px solid transparent;
  padding-bottom: 1px; transition: color .15s, border-color .15s; white-space: nowrap;
}
.see-all:hover { color: var(--blue); border-color: var(--blue); }
.see-all .material-icons-round { font-size: 14px; }

/* ── COMPANIES ── */
.companies-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; background: var(--line); box-shadow: var(--shadow);
}
.co-card {
  background: var(--white); padding: 32px 28px;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden; transition: background .2s;
}
.co-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.co-card:hover { background: var(--bg); }
.co-card:hover::after { transform: scaleX(1); }
.co-logo-zone {
  width: 48px; height: 48px; margin-bottom: 24px; border-radius: var(--r);
  border: 1.5px dashed var(--line); display: flex; align-items: center;
  justify-content: center; color: var(--text-3); overflow: hidden; flex-shrink: 0;
}
.co-logo-zone img { width: 100%; height: 100%; object-fit: contain; }
.co-logo-zone .material-icons-round { font-size: 20px; }
.co-name { font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 400; color: var(--navy); margin-bottom: 8px; line-height: 1.2; }
.co-desc { font-size: 13px; color: var(--text-2); line-height: 1.7; flex: 1; margin-bottom: 24px; }
.co-footer { display: flex; align-items: center; gap: 16px; padding-top: 18px; border-top: 1px solid var(--line); }
.co-stat { display: flex; align-items: center; gap: 5px; font-size: 11.5px; color: var(--text-3); }
.co-stat .material-icons-round { font-size: 13px; }
.co-badge { margin-left: auto; font-size: 10px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; padding: 3px 10px; border-radius: 999px; background: var(--green-pale); color: var(--green); }

/* ── JOBS LIST ── */
.jobs-list { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.job-row {
  display: grid; grid-template-columns: 1fr auto auto auto;
  align-items: center; gap: 20px; padding: 20px 24px;
  background: var(--white); border-bottom: 1px solid var(--line);
  text-decoration: none; color: inherit; transition: background .15s;
}
.job-row:last-child { border-bottom: none; }
.job-row:hover { background: var(--bg); }
.job-title-text { font-size: 13.5px; font-weight: 500; color: var(--navy); margin-bottom: 4px; }
.job-meta-row { display: flex; align-items: center; gap: 14px; font-size: 11.5px; color: var(--text-3); flex-wrap: wrap; }
.job-meta-row span { display: flex; align-items: center; gap: 4px; }
.job-meta-row .material-icons-round { font-size: 12px; }
.job-arrow .material-icons-round { font-size: 16px; color: var(--text-3); }

/* Tags */
.tag { font-size: 10.5px; font-weight: 600; letter-spacing: 0.4px; text-transform: uppercase; padding: 4px 11px; border-radius: 999px; white-space: nowrap; }
.tag-blue   { background: var(--blue-pale);  color: var(--blue);  }
.tag-green  { background: var(--green-pale); color: var(--green); }
.tag-amber  { background: var(--amber-pale); color: var(--amber); }
.tag-red    { background: var(--red-pale);   color: var(--red);   }
.tag-navy   { background: rgba(13,31,60,.06); color: var(--navy); }

/* ── TRACK SECTION ── */
.track-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.track-steps { display: flex; flex-direction: column; margin-top: 36px; }
.step-row { display: flex; gap: 18px; padding-bottom: 28px; position: relative; }
.step-row:not(:last-child)::before {
  content: ''; position: absolute; left: 15px; top: 32px;
  width: 1px; height: calc(100% - 12px); background: var(--line);
}
.step-num {
  width: 32px; height: 32px; border: 1.5px solid var(--line);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; color: var(--text-3);
  flex-shrink: 0; background: var(--white); position: relative; z-index: 1;
}
.step-num.active { border-color: var(--blue); color: var(--blue); }
.step-title { font-size: 13.5px; font-weight: 500; color: var(--navy); margin-bottom: 3px; }
.step-desc  { font-size: 12.5px; color: var(--text-2); line-height: 1.65; }
.track-form-box { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.tfb-head { background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 18px 22px; }
.tfb-head-title { font-size: 11px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: var(--text-3); }
.tfb-body { padding: 24px 22px; background: var(--white); }
.form-label { font-size: 11px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; color: var(--text-3); margin-bottom: 8px; display: block; }
.form-input {
  width: 100%; height: 42px; border: 1px solid var(--line);
  border-radius: var(--r); padding: 0 13px;
  font-family: 'Inter', sans-serif; font-size: 13.5px; color: var(--text);
  background: var(--white); outline: none; transition: border-color .15s, box-shadow .15s;
}
.form-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,86,219,0.08); }
.form-textarea { height: auto; padding: 11px 13px; resize: vertical; min-height: 100px; }
.input-row { display: flex; gap: 8px; margin-bottom: 16px; }
.form-btn {
  height: 42px; padding: 0 18px;
  background: var(--blue); color: #fff; border: none;
  border-radius: var(--r); font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 500; cursor: pointer;
  display: flex; align-items: center; gap: 6px; transition: background .15s; white-space: nowrap;
}
.form-btn:hover { background: var(--blue-mid); }
.form-btn .material-icons-round { font-size: 16px; }
.pipeline { display: flex; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; margin-top: 16px; }
.pipe-step { flex: 1; padding: 12px 6px; display: flex; flex-direction: column; align-items: center; gap: 5px; border-right: 1px solid var(--line); background: var(--bg); }
.pipe-step:last-child { border-right: none; }
.pipe-step.active { background: var(--blue-pale); }
.pipe-step .material-icons-round { font-size: 16px; color: var(--text-3); }
.pipe-step.active .material-icons-round { color: var(--blue); }
.pipe-step-label { font-size: 9.5px; font-weight: 600; letter-spacing: 0.4px; text-transform: uppercase; color: var(--text-3); text-align: center; }
.pipe-step.active .pipe-step-label { color: var(--blue); }

/* ── TRACK DETAIL ── */
.track-detail-grid { display: grid; grid-template-columns: 1fr 300px; gap: 28px; align-items: flex-start; }
.td-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 16px; }
.td-card-head { background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 16px 22px; }
.td-card-head h3 { font-size: 15px; margin-bottom: 0; }
.td-card-body { padding: 22px; }

/* ── APPLY FORM ── */
.apply-grid { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: flex-start; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 11.5px; font-weight: 600; letter-spacing: 0.6px; text-transform: uppercase; color: var(--text-2); margin-bottom: 7px; }
.form-group label .req { color: var(--red); }
.form-select { width: 100%; height: 42px; border: 1px solid var(--line); border-radius: var(--r); padding: 0 13px; font-family: 'Inter', sans-serif; font-size: 13.5px; color: var(--text); background: var(--white); outline: none; }
.form-select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,86,219,.08); }
.form-submit {
  width: 100%; padding: 13px; background: var(--blue); color: #fff; border: none;
  border-radius: var(--r); font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: background .15s;
}
.form-submit:hover { background: var(--blue-mid); }
.form-submit .material-icons-round { font-size: 17px; }

/* ── ALERTS ── */
.alert { padding: 14px 18px; border-radius: var(--r); font-size: 13px; display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.alert .material-icons-round { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.alert-success { background: var(--green-pale); border: 1px solid rgba(22,163,74,.2); color: #15803d; }
.alert-error   { background: var(--red-pale);   border: 1px solid rgba(220,38,38,.2);  color: #b91c1c; }
.alert-info    { background: var(--blue-pale);  border: 1px solid rgba(59,130,246,.2); color: var(--blue); }

/* ── QUOTE ── */
.quote-section { text-align: center; padding: 80px 40px; background: var(--navy); }
.quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 72px; font-weight: 300; color: rgba(255,255,255,0.1); line-height: 0.7; margin-bottom: 24px; }
.quote-text { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; font-style: italic; color: rgba(255,255,255,0.85); line-height: 1.6; max-width: 700px; margin: 0 auto 32px; }
.quote-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.qa-avatar { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.4); }
.qa-sep { width: 1px; height: 24px; background: rgba(255,255,255,0.15); }
.qa-name { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.85); }
.qa-role { font-size: 11.5px; color: rgba(255,255,255,0.35); font-weight: 300; }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 56px 40px 28px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 56px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 24px; }
.footer-logo-placeholder { height: 32px; width: 110px; border: 1px dashed rgba(255,255,255,0.2); border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 10px; color: rgba(255,255,255,0.25); gap: 5px; margin-bottom: 18px; }
.footer-logo-placeholder .material-icons-round { font-size: 13px; }
.footer-tagline { font-size: 12.5px; font-weight: 300; color: rgba(255,255,255,0.4); line-height: 1.8; max-width: 240px; }
.footer-disclaimer { font-size: 10.5px; color: rgba(255,255,255,0.18); font-style: italic; max-width: 240px; margin-top: 16px; line-height: 1.7; }
.footer-col-title { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { font-size: 12.5px; font-weight: 300; color: rgba(255,255,255,0.35); text-decoration: none; display: flex; align-items: center; gap: 7px; transition: color .15s; }
.footer-col ul li a .material-icons-round { font-size: 13px; opacity: .7; }
.footer-col ul li a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,0.2); }
.footer-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; display: flex; align-items: center; gap: 5px; font-size: 11px; transition: color .15s; }
.footer-bottom a .material-icons-round { font-size: 13px; }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ── ADMIN LAYOUT ── */
.admin-sidebar {
  position: fixed; top: 0; left: 0; bottom: 0; width: 240px;
  background: var(--navy); border-right: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; z-index: 100; overflow-y: auto;
}
.admin-sidebar-logo { padding: 20px; border-bottom: 1px solid rgba(255,255,255,.06); }
.admin-sidebar-logo img { height: 30px; width: auto; }
.admin-sidebar-logo-placeholder { height: 30px; width: 110px; border: 1px dashed rgba(255,255,255,.15); border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 9px; color: rgba(255,255,255,.25); gap: 4px; }
.admin-sidebar-logo-placeholder .material-icons-round { font-size: 12px; }
.admin-nav { flex: 1; padding: 16px 10px; }
.admin-nav-section { margin-bottom: 20px; }
.admin-nav-label { font-size: 9.5px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.2); padding: 0 10px; margin-bottom: 6px; display: block; }
.admin-nav a {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 10px; border-radius: var(--r);
  font-size: 13px; color: rgba(255,255,255,.5); font-weight: 400;
  text-decoration: none; transition: background .15s, color .15s; margin-bottom: 1px;
}
.admin-nav a .material-icons-round { font-size: 17px; }
.admin-nav a:hover { background: rgba(255,255,255,.06); color: rgba(255,255,255,.9); }
.admin-nav a.active { background: rgba(59,130,246,.12); color: #93c5fd; }
.admin-nav-sep { height: 1px; background: rgba(255,255,255,.06); margin: 12px 0; }
.admin-footer-nav { padding: 16px 10px; border-top: 1px solid rgba(255,255,255,.06); }
.admin-footer-nav a { display: flex; align-items: center; gap: 9px; padding: 9px 10px; border-radius: var(--r); font-size: 12.5px; color: rgba(255,255,255,.3); text-decoration: none; transition: color .15s; }
.admin-footer-nav a:hover { color: rgba(255,255,255,.7); }
.admin-footer-nav a .material-icons-round { font-size: 16px; }
.admin-main { margin-left: 240px; min-height: 100vh; display: flex; flex-direction: column; }
.admin-topbar {
  background: var(--white); border-bottom: 1px solid var(--line);
  padding: 0 32px; height: 56px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 50;
}
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-3); }
.breadcrumb a { color: var(--text-3); text-decoration: none; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .current { color: var(--navy); font-weight: 500; }
.admin-user { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--text-2); }
.admin-user-avatar { width: 30px; height: 30px; background: var(--blue-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 600; color: var(--blue); }
.admin-content { flex: 1; padding: 32px; max-width: 1400px; }
.page-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; gap: 16px; flex-wrap: wrap; }
.page-title { font-size: 24px; font-family: 'Cormorant Garamond', serif; color: var(--navy); font-weight: 400; }
.page-actions { display: flex; gap: 8px; align-items: center; }

/* Stats cards */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-bottom: 28px; }
.stat-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px; box-shadow: var(--shadow); display: flex; align-items: flex-start; justify-content: space-between; }
.stat-card-left {}
.stat-card-n { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 300; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.stat-card-l { font-size: 11px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; color: var(--text-3); }
.stat-card-icon { width: 36px; height: 36px; background: var(--blue-pale); border-radius: var(--r); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stat-card-icon .material-icons-round { font-size: 18px; color: var(--blue); }

/* Data table */
.data-table { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.data-table th { background: var(--bg-2); padding: 11px 16px; text-align: left; font-size: 10.5px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; color: var(--text-3); border-bottom: 1px solid var(--line); white-space: nowrap; }
.data-table td { padding: 13px 16px; font-size: 13px; color: var(--text); border-bottom: 1px solid var(--line); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--bg); }
.data-table td a { color: var(--blue); text-decoration: none; }
.data-table td a:hover { text-decoration: underline; }

/* Kanban */
.kanban { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; align-items: flex-start; }
.kanban-col { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.kanban-col-head { padding: 12px 14px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; background: var(--white); }
.kanban-col-title { font-size: 10.5px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; color: var(--text-2); }
.kanban-col-count { font-size: 11px; font-weight: 600; color: var(--text-3); background: var(--bg-2); border: 1px solid var(--line); padding: 1px 7px; border-radius: 999px; }
.kanban-cards { padding: 10px; display: flex; flex-direction: column; gap: 8px; min-height: 60px; }
.kanban-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 12px 14px; cursor: grab; transition: box-shadow .15s, transform .15s; box-shadow: var(--shadow); }
.kanban-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-1px); }
.kanban-card.dragging { opacity: .45; cursor: grabbing; }
.kc-name { font-size: 12.5px; font-weight: 500; color: var(--navy); margin-bottom: 3px; }
.kc-job  { font-size: 11px; color: var(--text-3); }
.kc-date { font-size: 10px; color: var(--text-3); margin-top: 8px; }
.kc-link { display: block; text-decoration: none; color: inherit; }

/* Admin form */
.admin-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow); max-width: 760px; }
.admin-form-section-title { font-size: 10.5px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-3); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Mail editor */
.mail-tabs { display: flex; border-bottom: 1px solid var(--line); background: var(--bg-2); }
.mail-tab { padding: 11px 18px; font-size: 12px; font-weight: 500; color: var(--text-3); cursor: pointer; border-bottom: 2px solid transparent; transition: color .15s; }
.mail-tab.active { color: var(--blue); border-bottom-color: var(--blue); background: var(--white); }

/* Variables helper */
.vars-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.var-chip { font-size: 11px; font-family: monospace; background: var(--bg-2); border: 1px solid var(--line); padding: 3px 9px; border-radius: var(--r); color: var(--text-2); cursor: pointer; transition: background .15s; }
.var-chip:hover { background: var(--blue-pale); color: var(--blue); }

/* Utilities */
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.text-muted  { color: var(--text-3); }
.text-sm     { font-size: 12.5px; }
.text-xs     { font-size: 11px; }
.font-medium { font-weight: 500; }
.w-full  { width: 100%; }
.nowrap  { white-space: nowrap; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--line-mid); border-radius: 999px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .kanban { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .wrap { padding: 0 20px; }
  .section { padding: 56px 0; }
  .track-grid, .apply-grid, .track-detail-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .kanban { grid-template-columns: 1fr 1fr; }
  .admin-sidebar { transform: translateX(-100%); }
  .admin-main { margin-left: 0; }
  .job-row { grid-template-columns: 1fr auto; }
  .job-row .tag:first-of-type { display: none; }
}
