/* ============================================================================
   Landing v5 — 1:1-Nachbau des ChatGPT-Entwurfs (auftrag-landing-v5-grove-vorschau,
   AP1). Der Entwurf ist Design-Autorität; das DS wird hier NICHT stillschweigend
   korrigiert. Abweichungen ausschließlich aus der 6-Punkte-Liste des Auftrags:

     (1) Font-Import: der Entwurf schreibt „Shibsted Grotesk" (Tippfehler) und
         fällt damit überall auf Arial zurück. Hier korrekt: Schibsted Grotesk.
     (2) Koralle-Ziffern auf hellem Grund → --coral-deep (Grove v2 §4.3):
         FAQ-Nummern, aktives Template-Label, Pfeil-Glyph auf .button-light.
         Auf Forest bleibt volles Koralle (Prozessnummern) wie im Entwurf.
     (3) One-off-Hexwerte des Entwurfs → Grove-v2-Tokens (Mapping §3, jeweils
         der visuell nächstliegende Rampenwert). Alpha-Werte laufen als
         forest-basiertes rgba() statt als 8-stelliges Hex.

   ISOLATION (Guard G7): diese Datei gehört allein der Review-Route der v5.
   Sie teilt keinen Pfad mit landing-v4.css und lädt die zentralen Token-Dateien
   bewusst NICHT — die v5 lebt auf dem Grove-v2-Entwurfsregister, das noch nicht
   in Kraft ist. Roh-Hex existiert ausschließlich im :root-Block unten (G2).
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&family=Ubuntu+Mono:wght@400;700&display=swap');

/* ── Grove v2 · Token-Block (EINZIGE Stelle mit Roh-Hex, Guard G2) ──────────
   Werte 1:1 aus regel-grove-v2-entwurf §2. Der Entwurf brachte eigene :root-
   Werte mit (--paper = Weiß, --stone = warmes Fast-Weiß); beide sind hier auf
   die Grove-v2-Rampe abgebildet: Fläche = Weiß, getönte Fläche = Forest-Mist.
   --on-forest trägt jede weiße Schrift auf dunkler Vollfläche (Forest-Buttons,
   Dateityp-Badges, Avatare, dunkle Sections) — kein zweites Weiß-Token. */
:root {
  /* Forest-Rampe */
  --forest-deep:      #071F1D;
  --forest:           #0C2C2A;
  --forest-mid:       #1C4A44;
  --forest-pale-deep: #DCE9E2;
  --forest-pale:      #E7EFEB;
  --forest-mist:      #F3F7F5;

  /* Linien */
  --line:             #DCE3DF;
  --line-strong:      #C7D6CF;

  /* Neutrals hell */
  --surface-default:  #FFFFFF;
  --ink:              #152321;
  --muted:            #66736E;

  /* Auf Forest */
  --on-forest:        #FFFFFF;
  --on-forest-muted:  #B8CBC5;
  --on-forest-eyebrow:#A9C2BA;
  --on-forest-line:   rgba(255,255,255,.17);

  /* Signal · Koralle (Grove v2 §2, Kai-Entscheid 03.08.). Trägt bislang nur die
     beiden freigegebenen Landing-Signalstellen (§4.10); die Apricot-Vorgängerwerte
     unten sind der Vorgänger-Stand und fallen erst im Alias-Abbau des
     Release-Zugs. */
  --coral:            #E0573F;

  /* Koralle-Rampe + Success (Grove v2 §2; Umzug nach Kai-Sichtung 03.08.) */
  --coral-deep:       #B93F2B;
  --coral-soft:       #F08268;
  --coral-faint:      #FBE3DC;
  --success:          #1A6B4A;

  /* Funktional + Dateityp (Dateityp-Farben SIND Tokens, siehe Grove v2 §2) */
  --danger:           #C0392B;
  --success:          #1A6B4A;
  --doc-pdf:          #D94843;
  --doc-docx:         #2F67B2;
  --doc-xlsx:         #1A6B4A;

  /* Schatten — ausschließlich forest-basiert (Brand-Brief v2.6) */
  --shadow:           0 20px 60px rgba(12,44,42,.11);

  /* Schriften — Abweichung (1): Schibsted statt „Shibsted" */
  --font-display:     'Schibsted Grotesk', Arial, sans-serif;
  --font-body:        'Ubuntu', Arial, sans-serif;
  --font-mono:        'Ubuntu Mono', monospace;
}

/* ── Reset (ersetzt die Tailwind-Preflight des Entwurfs, gleiche Wirkung) ── */
*, *::before, *::after { box-sizing: border-box; border: 0 solid; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; line-height: 1.5; scroll-behavior: smooth; }
h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; }
b, strong { font-weight: bolder; }
small { font-size: 80%; }
ol, ul, menu { list-style: none; }
img, svg, video, canvas, iframe { display: block; vertical-align: middle; }
img, video { max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; background-color: transparent; border-radius: 0; }
summary { display: list-item; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

body {
  background: var(--surface-default);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  margin: 0;
  font-family: var(--font-body);
  overflow-x: clip;
}

section[id] { scroll-margin-top: 80px; }

/* ── Kopfzeile ────────────────────────────────────────────────────────────── */
.site-header {
  z-index: 20;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  width: min(1400px, 100% - 64px);
  height: 92px;
  margin: 0 auto;
  display: grid;
  position: relative;
}
.brand { width: 136px; display: block; }
.brand img { width: 100%; height: auto; display: block; }
.main-nav { align-items: center; gap: 42px; font-size: 15px; font-weight: 600; display: flex; }
.main-nav a, .login-link { position: relative; }
.main-nav a::after, .login-link::after {
  content: "";
  background: currentColor;
  height: 1px;
  transition: right .18s;
  position: absolute;
  bottom: -7px; left: 0; right: 100%;
}
.main-nav a:hover::after, .login-link:hover::after { right: 0; }
.login-link {
  border-left: 1px solid var(--forest);
  justify-self: end;
  padding-left: 32px;
  font-size: 15px;
  font-weight: 600;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  isolation: isolate;
  grid-template-columns: minmax(420px,.83fr) minmax(620px,1.17fr);
  align-items: center;
  gap: clamp(26px, 4vw, 72px);
  width: min(1400px, 100% - 64px);
  min-height: 780px;
  margin: 0 auto;
  padding: 28px 0 70px;
  display: grid;
  position: relative;
}
.hero-wordmark-stage {
  z-index: 0;
  pointer-events: none;
  inset-block: 0;
  width: 100vw;
  position: absolute;
  left: 50%;
  overflow: hidden;
  transform: translate(-50%);
}
.hero-wordmark-plane {
  transform-origin: 50%;
  background: var(--forest-pale-deep);
  position: absolute;
  inset: -180px -14vw;
  transform: rotate(-7deg);
  -webkit-mask-image: url(/static/design/assets/belong-wordmark.svg);
  mask-image: url(/static/design/assets/belong-wordmark.svg);
  -webkit-mask-position: -.2vw calc(500px - 19.95vw);
  mask-position: -.2vw calc(500px - 19.95vw);
  -webkit-mask-size: 360vw;
  mask-size: 360vw;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.hero-copy { z-index: 5; padding: 30px 0 20px; position: relative; }

.eyebrow {
  color: var(--forest-mid);
  letter-spacing: .17em;
  text-transform: uppercase;
  margin: 0 0 25px;
  font-size: 12px;
  font-weight: 700;
}
.hero h1 {
  max-width: 660px;
  color: var(--forest);
  letter-spacing: -.052em;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(56px, 5.3vw, 82px);
  font-weight: 600;
  line-height: .98;
}
.hero h1 .hero-dot {
  background: var(--coral);
  border-radius: 50%;
  width: .16em; height: .16em;
  margin-left: .075em;
  display: inline-block;
}
/* Signalstelle A (Grove v2 §4.10): Koralle-Unterstreichung des Schlüsselworts.
   Volles Koralle auf hellem Grund ist als Unterstreichung ausdrücklich
   zugelassen (§4.3 Signal-Textregel) — die Schrift selbst bleibt Forest.
   Maße 1:1 aus §4.10: Stärke 0,07em, Offset 0,09em. */
.hero h1 .signal-underline {
  color: inherit;
  text-decoration-line: underline;
  text-decoration-color: var(--coral);
  text-decoration-thickness: .07em;
  text-underline-offset: .09em;
}
.hero-intro { max-width: 600px; margin: 36px 0 0; font-size: 19px; line-height: 1.58; }
.hero-actions { align-items: center; gap: 34px; margin-top: 34px; display: flex; }

.button {
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  gap: 22px;
  min-height: 55px;
  padding: 0 23px;
  font-weight: 600;
  transition: transform .18s, background .18s;
  display: inline-flex;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--forest); color: var(--on-forest); }
.button-primary:hover { background: var(--forest-mid); }
.button-primary span { color: var(--coral); font-size: 19px; }  /* auf Forest: volles Koralle */
.text-link { border-bottom: 1px solid var(--forest); white-space: nowrap; padding: 8px 0; font-weight: 600; }
.text-link span { margin-left: 12px; transition: transform .18s; display: inline-block; }
.text-link:hover span { transform: translate(4px); }

.trust-line {
  color: var(--muted);
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  font-size: 13px;
  display: flex;
}
.trust-line i { background: var(--coral); border-radius: 50%; width: 3px; height: 3px; }

.hero-visual { z-index: 1; min-height: 675px; position: relative; }
.hero-photo {
  z-index: 1;
  background: var(--forest-pale);
  border-radius: 44% 10% 38% 16% / 12% 10% 20% 25%;
  position: absolute;
  inset: 34px 0 42px 54px;
  overflow: hidden;
}
.hero-photo::after {
  content: "";
  border-radius: inherit;
  pointer-events: none;
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(12,44,42,.08);
}
.hero-photo img {
  object-fit: cover;
  object-position: 70% center;
  width: 100%; height: 100%;
  animation: .36s both hero-photo-in;
  display: block;
}
@keyframes hero-photo-in {
  0%  { opacity: 0; transform: scale(1.015); }
  to  { opacity: 1; transform: scale(1); }
}

/* ── Unterlagen-Karte (Hero + Ergebnis-Strecke) ───────────────────────────── */
.source-files {
  z-index: 6;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.97);
  border-radius: 9px;
  width: 218px;
  padding: 14px;
  position: absolute;
  bottom: 90px; left: -4px;
  box-shadow: 0 14px 34px rgba(12,44,42,.12);
}
.source-files > p {
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-size: 10px;
  font-weight: 700;
}
.file-row {
  border-top: 1px solid var(--line);
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 9px 0;
  display: grid;
}
.file-row:first-of-type { border-top: 0; }
.file-badge {
  color: var(--on-forest);
  /* Eselsohr des Dateisymbols: harte Stopps, kein Farbverlauf im DS-Sinn */
  background-image: linear-gradient(135deg, rgba(255,255,255,.95) 0 48%, rgba(255,255,255,.2) 49% 58%, rgba(255,255,255,0) 59%);
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: 9px 9px;
  border-radius: 3px 6px 3px 3px;
  place-items: center;
  width: 30px; height: 35px;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  display: grid;
  position: relative;
}
.file-pdf  { background-color: var(--doc-pdf); }
.file-docx { background-color: var(--doc-docx); }
.file-xlsx { background-color: var(--doc-xlsx); }
.file-row strong, .file-row small { display: block; }
.file-row strong { text-overflow: ellipsis; white-space: nowrap; font-size: 10px; font-weight: 600; overflow: hidden; }
.file-row small { color: var(--muted); margin-top: 2px; font-family: var(--font-mono); font-size: 8px; }
.file-row b { color: var(--forest-mid); font-size: 11px; }

.flow-arrow { display: none; }
.flow-arrow span {
  background: var(--forest);
  color: var(--on-forest);
  border-radius: 50%;
  place-items: center;
  width: 40px; height: 40px;
  font-size: 20px;
  display: grid;
  position: absolute;
  top: -21px; right: -8px;
  transform: rotate(8deg);
  box-shadow: 0 8px 20px rgba(12,44,42,.2);
}

/* ── Lebenslauf-Karte im Hero ─────────────────────────────────────────────── */
.cv-card {
  z-index: 5;
  width: min(455px, 62%);
  min-height: 565px;
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(12,44,42,.13);
  border-radius: 9px;
  flex-direction: column;
  padding: 29px 27px 24px;
  display: flex;
  position: absolute;
  bottom: 12px; right: 14px;
}
.cv-head {
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 19px;
  display: flex;
}
.cv-head h2 {
  color: var(--forest);
  letter-spacing: -.02em;
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
}
.cv-head p {
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 4px 0 0;
  font-size: 9px;
  font-weight: 700;
}
.ready-pill {
  background: var(--forest-pale);
  color: var(--forest);
  white-space: nowrap;
  border-radius: 5px;
  align-items: center;
  gap: 5px;
  padding: 8px 9px;
  font-family: var(--font-mono);
  font-size: 8px;
  display: inline-flex;
}
.ready-pill i { background: var(--success); border-radius: 50%; width: 6px; height: 6px; }
.cv-contact {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  justify-content: space-between;
  gap: 8px;
  padding: 13px 0;
  font-family: var(--font-mono);
  font-size: 7px;
  display: flex;
}
.cv-body { flex: 1; grid-template-columns: .82fr 1.18fr; gap: 23px; padding: 20px 0; display: grid; }
.cv-column + .cv-column { border-left: 1px solid var(--line); padding-left: 20px; }
.cv-column h3 {
  color: var(--forest);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin: 0 0 11px;
  font-size: 8px;
}
.cv-column h3:not(:first-child) { margin-top: 17px; }
.cv-column h4 { margin: 0 0 3px; font-size: 9px; }
.cv-column p, .cv-column small, .cv-column li { color: var(--muted); font-size: 7px; line-height: 1.55; }
.cv-column p { margin: 0; }
.cv-column small { margin-bottom: 9px; display: block; }
.cv-column ul { margin: 0; padding-left: 13px; }
.cv-position + .cv-position { margin-top: 14px; }
.skill-list { flex-wrap: wrap; gap: 5px; display: flex; }
.skill-list span { background: var(--forest-pale); color: var(--forest); border-radius: 3px; padding: 5px 6px; font-size: 6px; }
.cv-facts { flex-direction: column; gap: 5px; display: flex; }
.cv-facts span { color: var(--muted); font-family: var(--font-mono); font-size: 6px; line-height: 1.35; }

/* Wahrheits-Layer (Abweichung 5): Mono-Microcopy an allen Beispieldaten-Mockups */
.sample-note {
  color: var(--muted);
  font-family: var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 8px;
  display: block;
}
.cv-head .sample-note { margin-top: 6px; }
.mini-cv .sample-note { margin-top: 5px; font-size: 9px; }
.profile-info .sample-note { margin: -18px 0 22px; font-size: 9px; }
.candidate-head .sample-note { margin-top: 4px; font-size: 8px; }
.template-preview .sample-note {
  z-index: 3;
  position: absolute;
  bottom: 46px; left: 50px;
  font-size: 9px;
}

.visibility-card {
  background: var(--forest-pale);
  border-radius: 7px;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  min-height: 72px;
  margin-top: auto;
  padding: 14px 15px;
  display: flex;
}
.visibility-card strong, .visibility-card small { display: block; }
.visibility-card strong { color: var(--forest); font-size: 11px; }
.visibility-card small { color: var(--muted); max-width: 240px; margin-top: 5px; font-size: 7px; }

.toggle { background: var(--forest); border-radius: 999px; flex: none; width: 53px; height: 29px; position: relative; }
.toggle i {
  background: var(--surface-default);
  border-radius: 50%;
  width: 23px; height: 23px;
  position: absolute;
  top: 3px; right: 3px;
  box-shadow: 0 2px 5px rgba(12,44,42,.22);
}

/* ── Proof-Strip ──────────────────────────────────────────────────────────── */
.proof-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1.4fr repeat(3, 1fr);
  align-items: stretch;
  width: min(1400px, 100% - 64px);
  margin: 0 auto 118px;
  padding: 12px 0;
  display: grid;
}
.proof-strip div { border-left: 1px solid var(--line); padding: 18px 26px; }
.proof-strip div:first-child { border-left: 0; }
.proof-strip .proof-primary { background: var(--forest-pale); border-radius: 10px; margin: -1px 18px -1px 0; padding-left: 22px; }
.proof-strip strong, .proof-strip span { display: block; }
/* Mono-Labels im Proof-Strip: dokumentierte Landing-Ausnahme (Grove v2 §4.8) */
.proof-strip strong { color: var(--forest); font-family: var(--font-mono); font-size: 14px; }
.proof-strip .proof-primary strong { letter-spacing: -.02em; font-family: var(--font-display); font-size: 18px; }
.proof-strip span { color: var(--muted); margin-top: 5px; font-size: 12px; }

/* ── Sektionsköpfe ────────────────────────────────────────────────────────── */
.section-heading { max-width: 720px; }
.section-heading h2, .template-copy h2, .recruiter-copy h2, .control-copy h2, .final-cta h2 {
  color: var(--forest);
  letter-spacing: -.045em;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 4.3vw, 67px);
  font-weight: 600;
  line-height: 1.02;
}
.section-heading > p:last-child, .template-copy > p, .recruiter-copy > p, .control-copy > p {
  color: var(--muted);
  margin: 25px 0 0;
  font-size: 18px;
  line-height: 1.6;
}

/* ── Prozess-Sektion (Forest) ─────────────────────────────────────────────── */
.process-section {
  background: var(--forest);
  color: var(--on-forest);
  border-radius: 34px 10px;
  width: min(1400px, 100% - 64px);
  margin: 0 auto;
  padding: 95px 72px 74px;
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: "";
  pointer-events: none;
  background: rgba(255,255,255,.055);
  width: 560px; height: 560px;
  position: absolute;
  top: -80px; right: -140px;
  transform: rotate(5deg);
  -webkit-mask-image: url(/static/design/assets/belong-wordmark.svg);
  mask-image: url(/static/design/assets/belong-wordmark.svg);
  -webkit-mask-position: -1000px -100px;
  mask-position: -1000px -100px;
  -webkit-mask-size: 2400px;
  mask-size: 2400px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.section-heading-on-dark { z-index: 2; position: relative; }
.section-heading-on-dark .eyebrow { color: var(--on-forest-eyebrow); }
.section-heading-on-dark h2 { color: var(--on-forest); }
.section-heading-on-dark > p:last-child { color: var(--on-forest-muted); }

.process-grid { z-index: 2; grid-template-columns: repeat(3, 1fr); margin-top: 68px; display: grid; position: relative; }
.process-card { border-left: 1px solid var(--on-forest-line); min-height: 265px; padding: 27px 30px 30px; }
.process-card:first-child { border-left: 0; padding-left: 0; }
/* Ordnungsziffern auf Forest: volles Koralle (Grove v2 §4.3 + §4.8) */
.process-card > span { color: var(--coral); font-family: var(--font-mono); font-size: 16px; }
.process-card h3 { max-width: 200px; margin: 48px 0 15px; font-family: var(--font-display); font-size: 21px; line-height: 1.2; }
.process-card p { color: var(--on-forest-muted); margin: 0; font-size: 14px; line-height: 1.58; }

.process-outcomes { z-index: 2; border-top: 1px solid var(--on-forest-line); margin-top: 45px; padding-top: 56px; position: relative; }
.process-outcomes-copy { grid-template-columns: .9fr 1.1fr; align-items: end; gap: 18px 70px; display: grid; }
.process-outcomes-copy .eyebrow { color: var(--on-forest-eyebrow); grid-column: 1/-1; margin-bottom: 0; }
.process-outcomes-copy h3 {
  color: var(--on-forest);
  letter-spacing: -.04em;
  max-width: 560px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 3.7vw, 54px);
  font-weight: 600;
  line-height: 1.04;
}
.process-outcomes-copy > p:last-child { color: var(--on-forest-muted); max-width: 560px; margin: 0; font-size: 16px; line-height: 1.6; }

.outcomes-flow { grid-template-columns: .78fr auto 1fr auto 1fr; align-items: center; gap: 18px; margin-top: 42px; display: grid; }
.outcome { border: 1px solid var(--line); background: var(--surface-default); border-radius: 10px; min-height: 330px; padding: 28px; position: relative; }
.outcome-label {
  background: var(--forest-mist);
  color: var(--forest-mid);
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 7px 9px;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
}
.outcome-input { background: var(--forest-mist); flex-direction: column; justify-content: space-between; display: flex; }
.source-files-compact { width: 100%; box-shadow: none; background: 0 0; border: 0; border-radius: 0; padding: 0; position: static; }
.source-files-compact > p { display: none; }
.source-files-compact .file-row { border-color: var(--line); padding: 15px 0; }
.source-files-compact .file-row strong { font-size: 12px; }
.source-files-compact .file-row small { font-size: 9px; }
.outcome-arrow, .outcome-plus {
  border: 1px solid var(--line);
  width: 43px; height: 43px;
  color: var(--forest);
  border-radius: 50%;
  place-items: center;
  font-size: 19px;
  display: grid;
}
.outcome-plus { border-style: dashed; }
.outcome-cv { flex-direction: column; gap: 18px; display: flex; box-shadow: 0 18px 55px rgba(12,44,42,.09); }
.mini-cv {
  background: var(--surface-default);
  border: 1px solid var(--line);
  border-radius: 5px;
  flex: 1;
  grid-template-columns: 48px 1fr;
  grid-auto-rows: min-content;
  gap: 14px;
  padding: 23px;
  display: grid;
}
.mini-cv-photo {
  background: var(--forest);
  color: var(--on-forest);
  border-radius: 50%;
  grid-row: span 2;
  place-items: center;
  width: 45px; height: 45px;
  font-size: 12px;
  font-weight: 700;
  display: grid;
}
.mini-cv strong, .mini-cv small { display: block; }
.mini-cv small { color: var(--muted); margin-top: 4px; }
.mini-cv > i { background: var(--forest-pale); border-radius: 5px; grid-column: 1/-1; height: 7px; }
.mini-cv > i:nth-of-type(2) { width: 86%; }
.mini-cv > i:nth-of-type(3) { width: 70%; }
.mini-cv > i:nth-of-type(4) { width: 91%; }
.download-row { justify-content: space-between; align-items: center; gap: 10px; display: flex; }
.download-row span { color: var(--forest); font-size: 12px; font-weight: 600; }
.download-row span i { background: var(--success); border-radius: 50%; width: 7px; height: 7px; margin-right: 7px; display: inline-block; }
.download-row button, .request-card button {
  border: 1px solid var(--forest);
  color: var(--forest);
  font: inherit;
  background: 0 0;
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 600;
}
.outcome-profile { background: var(--forest-mist); overflow: hidden; }
.outcome-profile::after {
  content: "";
  pointer-events: none;
  background: rgba(12,44,42,.055);
  width: 230px; height: 230px;
  position: absolute;
  top: -40px; right: -110px;
  transform: rotate(-5deg);
  -webkit-mask-image: url(/static/design/assets/belong-wordmark.svg);
  mask-image: url(/static/design/assets/belong-wordmark.svg);
  -webkit-mask-position: -388px -44px;
  mask-position: -388px -44px;
  -webkit-mask-size: 940px;
  mask-size: 940px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.outcome-profile > * { z-index: 1; position: relative; }
.outcome-profile h3 {
  max-width: 260px;
  color: var(--forest);
  margin: 40px 0 12px;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
}
.outcome-profile > p { color: var(--muted); margin: 0; font-size: 13px; line-height: 1.5; }
.profile-tags { flex-wrap: wrap; gap: 7px; margin-top: 20px; display: flex; }
.profile-tags span { color: var(--forest); border: 1px solid var(--line); border-radius: 999px; padding: 7px 9px; font-size: 10px; }
.visibility-compact { background: 0 0; border-top: 1px solid var(--line); border-radius: 0; margin-top: 30px; padding: 13px 0 0; }
.visibility-compact small { display: none; }
.visibility-compact .toggle { width: 45px; height: 25px; }
.visibility-compact .toggle i { width: 19px; height: 19px; }

/* ── Vorlagen ─────────────────────────────────────────────────────────────── */
.templates-section { background: var(--forest-mist); padding: 118px 0; position: relative; overflow: hidden; }
.template-stage {
  z-index: 1;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 110px;
  width: min(1240px, 100% - 64px);
  margin: 0 auto;
  display: grid;
  position: relative;
}
.template-preview { place-items: center; min-height: 720px; display: grid; position: relative; }
.template-letter {
  pointer-events: none;
  background: var(--forest-pale-deep);
  height: 560px;
  position: absolute;
  top: 80px;
  -webkit-mask-image: url(/static/design/assets/belong-wordmark.svg);
  mask-image: url(/static/design/assets/belong-wordmark.svg);
  -webkit-mask-size: 1900px;
  mask-size: 1900px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.template-letter-l {
  width: 145px;
  left: -1%;
  transform: rotate(-8deg);
  -webkit-mask-position: -650px 48px;
  mask-position: -650px 48px;
}
.template-letter-e {
  background: var(--forest-pale);
  width: 330px;
  right: 0;
  transform: rotate(12deg);
  -webkit-mask-position: -325px 48px;
  mask-position: -325px 48px;
}
.template-preview img {
  z-index: 2;
  object-fit: cover;
  object-position: top;
  border-radius: 5px;
  width: 390px;
  max-height: 550px;
  transition: opacity .18s, transform .26s;
  position: relative;
  box-shadow: 0 25px 70px rgba(12,44,42,.2);
}
.template-badge {
  z-index: 3;
  color: var(--forest);
  background: var(--surface-default);
  border-radius: 5px;
  padding: 13px 17px;
  font-family: var(--font-display);
  font-size: 20px;
  position: absolute;
  bottom: 70px; left: 50px;
  box-shadow: 0 10px 25px rgba(12,44,42,.15);
}
.template-copy { max-width: 570px; }
.template-options { border-top: 1px solid var(--line); margin: 45px 0 30px; }
.template-options button {
  width: 100%;
  color: var(--muted);
  font: inherit;
  text-align: left;
  cursor: pointer;
  background: 0 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 20px 0;
  display: grid;
}
.template-options button > span:first-child { font-family: var(--font-mono); }
.template-options button strong, .template-options button small { display: block; }
.template-options button strong { color: var(--forest); font-size: 17px; }
.template-options button small { margin-top: 5px; font-size: 12px; }
.template-options button b { color: var(--forest); opacity: 0; transition: opacity .18s; }
.template-options button.active { color: var(--forest); }
/* Abweichung (2): Koralle-Ziffer auf hellem Grund → --coral-deep */
.template-options button.active > span:first-child { color: var(--coral-deep); }
.template-options button.active b { opacity: 1; }

/* ── Potenzial-Sektion ────────────────────────────────────────────────────── */
.potential-section { width: min(1400px, 100% - 64px); margin: 135px auto; }
.potential-heading { text-align: center; margin-left: auto; margin-right: auto; }
.profile-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 70px; display: grid; }
.profile-card {
  border: 1px solid var(--line);
  background: var(--surface-default);
  border-radius: 8px;
  min-width: 0;
  transition: transform .22s, box-shadow .22s;
  overflow: hidden;
}
.profile-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(12,44,42,.10); }
.profile-image { background: var(--forest-mist); height: 340px; position: relative; overflow: hidden; }
.profile-image::after {
  content: "";
  background: linear-gradient(rgba(7,31,29,0), rgba(7,31,29,.42));
  height: 40%;
  position: absolute;
  inset: auto 0 0;
}
.profile-image img { object-fit: cover; object-position: center 24%; width: 100%; height: 100%; display: block; }
.profile-card:nth-child(3) .profile-image img { object-position: center 18%; }
.profile-image > span {
  z-index: 2;
  color: var(--on-forest);
  font-family: var(--font-display);
  font-size: 17px;
  position: absolute;
  bottom: 16px; right: 18px;
}
.profile-info { padding: 25px 24px 29px; }
.profile-info > p { color: var(--forest); margin: 0 0 25px; font-size: 17px; }
.profile-caption {
  color: var(--muted);
  letter-spacing: .09em;
  text-transform: uppercase;
  margin: 19px 0 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  display: block;
}
.profile-info .profile-tags { margin-top: 0; }
.profile-paths { flex-direction: column; gap: 6px; display: flex; }
/* Signalstelle B (Grove v2 §4.10): die „Passt auch zu"-Einträge tragen die
   Signal-Kante — Koralle markiert, was belong entdeckt. Forest-Kante bleibt
   der KI-Semantik vorbehalten (§4.7), deshalb wechselt hier die Kantenfarbe,
   nicht die Fläche. Volles Koralle auf hell ist als Kante zulässig (§4.3). */
.profile-paths span {
  border-left: 2px solid var(--coral);
  background: var(--forest-mist);
  color: var(--forest);
  padding: 8px 10px;
  font-size: 11px;
}

/* ── Recruiter-Sektion (Forest) ───────────────────────────────────────────── */
.recruiter-section {
  background: var(--forest);
  color: var(--on-forest);
  border-radius: 34px 10px;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 75px;
  width: min(1400px, 100% - 64px);
  margin: 0 auto;
  padding: 100px 70px;
  display: grid;
  position: relative;
  overflow: hidden;
}
.recruiter-section::after {
  content: "";
  pointer-events: none;
  background: rgba(255,255,255,.043);
  width: 520px; height: 720px;
  position: absolute;
  bottom: -120px; right: -130px;
  transform: rotate(-4deg);
  -webkit-mask-image: url(/static/design/assets/belong-wordmark.svg);
  mask-image: url(/static/design/assets/belong-wordmark.svg);
  -webkit-mask-position: -1758px -112px;
  mask-position: -1758px -112px;
  -webkit-mask-size: 2300px;
  mask-size: 2300px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.recruiter-copy { z-index: 2; position: relative; }
.recruiter-copy .eyebrow { color: var(--on-forest-eyebrow); }
.recruiter-copy h2 { color: var(--on-forest); }
.recruiter-copy > p { color: var(--on-forest-muted); }
.button-light { color: var(--forest); background: var(--surface-default); margin-top: 35px; }
/* Abweichung (2): Glyph auf hellem Button → --coral-deep (Grove v2 §4.3) */
.button-light span { color: var(--coral-deep); }
.button-light:hover { background: var(--forest-pale); }

.recruiter-ui {
  z-index: 2;
  min-height: 500px;
  color: var(--ink);
  background: var(--forest-mist);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 9px;
  grid-template-columns: .72fr 1.28fr;
  display: grid;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(12,44,42,.23);
}
.candidate-list { border-right: 1px solid var(--line); background: var(--forest-pale); padding: 17px 0; }
.search-row {
  color: var(--muted);
  background: var(--surface-default);
  border: 1px solid var(--line);
  border-radius: 5px;
  margin: 0 14px 13px;
  padding: 13px;
  font-size: 9px;
}
.candidate-row {
  border-radius: 5px;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 9px;
  margin: 2px 8px;
  padding: 12px 8px;
  display: grid;
}
.candidate-row.active { background: var(--surface-default); box-shadow: 0 4px 15px rgba(12,44,42,.08); }
.candidate-row > span, .candidate-head > span {
  background: var(--forest);
  color: var(--on-forest);
  border-radius: 50%;
  place-items: center;
  width: 31px; height: 31px;
  font-size: 9px;
  font-weight: 700;
  display: grid;
}
.candidate-row div { flex-direction: column; gap: 5px; display: flex; }
.candidate-row div i { background: var(--line-strong); border-radius: 3px; width: 90%; height: 5px; }
.candidate-row div i:last-child { width: 60%; }
.candidate-row small { color: var(--muted); font-family: var(--font-mono); font-size: 7px; }
.candidate-detail { padding: 31px; }
.candidate-head {
  border-bottom: 1px solid var(--line);
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 11px;
  padding-bottom: 23px;
  display: grid;
}
.candidate-head > span { width: 44px; height: 44px; font-size: 12px; }
.candidate-head h3 { color: var(--forest); margin: 0; font-size: 16px; }
.candidate-head p { color: var(--muted); margin: 4px 0 0; font-size: 9px; }
.candidate-head small { color: var(--forest-mid); font-family: var(--font-mono); font-size: 8px; }
.candidate-head small i { background: var(--success); border-radius: 50%; width: 6px; height: 6px; margin-right: 4px; display: inline-block; }
.candidate-block { border-bottom: 1px solid var(--line); padding: 21px 0; }
.candidate-block > span { color: var(--muted); letter-spacing: .07em; text-transform: uppercase; font-size: 8px; font-weight: 700; }
.candidate-block p, .candidate-block strong { margin: 9px 0 0; font-size: 11px; display: block; }
.request-card { background: var(--forest-pale); border-radius: 6px; margin-top: 22px; padding: 17px; }
.request-card > span, .request-card > strong, .request-card > small { font-family: var(--font-mono); display: block; }
.request-card > span { color: var(--forest); letter-spacing: .07em; text-transform: uppercase; font-size: 8px; font-weight: 700; }
.request-card > span i { background: var(--coral); border-radius: 50%; width: 6px; height: 6px; margin-right: 6px; display: inline-block; }
.request-card > strong { margin-top: 9px; font-size: 13px; }
.request-card > small { color: var(--muted); margin-top: 4px; font-size: 9px; }
.request-card button { margin-top: 14px; }

/* ── Kontroll-Sektion ─────────────────────────────────────────────────────── */
.control-section {
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 110px;
  width: min(1180px, 100% - 64px);
  margin: 140px auto 90px;
  display: grid;
}
.control-visual { place-items: center; min-height: 470px; display: grid; position: relative; }
.control-ring {
  width: 360px; height: 360px;
  box-shadow: 0 0 0 45px var(--forest-mist), 0 0 0 46px var(--line);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  place-items: center;
  display: grid;
  position: relative;
}
.control-ring::before, .control-ring::after {
  content: "";
  border: 1px dashed var(--line-strong);
  border-radius: 50%;
  position: absolute;
  inset: 60px;
}
.control-ring::after { background: var(--forest); border-style: solid; inset: 118px; }
.control-ring > span { z-index: 2; color: var(--on-forest); font-family: var(--font-display); font-size: 32px; position: relative; }
.control-ring > i {
  z-index: 3;
  background: var(--coral);
  width: 12px; height: 12px;
  box-shadow: 0 0 0 1px var(--coral);
  border: 4px solid var(--surface-default);
  border-radius: 50%;
  position: absolute;
}
.control-ring > i:first-of-type { top: 90px; left: 52px; }
.control-ring > i:nth-of-type(2) { top: 170px; right: 33px; }
.control-ring > i:nth-of-type(3) { bottom: 23px; left: 142px; }
.control-switch {
  border: 1px solid var(--line);
  min-width: 255px;
  color: var(--forest);
  background: var(--surface-default);
  border-radius: 7px;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 17px 18px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  position: absolute;
  bottom: 30px; right: -12px;
  box-shadow: 0 15px 35px rgba(12,44,42,.12);
}
.control-points { border-top: 1px solid var(--line); flex-direction: column; gap: 0; margin-top: 34px; display: flex; }
.control-points span { border-bottom: 1px solid var(--line); color: var(--forest); padding: 15px 0; font-size: 13px; font-weight: 600; }
.control-points span::before { content: "✓"; color: var(--forest-mid); margin-right: 12px; }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.faq-section { width: min(1120px, 100% - 64px); margin: 130px auto; }
.faq-section .section-heading { max-width: 620px; }
.faq-list { border-top: 1px solid var(--line); margin-top: 60px; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  min-height: 80px;
  color: var(--forest);
  cursor: pointer;
  grid-template-columns: 55px 1fr auto;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 600;
  list-style: none;
  display: grid;
}
.faq-list summary::-webkit-details-marker { display: none; }
/* Abweichung (2): FAQ-Ordnungsziffern auf hellem Grund → --coral-deep */
.faq-list summary > span { color: var(--coral-deep); font-family: var(--font-mono); font-size: 14px; }
.faq-list summary i { font-size: 24px; font-style: normal; font-weight: 400; transition: transform .18s; }
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list details > p { max-width: 700px; color: var(--muted); margin: 0 0 27px 65px; font-size: 15px; line-height: 1.65; }

/* ── Abschluss-CTA ────────────────────────────────────────────────────────── */
.final-cta {
  background: var(--forest);
  border-radius: 34px 10px;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
  width: min(1400px, 100% - 64px);
  margin: 0 auto;
  padding: 75px 70px;
  display: grid;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  background: var(--coral);
  opacity: 1;
  pointer-events: none;
  border-radius: 50%;
  width: 98px; height: 98px;
  position: absolute;
  top: -32px; right: -32px;
}
.final-cta > div { z-index: 2; position: relative; }
.final-cta .eyebrow { color: var(--on-forest-eyebrow); }
.final-cta h2 { color: var(--on-forest); max-width: 780px; }
.final-cta .button-light { margin: 0; }
.final-cta > div:last-child > p { color: var(--on-forest-eyebrow); text-align: center; margin: 15px 0 0; font-size: 11px; }

/* ── Fuß ──────────────────────────────────────────────────────────────────── */
footer {
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  width: min(1400px, 100% - 64px);
  margin: 0 auto;
  padding: 78px 0 32px;
  display: grid;
  position: relative;
}
.footer-brand img { width: 130px; }
.footer-brand p { color: var(--muted); margin: 20px 0 0; font-size: 13px; }
.footer-links { grid-template-columns: repeat(3, 1fr); gap: 35px; display: grid; }
.footer-links div { flex-direction: column; gap: 10px; display: flex; }
.footer-links strong { color: var(--forest); margin-bottom: 7px; font-size: 13px; }
.footer-links a { color: var(--muted); font-size: 12px; }
.footer-links a:hover { color: var(--forest); }
.footer-copy { border-top: 1px solid var(--line); color: var(--muted); grid-column: 1/-1; margin: 25px 0 0; padding-top: 24px; font-size: 11px; }

/* ── Breakpoint 1120 ──────────────────────────────────────────────────────── */
@media (width <= 1120px) {
  .site-header, .hero { width: min(100% - 40px, 980px); }
  .hero { grid-template-columns: 1fr; padding-top: 20px; }
  .hero-copy { max-width: 780px; }
  .hero-wordmark-plane {
    -webkit-mask-position: -.2vw calc(500px - 19.95vw);
    mask-position: -.2vw calc(500px - 19.95vw);
    -webkit-mask-size: 360vw;
    mask-size: 360vw;
  }
  .hero-visual { min-height: 680px; }
  .hero-photo { inset: 34px 2% 42px 9%; }
  .proof-strip, .process-section, .potential-section, .recruiter-section, .final-cta, footer { width: min(100% - 40px, 980px); }
  .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .proof-strip .proof-primary { margin-right: 12px; }
  .proof-strip div { min-height: 65px; padding: 12px 20px; }
  .proof-strip div:nth-child(3) { border-left: 0; }
  .process-section { padding: 75px 45px 55px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-card:nth-child(3) { border-left: 0; padding-left: 0; }
  .outcomes-flow { grid-template-columns: 1fr 1fr; }
  .outcome-arrow, .outcome-plus { display: none; }
  .outcome-input { grid-column: 1/-1; min-height: 260px; }
  .template-stage { gap: 65px; width: min(100% - 40px, 920px); }
  .template-preview img { width: 330px; }
  .template-letter { width: 340px; height: 510px; -webkit-mask-size: 1650px; mask-size: 1650px; }
  .template-letter-l { width: 125px; left: -2%; -webkit-mask-position: -565px 45px; mask-position: -565px 45px; }
  .template-letter-e { width: 285px; -webkit-mask-position: -282px 45px; mask-position: -282px 45px; }
  .recruiter-section { grid-template-columns: 1fr; }
  .control-section { gap: 70px; width: min(100% - 40px, 860px); }
  .control-ring { width: 300px; height: 300px; }
  .final-cta { grid-template-columns: 1fr; align-items: start; }
}

/* ── Breakpoint 720 ───────────────────────────────────────────────────────── */
@media (width <= 720px) {
  .site-header { grid-template-columns: 1fr auto; width: calc(100% - 32px); height: 76px; }
  .brand { width: 108px; }
  .main-nav { display: none; }
  .login-link { border-left: 0; padding-left: 0; font-size: 14px; }
  .hero { gap: 32px; width: calc(100% - 32px); min-height: auto; padding: 28px 0 55px; }
  .hero h1 { font-size: clamp(46px, 13.2vw, 64px); }
  .hero-intro { margin-top: 26px; font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 14px; }
  .button { width: 100%; }
  .text-link { align-self: flex-start; }
  .hero-visual { min-height: 600px; margin-top: 0; }
  .hero-photo { border-radius: 35% 8% 26% 12% / 10% 8% 22% 20%; inset: 24px 0 105px 22px; }
  .hero-wordmark-stage { height: 520px; inset-block: auto 70px; }
  .hero-wordmark-plane {
    inset: -120px -18vw;
    -webkit-mask-position: 3.8vw 120px;
    mask-position: 3.8vw 120px;
    -webkit-mask-size: 360vw;
    mask-size: 360vw;
  }
  .source-files { width: 184px; padding: 10px; bottom: 18px; left: 0; }
  .file-row { grid-template-columns: 28px 1fr; }
  .file-row b { display: none; }
  .file-badge { width: 24px; height: 28px; }
  .flow-arrow { display: none; }
  .cv-card { width: 70%; min-height: 405px; padding: 18px 15px 15px; bottom: 30px; right: -6px; }
  .cv-head h2 { font-size: 20px; }
  .cv-contact, .cv-column p, .cv-column li, .cv-column small { font-size: 5px; }
  .cv-head .sample-note { font-size: 6px; }
  .cv-body { gap: 10px; padding: 12px 0; }
  .cv-column + .cv-column { padding-left: 10px; }
  .visibility-card { min-height: 60px; padding: 10px; }
  .visibility-card small { display: none; }
  .toggle { width: 39px; height: 22px; }
  .toggle i { width: 16px; height: 16px; }
  .proof-strip, .process-section, .potential-section, .recruiter-section, .final-cta, footer, .faq-section { width: calc(100% - 32px); }
  .proof-strip { grid-template-columns: 1fr; margin-bottom: 80px; }
  .proof-strip .proof-primary { margin: 0; padding: 18px; }
  .proof-strip div, .proof-strip div:first-child { border-left: 0; border-top: 1px solid var(--line); padding: 17px 0; }
  .proof-strip div:first-child { border-top: 0; }
  .section-heading h2, .template-copy h2, .recruiter-copy h2, .control-copy h2, .final-cta h2 { font-size: 40px; }
  .section-heading > p:last-child, .template-copy > p, .recruiter-copy > p, .control-copy > p { font-size: 16px; }
  .process-section { border-radius: 24px 8px; padding: 58px 24px 32px; }
  .process-section::before {
    width: 360px; height: 360px;
    top: -56px; right: -92px;
    -webkit-mask-position: -650px -62px;
    mask-position: -650px -62px;
    -webkit-mask-size: 1560px;
    mask-size: 1560px;
  }
  .process-grid { grid-template-columns: 1fr; margin-top: 40px; }
  .process-card, .process-card:first-child, .process-card:nth-child(3) {
    border-top: 1px solid var(--on-forest-line);
    border-left: 0;
    min-height: auto;
    padding: 26px 0;
  }
  .process-card h3 { max-width: none; margin-top: 25px; }
  .process-outcomes { margin-top: 20px; padding-top: 42px; }
  .process-outcomes-copy { grid-template-columns: 1fr; align-items: start; gap: 18px; }
  .process-outcomes-copy .eyebrow { grid-column: auto; margin-bottom: 0; }
  .process-outcomes-copy h3 { font-size: 36px; }
  .potential-section, .control-section, .faq-section { margin-top: 90px; margin-bottom: 90px; }
  .outcomes-flow { grid-template-columns: 1fr; }
  .outcome { min-height: 320px; }
  .template-stage { grid-template-columns: 1fr; gap: 35px; width: calc(100% - 32px); }
  .template-preview { min-height: 560px; }
  .template-preview img { width: min(78vw, 330px); height: auto; }
  .template-letter { width: min(86vw, 340px); height: 480px; -webkit-mask-size: 1550px; mask-size: 1550px; }
  .template-letter-l { width: 115px; left: -3%; -webkit-mask-position: -535px 36px; mask-position: -535px 36px; }
  .template-letter-e { width: 270px; right: -2%; -webkit-mask-position: -264px 36px; mask-position: -264px 36px; }
  .template-badge { bottom: 50px; left: 3%; }
  .template-preview .sample-note { bottom: 26px; left: 3%; }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-image { height: 380px; }
  .recruiter-section { border-radius: 24px 8px; gap: 48px; padding: 58px 22px; }
  .recruiter-section::after {
    width: 360px; height: 500px;
    bottom: -90px; right: -96px;
    -webkit-mask-position: -1264px -84px;
    mask-position: -1264px -84px;
    -webkit-mask-size: 1650px;
    mask-size: 1650px;
  }
  .recruiter-ui { grid-template-columns: 1fr; min-height: 440px; }
  .candidate-list { display: none; }
  .candidate-detail { padding: 22px; }
  .control-section { grid-template-columns: 1fr; gap: 45px; width: calc(100% - 32px); }
  .control-visual { min-height: 380px; }
  .control-ring { width: 260px; height: 260px; }
  .control-switch { right: 0; }
  .faq-list summary { grid-template-columns: 38px 1fr auto; font-size: 16px; }
  .faq-list details > p { margin-left: 48px; }
  .final-cta { border-radius: 24px 8px; padding: 56px 24px; }
  .final-cta::before { opacity: 1; width: 76px; height: 76px; top: -24px; right: -24px; }
  .final-cta .button-light { width: 100%; }
  footer { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

/* ── Bewegungsarmut ───────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, ::before, ::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
