/* ==========================================================================
   Nirvex Talento · jobs.nirvex.es
   Dirección: "señal nocturna" — tinta casi negra, azul eléctrico Nirvex,
   tipografía editorial (Bricolage Grotesque + Instrument Serif itálica).
   ========================================================================== */

:root {
  --bg: #04060c;
  --bg-2: #070b16;
  --bg-3: #0c1224;
  --line: rgba(150, 170, 255, .09);
  --line-2: rgba(150, 170, 255, .16);
  --line-3: rgba(150, 170, 255, .28);
  --ink: #eef1fa;
  --ink-2: #c3cae0;
  --mut: #7f89a6;
  --mut-2: #5b6480;
  --acc: #2f6bff;
  --acc-hi: #7aa2ff;
  --acc-lo: #1b45cc;
  --glow: rgba(47, 107, 255, .5);
  --sig: #c6ff4a;
  --bad: #ff6b78;
  --r: 16px;
  --r-lg: 26px;
  --f-d: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  --f-s: "Instrument Serif", ui-serif, Georgia, serif;
  --f-b: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-m: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --ease: cubic-bezier(.2, .75, .1, 1);
  --wrap: 1320px;
  --gut: clamp(18px, 4vw, 48px);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--bg); scroll-padding-top: 90px; }
html.lock { overflow: hidden; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--f-b); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }
::selection { background: var(--acc); color: #fff; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }
img { display: block; }
button { font: inherit; color: inherit; }
strong, b { font-weight: 600; }
:focus-visible { outline: 2px solid var(--acc-hi); outline-offset: 3px; border-radius: 6px; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--gut); }
.sr, .skip:not(:focus) { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip:focus { position: fixed; top: 12px; left: 12px; z-index: 200; background: var(--acc); color: #fff; padding: 10px 16px; border-radius: 99px; }

/* Grano de película */
.grain { position: fixed; inset: -100%; z-index: 90; pointer-events: none; opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 7s steps(8) infinite; }
@keyframes grain { 0%,100% { transform: translate(0,0) } 25% { transform: translate(-3%,2%) } 50% { transform: translate(2%,-3%) } 75% { transform: translate(-2%,-1%) } }

/* ---------- Tipografía común ---------- */
.kicker { display: inline-flex; align-items: center; gap: 12px; font-family: var(--f-m); font-size: 12px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--acc-hi); }
.kicker::before { content: ""; width: 26px; height: 1px; background: currentColor; }
.h2 { font-family: var(--f-d); font-size: clamp(2.5rem, 5.6vw, 5.2rem); line-height: .95; letter-spacing: -.045em; font-weight: 650; margin: 18px 0 0; font-variation-settings: "opsz" 96; }
.h2 em, .h-display em, .jtitle em, .cta-big h2 em, .login-card h1 em {
  font-family: var(--f-s); font-style: italic; font-weight: 400; letter-spacing: -.015em;
  background: linear-gradient(100deg, #fff 0%, var(--acc-hi) 40%, var(--acc) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent; padding-right: .08em; }
.sec-lead { font-size: clamp(16px, 1.35vw, 19px); color: var(--ink-2); max-width: 44ch; margin: 0; }
.muted { color: var(--mut); }

/* ---------- Botones ---------- */
.btn { --h: 48px; position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px; height: var(--h); padding: 0 22px; border-radius: 99px; font-weight: 500; font-size: 15px; letter-spacing: -.01em; border: 0; cursor: pointer; isolation: isolate; overflow: hidden; white-space: nowrap; transition: transform .45s var(--ease), box-shadow .35s, background .3s, color .3s; }
.btn svg, .btn .arr { transition: transform .45s var(--ease); flex: none; }
.btn:hover svg:last-child, .btn:hover .arr { transform: translateX(3px); }
.btn-primary { background: var(--acc); color: #fff; box-shadow: 0 12px 34px -12px var(--glow), inset 0 1px 0 rgba(255,255,255,.22), inset 0 -1px 0 rgba(0,0,0,.2); }
.btn-primary::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(140px 70px at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.38), transparent 70%); opacity: 0; transition: opacity .3s; }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { box-shadow: 0 18px 44px -12px var(--glow), inset 0 1px 0 rgba(255,255,255,.3); }
.btn-ghost { background: rgba(255,255,255,.035); color: var(--ink); box-shadow: inset 0 0 0 1px var(--line-2); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,.08); box-shadow: inset 0 0 0 1px var(--line-3); }
.btn-sm { --h: 40px; padding: 0 16px; font-size: 14px; }
.btn-lg { --h: 58px; padding: 0 28px; font-size: 16px; }
.btn[data-magnetic] { will-change: transform; }

/* ---------- Navegación ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 60; border-bottom: 1px solid transparent; transition: background .4s, border-color .4s, backdrop-filter .4s, transform .5s var(--ease); }
.nav.is-scrolled { background: rgba(4,6,12,.72); backdrop-filter: blur(18px) saturate(150%); -webkit-backdrop-filter: blur(18px) saturate(150%); border-bottom-color: var(--line); }
.nav.is-hidden { transform: translateY(-100%); }
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 21px; width: auto; }
.brand-tag { font-family: var(--f-m); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-2); padding: 5px 10px; border: 1px solid var(--line-2); border-radius: 99px; line-height: 1; }
.nav-links { display: flex; gap: 2px; padding: 5px; border-radius: 99px; border: 1px solid var(--line); background: rgba(8,12,24,.4); backdrop-filter: blur(10px); }
.nav-links a { font-size: 14px; color: var(--ink-2); padding: 8px 16px; border-radius: 99px; transition: color .25s, background .25s; }
.nav-links a:hover { color: var(--ink); background: rgba(255,255,255,.06); }
.nav-count { display: inline-grid; place-items: center; min-width: 22px; height: 22px; padding: 0 6px; border-radius: 99px; background: rgba(255,255,255,.2); font-family: var(--f-m); font-size: 11px; }
.nav-count:empty { display: none; }
@media (max-width: 860px) { .nav-links { display: none; } .nav-in { height: 66px; } }

/* ---------- Animaciones de entrada ---------- */
.line { display: block; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.line > span { display: inline-block; }
.js .line > span { transform: translateY(108%); animation: rise 1.15s var(--ease) forwards; animation-delay: calc(var(--i) * .1s + .12s); }
.js .fade { opacity: 0; animation: fadeUp 1s var(--ease) forwards; animation-delay: var(--d, 0s); }
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); transition-delay: var(--d, 0s); }
.js .reveal.in { opacity: 1; transform: none; }
@keyframes rise { to { transform: none; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; padding-block: 130px 48px; overflow: hidden; isolation: isolate; }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -1; }
.hero-glow, .jhero-glow { position: absolute; z-index: -2; inset: -20% -10% auto; height: 110%; pointer-events: none;
  background:
    radial-gradient(38% 42% at 72% 28%, rgba(47,107,255,.34), transparent 70%),
    radial-gradient(26% 30% at 18% 12%, rgba(90,130,255,.16), transparent 70%),
    radial-gradient(20% 22% at 90% 70%, rgba(198,255,74,.05), transparent 70%);
  filter: blur(10px); animation: aurora 16s ease-in-out infinite alternate; }
@keyframes aurora { 0% { transform: translate3d(0,0,0) scale(1); } 100% { transform: translate3d(-4%,3%,0) scale(1.08); } }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 32%; background: linear-gradient(to bottom, transparent, var(--bg)); z-index: -1; pointer-events: none; }
.hero-in { width: 100%; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--f-m); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2); padding: 8px 15px 8px 12px; border: 1px solid var(--line-2); border-radius: 99px; background: rgba(8,12,24,.55); backdrop-filter: blur(10px); }
.live { width: 8px; height: 8px; border-radius: 50%; background: var(--sig); box-shadow: 0 0 0 0 rgba(198,255,74,.7); animation: ping 2.2s infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(198,255,74,.6); } 70% { box-shadow: 0 0 0 10px rgba(198,255,74,0); } 100% { box-shadow: 0 0 0 0 rgba(198,255,74,0); } }
.h-display { font-family: var(--f-d); font-weight: 700; font-size: clamp(3.1rem, 9.6vw, 10rem); line-height: .88; letter-spacing: -.055em; margin: 26px 0 0; font-variation-settings: "opsz" 96; text-wrap: balance; }
.h-display em { letter-spacing: -.03em; }
.hero-bottom { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 40px; align-items: end; margin-top: clamp(28px, 4vw, 52px); }
.hero-lead { font-size: clamp(17px, 1.45vw, 20px); color: var(--ink-2); max-width: 46ch; margin: 0; line-height: 1.55; }
.hero-lead strong { color: var(--ink); }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: clamp(40px, 5vw, 64px); border-top: 1px solid var(--line-2); }
.stat { padding: 22px 16px 0 0; }
.stat + .stat { padding-left: 20px; border-left: 1px solid var(--line); }
.stat b { display: block; font-family: var(--f-d); font-size: clamp(26px, 3vw, 42px); font-weight: 600; letter-spacing: -.035em; line-height: 1; margin-bottom: 8px; }
.stat > span { font-family: var(--f-m); font-size: 11.5px; color: var(--mut); letter-spacing: .08em; text-transform: uppercase; }
@media (max-width: 860px) {
  .hero { padding-top: 110px; }
  .hero-bottom { grid-template-columns: 1fr; gap: 26px; }
  .hero-cta { justify-content: flex-start; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { padding-left: 0; border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); margin-top: 20px; }
}
@media (max-width: 480px) {
  .hero-cta .btn { flex: 1 1 100%; }
  .eyebrow { font-size: 10.5px; letter-spacing: .06em; padding: 7px 12px 7px 10px; }
}

/* ---------- Marquesina ---------- */
.marquee { border-block: 1px solid var(--line); overflow: hidden; padding-block: 24px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; width: max-content; animation: marq 48s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: flex; align-items: center; gap: 44px; padding-right: 44px; font-family: var(--f-d); font-size: clamp(30px, 4.4vw, 60px); font-weight: 600; letter-spacing: -.04em; white-space: nowrap; color: transparent; -webkit-text-stroke: 1px rgba(160,180,255,.35); }
.marquee-item.solid { color: var(--ink); -webkit-text-stroke: 0; }
.marquee-item i { font-style: normal; font-size: .42em; color: var(--acc); -webkit-text-stroke: 0; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ---------- Secciones ---------- */
.section { position: relative; padding-block: clamp(90px, 11vw, 160px); }
.section-alt { background: linear-gradient(180deg, transparent, rgba(12,18,36,.55) 18%, rgba(12,18,36,.55) 82%, transparent); }
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 28px 40px; flex-wrap: wrap; margin-bottom: clamp(40px, 5vw, 64px); }

/* ---------- Filtros ---------- */
.filters { display: flex; gap: 4px; padding: 5px; border: 1px solid var(--line-2); border-radius: 99px; background: rgba(255,255,255,.02); }
.chip { border: 0; background: none; padding: 10px 17px; border-radius: 99px; font-size: 14px; color: var(--ink-2); cursor: pointer; display: flex; gap: 8px; align-items: center; transition: background .3s, color .3s; }
.chip:hover { color: var(--ink); }
.chip .n { font-family: var(--f-m); font-size: 11px; color: var(--mut); }
.chip[aria-pressed="true"] { background: var(--ink); color: var(--bg); }
.chip[aria-pressed="true"] .n { color: var(--mut-2); }

/* ---------- Listado de ofertas ---------- */
.jobs { border-top: 1px solid var(--line-2); }
.job-row { --sx: 50%; --sy: 50%; position: relative; display: grid; grid-template-columns: 56px minmax(0, 1fr) auto 66px; gap: 28px; align-items: center; padding: 40px 10px; border-bottom: 1px solid var(--line-2); isolation: isolate; transition: padding .6s var(--ease), opacity 1s var(--ease), transform 1s var(--ease); }
.job-row::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(47,107,255,.17), rgba(47,107,255,.05) 55%, transparent); transform: scaleX(0); transform-origin: left; transition: transform .8s var(--ease); }
.job-row::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(420px 200px at var(--sx) var(--sy), rgba(122,162,255,.16), transparent 70%); opacity: 0; transition: opacity .4s; }
.job-row:hover::before, .job-row:focus-visible::before { transform: scaleX(1); }
.job-row:hover::after { opacity: 1; }
.job-row:hover { padding-inline: 30px 18px; }
.job-row.is-hidden { display: none; }
.job-idx { font-family: var(--f-m); font-size: 13px; color: var(--mut); align-self: start; padding-top: 6px; }
.job-main { min-width: 0; }
.job-area { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; font-family: var(--f-m); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--mut); }
.tag { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 99px; border: 1px solid var(--line-2); color: var(--ink-2); font-family: var(--f-m); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; line-height: 1.2; }
.tag-sig { color: var(--sig); border-color: rgba(198,255,74,.3); background: rgba(198,255,74,.06); }
.job-title { display: block; font-family: var(--f-d); font-size: clamp(30px, 3.7vw, 54px); font-weight: 600; letter-spacing: -.045em; line-height: 1; margin: 14px 0 12px; transition: transform .6s var(--ease); }
.job-title em { display: inline-block; font-family: var(--f-s); font-style: italic; font-weight: 400; color: var(--acc-hi); letter-spacing: -.015em; }
.job-sum { display: block; color: var(--mut); max-width: 64ch; font-size: 15px; line-height: 1.55; }
.job-meta { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; text-align: right; }
.job-salary { font-family: var(--f-d); font-size: 23px; font-weight: 600; letter-spacing: -.025em; white-space: nowrap; line-height: 1.1; }
.job-salary small { display: block; margin-top: 4px; font-family: var(--f-m); font-size: 10.5px; font-weight: 400; letter-spacing: .1em; color: var(--mut); text-transform: uppercase; }
.job-mod { font-size: 13px; color: var(--ink-2); white-space: nowrap; }
.job-go { width: 66px; height: 66px; border-radius: 50%; border: 1px solid var(--line-3); display: grid; place-items: center; flex: none; transition: background .5s var(--ease), border-color .5s, box-shadow .5s, transform .6s var(--ease); }
.job-go svg { transition: transform .6s var(--ease); }
.job-row:hover .job-go, .ocard:hover .job-go { background: var(--acc); border-color: var(--acc); box-shadow: 0 12px 30px -8px var(--glow); }
.job-row:hover .job-go svg, .ocard:hover .job-go svg { transform: rotate(-45deg); }
.jobs-foot { margin: 30px 0 0; color: var(--mut); font-size: 15px; }
.jobs-foot a, .empty a { color: var(--ink); border-bottom: 1px solid var(--line-3); transition: border-color .3s; }
.jobs-foot a:hover, .empty a:hover { border-color: var(--acc-hi); }
.empty { padding: 60px 0; border-top: 1px solid var(--line-2); }
.empty h3 { font-family: var(--f-d); font-size: 32px; letter-spacing: -.03em; margin: 0 0 8px; }
@media (max-width: 900px) {
  .job-row { grid-template-columns: minmax(0, 1fr) auto; gap: 18px 16px; padding: 30px 2px; }
  .job-row:hover { padding-inline: 2px; }
  .job-idx { display: none; }
  .job-main { grid-column: 1; grid-row: 1; }
  .job-meta { grid-column: 1; grid-row: 2; flex-direction: row; flex-wrap: wrap; align-items: baseline; gap: 6px 16px; text-align: left; }
  .job-salary small { display: inline; margin: 0 0 0 6px; }
  .job-go { grid-column: 2; grid-row: 1; width: 48px; height: 48px; align-self: start; }
}

/* ---------- Bento ---------- */
.bento { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 14px; }
.tile { --sx: 50%; --sy: 50%; position: relative; grid-column: span 4; min-height: 300px; padding: 28px; border-radius: var(--r-lg); background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012)); border: 1px solid var(--line); overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; gap: 28px; isolation: isolate; }
.tile::after, .side-card::after, .ocard::after { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; pointer-events: none; background: radial-gradient(280px 200px at var(--sx) var(--sy), rgba(122,162,255,.75), transparent 65%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .4s; }
.tile:hover::after, .side-card:hover::after, .ocard:hover::after { opacity: 1; }
.tile h3 { font-family: var(--f-d); font-size: 27px; font-weight: 600; letter-spacing: -.035em; line-height: 1.05; margin: 0 0 10px; }
.tile p { color: var(--mut); margin: 0; font-size: 15px; line-height: 1.55; max-width: 44ch; }
.t-8 { grid-column: span 8; }
.t-6 { grid-column: span 6; }
.tile-blue { background: radial-gradient(130% 120% at 100% 0%, #4a84ff 0%, #2358e8 38%, #10277a 78%, #0a1647 100%); border-color: rgba(122,162,255,.3); box-shadow: 0 40px 90px -40px rgba(47,107,255,.6); }
.tile-blue p { color: rgba(235,240,255,.82); }
.tile-blue::before { content: ""; position: absolute; inset: 0; z-index: -1; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 32px 32px; -webkit-mask-image: radial-gradient(80% 90% at 90% 0%, #000, transparent); mask-image: radial-gradient(80% 90% at 90% 0%, #000, transparent); }
.big-num { display: block; font-family: var(--f-d); font-size: clamp(84px, 9vw, 140px); font-weight: 700; letter-spacing: -.07em; line-height: .82; background: linear-gradient(180deg, #fff 20%, rgba(255,255,255,.28)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.big-num small { font-size: .32em; letter-spacing: -.02em; margin-left: .08em; font-weight: 500; }
.week { display: flex; gap: 8px; }
.week span { flex: 1; height: 96px; border-radius: 14px; display: flex; align-items: flex-end; padding: 10px 12px; font-family: var(--f-m); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; transform-origin: bottom; }
.week .o { background: rgba(255,255,255,.95); color: #0b1c5c; box-shadow: 0 14px 30px -14px rgba(0,0,0,.5); }
.week .r { border: 1px dashed rgba(255,255,255,.45); color: rgba(255,255,255,.8); }
.js .reveal .week span { transform: scaleY(.15); opacity: 0; transition: transform .9s var(--ease), opacity .6s; transition-delay: calc(var(--i) * .08s + .3s); }
.js .reveal.in .week span { transform: none; opacity: 1; }
.term { font-family: var(--f-m); font-size: 12.5px; line-height: 1.75; background: rgba(0,0,0,.38); border: 1px solid var(--line-2); border-radius: 14px; padding: 14px 16px; color: var(--ink-2); min-height: 150px; }
.term-bar { display: flex; gap: 6px; margin-bottom: 10px; }
.term-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-3); }
.term .p { color: var(--acc-hi); }
.term .ok { color: var(--sig); }
.tl { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.caret { display: inline-block; width: 7px; height: 1.05em; margin-left: 3px; background: var(--ink); vertical-align: -2px; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.clock { width: 110px; height: 110px; color: var(--ink-2); }
.clock-arc { stroke-dasharray: 100; stroke-dashoffset: 100; transform: rotate(-90deg); transform-origin: center; transition: stroke-dashoffset 2s var(--ease) .3s; }
.reveal.in .clock-arc { stroke-dashoffset: 37.5; }
.clock-h { transform-origin: 60px 60px; transform: rotate(-90deg); transition: transform 2s var(--ease) .3s; }
.reveal.in .clock-h { transform: rotate(135deg); }
.badges, .sectors { display: flex; flex-wrap: wrap; gap: 8px; }
.badges span, .sectors span { padding: 8px 14px; border-radius: 99px; border: 1px solid var(--line-2); font-size: 13px; color: var(--ink-2); background: rgba(255,255,255,.02); transition: background .3s, border-color .3s, color .3s; }
.badges span:first-child { border-color: rgba(47,107,255,.5); color: var(--ink); background: rgba(47,107,255,.14); }
.sectors span { font-family: var(--f-d); font-size: clamp(16px, 1.6vw, 20px); letter-spacing: -.02em; padding: 10px 18px; }
.sectors span:hover { background: var(--acc); border-color: var(--acc); color: #fff; }
.js .reveal .sectors span { opacity: 0; transform: translateY(10px); transition: opacity .6s, transform .7s var(--ease), background .3s, color .3s; transition-delay: calc(var(--i) * .05s + .2s), calc(var(--i) * .05s + .2s), 0s, 0s; }
.js .reveal.in .sectors span { opacity: 1; transform: none; }
@media (max-width: 1000px) { .tile, .t-8, .t-6 { grid-column: span 6; } .t-8 { grid-column: span 12; } }
@media (max-width: 640px) { .bento { grid-template-columns: 1fr; } .tile, .t-8, .t-6 { grid-column: auto; min-height: 0; } }

/* ---------- Proceso ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); position: relative; }
.steps-rail { position: absolute; top: 27px; left: 27px; right: 0; height: 1px; background: var(--line-2); }
.steps-rail i { position: absolute; inset: 0; background: linear-gradient(90deg, var(--acc), var(--acc-hi), var(--sig)); box-shadow: 0 0 14px var(--glow); transform: scaleX(0); transform-origin: left; transition: transform 2.6s var(--ease) .2s; }
.steps.play .steps-rail i { transform: scaleX(1); }
.step { padding-right: 26px; position: relative; }
.step-dot { width: 54px; height: 54px; border-radius: 50%; background: var(--bg); border: 1px solid var(--line-3); display: grid; place-items: center; font-family: var(--f-m); font-size: 13px; position: relative; z-index: 1; transition: background .6s, border-color .6s, box-shadow .6s, color .6s; transition-delay: calc(var(--i) * .5s + .2s); }
.steps.play .step-dot { background: var(--acc); border-color: var(--acc); color: #fff; box-shadow: 0 0 0 7px rgba(47,107,255,.14), 0 10px 30px -8px var(--glow); }
.step-time { display: block; margin-top: 24px; font-family: var(--f-m); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--acc-hi); }
.step h3 { font-family: var(--f-d); font-size: 23px; letter-spacing: -.03em; margin: 6px 0 8px; font-weight: 600; line-height: 1.1; }
.step p { color: var(--mut); font-size: 15px; margin: 0; }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .steps-rail { top: 27px; bottom: 27px; left: 27px; right: auto; width: 1px; height: auto; }
  .steps-rail i { transform: scaleY(0); transform-origin: top; background: linear-gradient(180deg, var(--acc), var(--acc-hi), var(--sig)); }
  .steps.play .steps-rail i { transform: scaleY(1); }
  .step { display: grid; grid-template-columns: 54px 1fr; gap: 0 20px; padding: 0; }
  .step-time { margin-top: 4px; }
}

/* ---------- Oficina ---------- */
.office { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); gap: clamp(40px, 6vw, 90px); align-items: center; }
.office .sec-lead { margin: 24px 0 30px; }
.map { position: relative; aspect-ratio: 520 / 380; max-width: 100%; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-2); background: radial-gradient(90% 90% at 60% 70%, #0d1a3d, var(--bg-2)); box-shadow: 0 50px 100px -50px rgba(47,107,255,.45); }
.map svg { display: block; width: 100%; height: 100%; }
.pin-ring { transform-origin: 318px 262px; animation: pinPulse 2.4s var(--ease) infinite; }
@keyframes pinPulse { 0% { transform: scale(1); opacity: .9; } 100% { transform: scale(4.5); opacity: 0; } }
.map-coord { position: absolute; left: 18px; bottom: 16px; font-family: var(--f-m); font-size: 11px; letter-spacing: .12em; color: var(--mut); }
@media (max-width: 860px) { .office { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-wrap { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(40px, 6vw, 90px); align-items: start; }
.faq { border-top: 1px solid var(--line-2); }
.faq details { border-bottom: 1px solid var(--line-2); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 26px 0; font-family: var(--f-d); font-size: clamp(19px, 1.9vw, 24px); font-weight: 500; letter-spacing: -.025em; line-height: 1.2; transition: color .3s; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--acc-hi); }
.pm { position: relative; width: 34px; height: 34px; flex: none; border-radius: 50%; border: 1px solid var(--line-3); color: var(--ink); transition: background .4s, border-color .4s, transform .5s var(--ease); }
.pm::before, .pm::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 1.5px; background: currentColor; transform: translate(-50%, -50%); transition: transform .5s var(--ease); }
.pm::after { transform: translate(-50%, -50%) rotate(90deg); }
details[open] .pm { background: var(--acc); border-color: var(--acc); transform: rotate(180deg); }
details[open] .pm::after { transform: translate(-50%, -50%) rotate(0deg); }
.ans { overflow: hidden; }
.ans p { margin: 0; padding: 0 60px 26px 0; color: var(--ink-2); max-width: 64ch; }
@media (max-width: 860px) { .faq-wrap { grid-template-columns: 1fr; } .ans p { padding-right: 0; } }

/* ---------- CTA final ---------- */
.cta-big { position: relative; overflow: hidden; text-align: center; padding-block: clamp(110px, 14vw, 210px); border-top: 1px solid var(--line); isolation: isolate; }
.cta-glow { position: absolute; left: 50%; top: 55%; width: min(1100px, 130%); aspect-ratio: 2 / 1; transform: translate(-50%, -50%); z-index: -1; background: radial-gradient(50% 50% at 50% 50%, rgba(47,107,255,.42), transparent 70%); filter: blur(20px); }
.cta-big h2 { font-family: var(--f-d); font-size: clamp(3.6rem, 13vw, 13rem); line-height: .86; letter-spacing: -.065em; font-weight: 700; margin: 20px 0 42px; }
.cta-big .kicker::before { display: none; }

/* ---------- Pie ---------- */
.foot { border-top: 1px solid var(--line); padding-block: 44px; color: var(--mut); font-size: 14px; }
.foot-in { display: grid; grid-template-columns: 1fr auto; gap: 26px 40px; align-items: start; }
.foot-brand img { height: 18px; width: auto; margin-bottom: 14px; opacity: .9; }
.foot-brand p { margin: 0; line-height: 1.6; }
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; justify-content: flex-end; }
.foot-links a { color: var(--ink-2); transition: color .3s; }
.foot-links a:hover { color: var(--ink); }
.foot-legal { grid-column: 1 / -1; margin: 0; padding-top: 22px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--mut-2); }
@media (max-width: 700px) { .foot-in { grid-template-columns: 1fr; } .foot-links { justify-content: flex-start; } }
.p-job .foot { padding-bottom: 120px; }
@media (min-width: 981px) { .p-job .foot { padding-bottom: 44px; } }

/* ==========================================================================
   Detalle de oferta
   ========================================================================== */
.jhero { position: relative; padding-block: 140px 70px; overflow: hidden; isolation: isolate; }
.jhero-glow { height: 130%; }
.back { display: inline-flex; gap: 10px; align-items: center; color: var(--mut); font-size: 14px; transition: color .3s, gap .4s var(--ease); }
.back:hover { color: var(--ink); gap: 14px; }
.jtags { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin-top: 34px; }
.jnum { font-family: var(--f-m); font-size: 12px; color: var(--acc-hi); margin-right: 8px; }
.jtitle { font-family: var(--f-d); font-size: clamp(3rem, 8vw, 8.4rem); line-height: .9; letter-spacing: -.058em; font-weight: 700; margin: 22px 0 0; font-variation-settings: "opsz" 96; }
.jtitle em { letter-spacing: -.025em; }
.jsum { font-size: clamp(18px, 1.6vw, 22px); color: var(--ink-2); max-width: 54ch; margin: 30px 0 0; line-height: 1.5; }
.jcta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.facts { display: grid; grid-template-columns: 1.4fr repeat(4, minmax(0, 1fr)); gap: 1px; margin: 54px 0 0; border-radius: var(--r-lg); overflow: hidden; background: var(--line-2); border: 1px solid var(--line-2); }
.fact { background: rgba(7,11,22,.92); padding: 22px 22px 24px; min-width: 0; }
.fact dt { font-family: var(--f-m); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--mut); margin-bottom: 10px; }
.fact dd { margin: 0; font-size: 15px; font-weight: 500; line-height: 1.4; color: var(--ink); }
.fact-salary { background: linear-gradient(135deg, rgba(47,107,255,.35), rgba(16,39,122,.55)); }
.fact-salary dd { font-family: var(--f-d); font-size: clamp(24px, 2.4vw, 32px); letter-spacing: -.035em; font-weight: 650; line-height: 1.05; }
.fact-salary small { display: block; margin-top: 8px; font-family: var(--f-b); font-size: 12.5px; letter-spacing: 0; font-weight: 400; color: rgba(225,232,255,.75); line-height: 1.45; }
@media (max-width: 1100px) { .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); } .fact-salary { grid-column: 1 / -1; } }
@media (max-width: 480px) { .facts { grid-template-columns: 1fr; } }

.jbody { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: clamp(40px, 6vw, 100px); padding-bottom: clamp(80px, 10vw, 140px); align-items: start; }
.jsec { padding-block: 46px; border-top: 1px solid var(--line-2); }
.jsec:first-child { border-top: 0; padding-top: 10px; }
.jsec-h { display: flex; gap: 18px; align-items: baseline; margin-bottom: 24px; }
.jsec-h span { font-family: var(--f-m); font-size: 12px; color: var(--acc-hi); }
.jsec-h h2 { font-family: var(--f-d); font-size: clamp(28px, 3vw, 40px); letter-spacing: -.04em; font-weight: 600; margin: 0; line-height: 1; }
.jlead { font-size: clamp(18px, 1.5vw, 21px); color: var(--ink-2); line-height: 1.62; margin: 0; max-width: 62ch; }
.list { list-style: none; padding: 0; margin: 0; }
.list li { position: relative; padding: 15px 0 15px 42px; color: var(--ink-2); border-bottom: 1px dashed var(--line-2); font-size: 16.5px; line-height: 1.55; }
.list li:last-child { border-bottom: 0; }
.list li::before { content: "-"; position: absolute; left: 6px; top: 15px; color: var(--acc-hi); font-weight: 600; }
.list-check li::before, .list-plus li::before { content: ""; top: 17px; left: 0; width: 24px; height: 24px; border-radius: 50%; background: rgba(47,107,255,.16) center / 12px no-repeat; }
.list-check li::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237aa2ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5 10 17 19 7'/%3E%3C/svg%3E"); }
.list-plus li::before { background-color: rgba(198,255,74,.1); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c6ff4a' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E"); }
.stack { display: flex; flex-wrap: wrap; gap: 8px; }
.stack span { font-family: var(--f-m); font-size: 13px; padding: 9px 15px; border: 1px solid var(--line-2); border-radius: 12px; background: rgba(255,255,255,.025); color: var(--ink-2); transition: border-color .3s, color .3s, transform .4s var(--ease); }
.stack span:hover { border-color: var(--acc); color: var(--ink); transform: translateY(-2px); }
.mini-steps { list-style: none; counter-reset: ms; margin: 0; padding: 0; display: grid; gap: 0; }
.mini-steps li { counter-increment: ms; display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px dashed var(--line-2); }
.mini-steps li::before { content: counter(ms, decimal-leading-zero); font-family: var(--f-m); font-size: 12px; color: var(--acc-hi); }
.mini-steps b { font-weight: 500; }
.mini-steps span { font-family: var(--f-m); font-size: 12px; color: var(--mut); text-align: right; }
.jfinal { margin-top: 30px; padding: clamp(28px, 4vw, 44px); border-radius: var(--r-lg); background: radial-gradient(120% 140% at 100% 0%, #3a74ff, #1a3fb8 45%, #0b1a55); position: relative; overflow: hidden; }
.jfinal h2 { font-family: var(--f-d); font-size: clamp(30px, 3.4vw, 46px); letter-spacing: -.045em; margin: 0 0 8px; line-height: 1; }
.jfinal p { margin: 0 0 24px; color: rgba(235,240,255,.85); max-width: 46ch; }
.jfinal .btn-primary { background: #fff; color: #0b1c5c; box-shadow: 0 16px 40px -14px rgba(0,0,0,.5); }

.side { position: sticky; top: 100px; }
.side-card { --sx: 50%; --sy: 50%; position: relative; border-radius: var(--r-lg); padding: 30px; background: linear-gradient(180deg, rgba(22,34,70,.75), rgba(9,13,26,.85)); border: 1px solid var(--line-2); backdrop-filter: blur(14px); box-shadow: 0 50px 90px -50px rgba(0,0,0,.9), 0 30px 80px -50px rgba(47,107,255,.5); }
.side-k { font-family: var(--f-m); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--mut); }
.side-sal { font-family: var(--f-d); font-size: 40px; letter-spacing: -.045em; font-weight: 650; line-height: 1; margin-top: 8px; }
.side-note { color: var(--mut); font-size: 13.5px; margin: 10px 0 24px; line-height: 1.5; }
.side-card .btn { width: 100%; }
.side-meta { list-style: none; padding: 22px 0 0; margin: 24px 0 0; border-top: 1px solid var(--line); display: grid; gap: 14px; font-size: 14px; color: var(--ink-2); }
.side-meta li { display: flex; gap: 12px; align-items: flex-start; line-height: 1.4; }
.side-meta svg { flex: none; color: var(--acc-hi); margin-top: 1px; }
.side-foot { margin: 22px 0 0; padding-top: 18px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--mut); display: flex; gap: 8px; align-items: center; }
.side-foot::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--sig); flex: none; }
@media (max-width: 980px) { .jbody { grid-template-columns: 1fr; } .side { display: none; } }

.others-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 14px; }
.ocard { --sx: 50%; --sy: 50%; position: relative; display: flex; flex-direction: column; gap: 18px; min-height: 250px; padding: 26px; border-radius: var(--r-lg); border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01)); transition: transform .6s var(--ease), opacity 1s var(--ease); }
.ocard:hover { transform: translateY(-4px); }
.ocard-t { font-family: var(--f-d); font-size: 30px; font-weight: 600; letter-spacing: -.04em; line-height: 1.02; }
.ocard-t em { display: block; font-family: var(--f-s); font-style: italic; font-weight: 400; color: var(--acc-hi); letter-spacing: -.01em; }
.ocard-f { margin-top: auto; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: var(--f-d); font-size: 19px; font-weight: 600; letter-spacing: -.02em; }
.ocard-f small { font-family: var(--f-m); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--mut); font-weight: 400; }
.ocard .job-go { width: 48px; height: 48px; }

.mbar { display: none; }
@media (max-width: 980px) {
  .mbar { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; padding: 12px var(--gut) calc(12px + env(safe-area-inset-bottom)); background: rgba(4,6,12,.86); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-top: 1px solid var(--line-2); justify-content: space-between; align-items: center; gap: 14px; transform: translateY(110%); transition: transform .6s var(--ease); }
  .mbar.show { transform: none; }
  .mbar small { display: block; font-family: var(--f-m); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--mut); }
  .mbar b { font-family: var(--f-d); font-size: 19px; letter-spacing: -.025em; font-weight: 600; }
}

/* ---------- Panel de candidatura ---------- */
.js .apply { position: fixed; inset: 0; z-index: 100; visibility: hidden; pointer-events: none; transition: visibility 0s .8s; }
.js .apply.open { visibility: visible; pointer-events: auto; transition: none; }
.apply-scrim { position: absolute; inset: 0; background: rgba(2,4,10,.62); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); opacity: 0; transition: opacity .6s; }
.apply.open .apply-scrim { opacity: 1; }
.apply-panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(660px, 100%); background: var(--bg-2); border-left: 1px solid var(--line-2); display: flex; flex-direction: column; transform: translateX(104%); transition: transform .8s var(--ease); box-shadow: -40px 0 120px -20px rgba(0,0,0,.85); overflow: hidden; }
.apply-panel::before { content: ""; position: absolute; top: -200px; right: -200px; width: 500px; height: 500px; background: radial-gradient(closest-side, rgba(47,107,255,.2), transparent); pointer-events: none; }
.apply.open .apply-panel { transform: none; }
.apply-progress { height: 3px; background: var(--line); flex: none; }
.apply-progress i { display: block; height: 100%; width: var(--p, 0%); background: linear-gradient(90deg, var(--acc), var(--acc-hi), var(--sig)); transition: width .5s var(--ease); box-shadow: 0 0 12px var(--glow); }
.apply-head { position: relative; padding: 26px 32px 22px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; flex: none; }
.apply-head h2 { font-family: var(--f-d); font-size: clamp(26px, 3vw, 34px); letter-spacing: -.04em; line-height: 1.02; margin: 10px 0 0; font-weight: 650; }
.apply-head h2 em { display: inline-block; font-family: var(--f-s); font-style: italic; font-weight: 400; color: var(--acc-hi); letter-spacing: -.01em; }
.x-close { width: 44px; height: 44px; flex: none; border-radius: 50%; border: 1px solid var(--line-2); background: rgba(255,255,255,.03); display: grid; place-items: center; cursor: pointer; transition: background .3s, transform .5s var(--ease); }
.x-close:hover { background: rgba(255,255,255,.09); transform: rotate(90deg); }
.apply-body { position: relative; overflow-y: auto; padding: 8px 32px 44px; flex: 1; overscroll-behavior: contain; scrollbar-width: thin; scrollbar-color: var(--line-3) transparent; }
.no-js .apply { padding: 40px var(--gut) 100px; }
.no-js .apply-panel { position: relative; width: auto; max-width: 720px; margin: 0 auto; border: 1px solid var(--line-2); border-radius: var(--r-lg); transform: none; }
.no-js .apply-scrim, .no-js .x-close, .no-js .apply-progress { display: none; }
@media (max-width: 600px) { .apply-head { padding: 20px 20px 18px; } .apply-body { padding: 4px 20px 36px; } }

/* ---------- Formularios ---------- */
.f-sec { display: flex; align-items: center; gap: 12px; font-family: var(--f-m); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--mut); margin: 30px 0 14px; }
.f-sec::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.f-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.f-full { grid-column: 1 / -1; }
@media (max-width: 560px) { .f-grid { grid-template-columns: 1fr; } }
.field { position: relative; min-width: 0; }
.field > label:not(.drop):not(.check) { display: block; font-size: 13.5px; color: var(--ink-2); margin: 0 0 8px; font-weight: 500; }
.field .q-label { font-family: var(--f-d); font-size: 18px !important; letter-spacing: -.02em; line-height: 1.35; color: var(--ink) !important; font-weight: 500 !important; margin-bottom: 12px !important; }
.req { color: var(--acc-hi); }
.q-intro { margin: -2px 0 16px; font-size: 13.5px; color: var(--mut); }
.aform > .field + .field { margin-top: 20px; }
/* Texto trampa: invisible y fuera del árbol accesible, pero se copia al seleccionar el enunciado */
.trap { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.opt { color: var(--mut); font-weight: 400; }
.input { width: 100%; height: 52px; padding: 0 16px; border-radius: 14px; border: 1px solid var(--line-2); background: rgba(255,255,255,.03); color: var(--ink); font: inherit; font-size: 15px; outline: none; transition: border-color .25s, box-shadow .25s, background .25s; -webkit-appearance: none; appearance: none; }
textarea.input { height: auto; min-height: 110px; padding: 14px 16px; resize: vertical; line-height: 1.55; }
select.input { padding-right: 42px; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237f89a6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; }
select.input option { background: var(--bg-3); color: var(--ink); }
.input:hover { border-color: var(--line-3); }
.input:focus { border-color: var(--acc); background: rgba(47,107,255,.06); box-shadow: 0 0 0 4px rgba(47,107,255,.18); }
.input::placeholder { color: var(--mut-2); }
.field.err .input, .field.err .drop { border-color: var(--bad); box-shadow: 0 0 0 4px rgba(255,107,120,.12); }
.f-err { display: none; margin: 7px 0 0; color: #ff9aa4; font-size: 13px; }
.field.err .f-err { display: block; }
.field.ok .input { border-color: rgba(198,255,74,.35); }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.drop { position: relative; display: block; border: 1.5px dashed var(--line-3); border-radius: 18px; padding: 28px 20px; text-align: center; cursor: pointer; background: rgba(255,255,255,.015); transition: border-color .3s, background .3s, transform .4s var(--ease); color: var(--ink-2); font-size: 15px; }
.drop:hover, .drop.over { border-color: var(--acc); background: rgba(47,107,255,.07); }
.drop.over { transform: scale(1.01); }
.drop input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.drop b { color: var(--ink); font-weight: 600; }
.drop u { text-decoration-color: var(--acc); text-underline-offset: 3px; }
.drop small { display: block; margin-top: 6px; font-family: var(--f-m); font-size: 11.5px; color: var(--mut); letter-spacing: .04em; }
.drop-ic { width: 48px; height: 48px; border-radius: 14px; margin: 0 auto 12px; display: grid; place-items: center; background: rgba(47,107,255,.15); color: var(--acc-hi); flex: none; }
.drop-ic.ok { background: rgba(198,255,74,.12); color: var(--sig); margin: 0; }
.drop-file { display: none; align-items: center; gap: 14px; text-align: left; }
.drop.has { border-style: solid; border-color: rgba(198,255,74,.4); background: rgba(198,255,74,.035); padding: 16px 18px; }
.drop.has .drop-empty { display: none; }
.drop.has .drop-file { display: flex; }
.drop-meta { flex: 1; min-width: 0; }
.drop-meta b { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.drop-meta small { margin-top: 2px; }
.drop-change { font-size: 13px; color: var(--mut); border-bottom: 1px solid var(--line-3); }

.check { display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; color: var(--ink-2); cursor: pointer; line-height: 1.5; margin-top: 24px; }
.check input { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; flex: none; margin: 0; border-radius: 7px; border: 1px solid var(--line-3); background: rgba(255,255,255,.03) center / 13px no-repeat; cursor: pointer; transition: background-color .2s, border-color .2s; }
.check input:checked { background-color: var(--acc); border-color: var(--acc); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5 10 17 19 7'/%3E%3C/svg%3E"); }
.field.err .check input { border-color: var(--bad); }

.form-alert { display: none; margin: 20px 0 0; padding: 14px 16px; border-radius: 14px; background: rgba(255,107,120,.1); border: 1px solid rgba(255,107,120,.3); color: #ffc2c8; font-size: 14px; }
.form-alert.show { display: block; }
.submit { width: 100%; margin-top: 28px; }
.submit .spin { display: none; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.35); border-top-color: #fff; border-radius: 50%; animation: spin .8s linear infinite; }
.submit.loading { pointer-events: none; }
.submit.loading .spin { display: block; }
.submit.loading svg { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.f-note { text-align: center; font-size: 12.5px; color: var(--mut); margin: 14px 0 0; }

.success { display: none; text-align: center; padding: 70px 10px 40px; }
.apply.done .aform { display: none; }
.apply.done .success { display: block; }
.success-ic { margin: 0 auto 26px; display: block; }
.success-ic circle, .success-ic path { stroke-dasharray: 100; stroke-dashoffset: 100; }
.apply.done .success-ic circle { animation: draw 1s var(--ease) .15s forwards; }
.apply.done .success-ic path { animation: draw .7s var(--ease) .85s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.success h3 { font-family: var(--f-d); font-size: clamp(38px, 5vw, 56px); letter-spacing: -.05em; margin: 0 0 14px; line-height: 1; }
.success p { color: var(--ink-2); max-width: 42ch; margin: 0 auto 10px; }
.success-sub { color: var(--mut) !important; font-size: 14px; margin-bottom: 30px !important; }
.confetti { position: absolute; inset: 0; pointer-events: none; z-index: 5; width: 100%; height: 100%; }

/* ---------- 404 ---------- */
.notfound { position: relative; min-height: 88svh; display: flex; align-items: center; padding-block: 140px 80px; overflow: hidden; isolation: isolate; }
.notfound .hero-lead { margin: 30px 0 34px; }

/* ---------- Hover sin saltos ----------
   .reveal redefine `transition` (aparición al hacer scroll) y se comía la del hover:
   el padding saltaba de golpe y luego el fondo hacía el barrido suave. */
.js .job-row.reveal { transition: padding .6s var(--ease), opacity 1s var(--ease), transform 1s var(--ease); transition-delay: 0s, var(--d, 0s), var(--d, 0s); }
.js .ocard.reveal { transition: transform .6s var(--ease), opacity 1s var(--ease); transition-delay: 0s, var(--d, 0s); }
.js .ocard.reveal.in:hover { transform: translateY(-4px); }

/* ---------- Tarjeta "Tu equipo, a tu gusto": portátil + monitor ---------- */
.gear { position: relative; height: 110px; display: flex; align-items: flex-end; gap: 10px; }
.gear-screen { position: relative; width: 120px; height: 78px; border-radius: 10px; border: 1.5px solid var(--line-3); background: linear-gradient(160deg, rgba(47,107,255,.35), rgba(12,18,36,.9)); box-shadow: 0 18px 40px -18px var(--glow); }
.gear-screen::after { content: ""; position: absolute; left: 50%; bottom: -14px; width: 34px; height: 14px; transform: translateX(-50%); border-left: 1.5px solid var(--line-3); border-right: 1.5px solid var(--line-3); }
.gear-screen i { position: absolute; inset: 12px 14px auto; height: 6px; border-radius: 3px; background: rgba(255,255,255,.5); box-shadow: 0 14px 0 rgba(255,255,255,.22), 0 28px 0 -1px rgba(198,255,74,.6); }
.gear-2 { width: 84px; height: 56px; transform: translateY(-6px); background: linear-gradient(160deg, rgba(122,162,255,.3), rgba(12,18,36,.9)); }
.gear-2::after { width: 100px; height: 6px; bottom: -8px; border: 0; border-radius: 0 0 6px 6px; background: var(--line-3); }

/* ---------- Protección de datos (formulario) ---------- */
.rgpd { margin-top: 12px; font-size: 12.5px; color: var(--mut); }
.rgpd summary { cursor: pointer; width: fit-content; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line-3); }
.rgpd summary:hover { color: var(--ink-2); }
.rgpd dl { display: grid; grid-template-columns: 110px 1fr; gap: 6px 14px; margin: 12px 0 0; padding: 14px 16px; border-radius: 12px; background: rgba(255,255,255,.025); border: 1px solid var(--line); }
.rgpd dt { color: var(--ink-2); font-weight: 500; }
.rgpd dd { margin: 0; }
@media (max-width: 480px) { .rgpd dl { grid-template-columns: 1fr; } .rgpd dd { margin-bottom: 6px; } }

/* ---------- Compartir ---------- */
.btn .ico { transform: none !important; }
.btn-li:hover { background: #0a66c2; box-shadow: none; color: #fff; }
.side-share { display: flex; gap: 8px; margin-top: 18px; }
.side-card .side-share .btn { flex: 1; width: auto; }
.success-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ---------- Toast ---------- */
.toast-copy { position: fixed; left: 50%; bottom: 28px; z-index: 120; transform: translate(-50%, 20px); opacity: 0; padding: 12px 20px; border-radius: 99px; background: var(--ink); color: var(--bg); font-size: 14px; font-weight: 500; transition: opacity .4s, transform .5s var(--ease); pointer-events: none; }
.toast-copy.show { opacity: 1; transform: translate(-50%, 0); }


@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; transition-delay: 0s !important; scroll-behavior: auto !important; }
  .js .reveal, .js .fade { opacity: 1; transform: none; }
  .js .line > span { transform: none; }
  .grain { animation: none; }
}
