:root {
  --v14-navy: #081527;
  --v14-navy-2: #0d1b33;
  --v14-gold: #c6a35a;
  --v14-gold-deep: #9c7d3f;
  --v14-cream: #f7f4ec;
  --v14-ink: #222;
  --v14-muted: #6f716f;
  --v14-line: rgba(34, 34, 34, 0.14);
  --v14-line-dark: rgba(247, 244, 236, 0.15);
  --v14-serif: "Fraunces", Georgia, serif;
  --v14-sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --v14-mono: "Geist Mono", "SFMono-Regular", Consolas, monospace;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  color: var(--v14-cream);
  background: linear-gradient(to bottom, rgba(8, 21, 39, 0.94), rgba(8, 21, 39, 0));
  font-family: var(--v14-mono);
}

.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { display: block; width: auto; height: 54px; }
.topnav { display: flex; gap: 28px; }
.topnav a {
  color: rgba(247, 244, 236, 0.7);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.topnav a:hover { color: var(--v14-gold); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--v14-gold);
  border-radius: 0;
  background: transparent;
  color: var(--v14-gold);
  font: 500 12px/1.2 var(--v14-mono);
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn::after { content: "→"; transition: transform 0.2s ease; }
.btn:hover::after { transform: translateX(3px); }
.btn:hover { background: var(--v14-gold); color: var(--v14-navy); }
.btn-solid { background: var(--v14-gold); color: var(--v14-navy); }
.btn-solid:hover { border-color: var(--v14-gold-deep); background: var(--v14-gold-deep); color: #fff; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--v14-cream);
  color: var(--v14-navy);
  font: 600 12px/1 var(--v14-mono);
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 2px solid var(--v14-gold);
  outline-offset: 4px;
}

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

.topbar {
  min-height: 66px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.topbar.is-scrolled,
.topbar.is-open {
  background: rgba(8, 21, 39, 0.96);
  border-bottom: 1px solid var(--v14-line-dark);
  backdrop-filter: blur(14px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(247, 244, 236, 0.28);
  background: transparent;
  color: var(--v14-cream);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.topbar.is-open .nav-toggle span { opacity: 0; }
.topbar.is-open .nav-toggle::before { transform: translateY(6px) rotate(45deg); }
.topbar.is-open .nav-toggle::after { transform: translateY(-6px) rotate(-45deg); }

.topnav a.active,
.topnav a[aria-current="page"] { color: var(--v14-gold); }

.topnav a.active::after,
.topnav a[aria-current="page"]::after {
  content: "";
  display: block;
  height: 1px;
  margin-top: 6px;
  background: var(--v14-gold);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 14px;
  font: 500 10px/1.4 var(--v14-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-links a {
  color: rgba(247, 244, 236, 0.6);
  text-decoration: none;
}

.legal-links a:hover { color: var(--v14-gold); }

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 620px;
  padding: 28px;
  border: 1px solid rgba(198, 163, 90, 0.42);
  background: rgba(8, 21, 39, 0.72);
}

.finalcta .inner { align-items: flex-start; }
.finalcta .inner > div:first-child { flex: 1 1 340px; }
.finalcta .contact-form {
  flex: 1 1 520px;
  width: auto;
  max-width: 620px;
}

.contact-form label,
.contact-form .form-consent {
  display: grid;
  gap: 8px;
  color: rgba(247, 244, 236, 0.72);
  font: 500 10px/1.3 var(--v14-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 0;
  border-bottom: 1px solid rgba(247, 244, 236, 0.28);
  border-radius: 0;
  background: rgba(247, 244, 236, 0.06);
  color: var(--v14-cream);
  font: 400 15px/1.45 var(--v14-sans);
}

.contact-form select { color-scheme: dark; }
.contact-form textarea { min-height: 110px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-bottom-color: var(--v14-gold); outline: none; }
.contact-form .field-wide,
.contact-form .form-consent,
.contact-form .form-status,
.contact-form .form-actions { grid-column: 1 / -1; }

.contact-form .form-consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--v14-sans);
  font-size: 12px;
  line-height: 1.5;
}

.contact-form .form-consent input {
  width: 16px;
  min-height: 16px;
  margin: 2px 0 0;
  accent-color: var(--v14-gold);
}

.contact-form .form-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-form button { border-radius: 0; }
.contact-form .form-status {
  min-height: 20px;
  margin: 0;
  color: rgba(247, 244, 236, 0.68);
  font: 400 11px/1.5 var(--v14-mono);
}

.contact-form .form-status.is-success { color: #b7d9c1; }
.contact-form .honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Standalone V14 subpages. */
.v14-page {
  margin: 0;
  overflow-x: hidden;
  background: var(--v14-cream);
  color: var(--v14-ink);
  font-family: var(--v14-sans);
  -webkit-font-smoothing: antialiased;
}

.v14-page * { box-sizing: border-box; }
.v14-page img { display: block; max-width: 100%; }
.v14-wrap { width: min(1180px, calc(100% - 64px)); margin: 0 auto; }
.v14-section { padding: clamp(86px, 10vw, 144px) 0; }
.v14-section--dark { background: var(--v14-navy); color: var(--v14-cream); }
.v14-section--ink { background: #17191b; color: var(--v14-cream); }
.v14-section--line { border-top: 1px solid var(--v14-line); }

.v14-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--v14-navy);
  color: var(--v14-cream);
}

.v14-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.48;
  background-image:
    linear-gradient(rgba(198, 163, 90, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198, 163, 90, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent 4%, #000 48%, transparent 98%);
}

.v14-hero::after {
  content: "";
  position: absolute;
  width: min(52vw, 760px);
  aspect-ratio: 1;
  right: -12vw;
  bottom: -34%;
  border: 1px solid rgba(198, 163, 90, 0.2);
  transform: rotate(22deg);
}

.v14-hero--media > .v14-hero-media {
  position: absolute;
  inset: 0 0 0 42%;
  z-index: 0;
  margin: 0;
  overflow: hidden;
  clip-path: none;
  background: var(--v14-navy-2);
}

.v14-hero--media > .v14-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, var(--v14-navy) 0%, rgba(8, 21, 39, 0.86) 18%, rgba(8, 21, 39, 0.22) 58%, rgba(8, 21, 39, 0.12) 100%),
    linear-gradient(0deg, rgba(8, 21, 39, 0.82) 0%, transparent 36%, rgba(8, 21, 39, 0.2) 100%);
}

.v14-hero--media > .v14-hero-media::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: -14%;
  width: 22%;
  border-right: 1px solid rgba(198, 163, 90, 0.5);
  background: linear-gradient(90deg, transparent, rgba(198, 163, 90, 0.07));
  transform: skewX(-10deg);
  animation: v14-field-scan 12s ease-in-out infinite;
}

.v14-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: none;
  transform: none;
  animation: none;
  background: var(--v14-navy-2);
}

.v14-hero-media--system img,
.v14-hero-media--employer img,
.v14-hero-media--journey img,
.v14-hero-media--ecosystem img,
.v14-hero-media--services img,
.v14-hero-media--executive img { object-position: center; }

.v14-hero-media figcaption {
  position: absolute;
  right: 34px;
  bottom: 30px;
  z-index: 3;
  width: min(320px, calc(100% - 68px));
  padding-top: 13px;
  border-top: 1px solid rgba(198, 163, 90, 0.55);
  color: rgba(247, 244, 236, 0.72);
  font: 400 11px/1.5 var(--v14-mono);
}

.v14-hero-media figcaption span {
  display: block;
  margin-bottom: 6px;
  color: var(--v14-gold);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.v14-hero-media figcaption strong { font-weight: 400; }
.release-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(145deg, #081527, #102847);
  border: 1px solid rgba(198, 163, 90, 0.28);
}
.release-visual::before {
  content: "";
  position: absolute;
  inset: 10%;
  background:
    linear-gradient(rgba(198, 163, 90, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198, 163, 90, 0.12) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent);
}
.release-visual::after {
  content: "";
  position: absolute;
  top: -70px;
  right: -60px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(198, 163, 90, 0.55);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(198, 163, 90, 0.06), 0 0 0 86px rgba(198, 163, 90, 0.035);
}
.release-visual__line {
  position: absolute;
  left: 11%;
  right: 11%;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--v14-gold), transparent);
}
.release-visual__line:nth-child(1) { top: 31%; }
.release-visual__line:nth-child(2) { top: 55%; }
.release-visual__line:nth-child(3) { top: 76%; }
.release-visual__label {
  position: absolute;
  left: 11%;
  bottom: 10%;
  z-index: 2;
  color: rgba(247, 244, 236, 0.72);
  font: 500 11px/1.4 var(--v14-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.v14-hero-media > .release-visual { position: absolute; inset: 0; min-height: 100%; border: 0; }
.v14-motion-toggle {
  position: absolute; right: 24px; top: 110px; z-index: 4;
  width: 44px; height: 44px; display: grid; place-items: center;
  padding: 0; border: 1px solid var(--v14-gold); border-radius: 0;
  background: #0b1f3a; color: #f7f4ec; cursor: pointer; font-size: 18px;
}
.v14-motion-toggle:focus-visible { outline: 3px solid white; outline-offset: 4px; }
.v14-motion-toggle:disabled { opacity: 0.55; cursor: default; }
.v14-motion-paused *, .v14-motion-paused *::before, .v14-motion-paused *::after {
  animation-play-state: paused !important;
}

.v14-hero--media::before,
.v14-hero--media::after { z-index: 1; }
.v14-hero--media > canvas { z-index: 1; opacity: 0.55; mix-blend-mode: screen; }
.v14-hero--media > .hero-inner,
.v14-hero--media > .v14-hero__inner { z-index: 2; }

.v14-hero--media.hero::before {
  background:
    linear-gradient(90deg, rgba(8, 21, 39, 0.99) 0%, rgba(8, 21, 39, 0.96) 37%, rgba(8, 21, 39, 0.4) 60%, rgba(8, 21, 39, 0.04) 100%),
    linear-gradient(0deg, rgba(8, 21, 39, 0.82), transparent 38%, rgba(8, 21, 39, 0.28));
}

.v14-hero.v14-hero--media::before {
  opacity: 1;
  background-image:
    linear-gradient(90deg, rgba(8, 21, 39, 0.99) 0%, rgba(8, 21, 39, 0.96) 36%, rgba(8, 21, 39, 0.4) 61%, rgba(8, 21, 39, 0.04) 100%),
    linear-gradient(rgba(198, 163, 90, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198, 163, 90, 0.06) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  mask-image: none;
}

@keyframes v14-field-drift {
  from { transform: scale(1.035) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.1%, -0.7%, 0); }
}

@keyframes v14-field-scan {
  0%, 16% { transform: translateX(0) skewX(-10deg); opacity: 0; }
  24% { opacity: 1; }
  70% { opacity: 0.75; }
  82%, 100% { transform: translateX(620%) skewX(-10deg); opacity: 0; }
}

.v14-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 140px 0 90px;
}

.v14-eyebrow {
  margin-bottom: 24px;
  color: var(--v14-gold);
  font: 500 11px/1.3 var(--v14-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.v14-eyebrow::before { content: ""; display: inline-block; width: 18px; height: 1px; margin: 0 10px 3px 0; background: currentColor; }
.v14-hero h1,
.v14-title {
  margin: 0;
  font-family: var(--v14-serif);
  font-weight: 380;
  letter-spacing: 0;
}

.v14-hero h1 { max-width: 930px; font-size: clamp(50px, 7.2vw, 104px); line-height: 0.98; }
.v14-hero h1 em { color: var(--v14-gold); font-weight: 380; }
.v14-hero__lede { max-width: 670px; margin: 32px 0 0; color: rgba(247, 244, 236, 0.72); font-size: 18px; line-height: 1.65; }
.v14-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.v14-title { max-width: 900px; font-size: clamp(42px, 5.4vw, 78px); line-height: 1.04; }
.v14-lede { max-width: 760px; margin: 24px 0 0; color: var(--v14-muted); font-size: 18px; line-height: 1.65; }
.v14-section--dark .v14-lede,
.v14-section--ink .v14-lede { color: rgba(247, 244, 236, 0.66); }

.v14-index { margin-top: 64px; border-top: 1px solid var(--v14-line); }
.v14-section--dark .v14-index,
.v14-section--ink .v14-index { border-top-color: var(--v14-line-dark); }
.v14-row {
  display: grid;
  grid-template-columns: 110px minmax(180px, 0.8fr) minmax(300px, 1.5fr);
  gap: 30px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--v14-line);
}
.v14-section--dark .v14-row,
.v14-section--ink .v14-row { border-bottom-color: var(--v14-line-dark); }
.v14-row__no { color: var(--v14-gold-deep); font: 500 11px/1.4 var(--v14-mono); letter-spacing: 0.1em; text-transform: uppercase; }
.v14-row h3 { margin: 0; font: 440 clamp(25px, 3vw, 38px)/1.12 var(--v14-serif); }
.v14-row p { margin: 0; color: var(--v14-muted); font-size: 15px; line-height: 1.65; }
.v14-section--dark .v14-row p,
.v14-section--ink .v14-row p { color: rgba(247, 244, 236, 0.62); }

/* Calmer editorial scale for the service and premium decision pages. */
.v14-page--compact-editorial .v14-hero h1 {
  max-width: 20ch;
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 1.06;
}
.v14-page--compact-editorial .v14-title {
  max-width: 24ch;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
}
.v14-page--compact-editorial .v14-hero__lede,
.v14-page--compact-editorial .v14-lede { font-size: 17px; }
.v14-page--compact-editorial .v14-row h3 {
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.16;
}
.v14-page--compact-editorial .v14-ledger h3 { font-size: 26px; line-height: 1.12; }
.v14-page--compact-editorial .v14-section { padding: clamp(72px, 8vw, 112px) 0; }

.v14-ledger {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 60px;
  border-top: 1px solid var(--v14-line-dark);
  border-bottom: 1px solid var(--v14-line-dark);
}
.v14-ledger article { min-height: 260px; padding: 30px; border-right: 1px solid var(--v14-line-dark); }
.v14-ledger article:last-child { border-right: 0; }
.v14-ledger span { color: var(--v14-gold); font: 500 10px/1.3 var(--v14-mono); letter-spacing: 0.12em; text-transform: uppercase; }
.v14-ledger h3 { margin: 58px 0 14px; font: 440 30px/1.08 var(--v14-serif); }
.v14-ledger p { margin: 0; color: rgba(247, 244, 236, 0.62); font-size: 14px; line-height: 1.6; }

.v14-boundaries { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 56px; border-top: 1px solid var(--v14-line); }
.v14-playbook { margin-top: 56px; border-top: 1px solid var(--v14-line); }
.v14-playbook__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-left: 1px solid var(--v14-line); }
.v14-playbook__step { min-height: 260px; padding: 26px 24px 28px; border-right: 1px solid var(--v14-line); border-bottom: 1px solid var(--v14-line); }
.v14-playbook__step > span { display: block; color: var(--v14-gold-deep); font: 500 10px/1.3 var(--v14-mono); letter-spacing: .1em; text-transform: uppercase; }
.v14-playbook__step h3 { margin-top: 26px; color: var(--v14-navy); font-family: var(--v14-serif); font-size: 28px; font-weight: 440; line-height: 1.12; }
.v14-playbook__step p { margin-top: 16px; color: var(--v14-muted); font-size: 14px; line-height: 1.7; }
.v14-playbook__questions { display: grid; gap: 7px; margin: 19px 0 0; padding: 0; list-style: none; color: var(--v14-muted); font-size: 12px; line-height: 1.55; }
.v14-playbook__questions li { position: relative; padding-left: 15px; }
.v14-playbook__questions li::before { content: '↗'; position: absolute; left: 0; color: var(--v14-gold-deep); font-family: var(--v14-mono); }
.v14-playbook__step strong { display: block; margin-top: 22px; color: var(--v14-ink); font: 500 11px/1.45 var(--v14-mono); letter-spacing: .04em; }
.v14-playbook__note { max-width: 72ch; margin-top: 20px; color: var(--v14-muted); font-size: 12px; line-height: 1.65; }
.media-story { border-bottom: 1px solid var(--v14-line); }
.media-story__grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr); gap: clamp(30px, 7vw, 96px); align-items: center; }
.media-story__grid figure { margin: 0; }
.media-story__grid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: var(--v14-cream-2);
}
.media-story__grid figcaption { margin-top: 10px; color: var(--v14-muted); font: 500 10px/1.4 var(--v14-mono); letter-spacing: .06em; text-transform: uppercase; }
.media-story__grid h2 { margin-top: 10px; }
.media-story__note { margin-top: 20px; padding-left: 16px; border-left: 2px solid var(--v14-gold); color: var(--v14-muted); font-size: 12px; line-height: 1.65; }
.media-story__grid--reverse figure,
.media-story__grid--reverse > .release-visual { order: 2; }

/* Arbeitgeber-Arbeitsbild: klare Trennung zwischen Titel und Erklärung. */
#arbeitsbild.thesis { border-bottom: 1px solid var(--v14-line); background: var(--v14-cream); }
#arbeitsbild .thesis-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}
#arbeitsbild .thesis-quote {
  margin: 0;
  padding-left: 24px;
  border-left: 2px solid var(--v14-gold);
  color: var(--v14-navy);
  font: italic 400 clamp(24px, 2.4vw, 34px)/1.32 var(--v14-serif);
}
#arbeitsbild .thesis-list { display: grid; margin: 0; border-top: 1px solid var(--v14-line); }
#arbeitsbild .thesis-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--v14-line);
}
#arbeitsbild .thesis-row .n {
  padding-top: 2px;
  color: var(--v14-gold-deep);
  font: 500 12px/1.4 var(--v14-mono);
  letter-spacing: .08em;
}
#arbeitsbild .thesis-row b {
  display: block;
  margin: 0 0 8px;
  color: var(--v14-navy);
  font-size: 16px;
  line-height: 1.35;
}
#arbeitsbild .thesis-row .d {
  display: block;
  max-width: 58ch;
  color: var(--v14-muted);
  font-size: 14px;
  line-height: 1.65;
}
.media-pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(18px, 3vw, 34px); margin-top: 42px; }
.media-pair figure { margin: 0; }
.media-pair img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: var(--v14-cream-2); }
.media-pair figcaption { margin-top: 10px; color: var(--v14-muted); font: 500 10px/1.4 var(--v14-mono); letter-spacing: .06em; text-transform: uppercase; }
.media-pair__note { max-width: 72ch; margin-top: 20px; padding-left: 16px; border-left: 2px solid var(--v14-gold); color: var(--v14-muted); font-size: 12px; line-height: 1.65; }
.secondary-motion { border-bottom: 1px solid var(--v14-line); background: var(--v14-cream-2); }
.secondary-motion__grid { display: grid; grid-template-columns: minmax(280px, .84fr) minmax(0, 1.16fr); gap: clamp(30px, 7vw, 96px); align-items: center; }
.secondary-motion__copy .section-title { max-width: 18ch; }
.secondary-motion__media { margin: 0; overflow: hidden; background: var(--v14-navy); border: 1px solid rgba(8, 21, 39, .16); }
.secondary-motion__media video { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.secondary-motion__media figcaption { display: flex; justify-content: space-between; gap: 16px; padding: 11px 14px; color: rgba(247, 244, 236, .65); font: 500 10px/1.4 var(--v14-mono); letter-spacing: .06em; text-transform: uppercase; }
.secondary-motion__note { margin-top: 20px; padding-left: 16px; border-left: 2px solid var(--v14-gold); color: var(--v14-muted); font-size: 12px; line-height: 1.65; }
.v14-boundaries div { padding: 23px 0; border-bottom: 1px solid var(--v14-line); font: 500 12px/1.4 var(--v14-mono); letter-spacing: 0.04em; text-transform: uppercase; }
.v14-boundaries div:nth-child(odd) { padding-right: 28px; border-right: 1px solid var(--v14-line); }
.v14-boundaries div:nth-child(even) { padding-left: 28px; }
.v14-boundaries strong { display: block; margin-top: 7px; color: var(--v14-muted); font: 400 14px/1.55 var(--v14-sans); text-transform: none; letter-spacing: 0; }

.home-router {
  background: var(--v14-navy);
  color: var(--v14-cream);
}

.home-router__head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 70px;
  align-items: end;
}

.home-router .section-title { color: var(--v14-cream); }
.home-router .section-lede { color: rgba(247, 244, 236, 0.68); }

.home-routes {
  margin-top: 62px;
  border-top: 1px solid var(--v14-line-dark);
}

.home-route {
  display: grid;
  grid-template-columns: 74px minmax(180px, 0.72fr) minmax(280px, 1.28fr) 42px;
  gap: 24px;
  align-items: center;
  min-height: 98px;
  padding: 22px 0;
  border-bottom: 1px solid var(--v14-line-dark);
  color: inherit;
  text-decoration: none;
  transition: background-color 0.25s ease, padding 0.25s ease;
}

.home-route__no {
  color: var(--v14-gold);
  font: 500 11px/1 var(--v14-mono);
  letter-spacing: 0.08em;
}

.home-route__label {
  color: var(--v14-cream);
  font: 400 28px/1.05 var(--v14-serif);
}

.home-route__question {
  color: rgba(247, 244, 236, 0.62);
  font: 400 15px/1.55 var(--v14-sans);
}

.home-route__arrow {
  color: var(--v14-gold);
  font: 300 30px/1 var(--v14-sans);
  text-align: right;
  transition: transform 0.25s ease;
}

.home-route:hover,
.home-route:focus-visible {
  padding-left: 12px;
  padding-right: 12px;
  background: rgba(247, 244, 236, 0.035);
}

.home-route:hover .home-route__arrow,
.home-route:focus-visible .home-route__arrow { transform: translate(3px, -3px); }

.v14-legal-hero {
  padding: 154px 0 84px;
  background: var(--v14-navy);
  color: var(--v14-cream);
  border-bottom: 1px solid var(--v14-line-dark);
}

.v14-legal-hero__grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.62fr) minmax(0, 1.38fr);
  gap: 72px;
  align-items: start;
}

.v14-legal-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--v14-cream);
  font: 440 74px/0.98 var(--v14-serif);
}

.v14-legal-hero p {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(247, 244, 236, 0.68);
  font-size: 17px;
  line-height: 1.7;
}

.v14-legal-meta {
  margin-top: 34px;
  color: var(--v14-gold);
  font: 500 10px/1.5 var(--v14-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.v14-legal-section {
  padding: 96px 0 116px;
  background: var(--v14-cream);
  color: var(--v14-ink);
}

.v14-legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 780px);
  gap: clamp(54px, 8vw, 110px);
  justify-content: start;
  align-items: start;
}

.v14-legal-index {
  position: sticky;
  top: 98px;
  border-top: 1px solid var(--v14-line);
}

.v14-legal-index__title {
  padding: 17px 0 13px;
  color: var(--v14-muted);
  font: 500 10px/1.4 var(--v14-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v14-legal-index a {
  display: grid;
  grid-template-columns: 31px 1fr;
  gap: 8px;
  padding: 11px 0;
  border-top: 1px solid var(--v14-line);
  color: var(--v14-ink);
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
}

.v14-legal-index a:last-of-type { border-bottom: 1px solid var(--v14-line); }
.v14-legal-index a:hover,
.v14-legal-index a:focus-visible { color: var(--v14-gold-deep); }
.v14-legal-index a span { color: var(--v14-gold-deep); font: 500 9px/1.7 var(--v14-mono); }

.v14-legal-note {
  margin-top: 28px;
  padding-left: 16px;
  border-left: 2px solid var(--v14-gold);
  color: var(--v14-muted);
  font-size: 12px;
  line-height: 1.65;
}

.v14-legal-note strong {
  display: block;
  margin-bottom: 7px;
  color: var(--v14-ink);
  font: 500 9px/1.4 var(--v14-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v14-legal-body article {
  scroll-margin-top: 104px;
  padding: 0 0 54px;
  margin: 0 0 54px;
  border-bottom: 1px solid var(--v14-line);
}

.v14-legal-body article:last-child { margin-bottom: 0; }

.v14-legal-kicker {
  margin-bottom: 17px;
  color: var(--v14-gold-deep);
  font: 500 10px/1.4 var(--v14-mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.v14-legal-body h2 {
  max-width: 700px;
  margin: 0 0 22px;
  color: var(--v14-navy);
  font: 440 40px/1.12 var(--v14-serif);
}

.v14-legal-body p,
.v14-legal-body address {
  max-width: 72ch;
  margin: 0 0 18px;
  color: rgba(26, 29, 33, 0.72);
  font: 400 15px/1.75 var(--v14-sans);
}

.v14-legal-body address { font-style: normal; }
.v14-legal-body a { color: var(--v14-navy); text-underline-offset: 3px; }
.v14-legal-body code { color: var(--v14-navy); font: 500 0.9em/1.5 var(--v14-mono); overflow-wrap: anywhere; }

.v14-legal-warning {
  max-width: 70ch;
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 2px solid var(--v14-gold);
  background: rgba(198, 163, 90, 0.08);
  color: rgba(26, 29, 33, 0.72);
  font-size: 13px;
  line-height: 1.7;
}

.v14-cta { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 40px; align-items: end; }
.v14-cta .v14-title { max-width: 760px; }

.v14-page footer {
  padding: 48px 0 36px;
  background: #17191b;
  color: var(--v14-cream);
  font-family: var(--v14-mono);
}
.v14-page .footer-top { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-bottom: 28px; border-bottom: 1px solid rgba(247, 244, 236, 0.12); }
.v14-page .footer-brand img { width: 112px; }
.v14-page .footer-links { display: flex; flex-wrap: wrap; gap: 22px; }
.v14-page .footer-links a { color: rgba(247, 244, 236, 0.62); font-size: 10px; letter-spacing: 0.08em; text-decoration: none; text-transform: uppercase; }
.v14-page .footer-links a:hover,
.v14-page .footer-links a.active { color: var(--v14-gold); }
.v14-page .footer-bottom { display: grid; gap: 8px; padding-top: 22px; color: rgba(247, 244, 236, 0.4); font-size: 9px; line-height: 1.55; }

@media (max-width: 1100px) {
  .nav-toggle { display: block; }
  .topbar .topnav {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    background: rgba(8, 21, 39, 0.98);
    border-bottom: 1px solid transparent;
    transition: max-height 0.3s ease, border-color 0.3s ease;
  }
  .topbar.is-open .topnav { max-height: 520px; border-bottom-color: var(--v14-line-dark); }
  .topbar .topnav a { padding: 15px 28px; border-top: 1px solid rgba(247, 244, 236, 0.08); }
  .topnav a.active::after,
  .topnav a[aria-current="page"]::after { display: none; }
  .v14-ledger { grid-template-columns: 1fr; }
  .v14-ledger article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--v14-line-dark); }
  .v14-ledger article:last-child { border-bottom: 0; }
  .v14-ledger h3 { margin-top: 28px; }
  .v14-cta { grid-template-columns: 1fr; align-items: start; }
  .home-router__head { grid-template-columns: 1fr; gap: 26px; }
  .home-route { grid-template-columns: 58px minmax(150px, 0.8fr) minmax(220px, 1.2fr) 34px; gap: 18px; }
  .v14-legal-hero__grid { grid-template-columns: 1fr; gap: 28px; }
  .v14-legal-hero h1 { font-size: 58px; }
  .v14-legal-body h2 { font-size: 34px; }
  .v14-legal-layout { grid-template-columns: 1fr; gap: 62px; }
  .v14-legal-index { position: static; }
  .v14-hero--media > .v14-hero-media { inset: 0; clip-path: none; opacity: 0.85; }
  .v14-hero--media > .v14-hero-media::before {
    background: linear-gradient(0deg, rgba(8, 21, 39, 0.98) 0%, rgba(8, 21, 39, 0.82) 60%, rgba(8, 21, 39, 0.62) 100%);
  }
  .v14-hero-media figcaption { display: none; }
}

@media (max-width: 720px) {
  .topbar { padding: 14px 20px; }
  .v14-wrap,
  .v14-hero__inner { width: min(100% - 40px, 1180px); }
  .v14-hero { min-height: 760px; }
  .v14-hero__inner { padding: 116px 0 74px; }
  .v14-hero h1 {
    max-width: 100%;
    font-size: clamp(40px, 12vw, 56px);
    overflow-wrap: anywhere;
  }
  .v14-hero__lede,
  .v14-lede { font-size: 16px; }
  .v14-section { padding: 82px 0; }
  .v14-row { grid-template-columns: 62px minmax(0, 1fr); gap: 18px; }
  .v14-row h3 { overflow-wrap: anywhere; hyphens: auto; }
  .v14-row p { grid-column: 2; }
  .v14-boundaries { grid-template-columns: 1fr; }
  .v14-playbook__grid { grid-template-columns: 1fr; }
  .v14-playbook__step { min-height: 0; border-right: 0; }
  .media-story__grid { grid-template-columns: 1fr; gap: 34px; }
  .media-story__grid--reverse figure,
  .media-story__grid--reverse > .release-visual { order: 0; }
  #arbeitsbild .thesis-grid { grid-template-columns: 1fr; gap: 36px; }
  #arbeitsbild .thesis-row { grid-template-columns: 34px minmax(0, 1fr); gap: 14px; padding: 19px 0; }
  .media-pair { grid-template-columns: 1fr; }
  .secondary-motion__grid { grid-template-columns: 1fr; }
  .secondary-motion__media figcaption { flex-direction: column; gap: 4px; }
  .v14-boundaries div:nth-child(odd),
  .v14-boundaries div:nth-child(even) { padding-left: 0; padding-right: 0; border-right: 0; }
  .home-routes { margin-top: 42px; }
  .home-route {
    grid-template-columns: 42px minmax(0, 1fr) 30px;
    gap: 14px;
    min-height: 0;
    padding: 21px 0;
  }
  .home-route__label { font-size: 24px; }
  .home-route__question { grid-column: 2 / 4; padding-right: 18px; }
  .home-route__arrow { grid-column: 3; grid-row: 1; font-size: 26px; }
  .home-route:hover,
  .home-route:focus-visible { padding-left: 8px; padding-right: 8px; }
  .v14-legal-hero { padding: 118px 0 68px; }
  .v14-legal-hero h1 { font-size: 33px; overflow-wrap: normal; }
  .v14-legal-hero p { font-size: 15px; }
  .v14-legal-section { padding: 70px 0 90px; }
  .v14-legal-index a { padding: 12px 0; }
  .v14-legal-body article { padding-bottom: 42px; margin-bottom: 42px; }
  .v14-legal-body h2 { font-size: 29px; }
  .contact-form { grid-template-columns: 1fr; padding: 22px; }
  .finalcta .contact-form { width: 100%; }
  .contact-form .field-wide,
  .contact-form .form-consent,
  .contact-form .form-status,
  .contact-form .form-actions { grid-column: auto; }
  .footer-top { align-items: flex-start !important; flex-direction: column; }

  .v14-page--compact-editorial .v14-hero { min-height: 660px; }
  .v14-page--compact-editorial .v14-hero__inner { padding: 108px 0 64px; }
  .v14-page--compact-editorial .v14-hero h1 {
    font-size: clamp(30px, 7.4vw, 36px);
    line-height: 1.1;
  }
  .v14-page--compact-editorial .v14-title {
    max-width: 26ch;
    font-size: 27px;
    line-height: 1.17;
  }
  .v14-page--compact-editorial .v14-hero__lede,
  .v14-page--compact-editorial .v14-lede { font-size: 15.5px; line-height: 1.62; }
  .v14-page--compact-editorial .v14-section { padding: 64px 0; }
  .v14-page--compact-editorial .v14-row h3 { font-size: 22px; line-height: 1.18; }
  .v14-page--compact-editorial .v14-ledger h3 { font-size: 24px; }
}

/* Shared editorial scale for both V14 page templates. */
.v14-hero--media h1 {
  max-width: 21ch;
  font-size: 60px;
  line-height: 1.1;
  letter-spacing: 0;
  overflow-wrap: normal;
  hyphens: manual;
}
.v14-legal-hero h1 { font-size: 48px; line-height: 1.12; }
.topbar .brand { flex-shrink: 0; }
.topbar .brand img { height: 54px; width: auto; }
.footer-brand img, .v14-page .footer-brand img { height: 46px; width: auto; }
.v14-hero--media .hero-sub,
.v14-hero--media .v14-hero__lede { max-width: 60ch; font-size: 18px; line-height: 1.65; }
.contact-form fieldset { display: contents; }
.contact-form button:disabled { cursor: not-allowed; opacity: 0.55; }
.form-status.is-error { color: #f0b5ad; }
@media (max-width: 1100px) {
  .v14-hero--media h1 { font-size: 48px; }
  .topbar .topnav { visibility: hidden; }
  .topbar.is-open .topnav { visibility: visible; }
}
@media (max-width: 720px) {
  .v14-hero--media h1 { font-size: 36px; max-width: 23ch; }
  .v14-title { font-size: 32px; line-height: 1.15; hyphens: auto; overflow-wrap: anywhere; }
  .v14-row { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .v14-row p { grid-column: 1; }
  .v14-row h3 { font-size: 26px; }
  .v14-legal-hero h1 { font-size: 30px; }
  .topbar .brand img { height: 42px; }
  .v14-hero--media .hero-sub,
  .v14-hero--media .v14-hero__lede { font-size: 16px; }
  .v14-hero--media { min-height: 620px; overflow: clip; }
}
@media (max-width: 360px) {
  .v14-hero--media h1 { font-size: 32px; }
  .v14-legal-hero h1 { font-size: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .v14-hero-media img { transform: none; }
}
