/* ==================================================================
   Schnapp — Design System
   Apple-clean, mobile-first, 60fps transforms only
   ================================================================== */

/* ------------------------------------------------ 1. Tokens */
:root {
  /* Farben */
  --bg: #fafafa;
  --bg-elev: #ffffff;
  --ink: #1d1d1f;
  --ink-2: #6e6e73;
  --ink-3: #aeaeb2;
  --line: rgba(0, 0, 0, 0.08);
  --line-strong: rgba(0, 0, 0, 0.14);

  --accent: #ff3b30;
  --accent-deep: #e8334a;
  --accent-grad: linear-gradient(135deg, #ff5546 0%, #e8334a 60%, #d4264f 100%);
  --accent-soft: #fff1f0;
  --blue: #0a84ff;
  --blue-soft: #eef5ff;
  --green: #30b15c;
  --green-soft: #ecf8f0;
  --amber: #ff9f0a;
  --amber-soft: #fff6e8;

  /* Typografie */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display',
    'SF Pro Text', 'Helvetica Neue', 'Segoe UI', Roboto, sans-serif;

  /* Geometrie */
  --r-s: 10px;
  --r-m: 14px;
  --r-l: 20px;
  --r-xl: 28px;

  /* Schatten */
  --sh-s: 0 1px 2px rgba(0, 0, 0, 0.05), 0 2px 8px rgba(0, 0, 0, 0.05);
  --sh-m: 0 2px 6px rgba(0, 0, 0, 0.06), 0 12px 32px rgba(0, 0, 0, 0.1);
  --sh-l: 0 4px 12px rgba(0, 0, 0, 0.08), 0 24px 64px rgba(0, 0, 0, 0.16);

  --wrap: 1120px;
  --tabbar-h: 64px;

  --ease-spring: cubic-bezier(0.34, 1.3, 0.5, 1);
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ------------------------------------------------ 2. Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1, h2, h3, h4, p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(10, 132, 255, 0.45);
  outline-offset: 2px;
  border-radius: 6px;
}

::selection {
  background: rgba(255, 59, 48, 0.18);
}

[hidden] {
  display: none !important;
}

/* ------------------------------------------------ 3. Typo / Utility */
.wrap {
  width: min(var(--wrap), calc(100% - 48px));
  margin-inline: auto;
}

.display {
  font-size: clamp(40px, 7.2vw, 76px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.h2 {
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.1;
  font-weight: 750;
  letter-spacing: -0.025em;
}

.h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.lead {
  font-size: clamp(18px, 2.2vw, 21px);
  line-height: 1.5;
  color: var(--ink-2);
  font-weight: 450;
}

.muted {
  color: var(--ink-2);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent-grad);
}

.grad-text {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ------------------------------------------------ 4. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform 0.18s var(--ease-spring), box-shadow 0.18s ease,
    background-color 0.18s ease, opacity 0.18s ease;
  will-change: transform;
}

.btn:active {
  transform: scale(0.96);
}

.btn--primary {
  color: #fff;
  background: var(--accent-grad);
  box-shadow: 0 6px 20px rgba(232, 51, 74, 0.32);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(232, 51, 74, 0.4);
}

.btn--secondary {
  background: var(--ink);
  color: #fff;
}

.btn--secondary:hover {
  background: #333336;
}

.btn--ghost {
  background: var(--bg-elev);
  border: 1px solid var(--line-strong);
  color: var(--ink);
}

.btn--ghost:hover {
  border-color: var(--ink-3);
}

.btn--big {
  padding: 17px 34px;
  font-size: 17px;
}

.btn--small {
  padding: 9px 18px;
  font-size: 14px;
}

.btn--block {
  width: 100%;
}

.btn[disabled] {
  opacity: 0.45;
  pointer-events: none;
}

/* ------------------------------------------------ 5. Chips */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--line-strong);
  background: var(--bg-elev);
  font-size: 14.5px;
  font-weight: 550;
  color: var(--ink);
  transition: border-color 0.15s ease, background-color 0.15s ease,
    color 0.15s ease, transform 0.15s var(--ease-spring);
  user-select: none;
}

.chip:active {
  transform: scale(0.95);
}

.chip svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.chip[aria-pressed='true'],
.chip.is-on {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.chip--accent[aria-pressed='true'] {
  background: var(--accent-grad);
  border-color: transparent;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

/* Mini-Tag (auf Karten) */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.05);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
  white-space: nowrap;
}

/* Typ-Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.badge--lehrstelle {
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.badge--schnupper {
  background: var(--blue-soft);
  color: var(--blue);
}

.badge--job {
  background: var(--amber-soft);
  color: #c77700;
}

.badge--onlight.badge--lehrstelle { background: rgba(255,255,255,.92); }
.badge--onlight.badge--schnupper  { background: rgba(255,255,255,.92); }
.badge--onlight.badge--job        { background: rgba(255,255,255,.92); }

/* ------------------------------------------------ 6. Formulare */
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.field > label {
  font-size: 13.5px;
  font-weight: 650;
  color: var(--ink-2);
  letter-spacing: 0.01em;
}

.input,
.select {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--r-m);
  border: 1.5px solid var(--line-strong);
  background: var(--bg-elev);
  font-size: 16px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  appearance: none;
}

.input:focus,
.select:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(29, 29, 31, 0.06);
}

.select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236e6e73' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.hint {
  font-size: 13px;
  color: var(--ink-3);
}

/* Segmented Control */
.seg {
  display: flex;
  background: rgba(0, 0, 0, 0.055);
  border-radius: 12px;
  padding: 3px;
  gap: 2px;
}

.seg > button {
  flex: 1;
  padding: 9px 14px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 650;
  color: var(--ink-2);
  transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
  position: relative;
}

.seg > button[aria-selected='true'] {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.seg .seg-dot {
  position: absolute;
  top: 4px;
  right: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

/* ==================================================================
   LANDING
   ================================================================== */

/* ------------------------------------------------ Nav */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  backdrop-filter: saturate(1.6) blur(18px);
  -webkit-backdrop-filter: saturate(1.6) blur(18px);
  background: rgba(250, 250, 250, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.nav.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(250, 250, 250, 0.9);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 64px;
}

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: 8px;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 550;
  color: var(--ink-2);
  transition: color 0.15s ease, background-color 0.15s ease;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(0, 0, 0, 0.05);
}

.nav-cta {
  margin-left: auto;
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--accent-grad);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(232, 51, 74, 0.35);
  transform: rotate(-6deg);
}

.logo-mark svg {
  width: 19px;
  height: 19px;
  stroke: #fff;
}

/* ------------------------------------------------ Hero */
.hero {
  padding: 148px 0 40px;
  position: relative;
  overflow: clip;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(56% 44% at 84% 12%, rgba(255, 85, 70, 0.09), transparent 70%),
    radial-gradient(44% 38% at 8% 86%, rgba(10, 132, 255, 0.07), transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-copy .display {
  margin: 0 0 22px;
}

.hero-copy .lead {
  max-width: 33em;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 36px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ink-2);
  font-weight: 500;
}

.hero-note svg {
  width: 15px;
  height: 15px;
  color: var(--green);
}

/* Stat-Pills unter Hero-Copy */
.hero-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.hstat b {
  display: block;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hstat span {
  font-size: 13.5px;
  color: var(--ink-2);
  font-weight: 500;
}

/* ------------------------------------------------ Phone Mockup */
.phone-wrap {
  display: flex;
  justify-content: center;
  perspective: 1400px;
}

.phone {
  width: min(340px, 86vw);
  aspect-ratio: 9 / 19;
  border-radius: 46px;
  background: #101012;
  padding: 11px;
  box-shadow:
    0 2px 0 1.5px #3a3a3e inset,
    0 50px 100px -28px rgba(0, 0, 0, 0.4),
    0 24px 48px -24px rgba(232, 51, 74, 0.25);
  transform: rotate(2.5deg);
  position: relative;
}

.phone::after {
  /* Notch */
  content: '';
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 24px;
  border-radius: 999px;
  background: #101012;
  z-index: 5;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 37px;
  background: linear-gradient(180deg, #f7f7f8 0%, #efeff1 100%);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Mini-Demo-Deck im Phone */
.demo-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 20px 8px;
}

.demo-top .logo {
  font-size: 16px;
  gap: 7px;
}

.demo-top .logo-mark {
  width: 24px;
  height: 24px;
  border-radius: 7px;
}

.demo-top .logo-mark svg {
  width: 14px;
  height: 14px;
}

.demo-deck {
  flex: 1;
  position: relative;
  margin: 8px 16px;
}

.demo-card {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--sh-m);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.demo-card[data-pos='1'] {
  transform: scale(0.94) translateY(16px);
  filter: brightness(0.97);
}

.demo-card[data-pos='2'] {
  transform: scale(0.88) translateY(32px);
  filter: brightness(0.94);
}

.demo-card[data-pos='0'] {
  animation: demo-swipe 5.2s var(--ease-out) infinite;
}

@keyframes demo-swipe {
  0%, 52% { transform: translateX(0) rotate(0); opacity: 1; }
  68%, 100% { transform: translateX(130%) rotate(14deg); opacity: 0; }
}

.demo-cover {
  height: 38%;
  background: linear-gradient(140deg, hsl(220 70% 55%), hsl(250 65% 48%));
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}

.demo-cover .badge {
  position: absolute;
  top: 12px;
  left: 12px;
}

.demo-logo {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.95);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
  color: hsl(220 70% 40%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.demo-body {
  padding: 13px 15px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.demo-body h4 {
  font-size: 16.5px;
  font-weight: 750;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.demo-body .demo-sub {
  font-size: 12.5px;
  color: var(--ink-2);
  font-weight: 500;
}

.demo-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.demo-tags .tag {
  font-size: 10.5px;
  padding: 4px 8px;
}

.demo-match {
  position: absolute;
  right: 13px;
  top: calc(38% - 22px);
  background: #fff;
  border-radius: 999px;
  padding: 5px 11px 5px 7px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 800;
  color: var(--green);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
}

.demo-match svg {
  width: 13px;
  height: 13px;
}

.demo-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 10px 0 22px;
}

.demo-actions .fab {
  width: 48px;
  height: 48px;
}

.demo-actions .fab svg {
  width: 21px;
  height: 21px;
}

/* Floating Toast im Mockup */
.demo-toast {
  position: absolute;
  left: 50%;
  bottom: 88px;
  transform: translateX(-50%);
  background: rgba(20, 20, 22, 0.92);
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  display: flex;
  gap: 6px;
  align-items: center;
  white-space: nowrap;
  opacity: 0;
  animation: demo-toast 5.2s ease infinite;
  z-index: 4;
}

.demo-toast svg {
  width: 13px;
  height: 13px;
  color: #5ddb86;
}

@keyframes demo-toast {
  0%, 64% { opacity: 0; transform: translate(-50%, 8px); }
  72%, 92% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, -6px); }
}

/* ------------------------------------------------ Sections allgemein */
.section {
  padding: 96px 0;
}

.section--alt {
  background: var(--bg-elev);
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}

.section-head .lead {
  margin-top: 16px;
}

/* ------------------------------------------------ So funktionierts */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: step;
}

.step {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 30px 28px;
  position: relative;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-m);
}

.step-num {
  counter-increment: step;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--accent-grad);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 20px;
  box-shadow: 0 6px 16px rgba(232, 51, 74, 0.3);
}

.step-num::before {
  content: counter(step);
}

.step h3 {
  margin-bottom: 10px;
}

.step p {
  color: var(--ink-2);
  font-size: 15.5px;
}

/* ------------------------------------------------ Features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-m);
  border-color: transparent;
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.feature-icon svg {
  width: 23px;
  height: 23px;
}

.feature h3 {
  font-size: 18.5px;
  margin-bottom: 8px;
}

.feature p {
  font-size: 14.8px;
  color: var(--ink-2);
  line-height: 1.55;
}

.icon-tint-red    { background: var(--accent-soft); color: var(--accent-deep); }
.icon-tint-blue   { background: var(--blue-soft);   color: var(--blue); }
.icon-tint-green  { background: var(--green-soft);  color: var(--green); }
.icon-tint-amber  { background: var(--amber-soft);  color: #c77700; }
.icon-tint-violet { background: #f3efff;            color: #7d5cff; }
.icon-tint-ink    { background: rgba(0,0,0,.06);    color: var(--ink); }

/* ------------------------------------------------ Berufsfelder */
.fields-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 14px;
}

.field-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: 16px 18px;
  font-weight: 650;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s ease;
  text-align: left;
}

.field-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-m);
}

.field-card .fc-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 13px;
  display: grid;
  place-items: center;
}

.field-card .fc-icon svg {
  width: 21px;
  height: 21px;
}

.field-card small {
  display: block;
  font-size: 12.5px;
  color: var(--ink-2);
  font-weight: 500;
  margin-top: 1px;
}

/* ------------------------------------------------ Lehrbetriebe */
.employer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.employer-checks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 32px;
}

.echeck {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.echeck svg {
  width: 22px;
  height: 22px;
  color: var(--green);
  flex: 0 0 auto;
  margin-top: 2px;
}

.echeck b {
  display: block;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.echeck span {
  font-size: 14.5px;
  color: var(--ink-2);
}

/* Mini-Dashboard-Mock für Betriebe */
.emp-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-l);
  padding: 26px;
  transform: rotate(-1.2deg);
}

.emp-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.emp-card-head b {
  font-size: 16px;
  letter-spacing: -0.01em;
}

.emp-row {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.emp-ava {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-grad);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 750;
  font-size: 14px;
  flex: 0 0 auto;
}

.emp-row .emp-meta {
  flex: 1;
  min-width: 0;
}

.emp-row b {
  display: block;
  font-size: 14.5px;
}

.emp-row span {
  font-size: 12.5px;
  color: var(--ink-2);
}

.emp-pill {
  font-size: 11.5px;
  font-weight: 750;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  white-space: nowrap;
}

.emp-pill--new {
  background: var(--accent-soft);
  color: var(--accent-deep);
}

/* ------------------------------------------------ Quotes */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.quote {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote p {
  font-size: 16.5px;
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.quote-who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.quote-who .emp-ava {
  width: 38px;
  height: 38px;
  font-size: 13px;
}

.quote-who b {
  display: block;
  font-size: 14px;
}

.quote-who span {
  font-size: 12.5px;
  color: var(--ink-2);
}

.stars {
  display: flex;
  gap: 2px;
  color: var(--amber);
}

.stars svg {
  width: 15px;
  height: 15px;
}

/* ------------------------------------------------ FAQ */
.faq {
  max-width: 760px;
  margin-inline: auto;
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 4px;
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -0.01em;
  cursor: pointer;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--ink-3);
  transition: transform 0.25s var(--ease-out);
}

.faq details[open] summary svg {
  transform: rotate(45deg);
}

.faq .faq-a {
  padding: 0 4px 24px;
  color: var(--ink-2);
  font-size: 15.5px;
  max-width: 60ch;
}

/* ------------------------------------------------ CTA-Band */
.cta-band {
  background: #101012;
  border-radius: var(--r-xl);
  padding: clamp(44px, 7vw, 80px);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 60% at 20% 0%, rgba(255, 85, 70, 0.22), transparent 70%),
    radial-gradient(45% 55% at 85% 100%, rgba(10, 132, 255, 0.16), transparent 70%);
}

.cta-band > * {
  position: relative;
}

.cta-band .h2 {
  color: #fff;
  margin-bottom: 16px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
  max-width: 44ch;
  margin: 0 auto 32px;
}

/* ------------------------------------------------ Footer */
.footer {
  padding: 56px 0 40px;
  border-top: 1px solid var(--line);
  margin-top: 96px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.footer-col b {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-3);
  margin-bottom: 4px;
}

.footer-col a {
  color: var(--ink-2);
}

.footer-col a:hover {
  color: var(--ink);
}

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-3);
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

/* ==================================================================
   APP
   ================================================================== */
.app {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  max-width: 560px;
  margin-inline: auto;
  position: relative;
}

@media (min-width: 600px) {
  .app {
    border-inline: 1px solid var(--line);
    background: var(--bg);
  }
}

/* Dezente Farb-Orbs im Hintergrund -> Tiefe & Premium-Anmutung */
.app::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(38% 26% at 86% 5%, rgba(255, 85, 70, 0.08), transparent 70%),
    radial-gradient(42% 30% at 8% 96%, rgba(10, 132, 255, 0.06), transparent 72%);
}

.app > * { position: relative; z-index: 1; }

/* ------------------------------------------------ App-Bar */
.appbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px 10px;
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(var(--bg) 78%, transparent);
}

.appbar .logo {
  font-size: 18px;
  gap: 8px;
}

.appbar .logo-mark {
  width: 27px;
  height: 27px;
  border-radius: 8px;
}

.appbar .logo-mark svg {
  width: 16px;
  height: 16px;
}

.appbar-spacer {
  flex: 1;
}

.iconbtn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bg-elev);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  transition: transform 0.15s var(--ease-spring), border-color 0.15s ease;
  position: relative;
}

.iconbtn:active {
  transform: scale(0.92);
}

.iconbtn svg {
  width: 19px;
  height: 19px;
}

.iconbtn .dot {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
}

/* ------------------------------------------------ Tab-Bar */
.tabbar {
  position: sticky;
  bottom: 0;
  z-index: 40;
  display: flex;
  height: calc(var(--tabbar-h) + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: rgba(250, 250, 250, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--line);
}

.tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 10.5px;
  font-weight: 650;
  letter-spacing: 0.01em;
  color: var(--ink-3);
  transition: color 0.15s ease;
  position: relative;
}

.tab svg {
  width: 24px;
  height: 24px;
}

.tab[aria-selected='true'] {
  color: var(--ink);
}

.tab .tab-badge {
  position: absolute;
  top: 7px;
  left: calc(50% + 6px);
  min-width: 17px;
  height: 17px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 10.5px;
  font-weight: 750;
  display: grid;
  place-items: center;
}

/* ------------------------------------------------ App-Views */
.view {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.view-pad {
  padding: 4px 18px 24px;
}

.view-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 8px 0 4px;
}

.view-sub {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 16px;
}

/* ==================================================================
   DECK
   ================================================================== */
.deck-zone {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 2px 16px 10px;
  min-height: 0;
}

.deck-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}

.deck-progress {
  flex: 1;
  height: 4px;
  margin: 0 14px;
  border-radius: 99px;
  background: rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.deck-progress i {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: var(--accent-grad);
  transition: width 0.3s var(--ease-out);
}

.deck {
  flex: 1;
  position: relative;
  min-height: 320px;
  touch-action: pan-y;
}

/* ------------------------------------------------ Job-Karte */
.jcard {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: var(--bg-elev);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.05),
    0 18px 48px -14px rgba(0, 0, 0, 0.32),
    inset 0 0 0 1px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform-origin: 50% 125%;          /* Pivot unterhalb der Karte -> natürlicher Bogen */
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
}

.jcard.is-top { cursor: grab; }
.jcard.is-top:active { cursor: grabbing; }
.jcard.is-top { animation: card-settle 0.34s var(--ease-out); }

.jcard.is-back { pointer-events: none; }
.jcard[data-pos='1'] { filter: saturate(0.97) brightness(0.985); }
.jcard[data-pos='2'] { filter: saturate(0.94) brightness(0.965); }
.jcard.is-back.snap,
.jcard.is-back.promote { transition: transform 0.45s var(--ease-spring); }

.jcard.anim { transition: transform 0.5s cubic-bezier(0.4, 0.16, 0.2, 1), opacity 0.42s ease; }
.jcard.snap { transition: transform 0.5s var(--ease-spring); }

@keyframes card-settle {
  from { transform: scale(0.97) translateY(7px); opacity: 0.5; }
  to   { transform: none; opacity: 1; }
}

/* Cover */
.jcard-cover {
  height: 174px;
  flex: 0 0 auto;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px;
  isolation: isolate;
}

.jcard-cover::before {
  /* Lichtreflex oben rechts + sanfter Schatten unten links -> Tiefe */
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(130% 115% at 84% -22%, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0) 52%),
    radial-gradient(105% 85% at -5% 120%, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) 58%);
}

.jcard-cover::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 44px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.07));
}

.jcard-cover .badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.jcard-cover .cover-icon {
  position: absolute;
  right: -24px;
  top: -20px;
  width: 158px;
  height: 158px;
  opacity: 0.14;
  color: #fff;
  transform: rotate(-8deg);
}

.jcard-logo {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(12px) saturate(1.3);
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

/* Match-Ring */
.match-ring {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px) saturate(1.3);
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px 7px 8px;
  font-size: 13.5px;
  font-weight: 800;
}

.match-ring svg {
  width: 26px;
  height: 26px;
  transform: rotate(-90deg);
}

.match-ring .ring-bg {
  stroke: rgba(0, 0, 0, 0.1);
}

.match-ring .ring-fg {
  stroke: var(--green);
  stroke-linecap: round;
}

.match-ring.is-mid .ring-fg { stroke: var(--amber); }
.match-ring.is-mid { color: #c77700; }
.match-ring { color: var(--green); }

/* Body */
.jcard-body {
  flex: 1;
  min-height: 0;
  overflow: hidden auto;
  padding: 16px 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overscroll-behavior: contain;
}

.jcard-title {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.jcard-sub {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 550;
  flex-wrap: wrap;
}

.jcard-sub svg {
  width: 15px;
  height: 15px;
}

.jcard-sub .sep {
  opacity: 0.4;
}

.jcard-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.fact {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(0, 0, 0, 0.035);
  border-radius: 12px;
  padding: 9px 12px;
  font-size: 12.8px;
  font-weight: 600;
  min-width: 0;
}

.fact svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: var(--ink-2);
}

.fact span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jcard-desc {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.55;
}

.jcard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.jcard-more {
  align-self: flex-start;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 0;
}

.jcard-more svg {
  width: 15px;
  height: 15px;
}

.jcard-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 6px;
}

.jcard-details h5 {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.jcard-details ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.jcard-details li {
  display: flex;
  gap: 9px;
  font-size: 14px;
  color: var(--ink-2);
}

.jcard-details li svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.li-check svg { color: var(--green); }
.li-req svg   { color: var(--blue); }

/* Swipe-Hinweis unten auf Karte */
.jcard-foothint {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 8px 0 12px;
  font-size: 11px;
  font-weight: 650;
  color: var(--ink-3);
  border-top: 1px solid var(--line);
}

.jcard-foothint span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.jcard-foothint svg {
  width: 13px;
  height: 13px;
}

/* Farb-Wash über die ganze Karte beim Wischen */
.jcard-wash {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  opacity: 0;
  border-radius: inherit;
  transition: opacity 0.12s ease;
}

.jcard-wash[data-dir='yes'] {
  background: linear-gradient(0deg, rgba(48, 177, 92, 0.34), rgba(48, 177, 92, 0.05) 58%);
  box-shadow: inset 0 0 0 3.5px rgba(48, 177, 92, 0.85);
}

.jcard-wash[data-dir='no'] {
  background: linear-gradient(0deg, rgba(232, 51, 74, 0.34), rgba(232, 51, 74, 0.05) 58%);
  box-shadow: inset 0 0 0 3.5px rgba(232, 51, 74, 0.85);
}

.jcard-wash[data-dir='up'] {
  background: linear-gradient(0deg, rgba(10, 132, 255, 0.34), rgba(10, 132, 255, 0.05) 58%);
  box-shadow: inset 0 0 0 3.5px rgba(10, 132, 255, 0.85);
}

/* Stamps */
.stamp {
  position: absolute;
  top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 14px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 3.5px solid;
  opacity: 0;
  pointer-events: none;
  z-index: 7;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  transition: opacity 0.1s linear;
}

.stamp svg { width: 22px; height: 22px; }

.stamp--yes {
  left: 20px;
  color: var(--green);
  border-color: var(--green);
  transform: rotate(-13deg);
}

.stamp--no {
  right: 20px;
  color: var(--accent-deep);
  border-color: var(--accent-deep);
  transform: rotate(13deg);
}

.stamp--up {
  left: 50%;
  top: auto;
  bottom: 92px;
  transform: translateX(-50%) rotate(-4deg);
  color: var(--blue);
  border-color: var(--blue);
}

/* ------------------------------------------------ Action-Buttons */
.deck-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 0 6px;
}

.fab {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(0, 0, 0, 0.05);
  display: grid;
  place-items: center;
  transition: transform 0.18s var(--ease-spring), box-shadow 0.22s ease, background-color 0.2s ease;
  will-change: transform;
}

.fab:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.fab:active {
  transform: scale(0.88);
}

.fab--no:hover { box-shadow: 0 12px 28px rgba(232, 51, 74, 0.3); }
.fab--up:hover { box-shadow: 0 12px 28px rgba(10, 132, 255, 0.32); }

.fab svg {
  width: 26px;
  height: 26px;
}

.fab--no svg { color: var(--accent-deep); }
.fab--undo, .fab--info { width: 46px; height: 46px; }
.fab--undo svg, .fab--info svg { width: 20px; height: 20px; color: var(--ink-2); }

.fab--up {
  width: 50px;
  height: 50px;
}

.fab--up svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
}

.fab--yes {
  width: 68px;
  height: 68px;
  background: var(--accent-grad);
  box-shadow: 0 12px 30px rgba(232, 51, 74, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.fab--yes:hover {
  box-shadow: 0 16px 40px rgba(232, 51, 74, 0.58);
}

.fab--yes svg {
  width: 30px;
  height: 30px;
  color: #fff;
}

.fab[disabled] {
  opacity: 0.4;
  pointer-events: none;
}

/* ------------------------------------------------ Deck leer */
.deck-empty {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding: 32px;
  border-radius: 26px;
  border: 1.5px dashed var(--line-strong);
}

.deck-empty .big-ico {
  width: 74px;
  height: 74px;
  border-radius: 24px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: grid;
  place-items: center;
  margin-bottom: 6px;
}

.deck-empty .big-ico svg {
  width: 34px;
  height: 34px;
}

.deck-empty h3 {
  font-size: 20px;
}

.deck-empty p {
  font-size: 14.5px;
  color: var(--ink-2);
  max-width: 30ch;
}

/* ==================================================================
   BEWERBUNGEN
   ================================================================== */
.apps-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 14px;
}

.app-card {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: 14px 16px;
  text-align: left;
  width: 100%;
  transition: transform 0.18s var(--ease-spring), box-shadow 0.18s ease;
}

.app-card:active {
  transform: scale(0.98);
}

.app-card:hover {
  box-shadow: var(--sh-s);
}

.app-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
}

.app-card-meta {
  flex: 1;
  min-width: 0;
}

.app-card-meta b {
  display: block;
  font-size: 15px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-card-meta span {
  font-size: 12.8px;
  color: var(--ink-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.app-card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex: 0 0 auto;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 750;
  padding: 5px 10px;
  border-radius: 999px;
}

.status svg { width: 12px; height: 12px; }
.status--sent    { background: rgba(0,0,0,.06); color: var(--ink-2); }
.status--read    { background: var(--blue-soft); color: var(--blue); }
.status--reply   { background: var(--green-soft); color: var(--green); }
.status--invite  { background: var(--accent-grad); color: #fff; }

.app-time {
  font-size: 11.5px;
  color: var(--ink-3);
  font-weight: 550;
}

.empty-state {
  text-align: center;
  padding: 64px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.empty-state .big-ico {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.05);
  color: var(--ink-3);
  display: grid;
  place-items: center;
}

.empty-state .big-ico svg {
  width: 30px;
  height: 30px;
}

.empty-state h3 {
  font-size: 18px;
}

.empty-state p {
  font-size: 14px;
  color: var(--ink-2);
  max-width: 30ch;
}

/* ------------------------------------------------ Bewerbungs-Detail / Chat */
.thread {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 0;
}

.bubble {
  max-width: 82%;
  padding: 11px 15px;
  border-radius: 18px;
  font-size: 14.5px;
  line-height: 1.45;
}

.bubble--them {
  align-self: flex-start;
  background: rgba(0, 0, 0, 0.055);
  border-bottom-left-radius: 6px;
}

.bubble--me {
  align-self: flex-end;
  background: var(--accent-grad);
  color: #fff;
  border-bottom-right-radius: 6px;
}

.bubble-time {
  font-size: 11px;
  color: var(--ink-3);
  align-self: center;
  margin: 4px 0;
  font-weight: 550;
}

.chat-input {
  display: flex;
  gap: 9px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.chat-input input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--line-strong);
  background: var(--bg-elev);
  font-size: 15px;
}

.chat-input input:focus {
  outline: none;
  border-color: var(--ink);
}

.chat-send {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent-grad);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(232, 51, 74, 0.3);
}

.chat-send svg {
  width: 20px;
  height: 20px;
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 16px 0;
}

.tl-step {
  display: flex;
  gap: 13px;
  position: relative;
  padding-bottom: 20px;
}

.tl-step:last-child {
  padding-bottom: 0;
}

.tl-step::before {
  content: '';
  position: absolute;
  left: 10.5px;
  top: 24px;
  bottom: 2px;
  width: 2px;
  background: var(--line);
}

.tl-step:last-child::before {
  display: none;
}

.tl-dot {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.07);
  color: var(--ink-3);
}

.tl-dot svg {
  width: 13px;
  height: 13px;
}

.tl-step.is-done .tl-dot {
  background: var(--green);
  color: #fff;
}

.tl-step.is-active .tl-dot {
  background: var(--accent-grad);
  color: #fff;
}

.tl-step b {
  font-size: 14px;
  display: block;
}

.tl-step span {
  font-size: 12.5px;
  color: var(--ink-2);
}

/* ==================================================================
   PROFIL
   ================================================================== */
.profile-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0 22px;
}

.avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent-grad);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 26px;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(232, 51, 74, 0.32);
  flex: 0 0 auto;
}

.profile-head h2 {
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.profile-head p {
  font-size: 13.5px;
  color: var(--ink-2);
  margin-top: 2px;
}

.pcard {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: 18px;
  margin-bottom: 14px;
}

.pcard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.pcard-head h4 {
  font-size: 15px;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.pcard-head button {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
}

/* Completeness */
.completeness {
  display: flex;
  align-items: center;
  gap: 16px;
}

.comp-ring {
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  position: relative;
}

.comp-ring svg {
  transform: rotate(-90deg);
}

.comp-ring .ring-bg {
  stroke: rgba(0, 0, 0, 0.08);
}

.comp-ring .ring-fg {
  stroke: url(#compGrad);
  stroke-linecap: round;
  transition: stroke-dashoffset 0.6s var(--ease-out);
}

.comp-ring b {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 800;
}

.completeness p {
  font-size: 13.5px;
  color: var(--ink-2);
}

.completeness p b {
  color: var(--ink);
}

/* CV-Vorschau */
.cv-doc {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  padding: 26px;
  font-size: 14px;
  line-height: 1.6;
}

.cv-doc h3 {
  font-size: 20px;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

.cv-doc .cv-sub {
  color: var(--ink-2);
  font-size: 13px;
  margin-bottom: 18px;
}

.cv-doc h5 {
  margin: 18px 0 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.cv-doc .chip-row {
  gap: 6px;
}

.cv-doc .tag {
  background: rgba(0, 0, 0, 0.05);
}

/* Danger Zone */
.danger-btn {
  color: var(--accent-deep);
  font-weight: 650;
  font-size: 14.5px;
}

/* ==================================================================
   OVERLAYS (Sheet, Toast, Match)
   ================================================================== */
.scrim {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(10, 10, 12, 0.45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.scrim.is-open {
  opacity: 1;
}

.sheet {
  position: fixed;
  z-index: 95;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 105%);
  width: min(560px, 100%);
  max-height: 88dvh;
  background: var(--bg);
  border-radius: 24px 24px 0 0;
  box-shadow: var(--sh-l);
  display: flex;
  flex-direction: column;
  transition: transform 0.38s var(--ease-spring);
  will-change: transform;
}

.sheet.is-open {
  transform: translate(-50%, 0);
}

.sheet-grab {
  width: 40px;
  height: 4.5px;
  border-radius: 99px;
  background: rgba(0, 0, 0, 0.16);
  margin: 10px auto 2px;
  flex: 0 0 auto;
}

.sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 20px 12px;
  flex: 0 0 auto;
}

.sheet-head h3 {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.sheet-body {
  overflow-y: auto;
  padding: 4px 20px 28px;
  overscroll-behavior: contain;
}

.sheet-footer {
  flex: 0 0 auto;
  padding: 14px 20px calc(16px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line);
  display: flex;
  gap: 10px;
  background: var(--bg);
  border-radius: 0 0 0 0;
}

/* Toast */
.toast-zone {
  position: fixed;
  z-index: 120;
  left: 50%;
  top: calc(env(safe-area-inset-top, 0px) + 14px);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  pointer-events: none;
  width: max-content;
  max-width: calc(100vw - 40px);
}

.toast {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(22, 22, 24, 0.86);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  padding: 11px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.09);
  animation: toast-in 0.4s var(--ease-spring), toast-out 0.3s ease 2.3s forwards;
  max-width: 100%;
}

.toast svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: #5ddb86;
}

.toast--info svg {
  color: #6db4ff;
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(-16px) scale(0.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes toast-out {
  to { opacity: 0; transform: translateY(-10px) scale(0.96); }
}

/* Match-Overlay */
.match-overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-align: center;
  background:
    radial-gradient(70% 60% at 50% 30%, rgba(232, 51, 74, 0.92), rgba(150, 22, 60, 0.97)),
    #7d1034;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 32px;
}

.match-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.match-avatars {
  display: flex;
  margin-bottom: 28px;
}

.match-avatars .mava {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.95);
  display: grid;
  place-items: center;
  font-size: 30px;
  font-weight: 800;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.3);
}

.match-avatars .mava:first-child {
  background: #fff;
  color: var(--accent-deep);
  transform: rotate(-7deg) translateX(9px);
  z-index: 2;
}

.match-avatars .mava:last-child {
  color: #fff;
  transform: rotate(7deg) translateX(-9px);
}

.match-overlay.is-open .match-avatars .mava {
  animation: mava-pop 0.55s var(--ease-spring) both;
}

.match-overlay.is-open .match-avatars .mava:last-child {
  animation-delay: 0.08s;
}

@keyframes mava-pop {
  from { transform: scale(0.4) rotate(0); opacity: 0; }
}

.match-overlay h2 {
  font-size: clamp(34px, 9vw, 46px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.match-overlay p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 32ch;
  margin-bottom: 34px;
}

.match-overlay .btn--light {
  background: #fff;
  color: var(--accent-deep);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.match-overlay .btn-ghostlight {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 650;
  margin-top: 14px;
  font-size: 15px;
}

/* Konfetti */
.confetti {
  position: absolute;
  width: 9px;
  height: 15px;
  border-radius: 2px;
  top: -20px;
  animation: confetti-fall 2.6s ease-in forwards;
}

@keyframes confetti-fall {
  to {
    transform: translateY(108vh) rotate(720deg);
    opacity: 0.7;
  }
}

/* ==================================================================
   ONBOARDING
   ================================================================== */
.ob {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ob-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  max-width: 560px;
  width: 100%;
  margin-inline: auto;
}

.ob-progress {
  flex: 1;
  height: 5px;
  border-radius: 99px;
  background: rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.ob-progress i {
  display: block;
  height: 100%;
  background: var(--accent-grad);
  border-radius: 99px;
  transition: width 0.35s var(--ease-out);
}

.ob-body {
  flex: 1;
  overflow-y: auto;
  width: 100%;
}

.ob-step {
  max-width: 560px;
  margin-inline: auto;
  padding: 24px 24px 40px;
  animation: ob-in 0.4s var(--ease-out);
}

@keyframes ob-in {
  from { opacity: 0; transform: translateY(14px); }
}

.ob-step h2 {
  font-size: clamp(26px, 6vw, 32px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}

.ob-step > p {
  color: var(--ink-2);
  font-size: 15.5px;
  margin-bottom: 28px;
}

.ob-foot {
  flex: 0 0 auto;
  padding: 14px 24px calc(18px + env(safe-area-inset-bottom, 0px));
  max-width: 560px;
  width: 100%;
  margin-inline: auto;
  display: flex;
  gap: 10px;
}

/* Grosse Auswahl-Kacheln */
.pick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pick {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 16px;
  border-radius: var(--r-l);
  border: 1.5px solid var(--line-strong);
  background: var(--bg-elev);
  text-align: left;
  font-weight: 650;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: border-color 0.16s ease, background-color 0.16s ease,
    transform 0.16s var(--ease-spring), box-shadow 0.16s ease;
  position: relative;
}

.pick:active {
  transform: scale(0.97);
}

.pick svg {
  width: 24px;
  height: 24px;
}

.pick small {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-2);
}

.pick[aria-pressed='true'] {
  border-color: var(--accent-deep);
  background: var(--accent-soft);
  box-shadow: 0 0 0 1px var(--accent-deep);
}

.pick[aria-pressed='true']::after {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-grad) ;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"), var(--accent-grad);
  background-size: 11px, cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ==================================================================
   FILTER-SHEET Inhalte
   ================================================================== */
.filter-group {
  margin-bottom: 24px;
}

.filter-group h4 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 11px;
}

/* ==================================================================
   Scroll-Reveal & Misc
   ================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s var(--ease-out);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.kbd-hint {
  display: none;
  justify-content: center;
  gap: 16px;
  padding: 10px 0 2px;
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 550;
}

.kbd-hint kbd {
  font-family: inherit;
  background: var(--bg-elev);
  border: 1px solid var(--line-strong);
  border-bottom-width: 2px;
  border-radius: 6px;
  padding: 1px 7px;
  font-size: 11px;
  font-weight: 700;
}

@media (min-width: 900px) and (hover: hover) {
  .kbd-hint {
    display: flex;
  }
}

/* ==================================================================
   Responsive
   ================================================================== */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero {
    padding-top: 120px;
  }

  .steps,
  .features,
  .quotes {
    grid-template-columns: 1fr;
  }

  .employer {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: calc(100% - 36px);
  }

  .section {
    padding: 68px 0;
  }

  .pick-grid {
    grid-template-columns: 1fr;
  }

  .jcard-facts {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    flex: 1;
    justify-content: center;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
