/* ============================================================
   MR RECRUITER — Design System
   Premium B2B recruitment brand · Light palette
   ============================================================ */

:root {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --ink: #0a1024;
  --ink-2: #3e4763;
  --muted: #66708c;
  --line: #e5e8f0;
  --line-strong: #d8dcea;

  --brand: #1f4fe0;
  --brand-dark: #1638ae;
  --brand-soft: #ebf0fe;
  --brand-border: #d6e0fc;

  --navy: #0a1024;

  --font-head: "Sora", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --radius: 16px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.05);
  --shadow-md: 0 10px 30px -12px rgba(16, 24, 40, 0.14);
  --shadow-lg: 0 26px 50px -22px rgba(22, 56, 174, 0.28);

  --header-h: 74px;
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

p { margin: 0; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

img, svg { display: block; max-width: 100%; }
.ic { width: 24px; height: 24px; flex: none; }

::selection { background: var(--brand-soft); color: var(--brand-dark); }

:focus-visible {
  outline: 3px solid rgba(31, 79, 224, 0.4);
  outline-offset: 2px;
  border-radius: 4px;
}

[id] { scroll-margin-top: calc(var(--header-h) + 22px); }

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

.container {
  width: min(1180px, 100% - 48px);
  margin-inline: auto;
}

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-alt {
  background:
    radial-gradient(700px 260px at 110% -5%, rgba(31, 79, 224, 0.06), transparent 60%),
    linear-gradient(180deg, #f2f4f9 0%, #eef1f7 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head { max-width: 720px; margin: 0 auto 58px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: 999px;
  background: var(--brand-soft);
  border: 1px solid var(--brand-border);
  color: var(--brand-dark);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.sec-title { font-size: clamp(1.75rem, 3.2vw, 2.55rem); font-weight: 700; }
.sec-sub { margin-top: 16px; font-size: 17px; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 11px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  border: 1.5px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 22px -10px rgba(31, 79, 224, 0.55);
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 28px -12px rgba(31, 79, 224, 0.6);
}

.btn-outline {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
}

.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(255,255,255,0.35); }

.btn-outline-light { border-color: rgba(255, 255, 255, 0.35); color: #fff; }
.btn-outline-light:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); transform: translateY(-2px); }

.btn-lg { padding: 16px 30px; font-size: 16px; border-radius: 13px; }
.btn .arr { width: 17px; height: 17px; transition: transform 0.18s ease; }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 24px -18px rgba(10, 16, 36, 0.35);
}

.nav-wrap { display: flex; align-items: center; height: var(--header-h); gap: 34px; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 37px;
  height: 37px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2b62ff 0%, var(--brand-dark) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 16px -8px rgba(31, 79, 224, 0.7);
}
.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18.5px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-name em { font-style: normal; color: var(--brand); }

.site-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.site-nav .nav-links { display: flex; align-items: center; gap: 26px; }
.site-nav .nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  padding: 6px 0;
  transition: color 0.18s ease;
}
.site-nav .nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.site-nav .nav-links a:hover { color: var(--ink); }
.site-nav .nav-links a:hover::after,
.site-nav .nav-links a.active::after { transform: scaleX(1); }
.site-nav .nav-links a.active { color: var(--ink); font-weight: 600; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-actions .btn { padding: 10px 18px; font-size: 14px; }
.nav-actions .btn-text { font-weight: 600; color: var(--ink-2); }
.nav-actions .btn-text:hover { color: var(--brand); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  margin-left: auto;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 78px) 0 84px;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 88% -12%, rgba(31, 79, 224, 0.12), transparent 62%),
    radial-gradient(700px 380px at -8% 108%, rgba(31, 79, 224, 0.07), transparent 60%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(31, 79, 224, 0.13) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(720px 480px at 50% 0%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(720px 480px at 50% 0%, #000 0%, transparent 78%);
  pointer-events: none;
}

.hero-inner { position: relative; max-width: 860px; margin-inline: auto; text-align: center; }

.hero-chips {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6ea0ff;
}
.link-quiet {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px dashed var(--line-strong);
  padding-bottom: 2px;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.link-quiet:hover { color: var(--brand); border-color: var(--brand); }

.hero h1 {
  font-size: clamp(2.35rem, 5.2vw, 3.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.hero h1 .accent { color: var(--brand); }

.hero-sub {
  margin: 24px auto 0;
  max-width: 640px;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--muted);
}

.hero-ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.hero-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 920px;
  margin: 64px auto 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 26px 18px;
}
.stat { text-align: center; padding: 4px 12px; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.6vw, 2.15rem);
  color: var(--ink);
  letter-spacing: -0.02em;
}
.stat-num sup { color: var(--brand); font-size: 0.6em; top: -0.45em; }
.stat-label {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

/* ---------- Service cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), #7aa2ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-border);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--brand-soft);
  border: 1px solid var(--brand-border);
  color: var(--brand);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease;
}
.card-icon .ic { width: 26px; height: 26px; }
.service-card:hover .card-icon {
  background: var(--brand);
  color: #fff;
  transform: scale(1.06) rotate(-3deg);
}

.service-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.card-desc { font-size: 14.5px; color: var(--muted); }

.cap-list {
  margin: 18px 0 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 14px;
}
.cap-list li {
  position: relative;
  padding-left: 15px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
}
.cap-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.55;
}

.card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--brand);
}
.card-link .arr { width: 17px; height: 17px; transition: transform 0.2s ease; }
.card-link:hover .arr { transform: translateX(5px); }
.service-card:hover .card-link { color: var(--brand-dark); }

/* ---------- Process timeline ---------- */
.timeline { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.timeline::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 10%;
  right: 10%;
  border-top: 2px dashed var(--line-strong);
}

.step { position: relative; text-align: center; padding: 0 8px; }
.step-num {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--brand-border);
  color: var(--brand);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 6px 14px -8px rgba(31, 79, 224, 0.45);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.step:hover .step-num { background: var(--brand); border-color: var(--brand); color: #fff; transform: translateY(-4px); }
.step h3 { font-size: 16.5px; font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ---------- Benefits / trust ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.benefit {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.benefit:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--brand-border); }
.check-ic {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.check-ic .ic { width: 23px; height: 23px; }
.benefit h3 { font-size: 17.5px; font-weight: 600; margin-bottom: 8px; }
.benefit p { font-size: 14px; color: var(--muted); }

/* ---------- Industries ---------- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(196px, 1fr));
  gap: 16px;
}
.industry-tile {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.industry-tile .ic { width: 22px; height: 22px; color: var(--brand); opacity: 0.85; }
.industry-tile:hover {
  transform: translateY(-4px);
  border-color: var(--brand-border);
  box-shadow: var(--shadow-md);
}

/* ---------- Ecosystem split ---------- */
.ecosystem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.audience-panel {
  border-radius: 20px;
  padding: 44px 40px;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.audience-panel:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.audience-panel .kicker {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.audience-panel h3 { font-size: 24px; margin-bottom: 12px; }
.audience-panel p { font-size: 15px; color: var(--muted); margin-bottom: 26px; max-width: 400px; }
.audience-panel.is-highlight {
  background: linear-gradient(150deg, #0d1530 0%, #101c46 100%);
  border-color: #16224d;
  position: relative;
  overflow: hidden;
}
.audience-panel.is-highlight::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 79, 224, 0.5), transparent 70%);
}
.audience-panel.is-highlight .kicker { color: #8fa8ff; }
.audience-panel.is-highlight h3 { color: #fff; }
.audience-panel.is-highlight p { color: #aab3cf; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item.open { border-color: var(--brand-border); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.faq-q .chev {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--brand);
  transition: transform 0.28s ease;
}
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}
.faq-a p { padding: 0 24px 22px; font-size: 15px; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--navy);
  color: #fff;
  padding: 104px 0;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(640px 320px at 86% -12%, rgba(43, 98, 255, 0.42), transparent 62%),
    radial-gradient(520px 300px at 6% 112%, rgba(43, 98, 255, 0.26), transparent 62%);
}
.cta-inner { position: relative; text-align: center; max-width: 720px; margin-inline: auto; }
.cta-band .eyebrow { background: rgba(122, 162, 255, 0.14); border-color: rgba(122, 162, 255, 0.3); color: #a9c1ff; }
.cta-band .eyebrow::before { background: #7aa2ff; }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
.cta-band p { margin: 18px auto 0; max-width: 560px; font-size: 17px; color: #b6bedb; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.cta-note { margin-top: 18px; font-size: 13.5px; color: #8d97bd; }
.cta-contact {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 14px;
  font-weight: 500;
  color: #dbe1f5;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.contact-chip:hover { background: rgba(255, 255, 255, 0.13); border-color: rgba(255, 255, 255, 0.3); }
.contact-chip .ic { width: 16px; height: 16px; color: #8fa8ff; }

/* ---------- Detail page hero ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 64px) 0 76px;
  overflow: hidden;
  background:
    radial-gradient(800px 360px at 90% -14%, rgba(31, 79, 224, 0.13), transparent 62%),
    radial-gradient(560px 320px at -6% 112%, rgba(31, 79, 224, 0.07), transparent 60%);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(31, 79, 224, 0.12) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(680px 420px at 30% 0%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(680px 420px at 30% 0%, #000 0%, transparent 80%);
}

.ph-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 48px;
  align-items: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--muted); transition: color 0.15s ease; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb .current { color: var(--ink); font-weight: 600; }

.page-hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.2rem); letter-spacing: -0.03em; }
.page-hero .lead {
  margin-top: 20px;
  font-size: clamp(15.5px, 1.5vw, 18px);
  color: var(--muted);
  max-width: 560px;
}
.ph-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.quickfacts {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.qf-title {
  padding: 16px 22px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  border-bottom: 1px solid var(--line);
  background: var(--brand-soft);
}
.qf-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 22px;
  border-bottom: 1px solid var(--line);
}
.qf-row:last-child { border-bottom: none; }
.qf-row dt { font-size: 13.5px; color: var(--muted); }
.qf-row dd { font-size: 14px; font-weight: 600; color: var(--ink); text-align: right; }

/* ---------- Overview / prose ---------- */
.overview-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 52px;
  align-items: start;
}
.prose p + p { margin-top: 18px; }
.prose h2 { margin-bottom: 18px; }
.prose p { font-size: 16px; color: var(--ink-2); }

.overview-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
}
.overview-card h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 18px;
}
.tick-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 11px 0;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.tick-list li:last-child { border-bottom: none; }
.tick-list .ic { width: 19px; height: 19px; color: var(--brand); margin-top: 2px; }

/* ---------- Who it's for ---------- */
.audience-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mini-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 26px 24px;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.mini-card:hover { transform: translateY(-4px); border-color: var(--brand-border); box-shadow: var(--shadow-md); }
.mini-card .card-icon { width: 46px; height: 46px; border-radius: 12px; margin-bottom: 16px; }
.mini-card .card-icon .ic { width: 22px; height: 22px; }
.mini-card h3 { font-size: 16.5px; margin-bottom: 8px; }
.mini-card p { font-size: 14px; color: var(--muted); }

/* ---------- What we handle ---------- */
.handle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.handle-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.handle-card:hover { transform: translateY(-4px); border-color: var(--brand-border); box-shadow: var(--shadow-md); }
.handle-card .check-ic { width: 42px; height: 42px; margin: 0; flex: none; }
.handle-card .check-ic .ic { width: 21px; height: 21px; }
.handle-card h3 { font-size: 15.5px; margin-bottom: 6px; }
.handle-card p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ---------- Chips / related ---------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 11px; justify-content: center; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 19px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-sm);
}
.chip .ic { width: 17px; height: 17px; color: var(--brand); opacity: 0.85; }
.chip:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.related { padding-top: 0; }
.related .section-head { margin-bottom: 34px; }
.related h2 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: #b6bedb;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(520px 260px at 100% 0%, rgba(43, 98, 255, 0.14), transparent 60%);
  pointer-events: none;
}
.foot-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 44px;
  padding: 72px 0 54px;
}
.foot-brand .brand-name { color: #fff; }
.foot-brand p { margin-top: 18px; font-size: 14px; color: #97a0c0; max-width: 320px; }
.foot-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.foot-links li { margin-bottom: 11px; }
.foot-links a {
  font-size: 14.5px;
  color: #97a0c0;
  transition: color 0.16s ease, padding-left 0.16s ease;
}
.foot-links a:hover { color: #fff; padding-left: 4px; }
.foot-contact li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 14.5px;
  color: #97a0c0;
  margin-bottom: 14px;
}
.foot-contact .ic { width: 17px; height: 17px; color: #7aa2ff; margin-top: 3px; }
.foot-contact a:hover { color: #fff; }
.foot-bottom {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 13.5px;
  color: #7c86ab;
}
.foot-tags { display: flex; gap: 18px; }
.foot-tags span { display: inline-flex; align-items: center; gap: 7px; }
.foot-tags .dot { width: 5px; height: 5px; border-radius: 50%; background: #7aa2ff; }

/* ---------- Reveal animations ---------- */
.reveal,
.reveal-group > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.in-view,
.reveal-group.in-view > * { opacity: 1; transform: none; }

.reveal-group > *:nth-child(2) { transition-delay: 0.07s; }
.reveal-group > *:nth-child(3) { transition-delay: 0.14s; }
.reveal-group > *:nth-child(4) { transition-delay: 0.21s; }
.reveal-group > *:nth-child(5) { transition-delay: 0.28s; }
.reveal-group > *:nth-child(6) { transition-delay: 0.35s; }
.reveal-group > *:nth-child(7) { transition-delay: 0.42s; }
.reveal-group > *:nth-child(8) { transition-delay: 0.49s; }
.reveal-group > *:nth-child(n + 9) { transition-delay: 0.55s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { animation: none !important; transition: none !important; }
  .reveal,
  .reveal-group > * { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1060px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .handle-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-cards { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 940px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px -24px rgba(10, 16, 36, 0.3);
    padding: 18px 24px 24px;
  }
  body.menu-open .site-nav { display: flex; }
  .site-nav .nav-links { flex-direction: column; align-items: stretch; gap: 2px; }
  .site-nav .nav-links a { padding: 12px 4px; font-size: 15.5px; border-bottom: 1px solid var(--line); }
  .site-nav .nav-links a::after { display: none; }
  .nav-actions { flex-direction: column; align-items: stretch; margin-top: 16px; gap: 10px; }
  .nav-actions .btn { justify-content: center; padding: 13px 18px; font-size: 15px; }
  .nav-toggle { display: inline-flex; }

  /* Timeline → vertical */
  .timeline { display: flex; flex-direction: column; gap: 0; max-width: 560px; margin-inline: auto; }
  .timeline::before {
    top: 10px;
    bottom: 10px;
    left: 27px;
    right: auto;
    border-top: none;
    border-left: 2px dashed var(--line-strong);
  }
  .step {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    text-align: left;
    padding: 16px 0;
  }
  .step-num { margin: 0; }

  .ph-grid { grid-template-columns: 1fr; gap: 36px; }
  .quickfacts { max-width: 480px; }
  .overview-grid { grid-template-columns: 1fr; gap: 36px; }
  .ecosystem-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .section { padding: 76px 0; }
  .hero { padding: calc(var(--header-h) + 54px) 0 64px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); row-gap: 22px; padding: 24px 12px; }
  .stat:nth-child(odd) { border-left: none; }
  .audience-cards { grid-template-columns: 1fr; }
  .handle-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 84px 0; }
  .audience-panel { padding: 34px 26px; }
}

@media (max-width: 560px) {
  .container { width: calc(100% - 36px); }
  .hero-ctas .btn, .ph-ctas .btn, .cta-actions .btn { width: 100%; }
  .cap-list { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr 1fr; gap: 11px; }
  .industry-tile { padding: 14px 12px; font-size: 13px; gap: 9px; flex-direction: column; text-align: center; align-items: center; }
  .foot-grid { grid-template-columns: 1fr; gap: 34px; padding: 56px 0 40px; }
  .faq-q { font-size: 15px; padding: 17px 18px; }
  .faq-a p { padding: 0 18px 18px; }
}

/* ============================================================
   V2 COMPONENTS — Jobs platform · Dashboards · Auth · Forms
   ============================================================ */

/* ---------- Utilities ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.hidden { display: none !important; }
.hide-sm { display: inline-flex; }
.muted { color: var(--muted); font-weight: 400; }
.section-tight { padding: 72px 0; }
.center-cta { display: flex; justify-content: center; margin-top: 42px; }
.btn-text { font-weight: 600; font-size: 14px; color: var(--ink-2); transition: color 0.18s ease; }
.btn-text:hover { color: var(--brand); }
.btn-sm { padding: 9px 16px; font-size: 13.5px; border-radius: 9px; }
.btn-xs { padding: 6px 12px; font-size: 12.5px; border-radius: 8px; }
.btn-block { width: 100%; }

/* ---------- Section head split ---------- */
.section-split {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  text-align: left;
}
.section-split .sec-title { margin-top: 4px; }
.section-split .sec-sub { margin-top: 10px; }
.section-split .btn { flex: none; margin-bottom: 8px; }

/* ---------- Hero (two-sided homepage) ---------- */
.hero-home { padding-bottom: 96px; }
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  text-align: left;
}
.hero-copy h1 { font-size: clamp(2.3rem, 4.6vw, 3.55rem); letter-spacing: -0.03em; }
.hero-copy .hero-sub { margin-left: 0; max-width: 520px; }
.hero-chips { justify-content: flex-start; }
.hero-alt { margin-top: 20px; font-size: 14.5px; color: var(--muted); }

.search-card {
  display: flex;
  align-items: stretch;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 10px;
}
.search-field {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border-radius: 11px;
  background: #f6f8fc;
  min-width: 150px;
}
.search-field.grow { flex: 1.4; }
.search-field:focus-within { outline: 2px solid rgba(31, 79, 224, 0.35); outline-offset: 1px; }
.search-field .ic { width: 19px; height: 19px; color: var(--brand); flex: none; }
.search-field input, .search-field select {
  border: none; background: transparent; font: inherit; font-size: 14.5px;
  color: var(--ink); padding: 13px 0; width: 100%; outline: none;
}
.search-field select { appearance: none; cursor: pointer; padding-right: 22px; }
.select-field .chev-d {
  position: absolute; right: 12px; left: auto;
  width: 16px; height: 16px; color: var(--muted); pointer-events: none;
}
.search-btn { border-radius: 11px; padding: 13px 26px; }

.quick-tags { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.qt-label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.tag-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 15px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line-strong);
  font-size: 13px; font-weight: 500; color: var(--ink-2);
  transition: border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}
.tag-chip:hover, .tag-chip.is-active {
  border-color: var(--brand); color: var(--brand-dark); background: var(--brand-soft);
  transform: translateY(-1px);
}
.tag-chip.is-static { cursor: default; }
.tag-chip.is-static:hover { transform: none; }
.skill-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.skill-cloud.left { justify-content: flex-start; margin-top: 14px; }

/* ---------- Hero visual composition ---------- */
.hero-visual { position: relative; min-height: 430px; }
.hv-main {
  position: relative; z-index: 2;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 26px;
  max-width: 380px;
  margin-inline: auto;
}
.hv-head { display: flex; align-items: center; gap: 14px; }
.hv-avatar {
  width: 52px; height: 52px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #2b62ff, var(--brand-dark));
  color: #fff; font-weight: 700; font-size: 16px;
  box-shadow: 0 8px 16px -8px rgba(31, 79, 224, 0.7);
}
.hv-avatar.lg { width: 64px; height: 64px; font-size: 19px; }
.hv-avatar.sm { width: 38px; height: 38px; font-size: 13px; }
.hv-head strong { display: block; font-family: var(--font-head); color: var(--ink); font-size: 16px; }
.hv-head span:not(.hv-badge) { font-size: 13px; color: var(--muted); }
.hv-badge {
  margin-left: auto;
  padding: 4px 11px; border-radius: 999px;
  background: #e7f8ef; color: #157347; border: 1px solid #bfe9d2;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.hv-match { margin-top: 22px; }
.hv-match-top { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.hv-match-top strong { color: var(--brand); font-size: 14px; }
.progress {
  height: 9px; border-radius: 999px; background: #e9edf6; overflow: hidden;
}
.progress > span {
  display: block; height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), #5f8bff);
}
.progress.slim { height: 7px; margin-top: 10px; max-width: 420px; }
.hv-skills { display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; }
.hv-skills li {
  padding: 6px 13px; border-radius: 999px; font-size: 12.5px; font-weight: 600;
  background: var(--brand-soft); color: var(--brand-dark);
}
.hv-skills li:last-child { background: #eef1f7; color: var(--muted); }
.hv-chip {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 11px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow-md);
  padding: 13px 17px;
}
.hv-chip strong { display: block; font-size: 13px; color: var(--ink); }
.hv-chip span:not(.hv-dot):not(.hv-logo) { font-size: 12px; color: var(--muted); }
.hv-chip-1 { top: 24px; right: 2%; animation: floaty 5s ease-in-out infinite; }
.hv-chip-2 { bottom: 36px; left: 0; animation: floaty 6s ease-in-out 0.8s infinite; }
.hv-dot {
  width: 10px; height: 10px; flex: none; border-radius: 50%;
  background: #22b573; box-shadow: 0 0 0 4px rgba(34, 181, 115, 0.18);
}
.hv-logo {
  width: 34px; height: 34px; flex: none; display: grid; place-items: center;
  border-radius: 9px; background: var(--brand-soft); color: var(--brand);
  font-size: 12px; font-weight: 700;
}
.hv-ring {
  position: absolute; inset: auto -30px -50px auto;
  width: 220px; height: 220px; border-radius: 50%;
  border: 2px dashed var(--brand-border);
  z-index: 1;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ---------- Stats band standalone ---------- */
.stats-section { padding: 34px 0 10px; }
.standalone-stats {
  max-width: none;
  margin: 0;
  padding: 34px 26px;
  gap: 8px;
}

/* ---------- Job cards ---------- */
.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}
.job-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.job-list { display: grid; gap: 16px; }

.job-card {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.job-card:hover { transform: translateY(-4px); border-color: var(--brand-border); box-shadow: var(--shadow-md); }
.job-top { display: flex; align-items: flex-start; gap: 14px; }
.job-logo {
  --tint: #eef1f7;
  width: 48px; height: 48px; flex: none;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--tint);
  color: var(--ink);
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
}
.job-logo.sm { width: 40px; height: 40px; font-size: 12px; border-radius: 10px; }
.job-id { min-width: 0; }
.job-id h3 { font-size: 16.5px; font-weight: 600; line-height: 1.35; }
.job-id h3 a:hover { color: var(--brand); }
.job-id p { font-size: 13.5px; color: var(--muted); margin-top: 3px; }

.save-btn {
  margin-left: auto; flex: none;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  border: 1px solid transparent;
  color: #98a1bd;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.save-btn:hover { color: var(--brand); background: var(--brand-soft); transform: scale(1.06); }
.save-btn.saved { color: var(--brand); }
.save-btn.saved .ic path { fill: currentColor; fill-opacity: 0.18; }
.save-btn.large { width: 46px; height: 46px; border-color: var(--line-strong); background: var(--surface); }
.save-btn.pill-save {
  width: auto; height: auto;
  display: inline-flex; align-items: center; gap: 8px;
  margin: 14px auto 0; padding: 9px 16px;
  border-radius: 999px; border: 1px solid var(--line-strong);
  font-size: 13px; font-weight: 600;
}
.save-btn.pill-save .ic { width: 16px; height: 16px; }

.job-meta {
  display: flex; flex-wrap: wrap; gap: 7px 16px;
  list-style: none;
  margin: 16px 0 0;
}
.job-meta.wrap { row-gap: 8px; }
.job-meta li {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 500; color: var(--ink-2);
}
.job-meta .ic { width: 16px; height: 16px; color: var(--brand); opacity: 0.75; flex: none; }
.job-card .job-meta { margin-top: 18px; }
.job-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 18px; padding-top: 16px;
  border-top: 1px dashed var(--line-strong);
}
.job-date { font-size: 12.5px; color: var(--muted); font-weight: 500; }
.job-foot .btn-outline { pointer-events: auto; }

/* ---------- Categories ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  gap: 16px;
}
.cat-tile {
  display: flex; flex-direction: column; gap: 4px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.cat-tile:hover { transform: translateY(-4px); border-color: var(--brand-border); box-shadow: var(--shadow-md); }
.cat-ic {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--brand-soft); color: var(--brand);
  margin-bottom: 12px;
  transition: background 0.22s ease, color 0.22s ease;
}
.cat-tile:hover .cat-ic { background: var(--brand); color: #fff; }
.cat-name { font-weight: 600; font-size: 14.5px; color: var(--ink); }
.cat-count { font-size: 12.5px; color: var(--muted); }

/* ---------- Why / check lists ---------- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.audience-panel .check-list { margin: 6px 0 28px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 8px 0;
  font-size: 14.5px; font-weight: 500; color: var(--ink-2);
}
.check-list .ic { width: 19px; height: 19px; color: var(--brand); margin-top: 3px; flex: none; }
.check-list.light li { color: #c6cde8; }
.check-list.light .ic { color: #7aa2ff; }

.how-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 44px; }
.how-tab {
  padding: 11px 26px; border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  font-weight: 600; font-size: 14.5px; color: var(--ink-2);
  transition: all 0.2s ease;
}
.how-tab.is-active {
  background: var(--ink); color: #fff; border-color: var(--ink);
  box-shadow: 0 10px 20px -10px rgba(10, 16, 36, 0.5);
}

/* ---------- Company cards ---------- */
.company-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.company-card {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.company-card:hover { transform: translateY(-4px); border-color: var(--brand-border); box-shadow: var(--shadow-md); }
.company-card.wide { padding: 26px; }
.company-logo {
  --tint: #eef1f7;
  width: 54px; height: 54px; flex: none;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--tint);
  color: var(--ink);
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
}
.company-logo.lg { width: 62px; height: 62px; font-size: 17px; border-radius: 16px; }
.company-logo.xl { width: 84px; height: 84px; font-size: 23px; border-radius: 20px; }
.company-card h3 { font-size: 17px; font-weight: 600; margin-top: 16px; }
.company-card.wide h3 { margin-top: 0; }
.cc-top { display: flex; align-items: center; gap: 15px; }
.cc-top div { min-width: 0; }
.co-meta { font-size: 13.5px; color: var(--muted); margin-top: 3px; }
.co-desc { font-size: 14px; color: var(--muted); margin-top: 14px; }
.co-open {
  display: inline-block;
  margin-top: 14px;
  font-size: 12.5px; font-weight: 700;
  color: var(--brand-dark);
  background: var(--brand-soft);
  border: 1px solid var(--brand-border);
  padding: 5px 12px; border-radius: 999px;
}
.cc-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px; padding-top: 16px; border-top: 1px dashed var(--line-strong);
}
.company-card > .card-link { margin-top: 14px; }

/* ---------- Article cards ---------- */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 22px;
}
.post-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.post-card:hover { transform: translateY(-4px); border-color: var(--brand-border); box-shadow: var(--shadow-md); }
.post-thumb, .fp-thumb {
  display: grid; place-items: center;
  height: 150px;
}
.fp-thumb { height: 100%; min-height: 240px; }
.post-thumb .ic, .fp-thumb .ic { width: 52px; height: 52px; opacity: 0.65; }
.tint-blue { background: linear-gradient(135deg, #e8f0ff, #dbe7ff); color: #1f4fe0; }
.tint-green { background: linear-gradient(135deg, #eafaf1, #d9f4e5); color: #178a56; }
.tint-orange { background: linear-gradient(135deg, #fff3e6, #ffe6cd); color: #c96a10; }
.tint-purple { background: linear-gradient(135deg, #f1eeff, #e5e0fb); color: #5b43c9; }
.tint-teal { background: linear-gradient(135deg, #e6faf9, #d2f2f0); color: #0e8579; }
.post-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.post-cat {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brand);
}
.post-body h3 { font-size: 17px; margin: 10px 0 8px; line-height: 1.4; }
.post-body h3 a:hover { color: var(--brand); }
.post-body p { font-size: 14px; color: var(--muted); }
.post-body .card-link { margin-top: 16px; }
.post-meta { display: flex; gap: 8px; list-style: none; margin: 14px 0 18px; font-size: 13px; color: var(--muted); }

.featured-post {
  display: grid;
  grid-template-columns: 380px 1fr;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
}
.fp-body { padding: 38px 40px; display: flex; flex-direction: column; align-items: flex-start; }
.badge-brand {
  display: inline-block; padding: 5px 13px; border-radius: 999px;
  background: var(--brand-soft); border: 1px solid var(--brand-border);
  color: var(--brand-dark); font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.fp-body h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin: 16px 0 12px; }
.fp-body h2 a:hover { color: var(--brand); }
.fp-body > p { font-size: 15px; color: var(--muted); max-width: 560px; }
.chip-row.left { justify-content: flex-start; margin: 8px 0 34px; }

/* ---------- Page heroes (jobs / companies) ---------- */
.jobs-hero { padding-bottom: 66px; }
.jobs-hero.slim { padding-bottom: 58px; }
.jobs-hero h1 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); letter-spacing: -0.03em; }
.jobs-hero .lead { margin-top: 14px; max-width: 620px; }
.jobs-hero .search-card { margin-top: 34px; max-width: 1020px; }
.search-card.compact .search-field { min-width: 130px; }
.search-card.solo { max-width: 640px; }
.breadcrumb.center { justify-content: center; }

.results-section { padding-top: 56px; }
.filter-open { display: none; margin-bottom: 18px; }
.drawer-overlay {
  position: fixed; inset: 0; z-index: 140;
  background: rgba(10, 16, 36, 0.45);
  backdrop-filter: blur(2px);
}
body.filters-open { overflow: hidden; }

.results-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: start; }

.filters-panel {
  position: sticky; top: calc(var(--header-h) + 20px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 22px 20px;
  max-height: calc(100vh - var(--header-h) - 44px);
  overflow-y: auto;
}
.filters-head { display: flex; align-items: center; justify-content: space-between; }
.filters-head h2 { font-size: 17px; }
.filters-close {
  width: 36px; height: 36px; flex: none;
  display: grid; place-items: center;
  border-radius: 10px; font-size: 22px; color: var(--muted);
}
.filters-close:hover { background: #eef1f7; color: var(--ink); }

.filter-group { border-bottom: 1px solid var(--line); padding: 4px 0; }
.filter-group summary {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; list-style: none;
  padding: 13px 2px;
  font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--ink);
}
.filter-group summary::-webkit-details-marker { display: none; }
.filter-group summary::after {
  content: ""; width: 8px; height: 8px;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
  transform: rotate(45deg); transition: transform 0.2s ease;
  margin-top: -4px;
}
.filter-group[open] summary::after { transform: rotate(225deg); margin-top: 4px; }
.filter-group ul { list-style: none; padding: 2px 2px 16px; }
.filter-group li {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 0;
}
.filter-group label { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink-2); cursor: pointer; }
.filter-group input[type="checkbox"], .filter-group input[type="radio"] {
  width: 17px; height: 17px; accent-color: var(--brand); cursor: pointer;
}
.filter-group span { font-size: 12.5px; color: var(--muted); }
.radio-filter label { font-size: 13.5px; }
.filters-panel > .btn { margin-top: 18px; }

.results-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-bottom: 20px;
}
.results-bar p { font-size: 15px; color: var(--ink-2); }
.results-bar strong { color: var(--ink); }
.sort-field { position: relative; display: inline-flex; align-items: center; }
.sort-field select {
  appearance: none; font: inherit; font-size: 13.5px; font-weight: 600;
  color: var(--ink-2);
  padding: 10px 38px 10px 16px;
  border: 1px solid var(--line-strong); border-radius: 10px;
  background: var(--surface); cursor: pointer;
}
.sort-field .chev-d {
  position: absolute; right: 12px; width: 16px; height: 16px;
  color: var(--muted); pointer-events: none;
}

.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 38px; }
.page {
  min-width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  font-size: 14px; font-weight: 600; color: var(--ink-2);
  transition: all 0.18s ease;
}
.page:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-1px); }
.page.is-current { background: var(--brand); border-color: var(--brand); color: #fff; }
.page.next .ic { width: 18px; height: 18px; }
.page-ellipsis { color: var(--muted); padding: 0 4px; }

.alert-band {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  padding: 44px 46px;
}
.alert-band h2 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); margin-top: 4px; }
.alert-band p { margin-top: 10px; color: var(--muted); max-width: 480px; }
.alert-form { display: flex; gap: 10px; flex: none; }
.alert-form input {
  min-width: 300px;
  padding: 13px 18px;
  border: 1px solid var(--line-strong); border-radius: 11px;
  font: inherit; font-size: 14.5px; background: #f6f8fc;
}
.alert-form input:focus { outline: 2px solid rgba(31, 79, 224, 0.35); }

/* ---------- Job details ---------- */
.job-hero { padding-bottom: 56px; }
.job-hero-card {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  padding: 30px 34px;
}
.jh-main { display: flex; gap: 20px; align-items: flex-start; }
.jh-logo { width: 68px; height: 68px; font-size: 20px; border-radius: 16px; }
.job-hero-card h1 { font-size: clamp(1.5rem, 2.6vw, 2.05rem); letter-spacing: -0.02em; }
.jh-co { font-size: 15px; color: var(--muted); margin: 6px 0 4px; }
.jh-co a { color: var(--brand); font-weight: 600; }
.jh-actions { display: flex; align-items: center; gap: 18px; flex: none; }
.jh-posted { font-size: 13px; font-weight: 600; color: var(--ink-2); text-align: right; }
.jh-posted span { color: var(--muted); font-weight: 400; }

.job-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.jd-main { min-width: 0; }
.jd-main h2 { font-size: 21px; margin: 34px 0 14px; }
.jd-main h2:first-child { margin-top: 0; }
.jd-main p { font-size: 15.5px; }
.tick-list.plain li {
  display: flex; gap: 11px; align-items: flex-start;
  padding: 7px 0; border-bottom: none;
  font-size: 15px; color: var(--ink-2);
}
.tick-list.plain .ic { width: 19px; height: 19px; color: var(--brand); margin-top: 4px; }
.benefit-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.benefit-list li {
  display: flex; align-items: center; gap: 11px;
  background: #f8fafd;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px; font-weight: 500; color: var(--ink-2);
}
.benefit-list .ic { width: 19px; height: 19px; color: var(--brand); flex: none; }

.jd-side { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 20px; }
.side-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 26px;
}
.side-title { font-size: 16px; margin-bottom: 16px; }
.apply-card { text-align: center; }
.apply-note { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.apply-meta { list-style: none; margin-top: 18px; text-align: left; }
.apply-meta li {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 9px 0; border-top: 1px dashed var(--line-strong);
  font-size: 13.5px; color: var(--muted);
}
.apply-meta.big li { border-top: none; padding: 13px 0; align-items: flex-start; font-size: 14px; }
.apply-meta .ic { width: 17px; height: 17px; color: var(--brand); margin-top: 2px; flex: none; }
.apply-meta strong { display: block; color: var(--ink); font-size: 14px; }
.apply-meta a:hover { color: var(--brand); }
.co-mini { display: flex; gap: 13px; align-items: center; }
.co-mini strong { display: block; font-size: 15px; color: var(--ink); }
.co-mini span { font-size: 12.5px; color: var(--muted); }
.mini-jobs { list-style: none; }
.mini-jobs li {
  display: flex; align-items: center; gap: 13px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.mini-jobs li:last-child { border-bottom: none; }
.mini-jobs.stacked li { border-bottom: 1px solid var(--line); }
.mini-jobs a { font-weight: 600; font-size: 14.5px; color: var(--ink); display: block; }
.mini-jobs a:hover { color: var(--brand); }
.mini-jobs span:not(.job-logo):not(.badge) { font-size: 12.5px; color: var(--muted); }
.mini-jobs .match { font-style: normal; color: #157347; font-weight: 600; }
.mini-jobs .save-btn { width: 34px; height: 34px; }

.interview-list { list-style: none; }
.interview-list li {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.interview-list li:last-child { border-bottom: none; }
.int-date {
  width: 50px; height: 54px; flex: none;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--brand-soft); border: 1px solid var(--brand-border);
  color: var(--brand-dark);
}
.int-date strong { font-family: var(--font-head); font-size: 18px; line-height: 1; }
.int-date span { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; margin-top: 3px; }
.interview-list > li > div:nth-child(2) { min-width: 0; }
.interview-list strong { display: block; font-size: 14.5px; color: var(--ink); }
.interview-list span:not(.int-date):not(.badge):not(.tr-dot) { display: block; font-size: 13px; color: var(--muted); }
.interview-list em { display: block; font-style: normal; font-size: 12.5px; color: var(--brand); font-weight: 600; margin-top: 2px; }
.interview-list .badge { margin-left: auto; flex: none; }

.sticky-apply {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 120;
  display: none; align-items: center; justify-content: space-between; gap: 16px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 30px -18px rgba(10, 16, 36, 0.4);
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom, 0px));
}
.sticky-apply strong { display: block; color: var(--ink); font-size: 15px; }
.sticky-apply span { font-size: 12px; color: var(--muted); }
body.show-sticky-apply .sticky-apply[hidden] { display: flex; }
.sticky-apply[hidden] { display: none; }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10, 16, 36, 0.55);
  backdrop-filter: blur(3px);
  padding: 20px;
}
.modal-overlay[hidden] { display: none; }
.modal-card {
  position: relative;
  width: min(520px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: var(--surface);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 34px;
  animation: modalIn 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.modal-close { position: absolute; top: 14px; right: 14px; }
.modal-card h2 { font-size: 21px; margin-bottom: 6px; }
.modal-sub { font-size: 14px; color: var(--muted); margin-bottom: 22px; }

/* ---------- Forms ---------- */
.form-stack { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-row.three { grid-template-columns: 1fr 1fr 1fr; }
.field label, .field-label { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.label-row { display: flex; align-items: center; justify-content: space-between; }
.req { color: #d92d20; }
.opt { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  font: inherit; font-size: 14.5px;
  color: var(--ink);
  padding: 12px 15px;
  border: 1.5px solid var(--line-strong);
  border-radius: 11px;
  background: var(--surface);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(31, 79, 224, 0.12);
}
.field input::placeholder, .field textarea::placeholder { color: #9aa3bf; }
.field.has-error input, .field.has-error select, .field.has-error textarea {
  border-color: #d92d20;
  box-shadow: 0 0 0 4px rgba(217, 45, 32, 0.1);
}
.field-error { font-size: 12.5px; color: #d92d20; display: none; }
.field.has-error .field-error { display: block; }
.hint { font-size: 12.5px; color: var(--muted); }
.hint.center { text-align: center; }
.checkbox { display: flex; align-items: baseline; gap: 10px; font-size: 14px; color: var(--ink-2); cursor: pointer; }
.checkbox input { width: 17px; height: 17px; accent-color: var(--brand); flex: none; transform: translateY(3px); }
.checkbox a { color: var(--brand); font-weight: 600; }
.form-status { font-size: 14px; font-weight: 600; min-height: 1.2em; }
.form-status.ok { color: #157347; }
.form-status.err { color: #d92d20; }
.pass-wrap { position: relative; display: flex; }
.pass-wrap input { padding-right: 48px; }
.toggle-pass {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 9px; color: var(--muted);
}
.toggle-pass:hover { color: var(--brand); background: var(--brand-soft); }
.file-drop {
  display: flex; align-items: center; gap: 14px;
  border: 1.5px dashed var(--line-strong);
  border-radius: 12px;
  background: #f8fafd;
  padding: 16px 18px;
  font-size: 14px; color: var(--ink-2);
}
.file-drop .ic { width: 22px; height: 22px; color: var(--brand); }
.file-drop em { font-style: normal; color: #157347; font-weight: 600; }
.file-drop.large {
  flex-direction: column; text-align: center;
  padding: 38px 24px; gap: 8px;
  cursor: pointer;
}
.file-drop.large strong { color: var(--ink); font-size: 16px; font-family: var(--font-head); }
.file-drop.large span { color: var(--muted); font-size: 13.5px; }
.file-drop.large em { font-style: normal; color: var(--brand); }
.file-drop.large input[type="file"] { display: none; }
.file-drop.dragover { border-color: var(--brand); background: var(--brand-soft); }

/* ---------- Auth ---------- */
.auth-body { background: #f4f6fb; }
.auth-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(400px, 44%) 1fr;
}
.auth-shell.centered {
  display: flex; align-items: center; justify-content: center;
  padding: 40px 20px;
}
.auth-brand-panel {
  position: relative;
  display: flex; flex-direction: column;
  background:
    radial-gradient(640px 320px at 88% -10%, rgba(43, 98, 255, 0.5), transparent 62%),
    radial-gradient(420px 300px at 0% 112%, rgba(43, 98, 255, 0.28), transparent 60%),
    linear-gradient(160deg, #0c1330 0%, #101c46 100%);
  color: #fff;
  padding: 44px 52px;
  overflow: hidden;
}
.auth-brand { position: relative; z-index: 2; }
.auth-brand .brand-name { color: #fff; }
.abp-copy { margin: auto 0; position: relative; z-index: 2; max-width: 400px; }
.abp-copy h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.4rem); }
.abp-copy p { margin: 14px 0 26px; color: #aab3cf; }
.auth-form-panel { display: flex; align-items: center; justify-content: center; padding: 48px 24px; }
.auth-card {
  width: min(480px, 100%);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  padding: 40px;
}
.auth-card.solo { padding: 44px 46px; }
.auth-card h1 { font-size: 25px; letter-spacing: -0.02em; }
.auth-sub { font-size: 14.5px; color: var(--muted); margin: 8px 0 24px; }
.role-tabs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  background: #eef1f7;
  border-radius: 12px;
  padding: 5px;
  margin-bottom: 24px;
}
.role-tab {
  padding: 11px 10px; border-radius: 9px;
  font-weight: 600; font-size: 14px; color: var(--muted);
  transition: all 0.2s ease;
}
.role-tab.is-active {
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 3px 8px -3px rgba(10, 16, 36, 0.2);
}
.divider {
  display: flex; align-items: center; gap: 14px;
  color: var(--muted); font-size: 12.5px;
  margin: 6px 0;
}
.divider::before, .divider::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}
.google-btn svg { flex: none; }
.mini-link { font-size: 12.5px; font-weight: 600; color: var(--brand); }
.auth-switch { margin-top: 24px; text-align: center; font-size: 14px; color: var(--muted); }
.auth-switch a { color: var(--brand); font-weight: 600; }

.role-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.role-card {
  position: relative;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 3px;
  border: 1.5px solid var(--line-strong);
  border-radius: 14px;
  padding: 18px 14px;
  cursor: pointer;
  transition: all 0.18s ease;
}
.role-card input { position: absolute; opacity: 0; }
.rc-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--brand-soft); color: var(--brand);
  margin-bottom: 8px;
}
.role-card strong { font-size: 13.5px; color: var(--ink); }
.role-card > span:not(.rc-icon) { font-size: 11.5px; color: var(--muted); }
.role-card:has(input:checked) {
  border-color: var(--brand);
  background: var(--brand-soft);
  box-shadow: 0 0 0 3px rgba(31, 79, 224, 0.12);
}
.step-dots {
  display: flex; gap: 8px;
  list-style: none;
  margin-bottom: 26px;
}
.step-dots li {
  flex: 1;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: var(--muted);
  padding-top: 10px;
  border-top: 3px solid var(--line);
  transition: all 0.25s ease;
}
.step-dots li span {
  width: 20px; height: 20px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--line);
  color: var(--muted); font-size: 11px;
}
.step-dots li.is-active { color: var(--ink); border-top-color: var(--brand); }
.step-dots li.is-active span { background: var(--brand); color: #fff; }
.reg-step { border: none; }
.reg-step legend { display: none; }
.reg-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 6px; }
.reg-nav .btn-primary { margin-left: auto; }

/* ---------- Company detail ---------- */
.company-hero { position: relative; }
.ch-cover {
  height: 190px;
  background:
    radial-gradient(600px 260px at 82% -30%, rgba(43, 98, 255, 0.5), transparent 62%),
    linear-gradient(120deg, #0d1530 0%, #14245c 60%, #1f4fe0 130%);
}
.company-hero .container { margin-top: -74px; }
.ch-card {
  position: relative;
  display: flex; align-items: center; gap: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  padding: 28px 32px;
}
.ch-info { flex: 1; min-width: 0; }
.ch-info h1 { font-size: clamp(1.5rem, 2.6vw, 2rem); letter-spacing: -0.02em; }
.ch-info .co-desc { margin-top: 10px; max-width: 560px; }
.ch-actions { display: flex; flex-direction: column; gap: 10px; flex: none; }
.follow-btn.is-on { border-color: var(--brand); color: var(--brand); background: var(--brand-soft); }
.follow-btn.is-on .ic { transform: rotate(45deg); }

.tab-bar {
  display: flex; gap: 4px;
  margin-top: 22px;
  border-bottom: 1px solid var(--line-strong);
  overflow-x: auto;
}
.tab {
  padding: 14px 22px;
  font-weight: 600; font-size: 14.5px; color: var(--muted);
  border-bottom: 2.5px solid transparent;
  margin-bottom: -1px;
  transition: color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.tab:hover { color: var(--ink); }
.tab.is-active { color: var(--brand); border-bottom-color: var(--brand); }
.tab .count {
  display: inline-block; margin-left: 6px;
  padding: 1px 9px; border-radius: 999px;
  background: #eef1f7; color: var(--muted);
  font-size: 11.5px; font-weight: 700;
}
.tab.is-active .count { background: var(--brand-soft); color: var(--brand-dark); }

.related-block { margin-top: 80px; }

/* ---------- Badges & empty state ---------- */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px; font-weight: 700;
  white-space: nowrap;
}
.badge-muted { background: #eef1f7; color: #5a6484; border: 1px solid #dde2ee; }
.badge-info { background: #e8f3fe; color: #1565c0; border: 1px solid #cbe2fb; }
.badge-brand { background: var(--brand-soft); color: var(--brand-dark); border: 1px solid var(--brand-border); }
.badge-warn { background: #fef4e6; color: #b45d09; border: 1px solid #f7dfba; }
.badge-success { background: #e7f8ef; color: #157347; border: 1px solid #bfe9d2; }

.empty-state {
  text-align: center;
  background: var(--surface);
  border: 1.5px dashed var(--line-strong);
  border-radius: 20px;
  padding: 70px 30px;
}
.empty-icon {
  width: 76px; height: 76px;
  margin: 0 auto 20px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--brand-soft); color: var(--brand);
}
.empty-icon .ic { width: 34px; height: 34px; }
.empty-state h2 { font-size: 21px; margin-bottom: 8px; }
.empty-state p { color: var(--muted); max-width: 420px; margin: 0 auto 24px; }

/* ---------- Contact ---------- */
.contact-section { padding-top: 56px; }
.contact-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 36px; align-items: start; }
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  padding: 38px;
}
.contact-card h2 { font-size: 21px; margin-bottom: 22px; }
.contact-side { display: grid; gap: 20px; }
.map-mock {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: linear-gradient(150deg, #edf1fa, #e3e9f6);
}
.map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(31, 79, 224, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 79, 224, 0.09) 1px, transparent 1px);
  background-size: 30px 30px;
}
.map-pin {
  position: absolute; left: var(--x); top: var(--y);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(31, 79, 224, 0.18);
}
.map-pin span {
  position: absolute; inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(31, 79, 224, 0.4);
  animation: pinPulse 2.2s ease-out infinite;
}
.map-pin:nth-child(3) span { animation-delay: 0.5s; }
.map-pin:nth-child(4) span { animation-delay: 1s; }
@keyframes pinPulse {
  from { transform: scale(0.7); opacity: 1; }
  to { transform: scale(2.1); opacity: 0; }
}
.map-note {
  position: absolute; bottom: 14px; left: 16px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; color: var(--ink-2);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
}
.map-note .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); }
.faq-mini a { font-weight: 600; color: var(--ink); font-size: 13.5px; }
.faq-mini a:hover { color: var(--brand); }

/* ---------- Legal pages ---------- */
.legal { max-width: 760px; }
.legal h2 { font-size: 20px; margin: 30px 0 12px; }
.legal p { font-size: 15px; }

/* ============================================================
   APP SHELL (dashboards)
   ============================================================ */
.app-body { background: #f2f4fa; }
.app-shell { display: flex; min-height: 100vh; }

.app-sidebar {
  width: 258px; flex: none;
  position: sticky; top: 0;
  height: 100vh;
  overflow-y: auto;
  background: var(--navy);
  padding: 24px 16px;
  display: flex; flex-direction: column; gap: 26px;
  scrollbar-width: thin;
}
.side-brand { padding: 0 8px; }
.side-brand .brand-name { color: #fff; }
.side-menu { list-style: none; }
.side-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 13px;
  border-radius: 10px;
  font-size: 14px; font-weight: 500;
  color: #97a0c0;
  transition: background 0.16s ease, color 0.16s ease;
  margin-bottom: 2px;
}
.side-menu a:hover { color: #fff; background: rgba(255, 255, 255, 0.06); }
.side-menu a.is-active {
  color: #fff;
  background: linear-gradient(120deg, rgba(43, 98, 255, 0.28), rgba(43, 98, 255, 0.14));
  box-shadow: inset 0 0 0 1px rgba(122, 162, 255, 0.35);
}
.side-menu .ic { width: 19px; height: 19px; flex: none; opacity: 0.9; }
.side-menu .logout { margin-top: 18px; border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 14px; }
.side-badge {
  margin-left: auto;
  padding: 2px 9px; border-radius: 999px;
  background: rgba(122, 162, 255, 0.18);
  color: #a9c1ff;
  font-size: 11px; font-weight: 700;
}

.app-main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.app-topbar {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; gap: 18px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 13px 28px;
}
.sidebar-toggle { display: none; width: 40px; height: 40px; place-items: center; border-radius: 10px; color: var(--ink); }
.sidebar-toggle:hover { background: #eef1f7; }
.topbar-search {
  position: relative; display: flex; align-items: center;
  flex: 1; max-width: 440px;
}
.topbar-search .ic {
  position: absolute; left: 13px;
  width: 17px; height: 17px; color: var(--muted); pointer-events: none;
}
.topbar-search input {
  width: 100%;
  font: inherit; font-size: 14px;
  padding: 10px 14px 10px 40px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: #f6f8fc;
}
.topbar-search input:focus { outline: 2px solid rgba(31, 79, 224, 0.3); }
.topbar-actions { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.icon-btn {
  position: relative;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 11px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink-2);
}
.icon-btn:hover { border-color: var(--brand); color: var(--brand); }
.icon-btn .ic { width: 19px; height: 19px; }
.ping {
  position: absolute; top: 9px; right: 10px;
  width: 8px; height: 8px; border-radius: 50%;
  background: #e5484d;
  box-shadow: 0 0 0 2.5px var(--surface);
}
.avatar-chip {
  width: 40px; height: 40px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #2b62ff, var(--brand-dark));
  color: #fff; font-size: 13.5px; font-weight: 700;
  cursor: pointer;
}

.app-content { padding: 30px 28px 60px; display: grid; gap: 22px; align-content: start; }
.app-content.narrow { max-width: 860px; }
.page-sub { color: var(--muted); margin-top: 6px; }
.welcome-row {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.welcome-row h1 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }
.welcome-row p { color: var(--muted); font-size: 14px; margin-top: 4px; }
.app-content h1 { letter-spacing: -0.02em; }

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 24px 26px;
}
.panel-head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.panel-head h2 { font-size: 17px; }
.panel-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.profile-panel {
  display: flex; align-items: center; gap: 22px;
}
.pp-left { display: flex; align-items: center; gap: 18px; flex: 1; min-width: 0; }
.pp-left h2 { font-size: 16.5px; }
.pp-left p { font-size: 13.5px; color: var(--muted); margin-top: 3px; }
.pp-percent {
  font-family: var(--font-head);
  font-size: 34px; color: var(--brand);
  letter-spacing: -0.03em;
  flex: none;
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-cards.five { grid-template-columns: repeat(5, 1fr); }
.stat-card {
  display: flex; align-items: center; gap: 15px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.sc-icon {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  border-radius: 13px;
}
.sc-icon .ic { width: 22px; height: 22px; }
.sc-icon.tint-blue { background: #e8f0ff; color: #1f4fe0; }
.sc-icon.tint-green { background: #e7f8ef; color: #157347; }
.sc-icon.tint-orange { background: #fef4e6; color: #b45d09; }
.sc-icon.tint-purple { background: #f1eeff; color: #5b43c9; }
.sc-icon.tint-teal { background: #e6faf9; color: #0e8579; }
.stat-card strong { display: block; font-family: var(--font-head); font-size: 23px; color: var(--ink); line-height: 1.1; }
.stat-card span { font-size: 13px; color: var(--muted); font-weight: 500; }

.tracker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  list-style: none;
  counter-reset: stage;
}
.tracker li {
  position: relative;
  background: #f8fafd;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 16px 16px 14px;
  display: grid; gap: 3px;
}
.tracker strong { font-size: 14.5px; color: var(--ink); }
.tracker span:not(.tr-dot) { font-size: 12.5px; color: var(--muted); }
.tr-dot {
  position: absolute; top: 16px; right: 16px;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--line-strong);
}
.tracker li.done { border-color: #bfe9d2; background: #f2fbf6; }
.tracker li.done .tr-dot { background: #22b573; box-shadow: 0 0 0 3.5px rgba(34, 181, 115, 0.16); }
.tracker li.current { border-color: var(--brand-border); background: var(--brand-soft); }
.tracker li.current .tr-dot { background: var(--brand); box-shadow: 0 0 0 3.5px rgba(31, 79, 224, 0.16); animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3.5px rgba(31, 79, 224, 0.16); }
  50% { box-shadow: 0 0 0 6.5px rgba(31, 79, 224, 0.1); }
}

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }
.two-col.wide-first { grid-template-columns: 1.25fr 0.75fr; }

.table-wrap { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.data-table th {
  text-align: left;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
  padding: 10px 14px;
  border-bottom: 1.5px solid var(--line-strong);
  white-space: nowrap;
}
.data-table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  font-size: 14px; color: var(--ink-2);
  vertical-align: middle;
}
.data-table tbody tr { transition: background 0.15s ease; }
.data-table tbody tr:hover { background: #f8fafd; }
.data-table td a { font-weight: 600; color: var(--ink); }
.data-table td a:hover { color: var(--brand); }
.cand-cell { display: flex; align-items: center; gap: 12px; min-width: 200px; }
.cand-cell strong { display: block; font-size: 14px; color: var(--ink); }
.cand-cell span { display: block; font-size: 12.5px; color: var(--muted); }
.row-actions { white-space: nowrap; }
.row-actions .btn + .btn { margin-left: 6px; }

.area-chart { width: 100%; height: auto; }
.area-chart .grid-lines line { stroke: #edf0f7; stroke-width: 1; }
.area-chart .dots circle { fill: #fff; stroke: var(--brand); stroke-width: 2.5; }
.area-chart .axis-labels text { font-size: 10px; fill: #98a1bd; font-family: var(--font-body); }

.funnel { list-style: none; display: grid; gap: 12px; }
.funnel li { display: grid; gap: 6px; }
.fn-label { font-size: 12.5px; font-weight: 600; color: var(--muted); }
.fn-bar {
  position: relative;
  width: var(--w, 50%);
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--brand), #5f8bff);
  display: flex; align-items: center;
  padding: 0 12px;
  transition: width 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.fn-bar i { font-style: normal; font-size: 12.5px; font-weight: 700; color: #fff; }
.fn-bar.hired { background: linear-gradient(90deg, #159a63, #2fbe87); }

/* ============================================================
   V2 RESPONSIVE
   ============================================================ */

@media (max-width: 1180px) {
  .hero-grid { gap: 36px; }
  .stat-cards.five { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1060px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-inner { text-align: center; }
  .hero-chips { justify-content: center; }
  .hero-copy .hero-sub, .hero-copy h1 { margin-inline: auto; }
  .hero-home .hero-inner { max-width: 720px; }
  .results-layout { grid-template-columns: 250px 1fr; gap: 22px; }
  .contact-grid { grid-template-columns: 1fr; }
  .job-layout { grid-template-columns: 1fr; }
  .jd-side { position: static; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
  .app-sidebar {
    position: fixed; z-index: 150;
    left: 0; top: 0; bottom: 0;
    transform: translateX(-105%);
    transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
    box-shadow: 0 0 60px rgba(10, 16, 36, 0.4);
  }
  body.sidebar-open .app-sidebar { transform: translateX(0); }
  .sidebar-toggle { display: grid; }
}

@media (max-width: 940px) {
  .hide-sm { display: none !important; }
  .filter-open { display: inline-flex; }
  .results-layout { grid-template-columns: 1fr; }
  .filters-panel {
    position: fixed; z-index: 160;
    left: 0; right: 0; bottom: 0;
    top: auto;
    max-height: 78vh;
    border-radius: 22px 22px 0 0;
    transform: translateY(105%);
    transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  body.filters-open .filters-panel { transform: translateY(0); }
  .featured-post { grid-template-columns: 1fr; }
  .fp-thumb { min-height: 170px; }
  .two-col, .two-col.wide-first { grid-template-columns: 1fr; }
  .tracker { grid-template-columns: repeat(2, 1fr); }
  .welcome-row { flex-direction: column; align-items: flex-start; }
  .job-hero-card { flex-direction: column; align-items: flex-start; }
  .jh-actions { width: 100%; justify-content: space-between; }
  .jh-posted { text-align: left; }
  .auth-shell { grid-template-columns: 1fr; }
  .auth-brand-panel { display: none; }
  .alert-band { flex-direction: column; align-items: flex-start; }
  .alert-form { width: 100%; flex-wrap: wrap; }
  .alert-form input { flex: 1; min-width: 220px; }
}

@media (max-width: 760px) {
  .section-tight { padding: 54px 0; }
  .search-card { flex-direction: column; padding: 12px; }
  .search-field { min-width: 0; }
  .search-btn { width: 100%; padding: 14px; }
  .jobs-hero .search-card { max-width: none; }
  .section-split { flex-direction: column; align-items: flex-start; }
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
  .stat-cards.five { grid-template-columns: repeat(2, 1fr); }
  .standalone-stats { grid-template-columns: repeat(2, 1fr); }
  .benefit-list { grid-template-columns: 1fr; }
  .job-grid.cols-2 { grid-template-columns: 1fr; }
  .app-topbar { padding: 12px 16px; }
  .app-content { padding: 20px 16px 60px; }
  .profile-panel { flex-direction: column; align-items: flex-start; }
  .contact-card { padding: 26px 22px; }
  .field-row, .field-row.three { grid-template-columns: 1fr; }
  .role-cards { grid-template-columns: 1fr; }
  .auth-card { padding: 28px 22px; }
  .ch-card { flex-direction: column; align-items: flex-start; padding: 24px; }
  .ch-actions { flex-direction: row; }
  .step-dots li span { display: none; }
  .sticky-apply { display: none; }
  body.show-sticky-apply .sticky-apply { display: flex; }
}

@media (max-width: 560px) {
  .tracker { grid-template-columns: 1fr 1fr; }
  .stat-cards, .stat-cards.five { grid-template-columns: 1fr 1fr; }
  .stat-card { flex-direction: column; align-items: flex-start; gap: 10px; padding: 16px; }
  .pagination { flex-wrap: wrap; }
  .data-table { min-width: 560px; }
  .modal-card { padding: 26px 20px; }
}

/* ---------- Late additions (wizards, segmented, socials, misc) ---------- */
.badge-soft { background: #eef1f7; color: #3e4763; border: 1px solid #dde2ee; }

.social-row { display: flex; gap: 10px; margin-top: 20px; }
.soc {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #aab3cf;
  transition: all 0.18s ease;
}
.soc svg { width: 17px; height: 17px; }
.soc:hover { background: var(--brand); border-color: var(--brand); color: #fff; transform: translateY(-2px); }

.qf-divider { height: 1px; background: var(--line); margin: 20px 0; }
.prose.narrow { max-width: 720px; }
.stage-btn.is-on { border-color: var(--brand); color: var(--brand); background: var(--brand-soft); }

/* Registration steps */
.reg-step { display: none; border: none; padding: 0; margin: 0; }
.reg-step.is-active { display: grid; gap: 16px; }

/* Post-a-job wizard */
.wiz-step { display: none; border: none; padding: 0; margin: 0; }
.wiz-step.is-active { display: grid; gap: 16px; animation: modalIn 0.25s ease; }
.wiz-step legend .eyebrow { margin-bottom: 8px; }
.wiz-step legend h2 { font-size: 20px; display: inline-block; }
.wizard-steps {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 24px;
}
.wizard-steps li {
  display: flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 600; color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 9px 15px;
  border-radius: 999px;
  transition: all 0.2s ease;
}
.wizard-steps li span {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #eef1f7;
  font-size: 11px;
}
.wizard-steps li.is-active { border-color: var(--brand-border); color: var(--ink); background: var(--brand-soft); }
.wizard-steps li.is-active span { background: var(--brand); color: #fff; }
.wizard-steps li.done { color: #157347; border-color: #bfe9d2; background: #f2fbf6; }
.wizard-steps li.done span { background: #22b573; color: #fff; }
.wiz-nav { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 8px; }
.wiz-nav-right { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.seg-field .field-label { display: block; margin-bottom: 8px; }
.segmented {
  display: flex; gap: 4px;
  background: #eef1f7;
  padding: 5px;
  border-radius: 11px;
}
.segmented label { flex: 1; cursor: pointer; position: relative; }
.segmented input { position: absolute; opacity: 0; pointer-events: none; }
.segmented span {
  display: block; text-align: center;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px; font-weight: 600; color: var(--muted);
  transition: all 0.18s ease;
}
.segmented span:hover { color: var(--ink); }
.segmented input:checked + span {
  background: var(--surface);
  color: var(--brand-dark);
  box-shadow: 0 2px 6px -2px rgba(10, 16, 36, 0.25);
}
.segmented input:focus-visible + span { outline: 3px solid rgba(31, 79, 224, 0.35); }
.preview-card { border: 1px solid var(--line); border-radius: 14px; padding: 22px; background: #f8fafd; }
