/* ============================================================
   VPM GmbH — Editorial Human-Momentum
   Light = default. Dark = independently balanced (never #000).
   Animate transform/opacity only.
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  /* Light (default) */
  --bg: #F2F0E9;
  --surface: #FBFAF5;
  --surface-2: #EDEAE0;
  --ink: #181A18;
  --ink-2: #5B5F5A;
  --accent: #13B563;          /* energetic green — "Go/Wachstum" */
  --accent-text: #0C7A43;     /* AA-safe green for text on light */
  --accent-soft: rgba(19, 181, 99, 0.12);
  --spark: #FF6A3D;           /* match spark — very sparing */
  --hairline: rgba(24, 26, 24, 0.12);
  --hairline-strong: rgba(24, 26, 24, 0.22);
  --shadow: 0 24px 60px -28px rgba(24, 26, 24, 0.30);
  --shadow-soft: 0 8px 30px -16px rgba(24, 26, 24, 0.22);
  --glow: none;

  /* Easing tokens */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snap: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  /* Fluid type scale */
  --step--1: clamp(0.82rem, 0.78rem + 0.2vw, 0.95rem);
  --step-0: clamp(1rem, 0.95rem + 0.3vw, 1.18rem);
  --step-1: clamp(1.2rem, 1.05rem + 0.7vw, 1.6rem);
  --step-2: clamp(1.6rem, 1.3rem + 1.5vw, 2.6rem);
  --step-3: clamp(2.2rem, 1.6rem + 3vw, 4.2rem);
  --step-4: clamp(3rem, 1.9rem + 5.4vw, 7rem);
  --step-5: clamp(3.6rem, 2rem + 8vw, 9.5rem);

  --maxw: 1320px;
  --gutter: clamp(1.1rem, 4vw, 4rem);
  --radius: 18px;
  --radius-lg: 28px;
}

[data-theme="dark"] {
  --bg: #141714;
  --surface: #1E231E;
  --surface-2: #262C26;
  --ink: #F0EEE6;
  --ink-2: #9AA09A;
  --accent: #2BE07F;
  --accent-text: #5BF0A0;
  --accent-soft: rgba(43, 224, 127, 0.14);
  --spark: #FF7A50;
  --hairline: rgba(240, 238, 230, 0.14);
  --hairline-strong: rgba(240, 238, 230, 0.26);
  --shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.7);
  --shadow-soft: 0 10px 34px -18px rgba(0, 0, 0, 0.6);
  --glow: 0 0 28px rgba(43, 224, 127, 0.45);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: "Satoshi", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: var(--step-0);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background 0.6s var(--ease-soft), color 0.6s var(--ease-soft);
}

img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: #06231a; }

h1, h2, h3 {
  font-family: "Cabinet Grotesk", "Satoshi", sans-serif;
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
em { font-style: normal; }
.accent { color: var(--accent-text); }

.wrap { width: min(100% - calc(var(--gutter) * 2), var(--maxw)); margin-inline: auto; }

/* ---------- A11Y ---------- */
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 999;
  background: var(--ink); color: var(--bg);
  padding: 10px 16px; border-radius: 10px;
  transform: translateY(-160%); transition: transform 0.25s var(--ease-out-expo);
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- CUSTOM CURSOR ---------- */
.cursor-dot, .cursor-ring { display: none; }
@media (pointer: fine) {
  .cursor-dot, .cursor-ring {
    display: block; position: fixed; top: 0; left: 0; z-index: 9999;
    pointer-events: none; border-radius: 50%;
    transform: translate(-50%, -50%);
    will-change: transform;
  }
  .cursor-dot {
    width: 7px; height: 7px; background: var(--accent);
    transition: width 0.2s var(--ease-snap), height 0.2s var(--ease-snap);
  }
  .cursor-ring {
    width: 34px; height: 34px; border: 1.5px solid var(--accent);
    opacity: 0.5;
    transition: width 0.25s var(--ease-out-expo), height 0.25s var(--ease-out-expo), opacity 0.25s, border-color 0.25s;
  }
  body.cursor-hot .cursor-ring { width: 60px; height: 60px; opacity: 0.9; border-color: var(--accent); }
  body.cursor-hot .cursor-dot { width: 4px; height: 4px; }
  body.cursor-active * { cursor: none; }
}

/* ---------- BUTTONS ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 0.6em;
  padding: 0.95em 1.5em; border: 0; border-radius: 100px;
  font-weight: 700; font-size: var(--step-0); cursor: pointer;
  letter-spacing: -0.01em; min-height: 44px;
  transition: transform 0.4s var(--ease-out-expo), background 0.3s, color 0.3s, box-shadow 0.3s;
  will-change: transform;
}
.btn-label { position: relative; z-index: 1; white-space: nowrap; }
.btn-arrow { transition: transform 0.4s var(--ease-out-expo); }
.btn:hover .btn-arrow { transform: translateX(5px); }

.btn-primary {
  background: var(--accent); color: #06231a;
  box-shadow: var(--shadow-soft), var(--glow);
}
[data-theme="dark"] .btn-primary { color: #06231a; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow), var(--glow); }
.btn-primary:active { transform: translateY(0) scale(0.98); }

.btn-ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--hairline-strong);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  padding: 0.9rem 0;
  transition: background 0.4s var(--ease-soft), box-shadow 0.4s, padding 0.4s;
}
.site-header.scrolled {
  background: color-mix(in oklab, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 1px 0 var(--hairline);
  padding: 0.6rem 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.brand-word {
  font-family: "Cabinet Grotesk", sans-serif; font-weight: 900;
  font-size: 1.4rem; letter-spacing: -0.03em;
}
.brand-mark { display: inline-flex; align-items: center; gap: 3px; }
.brand-node { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: var(--glow); }
.brand-node.n2 { background: var(--ink); box-shadow: none; }
.brand-link { width: 14px; height: 2px; background: var(--hairline-strong); }

.site-nav { display: flex; gap: clamp(1rem, 2vw, 2rem); }
.site-nav a {
  font-size: var(--step--1); font-weight: 500; color: var(--ink-2);
  position: relative; padding: 4px 0; white-space: nowrap;
  transition: color 0.25s;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1.5px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out-expo);
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after { transform: scaleX(1); }
@media (max-width: 860px) { .site-nav { display: none; } }

.header-actions { display: flex; align-items: center; gap: 0.8rem; }
@media (max-width: 540px) { .header-actions .btn-primary { display: none; } }

/* ---------- THEME TOGGLE ---------- */
.theme-toggle { background: none; border: 0; cursor: pointer; padding: 4px; }
.theme-toggle-track {
  display: block; width: 52px; height: 28px; border-radius: 100px;
  background: var(--surface-2); box-shadow: inset 0 0 0 1px var(--hairline);
  position: relative; transition: background 0.4s;
}
.theme-toggle-thumb {
  position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); box-shadow: var(--glow);
  transition: transform 0.45s var(--ease-snap), background 0.3s;
}
[data-theme="dark"] .theme-toggle-thumb { transform: translateX(24px); }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column;
  justify-content: center; padding: clamp(5rem, 12vh, 9rem) 0 4rem;
  overflow: hidden;
}
.hero-net { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: 0.9; }
.net-paths path {
  fill: none; stroke: var(--accent); stroke-width: 1.2; opacity: 0.32;
  stroke-dasharray: var(--len); stroke-dashoffset: var(--len);
  animation: draw 2.4s var(--ease-out-expo) forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }
.net-nodes circle { fill: var(--accent); opacity: 0; animation: nodeIn 0.6s var(--ease-snap) forwards; }
.net-nodes circle.ink { fill: var(--ink); }
@keyframes nodeIn { to { opacity: 0.5; } }
.hero-grain {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5;
  background-image: radial-gradient(circle at 18% 30%, var(--accent-soft), transparent 42%),
                    radial-gradient(circle at 88% 72%, var(--accent-soft), transparent 46%);
}
.hero-media {
  position: absolute; top: 0; right: 0; z-index: 1;
  width: min(58%, 880px); height: 100%; pointer-events: none;
  -webkit-mask-image: linear-gradient(to left, #000 38%, transparent 92%);
  mask-image: linear-gradient(to left, #000 38%, transparent 92%);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.92; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg) 2%, transparent 36%),
              linear-gradient(115deg, transparent 40%, color-mix(in oklab, var(--accent) 22%, transparent));
  mix-blend-mode: multiply;
}
[data-theme="dark"] .hero-media img { opacity: 0.62; }
[data-theme="dark"] .hero-media::after { mix-blend-mode: screen; background: linear-gradient(to top, var(--bg) 2%, transparent 36%), linear-gradient(115deg, transparent 45%, color-mix(in oklab, var(--accent) 16%, transparent)); }
.hero-media--fallback {
  background: linear-gradient(135deg, var(--accent) 0%, var(--surface-2) 60%, transparent 100%);
}
@media (max-width: 760px) { .hero-media { width: 100%; opacity: 0.5; -webkit-mask-image: linear-gradient(to top, transparent 30%, #000 96%); mask-image: linear-gradient(to top, transparent 30%, #000 96%); } }
@media (prefers-reduced-motion: reduce) {
  .net-paths path { animation: none; stroke-dashoffset: 0; }
  .net-nodes circle { animation: none; opacity: 0.5; }
}

.hero-inner { position: relative; z-index: 2; display: grid; gap: clamp(1.6rem, 4vw, 3rem); }
.hero-head { max-width: min(94vw, 920px); }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: var(--step--1); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--ink-2); margin-bottom: 1.4rem;
}
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); position: relative; }
.pulse-dot::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--accent);
  animation: pulse 2.4s var(--ease-out-expo) infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(3.4); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .pulse-dot::after { animation: none; } }

.hero-title { font-size: clamp(2.4rem, 1.4rem + 3.7vw, 5.2rem); font-weight: 900; margin-bottom: 1.6rem; }
.hero-title .line { display: block; }
.hero-title em { color: var(--ink); }
.hero-title em.accent { color: var(--accent-text); position: relative; }

/* staggered hero line reveal */
.hero-title .reveal:not(.in) { transform: translateY(0.5em); }
.hero-title .reveal:nth-child(1) { transition-delay: 0.05s; }
.hero-title .reveal:nth-child(2) { transition-delay: 0.13s; }
.hero-title .reveal:nth-child(3) { transition-delay: 0.21s; }
.hero-title .reveal:nth-child(4) { transition-delay: 0.29s; }

.hero-sub { font-size: var(--step-1); color: var(--ink-2); max-width: 30ch; margin-bottom: 2rem; line-height: 1.4; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* Audience switch */
.aud-switch {
  position: relative; display: inline-flex; align-self: start; width: fit-content;
  padding: 5px; border-radius: 100px; background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--hairline), var(--shadow-soft);
  overflow: hidden; margin-bottom: 2.2rem;
}
.aud-tab {
  position: relative; z-index: 2; border: 0; background: none; cursor: pointer;
  padding: 0.7em 1.3em; border-radius: 100px; font-weight: 700; font-size: var(--step--1);
  color: var(--ink-2); transition: color 0.3s; min-height: 44px; white-space: nowrap;
}
.aud-tab.is-active { color: #06231a; }
[data-theme="dark"] .aud-tab.is-active { color: #06231a; }
.aud-thumb {
  position: absolute; z-index: 1; top: 5px; left: 5px; height: calc(100% - 10px); width: 0;
  border-radius: 100px; background: var(--accent); box-shadow: var(--glow);
  transition: transform 0.5s var(--ease-snap), width 0.5s var(--ease-snap);
}

.hero-scroll {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem; z-index: 2;
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--ink-2);
}
.hero-scroll-line { width: 1px; height: 38px; background: var(--hairline-strong); position: relative; overflow: hidden; }
.hero-scroll-line::after {
  content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--accent);
  animation: scrolldn 2s var(--ease-soft) infinite;
}
@keyframes scrolldn { 0% { transform: translateY(-100%); } 100% { transform: translateY(300%); } }
@media (prefers-reduced-motion: reduce) { .hero-scroll-line::after { animation: none; } }
@media (max-width: 600px) { .hero-scroll { display: none; } }

/* ---------- SECTION KICKER ---------- */
.section-kicker {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-size: var(--step--1); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--accent-text); margin-bottom: 1.4rem;
  white-space: nowrap;
}
.kicker-line { width: 34px; height: 2px; background: var(--accent); }

/* ---------- STATS ---------- */
.stats { padding: clamp(4rem, 10vh, 8rem) 0 clamp(2rem, 6vh, 4rem); border-top: 1px solid var(--hairline); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 3rem);
}
.stat { border-left: 2px solid var(--hairline); padding-left: 1.2rem; }
.stat-num {
  font-family: "Cabinet Grotesk", sans-serif; font-weight: 900;
  font-size: var(--step-4); line-height: 0.9; letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  margin-top: 0.7rem; font-size: var(--step--1); color: var(--ink-2);
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; line-height: 1.3;
}
.stats-note { margin-top: 2rem; font-size: 0.78rem; color: var(--ink-2); opacity: 0.8; }
@media (max-width: 860px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; } }
@media (max-width: 420px) { .stats-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- SIGNATURE: MATCH ---------- */
.match { position: relative; }
.match-track { height: 180vh; }
.match-pin {
  position: sticky; top: 0; height: 100svh; display: flex; align-items: center;
  overflow: hidden;
}
.match-stage { display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 4vw, 3rem); }
@media (min-width: 980px) { .match-stage { grid-template-columns: 0.9fr 1.4fr; align-items: center; } }

.match-head { max-width: min(92vw, 560px); }
.match-title { font-size: var(--step-3); margin-bottom: 1.2rem; }
.match-lead { color: var(--ink-2); font-size: var(--step-1); line-height: 1.4; max-width: 34ch; }
.match-counter { margin-top: 2rem; display: flex; align-items: baseline; gap: 0.8rem; }
.match-counter-num {
  font-family: "Cabinet Grotesk", sans-serif; font-weight: 900; font-size: var(--step-3);
  color: var(--accent-text); font-variant-numeric: tabular-nums; line-height: 1;
}
.match-counter-label { font-size: var(--step--1); color: var(--ink-2); text-transform: uppercase; letter-spacing: 0.1em; }

.match-board {
  position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 12vw, 9rem);
  min-height: 520px;
}
.match-col { display: flex; flex-direction: column; gap: 14px; position: relative; }
.col-tag {
  font-size: var(--step--1); font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--ink-2); margin-bottom: 6px;
}
.col-tag--right { text-align: right; }

.mcard {
  position: relative; background: var(--surface); border-radius: 14px; padding: 0.85rem 1rem;
  box-shadow: inset 0 0 0 1px var(--hairline); display: flex; align-items: center; gap: 0.7rem;
  transition: transform 0.5s var(--ease-snap), box-shadow 0.5s, background 0.4s;
  will-change: transform;
}
.mcard--matched { box-shadow: inset 0 0 0 1.5px var(--accent), var(--shadow-soft); transform: scale(1.03); }
.mcard-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; overflow: hidden;
  background: linear-gradient(135deg, var(--accent), var(--surface-2));
}
.mcard-avatar img { width: 100%; height: 100%; object-fit: cover; }
.mcard-body { min-width: 0; }
.mcard-name { font-weight: 700; font-size: var(--step-0); line-height: 1.1; }
.mcard-meta { font-size: 0.72rem; color: var(--ink-2); text-transform: uppercase; letter-spacing: 0.08em; }
.match-col--jobs .mcard { flex-direction: row-reverse; text-align: right; }
.match-col--jobs .mcard-avatar { background: linear-gradient(135deg, var(--surface-2), var(--accent)); display: grid; place-items: center; }
.mcard-tag { font-size: 1.1rem; }

.match-wires { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; overflow: visible; }
.wire { fill: none; stroke: var(--accent); stroke-width: 2; opacity: 0.85; }
.wire-spark {
  fill: var(--spark); opacity: 0; transform-box: fill-box; transform-origin: center;
}

@media (max-width: 979px) {
  .match-track { height: 140vh; }
  .match-board { min-height: 440px; }
}
@media (prefers-reduced-motion: reduce) {
  .match-track { height: auto; }
  .match-pin { position: relative; height: auto; padding: 5rem 0; }
}

/* ---------- MATCH-FINDER ---------- */
.finder { padding: clamp(5rem, 12vh, 9rem) 0; background: var(--surface); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.finder-head { max-width: 100%; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.finder-title { font-size: var(--step-3); margin-bottom: 1rem; }
.finder-lead { color: var(--ink-2); font-size: var(--step-1); line-height: 1.4; max-width: 46ch; }
.finder-reset {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.4rem;
  padding: 0.6em 1.2em; border-radius: 100px; cursor: pointer; white-space: nowrap;
  background: var(--bg); box-shadow: inset 0 0 0 1.5px var(--hairline);
  font-weight: 700; font-size: var(--step--1); color: var(--ink); min-height: 44px;
  transition: transform 0.3s var(--ease-snap), box-shadow 0.25s, color 0.25s;
}
.finder-reset:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1.5px var(--accent); color: var(--accent-text); }
.finder-reset[hidden] { display: none; }
.finder-reset-ic { font-size: 1.1em; line-height: 1; }

.finder-card {
  display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 4vw, 3rem);
  background: var(--bg); border-radius: var(--radius-lg); padding: clamp(1.4rem, 4vw, 2.6rem);
  box-shadow: inset 0 0 0 1px var(--hairline);
}
@media (min-width: 920px) { .finder-card { grid-template-columns: 1.1fr 0.9fr; } }

.finder-questions { display: flex; flex-direction: column; gap: 1.8rem; }
.fq { position: relative; }
.fq-index {
  font-family: "Cabinet Grotesk", sans-serif; font-weight: 800; font-size: 0.85rem;
  color: var(--accent-text); letter-spacing: 0.1em;
}
.fq-label { font-weight: 700; font-size: var(--step-1); margin: 0.3rem 0 0.9rem; line-height: 1.2; }
.fq-options { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip {
  border: 0; cursor: pointer; padding: 0.65em 1.1em; border-radius: 100px;
  background: var(--surface); box-shadow: inset 0 0 0 1px var(--hairline);
  font-weight: 600; font-size: var(--step--1); min-height: 44px;
  transition: transform 0.3s var(--ease-snap), background 0.25s, box-shadow 0.25s, color 0.25s;
}
.chip:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1px var(--ink); }
.chip.is-active { background: var(--accent); color: #06231a; box-shadow: var(--glow); }

.finder-result {
  background: var(--surface); border-radius: var(--radius); padding: clamp(1.3rem, 3vw, 2rem);
  box-shadow: inset 0 0 0 1px var(--hairline); align-self: start;
  min-height: 280px; display: flex; flex-direction: column;
}
.finder-result-empty { margin: auto; text-align: center; color: var(--ink-2); display: grid; gap: 1rem; justify-items: center; }
.result-spark, .avgs-result-spark {
  width: 44px; height: 44px; border-radius: 50%; background: var(--accent-soft);
  display: grid; place-items: center; position: relative;
}
.result-spark::before, .avgs-result-spark::before {
  content: ""; width: 14px; height: 14px; border-radius: 50%; background: var(--accent);
}
.result-reveal { animation: resultIn 0.7s var(--ease-out-expo) both; }
@keyframes resultIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .result-reveal { animation: none; } }

.result-headline { font-family: "Cabinet Grotesk", sans-serif; font-weight: 800; font-size: var(--step-2); line-height: 1.05; margin-bottom: 0.5rem; }
.result-match-strength { display: flex; align-items: center; gap: 0.6rem; margin: 0.4rem 0 1.2rem; }
.match-bar { flex: 1; height: 8px; border-radius: 100px; background: var(--surface-2); overflow: hidden; }
.match-bar-fill { height: 100%; background: var(--accent); border-radius: 100px; width: 0; transition: width 1s var(--ease-out-expo); }
.match-pct { font-weight: 800; font-family: "Cabinet Grotesk", sans-serif; color: var(--accent-text); font-variant-numeric: tabular-nums; }
.result-jobs { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin: 0 0 1.4rem; }
.result-jobs li {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 0.7rem 0.9rem; border-radius: 12px; background: var(--bg);
  box-shadow: inset 0 0 0 1px var(--hairline); font-weight: 600; font-size: var(--step--1);
}
.result-jobs .job-fit { color: var(--accent-text); font-weight: 800; font-size: 0.8rem; }
.result-next { font-size: var(--step--1); color: var(--ink-2); line-height: 1.5; }
.result-next strong { color: var(--ink); }

/* ---------- FÖRDERUNG ---------- */
.foerderung { padding: clamp(5rem, 12vh, 9rem) 0; }
.foerderung-inner { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 920px) { .foerderung-inner { grid-template-columns: 1fr 1fr; } }
.foerderung-title { font-size: var(--step-3); margin-bottom: 1.2rem; }
.foerderung-lead { color: var(--ink-2); font-size: var(--step-1); line-height: 1.45; margin-bottom: 1.6rem; }
.foerderung-points { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.foerderung-points li { display: flex; align-items: center; gap: 0.7rem; font-weight: 500; }
.tick { width: 22px; height: 22px; border-radius: 50%; background: var(--accent-soft); flex-shrink: 0; position: relative; }
.tick::after { content: ""; position: absolute; left: 7px; top: 5px; width: 5px; height: 9px; border: solid var(--accent-text); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.foerderung-media { margin-top: 1.8rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.foerderung-media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: 50% 40%; transition: transform 0.8s var(--ease-out-expo); }
.foerderung-media:hover img { transform: scale(1.03); }
.foerderung-media.img-fallback { aspect-ratio: 16 / 9; background: linear-gradient(135deg, var(--accent) 0%, var(--surface-2) 60%, var(--accent-soft) 100%); }

/* ---------- EDITORIAL IMAGE BAND ---------- */
.band { position: relative; isolation: isolate; padding: clamp(5rem, 16vh, 11rem) 0; overflow: hidden; }
.band-media { position: absolute; inset: 0; z-index: -2; }
.band-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.band-fallback { background: linear-gradient(135deg, #0b3d27, #134e35 55%, #0b3d27); }
.band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(110deg, rgba(10, 22, 16, 0.86) 0%, rgba(10, 22, 16, 0.66) 48%, rgba(10, 22, 16, 0.30) 100%);
}
.band-inner { max-width: 920px; }
.band-kicker { font-size: var(--step--1); font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: #8fe9b6; margin-bottom: 1.4rem; }
.band-quote { font-family: "Cabinet Grotesk", sans-serif; font-weight: 800; font-size: clamp(1.6rem, 1rem + 2.6vw, 3.2rem); line-height: 1.08; letter-spacing: -0.02em; color: #fff; margin-bottom: 1.4rem; }
.band-quote .accent { color: #5ff0a2; }
.band-by { color: #c7cdc7; font-weight: 600; }

.foerderung-tool { background: var(--surface); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.8rem); box-shadow: var(--shadow-soft), inset 0 0 0 1px var(--hairline); }
.stepper { position: relative; min-height: 220px; }
.stepper-progress { height: 4px; border-radius: 100px; background: var(--surface-2); margin-bottom: 2rem; overflow: hidden; }
.stepper-bar { display: block; height: 100%; width: 0%; background: var(--accent); border-radius: 100px; transition: width 0.6s var(--ease-out-expo); }
.avgs-step { display: none; animation: resultIn 0.5s var(--ease-out-expo) both; }
.avgs-step.is-active { display: block; }
.avgs-q { font-family: "Cabinet Grotesk", sans-serif; font-weight: 700; font-size: var(--step-2); line-height: 1.1; margin-bottom: 1.6rem; }
.avgs-options { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.avgs-btn {
  flex: 1; min-width: 130px; border: 0; cursor: pointer; padding: 1.1em 1.2em; border-radius: 14px;
  background: var(--bg); box-shadow: inset 0 0 0 1.5px var(--hairline); font-weight: 700; min-height: 44px;
  transition: transform 0.3s var(--ease-snap), box-shadow 0.25s, background 0.25s, color 0.25s;
}
.avgs-btn:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1.5px var(--accent); }
.avgs-result { display: none; }
.avgs-result.is-active { display: block; animation: resultIn 0.6s var(--ease-out-expo) both; }
.avgs-result-spark { margin-bottom: 1rem; }
.avgs-result-title { font-size: var(--step-2); margin-bottom: 0.6rem; }
.avgs-result-text { color: var(--ink-2); margin-bottom: 1.6rem; line-height: 1.5; }
.avgs-result-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.avgs-disclaimer { margin-top: 1.4rem; font-size: 0.74rem; color: var(--ink-2); opacity: 0.85; line-height: 1.5; }

/* ---------- VALUE ---------- */
.value { padding: clamp(5rem, 12vh, 9rem) 0; background: var(--surface); border-top: 1px solid var(--hairline); }
.value-head { margin-bottom: clamp(2rem, 5vw, 3.5rem); max-width: min(92vw, 720px); }
.value-title { font-size: var(--step-3); }
.value-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
@media (min-width: 720px) { .value-grid { grid-template-columns: repeat(3, 1fr); } }
.vcard {
  background: var(--bg); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: inset 0 0 0 1px var(--hairline); position: relative; overflow: hidden;
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.4s;
}
.vcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft), inset 0 0 0 1px var(--hairline); }
.vcard-ic { width: 40px; height: 40px; color: var(--accent-text); margin-bottom: 1.1rem; }
.vcard-ic svg { width: 100%; height: 100%; }
.vcard h3 { font-size: var(--step-1); margin-bottom: 0.5rem; }
.vcard p { color: var(--ink-2); font-size: var(--step--1); line-height: 1.5; }
.vcard-num { position: absolute; top: 1rem; right: 1.2rem; font-family: "Cabinet Grotesk", sans-serif; font-weight: 900; font-size: 2.4rem; color: var(--accent-soft); line-height: 1; }

.value-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.value-media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: 50% 38%; transition: transform 0.8s var(--ease-out-expo); }
.value-media:hover img { transform: scale(1.03); }
@media (max-width: 600px) { .value-media img { aspect-ratio: 4 / 3; } }
.value-media figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem clamp(1.2rem, 3vw, 2rem);
  color: #fff; font-weight: 600; font-size: var(--step--1);
  background: linear-gradient(transparent, rgba(8, 18, 12, 0.82));
}
.img-fallback {
  width: 100%; aspect-ratio: 21 / 9; display: block;
  background: linear-gradient(135deg, var(--accent) 0%, var(--surface-2) 55%, var(--accent-soft) 100%);
  position: relative;
}
.img-fallback::after {
  content: "Foto: Menschen bei der Arbeit · Ruhrgebiet"; position: absolute; inset: 0;
  display: grid; place-items: center; color: #06231a; font-family: ui-monospace, monospace;
  font-size: 0.8rem; opacity: 0.7; text-align: center; padding: 1rem;
}

/* ---------- PROCESS ---------- */
.process { padding: clamp(5rem, 12vh, 9rem) 0; }
.process-head { margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.process-title { font-size: clamp(1.7rem, 1rem + 2.5vw, 3rem); }
.process-steps { list-style: none; display: grid; grid-template-columns: 1fr; gap: 0.9rem; }
@media (min-width: 720px) { .process-steps { grid-template-columns: repeat(4, 1fr); } }
.process-step { background: var(--surface); padding: clamp(1.5rem, 2.6vw, 2.2rem); border: 1px solid var(--hairline); border-radius: var(--radius); transition: background 0.4s, border-color 0.4s, transform 0.5s var(--ease-out-expo); }
.process-step:hover { background: var(--surface); border-color: var(--accent); transform: translateY(-4px); }
.process-num { font-family: "Cabinet Grotesk", sans-serif; font-weight: 900; font-size: 1rem; color: var(--accent-text); letter-spacing: 0.1em; }
.process-step h3 { font-size: var(--step-1); margin: 0.8rem 0 0.6rem; }
.process-step p { color: var(--ink-2); font-size: var(--step--1); line-height: 1.5; }

/* ---------- CONTACT ---------- */
.contact { padding: clamp(5rem, 12vh, 9rem) 0; background: var(--surface); border-top: 1px solid var(--hairline); }
.contact-inner { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 6vw, 5rem); }
@media (min-width: 920px) { .contact-inner { grid-template-columns: 1fr 1fr; align-items: start; } }
.contact-title { font-size: var(--step-3); margin-bottom: 1.2rem; }
.contact-lead { color: var(--ink-2); font-size: var(--step-1); line-height: 1.45; margin-bottom: 2rem; max-width: 34ch; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; }
.contact-list li { display: grid; gap: 0.15rem; padding-bottom: 1.1rem; border-bottom: 1px solid var(--hairline); }
.contact-k { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-2); font-weight: 700; }
.contact-v { font-size: var(--step-1); font-weight: 700; }
a.contact-v { transition: color 0.25s; }
a.contact-v:hover { color: var(--accent-text); }
.contact-hint { font-size: 0.7rem; font-weight: 400; color: var(--ink-2); }

.contact-form { background: var(--bg); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow-soft), inset 0 0 0 1px var(--hairline); display: flex; flex-direction: column; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field label { font-size: var(--step--1); font-weight: 700; }
.field input, .field textarea {
  background: var(--surface); border: 0; border-radius: 12px; padding: 0.85em 1em;
  box-shadow: inset 0 0 0 1.5px var(--hairline); font-size: var(--step-0); resize: vertical;
  transition: box-shadow 0.25s;
}
.field input:focus, .field textarea:focus { outline: none; box-shadow: inset 0 0 0 1.5px var(--accent); }
.seg { display: flex; gap: 0.5rem; background: var(--surface); padding: 5px; border-radius: 100px; box-shadow: inset 0 0 0 1px var(--hairline); }
.seg-btn { flex: 1; border: 0; cursor: pointer; padding: 0.7em; border-radius: 100px; background: none; font-weight: 700; font-size: var(--step--1); color: var(--ink-2); min-height: 44px; transition: background 0.3s, color 0.3s; }
.seg-btn.is-active { background: var(--accent); color: #06231a; }
.form-status { font-size: var(--step--1); font-weight: 700; color: var(--accent-text); min-height: 1.2em; }
.form-fineprint { font-size: 0.72rem; color: var(--ink-2); opacity: 0.85; line-height: 1.5; }

/* ---------- FOOTER ---------- */
.site-footer { padding: clamp(3rem, 7vh, 5rem) 0 2.5rem; border-top: 1px solid var(--hairline); }
.footer-inner { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: start; }
@media (min-width: 760px) { .footer-inner { grid-template-columns: 1.4fr 1fr 1.4fr; } }
.footer-brand .brand-word { font-size: 1.6rem; display: block; margin-bottom: 0.6rem; }
.footer-brand p { color: var(--ink-2); font-size: var(--step--1); max-width: 30ch; }
.footer-nav { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a { color: var(--ink-2); font-weight: 600; transition: color 0.25s; }
.footer-nav a:hover { color: var(--accent-text); }
.footer-legal { color: var(--ink-2); font-size: 0.78rem; line-height: 1.7; }
.footer-legal a { text-decoration: underline; text-underline-offset: 3px; }
.footer-hint { opacity: 0.7; }

/* ---------- AUDIENCE TRANSITION ---------- */
.aud-swap { transition: opacity 0.35s var(--ease-soft), transform 0.35s var(--ease-soft); }
.aud-swapping { opacity: 0; transform: translateY(8px); }
@media (prefers-reduced-motion: reduce) { .aud-swap { transition: none; } .aud-swapping { opacity: 1; transform: none; } }
