/* ============================================================
   JOBSMARTIC — Design System v2
   Aesthetic: Bold East-African Editorial × Terminal Precision
   Fonts: Clash Display + Satoshi + JetBrains Mono
   Palette: Deep forest · Burnished gold · Warm cream · Ink
   ============================================================ */

@import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&f[]=satoshi@300,400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500&display=swap');

/* ── TOKENS ── */
:root {
  --forest:      #183728;
  --forest-mid:  #245038;
  --forest-lite: rgba(24,55,40,.08);
  --forest-glow: rgba(24,55,40,.18);
  --gold:        #D4A843;
  --gold-warm:   #E8C068;
  --gold-pale:   rgba(212,168,67,.12);
  --rust:        #C24B22;
  --cream:       #F6F1E8;
  --paper:       #FDFAF4;
  --ink:         #0E0E0C;
  --ink-70:      rgba(14,14,12,.7);
  --ink-40:      rgba(14,14,12,.4);
  --ink-10:      rgba(14,14,12,.1);
  --muted:       #6E6A5E;
  --border:      #E0DAD0;
  --border-mid:  #CCC6BA;
  --white:       #ffffff;
  --ok:          #2B7A42;
  --ok-pale:     rgba(43,122,66,.1);

  --ff-display:  'Clash Display', sans-serif;
  --ff-body:     'Satoshi', sans-serif;
  --ff-mono:     'JetBrains Mono', monospace;

  --r-xs: 2px;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-xl: 22px;
  --r-full: 999px;

  --sh-sm: 0 1px 3px rgba(14,14,12,.06), 0 2px 10px rgba(14,14,12,.04);
  --sh-md: 0 2px 8px rgba(14,14,12,.07), 0 8px 28px rgba(14,14,12,.06);
  --sh-lg: 0 4px 18px rgba(14,14,12,.09), 0 18px 54px rgba(14,14,12,.07);
  --sh-xl: 0 8px 32px rgba(14,14,12,.12), 0 32px 72px rgba(14,14,12,.1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }
ul, ol { list-style: none; }

/* ── GRAIN OVERLAY ── */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  opacity: .28;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
}

/* ── TYPOGRAPHY ── */
.t-hero    { font-family: var(--ff-display); font-size: clamp(3.8rem,9.5vw,10rem); font-weight: 700; line-height: .87; letter-spacing: -.04em; }
.t-display { font-family: var(--ff-display); font-size: clamp(2.4rem,5vw,5.2rem); font-weight: 700; line-height: .9;  letter-spacing: -.035em; }
.t-title   { font-family: var(--ff-display); font-size: clamp(1.6rem,3vw,3rem);   font-weight: 700; line-height: 1;   letter-spacing: -.03em; }
.t-h2      { font-family: var(--ff-display); font-size: clamp(1.3rem,2vw,2rem);   font-weight: 600; line-height: 1.1; letter-spacing: -.025em; }
.t-h3      { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 600; line-height: 1.2; letter-spacing: -.02em; }
.t-lead    { font-family: var(--ff-body); font-size: clamp(.95rem,1.3vw,1.1rem); font-weight: 300; line-height: 1.8; color: var(--muted); }
.t-body    { font-family: var(--ff-body); font-size: .9375rem; line-height: 1.72; }
.t-sm      { font-family: var(--ff-body); font-size: .8125rem; }
.t-mono    { font-family: var(--ff-mono); font-size: .7rem; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); font-weight: 300; }
.t-num     { font-family: var(--ff-display); font-size: clamp(2rem,4.5vw,4rem); font-weight: 700; letter-spacing: -.06em; line-height: 1; }

/* ── LAYOUT ── */
.container       { max-width: 1260px; margin: 0 auto; padding: 0 40px; }
.container-sm    { max-width: 920px;  margin: 0 auto; padding: 0 40px; }
.container-wide  { max-width: 1440px; margin: 0 auto; padding: 0 56px; }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 66px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.site-nav.stuck {
  background: rgba(246,241,232,.93);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--ff-display); font-weight: 700;
  font-size: 1.3rem; letter-spacing: -.05em; color: var(--forest);
  user-select: none;
}
.nav-logo-badge {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--forest);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-badge svg { width: 14px; height: 14px; fill: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: .8rem; font-weight: 500; color: var(--ink); opacity: .55; transition: opacity .15s; }
.nav-links a:hover, .nav-links a.is-active { opacity: 1; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.ham { display: none; background: none; border: none; cursor: pointer; padding: 4px; flex-direction: column; gap: 5px; }
.ham span { display: block; width: 20px; height: 1.5px; background: var(--ink); border-radius: 2px; transition: all .2s; }
.mob-menu {
  display: none; position: fixed; inset: 0; z-index: 490;
  background: var(--cream); padding: 80px 40px 40px;
  flex-direction: column; gap: 4px;
}
.mob-menu.open { display: flex; }
.mob-menu a { font-family: var(--ff-display); font-size: 1.8rem; font-weight: 700; letter-spacing: -.04em; padding: 12px 0; border-bottom: 1px solid var(--border); color: var(--ink); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 22px; border-radius: var(--r-sm);
  font-family: var(--ff-display); font-weight: 600; font-size: .82rem; letter-spacing: -.01em;
  cursor: pointer; border: 1.5px solid transparent;
  transition: all .16s ease; white-space: nowrap; line-height: 1;
}
.btn-primary { background: var(--forest); color: var(--paper); border-color: var(--forest); }
.btn-primary:hover { background: var(--forest-mid); border-color: var(--forest-mid); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(24,55,40,.28); }
.btn-gold { background: var(--gold); color: var(--forest); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-warm); border-color: var(--gold-warm); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,168,67,.35); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--border-mid); }
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.btn-ghost { background: transparent; color: var(--muted); border-color: transparent; }
.btn-ghost:hover { color: var(--ink); }
.btn-inv { background: rgba(255,255,255,.08); color: var(--paper); border-color: rgba(255,255,255,.15); }
.btn-inv:hover { background: rgba(255,255,255,.15); }
.btn-lg { padding: 14px 30px; font-size: .9rem; }
.btn-sm { padding: 7px 14px; font-size: .74rem; }
.btn-xs { padding: 5px 11px; font-size: .68rem; }
.w100 { width: 100%; }

/* ── FORM ── */
.field { display: flex; flex-direction: column; gap: 5px; }
.field label { font-family: var(--ff-mono); font-size: .65rem; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); }
.inp {
  padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--r-md);
  background: var(--white); font-family: var(--ff-body); font-size: .9rem; color: var(--ink);
  outline: none; transition: border-color .15s, box-shadow .15s; width: 100%;
}
.inp:focus { border-color: var(--forest); box-shadow: 0 0 0 3px var(--forest-lite); }
.inp::placeholder { color: var(--muted); opacity: .5; }
.inp-icon { position: relative; }
.inp-icon .inp { padding-left: 42px; }
.inp-icon .icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: .95rem; pointer-events: none; }
textarea.inp { resize: vertical; line-height: 1.6; min-height: 100px; }
select.inp { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%236E6A5E' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

/* ── TAGS ── */
.tag { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: var(--r-xs); font-family: var(--ff-mono); font-size: .63rem; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.tag-forest  { background: var(--forest-lite); color: var(--forest); }
.tag-gold    { background: var(--gold-pale); color: #7A5010; }
.tag-rust    { background: rgba(194,75,34,.1); color: var(--rust); }
.tag-neutral { background: var(--ink-10); color: var(--muted); }
.tag-ok      { background: var(--ok-pale); color: var(--ok); }
.tag-live    { background: var(--ok-pale); color: var(--ok); display: inline-flex; align-items: center; gap: 5px; }
.tag-live::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 2.5px rgba(43,122,66,.2); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.4} }

/* ── CARDS ── */
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); transition: box-shadow .18s, transform .18s, border-color .18s; }
.card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); border-color: var(--border-mid); }

/* Job card with gold left accent */
.job-card { padding: 22px 24px; display: flex; flex-direction: column; gap: 14px; position: relative; overflow: hidden; }
.job-card::before { content: ''; position: absolute; left:0;top:0;bottom:0; width: 3px; background: transparent; transition: background .18s; border-radius: 3px 0 0 3px; }
.job-card:hover::before { background: var(--gold); }

/* ── SEARCH BAR ── */
.search-bar {
  display: grid; grid-template-columns: 1fr 1px 1fr auto;
  background: var(--white); border: 1.5px solid var(--border-mid);
  border-radius: var(--r-md); box-shadow: var(--sh-md); overflow: hidden;
}
.search-bar .sf { display: flex; align-items: center; gap: 10px; padding: 0 18px; }
.search-bar .sf .inp { border: none; padding: 18px 0; font-size: .95rem; background: transparent; box-shadow: none; }
.search-bar .sf .inp:focus { border: none; box-shadow: none; }
.search-bar .sdiv { background: var(--border); }
.search-bar .btn  { border-radius: 0 6px 6px 0; margin: 5px 5px 5px 0; }

/* ── RANGE SLIDER ── */
input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 3px; background: var(--border); border-radius: 2px; cursor: pointer; outline: none; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--forest); border: 2.5px solid var(--white); box-shadow: 0 0 0 1.5px var(--forest); cursor: pointer; }

/* ── SWITCH ── */
.sw { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.sw input { opacity: 0; width: 0; height: 0; }
.sw-track { position: absolute; inset: 0; background: var(--border); border-radius: 12px; cursor: pointer; transition: background .2s; }
.sw-track::before { content: ''; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px; background: var(--white); border-radius: 50%; transition: transform .2s; box-shadow: 0 1px 4px rgba(0,0,0,.15); }
.sw input:checked + .sw-track { background: var(--ok); }
.sw input:checked + .sw-track::before { transform: translateX(20px); }

/* ── MODAL ── */
.overlay { position: fixed; inset: 0; z-index: 800; background: rgba(14,14,12,.6); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity .22s; }
.overlay.open { opacity: 1; pointer-events: all; }
.modal-box { background: var(--paper); border-radius: var(--r-xl); padding: 44px; max-width: 540px; width: 100%; box-shadow: var(--sh-xl); transform: translateY(16px) scale(.97); transition: transform .26s ease; }
.overlay.open .modal-box { transform: none; }
.modal-title { font-family: var(--ff-display); font-size: 1.6rem; font-weight: 700; letter-spacing: -.04em; color: var(--forest); margin-bottom: 4px; }

/* ── APPLY STEPPER ── */
.stepper { display: flex; align-items: center; margin-bottom: 28px; }
.step-i { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 5px; position: relative; }
.step-i::after { content: ''; position: absolute; top: 13px; left: 50%; width: 100%; height: 1.5px; background: var(--border); }
.step-i:last-child::after { display: none; }
.step-dot { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--border); color: var(--muted); font-family: var(--ff-mono); font-size: .62rem; z-index: 1; transition: all .2s; }
.step-i.active .step-dot { background: var(--forest); color: var(--white); }
.step-i.done .step-dot   { background: var(--gold); color: var(--forest); }
.step-lbl { font-family: var(--ff-mono); font-size: .58rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); }

/* ── HERO ── */
.hero-wrap { min-height: 100vh; background: var(--cream); position: relative; overflow: hidden; display: flex; flex-direction: column; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(var(--ink-10) 1px,transparent 1px), linear-gradient(90deg,var(--ink-10) 1px,transparent 1px); background-size: 68px 68px; opacity: .15; }
.hero-radial { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 55% at 68% 45%, rgba(24,55,40,.05) 0%, transparent 65%), radial-gradient(ellipse 40% 35% at 12% 85%, rgba(212,168,67,.07) 0%, transparent 55%); }
.hero-content { position: relative; z-index: 1; flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 148px 56px 80px; max-width: 1440px; margin: 0 auto; width: 100%; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 28px; }
.hero-rule { width: 36px; height: 1.5px; background: var(--gold); }

/* ── TICKER ── */
.ticker-bar { background: var(--forest); border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); overflow: hidden; position: relative; padding: 13px 0; }
.ticker-lbl { position: absolute; left: 0; top: 0; bottom: 0; z-index: 2; display: flex; align-items: center; background: var(--gold); padding: 0 20px; font-family: var(--ff-mono); font-size: .62rem; font-weight: 500; color: var(--forest); letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.ticker-track { display: flex; animation: jticker 32s linear infinite; padding-left: 128px; will-change: transform; }
.ticker-item { white-space: nowrap; padding: 0 38px; font-family: var(--ff-mono); font-size: .72rem; color: rgba(246,241,232,.55); display: flex; align-items: center; gap: 10px; }
.ticker-item::after { content: '//'; opacity: .22; }
@keyframes jticker { 0%{transform:translateX(0)}100%{transform:translateX(-50%)} }

/* ── SECTIONS ── */
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 128px 0; }

/* ── STAT CARDS ── */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 32px; }
.stat-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px; }
.stat-label { font-family: var(--ff-mono); font-size: .62rem; text-transform: uppercase; letter-spacing: .09em; color: var(--muted); display: block; margin-bottom: 8px; }
.stat-val   { font-family: var(--ff-display); font-size: 2.2rem; font-weight: 700; letter-spacing: -.06em; color: var(--forest); display: block; line-height: 1; margin-bottom: 6px; }
.stat-note  { font-size: .74rem; color: var(--muted); display: block; font-family: var(--ff-mono); }

/* ── HOW-IT-WORKS ── */
.hiw-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; gap: 1px; background: var(--border); }
.hiw-step { background: var(--white); padding: 44px 36px; display: flex; flex-direction: column; gap: 16px; position: relative; }
.hiw-num { font-family: var(--ff-display); font-size: 5.5rem; font-weight: 700; color: var(--ink-10); line-height: 1; letter-spacing: -.08em; position: absolute; top: 18px; right: 22px; user-select: none; }
.hiw-icon { width: 50px; height: 50px; border-radius: var(--r-md); background: var(--forest); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--gold); flex-shrink: 0; }
.hiw-title { font-family: var(--ff-display); font-size: 1.05rem; font-weight: 600; color: var(--ink); }
.hiw-desc  { font-size: .875rem; color: var(--muted); line-height: 1.72; }

/* ── CATEGORIES ── */
.cat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.cat-card { padding: 24px 20px; display: flex; flex-direction: column; gap: 10px; text-decoration: none; cursor: pointer; }
.cat-card:hover { background: var(--forest); }
.cat-card:hover .cat-name,.cat-card:hover .cat-n { color: var(--white); }
.cat-card:hover .cat-ico { background: rgba(255,255,255,.1); }
.cat-ico { width: 42px; height: 42px; border-radius: var(--r-md); background: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: background .18s; }
.cat-name { font-family: var(--ff-display); font-size: .9rem; font-weight: 600; color: var(--ink); transition: color .18s; }
.cat-n    { font-family: var(--ff-mono); font-size: .63rem; color: var(--muted); transition: color .18s; }

/* ── TESTIMONIAL ── */
.quote-card { padding: 30px; display: flex; flex-direction: column; gap: 18px; }
.quote-stars { color: var(--gold); letter-spacing: 2px; font-size: .85rem; }
.quote-text { font-size: .9375rem; line-height: 1.78; color: var(--ink); font-style: italic; font-weight: 300; opacity: .88; }
.avatar { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--ff-display); font-weight: 700; font-size: .72rem; background: var(--gold); color: var(--forest); flex-shrink: 0; }

/* ── EMPLOYER STRIP ── */
.emp-strip { background: var(--ink); border-radius: var(--r-xl); padding: 60px 64px; display: flex; align-items: center; justify-content: space-between; gap: 44px; position: relative; overflow: hidden; }
.emp-strip::before { content: ''; position: absolute; right: -80px; top: -80px; width: 360px; height: 360px; border-radius: 50%; border: 65px solid rgba(212,168,67,.06); }
.emp-strip::after { content: ''; position: absolute; left: -60px; bottom: -80px; width: 280px; height: 280px; border-radius: 50%; border: 45px solid rgba(212,168,67,.04); }

/* ── COMPARISON TABLE ── */
.comp-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); border-radius: var(--r-lg); overflow: hidden; }
.comp-col { background: var(--white); padding: 36px; }
.comp-col.dark { background: var(--forest); }
.comp-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: .875rem; }

/* ── PRICING ── */
.plan-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; align-items: start; }
.plan-card { padding: 36px; border: 1px solid var(--border); border-radius: var(--r-xl); background: var(--white); display: flex; flex-direction: column; position: relative; }
.plan-card.featured { border-color: var(--forest); border-width: 2px; }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--forest); color: var(--paper); padding: 3px 16px; border-radius: var(--r-full); font-family: var(--ff-mono); font-size: .6rem; text-transform: uppercase; letter-spacing: .09em; white-space: nowrap; }
.plan-price { font-family: var(--ff-display); font-size: 3rem; font-weight: 700; letter-spacing: -.07em; color: var(--forest); line-height: 1; }
.plan-feat { display: flex; align-items: center; gap: 10px; font-size: .85rem; color: var(--muted); margin-bottom: 10px; }
.plan-feat::before { content: '✓'; color: var(--ok); font-weight: 700; flex-shrink: 0; }
.plan-feat.no { opacity: .38; }
.plan-feat.no::before { content: '×'; color: var(--muted); }

/* ── DASHBOARD ── */
.dash-wrap { display: grid; grid-template-columns: 252px 1fr; min-height: calc(100vh - 66px); }
.dash-side { background: var(--forest); padding: 28px 0; display: flex; flex-direction: column; position: sticky; top: 66px; height: calc(100vh - 66px); overflow-y: auto; }
.dash-main { background: var(--paper); padding: 38px 46px; overflow-y: auto; }
.dash-sec { padding: 16px 20px 6px; font-family: var(--ff-mono); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(246,241,232,.24); }
.dash-item { display: flex; align-items: center; gap: 11px; padding: 10px 20px; font-size: .8rem; font-weight: 500; color: rgba(246,241,232,.48); text-decoration: none; cursor: pointer; border-left: 2.5px solid transparent; transition: all .12s; }
.dash-item:hover,.dash-item.active { color: var(--paper); background: rgba(255,255,255,.06); border-left-color: var(--gold); }
.dash-ico { font-size: .9rem; width: 18px; text-align: center; flex-shrink: 0; }
.dash-badge { margin-left: auto; background: var(--gold); color: var(--forest); border-radius: 8px; padding: 1px 7px; font-family: var(--ff-mono); font-size: .58rem; font-weight: 500; }

/* ── CO LOGO ── */
.co-logo { width: 44px; height: 44px; border-radius: var(--r-md); background: var(--cream); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: var(--ff-display); font-weight: 700; font-size: .8rem; color: var(--forest); flex-shrink: 0; }

/* ── TABLE ── */
.tbl-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: .85rem; }
thead th { padding: 10px 14px; text-align: left; font-family: var(--ff-mono); font-size: .6rem; text-transform: uppercase; letter-spacing: .09em; color: var(--muted); border-bottom: 1.5px solid var(--border); background: var(--cream); }
tbody td { padding: 14px; border-bottom: 1px solid var(--border); vertical-align: middle; }
tbody tr:hover { background: rgba(24,55,40,.02); }
tbody tr:last-child td { border-bottom: none; }

/* ── MATCH BAR ── */
.match-bar { display: flex; align-items: center; gap: 8px; }
.match-trk { flex: 1; height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.match-fill { height: 100%; border-radius: 2px; background: var(--gold); }

/* ── PROGRESS ── */
.progress { height: 5px; background: var(--border); border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 3px; background: var(--gold); transition: width .4s; }

/* ── AUTH PAGES — unique non-WP feel ── */
.auth-shell { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.auth-form-col { display: flex; flex-direction: column; justify-content: center; padding: 72px 80px; overflow-y: auto; }
.auth-visual-col { position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; padding: 60px 56px; }
.auth-visual-col.dark  { background: var(--ink); }
.auth-visual-col.green { background: var(--forest); }

/* Decorative circles */
.auth-visual-col::before { content: ''; position: absolute; right: -80px; top: -80px; width: 340px; height: 340px; border-radius: 50%; border: 60px solid rgba(212,168,67,.07); }
.auth-visual-col::after  { content: ''; position: absolute; left: -60px; bottom: -80px; width: 260px; height: 260px; border-radius: 50%; border: 40px solid rgba(212,168,67,.05); }

/* Role cards */
.role-card { display: flex; align-items: flex-start; gap: 14px; padding: 17px; border: 1.5px solid var(--border); border-radius: var(--r-lg); cursor: pointer; transition: all .15s; margin-bottom: 10px; }
.role-card:hover,.role-card.chosen { border-color: var(--forest); }
.role-card.chosen { background: var(--forest-lite); }
.role-rb { width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid var(--border); flex-shrink: 0; margin-top: 1px; display: flex; align-items: center; justify-content: center; transition: all .15s; }
.role-card.chosen .role-rb { border-color: var(--forest); background: var(--forest); }
.role-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--white); }

/* Notification cards inside visual col */
.notif-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg); padding: 16px 20px; display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }

/* ── FOOTER ── */
.site-footer { background: var(--ink); color: var(--paper); padding: 72px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(246,241,232,.07); }
.footer-logo-txt { font-family: var(--ff-display); font-weight: 700; font-size: 1.35rem; letter-spacing: -.05em; color: var(--paper); display: flex; align-items: center; gap: 9px; margin-bottom: 16px; }
.footer-desc { font-size: .84rem; color: rgba(246,241,232,.38); line-height: 1.75; max-width: 280px; font-weight: 300; }
.footer-col-hd { font-family: var(--ff-mono); font-size: .59rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(246,241,232,.26); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: .84rem; color: rgba(246,241,232,.48); transition: color .12s; }
.footer-links a:hover { color: var(--gold); }
.footer-btm { padding-top: 28px; display: flex; align-items: center; justify-content: space-between; font-family: var(--ff-mono); font-size: .62rem; color: rgba(246,241,232,.2); flex-wrap: wrap; gap: 8px; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .52s ease, transform .52s ease; }
.reveal.vis { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .07s; }
.reveal.d2 { transition-delay: .14s; }
.reveal.d3 { transition-delay: .21s; }
.reveal.d4 { transition-delay: .28s; }
.reveal.d5 { transition-delay: .35s; }
.reveal.d6 { transition-delay: .42s; }

/* ── ENTRANCE ANIMATIONS ── */
@keyframes slideUp { from{opacity:0;transform:translateY(26px)}to{opacity:1;transform:none} }
.a1{animation:slideUp .55s ease both;animation-delay:.06s}
.a2{animation:slideUp .55s ease both;animation-delay:.14s}
.a3{animation:slideUp .55s ease both;animation-delay:.22s}
.a4{animation:slideUp .55s ease both;animation-delay:.30s}
.a5{animation:slideUp .55s ease both;animation-delay:.38s}

/* ── TOAST ── */
.jm-toast { position: fixed; bottom: 24px; right: 24px; z-index: 9999; background: var(--forest); color: var(--paper); padding: 13px 22px; border-radius: var(--r-md); font-family: var(--ff-mono); font-size: .72rem; letter-spacing: .03em; box-shadow: var(--sh-lg); transform: translateY(70px); opacity: 0; transition: transform .28s ease, opacity .28s; max-width: 320px; line-height: 1.5; }
.jm-toast.show { transform: none; opacity: 1; }
.jm-toast.err { background: var(--rust); }

/* ── UTILS ── */
.flex    { display: flex; }
.f-col   { flex-direction: column; }
.ac      { align-items: center; }
.as      { align-items: flex-start; }
.jb      { justify-content: space-between; }
.jc      { justify-content: center; }
.g1{gap:4px}.g2{gap:8px}.g3{gap:12px}.g4{gap:16px}.g6{gap:24px}.g8{gap:32px}
.mt1{margin-top:4px}.mt2{margin-top:8px}.mt3{margin-top:12px}.mt4{margin-top:16px}.mt6{margin-top:24px}.mt8{margin-top:32px}
.mb2{margin-bottom:8px}.mb3{margin-bottom:12px}.mb4{margin-bottom:16px}.mb6{margin-bottom:24px}.mb8{margin-bottom:32px}
.pt4{padding-top:16px}.pt6{padding-top:24px}
.tc { text-align: center; }
.c-muted { color: var(--muted); }
.c-forest { color: var(--forest); }
.c-gold   { color: var(--gold); }
.c-paper  { color: var(--paper); }
.gr2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.gr3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.mn0 { min-width: 0; }
.sh0 { flex-shrink: 0; }
.w100 { width: 100%; }
.bold { font-weight: 600; }
.bb { border-bottom: 1px solid var(--border); }
.ib { border-bottom: 1px solid rgba(246,241,232,.08); }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .cat-grid { grid-template-columns: repeat(3,1fr); }
  .stats-row { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:900px) {
  .nav-links,.nav-actions { display: none; }
  .ham { display: flex; }
  .hiw-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .emp-strip { flex-direction: column; }
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .dash-wrap { grid-template-columns: 1fr; }
  .dash-side { display: none; }
  .plan-grid { grid-template-columns: 1fr; }
  .comp-wrap { grid-template-columns: 1fr; }
  .auth-shell { grid-template-columns: 1fr; }
  .auth-visual-col { display: none; }
  .auth-form-col { padding: 80px 28px 48px; }
}
@media(max-width:640px) {
  .container,.container-wide { padding: 0 20px; }
  .hero-content { padding: 112px 20px 56px; }
  .search-bar { grid-template-columns: 1fr; }
  .search-bar .sdiv { width: 100%; height: 1px; }
  .gr2,.gr3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .dash-main { padding: 24px 20px; }
  .modal-box { padding: 28px 24px; }
}
