@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url("../fonts/jost-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url("../fonts/jost-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 200 500;
  font-display: swap;
  src: url("../fonts/oswald-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 200 500;
  font-display: swap;
  src: url("../fonts/oswald-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --gdm-ink: #10101a;
  --gdm-ink-soft: #3a3a4a;
  --gdm-ink-mute: #6c6c80;
  --gdm-paper: #ffffff;
  --gdm-lavender-100: #eceaf4;
  --gdm-lavender-200: #dcd9e9;
  --gdm-lavender-300: #c7c3dc;
  --gdm-blue-100: #cddaf1;
  --gdm-ultramarine: #1e3c8f;
  --gdm-indigo-700: #33277b;
  --gdm-indigo-900: #221c55;
  --gdm-indigo-950: #171240;
  --gdm-violet-600: #543871;
  --gdm-aubergine-700: #582f4d;
  --gdm-cyan-500: #0fa4c7;
  --text-on-deep: #e6e6f2;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --pad-x: clamp(20px, 4.2vw, 64px);
  --max: 1240px;
  --orb: conic-gradient(
    from 150deg at 62% 34%,
    #cddaf1 0deg,
    #4b7dbb 30deg,
    #134a87 60deg,
    #433863 90deg,
    #582f4d 120deg,
    #4a2b5d 150deg,
    #33277b 180deg,
    #1e3c8f 210deg,
    #0783b9 240deg,
    #7dc8d5 270deg,
    #e2f0eb 300deg,
    #fffffd 330deg,
    #cddaf1 360deg
  );
  --band: linear-gradient(
    96deg,
    #582f4d 0%,
    #543871 22%,
    #33277b 40%,
    #1e3c8f 58%,
    #543871 78%,
    #582f4d 100%
  );
  --band-hover: linear-gradient(96deg, #43233b 0%, #3f2a56 42%, #251c5c 78%, #152b69 100%);
  --text-band: linear-gradient(
    96deg,
    #582f4d 0%,
    #543871 22%,
    #33277b 40%,
    #1e3c8f 58%,
    #0783b9 74%,
    #7dc8d5 88%,
    #582f4d 100%
  );
  --orb-light: radial-gradient(
    circle at 74% 24%,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.62) 18%,
    rgba(255, 255, 255, 0.24) 38%,
    rgba(255, 255, 255, 0) 62%
  );
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--gdm-paper);
  color: var(--gdm-ink);
  font-family: "Jost", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

a {
  color: var(--gdm-ultramarine);
}

a:hover {
  color: var(--gdm-indigo-900);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gdm-cyan-500);
  outline-offset: 2px;
}

::selection {
  background: var(--gdm-blue-100);
  color: var(--gdm-ink);
}

.icon {
  flex: none;
  display: block;
}

@keyframes gdm-orb-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes gdm-marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes gdm-band-drift {
  to {
    background-position: 300% 50%;
  }
}

@keyframes gdm-stroke-hue {
  0% {
    -webkit-text-stroke-color: #582f4d;
  }
  25% {
    -webkit-text-stroke-color: #33277b;
  }
  50% {
    -webkit-text-stroke-color: #1e3c8f;
  }
  75% {
    -webkit-text-stroke-color: #0783b9;
  }
  100% {
    -webkit-text-stroke-color: #582f4d;
  }
}

@keyframes gdm-ink-hue {
  0% {
    color: #10101a;
  }
  30% {
    color: #33277b;
  }
  60% {
    color: #1e3c8f;
  }
  100% {
    color: #10101a;
  }
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.section-label {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gdm-ink-soft);
}

.section-label .n {
  color: var(--gdm-ink-mute);
}

.section-label .rule {
  flex: 1;
  height: 1px;
  background: var(--gdm-lavender-300);
}

.section-label.on-deep {
  color: #fff;
}

.section-label.on-deep .n {
  color: rgba(255, 255, 255, 0.6);
}

.section-label.on-deep .rule {
  background: rgba(255, 255, 255, 0.28);
}

.display {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.018em;
  text-transform: uppercase;
  margin: 0;
}

.lede-grid {
  display: grid;
  grid-template-columns: 1fr minmax(0, 44ch);
  gap: 56px;
  align-items: end;
  margin-top: 40px;
}

.lede-grid p {
  margin: 0;
  color: var(--gdm-ink-soft);
}

.orb {
  border-radius: 50%;
  background: var(--orb);
  animation: gdm-orb-spin 32s linear infinite;
}

.orb::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--orb-light);
}

.orb.small {
  position: relative;
  width: 30px;
  height: 30px;
  flex: none;
  overflow: hidden;
}

.orb.small::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 72% 26%,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.72) 20%,
    rgba(255, 255, 255, 0.28) 42%,
    rgba(255, 255, 255, 0) 66%
  );
}

/* --- Header --- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--gdm-lavender-300);
}

.site-header .bar {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
  color: var(--gdm-ink);
}

.brand:hover {
  color: var(--gdm-indigo-900);
}

.brand-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
  transition: color 220ms var(--ease);
}

.brand:hover .brand-mark {
  background: var(--text-band);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gdm-band-drift 6s linear infinite;
}

.brand-name {
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.06em;
}

.brand-ev {
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: none;
  white-space: nowrap;
}

.nav a,
.nav .current {
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gdm-ink-mute);
  text-decoration: none;
}

.nav a:hover {
  color: var(--gdm-ink);
}

.nav .current {
  color: var(--gdm-ink);
}

.nav a.btn-gdm,
.btn-gdm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--band);
  background-size: 300% 100%;
  background-position: 0% 50%;
  animation: gdm-band-drift 32s linear infinite;
  color: #fff;
  padding: 9px 18px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Jost", system-ui, sans-serif;
}

.nav a.btn-gdm:hover,
.btn-gdm:hover {
  background: var(--band-hover);
  color: #fff;
  animation: none;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gdm-lavender-300);
  border-radius: 2px;
  background: transparent;
  color: var(--gdm-ink);
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle svg {
  display: block;
}

/* --- Hero --- */

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--gdm-lavender-300);
}

.hero canvas,
.teaser canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-orb {
  position: absolute;
  top: -10vw;
  right: -16vw;
  width: min(62vw, 760px);
  height: min(62vw, 760px);
  pointer-events: none;
}

.hero-orb .orb {
  width: 100%;
  height: 100%;
}

.vlabel {
  position: absolute;
  left: calc(var(--pad-x) - 30px);
  top: 44%;
  transform: translateY(-50%);
  max-height: calc(100% - 64px);
  overflow: hidden;
  writing-mode: vertical-rl;
  rotate: 180deg;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--gdm-ink-mute);
}

.hero-inner {
  position: relative;
  padding: 96px var(--pad-x) 88px;
  padding-left: max(var(--pad-x), 72px);
}

.hero-kicker {
  max-width: 26ch;
  font-size: 15px;
  line-height: 1.4;
  color: var(--gdm-ink-soft);
}

.hero h1 {
  margin: 56px 0 0;
  font-size: clamp(2.8rem, 9vw, 8.5rem);
  line-height: 0.9;
  mix-blend-mode: multiply;
}

.hero-lead {
  margin: 32px 0 0;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.45;
  max-width: min(54ch, 46%);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--band);
  background-size: 300% 100%;
  background-position: 0% 50%;
  animation: gdm-band-drift 32s linear infinite;
  color: #fff;
  padding: 15px 28px;
  border-radius: 2px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: box-shadow 220ms var(--ease), letter-spacing 220ms var(--ease), padding 220ms var(--ease);
}

.btn-hero:hover {
  color: #fff;
  animation: gdm-band-drift 6s linear infinite;
  box-shadow: 0 0 0 1px var(--gdm-ink);
  letter-spacing: 0.13em;
  padding: 15px 34px;
}

/* --- Marquee --- */

.marquee {
  overflow: hidden;
  margin-top: 56px;
  padding: 22px 0;
}

.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1.1;
  text-transform: uppercase;
  animation: gdm-marquee 70s linear infinite;
}

.marquee-set {
  display: inline-flex;
  gap: 32px;
  padding-right: 32px;
}

.marquee-item {
  color: var(--gdm-ink);
  transition: color 220ms var(--ease);
}

.marquee-item:hover {
  background: var(--text-band);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gdm-band-drift 6s linear infinite;
}

.marquee-dot {
  opacity: 0.3;
}

/* --- GDM teaser --- */

.teaser-section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.teaser {
  display: block;
  margin-top: 32px;
  padding: 56px;
  background: #fff;
  border: 1px solid var(--gdm-ink);
  border-radius: 3px;
  color: var(--gdm-ink);
  position: relative;
  overflow: hidden;
}

.teaser-edge {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: var(--gdm-ink);
  pointer-events: none;
}

.teaser-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(0, 34ch);
  gap: 56px;
  align-items: end;
  pointer-events: none;
}

.teaser-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  border: 1px solid var(--gdm-ink);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.teaser-date {
  font-size: 13px;
  color: var(--gdm-ink-soft);
  white-space: nowrap;
}

.teaser-code {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 12px;
}

.teaser h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
}

.teaser p {
  margin: 0;
  color: var(--gdm-ink-soft);
}

/* --- Haltung --- */

.haltung {
  position: relative;
  background: var(--gdm-indigo-950);
  color: var(--text-on-deep);
  overflow: hidden;
}

.haltung-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.haltung-orb .orb {
  width: 100%;
  height: 100%;
  opacity: 0.78;
  animation-duration: 22s;
}

.haltung-orb .orb::after {
  background: radial-gradient(
    circle at 74% 24%,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.82) 14%,
    rgba(255, 255, 255, 0.42) 32%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 255, 255, 0) 68%
  );
}

.haltung-inner {
  position: relative;
  z-index: 1;
  padding-top: 104px;
  padding-bottom: 104px;
}

.haltung-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 72px;
  align-items: start;
  margin-top: 40px;
}

.haltung h2 {
  color: #fff;
  font-size: clamp(2.4rem, 5.6vw, 5rem);
}

.haltung-copy {
  padding-top: 8px;
}

.haltung-copy .lead {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.45;
  color: #fff;
}

.haltung-copy p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.78);
}

.haltung-copy p:last-child {
  margin-bottom: 0;
}

/* --- Arbeit --- */

.arbeit {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--gdm-lavender-300);
}

.arbeit-grid-bg {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to right, #eceaf4 0 1px, transparent 1px 44px);
  pointer-events: none;
}

.arbeit-inner {
  position: relative;
  padding-top: 96px;
  padding-bottom: 96px;
}

.arbeit h2,
.reihe h2,
.netzwerk h2 {
  font-size: clamp(2.2rem, 4.8vw, 4rem);
}

.ways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
  border-top: 1px solid var(--gdm-lavender-300);
}

.way {
  padding: 32px;
  border-bottom: 1px solid var(--gdm-lavender-300);
  border-right: 1px solid var(--gdm-lavender-300);
}

.way:nth-child(3n) {
  border-right: none;
  padding-right: 0;
}

.way:nth-child(3n + 1) {
  padding-left: 0;
}

.way:nth-child(n + 4) {
  border-bottom: none;
}

.numeral {
  font-family: "Oswald", sans-serif;
  font-weight: 200;
  font-size: 72px;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px var(--gdm-ink);
  animation: gdm-stroke-hue 24s linear infinite;
}

.way-title {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 26px;
  text-transform: uppercase;
  line-height: 0.95;
  margin-top: 16px;
  animation: gdm-ink-hue 24s linear infinite;
}

.way p {
  margin: 12px 0 0;
  font-size: 15px;
  color: var(--gdm-ink-soft);
}

.way:nth-child(1) .numeral,
.way:nth-child(1) .way-title {
  animation-delay: 0s;
}
.way:nth-child(2) .numeral,
.way:nth-child(2) .way-title {
  animation-delay: -4s;
}
.way:nth-child(3) .numeral,
.way:nth-child(3) .way-title {
  animation-delay: -8s;
}
.way:nth-child(4) .numeral,
.way:nth-child(4) .way-title {
  animation-delay: -20s;
}
.way:nth-child(5) .numeral,
.way:nth-child(5) .way-title {
  animation-delay: -16s;
}
.way:nth-child(6) .numeral,
.way:nth-child(6) .way-title {
  animation-delay: -12s;
}

/* --- Reihe --- */

.reihe {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid var(--gdm-lavender-300);
}

.reihe-inner {
  padding-top: 96px;
  padding-bottom: 96px;
}

.edition-list {
  margin-top: 48px;
  border-bottom: 1px solid var(--gdm-lavender-300);
}

.edition {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: baseline;
  padding: 20px 0;
  border-top: 1px solid var(--gdm-lavender-300);
}

.edition.now {
  grid-template-columns: 120px 1fr auto;
  padding: 20px 8px;
  background: var(--gdm-blue-100);
  color: var(--gdm-indigo-900);
}

.edition-year {
  font-family: "Oswald", sans-serif;
  font-weight: 200;
  font-size: 40px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--gdm-ink);
}

.edition.now .edition-year {
  font-weight: 300;
  color: inherit;
  -webkit-text-stroke: 0;
}

.edition-title {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  text-transform: uppercase;
  line-height: 0.92;
}

.edition.now .edition-title {
  font-weight: 400;
}

.edition-when {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* --- Netzwerk --- */

.netzwerk {
  padding-top: 96px;
  padding-bottom: 96px;
}

.netzwerk .lede-grid {
  grid-template-columns: 1fr minmax(0, 46ch);
  align-items: start;
}

.who {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
  border-top: 1px solid var(--gdm-lavender-300);
}

.who-item {
  padding: 24px;
  border-bottom: 1px solid var(--gdm-lavender-300);
  border-right: 1px solid var(--gdm-lavender-300);
}

.who-item:nth-child(3n) {
  border-right: none;
  padding-right: 0;
}

.who-item:nth-child(3n + 1) {
  padding-left: 0;
}

.who-title {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 22px;
  text-transform: uppercase;
  line-height: 0.95;
}

.who-item p {
  margin: 8px 0 0;
  font-size: 15px;
  color: var(--gdm-ink-soft);
}

/* --- Partner --- */

.partner {
  padding-bottom: 96px;
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 40px;
}

.partner-name {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 26px;
  text-transform: uppercase;
  line-height: 0.95;
}

.partner-copy {
  margin: 16px 0 0;
  color: var(--gdm-ink-soft);
}

.stats {
  display: flex;
  gap: 32px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--gdm-ink);
}

.stat-n {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 40px;
  line-height: 1;
}

.stat-l {
  font-size: 13px;
  color: var(--gdm-ink-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.projects-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gdm-ink-mute);
  margin-bottom: 16px;
}

.projects {
  border-top: 1px solid var(--gdm-lavender-300);
}

.project {
  padding: 14px 0;
  border-bottom: 1px solid var(--gdm-lavender-300);
}

.project strong {
  font-weight: 500;
}

.project span {
  color: var(--gdm-ink-soft);
}

/* --- Mitwirken --- */

.mitwirken {
  position: relative;
  background: var(--band);
  background-size: 300% 100%;
  background-position: 0% 50%;
  animation: gdm-band-drift 32s linear infinite;
  color: #fff;
  overflow: hidden;
}

.mitwirken-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.mitwirken-orb .orb {
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

.mitwirken-orb .orb::after {
  background: radial-gradient(
    circle at 74% 24%,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.5) 18%,
    rgba(255, 255, 255, 0.18) 38%,
    rgba(255, 255, 255, 0) 62%
  );
}

.mitwirken-inner {
  position: relative;
  z-index: 1;
  padding-top: 96px;
  padding-bottom: 96px;
}

.mitwirken .lede-grid {
  grid-template-columns: 1fr minmax(0, 38ch);
}

.mitwirken h2 {
  color: #fff;
  font-size: clamp(2.6rem, 7vw, 6rem);
}

.mitwirken .lede-grid p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.contact-links a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  align-self: flex-start;
  font-weight: 500;
}

.contact-links a:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.fact-l {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.fact-v {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 28px;
  line-height: 1;
  color: #fff;
}

.fact-board {
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
}

/* --- Footer --- */

.site-footer {
  background: var(--gdm-indigo-950);
  color: var(--text-on-deep);
  padding: 72px 0 40px;
}

.site-footer.compact {
  padding: 56px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.footer-claim {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  text-transform: uppercase;
  line-height: 0.95;
  color: #fff;
}

.footer-col h3 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 16px;
  font-family: "Jost", system-ui, sans-serif;
}

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

.footer-col a {
  color: var(--text-on-deep);
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
}

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 72px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer.compact .footer-base {
  margin-top: 0;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-base a {
  color: inherit;
  text-decoration: none;
}

.footer-base a:hover {
  color: #fff;
}

/* --- Legal pages --- */

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--gdm-lavender-300);
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to right, #eceaf4 0 1px, transparent 1px 88px),
    repeating-linear-gradient(to bottom, #f4f3f8 0 1px, transparent 1px 88px);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  padding: 88px var(--pad-x) 64px;
}

.page-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gdm-ink-mute);
}

.page-hero h1 {
  margin: 24px 0 0;
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  line-height: 0.9;
}

.page-hero p {
  margin: 24px 0 0;
  font-size: 20px;
  font-weight: 300;
  max-width: 56ch;
  color: var(--gdm-ink-soft);
}

.legal {
  padding-top: 80px;
  padding-bottom: 96px;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  border-top: 1px solid var(--gdm-ink);
}

.legal-cell {
  padding: 32px 40px 32px 0;
  border-bottom: 1px solid var(--gdm-lavender-300);
  border-right: 1px solid var(--gdm-lavender-300);
}

.legal-cell:nth-child(even) {
  padding: 32px 0 32px 40px;
  border-right: none;
}

.legal-cell h2 {
  font-family: "Jost", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gdm-ink-mute);
  margin: 0 0 14px;
  line-height: 1.4;
}

.legal-cell p {
  margin: 0;
}

.legal-cell p + p {
  margin-top: 8px;
  color: var(--gdm-ink-soft);
}

.legal-cell a {
  text-decoration: none;
  border-bottom: 1px solid var(--gdm-lavender-300);
}

.legal-cell a:hover {
  border-bottom-color: var(--gdm-indigo-900);
}

.haftung {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--gdm-lavender-300);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
}

.haftung h2 {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 22px;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0;
  margin: 0;
}

.haftung p {
  margin: 12px 0 0;
  font-size: 15px;
  color: var(--gdm-ink-soft);
}

.privacy {
  border-top: 1px solid var(--gdm-ink);
}

.privacy-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--gdm-lavender-300);
}

.privacy-n {
  font-family: "Oswald", sans-serif;
  font-weight: 200;
  font-size: 48px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--gdm-ink);
}

.privacy-item h2 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 26px;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0;
}

.privacy-item p {
  margin: 12px 0 0;
  max-width: 70ch;
}

.privacy-item p.muted {
  color: var(--gdm-ink-soft);
}

.privacy-item a {
  text-decoration: none;
  border-bottom: 1px solid var(--gdm-lavender-300);
}

.privacy-item a:hover {
  border-bottom-color: var(--gdm-indigo-900);
}

.privacy-stand {
  margin: 32px 0 0;
  font-size: 13px;
  color: var(--gdm-ink-mute);
}

/* --- Satzung --- */

.satzung {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--gdm-lavender-300);
  background: #fff;
}

.satzung-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to bottom, #f4f3f8 0 1px, transparent 1px 88px);
  pointer-events: none;
}

.satzung-inner {
  position: relative;
  padding-top: 88px;
  padding-bottom: 96px;
}

.satzung h2 {
  font-size: clamp(2.2rem, 4.8vw, 4rem);
}

.paras {
  margin-top: 48px;
  border-top: 1px solid var(--gdm-ink);
}

.paras details {
  border-bottom: 1px solid var(--gdm-lavender-300);
}

.paras summary {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 32px;
  align-items: baseline;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  transition: background 220ms var(--ease);
}

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

.paras summary:hover {
  background: #f4f3f8;
}

.para-n {
  font-family: "Oswald", sans-serif;
  font-weight: 200;
  font-size: 28px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--gdm-ink);
}

.para-t {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 22px;
  text-transform: uppercase;
  line-height: 0.95;
}

.para-body {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 32px;
  padding: 0 0 28px;
}

.para-body > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
  color: var(--gdm-ink-soft);
  max-width: 78ch;
}

.para-body p {
  margin: 0;
}

.para-body .indent {
  padding-left: 22px;
}

/* --- Responsive --- */

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: saturate(140%) blur(14px);
    border-bottom: 1px solid var(--gdm-lavender-300);
    padding: 8px var(--pad-x) 20px;
    white-space: normal;
  }

  .site-header.is-open .nav {
    display: flex;
  }

  .nav a,
  .nav .current {
    padding: 12px 0;
    border-bottom: 1px solid var(--gdm-lavender-200);
  }

  .nav a.btn-gdm,
  .btn-gdm {
    margin-top: 12px;
    align-self: flex-start;
    border-bottom: none;
    padding: 9px 18px;
  }

  .vlabel {
    display: none;
  }

  .hero-inner {
    padding-left: var(--pad-x);
  }

  .hero-lead {
    max-width: 54ch;
  }

  .lede-grid,
  .haltung-grid,
  .teaser-grid,
  .partner-grid,
  .haftung,
  .legal-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .legal-cell,
  .legal-cell:nth-child(even) {
    padding: 28px 0;
    border-right: none;
  }

  .ways,
  .who,
  .facts,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .way,
  .way:nth-child(3n),
  .way:nth-child(3n + 1),
  .who-item,
  .who-item:nth-child(3n),
  .who-item:nth-child(3n + 1) {
    padding: 24px;
  }

  .way:nth-child(odd),
  .who-item:nth-child(odd) {
    padding-left: 0;
    border-right: 1px solid var(--gdm-lavender-300);
  }

  .way:nth-child(even),
  .who-item:nth-child(even) {
    padding-right: 0;
    border-right: none;
  }

  .way:nth-child(n + 4) {
    border-bottom: 1px solid var(--gdm-lavender-300);
  }

  .way:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .teaser {
    padding: 28px;
  }

  .edition,
  .edition.now {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .privacy-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .paras summary,
  .para-body {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .ways,
  .who,
  .facts,
  .footer-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .way,
  .way:nth-child(odd),
  .way:nth-child(even),
  .who-item,
  .who-item:nth-child(odd),
  .who-item:nth-child(even) {
    padding: 24px 0;
    border-right: none;
  }

  .way {
    border-bottom: 1px solid var(--gdm-lavender-300);
  }

  .way:last-child {
    border-bottom: none;
  }

  .footer-base {
    flex-direction: column;
    margin-top: 40px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 16vw, 4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .orb,
  .btn-gdm,
  .btn-hero,
  .marquee-track,
  .mitwirken,
  .numeral,
  .way-title,
  .brand:hover .brand-mark,
  .marquee-item:hover {
    animation: none;
  }
}
