/* ==========================================================================
   UAH Karriere - Designsystem
   Schriften: Inter Variable (Text/Headlines) + D-DIN (Labels, Zahlen),
   beide lokal eingebettet (SIL Open Font License).
   Motion-Regeln: Animationen/MOTION-BIBEL.md (Versalien nie negativ gesperrt).
   ========================================================================== */

@font-face {
  font-family: "Inter Variable";
  src: url("../fonts/Inter.var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "D Din";
  src: url("../fonts/D-DIN.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "D Din";
  src: url("../fonts/D-DIN-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #09090b;
  --bg-2: #0e0e11;
  --panel: #131316;
  --panel-2: #18181b;
  --panel-3: #27272a;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --text: #f4f4f5;
  --text-2: #e4e4e7;
  --muted: #a1a1aa;
  --dim: #71717a;
  --blue: #2962ff;
  --blue-2: #5991ff;
  --blue-glow: rgba(41, 98, 255, 0.35);
  --ok: #34d399;
  --warn: #fbbf24;
  --err: #ff8a8a;

  --f-sans: "Inter Variable", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-din: "D Din", "DIN Alternate", "Bahnschrift", "Arial Narrow", sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-in: cubic-bezier(0.55, 0, 0.9, 0.35);

  --r-xl: 2rem;
  --r-lg: 1.5rem;
  --r-md: 1rem;
  --gutter: clamp(1rem, 4vw, 3rem);
  --max: 1320px;
  --nav-h: 72px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background: var(--bg);
  color-scheme: dark;
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-2);
  font-family: var(--f-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  font-feature-settings: "cv11", "ss01", "ss03";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-x: clip;
}
body.is-locked { overflow: hidden; }

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--blue); color: #fff; }

:focus-visible {
  outline: 2px solid var(--blue-2);
  outline-offset: 3px;
  border-radius: 6px;
}

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 1rem; top: -4rem; z-index: 200;
  background: var(--blue); color: #fff; padding: .75rem 1.25rem; border-radius: 999px;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* --------------------------------------------------------------------------
   Typografie
   -------------------------------------------------------------------------- */
.h-display {
  font-family: var(--f-sans);
  font-weight: 620;
  font-size: clamp(2.6rem, 7.4vw, 7rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0;
  text-wrap: balance;
}
.h-section {
  font-weight: 600;
  font-size: clamp(2rem, 4.6vw, 4.25rem);
  line-height: 1.06;
  letter-spacing: -0.008em;
  color: var(--text);
  margin: 0;
  text-wrap: balance;
}
.lead {
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 38rem;
  margin: 1.1rem 0 0;
  text-wrap: pretty;
}
.kw {
  background: linear-gradient(100deg, #8fb2ff 0%, var(--blue-2) 35%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-bottom: .06em;
}
.din {
  font-family: var(--f-din);
  letter-spacing: .04em;
}

/* --------------------------------------------------------------------------
   Hintergrund: zwei weiche Lichtquellen + langsame Linien-Geometrie
   (Motion-Bibel §7 - kein Raster, kein Rauschen)
   -------------------------------------------------------------------------- */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.ambient__orb {
  position: absolute;
  width: 70vmax; height: 70vmax;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .55;
  will-change: transform;
}
.ambient__orb--a {
  left: -25vmax; top: -30vmax;
  background: radial-gradient(circle, rgba(41, 98, 255, 0.28) 0%, rgba(41, 98, 255, 0) 62%);
  animation: orbA 38s var(--ease-spring) infinite alternate;
}
.ambient__orb--b {
  right: -30vmax; bottom: -35vmax;
  background: radial-gradient(circle, rgba(89, 145, 255, 0.16) 0%, rgba(89, 145, 255, 0) 60%);
  animation: orbB 46s var(--ease-spring) infinite alternate;
}
@keyframes orbA { to { transform: translate3d(22vw, 18vh, 0) scale(1.1); } }
@keyframes orbB { to { transform: translate3d(-18vw, -22vh, 0) scale(.92); } }

main, .site-footer { position: relative; z-index: 1; }

/* --------------------------------------------------------------------------
   Buttons - Pille mit innerem Icon-Kreis ("Button in Button")
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--blue);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  padding: .55rem .55rem .55rem 1.5rem;
  min-height: 3.5rem;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 560;
  font-size: 1rem;
  letter-spacing: 0;
  white-space: nowrap;
  box-shadow: 0 10px 40px -12px var(--blue-glow), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: transform .5s var(--ease-spring), box-shadow .5s var(--ease-spring), background .4s var(--ease-out);
  isolation: isolate;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.28) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .9s var(--ease-out);
  z-index: -1;
}
.btn:hover::after { transform: translateX(120%); }
.btn:hover { box-shadow: 0 18px 50px -12px rgba(41, 98, 255, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.28); }
.btn:active { transform: scale(.97); }
.btn__icon {
  display: grid;
  place-items: center;
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  transition: transform .5s var(--ease-spring), background .4s;
}
.btn__icon svg { width: 1.05rem; height: 1.05rem; }
.btn:hover .btn__icon { transform: translate(3px, -1px) scale(1.06); background: rgba(255, 255, 255, 0.24); }

.btn--ghost {
  --btn-bg: rgba(255, 255, 255, 0.05);
  --btn-fg: var(--text);
  box-shadow: inset 0 0 0 1px var(--line-2);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28); --btn-bg: rgba(255, 255, 255, 0.08); }
.btn--ghost .btn__icon { background: rgba(255, 255, 255, 0.08); }
.btn--sm { min-height: 2.75rem; padding: .35rem .35rem .35rem 1.1rem; font-size: .92rem; gap: .6rem; }
.btn--sm .btn__icon { width: 2.05rem; height: 2.05rem; }
.btn--plain { padding: .55rem 1.5rem; }
.btn[disabled] { opacity: .4; pointer-events: none; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .45rem;
  color: var(--text); font-weight: 520;
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 2px;
  transition: border-color .3s, gap .4s var(--ease-spring);
}
.link-arrow:hover { border-color: var(--blue-2); gap: .7rem; }

/* --------------------------------------------------------------------------
   Navigation - schwebende Glas-Insel
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 1rem;
  left: 50%;
  z-index: 60;
  transform: translateX(-50%);
  width: min(calc(100% - 2rem), 1120px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .5rem .5rem .5rem 1.25rem;
  border-radius: 999px;
  background: rgba(14, 14, 17, 0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: inset 0 0 0 1px var(--line), 0 20px 60px -30px rgba(0, 0, 0, 0.8);
  transition: transform .7s var(--ease-spring), background .4s;
}
.nav.is-hidden { transform: translate(-50%, calc(-100% - 2rem)); }
.nav__logo { display: flex; align-items: center; height: 2.6rem; }
.nav__logo img { height: 100%; width: auto; }
.nav__links {
  display: flex; gap: .25rem;
  list-style: none; margin: 0; padding: 0;
}
.nav__links a {
  display: block;
  padding: .55rem .95rem;
  border-radius: 999px;
  font-size: .92rem;
  color: var(--muted);
  transition: color .3s, background .3s;
}
.nav__links a:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }
.nav__right { display: flex; align-items: center; gap: .5rem; }

.lang {
  position: relative;
  display: inline-flex;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px var(--line);
}
.lang button {
  position: relative; z-index: 1;
  width: 2.6rem; height: 2.1rem;
  border-radius: 999px;
  font-family: var(--f-din);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  color: var(--dim);
  transition: color .35s;
}
.lang button[aria-pressed="true"] { color: #fff; }
.lang__pill {
  position: absolute; top: 3px; left: 3px;
  width: 2.6rem; height: 2.1rem;
  border-radius: 999px;
  background: var(--panel-3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform .55s var(--ease-spring);
}
html[lang="en"] .lang__pill { transform: translateX(2.6rem); }

.burger {
  display: none;
  position: relative;
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.burger span {
  position: absolute; left: 50%; top: 50%;
  width: 16px; height: 1.5px; margin-left: -8px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .55s var(--ease-spring), opacity .3s;
}
.burger span:nth-child(1) { transform: translateY(-4px); }
.burger span:nth-child(2) { transform: translateY(4px); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { transform: rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 55;
  display: flex; flex-direction: column; justify-content: center;
  padding: 7rem var(--gutter) 3rem;
  background: rgba(9, 9, 11, 0.86);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  opacity: 0; visibility: hidden;
  transition: opacity .5s var(--ease-out), visibility 0s .5s;
}
.menu.is-open { opacity: 1; visibility: visible; transition: opacity .5s var(--ease-out); }
.menu ul { list-style: none; margin: 0; padding: 0; }
.menu li { overflow: hidden; }
.menu a {
  display: block;
  font-size: clamp(2rem, 9vw, 3.4rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
  transform: translateY(110%);
  transition: transform .8s var(--ease-spring);
}
.menu.is-open a { transform: translateY(0); }
.menu.is-open li:nth-child(2) a { transition-delay: .05s; }
.menu.is-open li:nth-child(3) a { transition-delay: .1s; }
.menu.is-open li:nth-child(4) a { transition-delay: .15s; }
.menu.is-open li:nth-child(5) a { transition-delay: .2s; }
.menu__foot { margin-top: 3rem; }

/* --------------------------------------------------------------------------
   Hero - Video wird beim Scrollen zur Karte (Aufdecken durch Herauszoomen)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 640px;
}
.hero__stage {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
  clip-path: inset(0 0 0 0 round 0px);
  will-change: clip-path;
}
.hero__media video,
.hero__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  will-change: transform;
}
.hero__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 9, 11, 0.82) 0%, rgba(9, 9, 11, 0.45) 55%, rgba(9, 9, 11, 0.2) 100%),
    radial-gradient(120% 80% at 70% 0%, rgba(41, 98, 255, 0.28), transparent 60%),
    linear-gradient(180deg, rgba(9, 9, 11, 0.6) 0%, rgba(9, 9, 11, 0.3) 40%, rgba(9, 9, 11, 0.95) 100%);
}
.hero__media video { filter: saturate(.85) contrast(1.05) brightness(.8); }
.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-bottom: clamp(3rem, 9vh, 7rem);
}
.hero__title { max-width: 14ch; }
.hero__title .w { display: inline-block; white-space: pre; }
.hero__lead { color: #d4d4d8; max-width: 36rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2.25rem; }
.hero__meta {
  position: absolute; right: var(--gutter); bottom: clamp(3rem, 9vh, 7rem);
  z-index: 2;
  display: flex; flex-direction: column; align-items: flex-end; gap: .75rem;
}
.live-pill {
  display: inline-flex; align-items: center; gap: .6rem;
  transition: box-shadow .3s, background .3s;
  padding: .55rem 1rem;
  border-radius: 999px;
  background: rgba(9, 9, 11, 0.5);
  box-shadow: inset 0 0 0 1px var(--line-2);
  font-family: var(--f-din); font-weight: 700;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-2);
}
.scroll-hint {
  display: flex; align-items: center; gap: .75rem;
  font-family: var(--f-din); font-weight: 700;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
}
.scroll-hint span {
  position: relative; width: 1px; height: 44px; background: var(--line-2); overflow: hidden;
}
.scroll-hint span::after {
  content: ""; position: absolute; left: 0; top: -40%;
  width: 1px; height: 40%;
  background: var(--text);
  animation: drip 2.2s var(--ease-spring) infinite;
}
@keyframes drip { to { top: 110%; } }

/* --------------------------------------------------------------------------
   Laufband der Berufe
   -------------------------------------------------------------------------- */
.marquee {
  position: relative;
  padding: 2.25rem 0;
  border-block: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee__track {
  display: flex;
  width: max-content;
  gap: 3rem;
  animation: marquee 48s linear infinite;
}
.marquee__item {
  display: flex; align-items: center; gap: 3rem;
  font-family: var(--f-din);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 2.25rem);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dim);
  white-space: nowrap;
}
.marquee__item::after {
  content: "";
  width: .55rem; height: .55rem;
  border-radius: 2px;
  background: var(--blue);
  transform: rotate(45deg);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   Sektionen
   -------------------------------------------------------------------------- */
.section {
  position: relative;
  padding-block: clamp(3.5rem, 7vw, 6rem);
}
.section--tight { padding-block: clamp(3rem, 5.5vw, 4.5rem); }
.section__head { max-width: 52rem; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .lead { margin-inline: auto; }

/* Manifest - Wörter hellen beim Scrollen auf */
.manifest__text {
  font-size: clamp(1.75rem, 4.2vw, 3.75rem);
  font-weight: 560;
  line-height: 1.18;
  letter-spacing: -0.006em;
  color: var(--text);
  margin: 0;
  max-width: 22ch;
  text-wrap: balance;
}
.manifest__text .mw { opacity: .16; transition: none; }
.manifest__foot {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem 2.5rem;
  margin-top: 2rem;
}
.manifest__sign { font-size: .95rem; color: var(--muted); }
.manifest__sign strong { color: var(--text); font-weight: 560; }

/* Zahlen */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 3rem;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--line);
  box-shadow: inset 0 0 0 1px var(--line);
}
.stat {
  padding: 2.5rem 2rem 2.25rem;
  background: var(--bg);
}
.stat__num {
  display: flex; align-items: baseline;
  font-family: var(--f-din);
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 5.25rem);
  line-height: 1;
  letter-spacing: .01em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.stat__num sup {
  font-size: .45em;
  color: var(--blue-2);
  margin-left: .08em;
  top: -.6em; position: relative;
}
.stat__label {
  margin-top: .9rem;
  font-size: .95rem;
  color: var(--muted);
  max-width: 16rem;
}

/* --------------------------------------------------------------------------
   Arbeitsalltag - horizontale Scroll-Galerie (gepinnt)
   -------------------------------------------------------------------------- */
.hscroll { position: relative; overflow: hidden; }
.hscroll__pin {
  height: 100vh; height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  gap: 2.25rem;
}
.hscroll__head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
}
.hscroll__progress {
  flex: 0 0 180px;
  height: 2px;
  background: var(--line-2);
  border-radius: 2px;
  overflow: hidden;
}
.hscroll__progress i {
  display: block; height: 100%; width: 100%;
  background: var(--blue);
  transform-origin: left;
  transform: scaleX(0);
}
.hscroll__track {
  display: flex;
  gap: 1.5rem;
  padding-inline: var(--gutter);
  width: max-content;
  will-change: transform;
}
.work-card {
  position: relative;
  flex: 0 0 auto;
  height: min(clamp(350px, 42.5vw, 650px), calc(100vh - 17rem));
  height: min(clamp(350px, 42.5vw, 650px), calc(100svh - 17rem));
  min-height: 300px;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  padding: 6px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px var(--line);
}
.work-card--wide { aspect-ratio: 16 / 11; }
.work-card__inner {
  position: relative;
  height: 100%;
  border-radius: calc(var(--r-xl) - 6px);
  overflow: hidden;
  background: var(--panel);
}
.work-card__inner video,
.work-card__inner img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  transition: transform 1.4s var(--ease-out);
}
.work-card:hover .work-card__inner video,
.work-card:hover .work-card__inner img { transform: scale(1.04); }
.work-card__inner::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9, 9, 11, 0) 35%, rgba(9, 9, 11, 0.9) 100%);
}
.work-card__body {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: 1.75rem;
}
.work-card__n {
  font-family: var(--f-din); font-weight: 700;
  font-size: .75rem; letter-spacing: .18em;
  color: var(--blue-2);
}
.work-card__title {
  margin: .5rem 0 .4rem;
  font-size: clamp(1.4rem, 2.1vw, 1.9rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
}
.work-card__text { margin: 0; color: #c4c4cc; font-size: .98rem; max-width: 30rem; }

/* --------------------------------------------------------------------------
   Benefits - asymmetrisches Bento mit Doppelrand
   -------------------------------------------------------------------------- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 1.25rem;
  margin-top: 2.75rem;
}
.shell {
  position: relative;
  padding: 6px;
  border-radius: var(--r-xl);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 0 1px var(--line);
}
.core {
  position: relative;
  height: 100%;
  border-radius: calc(var(--r-xl) - 6px);
  background: linear-gradient(180deg, var(--panel-2) 0%, var(--panel) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  overflow: hidden;
}
.benefit .core {
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
}
.benefit--a { grid-column: span 7; grid-row: span 2; }
.benefit--b { grid-column: span 5; }
.benefit--c { grid-column: span 5; }
.benefit--d { grid-column: span 4; }
.benefit--e { grid-column: span 4; }
.benefit--f { grid-column: span 4; }
.benefit__icon {
  display: grid; place-items: center;
  width: 3.25rem; height: 3.25rem;
  border-radius: 1rem;
  background: rgba(41, 98, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(41, 98, 255, 0.28);
  color: var(--blue-2);
}
.benefit__icon svg { width: 1.5rem; height: 1.5rem; }
.benefit h3 {
  margin: 0 0 .5rem;
  font-size: 1.35rem; font-weight: 600; line-height: 1.25;
  color: var(--text);
}
.benefit p { margin: 0; color: var(--muted); font-size: .98rem; }
.benefit__tag {
  display: inline-block; margin-top: .9rem;
  font-family: var(--f-din); font-weight: 700;
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--dim);
}
.benefit--a .core { padding: 0; }
.benefit--a .benefit__media {
  position: absolute; inset: 0;
}
.benefit--a .benefit__media img { width: 100%; height: 100%; object-fit: cover; }
.benefit--a .benefit__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9, 9, 11, 0.1) 20%, rgba(9, 9, 11, 0.94) 100%);
}
.benefit--a .benefit__body {
  position: relative; z-index: 1;
  margin-top: auto;
  padding: 2.25rem;
}
.benefit--a h3 { font-size: clamp(1.6rem, 2.6vw, 2.3rem); }

/* --------------------------------------------------------------------------
   Culture Code - kompakter Werte-Index
   -------------------------------------------------------------------------- */
.culture {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 4rem;
  align-items: start;
}
.culture__intro { position: sticky; top: calc(var(--nav-h) + 3rem); }
.culture__big {
  margin-top: 2.5rem;
  font-weight: 700;
  font-size: clamp(6rem, 13vw, 11rem);
  line-height: .8;
  letter-spacing: .01em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(89, 145, 255, 0.55);
  font-variant-numeric: tabular-nums;
}
.culture__list { border-top: 1px solid var(--line); }
.cv { border-bottom: 1px solid var(--line); transition: background .4s; }
.cv__head {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.15rem .25rem;
  text-align: left;
}
.cv__n { font-family: var(--f-din); font-weight: 700; font-size: .85rem; letter-spacing: .08em; color: var(--dim); transition: color .3s; }
.cv__t {
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 560;
  color: var(--muted);
  transition: color .3s, transform .6s var(--ease-spring);
}
.cv__i {
  position: relative; width: 2rem; height: 2rem; border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  transition: background .3s;
}
.cv__i::before, .cv__i::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 10px; height: 1.5px; margin: -.75px 0 0 -5px;
  background: var(--text); transition: transform .5s var(--ease-spring);
}
.cv__i::after { transform: rotate(90deg); }
.cv__head:hover .cv__t { color: var(--text); transform: translateX(6px); }
.cv.is-open .cv__n { color: var(--blue-2); }
.cv.is-open .cv__t { color: var(--text); }
.cv.is-open .cv__i { background: var(--blue); }
.cv.is-open .cv__i::after { transform: rotate(0deg); }
.cv__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .6s var(--ease-spring); }
.cv.is-open .cv__body { grid-template-rows: 1fr; }
.cv__body > div { overflow: hidden; }
.cv__body p { margin: 0 0 1.35rem 4rem; color: var(--muted); max-width: 36rem; }

/* --------------------------------------------------------------------------
   Zwei Kontinente
   -------------------------------------------------------------------------- */
.globe {
  position: relative;
  margin-top: 2.75rem;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: radial-gradient(80% 100% at 50% 100%, rgba(41, 98, 255, 0.16), transparent 60%), var(--bg-2);
  box-shadow: inset 0 0 0 1px var(--line);
}
.globe__svg { width: 100%; height: auto; }
.globe__svg .arc { fill: none; stroke: url(#arcGrad); stroke-width: 1.5; stroke-linecap: round; }
.globe__svg .arc-ghost { fill: none; stroke: rgba(255, 255, 255, 0.08); stroke-width: 1; stroke-dasharray: 2 6; }
.globe__svg .ring { fill: none; stroke: rgba(255, 255, 255, 0.06); }
.globe__svg .dot { fill: var(--blue); }
.globe__svg .dot-halo { fill: rgba(41, 98, 255, 0.18); }
.globe__svg .lbl {
  font-family: var(--f-din); font-weight: 700;
  font-size: 13px; letter-spacing: .14em;
  fill: var(--text-2);
}
.globe__svg .lbl-sub { font-family: var(--f-din); font-size: 11px; letter-spacing: .12em; fill: var(--dim); }
.globe__svg .land { fill: rgba(255, 255, 255, 0.06); }
.hubs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.hub {
  padding: 1.5rem 1.75rem 1.75rem;
  border-right: 1px solid var(--line);
}
.hub:last-child { border-right: 0; }
.hub__country {
  font-family: var(--f-din); font-weight: 700;
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--dim);
}
.hub__city { margin: .35rem 0 .15rem; font-size: 1.2rem; font-weight: 600; color: var(--text); }
.hub__time {
  font-family: var(--f-din); font-size: .95rem; letter-spacing: .06em;
  color: var(--muted); font-variant-numeric: tabular-nums;
}
.hub__jobs {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: .75rem;
  font-size: .85rem; color: var(--blue-2);
}
.hub__jobs--none { color: var(--dim); }

/* --------------------------------------------------------------------------
   Job-Finder (Schritt 1-3)
   -------------------------------------------------------------------------- */
.finder {
  margin-top: 2.75rem;
}
.finder__steps {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-bottom: 2rem;
}
.fstep {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .5rem 1rem .5rem .5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px var(--line);
  font-size: .9rem; color: var(--dim);
  transition: color .3s, box-shadow .3s, background .3s;
}
.fstep b {
  display: grid; place-items: center;
  width: 1.75rem; height: 1.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  font-family: var(--f-din); font-weight: 700; font-size: .8rem;
  color: var(--muted);
  transition: background .3s, color .3s;
}
.fstep.is-active { color: var(--text); box-shadow: inset 0 0 0 1px rgba(41, 98, 255, 0.5); background: rgba(41, 98, 255, 0.08); }
.fstep.is-active b { background: var(--blue); color: #fff; }
.fstep.is-done { color: var(--text-2); cursor: pointer; }
.fstep.is-done b { background: rgba(52, 211, 153, 0.16); color: var(--ok); }
.fstep em { font-style: normal; color: var(--blue-2); }

.fpanel { display: none; }
.fpanel.is-active { display: block; }

.country-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.choice-card {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  border-radius: var(--r-xl);
  padding: 6px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: transform .6s var(--ease-spring), box-shadow .4s;
}
.choice-card:hover { transform: translateY(-4px); box-shadow: inset 0 0 0 1px rgba(41, 98, 255, 0.55), 0 30px 80px -40px var(--blue-glow); }
.choice-card:active { transform: scale(.985); }
.choice-card .core { min-height: 380px; display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; }
.choice-card__bg { position: absolute; inset: 0; }
.choice-card__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .55; transform: scale(1.06); transition: transform 1.2s var(--ease-out), opacity .6s; }
.choice-card:hover .choice-card__bg img { transform: scale(1); opacity: .7; }
.choice-card__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9, 9, 11, 0.15) 0%, rgba(9, 9, 11, 0.92) 100%);
}
.choice-card__body { position: relative; z-index: 1; }
.choice-card__code {
  font-family: var(--f-din); font-weight: 700;
  font-size: clamp(4rem, 9vw, 7.5rem);
  line-height: .85; letter-spacing: .02em;
  color: var(--text);
}
.choice-card__name { margin-top: .75rem; font-size: 1.5rem; font-weight: 600; color: var(--text); }
.choice-card__meta { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; margin-top: .5rem; color: #c4c4cc; font-size: .95rem; }
.choice-card__meta .din { color: var(--muted); }
.choice-card__go {
  position: absolute; right: 1.5rem; top: 1.5rem; z-index: 1;
  display: grid; place-items: center;
  width: 3.25rem; height: 3.25rem; border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  transition: transform .6s var(--ease-spring), background .3s;
}
.choice-card:hover .choice-card__go { background: var(--blue); transform: rotate(-45deg); }
.choice-card__go svg { width: 1.2rem; height: 1.2rem; }

.loc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.loc-grid .choice-card .core { min-height: 260px; }
.loc-grid .choice-card__code { font-size: clamp(2.2rem, 4vw, 3.2rem); }

.finder__bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  margin-bottom: 1.5rem;
}
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  padding: .5rem 1rem;
  border-radius: 999px;
  font-size: .9rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: color .3s, background .3s, box-shadow .3s;
}
.chip:hover { color: var(--text); }
.chip[aria-pressed="true"] { color: #fff; background: var(--blue); box-shadow: none; }
.finder__context { color: var(--muted); font-size: .95rem; }
.finder__context button { color: var(--blue-2); border-bottom: 1px solid currentColor; }

.jobs { display: grid; gap: .75rem; }
.job {
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: box-shadow .4s, background .4s;
}
.job:hover { box-shadow: inset 0 0 0 1px var(--line-2); background: rgba(255, 255, 255, 0.04); }
.job.is-open { box-shadow: inset 0 0 0 1px rgba(41, 98, 255, 0.45); background: rgba(41, 98, 255, 0.045); }
.job__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  padding: 1.5rem 1.75rem;
  text-align: left;
}
.job__title { margin: 0; font-size: clamp(1.1rem, 1.6vw, 1.35rem); font-weight: 600; line-height: 1.3; color: var(--text); }
.job__meta { display: flex; flex-wrap: wrap; gap: .35rem 1rem; margin-top: .45rem; font-size: .88rem; color: var(--dim); }
.job__meta span { display: inline-flex; align-items: center; gap: .35rem; }
.job__meta svg { width: .95rem; height: .95rem; }
.job__dept {
  font-family: var(--f-din); font-weight: 700;
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  padding: .4rem .75rem; border-radius: 999px;
  background: rgba(255, 255, 255, 0.05); color: var(--muted);
}
.job__toggle {
  display: grid; place-items: center;
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  transition: transform .6s var(--ease-spring), background .3s;
}
.job__toggle svg { width: 1rem; height: 1rem; }
.job.is-open .job__toggle { transform: rotate(45deg); background: var(--blue); }
.job__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .7s var(--ease-spring);
}
.job.is-open .job__body { grid-template-rows: 1fr; }
.job__body > div { min-height: 0; overflow: hidden; overflow: clip; }
.jobs__empty {
  padding: 3rem 2rem; text-align: center; color: var(--muted);
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px var(--line);
}

/* --------------------------------------------------------------------------
   Ablauf
   -------------------------------------------------------------------------- */
.process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.75rem;
}
.process__line {
  position: absolute; left: 0; right: 0; top: 1.6rem;
  height: 1px; background: var(--line-2);
}
.process__line i {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  transform-origin: left; transform: scaleX(0);
}
.pstep { position: relative; padding-right: 1rem; }
.pstep__dot {
  position: relative; z-index: 1;
  display: grid; place-items: center;
  width: 3.2rem; height: 3.2rem;
  border-radius: 50%;
  background: var(--bg);
  box-shadow: inset 0 0 0 1px var(--line-2);
  font-family: var(--f-din); font-weight: 700; font-size: .95rem;
  color: var(--text);
}
.pstep h3 { margin: 1.5rem 0 .5rem; font-size: 1.25rem; font-weight: 600; color: var(--text); }
.pstep p { margin: 0; color: var(--muted); font-size: .98rem; }
.pstep__time {
  display: inline-block; margin-top: .9rem;
  font-family: var(--f-din); font-weight: 700;
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--blue-2);
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 4rem;
}
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  width: 100%;
  padding: 1.5rem 0;
  text-align: left;
  font-size: 1.12rem; font-weight: 560;
  color: var(--text);
}
.faq__q i {
  position: relative; flex: 0 0 auto;
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.faq__q i::before, .faq__q i::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 12px; height: 1.5px; margin: -.75px 0 0 -6px;
  background: var(--text);
  transition: transform .5s var(--ease-spring);
}
.faq__q i::after { transform: rotate(90deg); }
.faq__item.is-open .faq__q i::after { transform: rotate(0deg); }
.faq__a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .6s var(--ease-spring);
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { margin: 0 0 1.5rem; color: var(--muted); max-width: 44rem; }

/* --------------------------------------------------------------------------
   Schluss-CTA + Footer
   -------------------------------------------------------------------------- */
.final {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final__glow {
  position: absolute; left: 50%; top: 55%;
  width: 90vw; height: 60vw; max-width: 1400px; max-height: 900px;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(41, 98, 255, 0.35), transparent);
  pointer-events: none;
}
.final .h-display { max-width: 16ch; margin-inline: auto; }
.final .lead { margin-inline: auto; }
.final__ctas { display: flex; justify-content: center; flex-wrap: wrap; gap: .75rem; margin-top: 2.5rem; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 4rem 0 2.5rem;
  font-size: .92rem;
  color: var(--dim);
  background: var(--bg);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer__logo { height: 2.25rem; width: auto; }
.footer__about { margin: 1.25rem 0 0; max-width: 22rem; }
.site-footer h4 {
  margin: 0 0 1rem;
  font-family: var(--f-din); font-weight: 700;
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted);
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.site-footer a, .site-footer button.linklike { color: var(--muted); transition: color .3s; font-size: inherit; }
.site-footer a:hover, .site-footer button.linklike:hover { color: var(--text); }
.footer__eeo {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: .82rem; line-height: 1.6; max-width: 62rem;
}
.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  margin-top: 1.5rem;
  font-size: .82rem;
}

/* --------------------------------------------------------------------------
   Bewerbungs-Flow (Overlay)
   -------------------------------------------------------------------------- */
.apply {
  position: fixed; inset: 0; z-index: 90;
  display: flex; flex-direction: column;
  background: rgba(9, 9, 11, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 0; visibility: hidden;
  transition: opacity .5s var(--ease-out), visibility 0s .5s;
}
.apply.is-open { opacity: 1; visibility: visible; transition: opacity .5s var(--ease-out); }
.apply__glow {
  position: absolute; left: 50%; top: -20%;
  width: 120vw; height: 70vh; transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(41, 98, 255, 0.22), transparent);
  pointer-events: none;
}
.apply__top {
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem var(--gutter);
}
.apply__job { min-width: 0; }
.apply__job small {
  display: block;
  font-family: var(--f-din); font-weight: 700;
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--dim);
}
.apply__job strong {
  display: block;
  font-weight: 560; font-size: .98rem; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.apply__close {
  flex: 0 0 auto;
  display: grid; place-items: center;
  width: 2.9rem; height: 2.9rem; border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  transition: background .3s, transform .5s var(--ease-spring);
}
.apply__close:hover { background: rgba(255, 255, 255, 0.12); transform: rotate(90deg); }
.apply__close svg { width: 1.1rem; height: 1.1rem; }
.apply__progress {
  position: relative;
  height: 2px; margin-inline: var(--gutter);
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.apply__progress i {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .8s var(--ease-spring);
}
.apply__scroll {
  position: relative;
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.apply__form {
  min-height: 100%;
  display: flex; align-items: center;
  padding: 2.5rem var(--gutter) 3rem;
}
.astep {
  display: none;
  width: 100%; max-width: 720px;
  margin-inline: auto;
}
.astep.is-active { display: block; }
.astep__count {
  font-family: var(--f-din); font-weight: 700;
  font-size: .75rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--blue-2);
}
.astep__q {
  margin: .9rem 0 .5rem;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
  text-wrap: balance;
}
.astep__hint { margin: 0 0 2rem; color: var(--muted); }
.options { display: grid; gap: .75rem; }
.options--2 { grid-template-columns: 1fr 1fr; }
.opt {
  position: relative;
  display: flex; align-items: center; gap: 1rem;
  width: 100%;
  padding: 1.1rem 1.25rem;
  border-radius: var(--r-md);
  text-align: left;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 0 1px var(--line-2);
  font-size: 1.05rem; color: var(--text-2);
  transition: box-shadow .3s, background .3s, transform .45s var(--ease-spring);
}
.opt:hover { background: rgba(255, 255, 255, 0.06); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25); }
.opt:active { transform: scale(.985); }
.opt__key {
  flex: 0 0 auto;
  display: grid; place-items: center;
  width: 1.9rem; height: 1.9rem;
  border-radius: .55rem;
  box-shadow: inset 0 0 0 1px var(--line-2);
  font-family: var(--f-din); font-weight: 700; font-size: .8rem;
  color: var(--muted);
  transition: background .3s, color .3s, box-shadow .3s;
}
.opt[aria-checked="true"] { background: rgba(41, 98, 255, 0.14); box-shadow: inset 0 0 0 1.5px var(--blue); color: #fff; }
.opt[aria-checked="true"] .opt__key { background: var(--blue); color: #fff; box-shadow: none; }
.opt__check {
  margin-left: auto;
  width: 1.2rem; height: 1.2rem;
  color: var(--blue-2);
  opacity: 0; transform: scale(.6);
  transition: opacity .3s, transform .5s var(--ease-spring);
}
.opt[aria-checked="true"] .opt__check { opacity: 1; transform: scale(1); }
.opt--big { padding: 1.5rem; font-size: 1.2rem; font-weight: 560; justify-content: center; }
.opt--big .opt__key { display: none; }
.opt--big .opt__check { display: none; }

.astep__nav {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  margin-top: 2.25rem;
}
.back {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .6rem .2rem;
  color: var(--muted); font-size: .95rem;
  transition: color .3s;
}
.back:hover { color: var(--text); }
.back svg { width: 1rem; height: 1rem; }
.kbd-hint { font-size: .82rem; color: var(--dim); }
.kbd-hint kbd {
  font-family: var(--f-din); font-weight: 700; font-size: .75rem;
  padding: .15rem .45rem; border-radius: .35rem;
  box-shadow: inset 0 0 0 1px var(--line-2);
}

/* Gehalt */
.salary { margin-top: .5rem; }
.salary__toggle { margin-bottom: 1.5rem; }
.salary__value {
  display: flex; align-items: baseline; gap: .6rem;
  font-family: var(--f-din); font-weight: 700;
  font-size: clamp(3rem, 9vw, 5.5rem);
  line-height: 1;
  letter-spacing: .01em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.salary__value small { font-size: .28em; letter-spacing: .12em; color: var(--muted); text-transform: uppercase; }
.salary__input {
  width: 100%;
  margin: 1.75rem 0 .5rem;
  -webkit-appearance: none; appearance: none;
  height: 6px; border-radius: 6px;
  background: linear-gradient(90deg, var(--blue) var(--p, 40%), rgba(255, 255, 255, 0.1) var(--p, 40%));
  outline-offset: 8px;
}
.salary__input::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 28px; height: 28px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(41, 98, 255, 0.35), 0 6px 18px rgba(0, 0, 0, 0.5);
  cursor: grab;
}
.salary__input::-moz-range-thumb {
  width: 28px; height: 28px; border-radius: 50%; border: 0;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(41, 98, 255, 0.35), 0 6px 18px rgba(0, 0, 0, 0.5);
}
.salary__scale { display: flex; justify-content: space-between; font-family: var(--f-din); font-size: .8rem; letter-spacing: .08em; color: var(--dim); }
.salary__exact { display: flex; align-items: center; gap: .75rem; margin-top: 1.5rem; }
.salary__exact label { font-size: .9rem; color: var(--muted); }
.salary__exact input { max-width: 11rem; }
.salary__note { margin-top: 1rem; font-size: .85rem; color: var(--dim); }

/* Felder */
.fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { position: relative; display: flex; flex-direction: column; gap: .45rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .88rem; color: var(--muted); }
.field label .opt-tag { color: var(--dim); }
.input {
  width: 100%;
  padding: 1rem 1.1rem;
  border-radius: .9rem;
  border: 0;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px var(--line-2);
  color: var(--text);
  font-size: 1.02rem;
  transition: box-shadow .3s, background .3s;
}
.input::placeholder { color: #5b5b63; }
.input:hover { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24); }
.input:focus { outline: none; box-shadow: inset 0 0 0 1.5px var(--blue); background: rgba(41, 98, 255, 0.06); }
.input.is-invalid { box-shadow: inset 0 0 0 1.5px var(--err); }
textarea.input { min-height: 7rem; resize: vertical; }
.phone { display: grid; grid-template-columns: 7.5rem 1fr; gap: .5rem; }
select.input {
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .8rem center; background-size: 1rem;
  padding-right: 2.2rem;
}
select.input option { background: #18181b; }
.field__err { font-size: .82rem; color: var(--err); min-height: 0; }

.checks { display: grid; gap: .9rem; margin-top: 1.5rem; }
.check {
  display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start;
  padding: 1rem 1.1rem;
  border-radius: .9rem;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 0 0 1px var(--line);
  font-size: .9rem; line-height: 1.55; color: var(--muted);
  cursor: pointer;
  transition: box-shadow .3s;
}
.check:hover { box-shadow: inset 0 0 0 1px var(--line-2); }
.check input {
  -webkit-appearance: none; appearance: none;
  width: 1.35rem; height: 1.35rem; margin: .1rem 0 0;
  border-radius: .4rem;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.3);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .25s, box-shadow .25s;
}
.check input::after {
  content: ""; width: .7rem; height: .4rem;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px) scale(0);
  transition: transform .35s var(--ease-spring);
}
.check input:checked { background: var(--blue); box-shadow: none; }
.check input:checked::after { transform: rotate(-45deg) translate(1px, -1px) scale(1); }
.check.is-invalid { box-shadow: inset 0 0 0 1.5px var(--err); }
.check a { color: var(--text-2); text-decoration: underline; text-underline-offset: 3px; }
.check strong { color: var(--text-2); font-weight: 560; }
.legal-note { margin-top: 1rem; font-size: .82rem; color: var(--dim); line-height: 1.55; }
.legal-note a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

.form-error {
  margin-top: 1rem; padding: 1rem 1.1rem;
  border-radius: .9rem;
  background: rgba(255, 138, 138, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 138, 138, 0.35);
  color: #ffc9c9; font-size: .92rem;
}
.form-error a { text-decoration: underline; }

/* Ergebnis-Screens */
.result { text-align: center; }
.result__icon {
  display: grid; place-items: center;
  width: 5.5rem; height: 5.5rem; margin: 0 auto 2rem;
  border-radius: 50%;
  background: rgba(41, 98, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(41, 98, 255, 0.45), 0 0 80px -10px var(--blue-glow);
  color: var(--blue-2);
}
.result__icon svg { width: 2.2rem; height: 2.2rem; }
.result__icon--soft { background: rgba(255, 255, 255, 0.05); box-shadow: inset 0 0 0 1px var(--line-2); color: var(--text-2); }
.result .astep__q { margin-inline: auto; max-width: 20ch; }
.result .astep__hint { max-width: 34rem; margin-inline: auto; }
.result__next {
  display: grid; gap: .6rem;
  max-width: 30rem; margin: 2rem auto 0;
  text-align: left;
}
.result__next div {
  display: flex; gap: .9rem; align-items: center;
  padding: .9rem 1.1rem;
  border-radius: .9rem;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px var(--line);
  color: var(--text-2); font-size: .95rem;
}
.result__next b {
  display: grid; place-items: center; flex: 0 0 auto;
  width: 1.8rem; height: 1.8rem; border-radius: 50%;
  background: rgba(41, 98, 255, 0.16); color: var(--blue-2);
  font-family: var(--f-din); font-size: .8rem;
}
.result__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: .75rem; margin-top: 2.5rem; }

.spinner {
  width: 1.1rem; height: 1.1rem; border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35); border-top-color: #fff;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --------------------------------------------------------------------------
   Consent-Banner
   -------------------------------------------------------------------------- */
.consent {
  position: fixed; left: 1rem; bottom: 1rem; z-index: 100;
  width: min(calc(100% - 2rem), 440px);
  padding: 6px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px var(--line-2), 0 30px 80px -20px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translateY(calc(100% + 2rem));
  transition: transform .8s var(--ease-spring);
}
.consent.is-open { transform: translateY(0); }
.consent__core {
  padding: 1.4rem;
  border-radius: calc(var(--r-lg) - 6px);
  background: rgba(19, 19, 22, 0.94);
}
.consent h2 { margin: 0 0 .5rem; font-size: 1.05rem; font-weight: 600; color: var(--text); }
.consent p { margin: 0; font-size: .86rem; line-height: 1.55; color: var(--muted); }
.consent p a { color: var(--text-2); text-decoration: underline; text-underline-offset: 3px; }
.consent__opts { display: none; margin-top: 1rem; gap: .6rem; }
.consent.show-opts .consent__opts { display: grid; }
.consent__opt {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: .8rem .9rem;
  border-radius: .8rem;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px var(--line);
  font-size: .86rem; color: var(--text-2);
}
.consent__opt small { display: block; color: var(--dim); font-size: .78rem; margin-top: .15rem; }
.switch { position: relative; flex: 0 0 auto; width: 2.6rem; height: 1.5rem; }
.switch input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; z-index: 1; }
.switch span {
  position: absolute; inset: 0; border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  transition: background .3s;
}
.switch span::after {
  content: ""; position: absolute; left: 3px; top: 3px;
  width: calc(1.5rem - 6px); height: calc(1.5rem - 6px); border-radius: 50%;
  background: #fff;
  transition: transform .45s var(--ease-spring);
}
.switch input:checked + span { background: var(--blue); }
.switch input:checked + span::after { transform: translateX(1.1rem); }
.switch input:disabled + span { opacity: .55; }
.consent__btns { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-top: 1.1rem; }
.consent__btns .btn { justify-content: center; min-height: 2.9rem; padding: .5rem 1rem; font-size: .9rem; box-shadow: none; }
.consent__btns .btn--ghost { box-shadow: inset 0 0 0 1px var(--line-2); }
.consent__more { grid-column: 1 / -1; padding: .4rem; font-size: .84rem; color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }

/* --------------------------------------------------------------------------
   Rechtstexte (Impressum / Datenschutz)
   -------------------------------------------------------------------------- */
.legal { padding: calc(var(--nav-h) + 5rem) 0 6rem; }
.legal__inner { max-width: 820px; }
.legal h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 600; line-height: 1.08; color: var(--text); margin: 1.25rem 0 1rem; }
.legal h2 { margin: 3rem 0 .8rem; font-size: 1.35rem; font-weight: 600; color: var(--text); }
.legal h3 { margin: 1.75rem 0 .5rem; font-size: 1.05rem; font-weight: 600; color: var(--text-2); }
.legal p, .legal li { color: var(--muted); font-size: 1rem; }
.legal ul { padding-left: 1.2rem; }
.legal a { color: var(--blue-2); text-decoration: underline; text-underline-offset: 3px; }
.legal address { font-style: normal; color: var(--text-2); line-height: 1.7; }
.legal .stand { margin-top: 3rem; font-size: .88rem; color: var(--dim); }
.todo {
  background: rgba(251, 191, 36, 0.14);
  color: #fcd34d;
  padding: .05em .35em;
  border-radius: .3em;
  box-shadow: inset 0 0 0 1px rgba(251, 191, 36, 0.4);
  font-size: .95em;
}
[data-lang-block] { display: none; }
html[lang="de"] [data-lang-block="de"],
html[lang="en"] [data-lang-block="en"] { display: block; }

/* --------------------------------------------------------------------------
   Reveal-Grundzustand (nur wenn JS + Bewegung erlaubt)
   -------------------------------------------------------------------------- */
.js-motion [data-reveal] { opacity: 0; transform: translateY(40px); filter: blur(10px); }
.js-motion .hero__title .w,
.js-motion .hero [data-hero-fade] { opacity: 0; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .burger { display: grid; }
  .nav__cta { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(6, 1fr); }
  .benefit--a { grid-column: span 6; grid-row: span 1; min-height: 420px; }
  .benefit--b, .benefit--c, .benefit--d, .benefit--e, .benefit--f { grid-column: span 3; }
  .process { grid-template-columns: 1fr 1fr; row-gap: 3rem; }
  .process__line { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 2rem; }
  .culture { grid-template-columns: 1fr; gap: 2.5rem; }
  .culture__intro { position: static; }
}

@media (max-width: 767px) {
  body { font-size: 1rem; }
  .nav { top: .75rem; width: calc(100% - 1.5rem); padding-left: 1rem; }
  .nav__logo { height: 2.3rem; }
  .hero__meta { display: none; }
  .hero__content { padding-bottom: 3rem; }
  .hero__ctas .btn { width: 100%; justify-content: space-between; }
  .stats { grid-template-columns: 1fr 1fr; margin-top: 3.5rem; }
  .stat { padding: 1.75rem 1.25rem; }
  .bento { grid-template-columns: 1fr; gap: 1rem; margin-top: 3rem; }
  .bento > * { grid-column: 1 / -1 !important; }
  .culture__big { display: none; }
  .cv__body p { margin-left: 0; }
  .hubs { grid-template-columns: 1fr; }
  .hub { border-right: 0; border-bottom: 1px solid var(--line); }
  .hub:last-child { border-bottom: 0; }
  .hub { padding: 1.1rem 1.1rem 1.25rem; }
  .country-grid { grid-template-columns: 1fr; }
  .choice-card .core { min-height: 280px; padding: 1.5rem; }
  .job__head { grid-template-columns: minmax(0, 1fr) auto; padding: 1.25rem; gap: 1rem; }
  .job__dept { display: none; }
  .process { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .options--2 { grid-template-columns: 1fr; }
  .fields { grid-template-columns: 1fr; }
  .apply__form { align-items: flex-start; padding-top: 2rem; }
  .kbd-hint { display: none; }
  .consent { left: .75rem; bottom: .75rem; width: calc(100% - 1.5rem); }
}

/* Weniger Bewegung: alles sofort sichtbar, keine Endlos-Animationen */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .manifest__text .mw { opacity: 1; }
  .marquee__track { animation: none; }
}

/* Nachträge */
.fstep[disabled] { cursor: default; }
html:not(.js-motion) .hscroll__pin { height: auto; padding-block: 3.5rem; }
html:not(.js-motion) .hscroll__track { width: auto; overflow-x: auto; scroll-snap-type: x mandatory; }
html:not(.js-motion) .work-card { scroll-snap-align: start; }

/* --------------------------------------------------------------------------
   Job-Finder als Hauptfokus der Seite
   -------------------------------------------------------------------------- */
.section--focus {
  isolation: isolate;
  overflow: hidden;
  overflow: clip;
  padding-block: clamp(4.5rem, 9vw, 8rem);
  background: linear-gradient(180deg, transparent 0%, rgba(41, 98, 255, 0.06) 30%, rgba(41, 98, 255, 0.06) 70%, transparent 100%);
}
.section--focus::before,
.section--focus::after {
  content: "";
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(89, 145, 255, 0.5), transparent);
}
.section--focus::before { top: 0; }
.section--focus::after { bottom: 0; }
.focus__glow {
  position: absolute; left: 50%; top: 0;
  width: min(1400px, 120vw); height: 80%;
  transform: translateX(-50%);
  background: radial-gradient(50% 55% at 50% 30%, rgba(41, 98, 255, 0.32), transparent 70%);
  pointer-events: none; z-index: -1;
}
.focus__title { font-size: clamp(2.6rem, 6.2vw, 5.75rem); margin-inline: auto; }
.section--focus .section__head--center { max-width: 60rem; }
.section--focus .lead { color: #c4c4cc; }

.finder-stage {
  position: relative;
  isolation: isolate;
  margin-top: 3rem;
  padding: clamp(1rem, 2.6vw, 2.25rem);
  border-radius: 2.5rem;
  background: linear-gradient(180deg, rgba(24, 24, 27, 0.92), rgba(14, 14, 17, 0.92));
  box-shadow: 0 50px 140px -50px rgba(41, 98, 255, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.finder-stage::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  padding: 1.5px;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(89, 145, 255, 0.85) 0%, rgba(41, 98, 255, 0.25) 35%, rgba(255, 255, 255, 0.08) 70%, rgba(255, 255, 255, 0.05) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.finder-stage .finder__steps { justify-content: center; }
.finder-stage .choice-card .core { min-height: 420px; }
.finder-stage .choice-card { background: rgba(255, 255, 255, 0.05); }
@media (max-width: 767px) {
  .finder-stage { border-radius: 1.75rem; padding: .75rem; }
  .finder-stage .choice-card .core { min-height: 260px; }
  .finder-stage .finder__steps { justify-content: flex-start; }
}

.live-pill svg { width: .95rem; height: .95rem; color: var(--blue-2); transition: transform .5s var(--ease-spring); }
.live-pill:hover { box-shadow: inset 0 0 0 1px rgba(89, 145, 255, 0.5); }
.live-pill:hover svg { transform: translateX(3px); }

/* ==========================================================================
   Responsive-Feinschliff: alle Breiten UND Höhen
   ========================================================================== */

/* Überlauf langer Wörter verhindern (z. B. "Automatisierungstechnik") */
h1, h2, h3, .job__title, .opt, .choice-card__code, .stat__label { overflow-wrap: break-word; }
@media (max-width: 480px) {
  .job__title, .opt, .work-card__title, .benefit h3, .cv__t, .astep__q, .choice-card__name, .pstep h3 { hyphens: auto; -webkit-hyphens: auto; }
}

/* Galerie ohne Pin: Handy, niedrige Fenster (Handy quer), wenn kein JS-Motion */
@media (max-width: 767px), (max-height: 559px) {
  html:not(.hpin) .hscroll__pin { height: auto; padding-block: 3.5rem; gap: 1.75rem; }
  html:not(.hpin) .hscroll__track {
    width: auto;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: .5rem;
    scrollbar-width: none;
    transform: none !important;
  }
  html:not(.hpin) .hscroll__track::-webkit-scrollbar { display: none; }
  html:not(.hpin) .work-card, html:not(.hpin) .work-card--wide { height: auto; min-height: 0; width: min(82vw, 420px); aspect-ratio: 4 / 5; scroll-snap-align: center; }
  html:not(.hpin) .hscroll__progress { display: none; }
}
@media (max-height: 559px) and (min-width: 560px) {
  .work-card, .work-card--wide { width: min(58vw, 460px); height: auto; aspect-ratio: 4 / 3; }
  .work-card__body { padding: 1.25rem; }
  .work-card__title { font-size: 1.25rem; }
  .work-card__text { font-size: .9rem; }
}

/* Safe Areas (iPhone mit Notch / Home-Indicator, Querformat) */
.nav { top: max(1rem, env(safe-area-inset-top)); }
.wrap { padding-left: max(var(--gutter), env(safe-area-inset-left)); padding-right: max(var(--gutter), env(safe-area-inset-right)); }
.site-footer { padding-bottom: max(2.5rem, calc(env(safe-area-inset-bottom) + 1.5rem)); }
.apply__top { padding-top: max(1.1rem, env(safe-area-inset-top)); padding-left: max(var(--gutter), env(safe-area-inset-left)); padding-right: max(var(--gutter), env(safe-area-inset-right)); }
.apply__form { padding-bottom: max(3rem, calc(env(safe-area-inset-bottom) + 2rem)); }
.consent { bottom: max(1rem, env(safe-area-inset-bottom)); }

/* Sehr kleine Handys (≤ 380 px) */
@media (max-width: 380px) {
  :root { --gutter: 1rem; }
  .nav { padding-left: .8rem; gap: .5rem; }
  .nav__logo { height: 2rem; }
  .lang button, .lang__pill { width: 2.3rem; }
  html[lang="en"] .lang__pill { transform: translateX(2.3rem); }
  .h-display { font-size: clamp(2.15rem, 11vw, 2.6rem); }
  .h-section { font-size: 1.75rem; }
  .stat { padding: 1.4rem 1rem; }
  .stat__num { font-size: 2.6rem; }
  .salary__value { font-size: 2.6rem; }
  .finder-stage { padding: .5rem; border-radius: 1.5rem; }
  .choice-card .core { padding: 1.25rem; }
  .job__head { padding: 1rem; }
  .opt { padding: .95rem 1rem; font-size: 1rem; }
  .btn { font-size: .95rem; padding-left: 1.2rem; }
}

/* Gehaltsanzeige darf umbrechen */
.salary__value { flex-wrap: wrap; row-gap: .25rem; }

/* Standort-Grafik: Beschriftung auf kleinen Displays lesbar */
@media (max-width: 767px) {
  .globe__svg .lbl { font-size: 30px; }
  .globe__svg .lbl-sub { display: none; }
}

/* Niedrige Fenster (Handy quer, kleine Laptops) */
@media (max-height: 560px) {
  .hero { min-height: 520px; }
  .hero__content { padding-bottom: 2rem; }
  .hero .h-display { font-size: clamp(2.2rem, 6vw, 3.6rem); }
  .hero__lead { margin-top: .75rem; font-size: 1rem; }
  .hero__ctas { margin-top: 1.25rem; }
  .hero__meta { bottom: 2rem; }
  .nav { top: max(.5rem, env(safe-area-inset-top)); padding-top: .35rem; padding-bottom: .35rem; }
  .culture__intro { position: static; }
  .culture__big { display: none; }
  .apply__form { align-items: flex-start; padding-top: 1.5rem; }
  .astep__q { font-size: clamp(1.4rem, 3.4vw, 2rem); }
  .finder-stage .choice-card .core, .choice-card .core { min-height: 240px; }
}
@media (min-height: 561px) and (max-height: 760px) and (min-width: 768px) {
  .hero .h-display { font-size: clamp(2.6rem, 9vh, 5.5rem); }
  .finder-stage .choice-card .core { min-height: 320px; }
}

/* Tablet quer / kleine Laptops: Hero-Meta nicht mit CTAs kollidieren lassen */
@media (min-width: 768px) and (max-width: 1080px) {
  .hero__lead { max-width: 30rem; }
}

/* Große Monitore */
@media (min-width: 1800px) {
  :root { --max: 1480px; }
  body { font-size: 1.125rem; }
}
@media (min-width: 2400px) {
  :root { --max: 1680px; }
  html { font-size: 112.5%; }
}
@media (max-height: 480px) {
  .hero { min-height: 100vh; min-height: 100svh; }
  .hero__lead { display: none; }
  .hero__ctas .btn { min-height: 3rem; }
}
.apply { overflow: hidden; }

/* ==========================================================================
   Stellen-Detail
   ========================================================================== */
.jd {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2.5rem;
  padding: .25rem 1.75rem 1.75rem;
}
.jd__teaser {
  margin: 0;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  color: var(--text-2);
  max-width: 46rem;
  text-wrap: pretty;
}
.jd__facts {
  display: flex; flex-wrap: wrap; gap: .5rem;
  list-style: none; margin: 1.5rem 0 0; padding: 0;
}
.jd__facts li {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem .9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px var(--line);
  font-size: .9rem; color: var(--text-2);
}
.jd__facts svg { width: 1rem; height: 1rem; color: var(--blue-2); flex: 0 0 auto; }
.jd__quick { display: none; margin-top: 1.5rem; }
.jd__block { margin-top: 2.5rem; }
.jd__block h4 {
  margin: 0 0 1rem;
  font-family: var(--f-din); font-weight: 700;
  font-size: .75rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--blue-2);
}
.jd__tasks, .jd__checks, .jd__benefits { list-style: none; margin: 0; padding: 0; }
.jd__tasks { counter-reset: none; border-top: 1px solid var(--line); }
.jd__tasks li {
  display: grid; grid-template-columns: 2.75rem minmax(0, 1fr); gap: .75rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-2); font-size: .98rem; line-height: 1.5;
}
.jd__n {
  font-family: var(--f-din); font-weight: 700;
  font-size: .85rem; letter-spacing: .06em;
  color: var(--dim);
  padding-top: .12rem;
}
.jd__checks { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem 1.5rem; }
.jd__checks li {
  display: grid; grid-template-columns: 1.5rem minmax(0, 1fr); gap: .6rem; align-items: start;
  color: var(--muted); font-size: .95rem; line-height: 1.5;
}
.jd__checks svg {
  width: 1.5rem; height: 1.5rem; padding: .3rem;
  border-radius: 50%;
  background: rgba(41, 98, 255, 0.14);
  color: var(--blue-2);
}
.jd__benefits { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: .6rem; }
.jd__benefits li {
  display: flex; gap: .7rem; align-items: flex-start;
  padding: 1rem;
  border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 0 0 1px var(--line);
  color: var(--text-2); font-size: .92rem; line-height: 1.45;
  hyphens: auto; -webkit-hyphens: auto; overflow-wrap: break-word;
}
.jd__benefits li > span { min-width: 0; }
.jd__dot { flex: 0 0 auto; width: 7px; height: 7px; margin-top: .5em; border-radius: 1.5px; background: var(--blue-2); transform: rotate(45deg); }
.jd__travel {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-top: 2rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--r-md);
  background: rgba(41, 98, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(41, 98, 255, 0.3);
}
.jd__travel svg { width: 1.4rem; height: 1.4rem; flex: 0 0 auto; color: var(--blue-2); margin-top: .1rem; }
.jd__travel strong { display: block; color: var(--text); font-weight: 600; margin-bottom: .2rem; }
.jd__travel p { margin: 0; color: var(--muted); font-size: .95rem; }

/* Bewerbungskarte (läuft beim Lesen mit) */
.jd__side { position: relative; }
.jd__card {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
  padding: 1.5rem;
  border-radius: var(--r-lg);
  background:
    radial-gradient(120% 70% at 50% 0%, rgba(41, 98, 255, 0.2), transparent 70%),
    linear-gradient(180deg, #1b1b20, #131316);
  box-shadow: inset 0 0 0 1px rgba(89, 145, 255, 0.28), 0 30px 70px -40px rgba(41, 98, 255, 0.6);
}
.jd__perks { list-style: none; margin: 1.25rem 0 0; padding: 1.25rem 0 0; border-top: 1px solid var(--line); display: grid; gap: .65rem; }
.jd__perks li { display: flex; align-items: center; gap: .65rem; font-size: .92rem; color: var(--text-2); }
.jd__perks svg { width: 1.05rem; height: 1.05rem; color: var(--blue-2); flex: 0 0 auto; }
.jd__cta { width: 100%; justify-content: space-between; margin-top: 1.5rem; }
.jd__reach { display: grid; gap: .3rem; margin-top: 1rem; font-size: .85rem; text-align: center; }
.jd__reach a { color: var(--muted); transition: color .3s; }
.jd__reach a:hover { color: var(--text); }

/* Ansprechperson */
.person { display: flex; align-items: center; gap: .9rem; }
.person__img {
  flex: 0 0 auto;
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
  background: #f4f4f5;
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 3.5px rgba(89, 145, 255, 0.7);
}
.person__txt { display: flex; flex-direction: column; min-width: 0; line-height: 1.3; }
.person__txt small {
  font-family: var(--f-din); font-weight: 700;
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-2);
  margin-bottom: .2rem;
}
.person__txt strong { color: var(--text); font-weight: 600; font-size: 1.05rem; }
.person__txt span { color: var(--muted); font-size: .88rem; }
.person--lg .person__img { width: 4.75rem; height: 4.75rem; }
.person--sm .person__img { width: 2.75rem; height: 2.75rem; }
.person--sm .person__txt strong { font-size: .98rem; }
.person--center { justify-content: center; margin: 1.75rem auto 0; text-align: left; }
.astep__person {
  margin: -.75rem 0 1.75rem;
  padding: .75rem 1rem;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px var(--line);
  width: fit-content;
}
.faq__contact {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  box-shadow: inset 0 0 0 1px var(--line);
  max-width: 26rem;
}
.faq__reach { display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; margin-top: 1.25rem; font-size: .95rem; }

@media (max-width: 1080px) {
  .jd { grid-template-columns: minmax(0, 1fr) 280px; gap: 2rem; }
  .jd__checks { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .jd { grid-template-columns: 1fr; }
  .jd__card { position: static; }
  .jd__quick { display: block; }
}
@media (max-width: 767px) {
  .jd { padding: 0 1.25rem 1.25rem; gap: 1.75rem; }
  .jd__quick .btn { width: 100%; justify-content: space-between; }
  .jd__block { margin-top: 2rem; }
  .jd__benefits { grid-template-columns: 1fr; }
}
@media (max-width: 380px) {
  .jd { padding: 0 1rem 1rem; }
  .jd__card { padding: 1.1rem; }
}
.astep__gap { height: 1.75rem; }

/* Hinweis "In deiner Nähe" (Zeitzone, lokal ermittelt) */
.near-badge {
  position: absolute; left: 1.5rem; top: 1.5rem; z-index: 1;
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .45rem .8rem;
  border-radius: 999px;
  background: rgba(9, 9, 11, 0.6);
  box-shadow: inset 0 0 0 1px rgba(89, 145, 255, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: .82rem; font-weight: 520; color: var(--text);
}
.near-badge svg { width: .95rem; height: .95rem; color: var(--blue-2); }
.choice-card:has(.near-badge) { box-shadow: inset 0 0 0 1px rgba(41, 98, 255, 0.45); }
.hub.is-near { background: linear-gradient(180deg, rgba(41, 98, 255, 0.12), transparent 80%); box-shadow: inset 0 2px 0 var(--blue); }
.hub__near { color: var(--blue-2); }
@media (max-width: 767px) {
  .near-badge { left: 1rem; top: 1rem; }
}

/* Galerie auf dem Handy hochkant: gepinnt, seitwärts beim Scrollen */
@media (max-width: 767px) {
  html.hpin .hscroll__pin {
    height: 100vh; height: 100svh;
    padding: calc(var(--nav-h) + .5rem) 0 1.25rem;
    justify-content: center;
    gap: 1.25rem;
  }
  html.hpin .hscroll__head { align-items: flex-end; }
  html.hpin .hscroll__head .h-section { font-size: clamp(1.45rem, 6.6vw, 2rem); }
  html.hpin .hscroll__progress { display: block; flex: 0 0 56px; margin-bottom: .45rem; }
  html.hpin .hscroll__track { gap: 1rem; }
  html.hpin .work-card, html.hpin .work-card--wide {
    width: auto; min-height: 0;
    height: min(106vw, calc(100svh - 15.5rem));
    aspect-ratio: 4 / 5;
  }
  html.hpin .work-card__body { padding: 1.25rem; }
  html.hpin .work-card__title { font-size: 1.3rem; }
  html.hpin .work-card__text { font-size: .9rem; }

  /* Ablauf: senkrechte Linie, die sich beim Scrollen zeichnet */
  .process__line {
    display: block;
    left: 1.6rem; right: auto; top: 1.6rem; bottom: 1.6rem;
    width: 1px; height: auto;
  }
  .process__line i {
    width: 100%; height: 100%;
    background: linear-gradient(180deg, var(--blue), var(--blue-2));
    transform-origin: top;
    transform: scaleY(0);
  }
  .pstep { display: grid; grid-template-columns: 3.2rem minmax(0, 1fr); column-gap: 1.1rem; padding-right: 0; }
  .pstep__dot { grid-row: 1 / span 3; }
  .pstep h3 { margin-top: .6rem; }
  .pstep p, .pstep__time { grid-column: 2; }
}
