/* =====================================================================
   E · AEROPUERTO
   Palette, type and logo rules from the vault Brand Pack (v1.0, 2026-06-06).
   Red #ee1c25 + Purple #812a92 on light is the signature combo.
   Inter throughout — the Brand Pack forbids a second headline typeface, so the
   departure board gets its character from tabular figures, tracking and the
   dark ground rather than from a monospace.
   ===================================================================== */
:root{
  --red:#ee1c25; --red-dk:#bf1e2e;
  --purple:#812a92; --purple-2:#6f2d91;
  --ink:#282a2b; --black:#1c1c1c;
  --surface:#f5f4f4; --white:#fff;
  --g300:#c8c8c8; --g500:#9f9f9f; --g600:#767676;
  --hair:rgba(40,42,43,.10); --hair-2:rgba(40,42,43,.06);
  --grad:linear-gradient(100deg,var(--red) 0%,var(--purple) 100%);
  --sans:'Inter',system-ui,-apple-system,'Segoe UI',sans-serif;
  --ez:cubic-bezier(.22,1,.36,1);
  --lift:0 22px 48px -24px rgba(28,28,28,.22),0 4px 12px -6px rgba(28,28,28,.08);
  --lift-sm:0 12px 26px -16px rgba(28,28,28,.18);
  --gut:clamp(18px,5vw,56px);
  --shell:1180px;
}
*{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{
  margin:0;background:var(--surface);color:var(--ink);
  font:400 16.5px/1.65 var(--sans);-webkit-font-smoothing:antialiased;
}
img{display:block;max-width:100%}
a{color:inherit}
.shell{max-width:var(--shell);margin:0 auto;padding:0 var(--gut)}

/* ---------- type ---------- */
.eyebrow{
  display:flex;align-items:center;gap:12px;margin:0 0 20px;
  font:600 11px/1.4 var(--sans);letter-spacing:.16em;text-transform:uppercase;color:var(--g600);
}
.eyebrow:before{content:"";width:26px;height:2px;background:var(--red);flex:0 0 26px}
h1{
  font-weight:800;font-size:clamp(32px,4.4vw,55px);line-height:1.06;letter-spacing:-.028em;
  color:var(--black);margin:0 0 22px;max-width:23ch;
}
h1 .g{
  background:var(--grad);-webkit-background-clip:text;background-clip:text;
  -webkit-text-fill-color:transparent;color:var(--purple);
}
h2{font-weight:800;font-size:clamp(26px,3.4vw,42px);line-height:1.1;letter-spacing:-.024em;
  color:var(--black);margin:0 0 16px}
h3{font-weight:700;font-size:17px;line-height:1.35;letter-spacing:-.012em;color:var(--black);margin:0 0 8px}
p{margin:0 0 16px}
.lede{font-size:18px;line-height:1.65;color:var(--g600);max-width:60ch}
.small{font-size:13px;line-height:1.6;color:var(--g500)}

/* =====================================================================
   1 · THE TAKE-OFF STRIP  — a plane that rolls, rotates and climbs as you
   scroll, on a dashed flight path with a runway threshold at the bottom.
   Right gutter only, never over the text. Hidden on narrow screens and for
   anyone who asked for reduced motion.
   ===================================================================== */
.flight{
  position:fixed;top:0;right:0;width:132px;height:100vh;z-index:5;pointer-events:none;
}
.flight svg{position:absolute;inset:0;width:100%;height:100%}
.flight .path{
  fill:none;stroke:var(--g300);stroke-width:1.6;stroke-linecap:round;
  stroke-dasharray:5 9;opacity:.9;
}
.flight .trail{
  fill:none;stroke:url(#eGrad);stroke-width:2.4;stroke-linecap:round;
}
.flight .thr{stroke:var(--g300);stroke-width:3;stroke-linecap:butt;opacity:.75}
.plane{
  position:absolute;left:34px;top:0;width:30px;height:30px;
  transform:translate3d(0, calc(100vh - 132px), 0);
  transform-origin:50% 50%;will-change:transform;
}
.plane svg{position:static;width:30px;height:30px}
.plane path{fill:var(--red)}
@media (max-width:1180px){ .flight{display:none} }
@media (prefers-reduced-motion:reduce){ .flight{display:none} }

/* ---------- header ---------- */
header.top{
  position:sticky;top:0;z-index:40;background:rgba(255,255,255,.9);
  backdrop-filter:saturate(150%) blur(12px);border-bottom:1px solid var(--hair);
}
.top .row{display:flex;align-items:center;gap:20px;height:66px}
.top .brand img{height:26px;width:auto}
.top nav{margin-left:auto;display:flex;align-items:center;gap:22px}
.top nav a{font:500 14px/1 var(--sans);color:var(--g600);text-decoration:none;transition:color .2s}
.top nav a:hover{color:var(--black)}
.lang-switch a{
  font:600 11px/1 var(--sans);letter-spacing:.1em;border:1px solid var(--g300);
  border-radius:6px;padding:8px 10px;color:var(--ink)
}
.nav-cta{
  background:var(--red);color:#fff !important;border-radius:8px;padding:11px 17px;
  font:600 14px/1 var(--sans);text-decoration:none;transition:background .2s,transform .2s var(--ez);
}
.nav-cta:hover{background:var(--red-dk);transform:translateY(-1px)}
@media (max-width:860px){ .top nav > a:not(.nav-cta){display:none} }

/* ---------- hero ---------- */
.hero{padding:clamp(40px,6vw,80px) 0 clamp(48px,6vw,84px)}
.hero-grid{display:grid;grid-template-columns:1.06fr .94fr;gap:clamp(28px,5vw,64px);align-items:center}
.hero-cta{display:flex;flex-wrap:wrap;gap:12px;margin:28px 0 0}
.btn{
  display:inline-flex;align-items:center;gap:10px;border-radius:10px;text-decoration:none;
  font:600 15px/1 var(--sans);padding:16px 24px;border:1px solid transparent;cursor:pointer;
  transition:background .2s,border-color .2s,transform .2s var(--ez),box-shadow .2s;
}
.btn-red{background:var(--red);color:#fff;box-shadow:var(--lift-sm)}
.btn-red:hover{background:var(--red-dk);transform:translateY(-2px);box-shadow:var(--lift)}
.btn-ghost{background:var(--white);border-color:var(--g300);color:var(--black)}
.btn-ghost:hover{border-color:var(--ink);transform:translateY(-2px)}
.hero-note{
  display:flex;gap:11px;margin:26px 0 0;padding:14px 16px;background:var(--white);
  border-radius:12px;border-left:3px solid var(--purple);
  font-size:14.5px;line-height:1.55;color:var(--ink);max-width:54ch;box-shadow:var(--lift-sm);
}
.hero-note b{color:var(--purple-2)}
.stats{display:flex;flex-wrap:wrap;gap:12px;margin:28px 0 0}
.stat{background:var(--white);border-radius:14px;padding:16px 20px;min-width:168px;
  box-shadow:inset 0 0 0 1px var(--hair-2),var(--lift-sm)}
.stat b{display:block;font-weight:800;font-size:clamp(28px,3.4vw,38px);line-height:1;
  letter-spacing:-.03em;color:var(--red)}
.stat span{display:block;margin-top:7px;font-size:12.5px;line-height:1.45;color:var(--g600);max-width:19ch}
.hero-fig{position:relative;border-radius:18px;overflow:hidden;box-shadow:var(--lift)}
.hero-fig img{width:100%;aspect-ratio:4/3.1;object-fit:cover}
.hero-fig .tag{
  position:absolute;left:14px;bottom:14px;background:rgba(255,255,255,.95);
  border-radius:8px;padding:8px 12px;
  font:600 11px/1 var(--sans);letter-spacing:.12em;text-transform:uppercase;color:var(--ink);
}

/* ---------- sections ---------- */
section{padding:clamp(58px,8vw,110px) 0}
.sec-head{max-width:62ch;margin:0 0 clamp(30px,4vw,50px)}
.sec-head.mid{margin-left:auto;margin-right:auto;text-align:center}
.sec-head.mid .eyebrow{justify-content:center}

/* roles — C's asymmetrical bento widths, CZ's card internals: a photo band
   carrying the role title, body text on white underneath so the chips never
   fight a photograph for contrast. Brand wash alternates purple / red per card,
   which is what keeps it reading as Jobair.

   NO object-position anywhere, on purpose. Each file is PRE-CROPPED to the ratio
   of the slot it sits in (wide 2.61:1, narrow 1.847:1) at 2x. A focal percentage
   that frames correctly on a 616px card drifts on a 436px one — the lesson the
   Czech page already learned. If a photo changes, RE-CROP THE FILE. */
.roles{display:grid;grid-template-columns:repeat(12,1fr);gap:16px}
.role{position:relative}
.role:nth-child(1),.role:nth-child(4){grid-column:span 7}
.role:nth-child(2),.role:nth-child(3){grid-column:span 5}
.role .bezel{background:rgba(40,42,43,.042);border-radius:20px;padding:7px;
  box-shadow:inset 0 0 0 1px var(--hair-2);height:100%}
.role .core{background:var(--white);border-radius:13px;overflow:hidden;height:100%;
  display:flex;flex-direction:column;
  box-shadow:inset 0 1px 1px rgba(255,255,255,.7);
  transition:transform .55s var(--ez),box-shadow .55s var(--ez)}
.role:hover .core{transform:translateY(-4px);box-shadow:var(--lift)}
.role-photo{position:relative;height:236px;overflow:hidden;background:var(--black)}
.role-photo img{width:100%;height:100%;object-fit:cover;display:block;
  filter:saturate(.9) contrast(1.03)}
/* Two layers doing two jobs: a light brand wash, and a separate stronger bottom
   scrim that exists only so the title stays readable. z-index matters — a
   generated box paints after its element's children. */
.role-photo::after{
  content:'';position:absolute;inset:0;z-index:1;pointer-events:none;
  background:
    linear-gradient(180deg,rgba(20,20,20,0) 38%,rgba(20,20,20,.52) 74%,rgba(20,20,20,.88) 100%),
    linear-gradient(118deg,rgba(129,42,146,.42) 0%,rgba(129,42,146,.14) 52%,rgba(238,28,37,.16) 100%);
}
.role.tint-red .role-photo::after{
  background:
    linear-gradient(180deg,rgba(20,20,20,0) 38%,rgba(20,20,20,.52) 74%,rgba(20,20,20,.88) 100%),
    linear-gradient(118deg,rgba(238,28,37,.38) 0%,rgba(238,28,37,.13) 54%,rgba(129,42,146,.18) 100%);
}
.role-photo h3{
  position:absolute;z-index:2;left:20px;right:20px;bottom:15px;margin:0;color:#fff;
  font-weight:800;font-size:clamp(19px,2vw,23px);letter-spacing:-.022em;line-height:1.15;
  text-shadow:0 2px 16px rgba(0,0,0,.6);
}
.role .n{
  position:absolute;z-index:2;top:14px;left:14px;background:rgba(255,255,255,.94);
  border-radius:8px;padding:6px 11px;
  font:700 10px/1.4 var(--sans);letter-spacing:.13em;text-transform:uppercase;color:var(--ink);
}
.role-body{padding:20px 22px 24px;display:flex;flex-direction:column;flex:1}
.role-body p{margin:0 0 16px;font-size:14.5px;line-height:1.6;color:var(--g600)}
.role-foot{margin-top:auto;display:flex;flex-wrap:wrap;gap:8px}
.chip{display:inline-block;padding:8px 13px;border-radius:999px;background:var(--surface);
  color:var(--ink);font:600 12.5px/1 var(--sans);box-shadow:inset 0 0 0 1px var(--hair-2)}
.chip-red{background:rgba(238,28,37,.07);color:var(--red-dk);
  box-shadow:inset 0 0 0 1px rgba(238,28,37,.18)}

/* offer + the pay set as a flight-information line */
.offer{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.card{background:var(--white);border-radius:18px;padding:clamp(22px,3vw,34px);
  box-shadow:inset 0 0 0 1px var(--hair-2),var(--lift-sm)}
.card.wide{grid-column:1/-1}
.card p{margin:0;font-size:15px;line-height:1.62;color:var(--g600)}
.ico-r{width:42px;height:42px;border-radius:11px;display:grid;place-items:center;margin:0 0 15px;
  background:var(--surface);color:var(--ink)}
.ico-r svg{width:21px;height:21px}
.payline{
  display:flex;flex-wrap:wrap;align-items:stretch;gap:0;margin:0 0 16px;
  border-radius:12px;overflow:hidden;box-shadow:inset 0 0 0 1px var(--hair);
}
.payline .fig{
  background:var(--black);color:#fff;padding:15px 20px;font-weight:800;
  font-size:clamp(22px,2.6vw,30px);line-height:1.1;letter-spacing:-.02em;
  font-variant-numeric:tabular-nums;
}
.payline .basis{
  background:var(--white);color:var(--ink);padding:15px 20px;display:flex;align-items:center;
  font:600 11.5px/1.35 var(--sans);letter-spacing:.1em;text-transform:uppercase;
}
.payline .basis i{font-style:normal;color:var(--red);margin-right:8px}

/* =====================================================================
   2 · DEPARTURE BOARD — the eight steps from application to first shift,
   ported from the Czech page. Deliberately NOT vacancies: nothing here
   claims live state, so it can never go stale.
   ===================================================================== */
.board{background:var(--black);border-radius:20px;overflow:hidden;box-shadow:var(--lift)}
.board-top{
  display:flex;align-items:center;gap:14px;flex-wrap:wrap;
  padding:18px 22px;border-bottom:1px solid rgba(255,255,255,.10);
}
.board-top .ttl{
  font:700 12px/1 var(--sans);letter-spacing:.16em;text-transform:uppercase;color:#fff;
}
.board-top .dot{width:8px;height:8px;border-radius:50%;background:var(--red);flex:0 0 8px}
.board-top .meta{
  margin-left:auto;font:600 11px/1 var(--sans);letter-spacing:.14em;text-transform:uppercase;
  color:rgba(255,255,255,.5);font-variant-numeric:tabular-nums;
}
.board-head,.brow{
  display:grid;grid-template-columns:58px 1fr 168px;gap:16px;align-items:center;
  padding:13px 22px;
}
.board-head{
  font:600 10px/1 var(--sans);letter-spacing:.16em;text-transform:uppercase;
  color:rgba(255,255,255,.42);border-bottom:1px solid rgba(255,255,255,.08);
}
.brow{border-bottom:1px solid rgba(255,255,255,.06);transition:background .25s}
.brow:last-child{border-bottom:0}
.brow:hover{background:rgba(255,255,255,.035)}
.brow .num{
  display:grid;place-items:center;width:34px;height:34px;border-radius:7px;
  background:rgba(255,255,255,.07);color:#fff;
  font:700 13.5px/1 var(--sans);font-variant-numeric:tabular-nums;
}
.brow.is-wait .num{background:var(--grad)}
.brow h3{color:#fff;margin:0 0 3px;font-size:15.5px}
.brow p{margin:0;font-size:13.5px;line-height:1.5;color:rgba(255,255,255,.55)}
/* the flap: each "when" cell drops in like a split-flap when the row arrives */
.flap{
  display:inline-block;padding:8px 11px;border-radius:6px;background:rgba(255,255,255,.07);
  color:#fff;font:700 10.5px/1.2 var(--sans);letter-spacing:.11em;text-transform:uppercase;
  font-variant-numeric:tabular-nums;transform-origin:50% 0;
}
.brow.is-wait .flap{background:var(--red);color:#fff}
.board.in .flap{animation:flap .5s var(--ez) both}
.board.in .brow:nth-child(2) .flap{animation-delay:.05s}
.board.in .brow:nth-child(3) .flap{animation-delay:.11s}
.board.in .brow:nth-child(4) .flap{animation-delay:.17s}
.board.in .brow:nth-child(5) .flap{animation-delay:.23s}
.board.in .brow:nth-child(6) .flap{animation-delay:.29s}
.board.in .brow:nth-child(7) .flap{animation-delay:.35s}
.board.in .brow:nth-child(8) .flap{animation-delay:.41s}
.board.in .brow:nth-child(9) .flap{animation-delay:.47s}
@keyframes flap{
  0%{transform:rotateX(-90deg);opacity:0}
  60%{transform:rotateX(8deg);opacity:1}
  100%{transform:rotateX(0);opacity:1}
}
.board-foot{
  padding:15px 22px;border-top:1px solid rgba(255,255,255,.08);
  font:500 12px/1.5 var(--sans);color:rgba(255,255,255,.45);
}
.board-foot b{color:rgba(255,255,255,.8);font-weight:600}
@media (prefers-reduced-motion:reduce){ .board.in .flap{animation:none} }

/* =====================================================================
   3 · REQUIREMENTS — airport-signage pictograms, one 24px grid, one stroke
   weight. Red tile = blocks the application. Purple tile = only helps.
   ===================================================================== */
.req{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.req-col{background:var(--white);border-radius:18px;padding:clamp(22px,3vw,32px);
  box-shadow:inset 0 0 0 1px var(--hair-2),var(--lift-sm)}
.req-tag{display:inline-flex;align-items:center;gap:8px;border-radius:999px;padding:6px 13px;margin:0 0 18px;
  font:700 10px/1.5 var(--sans);letter-spacing:.14em;text-transform:uppercase}
.req-tag.must{background:rgba(238,28,37,.10);color:var(--red-dk)}
.req-tag.help{background:rgba(129,42,146,.10);color:var(--purple-2)}
.req-list{list-style:none;margin:0;padding:0;display:grid;gap:14px}
.req-list li{display:grid;grid-template-columns:44px 1fr;gap:14px;align-items:center}
.sign{
  width:44px;height:44px;border-radius:10px;display:grid;place-items:center;flex:0 0 44px;
}
.sign svg{width:25px;height:25px;display:block}
.sign .age{font:800 15.5px/1 var(--sans);letter-spacing:-.02em}
.must .sign{background:var(--red);color:#fff}
.help .sign{background:var(--purple);color:#fff}
.req-list .t{font-size:15px;line-height:1.45;color:var(--ink)}
.warn{margin:18px 0 0;padding:13px 15px;border-radius:11px;background:rgba(238,28,37,.08);
  color:var(--red-dk);font-size:14.5px;line-height:1.5}
.req-close{margin:clamp(24px,3.4vw,38px) auto 0;font-size:15.5px;color:var(--g600);max-width:66ch;text-align:center}

/* establishing band — the actual Schiphol tower */
.band{position:relative;overflow:hidden}
.band img{width:100%;height:clamp(230px,34vw,400px);object-fit:cover;object-position:50% 42%}
.band .cap{
  position:absolute;left:0;right:0;bottom:0;padding:22px var(--gut);
  background:linear-gradient(transparent,rgba(28,28,28,.72));
}
.band .cap span{
  font:600 11px/1 var(--sans);letter-spacing:.16em;text-transform:uppercase;color:#fff;
}

/* housing — text-led, still no housing photograph */
.housing-in{background:var(--white);border-radius:22px;padding:clamp(24px,4.5vw,58px);
  box-shadow:inset 0 0 0 1px var(--hair-2),var(--lift-sm)}
.housing-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(24px,4vw,56px);align-items:center}
.housing ul{list-style:none;margin:0;padding:0;display:grid;gap:10px}
.housing li{display:grid;grid-template-columns:34px 1fr;gap:12px;align-items:center;
  background:var(--surface);border-radius:12px;padding:14px 16px;font-size:15px;color:var(--ink)}
.housing li .k{width:34px;height:34px;border-radius:8px;display:grid;place-items:center;
  background:var(--white);color:var(--purple);box-shadow:inset 0 0 0 1px var(--hair-2)}
.housing li .k svg{width:17px;height:17px}

/* clients */
.clients{display:flex;flex-wrap:wrap;gap:12px;justify-content:center}
.clients div{background:var(--white);border-radius:999px;padding:15px 24px;display:grid;place-items:center;
  box-shadow:inset 0 0 0 1px var(--hair-2);transition:transform .4s var(--ez),box-shadow .4s var(--ez)}
.clients div:hover{transform:translateY(-3px);box-shadow:inset 0 0 0 1px var(--hair-2),var(--lift-sm)}
.clients img{max-height:23px;width:auto;filter:grayscale(1);opacity:.6;transition:all .4s var(--ez)}
.clients div:hover img{filter:none;opacity:1}

/* =====================================================================
   4 · FAQ — the marker is a plane that takes off when the answer opens,
   strung along a dashed flight path down the left.
   ===================================================================== */
.faq{position:relative;max-width:860px;margin:0 auto;padding-left:46px}
.faq:before{
  content:"";position:absolute;left:17px;top:14px;bottom:14px;width:2px;
  background:repeating-linear-gradient(var(--g300) 0 5px,transparent 5px 11px);
}
.faq details{
  position:relative;background:var(--white);border-radius:14px;margin:0 0 10px;
  box-shadow:inset 0 0 0 1px var(--hair-2);transition:box-shadow .4s var(--ez);
}
.faq details[open]{box-shadow:inset 0 0 0 1px var(--hair),var(--lift-sm)}
.faq details:before{
  content:"";position:absolute;left:-36px;top:22px;width:12px;height:12px;border-radius:50%;
  background:var(--surface);box-shadow:inset 0 0 0 2px var(--g300);transition:all .4s var(--ez);
}
.faq details[open]:before{background:var(--red);box-shadow:inset 0 0 0 2px var(--red)}
.faq summary{
  list-style:none;cursor:pointer;padding:19px 56px 19px 22px;position:relative;
  font-weight:700;font-size:16.5px;line-height:1.4;letter-spacing:-.012em;color:var(--black);
}
.faq summary::-webkit-details-marker{display:none}
.faq .pl{
  position:absolute;right:20px;top:50%;width:22px;height:22px;margin-top:-11px;
  color:var(--g500);transform:rotate(0);transform-origin:50% 50%;
  transition:transform .5s var(--ez),color .4s var(--ez);
}
.faq .pl svg{width:22px;height:22px;display:block;fill:currentColor}
.faq details[open] .pl{transform:rotate(-42deg) translate(2px,-2px);color:var(--red)}
.faq .ans{padding:0 26px 22px 22px;font-size:15.5px;line-height:1.7;color:var(--g600)}

/* form */
.form-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:clamp(22px,4vw,48px);align-items:start}
.form-card{background:var(--white);border-radius:20px;padding:clamp(22px,3.4vw,42px);
  box-shadow:inset 0 0 0 1px var(--hair-2),var(--lift)}
.field{margin:0 0 18px}
label{display:block;font:600 12.5px/1.4 var(--sans);color:var(--black);margin:0 0 7px}
.rq{color:var(--red)}
input[type=text],input[type=email],input[type=tel],select{
  width:100%;font:400 15.5px/1.3 var(--sans);color:var(--ink);background:var(--surface);
  border:1px solid transparent;border-radius:10px;padding:13px 15px;transition:all .25s var(--ez);
}
input:focus,select:focus{outline:0;background:#fff;border-color:var(--ink);
  box-shadow:0 0 0 4px rgba(40,42,43,.07)}
select{appearance:none;background-image:
  linear-gradient(45deg,transparent 50%,var(--g600) 50%),
  linear-gradient(135deg,var(--g600) 50%,transparent 50%);
  background-position:calc(100% - 19px) 50%,calc(100% - 14px) 50%;
  background-size:5px 5px,5px 5px;background-repeat:no-repeat;padding-right:40px}
.two{display:grid;grid-template-columns:1fr 1fr;gap:14px}
fieldset.gates{margin:0 0 22px;padding:14px 20px 18px;border:0;border-radius:14px;
  background:rgba(238,28,37,.06);box-shadow:inset 0 0 0 1px rgba(238,28,37,.16)}
/* The legend sits ON the fieldset's outline rather than cutting a gap in it,
   because .gates draws its border with an inset box-shadow and not a real
   border. At 10px that read as a mistake; 13px makes it look deliberate. */
fieldset.gates legend{padding:0;margin:0 0 2px;font:700 13px/1.5 var(--sans);
  letter-spacing:.14em;text-transform:uppercase;color:var(--red-dk)}
label.check{display:grid;grid-template-columns:19px 1fr;gap:12px;align-items:start;
  font:400 14.5px/1.55 var(--sans);color:var(--ink);margin:0 0 10px;cursor:pointer}
label.check:last-child{margin-bottom:0}
label.check input{margin:2px 0 0;accent-color:var(--red);width:18px;height:18px}
.qs{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.qs .field{margin:0}
.upload{margin:22px 0 0}
.upload input[type=file]{position:absolute;width:1px;height:1px;opacity:0;overflow:hidden}
.upload > label:first-child{display:block}
.upload .opt{
  display:inline-block;margin-left:6px;padding:3px 8px;border-radius:999px;
  background:rgba(129,42,146,.10);color:var(--purple-2);
  font:700 9.5px/1.4 var(--sans);letter-spacing:.12em;text-transform:uppercase;vertical-align:1px;
}
.upload .drop{
  display:flex;align-items:center;gap:13px;margin:0;padding:15px 16px;cursor:pointer;
  background:var(--surface);border:1.5px dashed var(--g300);border-radius:12px;
  transition:border-color .25s var(--ez),background .25s var(--ez);
}
.upload .drop:hover{border-color:var(--purple);background:#fff}
.upload input[type=file]:focus-visible + .drop{border-color:var(--ink);
  box-shadow:0 0 0 4px rgba(40,42,43,.07)}
.upload .clip{width:34px;height:34px;flex:0 0 34px;border-radius:9px;display:grid;place-items:center;
  background:#fff;color:var(--purple);box-shadow:inset 0 0 0 1px var(--hair-2)}
.upload .clip svg{width:17px;height:17px}
.upload .txt{display:flex;flex-direction:column;gap:2px;min-width:0}
.upload .txt b{font:600 14.5px/1.35 var(--sans);color:var(--ink);
  overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.upload .txt i{font:400 12px/1.35 var(--sans);font-style:normal;color:var(--g500)}
.upload.has .drop{border-style:solid;border-color:var(--purple);background:#fff}
.upload.has .clip{color:#fff;background:var(--purple);box-shadow:none}
.optin-field{padding:18px 0 0;margin:22px 0 0;border-top:1px solid var(--hair-2)}
.optin-field label.check input{accent-color:var(--ink)}
button[type=submit]{
  width:100%;font:700 16px/1 var(--sans);background:var(--red);color:#fff;border:0;
  border-radius:11px;padding:18px 24px;cursor:pointer;margin:20px 0 0;box-shadow:var(--lift-sm);
  transition:background .2s,transform .2s var(--ez),box-shadow .2s;
}
button[type=submit]:hover{background:var(--red-dk);transform:translateY(-2px);box-shadow:var(--lift)}
.hp-field{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
/* Developer notice, shown by app.js only when /api/apply cannot exist. Hidden by
   default so it never reaches an applicant on the deployed site. */
.preview-banner{display:none}
.preview-banner.show{display:block;padding:10px 16px;background:var(--ink);color:#fff;
  font:500 13px/1.45 var(--sans);text-align:center}
.form-alert{display:none}
.form-alert.show{display:block;margin:0 0 16px;padding:13px 15px;border-radius:10px;
  background:rgba(238,28,37,.08);color:var(--red-dk);font-size:14.5px}
.side-card{background:var(--white);border-radius:16px;padding:22px;margin:22px 0 0;
  box-shadow:inset 0 0 0 1px var(--hair-2)}
.side-card ul{list-style:none;margin:0;padding:0;display:grid;gap:12px}
.side-card li{display:grid;grid-template-columns:22px 1fr;gap:11px;font-size:14.5px;
  line-height:1.5;color:var(--ink)}
.side-card .k{width:22px;height:22px;border-radius:6px;display:grid;place-items:center;
  background:var(--surface);color:var(--purple);margin-top:1px}
.side-card .k svg{width:12px;height:12px}

/* footer */
footer{background:var(--black);color:rgba(255,255,255,.6);padding:38px 0 46px;margin-top:clamp(40px,6vw,80px)}
footer .row{display:flex;flex-wrap:wrap;gap:16px;align-items:center}
footer img{height:24px;width:auto}
footer p{margin:0;font-size:13.5px}
footer a{color:rgba(255,255,255,.85);text-decoration:none}
footer a:hover{color:#fff}
footer .rule{margin-left:auto;font:600 11px/1 var(--sans);letter-spacing:.14em;
  text-transform:uppercase;color:rgba(255,255,255,.35)}

/* cookie bar */
.consent{position:fixed;left:12px;right:12px;bottom:12px;z-index:60;display:none}
.consent.show{display:block}
.consent .in{background:#fff;border-radius:16px;
  padding:16px 18px;display:flex;align-items:center;gap:14px;flex-wrap:wrap;
  box-shadow:inset 0 0 0 1px var(--hair),var(--lift);max-width:var(--shell);margin:0 auto}
.consent p{margin:0;font-size:13.5px;line-height:1.5;color:var(--g600);flex:1 1 320px}
.consent button{font:600 13.5px/1 var(--sans);padding:12px 18px;border-radius:9px;cursor:pointer;
  border:1px solid var(--g300);background:#fff;color:var(--ink)}
.consent button.primary{background:var(--red);color:#fff;border-color:var(--red)}
@media (max-width:560px){
  .consent .in{padding:14px}
  .consent p{flex:1 1 100%;font-size:12.5px}
  .consent button{flex:1 1 0;padding:11px 12px;font-size:12.5px}
}

/* reveal — opt-in. Without JS (or if the observer never fires) everything is
   simply visible: a conversion page must never depend on script to be readable. */
.js .rv{opacity:0;transform:translateY(16px)}
.js .rv.in{opacity:1;transform:none;transition:opacity .6s var(--ez),transform .6s var(--ez)}
@media (prefers-reduced-motion:reduce){
  .js .rv,.js .rv.in{opacity:1;transform:none;transition:none}
  html{scroll-behavior:auto}
}

@media (max-width:1000px){
  .hero-grid,.housing-grid,.form-grid,.req{grid-template-columns:1fr}
  .roles{grid-template-columns:repeat(2,1fr)}
  .role:nth-child(1),.role:nth-child(2),.role:nth-child(3),.role:nth-child(4){grid-column:auto}
  .board-head,.brow{grid-template-columns:46px 1fr 132px;gap:12px;padding:13px 16px}
  .board-top,.board-foot{padding:15px 16px}
}
@media (max-width:640px){
  .roles,.offer,.qs,.two{grid-template-columns:1fr}
  .role:nth-child(1),.role:nth-child(2),.role:nth-child(3),.role:nth-child(4){grid-column:auto}
  .role-photo{height:200px}
  .card.wide{grid-column:auto}
  .board-head{display:none}
  .brow{grid-template-columns:38px 1fr;grid-template-areas:"n t" ". w";row-gap:8px}
  .brow .num{grid-area:n}
  .brow .t{grid-area:t}
  .brow .w{grid-area:w}
  .faq{padding-left:34px}
  .faq details:before{left:-28px}
  .faq:before{left:11px}
}

/* =====================================================================
   THANK-YOU PAGES (gracias.html / thank-you.html)
   Added 2026-08-26. Everything above this line is E's stylesheet as it was
   extracted, byte for byte; this block is the only addition, so it can be
   removed without touching the landing design.

   These pages are the arrival, not a receipt: same header, same footer, same
   type, and the three steps that actually come next — taken from the departure
   board so the page cannot promise something the board does not.
   ===================================================================== */
.thanks{padding:clamp(44px,8vw,96px) 0 clamp(32px,6vw,72px)}
.thanks .card{
  background:var(--white);border-radius:22px;box-shadow:var(--lift);
  padding:clamp(26px,4.5vw,54px);max-width:760px;margin:0 auto}
.thanks .mark{
  width:56px;height:56px;border-radius:50%;display:grid;place-items:center;
  background:var(--grad);margin:0 0 22px}
.thanks .mark svg{width:28px;height:28px;stroke:#fff;fill:none;
  stroke-width:2.4;stroke-linecap:round;stroke-linejoin:round}
.thanks h1{font-size:clamp(30px,4.4vw,46px);margin:0 0 14px}
.thanks .lede{margin:0 0 30px}
/* the CV-did-not-arrive note, shown only when app.js redirects with
   cv=fail. Reuses .warn from the requirements list rather than adding a
   second warning style; only the spacing differs inside the card. */
.thanks .warn{margin:-14px 0 28px}
.thanks .next{
  border-top:1px solid var(--hair);padding:26px 0 0;margin:0;list-style:none;
  display:grid;gap:16px}
.thanks .next li{display:grid;grid-template-columns:38px 1fr;gap:14px;align-items:start}
.thanks .next .num{
  font:700 12px/1.9 var(--sans);letter-spacing:.1em;color:var(--g500);
  font-variant-numeric:tabular-nums}
.thanks .next .done .num{color:var(--red)}
.thanks .next h2{font:700 16px/1.4 var(--sans);margin:0 0 3px;color:var(--ink)}
.thanks .next p{margin:0;font-size:14.5px;line-height:1.6;color:var(--g600)}
.thanks .next .when{
  display:inline-block;margin-top:5px;font:600 11px/1 var(--sans);
  letter-spacing:.1em;text-transform:uppercase;color:var(--purple-2)}
.thanks .back{margin:30px 0 0}
@media (max-width:520px){
  .thanks .next li{grid-template-columns:28px 1fr;gap:10px}
  .thanks .mark{width:48px;height:48px}
}

/* ---- footer socials -------------------------------------------------
   Same three accounts and the same icon paths as the Czech landing page, so
   our own pages do not disagree about where Jobair lives online. */
footer .social{display:flex;gap:10px;align-items:center}
footer .social a{
  width:34px;height:34px;border-radius:50%;display:grid;place-items:center;
  background:rgba(255,255,255,.08);text-decoration:none;
  transition:background .2s,transform .2s var(--ez)}
footer .social a:hover{background:var(--red);transform:translateY(-2px)}
footer .social svg{width:16px;height:16px;fill:rgba(255,255,255,.85);display:block}
footer .social a:hover svg{fill:#fff}
@media (max-width:720px){
  footer .rule{margin-left:0}
}

/* ---- mobile: keep the two hero stats side by side ---------------------
   They are flex items sized to their own text, and "españoles han trabajado ya
   con nosotros" is wide enough to force a wrap on a phone, which stacked them
   into two full-width cards. A two-column grid holds the pairing that the
   tablet and desktop layouts already have. */
@media (max-width:560px){
  .stats{display:grid;grid-template-columns:1fr 1fr;gap:10px}
  .stat{min-width:0;padding:14px 15px}
  .stat span{max-width:none}
}

/* =====================================================================
   ANIMATION 3 · THE LANDING  (thank-you pages)
   Added 2026-08-26. The take-off strip in reverse: the plane comes down the
   right gutter and settles level on the runway threshold.

   Switched by the `anim-landing` token on <html>. Remove that token and the
   whole thing is inert — no dead CSS runs, nothing to clean up.

   Pure CSS, one shot on load. No scroll listener at all, because these pages
   barely scroll, and nothing here gates content: the strip is aria-hidden
   decoration in the gutter and the page reads identically without it.

   The trail uses pathLength="1" on the SVG path, so the dash maths is
   normalised and CSS can draw it without measuring anything in JS.
   ===================================================================== */
/* Linear, not eased. An ease-out puts most of the descent in the first third and
   then crawls, which reads as a stall rather than an approach. A constant glide
   slope with the flare in the last 8% is what an approach actually looks like. */
.anim-landing .flight.landing .trail{
  stroke-dasharray:1;stroke-dashoffset:1;
  animation:ja-trail 2.6s linear .2s forwards}
.anim-landing .flight.landing .plane{
  animation:ja-land 2.6s linear .2s forwards}

/* The icon is drawn nose-up, and the take-off strip flies it that way. Coming
   down it has to lead with the nose, so every angle here carries a 180° flip:
   180deg is nose-down, and the extra degrees tilt it into the direction of
   travel, which drifts left as it descends. */
@keyframes ja-trail{ to{ stroke-dashoffset:0 } }
@keyframes ja-land{
  0%   { transform:translate3d(26px,-14px,0) rotate(195deg) }
  70%  { transform:translate3d(8px,calc(70vh - 104px),0) rotate(193deg) }
  92%  { transform:translate3d(1px,calc(100vh - 152px),0) rotate(184deg) }
  100% { transform:translate3d(0,calc(100vh - 132px),0) rotate(180deg) }
}
/* Landed, still, and legible. Same rule the take-off strip already follows. */
@media (prefers-reduced-motion:reduce){
  .anim-landing .flight.landing .trail{animation:none;stroke-dashoffset:0}
  .anim-landing .flight.landing .plane{animation:none}
}
/* =====================================================================
   ANIMATION 2 · THE BAGGAGE BELT  (departure board)
   Added 2026-08-26. A conveyor running out of the bottom of the board, carrying
   the eight steps as numbered bags.

   Switched by the `anim-belt` token on <html>. Without it the strip is
   display:none and the panel ends at the foot exactly as it did before — this
   one is real markup, so unlike the CSS-only effects it does change the board's
   height by the strip when you turn it off. That is the intended "remove it"
   behaviour, not a regression.

   Two moving layers, both cheap: the plates are a background-position loop, the
   bags are one translateX on a single flex row. Nothing is written on :root and
   no geometry is read per frame.
   ===================================================================== */
.belt{display:none}
.anim-belt .belt{
  display:block;position:relative;height:54px;overflow:hidden;
  border-top:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.015));
}
/* the plates the bags ride on */
.anim-belt .belt::after{
  content:"";position:absolute;left:0;right:0;bottom:0;height:14px;pointer-events:none;
  background:
    linear-gradient(180deg,rgba(255,255,255,.16) 0 1px,rgba(255,255,255,.07) 1px),
    repeating-linear-gradient(90deg,
      rgba(255,255,255,.34) 0 3px,
      rgba(255,255,255,.04) 3px 6px,
      transparent 6px 19px);
  background-size:100% 100%,19px 14px;
  background-repeat:no-repeat,repeat-x;
  background-position:0 0,0 100%;
  animation:ja-belt 1.7s linear infinite;
}
@keyframes ja-belt{
  from{background-position:0 0,0 100%}
  to  {background-position:0 0,19px 100%}
}
.anim-belt .belt-run{
  display:flex;align-items:flex-end;gap:46px;height:100%;padding:0 0 15px;
  width:max-content;animation:ja-bags 30s linear infinite;
}
.anim-belt .bag{position:relative;flex:0 0 26px;width:26px;height:24px}
.anim-belt .bag svg{
  width:26px;height:22px;display:block;fill:none;
  stroke:rgba(255,255,255,.5);stroke-width:1.5;
  stroke-linecap:round;stroke-linejoin:round;
}
.anim-belt .bag i{
  position:absolute;left:0;right:0;top:8px;text-align:center;font-style:normal;
  font:700 9px/1 var(--sans);letter-spacing:.04em;
  font-variant-numeric:tabular-nums;color:rgba(255,255,255,.72);
}
/* Bag 04 in brand red, and only 04. It matches the board row above it — the
   wait for the background check, the one flagged red in .brow.is-wait — so the
   belt marks the same step the board does. Eight bags per set, so 8n+4 hits
   every 04 and nothing else. */
.anim-belt .bag:nth-child(8n+4) svg{stroke:var(--red)}
.anim-belt .bag:nth-child(8n+4) i{color:#fff}
/* Shift by exactly one set. The row holds four identical sets, so after a
   quarter-width shift the next set sits precisely where the last one was and
   three sets still cover the board — no seam, no run of empty belt. Change the
   number of sets and this percentage has to change with it. */
@keyframes ja-bags{ from{transform:translateX(0)} to{transform:translateX(-25%)} }

@media (prefers-reduced-motion:reduce){
  .anim-belt .belt::after{animation:none}
  .anim-belt .belt-run{animation:none}
}
