@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* ── RESET & TOKENS ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── Refined navy palette — editorial, less saturated */
  --ink:    #0d1520;
  --ink-2:  #111d2c;
  --ink-3:  #162438;
  --ink-4:  #1c2e42;
  --border: rgba(100,130,155,.09);
  --border-h: rgba(100,130,155,.20);
  --mid:    #4e6879;
  --muted:  rgba(165,195,212,.62);
  --text:   rgba(230,242,252,.93);
  --accent: #5f8fa6;
  --accent-2: #88b8ce;
  --accent-dim: rgba(95,143,166,.08);
  --accent-glow: rgba(95,143,166,.16);
  --accent-deep: #3a7898;
  --green: #28a07c;
  --orange: #c4894a;
  --red:   #c44d5a;
  --white: #eef5fc;
  --r:    16px;
  --r-sm: 10px;
  --surface-highlight: inset 0 1px 0 rgba(150,185,205,.06);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  background: var(--ink);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: .9rem;
}

/* ── SCROLL ANIMATIONS ──────────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: none; }

.stagger > * { opacity: 0; transform: translateY(16px); transition: opacity .5s cubic-bezier(.22,1,.36,1), transform .5s cubic-bezier(.22,1,.36,1); }
.stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:.04s; }
.stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:.10s; }
.stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:.16s; }
.stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:.22s; }
.stagger.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay:.28s; }
.stagger.visible > *:nth-child(n+6) { opacity:1; transform:none; transition-delay:.34s; }

/* ── HEADER ─────────────────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 60px;
  background: rgba(20,35,47,.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-size: 1.1rem; font-weight: 800; letter-spacing: -.5px;
  color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: .45rem;
}
.logo-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

.nav-links { display: flex; align-items: center; gap: 0; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: .83rem; font-weight: 500; padding: .35rem .7rem;
  border-radius: 6px;
  transition: color .2s, background .2s;
  letter-spacing: .01em;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.05); }
.nav-links a.active { color: var(--accent-2); }

.nav-auth { display: flex; align-items: center; gap: .5rem; margin-left: .5rem; }
.btn-nav-login {
  color: var(--muted); font-size: .83rem; font-weight: 500;
  padding: .35rem .8rem; border-radius: 6px; cursor: pointer;
  background: none; border: 1px solid var(--border);
  font-family: inherit;
  transition: color .2s, border-color .2s;
}
.btn-nav-login:hover { color: var(--white); border-color: var(--border-h); }
.btn-nav-register {
  color: #0d1520; font-size: .82rem; font-weight: 700;
  padding: .38rem 1rem; border-radius: 7px; cursor: pointer;
  background: var(--white); border: none; font-family: inherit;
  letter-spacing: -.01em;
  transition: background .15s, transform .15s;
}
.btn-nav-register:hover { background: #fff; transform: translateY(-1px); }

.nav-user { display: none; align-items: center; gap: .5rem; }
.nav-user-link {
  display: flex; align-items: center; gap: .4rem;
  text-decoration: none; border-radius: 8px; padding: .2rem .35rem;
  transition: background .15s;
}
.nav-user-link:hover { background: var(--ink-3); }
.nav-user-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent-dim); border: 1px solid rgba(107,172,197,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 800; color: var(--accent-2);
}
.nav-user-name { font-size: .83rem; font-weight: 500; color: var(--muted); }

.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 34px; height: 34px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span { display: block; height: 1.5px; border-radius: 2px; background: var(--muted); transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column;
  position: fixed; top: 60px; left: 0; right: 0; z-index: 199;
  background: rgba(20,35,47,.97);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem; gap: .15rem;
  backdrop-filter: blur(24px);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--muted); text-decoration: none;
  font-size: .9rem; font-weight: 500; padding: .6rem .75rem;
  border-radius: 6px; transition: color .2s;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: var(--white); }
.mobile-menu-auth { display: flex; gap: .5rem; margin-top: .75rem; padding-top: .75rem; border-top: 1px solid var(--border); }
.mobile-menu-auth button { flex: 1; padding: .65rem; border-radius: 6px; font-weight: 600; font-family: inherit; font-size: .88rem; cursor: pointer; }

.breadcrumb { font-size: .78rem; color: var(--mid); display: flex; align-items: center; gap: .4rem; }
.breadcrumb a { color: var(--mid); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--white); }

/* ── HERO ────────────────────────────────────── */
.hero {
  min-height: 440px; display: flex; align-items: flex-end;
  padding: 9rem 1.5rem 3.5rem; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 65% at 55% 30%, rgba(80,130,160,.20) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 85%, rgba(60,110,140,.08) 0%, transparent 60%),
    var(--ink-2);
}
.hero-bg::before {
  content: ''; position: absolute; inset: -48px;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 48px 48px;
  will-change: transform;
  animation: grid-drift 24s linear infinite;
}
@keyframes grid-drift { from { transform: translate(0,0); } to { transform: translate(48px,48px); } }

.hero-inner { max-width: 860px; margin: 0 auto; width: 100%; position: relative; z-index: 1; }

.hero-tag {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--accent-2); border-radius: 999px;
  padding: .25rem .75rem; font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.4px; margin-bottom: 1.1rem;
  background: var(--accent-dim); border: 1px solid rgba(107,172,197,.2);
}
.hero-tag .svg-icon { width: 11px; height: 11px; }

.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 800; letter-spacing: -1.5px; line-height: 1.1;
  margin-bottom: .85rem;
  background: linear-gradient(150deg, #f2f9fd 45%, rgba(100,170,200,.80) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { font-size: .88rem; color: var(--muted); margin-bottom: 1.5rem; max-width: 500px; line-height: 1.75; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .4rem; }
.badge {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .25rem .75rem; border-radius: 999px;
  font-size: .72rem; font-weight: 600;
}
.badge-green  { background: rgba(45,168,132,.08); border: 1px solid rgba(45,168,132,.2); color: rgba(80,200,165,.8); }
.badge-orange { background: rgba(212,147,74,.08); border: 1px solid rgba(212,147,74,.2); color: rgba(220,165,95,.8); }
.badge-blue   { background: var(--accent-dim);    border: 1px solid rgba(107,172,197,.2); color: var(--accent-2); }

/* ── MAIN ────────────────────────────────────── */
main { max-width: 840px; margin: 2.5rem auto 4rem; padding: 0 1.25rem; display: flex; flex-direction: column; gap: 1rem; }

/* ── CARDS ───────────────────────────────────── */
.card {
  background: var(--ink-2);
  border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.5rem;
  box-shadow: var(--surface-highlight), 0 1px 12px rgba(0,0,0,.25);
  transition: border-color .2s, box-shadow .2s, transform .15s;
}
.card:hover {
  border-color: var(--border-h);
  box-shadow: var(--surface-highlight), 0 4px 24px rgba(0,0,0,.4);
}
.card-title {
  font-size: .88rem; font-weight: 700; color: var(--white);
  margin-bottom: 1.2rem; display: flex; align-items: center; gap: .55rem;
  letter-spacing: -.01em;
}

/* SVG icons */
.svg-icon { width: 15px; height: 15px; flex-shrink: 0; color: var(--accent); }
.box-label .svg-icon { width: 12px; height: 12px; }

/* ── KPI ROW ─────────────────────────────────── */
.kpi-row { display: grid; grid-template-columns: repeat(3,1fr); gap: .6rem; }
.kpi {
  background: var(--ink-3); border-radius: var(--r-sm);
  padding: 1rem; text-align: center; border: 1px solid var(--border);
}
.kpi-label { font-size: .64rem; font-weight: 700; text-transform: uppercase; letter-spacing: .9px; color: var(--mid); margin-bottom: .35rem; }
.kpi-value { font-size: 1rem; font-weight: 800; }
.kpi-value.green  { color: var(--green); }
.kpi-value.orange { color: var(--orange); }
.kpi-value.red    { color: var(--red); }
.kpi-value.blue   { color: var(--white); }

/* ── SALARY BARS ─────────────────────────────── */
.salary-stack { display: flex; flex-direction: column; gap: 1rem; }
.sal-row { display: grid; grid-template-columns: 70px 1fr 160px; align-items: center; gap: 1rem; }
.sal-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--mid); }
.bar-track { height: 5px; background: var(--ink-4); border-radius: 999px; overflow: hidden; }
.bar-fill {
  height: 100%; border-radius: 999px; width: 0;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent-2));
  transition: width 1.3s cubic-bezier(.22,1,.36,1);
}
.sal-amount { font-size: .83rem; font-weight: 600; text-align: right; color: var(--text); }
.sal-note { font-size: .74rem; color: var(--mid); margin-top: .85rem; padding-top: .85rem; border-top: 1px solid var(--border); line-height: 1.65; }

/* ── SKILLS ──────────────────────────────────── */
.skills-wrap { display: flex; flex-wrap: wrap; gap: .4rem; }
.skill-tag {
  background: var(--ink-3); border: 1px solid var(--border);
  color: rgba(255,255,255,.6); padding: .28rem .75rem; border-radius: 999px;
  font-size: .76rem; font-weight: 500;
  transition: border-color .2s, color .2s;
}
.skill-tag:hover { border-color: var(--border-h); color: var(--white); }

/* ── HIGHLIGHT BOXES ─────────────────────────── */
.box { border-radius: var(--r); padding: 1.25rem 1.5rem; }
.box-label {
  font-size: .64rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.1px; margin-bottom: .55rem;
  display: flex; align-items: center; gap: .4rem; color: var(--mid);
}
.box-text { font-size: .88rem; color: var(--muted); line-height: 1.75; }
.box-outlook { background: rgba(107,172,197,.05); border: 1px solid rgba(107,172,197,.12); }
.box-advice  { background: rgba(255,255,255,.02); border: 1px solid var(--border); }
.box-outlook .box-label { color: rgba(158,203,216,.6); }
.box-advice  .box-label { color: var(--mid); }

/* ── CTA ─────────────────────────────────────── */
.cta-card {
  background: rgba(107,172,197,.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(107,172,197,.22);
  border-radius: var(--r); padding: 2.25rem; text-align: center;
  box-shadow: var(--surface-highlight), 0 0 40px rgba(107,172,197,.08), 0 4px 24px rgba(0,0,0,.3);
}
.cta-title { font-size: 1.2rem; font-weight: 800; margin-bottom: .45rem; letter-spacing: -.5px; }
.cta-sub   { color: var(--muted); margin-bottom: 1.25rem; font-size: .86rem; }
.btn-cta {
  display: inline-block;
  background: var(--accent); color: var(--ink);
  padding: .75rem 2rem; border-radius: 8px;
  text-decoration: none; font-weight: 800; font-size: .88rem;
  letter-spacing: -.01em;
  position: relative; overflow: hidden;
  transition: opacity .15s, transform .15s, box-shadow .2s;
}
.btn-cta::after {
  content: ''; position: absolute;
  top: 0; left: 0; width: 45%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  transform: translateX(-200%);
  animation: btn-shimmer 3.5s ease-in-out infinite 2s;
}
@keyframes btn-shimmer {
  0%,100% { transform: translateX(-200%); }
  48%,52% { transform: translateX(350%); }
}
.btn-cta:hover { opacity: .92; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(114,188,212,.35); }

.btn-save-offer {
  display: inline-flex; align-items: center; gap: .35rem;
  background: none; border: 1px solid var(--border);
  color: var(--muted); padding: .55rem 1.1rem; border-radius: 8px;
  font-size: .8rem; font-weight: 600; cursor: pointer;
  font-family: inherit; margin-left: .6rem;
  transition: border-color .2s, color .2s;
}
.btn-save-offer:hover { border-color: var(--border-h); color: var(--white); }
.btn-save-offer.saved { border-color: #f59e0b; color: #f59e0b; }
.btn-save-offer { transition: border-color .2s, color .2s, transform .15s; }

/* ── AD SLOT ─────────────────────────────────── */
.ad-slot {
  background: var(--ink-3); border: 1px dashed rgba(255,255,255,.06);
  border-radius: var(--r-sm); padding: 1rem; text-align: center;
  color: var(--mid); font-size: .72rem;
}

/* ── SEO CONTENT + FAQ ───────────────────────── */
.seo-content-section {
  background: var(--ink-2);
  border-top: 1px solid var(--border);
  padding: 4.5rem 1.5rem 5rem;
}
.seo-content-inner {
  max-width: 820px; margin: 0 auto;
}
.seo-content-h2 {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800; letter-spacing: -.04em; line-height: 1.2;
  color: var(--white); margin-bottom: 1.25rem;
}
.seo-content-inner > p {
  font-size: .92rem; color: var(--muted); line-height: 1.85;
  margin-bottom: .85rem; max-width: 700px;
}
.faq-list {
  margin-top: 2.5rem;
  display: flex; flex-direction: column; gap: .75rem;
}
.faq-item {
  background: var(--ink-3); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.25rem 1.5rem;
  transition: border-color .2s;
}
.faq-item:hover { border-color: var(--border-h); }
.faq-q {
  font-size: .92rem; font-weight: 700; color: var(--white);
  margin-bottom: .5rem; letter-spacing: -.01em;
}
.faq-a { font-size: .84rem; color: var(--muted); line-height: 1.7; margin: 0; }
@media (max-width: 768px) {
  .seo-content-section { padding: 3rem 1.5rem; }
  .seo-content-h2 { font-size: 1.4rem; }
}

/* ── FOOTER ──────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.5rem; text-align: center;
  color: var(--mid); font-size: .76rem; margin-top: 2rem;
}
footer a { color: var(--mid); text-decoration: none; transition: color .2s; }
footer a:hover { color: var(--white); }

/* ══════════════════════════════════════════════
   AUTH MODAL
══════════════════════════════════════════════ */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,.75); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--ink-2); border: 1px solid var(--border-h);
  border-radius: 18px; padding: 2.5rem; width: 100%; max-width: 380px;
  position: relative; box-shadow: 0 40px 80px rgba(0,0,0,.6);
  animation: modal-in .28s cubic-bezier(.22,1,.36,1);
}
@keyframes modal-in { from { opacity:0; transform:scale(.94) translateY(16px); } to { opacity:1; transform:none; } }
.modal-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; color: var(--mid); cursor: pointer; font-size: 1.1rem; padding: .25rem; transition: color .2s; }
.modal-close:hover { color: var(--white); }
.modal h2 { font-size: 1.4rem; font-weight: 800; letter-spacing: -.5px; margin-bottom: .3rem; }
.modal-sub { font-size: .82rem; color: var(--mid); margin-bottom: 1.6rem; }
.modal-tabs { display: flex; gap: 0; margin-bottom: 1.6rem; background: var(--ink-3); border-radius: 8px; padding: .2rem; }
.modal-tab { flex: 1; padding: .5rem; border-radius: 6px; background: none; border: none; color: var(--mid); font-weight: 600; font-size: .84rem; cursor: pointer; font-family: inherit; transition: background .2s, color .2s; }
.modal-tab.active { background: var(--ink-2); color: var(--white); }
.form-group { margin-bottom: .9rem; }
.form-label { display: block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .7px; color: var(--mid); margin-bottom: .35rem; }
.form-input { width: 100%; background: var(--ink-3); border: 1px solid var(--border); color: var(--white); border-radius: 8px; padding: .65rem .95rem; font-size: .88rem; font-family: inherit; outline: none; transition: border-color .2s; }
.form-input:focus { border-color: var(--accent); }
.form-input::placeholder { color: var(--mid); }
.btn-submit { width: 100%; padding: .8rem; border-radius: 8px; background: var(--accent); color: var(--ink); border: none; font-weight: 800; font-size: .92rem; font-family: inherit; cursor: pointer; margin-top: .4rem; transition: opacity .15s; }
.btn-submit:hover { opacity: .88; }
.modal-error { display: none; color: var(--red); font-size: .8rem; margin-top: .5rem; }
.modal-error.show { display: block; }

/* ══════════════════════════════════════════════
   INDEX PAGE
══════════════════════════════════════════════ */
.index-hero {
  min-height: 560px; display: flex; align-items: center;
  padding: 8rem 1.5rem 4rem; position: relative; overflow: hidden;
}

/* ── SPLIT HERO LAYOUT (text left + widget right) */
.index-hero-split {
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center; gap: 3.5rem;
  position: relative; z-index: 1;
}
.index-hero-text { text-align: left; }
.index-hero-text h1 { margin-left: 0; }
.index-hero-text p { margin: 0 0 1.5rem; text-align: left; }
.index-hero-text .index-search { margin: 0 0 1.5rem; max-width: 440px; }
.index-hero-text .index-stats { justify-content: flex-start; }

/* ── SALARY WIDGET (right side of hero) ────────── */
.salary-widget {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; padding: 1.4rem 1.6rem;
  box-shadow: var(--surface-highlight), 0 24px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.03) inset;
}
.sw-header {
  font-size: .62rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--mid); margin-bottom: 1rem;
  display: flex; align-items: center; gap: .4rem; padding-bottom: .7rem;
  border-bottom: 1px solid var(--border);
}
.sw-row {
  padding: .75rem 0; border-bottom: 1px solid var(--border);
}
.sw-row:last-child { border-bottom: none; padding-bottom: .1rem; }
.sw-name { font-size: .82rem; font-weight: 500; color: var(--muted); margin-bottom: .3rem; }
.sw-salary {
  font-size: 1.35rem; font-weight: 800; letter-spacing: -0.04em;
  background: linear-gradient(135deg, #f2f9fd 45%, rgba(100,168,196,.78) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.sw-bar-track { height: 3px; background: var(--ink-4); border-radius: 999px; position: relative; margin: .55rem 0 .3rem; }
.sw-bar-fill { position: absolute; top: 0; height: 100%; border-radius: 999px; box-shadow: 0 0 5px rgba(107,172,197,.4); }
.sw-meta { display: flex; align-items: center; justify-content: space-between; font-size: .62rem; }
.sw-range { color: var(--mid); }
.sw-demand { font-weight: 700; }
.sw-demand.alta { color: #10b981; }
.sw-demand.media { color: #f59e0b; }

@media (max-width: 900px) {
  .index-hero-split {
    grid-template-columns: 1fr;
  }
  .salary-widget { display: none; }
  .index-hero-text { text-align: center; }
  .index-hero-text p { text-align: center; margin: 0 auto 1.5rem; }
  .index-hero-text .index-search { margin: 0 auto 1.5rem; }
  .index-hero-text .index-stats { justify-content: center; }
}
.index-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 50% -10%, rgba(70,120,155,.18) 0%, transparent 55%),
    radial-gradient(ellipse 30% 25% at 85% 50%, rgba(40,85,120,.07) 0%, transparent 50%),
    #0d1520;
}

/* ── HERO SPOTLIGHT (cursor follow) ──────── */
.index-hero { --mx: 50%; --my: 40%; }
.hero-spotlight {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: radial-gradient(800px circle at var(--mx) var(--my), rgba(95,143,166,.065) 0%, transparent 70%);
  transition: background .08s linear;
}

/* ── HERO ORBS — barely perceptible, cinematic depth ── */
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-orb-1 {
  width: 600px; height: 600px; top: -150px; right: 0%;
  background: radial-gradient(circle, rgba(50,100,140,.20) 0%, transparent 65%);
  filter: blur(90px); opacity: .35;
  animation: orb-drift-a 20s ease-in-out infinite;
}
.hero-orb-2 {
  width: 380px; height: 380px; bottom: -80px; left: 0%;
  background: radial-gradient(circle, rgba(30,75,120,.16) 0%, transparent 65%);
  filter: blur(80px); opacity: .25;
  animation: orb-drift-b 26s ease-in-out infinite;
}
.hero-orb-3 {
  width: 260px; height: 260px; top: 40%; right: 25%;
  background: radial-gradient(circle, rgba(80,140,180,.10) 0%, transparent 65%);
  filter: blur(60px); opacity: .20;
  animation: orb-drift-a 18s ease-in-out infinite reverse;
}
@keyframes orb-drift-a {
  0%,100% { transform: translate(0,0) scale(1); }
  35%  { transform: translate(-20px,15px) scale(1.04); }
  68%  { transform: translate(15px,-18px) scale(.97); }
}
@keyframes orb-drift-b {
  0%,100% { transform: translate(0,0) scale(1); }
  50%  { transform: translate(18px,-22px) scale(1.06); }
}

/* ── FEATURED TOOL CARD (Escáner CV) ──────── */
.tool-card-featured {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: space-between; gap: 1.75rem;
  padding: 1.8rem 2.2rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(114,188,212,.13) 0%, rgba(45,108,150,.07) 100%);
  border: 1.5px solid rgba(114,188,212,.40);
  text-decoration: none; color: inherit;
  position: relative; overflow: hidden;
  transition: border-color .25s, box-shadow .25s, transform .2s;
  box-shadow: var(--surface-highlight), 0 0 0 1px rgba(114,188,212,.06) inset;
}
.tool-card-featured::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(108deg, transparent 28%, rgba(114,188,212,.07) 50%, transparent 72%);
  transform: translateX(-100%);
  animation: feat-sweep 4.5s ease-in-out infinite 2.5s;
  pointer-events: none;
}
@keyframes feat-sweep {
  0%,100% { transform: translateX(-100%); opacity: 0; }
  38% { opacity: 1; }
  62% { transform: translateX(100%); opacity: 0; }
}
.tool-card-featured:hover {
  border-color: rgba(114,188,212,.75);
  box-shadow: 0 0 0 1px rgba(114,188,212,.24), 0 0 56px rgba(114,188,212,.18), 0 10px 36px rgba(0,0,0,.32);
  transform: translateY(-3px);
}
.feat-body { flex: 1; }
.feat-emoji { font-size: 1.6rem; line-height: 1; margin-bottom: .6rem; display: block; }
.feat-title {
  font-weight: 800; font-size: 1.05rem; color: var(--accent-2);
  letter-spacing: -.02em; margin-bottom: .35rem;
}
.feat-desc { font-size: .82rem; color: var(--muted); line-height: 1.6; max-width: 420px; }
.feat-cta  {
  font-size: .8rem; font-weight: 700; color: var(--accent); margin-top: .6rem;
  display: inline-flex; align-items: center; gap: .3rem;
}
.feat-arrow { font-size: 1.1rem; color: var(--accent); flex-shrink: 0; transition: transform .2s; }
.tool-card-featured:hover .feat-arrow { transform: translateX(5px); }
.hero-grid-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.index-hero-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
/* ── HERO EYEBROW ─────────────────────────── */
.hero-eyebrow {
  font-size: .65rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--mid); margin-bottom: 1.5rem;
  display: block;
}

.index-hero h1 {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  font-size: clamp(2.8rem, 6.5vw, 4.8rem);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1.04; margin-bottom: 1.25rem;
  background: linear-gradient(160deg, #eef5fc 55%, rgba(85,148,178,.72) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.index-hero p { font-size: .92rem; color: var(--muted); max-width: 440px; margin: 0 auto 2rem; line-height: 1.85; }
.index-hero-inner > p:last-child { margin-bottom: 0; }

.index-search { display: flex; gap: .4rem; max-width: 420px; margin: 0 auto; position: relative; }

.search-dropdown {
  display: none; position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: var(--ink-2); border: 1px solid var(--border-h);
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.55); z-index: 300;
  animation: dropdown-in .15s cubic-bezier(.22,1,.36,1);
}
.search-dropdown.open { display: block; }
@keyframes dropdown-in { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:none; } }

.search-result {
  display: flex; align-items: center; justify-content: space-between;
  padding: .7rem 1rem; text-decoration: none; color: inherit;
  border-bottom: 1px solid var(--border);
  transition: background .12s;
}
.search-result:last-child { border-bottom: none; }
.search-result:hover { background: var(--ink-3); }
.sr-name   { font-size: .86rem; font-weight: 500; color: var(--white); }
.sr-sector { font-size: .7rem; color: var(--mid); }
.search-no-result {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: 1rem 1.1rem; color: var(--mid);
}
.index-search input {
  flex: 1; background: rgba(255,255,255,.05); border: 1px solid var(--border);
  color: var(--white); border-radius: 8px; padding: .72rem 1.1rem;
  font-size: .88rem; font-family: inherit; outline: none;
  transition: border-color .2s;
}
.index-search input::placeholder { color: var(--mid); }
.index-search input:focus { border-color: rgba(107,172,197,.45); }
.index-search button {
  background: var(--accent); color: var(--ink); border: none; cursor: pointer;
  border-radius: 8px; padding: .72rem 1.25rem; font-weight: 700;
  font-family: inherit; font-size: .88rem;
  transition: opacity .15s;
}
.index-search button:hover { opacity: .88; }

.index-stats { display: flex; justify-content: center; gap: 2rem; margin-top: 1.5rem; flex-wrap: wrap; }
.index-stat-num {
  font-size: 1.15rem; font-weight: 700; color: var(--white);
  letter-spacing: -0.03em;
  background: linear-gradient(150deg, #f2f9fd 45%, rgba(100,168,196,.75) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.index-stat-lbl { font-size: .58rem; color: var(--mid); margin-top: .15rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }

/* ── VALUE PROP GRID (hero panel) ───────────────── */
.hip-vp-grid { display:grid; grid-template-columns:1fr 1fr; gap:.55rem; margin-top:.35rem; }
.hip-vp-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(107,172,197,.12);
  border-radius: 12px; padding: .9rem 1rem;
  transition: transform .22s cubic-bezier(.22,1,.36,1), border-color .22s, box-shadow .22s;
  cursor: default;
}
.hip-vp-item:hover {
  transform: translateY(-3px);
  border-color: rgba(107,172,197,.4);
  box-shadow: 0 8px 28px rgba(107,172,197,.12);
}
.hip-vp-icon {
  width: 28px; height: 28px;
  background: rgba(107,172,197,.1); border: 1px solid rgba(107,172,197,.18);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .55rem;
}
.hip-vp-icon svg { width:13px; height:13px; stroke:var(--accent-2); }
.hip-vp-title {
  font-size: .76rem; font-weight: 700; margin-bottom: .18rem;
  background: linear-gradient(135deg, #eef5fc 40%, var(--accent-2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hip-vp-desc { font-size: .63rem; color: var(--mid); line-height: 1.45; }

/* ── HERO INTELLIGENCE PANEL ─────────────────── */
.hero-intelligence-panel {
  display: flex; flex-direction: column; gap: .75rem;
  position: relative; z-index: 2;
}
.hip-card {
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.03) inset;
  overflow: hidden;
}
.hip-main { padding: 1.5rem 1.6rem; }
.hip-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.1rem;
}
.hip-label { font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--mid); }
.hip-live {
  font-size: .62rem; font-weight: 700; color: #28a07c;
  display: flex; align-items: center; gap: .3rem;
}
.hip-live::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: #28a07c; box-shadow: 0 0 6px #28a07c;
  animation: pulse-live 2s ease-in-out infinite;
}
@keyframes pulse-live { 0%,100%{opacity:1} 50%{opacity:.4} }
.hip-profession {
  font-size: .82rem; font-weight: 600; color: var(--muted); margin-bottom: 1rem;
}
.hip-comparison {
  display: flex; align-items: center; gap: .85rem; margin-bottom: .75rem;
}
.hip-val { font-size: 1.15rem; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.hip-current { color: var(--mid); }
.hip-market {
  background: linear-gradient(135deg, #eef5fc 40%, rgba(95,143,166,.75) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hip-arrow { color: var(--accent); font-size: 1rem; }
.hip-sublabel { font-size: .58rem; text-transform: uppercase; letter-spacing: .08em; color: var(--mid); margin-top: .2rem; }
.hip-gain {
  font-size: .78rem; font-weight: 700; color: #28a07c; margin-bottom: .9rem;
  padding: .25rem .6rem; background: rgba(40,160,124,.08); border-radius: 6px;
  border: 1px solid rgba(40,160,124,.15); display: inline-block;
}
.hip-bar-track {
  height: 3px; background: var(--ink-4); border-radius: 99px; margin-bottom: 1rem;
}
.hip-bar-fill {
  height: 100%; border-radius: 99px;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent-2));
  animation: bar-grow 1.4s cubic-bezier(.22,1,.36,1) both .4s;
  transform-origin: left;
}
@keyframes bar-grow { from{transform:scaleX(0)} to{transform:scaleX(1)} }
.hip-skills {
  display: flex; flex-wrap: wrap; gap: .35rem;
}
.hip-skills span {
  font-size: .65rem; font-weight: 600; color: var(--accent-2);
  background: var(--accent-dim); border: 1px solid rgba(95,143,166,.16);
  border-radius: 5px; padding: .22rem .55rem;
}
.hip-insight {
  padding: 1rem 1.4rem;
  display: flex; align-items: flex-start; gap: .75rem;
}
.hip-ai-badge {
  font-size: .58rem; font-weight: 800; letter-spacing: .05em; color: var(--ink);
  background: var(--accent-2); border-radius: 4px; padding: .18rem .42rem;
  flex-shrink: 0; margin-top: .05rem;
}
.hip-insight p { font-size: .78rem; color: var(--muted); line-height: 1.6; }
.hip-demand { padding: 1rem 1.4rem; }
.hip-demand-label {
  font-size: .6rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--mid); margin-bottom: .65rem;
}
.hip-demand-grid { display: flex; flex-direction: column; gap: .4rem; }
.hip-demand-item {
  font-size: .72rem; font-weight: 500; color: var(--muted);
  display: flex; align-items: center; gap: .5rem;
}
.hip-demand-item::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--mid); flex-shrink: 0;
}
.hip-demand-item.hip-alta { color: var(--text); }
.hip-demand-item.hip-alta::before { background: #28a07c; }

/* ── SOCIAL PROOF STRIP ──────────────────────── */
.social-proof {
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 1.1rem 1.5rem;
}
.sp-inner {
  max-width: 860px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.sp-item {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: .55rem 1rem; gap: .18rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
}
.sp-item:last-child { border-right: none; }
.sp-num {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: .95rem; font-weight: 700; letter-spacing: -.02em;
  color: rgba(238,245,252,.7);
}
.sp-label { font-size: .6rem; color: var(--mid); font-weight: 500; }

/* ── APPLE PRODUCT SECTIONS ──────────────────── */
.ps {
  min-height: 85vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 8rem 1.5rem 5rem;
  border-top: 1px solid var(--border);
  overflow: hidden; position: relative; text-align: center;
}
.ps.ps-alt {
  background: linear-gradient(180deg, rgba(22,36,56,.4) 0%, transparent 60%);
}
.ps-eyebrow {
  font-size: .6rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .16em; color: var(--accent);
  margin-bottom: 1.4rem; display: block;
}
.ps-headline {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 800; letter-spacing: -.04em; line-height: 1.1;
  max-width: 820px; margin: 0 auto .9rem;
  background: linear-gradient(150deg, #f2f9fd 50%, rgba(95,160,190,.75) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.ps-sub {
  font-size: .95rem; color: var(--muted); line-height: 1.8;
  max-width: 520px; margin: 0 auto 2.5rem;
}
.ps-actions {
  display: flex; gap: .75rem; flex-wrap: wrap;
  justify-content: center; margin-bottom: 4rem;
}
.ps-cta {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .88rem; font-weight: 700;
  background: var(--white); color: var(--ink);
  border-radius: 10px; padding: .8rem 1.8rem;
  text-decoration: none; letter-spacing: -.01em;
  transition: background .15s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(0,0,0,.22);
}
.ps-cta:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,.35); }
.ps-cta-ghost {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .88rem; font-weight: 600;
  color: var(--text); border: 1px solid var(--border-h);
  border-radius: 10px; padding: .8rem 1.8rem;
  text-decoration: none; letter-spacing: -.01em;
  transition: border-color .2s, color .2s;
}
.ps-cta-ghost:hover { border-color: var(--accent); color: var(--accent-2); }
.ps-mockup-wrap {
  width: 100%; max-width: 900px; position: relative;
}
.ps-mockup-wrap::after {
  content: ''; position: absolute; bottom: -30px; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 80px;
  background: radial-gradient(ellipse at center, rgba(95,143,166,.18) 0%, transparent 70%);
  filter: blur(25px); pointer-events: none;
}
.ps-mockup-inner {
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px; padding: 2rem;
  box-shadow: 0 40px 100px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.025) inset;
  font-size: .82rem; position: relative; z-index: 1;
}
.ps-mockup-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem;
}

/* ── LOYALTY TAX — Hero Section ──────────────── */
.ps-loyalty {
  background:
    radial-gradient(ellipse 80% 55% at 50% 30%, rgba(120,20,30,.2) 0%, transparent 65%),
    radial-gradient(ellipse 35% 40% at 15% 80%, rgba(80,15,20,.1) 0%, transparent 55%);
}
.ps-loyalty .ps-headline {
  background: linear-gradient(150deg, #f8e6e8 50%, rgba(200,80,95,.85) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.loyalty-counter-wrap {
  display: flex; flex-direction: column; align-items: center;
  margin: 0 auto 1.5rem; gap: .5rem;
}
.loyalty-counter-label {
  font-size: .6rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .14em; color: rgba(200,100,110,.7);
}
.loyalty-counter-num {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900; letter-spacing: -.05em; line-height: 1;
  color: #e34d5e;
  text-shadow: 0 0 80px rgba(220,60,75,.3), 0 0 25px rgba(220,60,75,.15);
}
.loyalty-counter-sub {
  font-size: .75rem; color: rgba(180,120,125,.65);
  max-width: 320px; text-align: center; line-height: 1.5;
}
.loyalty-years {
  display: flex; gap: .75rem; margin: 2rem auto 0;
  max-width: 680px; flex-wrap: wrap; justify-content: center;
}
.loyalty-year-pill {
  background: rgba(100,20,30,.35);
  border: 1px solid rgba(180,60,70,.2);
  border-radius: 12px; padding: .9rem 1.25rem;
  display: flex; flex-direction: column; gap: .2rem;
  align-items: center; min-width: 110px;
}
.loyalty-year-pill strong {
  font-size: 1.1rem; font-weight: 800; letter-spacing: -.03em; color: #d44050;
}
.loyalty-year-pill span {
  font-size: .6rem; text-transform: uppercase; letter-spacing: .1em;
  color: rgba(200,100,110,.55); font-weight: 600;
}
.ps-loyalty .ps-cta {
  background: #e34d5e; color: #fff;
  box-shadow: 0 4px 24px rgba(220,60,75,.35);
}
.ps-loyalty .ps-cta:hover {
  background: #ec5568; transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(220,60,75,.45);
}

/* ── NEGOTIATION SIMULATOR — Immersive ─────── */
.ps-negocia {
  background: linear-gradient(170deg, rgba(14,22,36,.9) 0%, var(--ink) 60%);
}
.neg-chat-wrap {
  display: grid; grid-template-columns: 1.8fr 1fr; gap: 0;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.025) inset;
  max-width: 900px; width: 100%; position: relative; z-index: 1;
}
.neg-chat-side {
  display: flex; flex-direction: column;
  border-right: 1px solid var(--border);
}
.neg-chat-header {
  padding: .85rem 1.25rem; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: .65rem;
  background: rgba(255,255,255,.015);
}
.neg-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--ink-4); border: 1px solid var(--border-h);
  display: flex; align-items: center; justify-content: center;
  font-size: .58rem; font-weight: 800; color: var(--mid); flex-shrink: 0;
}
.neg-avatar.me { background: rgba(95,143,166,.2); color: var(--accent-2); }
.neg-chat-name { font-size: .72rem; font-weight: 700; color: var(--text); }
.neg-chat-status {
  font-size: .6rem; color: var(--mid);
  display: flex; align-items: center; gap: .3rem;
}
.neg-chat-status::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: #28a07c; flex-shrink: 0;
}
.neg-chat-body {
  flex: 1; padding: 1.25rem; display: flex; flex-direction: column; gap: .7rem;
}
.neg-msg { display: flex; align-items: flex-start; gap: .55rem; }
.neg-msg.neg-me { flex-direction: row-reverse; }
.neg-bubble {
  max-width: 82%; padding: .55rem .85rem; border-radius: 10px;
  font-size: .73rem; line-height: 1.55; color: var(--muted);
}
.neg-bubble.them {
  background: var(--ink-3); border: 1px solid var(--border);
  border-bottom-left-radius: 3px;
}
.neg-bubble.me {
  background: rgba(95,143,166,.18); border: 1px solid rgba(95,143,166,.25);
  color: var(--text); border-bottom-right-radius: 3px;
}
.neg-typing {
  display: flex; gap: .3rem; align-items: center;
  padding: .48rem .75rem;
  background: var(--ink-3); border: 1px solid var(--border);
  border-radius: 10px; border-bottom-left-radius: 3px;
  align-self: flex-start;
}
.neg-typing-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--mid);
  animation: negBlink 1.3s infinite ease-in-out;
}
.neg-typing-dot:nth-child(2) { animation-delay: .22s; }
.neg-typing-dot:nth-child(3) { animation-delay: .44s; }
@keyframes negBlink {
  0%,60%,100% { opacity: .28; transform: scale(.8); }
  30% { opacity: 1; transform: scale(1.1); }
}
.neg-chat-input {
  padding: .7rem 1rem; border-top: 1px solid var(--border);
  display: flex; gap: .5rem; align-items: center;
  background: rgba(255,255,255,.01);
}
.neg-input-field {
  flex: 1; background: var(--ink-3); border: 1px solid var(--border-h);
  border-radius: 8px; padding: .45rem .75rem;
  font-size: .72rem; color: var(--mid); font-family: inherit;
}
.neg-send-btn {
  background: var(--accent-2); border-radius: 7px;
  padding: .45rem .85rem; font-size: .65rem; font-weight: 700;
  color: var(--ink); border: none; cursor: pointer; font-family: inherit;
  white-space: nowrap;
}
.neg-coaching-side {
  padding: 1.25rem; display: flex; flex-direction: column; gap: 1rem;
  background: rgba(255,255,255,.01);
}
.neg-coaching-title {
  font-size: .58rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--mid);
}
.neg-score-big {
  text-align: center; padding: .75rem 0;
  border-bottom: 1px solid var(--border);
}
.neg-score-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem; font-weight: 900; letter-spacing: -.05em;
  background: linear-gradient(135deg, #28a07c, var(--accent-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.neg-score-label {
  font-size: .62rem; color: var(--mid); font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em; margin-top: .1rem;
}

/* ── OFFER EVALUATOR — Verdict ──────────────── */
.ps-verdict-badge {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  background: rgba(196,77,90,.1); border: 1px solid rgba(196,77,90,.25);
  border-radius: 12px; padding: .85rem 1.25rem; margin-bottom: 1.25rem;
}
.ps-verdict-icon {
  font-size: 1.1rem;
}
.ps-verdict-text {
  font-size: .78rem; font-weight: 800; color: #c44d5a; letter-spacing: -.01em;
}
.ps-verdict-diff {
  font-size: .72rem; font-weight: 700;
  background: rgba(196,77,90,.12); border: 1px solid rgba(196,77,90,.2);
  border-radius: 6px; padding: .2rem .55rem; color: #c44d5a; margin-left: auto;
}

@media (max-width: 860px) {
  .neg-chat-wrap { grid-template-columns: 1fr; }
  .neg-chat-side { border-right: none; border-bottom: 1px solid var(--border); }
  .neg-coaching-side { display: none; }
}

/* ── TOOL MOCKUP CARDS ───────────────────────── */
.tmc-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: .85rem; margin-bottom: .85rem;
  border-bottom: 1px solid var(--border);
}
.tmc-title { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--mid); }
.tmc-status {
  font-size: .62rem; font-weight: 700; border-radius: 5px;
  padding: .18rem .5rem;
}
.tmc-status.ok { background: rgba(40,160,124,.12); color: #28a07c; border: 1px solid rgba(40,160,124,.2); }
.tmc-status.warn { background: rgba(196,137,74,.12); color: #c4894a; border: 1px solid rgba(196,137,74,.2); }
.tmc-status.ai { background: var(--accent-dim); color: var(--accent-2); border: 1px solid rgba(95,143,166,.2); }
.tmc-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: .55rem 0; border-bottom: 1px solid var(--border);
}
.tmc-row:last-of-type { border-bottom: none; }
.tmc-lbl { color: var(--mid); font-size: .75rem; }
.tmc-val { font-weight: 700; color: var(--white); }
.tmc-val.good { color: #28a07c; }
.tmc-val.bad { color: #c44d5a; }
.tmc-val.accent { color: var(--accent-2); }
.tmc-bigval {
  font-size: 1.5rem; font-weight: 800; letter-spacing: -.04em;
  background: linear-gradient(135deg, #eef5fc 45%, rgba(95,143,166,.75) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin: .5rem 0 .3rem;
}
.tmc-bar-track { height: 3px; background: var(--ink-4); border-radius: 99px; margin: .6rem 0; }
.tmc-bar-fill {
  height: 100%; border-radius: 99px;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent-2));
}
.tmc-chips { display: flex; flex-wrap: wrap; gap: .3rem; margin-top: .65rem; }
.tmc-chip {
  font-size: .62rem; font-weight: 600; border-radius: 5px;
  padding: .18rem .5rem;
}
.tmc-chip.positive { background: rgba(40,160,124,.10); color: #28a07c; border: 1px solid rgba(40,160,124,.18); }
.tmc-chip.neutral { background: var(--accent-dim); color: var(--accent-2); border: 1px solid rgba(95,143,166,.16); }
.tmc-ai-insight {
  margin-top: .85rem; padding: .75rem; border-radius: 10px;
  background: rgba(255,255,255,.025); border: 1px solid var(--border);
  display: flex; gap: .55rem; align-items: flex-start;
}
.tmc-ai-tag {
  font-size: .55rem; font-weight: 800; background: var(--accent-2); color: var(--ink);
  border-radius: 4px; padding: .15rem .4rem; flex-shrink: 0; margin-top: .05rem;
}
.tmc-ai-text { font-size: .72rem; color: var(--muted); line-height: 1.55; }
.tmc-list { list-style: none; display: flex; flex-direction: column; gap: .45rem; margin-top: .65rem; }
.tmc-list li {
  font-size: .74rem; color: var(--muted); display: flex; align-items: flex-start; gap: .5rem; line-height: 1.5;
}
.tmc-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); margin-top: .42rem; flex-shrink: 0; }
.tmc-score-row { display: flex; align-items: center; gap: .75rem; margin: .6rem 0; }
.tmc-score-bar { flex: 1; height: 4px; background: var(--ink-4); border-radius: 99px; overflow: hidden; }
.tmc-score-fill { height: 100%; background: linear-gradient(90deg, var(--accent-deep), #28a07c); border-radius: 99px; }
.tmc-score-num { font-size: .72rem; font-weight: 800; color: var(--white); }
.tmc-chat { display: flex; flex-direction: column; gap: .55rem; }
.tmc-bubble {
  max-width: 85%; padding: .55rem .8rem; border-radius: 10px;
  font-size: .72rem; line-height: 1.5; color: var(--muted);
}
.tmc-bubble.them {
  background: var(--ink-3); border: 1px solid var(--border); align-self: flex-start;
  border-bottom-left-radius: 3px;
}
.tmc-bubble.me {
  background: rgba(95,143,166,.16); border: 1px solid rgba(95,143,166,.22);
  align-self: flex-end; color: var(--text); border-bottom-right-radius: 3px;
}
.tmc-speaker { font-size: .58rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--mid); margin-bottom: .15rem; }

@media (max-width: 860px) {
  .sp-inner { grid-template-columns: repeat(2,1fr); }
  .ps { min-height: auto; padding: 5rem 1.5rem 4rem; }
  .ps-headline { letter-spacing: -.03em; }
  .ps-actions { flex-direction: column; align-items: center; }
  .ps-cta, .ps-cta-ghost { width: 100%; justify-content: center; }
  .ps-mockup-grid { grid-template-columns: 1fr; }
  .loyalty-counter-num { font-size: clamp(3rem, 15vw, 5.5rem); }
  .loyalty-years { gap: .5rem; }
  .loyalty-year-pill { min-width: 90px; padding: .75rem 1rem; }
  .social-proof { padding: 2rem 1.5rem; }
}

/* ── MISSION SECTION ─────────────────────────── */
.mission-section {
  position: relative; overflow: hidden;
  padding: 5rem 1.5rem 3.5rem;
  background: var(--ink-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.mission-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(80,130,160,.09) 0%, transparent 65%),
    radial-gradient(ellipse 30% 40% at 10% 90%, rgba(60,110,140,.05) 0%, transparent 60%);
}
.mission-inner {
  max-width: 820px; margin: 0 auto; text-align: center;
  position: relative; z-index: 1;
}
.mission-label {
  display: inline-block; font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; color: var(--mid);
  margin-bottom: 1.5rem;
}
.mission-headline {
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 900; letter-spacing: -2.5px; line-height: 1.06;
  margin-bottom: 1.4rem;
  background: linear-gradient(150deg, #f2f9fd 45%, rgba(95,160,190,.78) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.mission-sub {
  font-size: .9rem; color: var(--muted); line-height: 1.85;
  max-width: 560px; margin: 0 auto 3.5rem;
}
.mission-features {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem;
  text-align: left;
}
.mission-feature {
  background: var(--ink-3); border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.5rem 1.4rem;
  display: flex; flex-direction: column; gap: .65rem;
  transition: border-color .25s, background .25s, transform .25s, box-shadow .25s;
}
.mission-feature:hover {
  border-color: rgba(107,172,197,.45);
  background: rgba(107,172,197,.06);
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(107,172,197,.15), 0 8px 28px rgba(0,0,0,.3);
}
.mf-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--accent-dim); border: 1px solid rgba(107,172,197,.15); display: flex; align-items: center; justify-content: center; }
.mf-icon .svg-icon { width: 15px; height: 15px; }
.mf-title { font-size: .88rem; font-weight: 700; color: var(--white); letter-spacing: -.01em; }
.mf-text  { font-size: .78rem; color: var(--muted); line-height: 1.7; }

@media (max-width: 640px) {
  .mission-features { grid-template-columns: 1fr; }
  .mission-headline { letter-spacing: -1.5px; }
}

/* ── INDEX SECTION ───────────────────────────── */
.index-section { max-width: 1100px; margin: 3.5rem auto 1rem; padding: 0 1.5rem; }
.section-title {
  font-size: 1.1rem; font-weight: 800; letter-spacing: -.4px; margin-bottom: 1.75rem; color: var(--white);
  padding-left: .7rem; border-left: 3px solid var(--accent);
  line-height: 1.25;
}

/* ── SECTOR SECTION GLOW ─────────────────────── */
.sector-section-wrap {
  position: relative;
}
.sector-glow-canvas {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.sector-section-wrap .index-section {
  position: relative;
  z-index: 1;
}

/* ── SECTOR TILES GRID ───────────────────────── */
.sector-tiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.sector-tile {
  background: var(--ink-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.6rem 1.8rem;
  display: flex; flex-direction: row;
  align-items: center; justify-content: space-between;
  gap: 1rem;
  cursor: pointer; text-align: left; font-family: inherit;
  position: relative; overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  box-shadow: var(--surface-highlight), 0 1px 8px rgba(0,0,0,.2);
}
.sector-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(140,170,187,.28);
  box-shadow: var(--surface-highlight), 0 12px 40px rgba(0,0,0,.4), 0 0 0 1px rgba(107,172,197,.22);
}

.tile-left { display: flex; flex-direction: column; gap: .35rem; }

.tile-title {
  font-size: 1.05rem;
  font-weight: 700; letter-spacing: -.3px; line-height: 1.2;
  color: var(--text);
}

.tile-count {
  font-size: .72rem; color: var(--mid);
}

.tile-arrow {
  width: 16px; height: 16px; flex-shrink: 0;
  color: var(--mid);
  transition: transform .25s cubic-bezier(.22,1,.36,1), color .2s;
}
.sector-tile:hover .tile-arrow { transform: translateX(4px); color: var(--accent); }


/* ── PROFESSION CARDS ────────────────────────── */
.professions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: .75rem;
}

.profession-card {
  background: var(--ink-2);
  border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.25rem 1.35rem;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: .5rem;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  position: relative; overflow: hidden;
  box-shadow: var(--surface-highlight), 0 1px 8px rgba(0,0,0,.2);
}
/* sector accent top bar */
.profession-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--sector-accent, rgba(255,255,255,.06));
  border-radius: var(--r) var(--r) 0 0;
}
/* Vercel/Linear hover: micro-lift + accent ring */
.profession-card:hover {
  transform: translateY(-2px);
  border-color: rgba(140,170,187,.26);
  box-shadow: var(--surface-highlight), 0 12px 40px rgba(0,0,0,.45), 0 0 0 1px rgba(107,172,197,.22);
}

/* ── SECTOR ACCENT COLORS (unified slate) ── */
[data-sector] { --sector-accent: rgba(107,172,197,.75); }
[data-sector="administracion"] { --sector-accent: rgba(140,165,185,.55); }

/* ── SALARY MINI BAR (on profession cards) ───── */
.sal-mini-track {
  height: 3px; background: var(--ink-4);
  border-radius: 999px; margin: .4rem 0 .15rem;
  position: relative;
}
.sal-mini-fill {
  position: absolute; top: 0; height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent-2));
  box-shadow: 0 0 5px rgba(107,172,197,.4);
}
.sal-mini-labels {
  display: flex; justify-content: space-between;
  font-size: .6rem; color: var(--mid); margin-bottom: .1rem;
}

.card-name { font-size: .92rem; font-weight: 600; color: var(--white); letter-spacing: -.01em; line-height: 1.3; }
.card-salary { font-size: .78rem; color: var(--mid); font-weight: 400; }

.card-meta { display: flex; align-items: center; gap: .5rem; margin-top: .1rem; }
.demand-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.demand-dot.alta   { background: var(--green); }
.demand-dot.media  { background: var(--orange); }
.demand-dot.baja   { background: var(--red); }
.demand-text { font-size: .72rem; color: var(--mid); font-weight: 500; }
.card-trend  { font-size: .72rem; color: var(--mid); margin-left: auto; }

/* Recursos icon */
.rec-icon {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 8px;
  background: var(--ink-3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.rec-icon .svg-icon { width: 15px; height: 15px; }

/* ── CITY COMPARISON ─────────────────────────── */
.city-sal-list { display: flex; flex-direction: column; gap: .35rem; }
.city-sal-row {
  display: grid; grid-template-columns: 90px 1fr 110px 48px;
  align-items: center; gap: .6rem; padding: .5rem .4rem;
  border-radius: 8px; text-decoration: none; color: inherit;
  transition: background .15s;
}
.city-sal-row:hover { background: var(--ink-3); }
.city-sal-name { font-size: .8rem; font-weight: 600; color: var(--white); }
.city-sal-bar-wrap { height: 6px; background: var(--ink-3); border-radius: 3px; overflow: hidden; }
.city-sal-bar { height: 100%; background: var(--accent); border-radius: 3px; transition: width .6s ease; }
.city-sal-val { font-size: .78rem; color: var(--mid); text-align: right; }
.city-sal-pct { font-size: .72rem; font-weight: 700; text-align: right; }
.city-pos { color: var(--green); }
.city-neg { color: var(--red); }

/* ── FACTOR LIST ─────────────────────────────── */
.factor-list { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.factor-item {
  font-size: .82rem; color: var(--mid); line-height: 1.5;
  padding-left: 1.1rem; position: relative;
}
.factor-item::before {
  content: "▸"; position: absolute; left: 0;
  color: var(--accent); font-size: .7rem; top: 2px;
}

/* ── FAQ ─────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); padding: 0; list-style: none; }
.faq-item:last-child { border-bottom: none; }
/* <details> reset */
details.faq-item { display: block; }
details.faq-item summary { list-style: none; }
details.faq-item summary::-webkit-details-marker { display: none; }
.faq-q {
  font-size: .88rem; font-weight: 700; color: var(--white);
  padding: .9rem 1.6rem .9rem 0; cursor: pointer; position: relative;
  display: block;
}
.faq-q::after {
  content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.1rem; font-weight: 400; color: var(--accent); transition: transform .2s;
}
details[open] .faq-q::after { content: '−'; }
.faq-a { font-size: .8rem; color: var(--mid); line-height: 1.6; padding-bottom: .9rem; }

/* ── SALARIOS INTERNACIONALES ────────────────── */
.intl-list { display: flex; flex-direction: column; gap: .2rem; }
.intl-row {
  display: grid;
  grid-template-columns: 28px 1fr 120px 90px;
  align-items: center; gap: .75rem;
  padding: .55rem .4rem; border-radius: 8px; transition: background .15s;
}
.intl-row:hover { background: var(--ink-3); }
.intl-flag  { font-size: 1.3rem; line-height: 1; text-align: center; }
.intl-info  { min-width: 0; }
.intl-country { font-size: .85rem; font-weight: 600; color: var(--white); }
.intl-note  { font-size: .7rem; color: var(--mid); line-height: 1.4; margin-top: .1rem; }
.intl-bar-wrap { }
.intl-sal-col { display: flex; flex-direction: column; align-items: flex-end; gap: .1rem; }
.intl-sal  { font-size: .82rem; font-weight: 700; color: var(--white); white-space: nowrap; }
.intl-pct  { font-size: .72rem; font-weight: 700; }

@media (max-width: 640px) {
  .intl-row { grid-template-columns: 26px 1fr 70px; gap: .5rem; }
  .intl-bar-wrap { display: none; }
  .intl-note { display: none; }
}

/* ── COMPARATIVAS ────────────────────────────── */
.cmp-list { display: flex; flex-direction: column; gap: .6rem; margin-top: .5rem; }
.cmp-row {
  display: grid; grid-template-columns: 40px 1fr 80px 1fr 110px;
  align-items: center; gap: .75rem; padding: .6rem .5rem;
  border-radius: 10px; transition: background .15s;
}
.cmp-row:hover { background: var(--ink-3); }
.cmp-rank { font-size: 1.1rem; text-align: center; }
.cmp-name { font-weight: 600; font-size: .88rem; color: var(--white); text-decoration: none; }
.cmp-name:hover { color: var(--accent); }
.cmp-sector { font-size: .73rem; color: var(--mid); }
.cmp-bar-wrap { }
.cmp-sal { font-size: .82rem; font-weight: 700; color: var(--accent); text-align: right; white-space: nowrap; }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 768px) {
  .nav-links, .nav-auth { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 640px) {
  .sal-row { grid-template-columns: 60px 1fr; }
  .sal-amount { display: none; }
  .kpi-row { grid-template-columns: repeat(3, 1fr); gap: .4rem; }
  .kpi-value { font-size: .78rem; line-height: 1.35; }
  .kpi-label { font-size: .62rem; }
  .hero h1 { font-size: clamp(1.9rem, 8vw, 2.8rem); letter-spacing: -1.5px; }
  .index-hero { min-height: 0; padding-top: 5.5rem; padding-bottom: 1rem; align-items: flex-start; }
  .index-hero h1 { font-size: clamp(2.1rem, 10vw, 3.2rem); letter-spacing: -2px; }
  .quick-nav-section { padding-top: 1.5rem !important; }
  .index-stats { gap: 1.75rem; }
  .sector-tiles-grid { grid-template-columns: 1fr; }
  .sector-tile { padding: 1.3rem 1.4rem; }
  .panel-inner { padding: 0 .75rem 1.25rem; }
  .professions-grid { grid-template-columns: 1fr; }
  .index-section { padding: 0 1rem; }
  .city-sal-row { grid-template-columns: 75px 1fr 85px 40px; gap: .35rem; }
  .city-sal-val { font-size: .72rem; }
  .faq-q { font-size: .84rem; }
  .faq-a { font-size: .76rem; }
  /* cmp-row en móvil: ocultamos columnas auxiliares */
  .cmp-row { grid-template-columns: 36px 1fr 90px; gap: .4rem; }
  .cmp-row .cmp-bar-wrap { display: none; }
  /* En móvil las animaciones de entrada se deshabilitan */
  .reveal, .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; }
  .stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ── Top 10 ranking (index page) ────────────────────────── */
.top10-list { padding: 0; overflow: hidden; }
.top10-row {
  display: grid;
  grid-template-columns: 36px 1fr 120px 130px 20px;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1.25rem;
  text-decoration: none;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.top10-row:last-child { border-bottom: none; }
.top10-row:hover { background: var(--accent-dim); }
.top10-rank { font-size: .75rem; font-weight: 800; color: var(--mid); text-align: center; }
.top10-row:nth-child(1) .top10-rank { color: #f59e0b; }
.top10-row:nth-child(2) .top10-rank { color: var(--mid); }
.top10-row:nth-child(3) .top10-rank { color: #cd7f32; }
.top10-name { font-size: .9rem; font-weight: 600; }
.top10-bar-wrap { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.top10-bar { height: 100%; background: linear-gradient(90deg, var(--accent-deep), var(--accent-2)); border-radius: 3px; }
.top10-sal { font-size: .82rem; color: var(--accent-2); font-weight: 600; text-align: right; }
.section-sub { margin-top: -.5rem; }

@media (max-width: 640px) {
  .top10-row { grid-template-columns: 28px 1fr 90px; gap: .5rem; }
  .top10-bar-wrap { display: none; }
}

/* ── Blog filters ───────────────────────────────────────── */
.blog-filters {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-bottom: .75rem;
}
.blog-filter-bar {
  display: flex; flex-direction: column; gap: .6rem;
  margin-bottom: 1.25rem;
}
.blog-toggle-row {
  display: flex; gap: .5rem;
}
.blog-group-toggle {
  display: flex; align-items: center; gap: .35rem;
  padding: .45rem 1rem;
  border-radius: var(--r);
  font-size: .78rem; font-weight: 700;
  border: 1px solid var(--border);
  background: var(--ink-2); color: var(--mid);
  cursor: pointer; font-family: inherit;
  transition: border-color .2s, color .2s, background .2s;
}
.blog-group-toggle:hover { border-color: var(--border-h); color: var(--text); }
.blog-group-toggle.open  { border-color: var(--accent); color: var(--accent-2); background: var(--ink-3); }
.bgt-arrow { font-size: .65rem; transition: none; }
.blog-filter-pills {
  display: flex; flex-wrap: wrap; gap: .4rem; padding-top: .1rem;
}
/* ── CHATBOT WIDGET ─────────────────────────── */
.chat-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 9998;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--accent); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(107,172,197,.35);
  transition: transform .2s, box-shadow .2s;
}
.chat-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(107,172,197,.50); }
.chat-btn svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.chat-panel {
  position: fixed; bottom: 86px; right: 24px; z-index: 9999;
  width: 320px; max-height: 480px;
  background: var(--ink-3); border: 1px solid var(--border-h);
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,.6);
  display: flex; flex-direction: column;
  transform: translateY(12px) scale(.97); opacity: 0; pointer-events: none;
  transition: transform .22s cubic-bezier(.34,1.56,.64,1), opacity .18s;
}
.chat-panel.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: all; }
.chat-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 1rem .75rem;
  border-bottom: 1px solid var(--border);
}
.chat-header-left { display: flex; align-items: center; gap: .5rem; }
.chat-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.chat-title { font-size: .88rem; font-weight: 700; color: var(--text); }
.chat-sub { font-size: .72rem; color: var(--mid); margin-top: .1rem; }
.chat-close { background: none; border: none; cursor: pointer; color: var(--mid); font-size: 1.1rem; padding: .2rem; line-height: 1; transition: color .15s; }
.chat-close:hover { color: var(--text); }
.chat-search-wrap { padding: .75rem 1rem .5rem; }
.chat-search {
  width: 100%; padding: .55rem .85rem;
  background: var(--ink-2); border: 1px solid var(--border);
  border-radius: 10px; color: var(--text); font-size: .86rem;
  outline: none; font-family: inherit;
  transition: border-color .15s;
}
.chat-search:focus { border-color: var(--accent); }
.chat-search::placeholder { color: var(--mid); }
.chat-body { flex: 1; overflow-y: auto; padding: .25rem 1rem .75rem; }
.chat-body::-webkit-scrollbar { width: 4px; }
.chat-body::-webkit-scrollbar-track { background: transparent; }
.chat-body::-webkit-scrollbar-thumb { background: var(--border-h); border-radius: 4px; }
.chat-shortcuts { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .75rem; }
.chat-shortcut {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .3rem .7rem; border-radius: 20px;
  font-size: .76rem; font-weight: 600;
  border: 1px solid var(--border); background: var(--ink-2);
  color: var(--mid); text-decoration: none; cursor: pointer;
  transition: border-color .15s, color .15s;
  white-space: nowrap;
}
.chat-shortcut:hover { border-color: var(--accent); color: var(--accent-2); }
.chat-results { display: flex; flex-direction: column; gap: .3rem; }
.chat-result {
  display: flex; align-items: center; justify-content: space-between;
  padding: .55rem .75rem; border-radius: 10px;
  border: 1px solid var(--border); background: var(--ink-2);
  text-decoration: none; transition: border-color .15s;
}
.chat-result:hover { border-color: var(--accent); }
.chat-result-name { font-size: .82rem; font-weight: 600; color: var(--text); }
.chat-result-sal { font-size: .74rem; color: var(--accent-2); }
.chat-empty { font-size: .8rem; color: var(--mid); text-align: center; padding: 1rem 0; }
@media (max-width: 480px) {
  .chat-panel { width: calc(100vw - 32px); right: 16px; bottom: 80px; }
  .chat-btn { right: 16px; bottom: 16px; }
}

/* ── RESOURCE LINKS ─────────────────────────── */
.resource-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: .85rem;
}
@media (max-width: 560px) { .resource-grid { grid-template-columns: 1fr; } }
.resource-section-label {
  display: flex; align-items: center; gap: .4rem;
  font-size: .78rem; font-weight: 700;
  color: var(--muted);
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: .5rem;
}
.resource-section-label .svg-icon { width: 14px; height: 14px; }
.resource-links { display: flex; flex-wrap: wrap; gap: .4rem; }
.resource-link {
  display: inline-block;
  padding: .3rem .72rem;
  border-radius: 8px;
  font-size: .76rem; font-weight: 600;
  border: 1px solid var(--border);
  background: var(--ink-2);
  color: var(--mid);
  text-decoration: none;
  transition: border-color .15s, color .15s;
  white-space: nowrap;
}
.resource-link:hover       { border-color: var(--accent);  color: var(--accent-2); }
.resource-link.resource-job:hover { border-color: var(--green); color: var(--green); }
.adzuna-job {
  display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap;
  padding: .5rem .75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--ink-2);
  text-decoration: none;
  font-size: .8rem;
  transition: border-color .15s;
}
.adzuna-job:hover    { border-color: var(--accent); }
.adzuna-title        { color: var(--text); font-weight: 600; flex: 1; min-width: 120px; }
.adzuna-co           { color: var(--mid); font-size: .74rem; }
.adzuna-loc          { color: var(--mid); font-size: .74rem; }

.blog-filter-btn {
  padding: .45rem 1rem;
  border-radius: var(--r);
  font-size: .78rem; font-weight: 600;
  border: 1px solid var(--border);
  background: var(--ink-2);
  color: var(--mid);
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
  font-family: inherit;
}
.blog-filter-btn:hover {
  border-color: var(--border-h);
  background: var(--ink-3);
  color: var(--text);
}
.blog-filter-btn.active {
  background: var(--ink-3);
  border-color: var(--accent);
  color: var(--accent-2);
}
