:root {
  /* ASB-inspired palette: navy + bright orange + clean cream */
  --paper:        #F7F4ED;
  --paper-2:      #EFEAD9;
  --paper-3:      #E5DDC4;
  --surface:      #FFFFFF;
  --surface-2:    #FCFAF3;

  --ink:          #2A3656;   /* navy primary */
  --ink-2:        #3A4970;
  --ink-3:        #5C6987;
  --ink-muted:    #8B95AC;
  --ink-soft:     #BBC2D1;

  --line:         #DDD5BD;
  --line-soft:    #EAE3CD;
  --line-faint:   #F2EBD6;

  /* "gold" tokens repurposed for ASB orange (kept names so CSS just works) */
  --gold:         #F58220;
  --gold-deep:    #D86A0A;
  --gold-bright:  #FF9D44;
  --gold-soft:    #FFD3A5;
  --gold-mist:    #FFEBD4;

  /* "teal" tokens repurposed for navy-deep accents */
  --teal:         #1F2A47;
  --teal-deep:    #161E36;
  --teal-bright:  #4357A0;
  --teal-soft:    #C5CCDF;
  --teal-mist:    #ECEFF8;

  --live:         #4F8B57;
  --live-soft:    #DCEAD9;
  --urgent:       #B2354F;
  --urgent-soft:  #F5DEE2;

  --coral:        #E07A52;
  --coral-soft:   #FAD8C8;
  --coral-mist:   #FBEDE5;
  --sage:         #6B9168;
  --sage-soft:    #C8DECA;
  --sage-mist:    #E8F1E9;
  --sky:          #4A90BD;
  --sky-soft:     #C2DCEC;
  --sky-mist:     #E2EEF5;
  --plum:         #7E5E9F;
  --plum-soft:    #D8C8E5;
  --plum-mist:    #EFE6F2;
  --rose:         #C85F8E;
  --rose-soft:    #F0C8D9;
  --rose-mist:    #FAEEF2;
  --saffron:      #DD9530;
  --saffron-soft: #F5D8A3;
  --saffron-mist: #FBEFD8;
  --olive:        #95893E;
  --olive-soft:   #DCD5A8;
  --olive-mist:   #F0EDD8;

  /* BD national accents */
  --bd-green:     #006A4E;
  --bd-red:       #F42A41;

  /* ASB brand */
  --asb-navy:     #2A3656;
  --asb-orange:   #F58220;
  --asb-orange-bright: #FF9D44;

  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;
  --font-bn:      'Hind Siliguri', sans-serif;
  --font-bn-display: 'Tiro Bangla', serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --r-sm: 4px; --r-md: 8px; --r-lg: 12px; --r-xl: 20px; --r-2xl: 28px;

  --shadow-1: 0 1px 2px rgba(42,54,86,0.05), 0 0 0 1px rgba(42,54,86,0.05);
  --shadow-2: 0 2px 8px rgba(42,54,86,0.08), 0 0 0 1px rgba(42,54,86,0.05);
  --shadow-3: 0 8px 24px rgba(42,54,86,0.12), 0 0 0 1px rgba(42,54,86,0.05);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-bn), var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.lang-en { font-family: var(--font-body), var(--font-bn); }
body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: 0.4;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0.04 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}
a { color: inherit; text-decoration: none; transition: color 0.15s; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; outline: none; }
img { max-width: 100%; }
ul { list-style: none; }
.t-bn, .t-en { display: inline; }
body.lang-bn .t-en { display: none; }
body.lang-en .t-bn { display: none; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }
@media (max-width: 600px) { .container { padding: 0 16px; } }

#root { min-height: 100vh; }
/* ============================================================
   NOBBYO Jobs · Bold Editorial Homepage
   Bangladesh-first, color-rich, modern editorial moves
   ============================================================ */

/* ---------- top utility bar ---------- */
.top-bar {
  background: var(--ink);
  color: var(--paper);
  font-size: 12.5px;
  position: relative;
  z-index: 50;
}
.top-bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 38px; gap: 18px;
}
.top-marquee {
  display: flex; align-items: center; gap: 14px;
  flex: 1; min-width: 0; overflow: hidden;
  font-family: var(--font-bn);
}
.top-marquee-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 10px;
  background: rgba(255,157,68,0.14);
  color: var(--gold-bright);
  border-radius: 100px;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  flex-shrink: 0;
}
.top-marquee-pill::before {
  content: ''; width: 6px; height: 6px;
  background: var(--gold-bright); border-radius: 50%;
  animation: pulse-gold 1.6s infinite;
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,157,68,0.6); }
  70% { box-shadow: 0 0 0 6px rgba(255,157,68,0); }
}
.top-ticker {
  flex: 1; min-width: 0; overflow: hidden; height: 22px; position: relative;
}
.top-ticker-track {
  display: flex; flex-direction: column;
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}
.top-ticker-row {
  height: 22px; display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: rgba(247,244,237,0.85);
  white-space: nowrap;
}
.top-ticker-who { color: var(--paper); font-weight: 600; }
.top-ticker-co { color: var(--gold-bright); font-weight: 600; }
.top-ticker-dot { width: 6px; height: 6px; border-radius: 50%; }
.dot-sage { background: var(--sage); }
.dot-live { background: var(--live); }
.dot-sky { background: var(--sky-soft); }
.dot-coral { background: var(--coral-soft); }
.dot-gold { background: var(--gold-bright); }
.dot-plum { background: var(--plum-soft); }
.dot-rose { background: var(--rose-soft); }

.top-right { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.lang-pill {
  display: inline-flex; background: rgba(255,255,255,0.07); border-radius: 100px; padding: 2px;
  font-size: 11px; font-weight: 700;
}
.lang-pill button {
  padding: 4px 11px; border-radius: 100px;
  color: rgba(247,244,237,0.55); letter-spacing: 0.04em;
  transition: all 0.2s;
}
.lang-pill button.active { background: var(--gold-bright); color: var(--ink); }

.top-link {
  color: rgba(247,244,237,0.7); display: inline-flex; align-items: center; gap: 6px;
}
.top-link:hover { color: var(--paper); }
.top-link svg { width: 12px; height: 12px; }

/* ---------- header ---------- */
.header {
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(247,244,237,0.94);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px; gap: 24px;
}
.brand {
  display: flex; align-items: center; flex-shrink: 0; cursor: pointer;
}
.brand-gear { flex-shrink: 0; transition: transform 0.6s cubic-bezier(.5,.1,.3,1); }
.brand:hover .brand-gear { transform: rotate(60deg); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--asb-navy);
  line-height: 0.95;
  display: flex; align-items: baseline; gap: 1px;
}
.footer .brand-wordmark { color: var(--paper); }
.brand-wordmark .brand-dot {
  color: var(--asb-orange);
  font-weight: 900;
  margin: 0 2px;
  font-size: 1.1em;
  line-height: 0;
}
.brand-wordmark .brand-jobs {
  color: var(--asb-orange);
  letter-spacing: -0.03em;
}
.brand-tagline {
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  margin-top: 4px;
  display: inline-flex; align-items: center; gap: 5px;
  text-transform: uppercase;
}
.footer .brand-tagline { color: rgba(247,244,237,0.6); }
.brand-tagline .brand-bn {
  font-family: var(--font-bn);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}
.brand-tagline .brand-divider { opacity: 0.4; }
.brand-tagline .brand-loc { color: var(--asb-orange); font-weight: 700; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav-item {
  padding: 9px 14px; font-size: 13.5px; font-weight: 500;
  color: var(--ink-2); border-radius: var(--r-md);
  display: inline-flex; align-items: center; gap: 5px;
  transition: all 0.15s;
}
.nav-item:hover { background: var(--paper-2); color: var(--ink); }
.nav-item.ai {
  background: linear-gradient(135deg, var(--gold-mist), var(--gold-soft));
  color: var(--gold-deep); font-weight: 700;
  border: 1px solid rgba(245,130,32,0.35);
  position: relative; overflow: hidden;
}
.nav-item.ai svg { width: 13px; height: 13px; }
.nav-item.ai::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  transform: translateX(-100%);
  animation: shine 3.5s infinite;
}
@keyframes shine { 0% { transform: translateX(-100%);} 60%, 100% { transform: translateX(200%);} }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 18px; border-radius: var(--r-md);
  font-weight: 600; font-size: 13.5px;
  transition: all 0.15s; white-space: nowrap;
}
.btn svg { width: 13px; height: 13px; }
.btn-ghost { color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { background: var(--surface); border-color: var(--ink-muted); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: var(--ink-2); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-bright); }
.btn-icon-circle {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--surface);
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
}
.btn-icon-circle:hover { border-color: var(--ink-muted); }
.btn-icon-circle svg { width: 14px; height: 14px; color: var(--ink-2); }
.btn-icon-circle .badge-dot {
  position: absolute; top: 4px; right: 4px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--urgent); border: 2px solid var(--paper);
}

@media (max-width: 1100px) { .nav { display: none; } }

/* ============================================================
   HERO — bold editorial
   ============================================================ */
.hero {
  position: relative; padding: 64px 0 48px; overflow: hidden;
}

/* Editorial number tags floating */
.hero-glyph-strip {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 22px;
  font-size: 11px; color: var(--ink-3);
  font-family: var(--font-mono); font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.hero-glyph-strip .dot {
  width: 4px; height: 4px; background: var(--gold-deep);
  border-radius: 50%;
}
.hero-glyph-strip .live-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 10px; border: 1px solid var(--live);
  border-radius: 100px; color: var(--live); font-weight: 700;
}
.hero-glyph-strip .live-tag::before {
  content: ''; width: 6px; height: 6px; background: var(--live);
  border-radius: 50%; animation: live-blink 1.4s infinite;
}
@keyframes live-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: var(--font-bn);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 18px;
  max-width: 1100px;
}
body.lang-en .hero-title {
  font-family: var(--font-display);
  letter-spacing: -0.045em;
  font-size: clamp(52px, 7.6vw, 100px);
}
.hero-title .ed {
  font-family: var(--font-bn-display);
  font-style: italic; font-weight: 500;
  color: var(--gold-deep);
  position: relative;
}
body.lang-en .hero-title .ed {
  font-family: var(--font-display);
  font-style: italic; font-weight: 500;
}
.hero-title .ed::after {
  content: ''; position: absolute;
  bottom: 6px; left: 0; right: 0; height: 8px;
  background: var(--gold-bright);
  opacity: 0.35;
  z-index: -1;
  border-radius: 4px;
}
.hero-title .rotator {
  display: inline-block;
  position: relative;
  background: var(--ink); color: var(--paper);
  padding: 0.05em 0.3em 0.1em;
  border-radius: 0.18em;
  white-space: nowrap;
  overflow: hidden;
  vertical-align: bottom;
  height: 1em;
  line-height: 1;
}
.hero-title .rotator-inner {
  display: block;
  animation: rotate-up 9s infinite cubic-bezier(.7,.05,.3,1);
}
.hero-title .rotator-inner span {
  display: block; height: 1em; line-height: 1;
}
@keyframes rotate-up {
  0%, 22%   { transform: translateY(0); }
  25%, 47%  { transform: translateY(-1em); }
  50%, 72%  { transform: translateY(-2em); }
  75%, 97%  { transform: translateY(-3em); }
  100%      { transform: translateY(0); }
}

.hero-sub {
  font-size: 18px; color: var(--ink-3);
  max-width: 640px; line-height: 1.5;
  margin-bottom: 36px;
}
.hero-sub strong { color: var(--ink); font-weight: 700; }

/* ===== command bar ===== */
.cmd-bar-wrap { position: relative; z-index: 5; max-width: 980px; margin-bottom: 22px;}
.cmd-bar {
  background: var(--surface);
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  padding: 8px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  align-items: stretch;
  gap: 0;
  box-shadow: 0 12px 40px -12px rgba(42,54,86,0.2), 0 0 0 4px var(--paper);
  transition: all 0.2s;
}
.cmd-bar:focus-within {
  box-shadow: 0 16px 48px -12px rgba(42,54,86,0.25), 0 0 0 4px var(--gold-mist);
}
.cmd-field {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; min-width: 0; position: relative;
}
.cmd-field + .cmd-field { border-left: 1px solid var(--line-soft); }
.cmd-field svg { width: 17px; height: 17px; color: var(--ink-muted); flex-shrink: 0; }
.cmd-field-label {
  font-size: 10.5px; font-weight: 700;
  color: var(--ink-muted); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1px;
}
.cmd-field-input {
  border: none; background: transparent; padding: 0;
  font-size: 15px; color: var(--ink); width: 100%; font-weight: 500;
  font-family: inherit;
}
.cmd-field-input::placeholder { color: var(--ink-muted); font-weight: 400; }
.cmd-field-col { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.cmd-btn {
  background: var(--ink); color: var(--paper);
  padding: 0 26px; border-radius: 12px;
  font-weight: 700; font-size: 14.5px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.15s; flex-shrink: 0;
}
.cmd-btn:hover { background: var(--gold-deep); }
.cmd-btn svg { width: 14px; height: 14px; }
.cmd-mic, .cmd-ai {
  width: 36px; height: 36px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  align-self: center; margin-right: 8px;
  background: var(--paper-2); color: var(--ink-3);
  flex-shrink: 0; transition: all 0.15s;
}
.cmd-mic:hover { background: var(--coral-mist); color: var(--coral); }
.cmd-ai { background: linear-gradient(135deg, var(--gold-mist), var(--gold-soft)); color: var(--gold-deep); }
.cmd-ai:hover { background: var(--gold); color: var(--ink); }
.cmd-mic svg, .cmd-ai svg { width: 14px; height: 14px; }
.cmd-shortcut {
  font-family: var(--font-mono);
  font-size: 11px; color: var(--ink-muted);
  border: 1px solid var(--line); padding: 2px 6px;
  border-radius: 4px;
  margin-left: auto;
  flex-shrink: 0;
}
.cmd-suggest-row {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  padding: 0 10px;
  margin-bottom: 28px;
  font-size: 13px;
}
.cmd-suggest-label {
  color: var(--ink-muted); font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.cmd-suggest-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 12.5px; font-weight: 500; color: var(--ink-2);
  transition: all 0.15s;
}
.cmd-suggest-pill:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.cmd-suggest-pill .num {
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-muted);
}
.cmd-suggest-pill:hover .num { color: var(--gold-bright); }

/* ===== Hero stats — colorful big numbers ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}
@media (max-width: 760px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
.stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
  position: relative; overflow: hidden;
  transition: all 0.15s;
}
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.stat-card.s-gold::before { background: var(--gold); }
.stat-card.s-coral::before { background: var(--coral); }
.stat-card.s-teal::before { background: var(--teal); }
.stat-card.s-sage::before { background: var(--sage); }

.stat-card-label {
  font-size: 11px; font-weight: 700; color: var(--ink-3);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 6px;
}
.stat-card-num {
  font-family: var(--font-mono);
  font-size: 30px; font-weight: 700;
  letter-spacing: -0.04em; line-height: 1;
  color: var(--ink);
  display: flex; align-items: baseline; gap: 8px;
}
.stat-card.s-gold .stat-card-num { color: var(--gold-deep); }
.stat-card.s-coral .stat-card-num { color: var(--coral); }
.stat-card.s-teal .stat-card-num { color: var(--teal-deep); }
.stat-card.s-sage .stat-card-num { color: var(--sage); }
.stat-card-num .delta {
  font-size: 12px; font-weight: 700; color: var(--live);
}
.stat-card-sub {
  font-size: 11.5px; color: var(--ink-3); margin-top: 4px;
}
.stat-live-dot {
  width: 6px; height: 6px; background: var(--live);
  border-radius: 50%; animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(79,139,87,0.5); }
  70% { box-shadow: 0 0 0 5px rgba(79,139,87,0); }
}

/* ===== Hero divisions chip row ===== */
.divisions-row {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 28px;
}
.divisions-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; color: var(--ink-3);
  letter-spacing: 0.1em; text-transform: uppercase;
  padding-right: 6px;
}
.div-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 100px;
  background: var(--surface); border: 1px solid var(--line);
  font-size: 13px; font-weight: 600; color: var(--ink-2);
  transition: all 0.15s;
}
.div-pill .count {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-muted); font-weight: 600;
}
.div-pill:hover { transform: translateY(-1px); }
.div-gold:hover { background: var(--gold-mist); border-color: var(--gold-soft); color: var(--gold-deep); }
.div-coral:hover { background: var(--coral-mist); border-color: var(--coral-soft); color: var(--coral); }
.div-teal:hover { background: var(--teal-mist); border-color: var(--teal-soft); color: var(--teal-deep); }
.div-sage:hover { background: var(--sage-mist); border-color: var(--sage-soft); color: var(--sage); }
.div-sky:hover { background: var(--sky-mist); border-color: var(--sky-soft); color: var(--sky); }
.div-plum:hover { background: var(--plum-mist); border-color: var(--plum-soft); color: var(--plum); }
.div-saffron:hover { background: var(--saffron-mist); border-color: var(--saffron-soft); color: var(--saffron); }
.div-rose:hover { background: var(--rose-mist); border-color: var(--rose-soft); color: var(--rose); }
.div-ink:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }

/* ===== Hero side floating cards ===== */
.hero-decor {
  position: absolute;
  top: -40px; right: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,130,32,0.18) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.hero-decor-2 {
  position: absolute;
  bottom: 80px; right: 8%;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,122,82,0.10) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

/* ============================================================
   MOMENTS strip — 4 BD-specific featured "moments"
   ============================================================ */
.moments {
  padding: 32px 0 16px;
}
.moments-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 1024px) { .moments-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .moments-grid { grid-template-columns: 1fr; } }

.moment-card {
  position: relative; overflow: hidden;
  border-radius: 18px;
  padding: 22px 22px 26px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 200px;
  cursor: pointer;
  transition: all 0.2s;
}
.moment-card:hover { transform: translateY(-3px); }
.moment-tag {
  display: inline-flex; align-items: center;
  padding: 3px 10px; border-radius: 100px;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  width: fit-content;
}
.moment-title {
  font-family: var(--font-bn); font-size: 22px; font-weight: 700;
  letter-spacing: -0.015em; line-height: 1.15; margin-bottom: 4px;
}
body.lang-en .moment-title { font-family: var(--font-display); }
.moment-sub { font-size: 12.5px; opacity: 0.85; line-height: 1.45; }
.moment-stat {
  margin-top: auto;
  display: flex; align-items: baseline; gap: 8px;
  padding-top: 14px;
}
.moment-stat-num {
  font-family: var(--font-mono); font-size: 30px; font-weight: 700;
  letter-spacing: -0.04em; line-height: 1;
}
.moment-stat-label {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  opacity: 0.7;
}
.moment-arrow {
  position: absolute; top: 22px; right: 22px;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.moment-card:hover .moment-arrow { transform: translate(2px,-2px); background: rgba(255,255,255,0.28); }
.moment-arrow svg { width: 12px; height: 12px; }
.moment-bg-glyph {
  position: absolute; right: -30px; bottom: -40px;
  font-family: var(--font-display);
  font-size: 220px; font-weight: 800;
  opacity: 0.06; line-height: 1;
  pointer-events: none;
}

.moment-teal { background: linear-gradient(135deg, var(--teal-deep), var(--teal)); color: var(--paper); }
.moment-teal .moment-tag { background: rgba(255,255,255,0.18); color: var(--paper); }
.moment-gold { background: linear-gradient(135deg, var(--gold-deep), var(--gold)); color: var(--ink); }
.moment-gold .moment-tag { background: rgba(42,54,86,0.18); color: var(--ink); }
.moment-coral { background: linear-gradient(135deg, var(--coral), #C45F38); color: var(--paper); }
.moment-coral .moment-tag { background: rgba(255,255,255,0.18); color: var(--paper); }
.moment-plum { background: linear-gradient(135deg, var(--plum), #5A4274); color: var(--paper); }
.moment-plum .moment-tag { background: rgba(255,255,255,0.18); color: var(--paper); }

/* ============================================================
   FEATURED JOBS — bold editorial cards
   ============================================================ */
.section { padding: 56px 0; position: relative; }
.section-tight { padding: 32px 0; }

.section-head {
  display: flex; align-items: end; justify-content: space-between;
  margin-bottom: 28px; gap: 28px; flex-wrap: wrap;
}
.section-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 8px;
  display: inline-flex; align-items: center; gap: 8px;
}
.section-eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: var(--font-bn); font-size: 40px; font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.1;
  color: var(--ink);
}
body.lang-en .section-title { font-family: var(--font-display); letter-spacing: -0.035em; }
.section-title .ed {
  font-family: var(--font-bn-display); font-style: italic; font-weight: 500;
  color: var(--gold-deep);
}
body.lang-en .section-title .ed { font-family: var(--font-display); font-style: italic; font-weight: 500; }
.section-sub {
  font-size: 14.5px; color: var(--ink-3);
  margin-top: 6px; max-width: 480px;
}

.section-toggle {
  display: inline-flex; background: var(--surface);
  border: 1px solid var(--line); border-radius: 100px; padding: 3px;
  box-shadow: var(--shadow-1);
}
.section-toggle button {
  padding: 7px 14px; border-radius: 100px;
  color: var(--ink-3); font-weight: 600; font-size: 12.5px;
  transition: all 0.2s;
}
.section-toggle button.active { background: var(--ink); color: var(--paper); }

/* ===== Big editorial job cards ===== */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 1100px) { .jobs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .jobs-grid { grid-template-columns: 1fr; } }

.job {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 18px; padding: 20px;
  display: flex; flex-direction: column; gap: 14px;
  transition: all 0.2s; position: relative; overflow: hidden;
  cursor: pointer;
}
.job:hover { transform: translateY(-3px); box-shadow: var(--shadow-3); border-color: var(--ink-soft); }
.job-top { display: flex; align-items: start; justify-content: space-between; gap: 10px; }
.job-mark {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--paper-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: var(--ink); letter-spacing: -0.04em;
  flex-shrink: 0;
}
.mono-coral { background: var(--coral-mist); color: var(--coral); }
.mono-rose { background: var(--rose-mist); color: var(--rose); }
.mono-sage { background: var(--sage-mist); color: var(--sage); }
.mono-sky { background: var(--sky-mist); color: var(--sky); }
.mono-plum { background: var(--plum-mist); color: var(--plum); }
.mono-saffron { background: var(--saffron-mist); color: var(--saffron); }
.mono-teal { background: var(--teal-mist); color: var(--teal-deep); }
.mono-gold { background: var(--gold-mist); color: var(--gold-deep); }

.match-pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 9px 4px 6px;
  background: var(--gold-mist); border: 1px solid var(--gold-soft);
  border-radius: 100px;
  font-size: 11.5px; font-weight: 700; color: var(--gold-deep);
  flex-shrink: 0;
}
.match-pill svg { width: 11px; height: 11px; }
.match-pill .pct { font-family: var(--font-mono); letter-spacing: -0.02em; }

.match-pill.high {
  background: var(--ink); color: var(--gold-bright); border-color: var(--ink);
}

.job-co {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: var(--ink-3); font-weight: 600;
}
.job-co .verified {
  display: inline-flex; align-items: center;
  width: 14px; height: 14px;
  background: var(--teal); color: var(--paper);
  border-radius: 50%; padding: 2px;
}
.job-co .verified svg { width: 100%; height: 100%; }

.job-title {
  font-family: var(--font-bn); font-size: 17px; font-weight: 700;
  color: var(--ink); line-height: 1.25; letter-spacing: -0.012em;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; min-height: 42px;
}
body.lang-en .job-title { font-family: var(--font-display); }

.job-tags {
  display: flex; flex-wrap: wrap; gap: 5px;
}
.job-tag {
  font-size: 11px; padding: 3px 9px;
  background: var(--paper-2); border: 1px solid var(--line-soft);
  border-radius: 100px; color: var(--ink-3); font-weight: 500;
}

.job-meta-row {
  display: flex; flex-wrap: wrap; gap: 4px 10px;
  font-size: 11.5px; color: var(--ink-muted);
}
.job-meta-row .item { display: inline-flex; align-items: center; gap: 4px; }
.job-meta-row svg { width: 11px; height: 11px; }

.job-salary {
  font-family: var(--font-mono); font-weight: 700; font-size: 13px;
  color: var(--ink); letter-spacing: -0.02em;
}

.job-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  font-size: 11px;
}
.job-foot-left { display: flex; align-items: center; gap: 10px; }
.job-deadline {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--ink-3);
}
.job-deadline svg { width: 11px; height: 11px; }
.job-deadline.urgent { color: var(--urgent); font-weight: 700; }
.job-applicants {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--ink-muted); font-family: var(--font-mono); font-weight: 600;
}
.job-applicants svg { width: 10px; height: 10px; }
.job-save {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-3); transition: all 0.15s; cursor: pointer;
}
.job-save svg { width: 12px; height: 12px; }
.job-save:hover { background: var(--paper-2); color: var(--ink); }
.job-save.saved { background: var(--gold-mist); border-color: var(--gold-soft); color: var(--gold-deep); }

.job.featured {
  background: linear-gradient(150deg, var(--ink) 0%, #1A2A2D 100%);
  color: var(--paper);
  border-color: var(--ink);
}
.job.featured .job-co { color: rgba(247,244,237,0.65); }
.job.featured .job-title { color: var(--paper); }
.job.featured .job-mark { background: var(--gold-bright); color: var(--ink); }
.job.featured .job-tag { background: rgba(255,255,255,0.08); color: rgba(247,244,237,0.85); border-color: rgba(255,255,255,0.12); }
.job.featured .job-meta-row { color: rgba(247,244,237,0.65); }
.job.featured .job-salary { color: var(--gold-bright); }
.job.featured .job-foot { border-top-color: rgba(255,255,255,0.1); }
.job.featured .job-deadline { color: rgba(247,244,237,0.7); }
.job.featured .job-applicants { color: rgba(247,244,237,0.55); }
.job.featured .job-save { border-color: rgba(255,255,255,0.18); color: rgba(247,244,237,0.65); }
.job.featured .job-save:hover { background: rgba(255,255,255,0.08); color: var(--paper); }
.job.featured::after {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 65%);
  opacity: 0.25; pointer-events: none;
}

.job .hot-stamp {
  position: absolute; top: 14px; right: 14px;
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 8px;
  background: var(--urgent-soft); color: var(--urgent);
  border-radius: 100px; font-size: 10px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.job .hot-stamp svg { width: 10px; height: 10px; }

/* ============================================================
   AI MATCH BANNER — premium editorial
   ============================================================ */
.ai-banner {
  background: var(--ink);
  border-radius: 28px;
  padding: 56px 56px 56px;
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 56px; align-items: center;
  color: var(--paper);
  box-shadow: 0 20px 60px -20px rgba(42,54,86,0.4);
}
@media (max-width: 980px) {
  .ai-banner { grid-template-columns: 1fr; padding: 40px 32px; gap: 36px; }
}
.ai-banner::before {
  content: ''; position: absolute;
  top: -120px; right: 30%;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(245,130,32,0.18) 0%, transparent 65%);
}
.ai-banner::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><circle cx='20' cy='20' r='0.5' fill='%23ffffff' opacity='0.12'/></svg>");
  pointer-events: none;
}
.ai-banner-content { position: relative; z-index: 1; }
.ai-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px;
  background: rgba(255,157,68,0.15); border: 1px solid rgba(255,157,68,0.3);
  border-radius: 100px;
  font-size: 11px; font-weight: 700; color: var(--gold-bright);
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 22px;
}
.ai-eyebrow svg { width: 12px; height: 12px; }
.ai-banner-title {
  font-family: var(--font-bn); font-size: 48px; font-weight: 700;
  line-height: 1.05; letter-spacing: -0.03em;
  margin-bottom: 22px;
}
body.lang-en .ai-banner-title {
  font-family: var(--font-display); letter-spacing: -0.04em;
  font-size: 56px; line-height: 1.0;
}
.ai-banner-title .gold {
  color: var(--gold-bright);
  font-family: var(--font-bn-display); font-style: italic; font-weight: 500;
}
body.lang-en .ai-banner-title .gold { font-family: var(--font-display); font-style: italic; font-weight: 500; }
.ai-banner-title .num {
  font-family: var(--font-mono);
  color: var(--gold-bright);
  font-weight: 700; letter-spacing: -0.04em;
}
.ai-banner-sub {
  font-size: 16px; color: rgba(247,244,237,0.78);
  line-height: 1.5; margin-bottom: 28px; max-width: 520px;
}
.ai-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== Floating match cards ===== */
.ai-banner-vis {
  position: relative; height: 360px;
  z-index: 1;
}
.match-float {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,157,68,0.2);
  backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 14px;
  min-width: 290px;
  animation: float-card 4s ease-in-out infinite;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.match-float:nth-child(1) { top: 0; right: 24px; animation-delay: 0s; }
.match-float:nth-child(2) {
  top: 130px; right: 0;
  background: rgba(255,157,68,0.10);
  border-color: rgba(255,157,68,0.5);
  animation: float-card-feat 4s ease-in-out infinite 0.7s;
  z-index: 2;
}
.match-float:nth-child(3) { top: 260px; right: 50px; animation-delay: 1.4s; }
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes float-card-feat {
  0%, 100% { transform: translateY(0) scale(1.04); }
  50% { transform: translateY(-10px) scale(1.04); }
}
.match-float-pct {
  font-family: var(--font-mono);
  font-size: 30px; font-weight: 700;
  color: var(--gold-bright);
  letter-spacing: -0.04em; line-height: 1;
}
.match-float-info { flex: 1; min-width: 0; }
.match-float-title {
  font-size: 13.5px; font-weight: 700; color: var(--paper);
  margin-bottom: 3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.match-float-co {
  font-size: 11.5px; color: rgba(247,244,237,0.65);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ============================================================
   COMPANIES — colorful hiring grid
   ============================================================ */
.companies-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
@media (max-width: 1100px) { .companies-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 700px) { .companies-grid { grid-template-columns: repeat(2, 1fr); } }

.co-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  display: flex; flex-direction: column; gap: 8px;
  align-items: start;
  transition: all 0.2s; cursor: pointer;
  position: relative; overflow: hidden;
}
.co-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); border-color: var(--ink-soft); }
.co-card-mark {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
  letter-spacing: -0.04em;
}
.co-card-name { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.co-card-row {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  font-size: 11px; color: var(--ink-muted);
}
.co-card-openings {
  font-family: var(--font-mono); font-weight: 700; color: var(--ink); font-size: 12px;
}
.co-card-growth { color: var(--live); font-weight: 700; }

/* ============================================================
   SALARY INSIGHTS — interactive horizontal bars
   ============================================================ */
.salary-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 18px; padding: 28px;
  box-shadow: var(--shadow-2);
}
.salary-rows { display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }
.salary-row {
  display: grid; grid-template-columns: 1fr 2fr auto;
  gap: 16px; align-items: center;
}
@media (max-width: 700px) {
  .salary-row { grid-template-columns: 1fr; gap: 6px; }
}
.salary-role { font-size: 14px; font-weight: 600; color: var(--ink); }
.salary-bar-wrap {
  position: relative; height: 28px;
  background: var(--paper-2); border-radius: 8px;
  overflow: hidden;
}
.salary-bar {
  position: absolute; top: 0; bottom: 0;
  border-radius: 8px;
  transition: all 0.4s ease;
}
.salary-bar.s-sky { background: linear-gradient(90deg, var(--sky-soft), var(--sky)); }
.salary-bar.s-plum { background: linear-gradient(90deg, var(--plum-soft), var(--plum)); }
.salary-bar.s-coral { background: linear-gradient(90deg, var(--coral-soft), var(--coral)); }
.salary-bar.s-gold { background: linear-gradient(90deg, var(--gold-soft), var(--gold)); }
.salary-bar.s-rose { background: linear-gradient(90deg, var(--rose-soft), var(--rose)); }
.salary-bar.s-saffron { background: linear-gradient(90deg, var(--saffron-soft), var(--saffron)); }
.salary-avg-marker {
  position: absolute; top: -4px; bottom: -4px;
  width: 3px; background: var(--ink); border-radius: 100px;
}
.salary-avg-marker::after {
  content: ''; position: absolute;
  bottom: -6px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid var(--ink);
}
.salary-numbers {
  display: flex; align-items: center; gap: 4px;
  font-family: var(--font-mono); font-weight: 700;
}
.salary-min, .salary-max {
  font-size: 11px; color: var(--ink-muted);
}
.salary-avg {
  font-size: 14px; color: var(--ink);
  background: var(--gold-mist);
  padding: 3px 10px; border-radius: 6px;
}

.salary-legend {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  margin-top: 24px; padding-top: 18px;
  border-top: 1px dashed var(--line);
  font-size: 12px; color: var(--ink-3);
}
.salary-legend-item { display: inline-flex; align-items: center; gap: 6px; }
.salary-legend-bar {
  width: 22px; height: 8px; border-radius: 3px;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold));
}
.salary-legend-marker { width: 3px; height: 12px; background: var(--ink); border-radius: 100px; }

/* ============================================================
   SKILLS DEMAND — gradient grid
   ============================================================ */
.skills-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 1024px) { .skills-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .skills-grid { grid-template-columns: 1fr; } }

.skill-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; padding: 16px 18px;
  position: relative; overflow: hidden;
  transition: all 0.15s; cursor: pointer;
}
.skill-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.skill-name { font-size: 13.5px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.skill-bar {
  position: relative; height: 6px;
  background: var(--paper-2); border-radius: 100px; overflow: hidden;
  margin-bottom: 8px;
}
.skill-bar-fill {
  position: absolute; top: 0; left: 0; bottom: 0;
  border-radius: 100px;
  transition: width 0.6s ease;
}
.skill-bar-fill.k-sky { background: linear-gradient(90deg, var(--sky-soft), var(--sky)); }
.skill-bar-fill.k-sage { background: linear-gradient(90deg, var(--sage-soft), var(--sage)); }
.skill-bar-fill.k-coral { background: linear-gradient(90deg, var(--coral-soft), var(--coral)); }
.skill-bar-fill.k-plum { background: linear-gradient(90deg, var(--plum-soft), var(--plum)); }
.skill-bar-fill.k-gold { background: linear-gradient(90deg, var(--gold-soft), var(--gold)); }
.skill-bar-fill.k-rose { background: linear-gradient(90deg, var(--rose-soft), var(--rose)); }
.skill-bar-fill.k-teal { background: linear-gradient(90deg, var(--teal-soft), var(--teal)); }
.skill-bar-fill.k-olive { background: linear-gradient(90deg, var(--olive-soft), var(--olive)); }
.skill-foot {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; color: var(--ink-muted);
}
.skill-foot .pct { font-family: var(--font-mono); color: var(--ink); font-weight: 700; font-size: 12.5px; }
.skill-foot .growth { color: var(--live); font-weight: 700; }

/* ============================================================
   STORIES — testimonial editorial cards
   ============================================================ */
.stories-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 980px) { .stories-grid { grid-template-columns: 1fr; } }

.story {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 18px;
  transition: all 0.2s;
}
.story:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.story-from-to {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 18px; border-bottom: 1px dashed var(--line);
}
.story-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  letter-spacing: -0.04em; flex-shrink: 0;
}
.story-name {
  font-size: 14px; font-weight: 700; color: var(--ink);
  margin-bottom: 2px;
}
.story-from {
  font-size: 11.5px; color: var(--ink-muted);
}
.story-arrow {
  display: flex; align-items: center; gap: 6px;
  color: var(--gold-deep); font-weight: 700; font-size: 12px;
  margin-top: 2px;
}
.story-arrow svg { width: 11px; height: 11px; }
.story-quote {
  font-family: var(--font-bn); font-size: 17px; font-weight: 500;
  color: var(--ink-2); line-height: 1.5;
  letter-spacing: -0.005em;
  flex: 1;
}
body.lang-en .story-quote { font-family: var(--font-display); font-weight: 500; }
.story-quote::before {
  content: '“'; font-family: var(--font-bn-display);
  font-size: 36px; line-height: 1;
  color: var(--gold-deep); margin-right: 4px;
  vertical-align: -10px;
}
.story-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--line-soft);
  font-size: 12px;
}
.story-duration {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  background: var(--live-soft); color: var(--live);
  border-radius: 100px;
  font-weight: 700; font-size: 11.5px;
}
.story-to { color: var(--ink-3); font-weight: 600; font-size: 12px; }

/* ============================================================
   EMPLOYER CTA — split colorful banner
   ============================================================ */
.emp-banner {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: 28px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-3);
}
@media (max-width: 980px) { .emp-banner { grid-template-columns: 1fr; } }

.emp-side {
  padding: 44px 40px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  min-height: 280px;
}
.emp-side.candidate { background: linear-gradient(135deg, var(--paper) 0%, var(--gold-mist) 130%); }
.emp-side.employer { background: linear-gradient(135deg, var(--ink) 0%, #1A2A2D 100%); color: var(--paper); }
.emp-side .stamp {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 16px;
}
.emp-side.candidate .stamp { color: var(--gold-deep); }
.emp-side.employer .stamp { color: var(--gold-bright); }
.emp-side .stamp::before {
  content: ''; width: 18px; height: 1px; background: currentColor;
}
.emp-side h3 {
  font-family: var(--font-bn); font-size: 30px; font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 14px;
}
body.lang-en .emp-side h3 { font-family: var(--font-display); letter-spacing: -0.035em; }
.emp-side p {
  font-size: 14.5px; line-height: 1.5;
  margin-bottom: 24px; max-width: 360px;
}
.emp-side.candidate p { color: var(--ink-3); }
.emp-side.employer p { color: rgba(247,244,237,0.78); }
.emp-side .emp-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 12px;
  font-weight: 700; font-size: 14px;
  width: fit-content;
  transition: all 0.15s;
}
.emp-side.candidate .emp-cta { background: var(--ink); color: var(--paper); }
.emp-side.candidate .emp-cta:hover { background: var(--ink-2); }
.emp-side.employer .emp-cta { background: var(--gold); color: var(--ink); }
.emp-side.employer .emp-cta:hover { background: var(--gold-bright); }
.emp-side .emp-cta svg { width: 14px; height: 14px; }
.emp-stats {
  display: flex; gap: 28px; margin-top: auto; padding-top: 24px;
  flex-wrap: wrap;
}
.emp-stat-num {
  font-family: var(--font-mono); font-size: 26px; font-weight: 700;
  letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px;
}
.emp-side.employer .emp-stat-num { color: var(--gold-bright); }
.emp-stat-label {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  opacity: 0.7;
}

.emp-side .deco {
  position: absolute; right: -100px; top: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
}
.emp-side.candidate .deco {
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 60%);
  opacity: 0.5;
}
.emp-side.employer .deco {
  background: radial-gradient(circle, var(--gold) 0%, transparent 60%);
  opacity: 0.18;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink); color: var(--paper);
  margin-top: 64px;
  padding: 64px 0 0;
  position: relative; z-index: 1;
}
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 36px; padding-bottom: 44px;
  border-bottom: 1px solid rgba(247,244,237,0.1);
}
@media (max-width: 980px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
}
.footer-brand-mark {
  margin-bottom: 12px;
  display: inline-flex;
}
.footer-tag {
  font-size: 13px; color: rgba(247,244,237,0.65);
  line-height: 1.55; max-width: 320px; margin-bottom: 22px;
}
.footer-app-row { display: flex; gap: 8px; margin-bottom: 18px; }
.footer-app {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 14px; border-radius: 10px;
  background: rgba(247,244,237,0.06); border: 1px solid rgba(247,244,237,0.12);
  transition: all 0.15s;
}
.footer-app:hover { background: rgba(255,157,68,0.1); border-color: rgba(255,157,68,0.3); }
.footer-app .em { font-size: 18px; }
.footer-app .text { font-size: 11px; color: rgba(247,244,237,0.6); line-height: 1.2; }
.footer-app .text strong { display: block; font-size: 13px; color: var(--paper); }

.footer-col-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-bright); margin-bottom: 18px;
  display: flex; align-items: center; gap: 8px;
}
.footer-col-title::before { content: ''; width: 16px; height: 1px; background: var(--gold-bright); }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: 13px; color: rgba(247,244,237,0.7);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--gold-bright); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; flex-wrap: wrap; gap: 16px;
  font-size: 12px; color: rgba(247,244,237,0.5);
}
.footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom-links a:hover { color: var(--gold-bright); }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(247,244,237,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(247,244,237,0.6);
  transition: all 0.15s;
  font-weight: 600; font-size: 12px;
}
.footer-social a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.footer-bd-row {
  border-top: 1px solid rgba(247,244,237,0.08);
  padding: 22px 0; display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
  font-size: 11px; color: rgba(247,244,237,0.45);
  letter-spacing: 0.06em;
}
.footer-flag {
  display: inline-flex; align-items: center;
  width: 22px; height: 14px; border-radius: 2px;
  background: var(--bd-green); position: relative;
  margin-right: 4px;
}
.footer-flag::after {
  content: ''; position: absolute;
  left: 7px; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%; background: var(--bd-red);
}

/* ============================================================
   FAB — assistant
   ============================================================ */
.fab {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 80;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  background: var(--ink); color: var(--paper);
  border-radius: 100px;
  box-shadow: 0 12px 32px rgba(42,54,86,0.25);
  cursor: pointer;
  transition: all 0.2s;
}
.fab:hover { background: var(--gold-deep); transform: translateY(-2px); }
.fab .glow {
  width: 28px; height: 28px;
  background: var(--gold-bright); color: var(--ink);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.fab .glow svg { width: 14px; height: 14px; }
.fab-text { font-size: 13px; font-weight: 700; letter-spacing: -0.005em; }
.fab-text small {
  display: block; font-weight: 500; font-size: 10.5px;
  color: rgba(247,244,237,0.65); letter-spacing: 0.04em;
}

/* ============================================================
   AI assistant panel
   ============================================================ */
.assist-overlay {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(42,54,86,0.5); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fade-in 0.2s ease;
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.assist-panel {
  background: var(--surface);
  border-radius: 22px; width: 100%; max-width: 600px;
  max-height: 80vh; display: flex; flex-direction: column;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  animation: slide-up 0.3s cubic-bezier(.2,.8,.2,1);
}
@keyframes slide-up { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.assist-head {
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(90deg, var(--ink) 0%, #1A2A2D 100%);
  color: var(--paper);
}
.assist-head-title {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
}
.assist-head-title .glow {
  width: 28px; height: 28px;
  background: var(--gold-bright); color: var(--ink);
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
}
.assist-head-title .glow svg { width: 14px; height: 14px; }
.assist-close {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: var(--paper);
  display: inline-flex; align-items: center; justify-content: center;
}
.assist-close:hover { background: rgba(255,255,255,0.15); }
.assist-close svg { width: 14px; height: 14px; }
.assist-body {
  padding: 22px; overflow-y: auto; flex: 1;
  display: flex; flex-direction: column; gap: 14px;
}
.assist-msg {
  display: flex; gap: 10px; align-items: start;
  animation: fade-in 0.2s ease;
}
.assist-msg.user { flex-direction: row-reverse; }
.assist-msg-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.assist-msg.bot .assist-msg-avatar { background: var(--ink); color: var(--gold-bright); }
.assist-msg.bot .assist-msg-avatar svg { width: 14px; height: 14px; }
.assist-msg.user .assist-msg-avatar { background: var(--gold-mist); color: var(--gold-deep); }
.assist-msg-bubble {
  padding: 12px 16px; border-radius: 14px;
  max-width: 80%;
  font-size: 14px; line-height: 1.5;
}
.assist-msg.bot .assist-msg-bubble {
  background: var(--paper-2); color: var(--ink-2);
  border-top-left-radius: 4px;
}
.assist-msg.user .assist-msg-bubble {
  background: var(--ink); color: var(--paper);
  border-top-right-radius: 4px;
}
.assist-msg-bubble .typing {
  display: inline-flex; gap: 4px; padding: 4px 0;
}
.assist-msg-bubble .typing span {
  width: 6px; height: 6px; border-radius: 50%; background: var(--ink-muted);
  animation: typing 1.2s infinite ease-in-out;
}
.assist-msg-bubble .typing span:nth-child(2) { animation-delay: 0.15s; }
.assist-msg-bubble .typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: 0.5; } 30% { transform: translateY(-4px); opacity: 1; } }
.assist-suggest-row {
  display: flex; gap: 6px; flex-wrap: wrap; padding-top: 4px;
}
.assist-suggest-row .pill {
  padding: 6px 12px; background: var(--surface); border: 1px solid var(--line);
  border-radius: 100px; font-size: 12px; color: var(--ink-2); font-weight: 500;
  cursor: pointer; transition: all 0.15s;
}
.assist-suggest-row .pill:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.assist-input-bar {
  border-top: 1px solid var(--line-soft);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 10px;
  background: var(--paper);
}
.assist-input-bar input {
  flex: 1; border: none; background: transparent;
  font-size: 14.5px; padding: 6px 0;
  font-family: inherit;
}
.assist-input-bar .send-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ink); color: var(--paper);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.assist-input-bar .send-btn:hover { background: var(--gold-deep); }
.assist-input-bar .send-btn svg { width: 14px; height: 14px; }

/* ============================================================
   Toast
   ============================================================ */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 100;
  background: var(--ink); color: var(--paper);
  padding: 12px 20px; border-radius: 100px;
  font-size: 13.5px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  animation: toast-in 0.3s ease;
}
.toast svg { width: 14px; height: 14px; color: var(--gold-bright); }
@keyframes toast-in { from { transform: translate(-50%, 20px); opacity: 0; } to { transform: translate(-50%, 0); opacity: 1; } }
