/* ===== Webfont: Montserrat selbst gehostet (Variable Font 400-800, latin) =====
   FOUT-Fix: font-display swap + <link rel="preload"> in den Seiten + metrisch
   an Montserrat angepasster Arial-Fallback (fontpie) — kein Springen beim Laden. */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/fonts/montserrat-var.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat Fallback';
  font-style: normal;
  src: local('Arial');
  ascent-override: 87.85%;
  descent-override: 22.78%;
  line-gap-override: 0%;
  size-adjust: 110.19%;
}
/* ============================================================
   PMB.GG — Styles
   Farben: NUR --bg und --accent sind bestätigt.
   Alle mit "PLATZHALTER" markierten Werte werden durch die
   Hex-Codes des Users ersetzt — nicht final!
   ============================================================ */

:root {
  /* Bestätigt — Planänderung 10.06.2026: Farbschema LILA */
  --bg: #050714;
  --accent: #BF00FF;

  /* Bestätigt aus Figma (10.06.2026) */
  --headline-text: #FFFFFF;
  --h1-grad-a: #FFFFFF;          /* Headline-Gradient Start */
  --h1-grad-b: #CC91FF;          /* Headline-Gradient Ende (bestätigt lila) */
  --text-copy: #C8C8C8;          /* Fließtext (bestätigt) */
  --btn-grad-a: #A703DE;         /* Button-Gradient Start (0%, bestätigt) */
  --btn-grad-b: #610099;         /* Button-Gradient Ende (100%, bestätigt) */

  /* PLATZHALTER — warten auf Hex-Codes */
  --btn-light-bg: #FFFFFF;       /* PLATZHALTER: "Über uns" Hintergrund */
  --btn-light-bg2: #F3E8FF;      /* PLATZHALTER: "Über uns" Verlauf-Ende */
  --btn-light-text: #A21CF0;     /* PLATZHALTER: "Über uns" Schriftfarbe */
  --glow: #BF00FF;               /* bestätigt: Orb lila */
  --nav-text: #FFFFFF;           /* PLATZHALTER: Nav-Links */
  --mark-color: #FFFFFF;         /* PLATZHALTER: H-Logo rechts */

  --font: 'Montserrat', 'Montserrat Fallback', Arial, Helvetica, sans-serif;
  --ease: cubic-bezier(.4, 0, .2, 1);

  /* Design-Rahmen: Layout ist auf Full HD (1920px) ausgelegt.
     Auf groesseren Monitoren wird zentriert, links/rechts laeuft
     der Hintergrund als gleichfarbige Streifen weiter. */
  --frame-max: 1920px;
  --content-max: 1920px;  /* bestätigt: Contentbereich = 1920px breit */

  /* Sektions-Überschriften (bestätigt): Montserrat ExtraBold 80px,
     Gradient diagonal links oben -> rechts unten, FFFFFF -> BABABA */
  --section-title-size: clamp(44px, calc(80 / 1920 * 100vw), 80px);
  --section-title-weight: 800;
  --section-grad-a: #FFFFFF;
  --section-grad-b: #BABABA;

  /* Typografie — bestätigt: H1 Montserrat Bold, Copy 22px Regular */
  --h1-weight: 700;              /* bestätigt: Bold */
  --copy-size: 22px;             /* bestätigt */
  --copy-weight: 400;            /* bestätigt: Regular */
  --btn-weight: 700;
  --btn-header-size: 16px;
  --btn-header-height: 44px;     /* bestätigt: 210x44 */
  --h1-size: clamp(38px, calc(64 / 1920 * 100vw), 64px);  /* bestätigt: 64px */
  /* PLATZHALTER — exakte Figma-Werte fehlen noch */
  --logo-size: 26px;             /* PLATZHALTER */
  --logo-weight: 800;            /* PLATZHALTER */
  --nav-size: 15px;              /* PLATZHALTER */
  --nav-weight: 600;             /* PLATZHALTER */
  --btn-size: 15px;              /* PLATZHALTER */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* Markierfarbe auf der gesamten Seite */
::selection { background: #CC91FF; color: #050714; }
::-moz-selection { background: #CC91FF; color: #050714; }

html {
  scroll-behavior: smooth;
  /* Scrollleisten-Breite immer reservieren — sonst verschiebt sich der
     fixierte Header auf Seiten ohne Scrollbalken (z.B. /karriere/) */
  scrollbar-gutter: stable;
  /* Canvas hinter der Seite IMMER dunkel — verhindert weisses Aufblitzen
     beim Seitenwechsel, bevor body/CSS gerendert sind */
  background: var(--bg);
  color-scheme: dark;
}

/* ============ Flüssige Seitenübergänge ============ */
/* Primär: Soft-Navigation in main.js (Body-Tausch per fetch, wie Mythic/Astro
   ClientRouter) — der Browser laedt die Seite NIE komplett neu.
   @view-transition bleibt als Fallback fuer harte Navigationen. */
@view-transition { navigation: auto; }
/* Waehrend der Ueberblendung dunkler Grund statt Browser-Weiss */
::view-transition { background-color: #050714; }
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: .3s;
  animation-timing-function: cubic-bezier(.4, 0, .2, 1);
}
/* Header bleibt beim Übergang stehen statt mitzublenden */
.site-header { view-transition-name: site-header; }
::view-transition-old(site-header),
::view-transition-new(site-header) { animation: none; }

/* Fallback für Browser ohne View Transitions (z.B. Firefox): sanftes Einblenden */
@supports not (view-transition-name: root) {
  body { animation: pageFadeIn .35s ease; }
}
@keyframes pageFadeIn { from { opacity: 0; } }

body {
  background: var(--bg);
  color: var(--headline-text);
  font-family: var(--font);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ============ Header ============ */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  /* Headerzeile vertikal auf ~54px Mitte wie im Design (32 + 44/2) */
  padding: 32px 0;
  transition: background-color .3s var(--ease), padding .3s var(--ease), box-shadow .3s var(--ease);
}

.site-header.scrolled {
  background: rgba(5, 7, 20, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .35);
}

.header-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: var(--logo-size);
  font-weight: var(--logo-weight);
  letter-spacing: .5px;
  color: var(--headline-text);
  text-decoration: none;
  transition: transform .3s var(--ease);
}
.logo:hover { transform: scale(1.05); }

.main-nav {
  display: flex;
  gap: 38px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* Nav-Link mit wachsendem Unterstrich (von der Mitte) */
/* 1:1 Mythic (framer-motion whileHover/whileTap): der GANZE Link skaliert —
   Wort und Unterstrich zusammen — mit federnder Kurve, beim Klick kurz auf .95 */
.nav-link {
  position: relative;
  display: inline-block; /* sonst wirkt transform nicht */
  color: var(--nav-text);
  text-decoration: none;
  font-size: var(--nav-size);
  font-weight: var(--nav-weight);
  padding: 4px 0;
  /* Rückweg (Hover verlassen): weich auslaufende Kurve OHNE Überschwingen —
     gleitet fließend zurück (die Feder-Kurve würde rückwärts unter die
     Normalgröße tauchen und zurückschnappen, Standard-Ease wirkt zu hart) */
  transition: color .2s var(--ease), transform .45s cubic-bezier(.22, 1, .36, 1);
}
.nav-link:hover {
  transform: scale(1.05);
  /* Hinweg: federnd wie bisher (Mythic-Spring) — Kurve/Intensität unverändert */
  transition: color .2s var(--ease), transform .3s cubic-bezier(.34, 1.56, .64, 1);
}
.nav-link:active { transform: scale(.95); }
.nav-link span { display: inline-block; }
.nav-underline {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
  transform: scaleX(0);
  transition: transform .3s var(--ease);
}
.nav-link:hover .nav-underline { transform: scaleX(1); }

/* ============ Buttons ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  /* Einheitliche Hoehe fuer ALLE Buttons = "Anfrage schicken" (44px) */
  height: var(--btn-header-height);
  line-height: 1;
  border-radius: 999px;
  text-decoration: none;
  font-weight: var(--btn-weight);
  font-family: var(--font);
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background-color .3s var(--ease), filter .3s var(--ease);
}

/* Header-Button: Pill mit Pfeil + Aufhell-Flash */
.btn-header {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, var(--btn-grad-a), var(--btn-grad-b));
  color: #fff;
  font-size: var(--btn-header-size);
  font-weight: 700; /* bestätigt: Montserrat Bold */
  padding: 0 22px;
}
.btn-header .btn-label,
.btn-header .btn-arrow { position: relative; z-index: 2; }
.btn-header .btn-arrow { transition: transform .3s var(--ease); }
.btn-header:hover .btn-arrow { transform: translateX(4px); }
.btn-header .btn-flash {
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  transition: opacity .3s var(--ease);
  z-index: 1;
}
.btn-header:hover .btn-flash { opacity: .2; }
/* 1:1 Mythic Header-Pill: nur Aufhellen (weisses Overlay 20%) + Pfeil-Slide,
   kein Scale — Container 200ms, Pfeil 300ms */
.btn-header { transition-duration: .2s; }

/* Primärer CTA: Pill mit Lila-Gradient.
   1:1 Mythic: beim Hovern wird der VERLAUF selbst dunkler (purple-600 -> 700)
   statt eines brightness-Filters — der Text bleibt strahlend weiss.
   Umsetzung: dunklerer Verlauf liegt als ::after darueber und blendet ein. */
.btn-primary {
  position: relative;
  isolation: isolate;
  background: none;
  color: #fff;
  text-transform: uppercase;
  font-size: var(--btn-size);
  letter-spacing: .5px;
  padding: 0 26px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
}
.btn-primary::before,
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}
.btn-primary::before {
  z-index: -2;
  background: linear-gradient(90deg, var(--btn-grad-a), var(--btn-grad-b));
}
.btn-primary::after {
  z-index: -1;
  background: linear-gradient(90deg, #8C02BB, #4C0078);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .4), 0 8px 10px -6px rgba(0, 0, 0, .35);
}
.btn-primary:hover::after { opacity: 1; }

/* Heller CTA: "Über uns" — gleiche Technik, hellerer Verlauf dunkelt sanft nach */
.btn-light {
  position: relative;
  isolation: isolate;
  background: none;
  color: var(--btn-light-text);
  text-transform: uppercase;
  font-size: var(--btn-size);
  letter-spacing: .5px;
  padding: 0 44px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
}
.btn-light::before,
.btn-light::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}
.btn-light::before {
  z-index: -2;
  background: linear-gradient(115deg, var(--btn-light-bg), var(--btn-light-bg2));
}
.btn-light::after {
  z-index: -1;
  background: linear-gradient(115deg, #F4EAFF, #E7D1FF);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.btn-light:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .4), 0 8px 10px -6px rgba(0, 0, 0, .35);
}
.btn-light:hover::after { opacity: 1; }

/* ============ Hero ============ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 80px;
}

/* Orb 1:1 nach Design: Kreis ~1500px, Zentrum ~150px ueber der Oberkante,
   sichtbarer Auslauf bis ~540px Tiefe und ~1380px Breite */
.hero-glow {
  position: absolute;
  top: -900px;
  left: 50%;
  transform: translateX(-50%);
  width: 1500px;
  height: 1500px;
  background: radial-gradient(circle at center,
      rgba(191, 0, 255, .55) 0%,
      rgba(191, 0, 255, .28) 35%,
      rgba(191, 0, 255, .10) 62%,
      transparent 90%);
  filter: blur(50px);
  pointer-events: none;
  animation: glowBreathe 9s ease-in-out infinite;
}

@keyframes glowBreathe {
  0%, 100% { opacity: .85; }
  50% { opacity: .65; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
  /* Text leicht rechts vom Logo (~110px Versatz wie im Design) */
  padding: 0 clamp(24px, calc(220 / 1920 * 100vw), 220px)
           0 clamp(24px, calc(150 / 1920 * 100vw), 150px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-headline {
  font-size: var(--h1-size);
  font-weight: var(--h1-weight);
  line-height: 1.18;
}
/* Gradient pro Zeile: jede Zeile ist ein Block ueber die volle Breite,
   kurze Zeilen sampeln daher nur den linken (weissen) Teil des Verlaufs —
   ergibt exakt das Figma-Bild und bleibt mit den Animationen kompatibel */
.hero-headline .line {
  display: block;
  /* Umbrueche exakt wie im Design — Zeilen brechen nie automatisch */
  white-space: nowrap;
  background: linear-gradient(95deg, var(--h1-grad-a) 0%, var(--h1-grad-b) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-headline em { font-style: normal; }

.hero-copy {
  margin-top: 28px;
  /* Umbrueche exakt wie im Design (br-Tags), kein Auto-Umbruch auf Desktop */
  white-space: nowrap;
  max-width: 760px;
  font-size: var(--copy-size);
  font-weight: var(--copy-weight);
  line-height: 1.55;
  color: var(--text-copy);
}

/* Buttons mittig unter dem Hero-Content wie im Design */
.hero-buttons {
  position: relative;
  z-index: 2;
  margin-top: 72px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px;
}

/* H-Logo rechts */
.hero-mark {
  display: flex;
  justify-content: center;
  color: var(--mark-color);
}
.h-mark {
  /* aus Screenshot gemessen: ~254px im 1920er-Raster */
  width: clamp(180px, calc(300 / 1920 * 100vw), 300px);
  height: auto;
  filter: drop-shadow(0 22px 55px rgba(0, 0, 0, .5));
}

@keyframes markFloat {
  0%   { transform: translateY(0) rotate(0deg); }
  50%  { transform: translateY(-20px) rotate(1.8deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

/* Scroll-Indikator: dezente Maus-Pill mit wanderndem Punkt */
.scroll-indicator {
  position: absolute;
  bottom: 34px;
  left: 50%;
  margin-left: -15px;
  z-index: 2;
  width: 30px;
  height: 52px;
  border-radius: 999px;
  border: 1.5px solid rgba(204, 145, 255, .35);
  background: rgba(255, 255, 255, .02);
  /* rein dekorativ — nicht anklickbar */
  pointer-events: none;
}
.scroll-indicator::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  margin-left: -2px;
  width: 4px;
  height: 9px;
  border-radius: 4px;
  background: #CC91FF;
  animation: scrollDot 2.2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%   { opacity: 0; transform: translateY(0); }
  20%  { opacity: 1; }
  60%  { opacity: 1; }
  85%, 100% { opacity: 0; transform: translateY(20px); }
}

/* Zentrierte Button-Reihe unter den Creator-Karten */
.talents-cta {
  margin-top: 90px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px;
}

/* Folgesektion: HARTER Schnitt vom Lila zurueck zu #050714 (kein Verlauf) */
.section-dark {
  background: var(--bg);
  min-height: 70vh;
  padding: 80px 0 120px;
}

/* Nur Startseite: Sektion exakt eine Bildschirmhoehe — Inhalt mittig,
   Grenze zum Talents-Lila direkt oberhalb, Grenze zur Kontakt-Farbe
   direkt unterhalb des Bildschirms */
.arbeit-home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 40px 0;
}
.arbeit-home .arbeit-inner { width: 100%; }

.arbeit-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(24px, calc(220 / 1920 * 100vw), 220px);
}

.section-dark .section-title {
  text-align: center;
  margin-bottom: 36px;
}

/* bestätigt: Montserrat SemiBold 25, dunkleres Lila */
.arbeit-subline {
  text-align: center;
  font-size: clamp(18px, calc(25 / 1920 * 100vw), 25px);
  font-weight: 600;
  color: #A703DE;
  margin-bottom: 28px;
}

/* Einleitungstext ueber den Boxen: Regular 22 */
.arbeit-copy {
  max-width: 980px;
  margin: 0 auto 70px;
  text-align: center;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-copy);
}
/* Links im Fliesstext (z.B. karriere@pmb.gg): Hover-Farbwechsel wie ueberall —
   normales Schriftgewicht, damit die Adresse in der zweiten Zeile bleibt */
.arbeit-copy a {
  color: #BF00FF;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s var(--ease);
}
.arbeit-copy a:hover { color: #CC91FF; }

/* Service-Boxen (Style nach OTK-Vorlage) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* Animation 1:1 wie Mythic "What we do": Gradient hellt auf + Schatten
   waechst (300ms), kein Lift/Scale. Aufhellen via Overlay, damit der
   Verlauf weich ueberblendet. */
.service-card {
  position: relative;
  background: linear-gradient(to bottom right, rgba(167, 3, 222, .10), rgba(97, 0, 153, .12));
  border-radius: 10px;
  padding: 44px 28px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .30), 0 2px 4px -2px rgba(0, 0, 0, .25);
  transition: box-shadow .3s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(to bottom right, rgba(167, 3, 222, .22), rgba(97, 0, 153, .26));
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .35), 0 4px 6px -4px rgba(0, 0, 0, .3);
}
.service-card > * { position: relative; z-index: 1; }

.service-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(180deg, #A703DE, #610099);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}
/* Mythic: Icon waechst leicht beim Hovern ueber die Karte (scale-110) */
.service-card:hover .service-icon { transform: scale(1.1); }
.service-icon svg { width: 26px; height: 26px; }

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  line-height: 1.45;
  max-width: 300px;
}

/* Kontakt-Sektion: normale Standardhintergrundfarbe (User-Änderung,
   vorher Diagonal-Verlauf) */
/* Grenze zum Footer bewusst weiter oben: kein erzwungenes 90vh,
   weniger Platz unter dem Formular */
.section-diagonal {
  background: var(--bg);
  padding: 100px 0 60px;
}
/* Nur /kontakt/-Seite: Footer ein Stueck weiter unten */
.section-diagonal.page-top { padding-bottom: 130px; }
/* Nur Startseite: Kontakt wieder mit dem Diagonal-Verlauf */
.kontakt-gradient {
  background: linear-gradient(to top right, #001533 0%, #140028 100%);
}

.kontakt-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(24px, calc(220 / 1920 * 100vw), 220px);
}

.section-diagonal .section-title {
  text-align: center;
  margin-bottom: 60px;
}

/* ============ Kontaktformular ============ */

/* Formular links (schmal), Kontakt-Karten rechts */
.kontakt-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 480px) minmax(0, 560px);
  justify-content: center;
  gap: 60px;
  /* beide Spalten gleich hoch — enden buendig */
  align-items: stretch;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  height: 100%;
}
/* Nachrichtenfeld waechst mit, damit das Formular buendig endet */
.contact-form .form-field:has(textarea) { flex: 1; }
.contact-form .form-field:has(textarea) textarea { flex: 1; height: 100%; }
.field-full { grid-column: 1 / -1; }

.form-field { display: flex; flex-direction: column; gap: 8px; }

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: #C8C8C8;
  letter-spacing: .3px;
}

.contact-form input,
.contact-form textarea {
  font-family: var(--font);
  font-size: 15px;
  color: #ffffff;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  padding: 14px 18px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #777F93; }
.contact-form input:hover,
.contact-form textarea:hover { border-color: rgba(255, 255, 255, .25); }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #BF00FF;
  box-shadow: 0 0 0 3px rgba(191, 0, 255, .18);
  background: rgba(255, 255, 255, .07);
}

.contact-form textarea {
  resize: vertical;
  min-height: 170px;
}

/* Consent-Checkbox (Nutzungsbedingungen / Datenschutz) */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-copy);
  cursor: pointer;
}
.form-consent input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #BF00FF;
  cursor: pointer;
}
.form-consent a {
  color: #BF00FF;
  text-decoration: none;
}
.form-consent a:hover { text-decoration: underline; }

.form-submit {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.contact-form button { border: 0; }

/* Honeypot (unsichtbar fuer Menschen) */
.contact-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* Sende-Status */
.form-msg { font-size: 13px; font-weight: 600; color: #FF8A8A; text-align: center; min-height: 18px; }
.form-success {
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-copy);
  padding: 50px 20px;
  border: 1px solid rgba(191, 0, 255, .35);
  border-radius: 14px;
  background: rgba(191, 0, 255, .07);
}
.form-success b { color: #CC91FF; font-size: 19px; }

/* Kontakt-Karten rechts neben dem Formular */
.kontakt-cards {
  display: flex;
  flex-direction: column;
  gap: 22px;
  height: 100%;
}
/* Karten verteilen sich auf die volle Hoehe */
.kontakt-card { flex: 1; }

.kontakt-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 14px;
  padding: 24px 28px;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.kontakt-card:hover {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(191, 0, 255, .35);
}
.kontakt-card--highlight { border-color: rgba(191, 0, 255, .45); }

.kontakt-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #BF00FF;
}

.kontakt-name {
  margin-top: 10px;
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
}

.kontakt-mail {
  display: inline-block;
  margin-top: 8px;
  font-size: 15px;
  color: var(--text-copy);
  text-decoration: none;
  transition: color .2s var(--ease);
}
.kontakt-mail:hover { color: #BF00FF; }

.kontakt-meta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  font-size: 15px;
  color: var(--text-copy);
}

.kontakt-socials {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}
.kontakt-socials a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.kontakt-socials svg { width: 18px; height: 18px; }
.kontakt-socials a:hover {
  border-color: #BF00FF;
  color: #BF00FF;
  transform: scale(1.08);
}

/* ============ Footer (Style nach Mythic-Vorlage) ============ */

.site-footer {
  background: var(--bg);
  padding: 90px 0 40px;
  /* Farbige Trennlinie in unserem Lila zwischen Inhalt (z.B. "Kontakt
     aufnehmen") und Footer — volle Breite, dezent leuchtend */
  border-top: 1px solid rgba(191, 0, 255, .75);
  box-shadow: 0 -1px 12px rgba(191, 0, 255, .22);
}

.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(24px, calc(220 / 1920 * 100vw), 220px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 70px;
}

.footer-brand p {
  margin-top: 18px;
  max-width: 320px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-copy);
}

.footer-socials {
  margin-top: 24px;
  display: flex;
  gap: 18px;
}
.footer-socials a {
  color: #8B8FA3;
  display: inline-flex;
  transition: color .2s var(--ease), transform .2s var(--ease);
}
.footer-socials svg { width: 20px; height: 20px; }
.footer-socials a:hover {
  color: #BF00FF;
  transform: scale(1.1);
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
}
.footer-col a {
  display: block;
  /* Klick-/Hover-Flaeche nur so breit wie das Wort selbst —
     nicht die ganze Spaltenbreite daneben */
  width: fit-content;
  font-size: 15px;
  color: var(--text-copy);
  text-decoration: none;
  margin-bottom: 16px;
  transition: color .2s var(--ease);
}
.footer-col a:hover { color: #BF00FF; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 28px;
  font-size: 13px;
  color: #777F93;
}
.footer-bottom p + p { margin-top: 10px; }

/* ============ Sektions-Überschriften ============ */
/* Für alle Sektionen ab "Unsere Talente" abwärts */

.section-title {
  font-size: var(--section-title-size);
  font-weight: var(--section-title-weight);
  line-height: 1.1;
  text-transform: uppercase;
  /* bestätigt: horizontaler Verlauf FFFFFF -> BABABA */
  background: linear-gradient(90deg, var(--section-grad-a) 0%, var(--section-grad-b) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============ Sektion: Unsere Talente ============ */

.talents {
  position: relative;
  /* Einfarbiger, deutlich abgedunkelter Hintergrund fuer die GESAMTE Sektion —
     beginnt ueber der Ueberschrift und endet unter den zwei Buttons (Hardcut) */
  background: #10031B;
  padding: 40px 0 140px;
}

.talents-inner {
  position: relative;
  max-width: var(--content-max);
  margin: 0 auto;
  --talents-pad: clamp(24px, calc(220 / 1920 * 100vw), 220px);
  padding: 0 var(--talents-pad);
}

.talents-grid { position: relative; }

/* Dünne lila Eck-Linien an der 1920er-Contentgrenze:
   oben an erster Reihe (links), unten an letzter Reihe (rechts) —
   funktioniert auch bei nur EINER Reihe. Erst sichtbar, wenn
   Creator geladen sind (sonst kollidieren die Linien). */
.talents-deco {
  position: absolute;
  width: clamp(120px, calc(240 / 1920 * 100vw), 240px);
  height: auto;
  pointer-events: none;
  opacity: 0;
  transition: opacity .6s var(--ease);
}
.talents-deco.show { opacity: 1; }
.deco-tl { top: -30px; left: calc(-1 * var(--talents-pad)); }
.deco-br { bottom: -30px; right: calc(-1 * var(--talents-pad)); }

.talents-title {
  text-align: center;
  margin-bottom: 70px;
}

.talents-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 80px 60px;
}

.talent-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Bild + Name verlinken spaeter auf die einzelne Creator-Seite
   (href wird vom Backend per data-creator gesetzt) */
.talent-photo-link { display: block; border-radius: 50%; }
.talent-name-link {
  color: inherit;
  text-decoration: none;
  transition: color .2s var(--ease);
}
.talent-name-link:hover { color: var(--accent); }

.talent-photo {
  width: clamp(180px, calc(278 / 1920 * 100vw), 278px);
  aspect-ratio: 1;
  border-radius: 50%;
  /* kein heller Hintergrund mehr — der blitzte beim Bild-Zoom als
     pixeliger weisser Ring an der Kreiskante durch */
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #9a9aa6;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.talent-photo svg { width: 45%; height: 45%; margin-top: 10%; }
.talent-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s var(--ease);
}

/* Kreis hat FESTE Groesse — beim Hovern zoomt nur der Inhalt (Bild)
   innerhalb des Kreises (Mythic-Stil, Kreis schneidet ab) */
.talent-photo-link:hover .talent-photo img {
  transform: scale(1.1);
}

.talent-name {
  margin-top: 26px;
  font-size: 36px;            /* bestätigt: Montserrat Bold 36 */
  font-weight: 700;
  letter-spacing: 1px;
  /* immer Caps — Backend kann Namen beliebig liefern */
  text-transform: uppercase;
  color: #ffffff;
}

.talent-badge {
  margin-top: 12px;
  display: inline-block;
  /* bestätigt (lila): 6100C9 -> D043D3 (50%) -> 6100C9 */
  background: linear-gradient(90deg, #6100C9 0%, #D043D3 50%, #6100C9 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 6px 20px;
}

.talent-desc {
  margin-top: 14px;
  max-width: 300px;
  font-size: 15px;            /* bestätigt: Montserrat Medium 15 */
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-copy);
  /* Immer exakt Platz fuer 3 Zeilen — Social-Icons aller Karten
     sitzen dadurch auf derselben Hoehe (Panel begrenzt auf 100 Zeichen) */
  min-height: 4.65em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Social-Media-Icons unter der Beschreibung */
/* Social-Icons unter den Startseiten-Bildern: gleicher purer Look
   wie auf der Talents-Seite (kleine weisse Icons, Hover hell-lila) */
.talent-socials {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 18px;
}
.talent-socials a {
  color: #ffffff;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: transform .2s var(--ease), color .2s var(--ease);
}
.talent-socials svg {
  width: 18px;
  height: 18px;
}
.talent-socials a:hover {
  color: #CC91FF;
  transform: scale(1.15);
}

/* Kanal-Zahlen (kommen spaeter aus dem internen Panel, data-field je Kanal):
   beim Hovern ueber das Profilbild faedeln sie nacheinander ein */
.social-count {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  min-height: 15px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
/* Trigger: Hover irgendwo auf der Card (Bild, Name, Badge, Text, Icons —
   die ganze Card wirkt wie eine unsichtbare Box) */
.talent-card:hover .social-count {
  opacity: 1;
  transform: translateY(0);
}
/* Staffelung: nur im Hover-Zustand verzoegern, Ausblenden sofort */
.talent-card:hover .talent-socials a:nth-child(2) .social-count { transition-delay: .08s; }
.talent-card:hover .talent-socials a:nth-child(3) .social-count { transition-delay: .16s; }
.talent-card:hover .talent-socials a:nth-child(4) .social-count { transition-delay: .24s; }
.talent-card:hover .talent-socials a:nth-child(5) .social-count { transition-delay: .32s; }

/* ============ Creator-Detailseite ============ */

.creator-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(24px, calc(220 / 1920 * 100vw), 220px);
}

/* Zurueck-Button zur Uebersicht */
.btn-back {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .18);
  color: #C8C8C8;
  font-size: 14px;
  padding: 0 22px;
}
.btn-back .btn-arrow-left { transition: transform .3s var(--ease); }
.btn-back:hover {
  border-color: #BF00FF;
  color: #ffffff;
}
.btn-back:hover .btn-arrow-left { transform: translateX(-4px); }

.creator-layout {
  margin-top: 44px;
  display: grid;
  grid-template-columns: minmax(0, 440px) 1fr;
  gap: 70px;
  /* Foto-Spalte streckt sich — Bild schliesst buendig mit der
     untersten Kanal-Zeile ab */
  align-items: stretch;
}

.creator-photo { display: flex; }
.creator-photo img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  border-radius: 24px;
}

/* Gesamtreichweite: mittig unter Bild + Kanälen — gross und prominent,
   Beschriftung hier immer sichtbar (kein Hover noetig) */
.creator-reach-row {
  display: flex;
  justify-content: center;
  margin-top: 72px;
}
.creator-reach-row .creator-reach {
  margin-top: 0;
  padding: 14px 38px;
  font-size: 14px;
  box-shadow: 0 14px 36px rgba(97, 0, 153, .35);
}
.creator-reach-row .creator-reach b {
  font-size: clamp(20px, calc(26 / 1920 * 100vw), 26px);
}
.creator-reach-row .creator-reach .reach-hover {
  max-width: 260px;
  opacity: 1;
  margin-left: 14px;
  font-size: 12px;
}
@media (max-width: 560px) {
  .creator-reach-row { margin-top: 30px; }
  .creator-reach-row .creator-reach { padding: 12px 22px; flex-wrap: wrap; justify-content: center; row-gap: 2px; }
  .creator-reach-row .creator-reach b { font-size: 19px; }
}

.creator-info h1 {
  font-size: clamp(32px, calc(44 / 1920 * 100vw), 44px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
}

/* Reichweiten-Badge: zeigt nur die Follower —
   "Gesamtreichweite" faehrt erst beim Hovern aus */
.creator-reach {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  background: linear-gradient(90deg, #6100C9 0%, #D043D3 50%, #6100C9 100%);
  border-radius: 999px;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
  cursor: default;
}
.creator-reach b { color: #ffffff; font-weight: 800; font-size: 15px; letter-spacing: 0; }
.creator-reach .reach-hover {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 11px;
  transition: max-width .35s var(--ease), opacity .25s var(--ease), margin-left .35s var(--ease);
  margin-left: 0;
}
.creator-reach:hover .reach-hover {
  max-width: 200px;
  opacity: 1;
  margin-left: 10px;
}

.creator-bio {
  margin-top: 18px;
  max-width: 680px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-copy);
  /* Kurz-Beschreibung: maximal 2 Zeilen */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Hintergrund-Verlauf nur auf der Creator-Detailseite,
   blendet 200ms nach Aufruf ein */
.creator-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  /* Figma-Verlauf: unten Blau #000B1B -> oben #0A0038; der Footer (eigene
     Hintergrundfarbe) schneidet wie auf den anderen Seiten hart ab */
  background: linear-gradient(to top, #000B1B 0%, #0A0038 100%);
  opacity: 0;
  transition: opacity .7s var(--ease);
  pointer-events: none;
}
.creator-bg.on { opacity: 1; }
/* Auf der Creator-Seite müssen Body UND Inhalts-Sektion durchsichtig sein —
   sonst verdeckt ihr opaker Hintergrund die fixierte Verlaufs-Ebene (z-index:-1)
   dahinter. Das <html>-Canvas bleibt dunkel (--bg) -> kein Weiss-Blitzen.
   (body bekam beim Soft-Nav-Umbau einen festen --bg-Hintergrund, der den
   Verlauf wieder verdeckt hat — deshalb hier explizit zurücknehmen.) */
body.creatorpage { background: transparent; }
.creatorpage .talents-page { background: transparent; }

/* Tags unter dem Namen */
.creator-tags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.creator-tags span {
  --tc: #BF00FF;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--tc);
  border: 1px solid color-mix(in srgb, var(--tc) 55%, transparent);
  background: color-mix(in srgb, var(--tc) 12%, transparent);
  border-radius: 999px;
  padding: 6px 16px;
}

/* Langer Fliesstext weiter unten */
.creator-longtext {
  max-width: 980px;
  margin: clamp(110px, 24vh, 320px) auto 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-copy);
  white-space: pre-wrap;
}

/* Medien aus abgeschlossenen Produktplatzierungen */
.creator-placements { margin-top: 90px; }
.creator-placements h2 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #BF00FF;
  text-align: center;
  margin-bottom: 30px;
}
.placement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}
.placement-grid img,
.placement-grid video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 16px;
  background: #000;
  display: block;
}
/* Medien mit Beschriftung darunter — leicht versetzt wie die Talents-Kacheln */
.placement-item { margin: 0; }
.placement-grid .placement-item:nth-child(even) {
  margin-top: clamp(20px, calc(48 / 1920 * 100vw), 48px);
}
.placement-item figcaption {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-copy);
  text-align: center;
}
@media (max-width: 1024px) { .placement-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .placement-grid { grid-template-columns: 1fr; }
  .placement-grid .placement-item:nth-child(even) { margin-top: 0; }
}

/* Kontakt-Block ganz unten auf der Creator-Seite */
.creator-contact {
  margin-top: 110px;
  text-align: center;
}
.creator-contact .section-title { margin-bottom: 18px; }
.creator-contact p {
  font-size: 18px;
  color: var(--text-copy);
  line-height: 1.6;
}
/* Mail-Link: kein Unterstreichen — Farbwechsel wie auf der Kontaktseite */
.creator-contact a {
  color: #BF00FF;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s var(--ease);
}
.creator-contact a:hover { color: #CC91FF; }

/* Weitere Bilder unter dem Creator-Profil */
.creator-gallery {
  max-width: var(--content-max);
  margin: 130px auto 0;
  padding: 0 clamp(24px, calc(220 / 1920 * 100vw), 220px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: start;
}
/* Hochformat wie das Profilbild + leicht versetzt wie die Talents-Kacheln */
.creator-gallery img {
  width: 100%;
  aspect-ratio: 5 / 7;
  object-fit: cover;
  border-radius: 14px;
  cursor: zoom-in;
  transition: transform .3s var(--ease);
}
.creator-gallery img:hover { transform: scale(1.04); }
.creator-gallery img:nth-child(even) {
  margin-top: clamp(24px, calc(54 / 1920 * 100vw), 54px);
}
@media (max-width: 1024px) { .creator-gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) {
  .creator-gallery { grid-template-columns: repeat(2, 1fr); }
  .creator-gallery img:nth-child(even) { margin-top: 0; }
}

/* Bild-Lightbox (Klick zum Vergrößern) — Galerie + Placements */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(20px, 5vw, 70px);
  background: rgba(3, 4, 12, .9); backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none; transition: opacity .25s var(--ease);
  cursor: zoom-out;
}
.lightbox.on { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 100%; max-height: 100%;
  object-fit: contain; border-radius: 14px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .6);
  transform: scale(.96); transition: transform .25s var(--ease);
}
.lightbox.on img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 22px; right: 26px;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25); background: rgba(255, 255, 255, .08);
  color: #fff; font-size: 24px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s var(--ease);
}
.lightbox-close:hover { background: rgba(255, 255, 255, .18); }
.creator-placements .placement-grid img { cursor: zoom-in; }

/* Plattform-Statistiken: Icon (klickbar) + Follower / Views / Likes */
.creator-stats {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat-row {
  display: grid;
  grid-template-columns: 60px 1fr 1fr 1fr;
  gap: 18px;
  align-items: center;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 14px 20px;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.stat-row:hover {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(191, 0, 255, .35);
}

.stat-platform {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.stat-platform svg { width: 19px; height: 19px; fill: currentColor; }
.stat-platform:hover {
  border-color: #BF00FF;
  color: #BF00FF;
  transform: scale(1.08);
}

.stat-value {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}
.stat-label {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: #777F93;
}

/* Twitch/Kick: nur Follower + CCV */
.stat-row.ccv { grid-template-columns: 60px 1fr 1fr; }

@media (max-width: 1024px) {
  .creator-layout { grid-template-columns: 1fr; gap: 44px; }
  /* einspaltig: Bild wieder im festen 4:5-Format statt Streckung */
  .creator-photo img { height: auto; min-height: 0; aspect-ratio: 4 / 5; }
  /* Stats mobil: Icon oben, darunter pro Wert eine Zeile —
     Label links, Zahl rechts (statt gequetschter Spalten) */
  .stat-row, .stat-row.ccv { display: block; padding: 14px 18px 6px; }
  .stat-row .stat-platform { width: 38px; height: 38px; margin-bottom: 8px; }
  .stat-row > div {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 9px 0;
    border-top: 1px solid rgba(255, 255, 255, .07);
  }
  .stat-row .stat-value { font-size: 16px; }
  .stat-row .stat-label { margin-top: 0; }
}

/* ============ Meilensteine (Unsere Arbeit) ============ */
/* Stil nach Mythic-Portfolio: gesplittete Karte, Text + Mediengrid (1-4),
   abwechselnd links/rechts. Inhalte kommen spaeter aus dem Backend. */

.milestones-block { margin-top: 130px; }
.milestones-block .section-title { margin-bottom: 60px; }
/* /arbeit/: Seite startet direkt mit der Meilenstein-Sektion */
.arbeit-inner > .milestones-block:first-child { margin-top: 0; }

.milestones-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.milestone {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(to bottom right, rgba(167, 3, 222, .08), rgba(97, 0, 153, .10));
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .30);
}
/* abwechselnd: Text links / rechts */
.milestone:nth-child(even) .milestone-text { order: 2; }

.milestone-text {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.milestone-date {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #BF00FF;
}
.milestone-text h3 {
  font-size: 30px;
  font-weight: 700;
  color: #CC91FF;
  line-height: 1.25;
}
.milestone-text p,
.milestone-body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-copy);
}
.milestone-body a { color: #BF00FF; }
.milestone-body b, .milestone-body strong { color: #ffffff; }
.milestone-body p + p { margin-top: 12px; }
.milestone-body ul, .milestone-body ol { margin: 12px 0 12px 20px; }
.milestone-body li { margin-bottom: 6px; }

.milestone-media {
  display: grid;
  gap: 10px;
  padding: 10px;
  min-height: 380px;
}
.milestone-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  min-height: 0;
}
.milestone-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  min-height: 0;
  background: #000;
}
.milestone.no-media { grid-template-columns: 1fr; }
.milestone-media[data-count="2"] { grid-template-rows: 1fr 1fr; }
.milestone-media[data-count="3"] {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1.4fr 1fr;
}
.milestone-media[data-count="3"] img:first-child { grid-column: 1 / -1; }
.milestone-media[data-count="4"] {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.milestones-empty {
  text-align: center;
  color: #777F93;
  font-size: 16px;
  line-height: 1.6;
  padding: 70px 24px;
  border: 1px dashed rgba(255, 255, 255, .15);
  border-radius: 14px;
}

/* Meilenstein-Extras: Kategorie-Pill, Creator-Chips, Link-Button */
.milestone-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.milestone-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #CC91FF;
  border: 1px solid rgba(191, 0, 255, .4);
  background: rgba(191, 0, 255, .1);
  border-radius: 999px;
  padding: 4px 12px;
}
.milestone-creators {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.mc-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .04);
  border-radius: 999px;
  padding: 5px 14px;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.mc-chip img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: -9px;
}
.mc-chip:hover {
  border-color: rgba(191, 0, 255, .5);
  background: rgba(191, 0, 255, .12);
}
.milestone-cta {
  margin-top: 8px;
  align-self: flex-start;
  padding: 0 26px;
}

/* ============ Stellenportal (/karriere/) ============ */

.jobs-intro { margin-bottom: 56px; }
.jobs-gone { margin-bottom: 10px; color: #FF8A8A; }

.jobs-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.job-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 30px 32px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .09);
  text-decoration: none;
  transition: border-color .25s var(--ease), background-color .25s var(--ease), transform .25s var(--ease);
}
.job-card:hover {
  border-color: rgba(191, 0, 255, .45);
  background: rgba(255, 255, 255, .05);
  transform: translateY(-3px);
}
.job-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.job-pill {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #CC91FF;
  border: 1px solid rgba(191, 0, 255, .4);
  background: rgba(191, 0, 255, .1);
  border-radius: 999px;
  padding: 5px 12px;
}
.job-pill.alt {
  color: #C8C8C8;
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .05);
}
.job-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}
.job-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-copy);
}
.job-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #BF00FF;
  transition: color .2s var(--ease), gap .2s var(--ease);
}
.job-card:hover .job-more { color: #CC91FF; gap: 12px; }

/* Stellen-Detailseite */
.job-detail { max-width: 880px; margin: 34px auto 0; }
.job-detail .job-title {
  margin-top: 18px;
  font-size: clamp(30px, calc(48 / 1920 * 100vw), 48px);
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.15;
}
.job-teaser {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.6;
  color: #CC91FF;
  font-weight: 600;
}
.job-body {
  margin-top: 26px;
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text-copy);
}
.job-body h3 { color: #CC91FF; font-size: 20px; margin: 28px 0 10px; }
.job-body ul, .job-body ol { margin: 12px 0 12px 22px; }
.job-body li { margin-bottom: 8px; }
.job-body a { color: #BF00FF; }
.job-body b, .job-body strong { color: #ffffff; }

.job-apply { max-width: 640px; margin: 80px auto 0; }
.job-apply .job-apply-title {
  display: block;
  text-align: center;
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 36px;
}

@media (max-width: 900px) {
  .jobs-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .job-card { padding: 24px 22px; }
  .job-card h3 { font-size: 20px; }
  .job-detail { margin-top: 24px; }
  .job-apply { margin-top: 60px; }
  .milestone-cta { width: 100%; }
}

/* ============ /talents Seite ============ */

.talents-page {
  background: var(--bg);
  min-height: 100vh;
  padding: 170px 0 120px;
}

.talents-page-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(24px, calc(220 / 1920 * 100vw), 220px);
}

.talents-page-title {
  text-align: center;
}

/* Suchzeile: Pill mit Gradient-Rand */
.talent-search {
  position: relative;
  max-width: 540px;
  margin: 54px auto 80px;
  padding: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #A703DE, #CC91FF);
}
.talent-search input {
  width: 100%;
  border: 0;
  outline: none;
  border-radius: 999px;
  background: var(--bg);
  color: #ffffff;
  font-family: var(--font);
  font-size: 15px;
  padding: 14px 56px 14px 24px;
}
.talent-search input::placeholder { color: #777F93; }
.talent-search input:focus { background: #0A0820; }
.talent-search .search-icon {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #CC91FF;
  pointer-events: none;
}

/* Creator-Kacheln: immer 4 pro Reihe */
.creator-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
/* Leicht versetzte Anordnung wie bei loaded.gg:
   jede 2. Kachel rutscht ein Stueck nach unten */
.creator-tiles .creator-tile:nth-child(even) {
  margin-top: clamp(28px, calc(64 / 1920 * 100vw), 64px);
}

.creator-tile {
  position: relative;
  display: block;
  aspect-ratio: 5 / 7;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  background: #110D1F;
  cursor: pointer;
}
.tile-socials a {
  color: #ffffff;
  display: inline-flex;
  transition: color .2s var(--ease), transform .2s var(--ease);
}
.tile-socials a:hover { color: #CC91FF; transform: scale(1.15); }
.creator-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s var(--ease);
}
.creator-tile:hover img { transform: scale(1.08); }

.tile-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 70px 18px 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .72) 78%);
}
.tile-name {
  display: block;
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
}
.tile-socials {
  margin-top: 10px;
  display: flex;
  gap: 12px;
  color: #ffffff;
}
.tile-socials svg { width: 16px; height: 16px; fill: currentColor; }

/* AOS-Stil von loaded.gg: fade-up 100px, 400ms ease, 100ms Delay,
   jede Kachel einzeln beim Reinscrollen */
.fade-up-on-scroll {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity .4s ease .1s, transform .4s ease .1s;
}
.fade-up-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}
.fade-down-on-scroll {
  opacity: 0;
  transform: translateY(-60px);
  transition: opacity .5s ease .1s, transform .5s ease .1s;
}
.fade-down-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}
.fade-left-on-scroll {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity .5s ease .1s, transform .5s ease .1s;
}
.fade-left-on-scroll.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* Eigenstaendige Unterseiten: Platz unter dem fixierten Header */
.page-top { padding-top: 170px; }

/* Nicht scrollbare Seite (z.B. /karriere/): Inhalt mittig,
   Footer im Bild, kein Scrollen moeglich. Nur auf Desktop —
   auf Mobile wuerde overflow:hidden Inhalte abschneiden. */
@media (min-width: 1025px) {
  .no-scroll-page {
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .no-scroll-page main {
    flex: 1;
    display: flex;
    min-height: 0;
  }
  .no-scroll-page .talents-page {
    flex: 1;
    min-height: 0;
    display: flex;
    padding: 150px 0 24px;
  }
  /* Ueberschrift oben wie auf den anderen Seiten,
     nur der Text zentriert sich im Restraum */
  .no-scroll-page .talents-page-inner {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
  .no-scroll-page .talents-page-inner .arbeit-copy { margin: auto; }
  .no-scroll-page .site-footer { padding: 36px 0 24px; }
  .no-scroll-page .footer-grid { padding-bottom: 28px; gap: 30px; }
  .no-scroll-page .footer-col a { margin-bottom: 10px; }
  .no-scroll-page .footer-col h4 { margin-bottom: 14px; }
}

/* ============ Ladekreise ============ */
.spinner {
  width: 34px;
  height: 34px;
  border: 3px solid rgba(204, 145, 255, .2);
  border-top-color: #BF00FF;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
/* Platzhalter waehrend Karten/Kacheln aus der API laden */
.grid-loading {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding: 70px 0;
}
/* Soft-Navigation: kleines Rad oben rechts, erscheint erst ab ~150ms Ladezeit */
.nav-loading {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 200;
  width: 26px;
  height: 26px;
  border-width: 3px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s var(--ease);
}
html.navloading .nav-loading { opacity: 1; }
/* Mini-Rad im Senden-Button */
.btn-spin {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, .35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

/* ============ Einblend-Animationen ============ */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  animation: fadeUp .8s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}

/* Von links hereingleiten */
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  animation: fadeLeft .8s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes fadeLeft {
  to { opacity: 1; transform: translateX(0); }
}

/* Von OBEN herabgleiten (z.B. Creator-Foto — Seite waechst von oben nach unten auf) */
.reveal-down {
  opacity: 0;
  transform: translateY(-32px);
  animation: fadeDown .8s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes fadeDown {
  to { opacity: 1; transform: translateY(0); }
}

/* Federnd aufpoppen (z.B. Reichweiten-Badge) */
.reveal-pop {
  opacity: 0;
  transform: scale(.8);
  animation: popIn .55s cubic-bezier(.34, 1.56, .64, 1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes popIn {
  to { opacity: 1; transform: scale(1); }
}

/* Elemente, die erst beim Scrollen einblenden (JS setzt .reveal) */
.reveal-on-scroll { opacity: 0; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-down, .reveal-pop { animation: none; opacity: 1; transform: none; }
  .hero-glow, .h-mark, .scroll-indicator::before { animation: none; }
}

/* ============ Mobile-Menü (Hamburger) ============ */
/* Button + Overlay werden von main.js auf allen Seiten injiziert */

/* Hamburger 1:1 Mythic: schlichtes graues 3-Linien-Icon ohne Box,
   wird beim Oeffnen zum X */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 60;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  border: 0;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  color: #9CA3AF;
  transition: color .2s var(--ease);
}
.nav-toggle:hover { color: #ffffff; }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Menü-Panel 1:1 Mythic: schiebt federnd von RECHTS rein, volle Breite auf
   Phones / max. 384px auf Tablets, Links als linksbuendige Zeilen,
   CTA unter feiner Trennlinie. Logo + X bleiben oben sichtbar (Header). */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  width: 100%;
  overflow-y: auto;
  background: #0A0C1F;
  padding: 104px 24px 32px;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform .45s cubic-bezier(.16, 1, .3, 1), visibility 0s linear .45s;
}
body.menu-open .mobile-menu {
  transform: translateX(0);
  visibility: visible;
  transition: transform .45s cubic-bezier(.16, 1, .3, 1);
  /* dunkelt links daneben ab (sichtbar, wenn das Panel schmaler ist) */
  box-shadow: -30px 0 60px rgba(0, 0, 0, .45), 0 0 0 100vmax rgba(5, 7, 20, .55);
}
@media (min-width: 640px) {
  .mobile-menu {
    max-width: 384px;
    border-left: 1px solid rgba(255, 255, 255, .1);
  }
}
body.menu-open { overflow: hidden; }

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(115, 115, 140, .25);
}
.mobile-menu .nav-link {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 10px;
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.mobile-menu .nav-link:hover { background: rgba(97, 0, 153, .45); }
.mobile-menu .nav-link:active { transform: scale(.97); }
.mobile-menu .nav-underline { display: none; }
.mobile-menu .menu-cta {
  margin-top: 24px;
  width: 100%;
}

/* ============ Responsive ============ */

@media (max-width: 1024px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  /* 1:1 Mythic: unter 1024px nur Logo + Burger — CTA steckt im Menü */
  .site-header .btn-header { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  /* Auf kleineren Screens wieder natuerlich umbrechen */
  .hero-headline .line, .hero-copy { white-space: normal; }
  .talents-grid { grid-template-columns: repeat(2, 1fr); gap: 60px 40px; }
  .talents-deco { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .kontakt-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .creator-tiles { grid-template-columns: repeat(2, 1fr); }
  .milestone { grid-template-columns: 1fr; }
  .milestone:nth-child(even) .milestone-text { order: 0; }
  /* H-Logo unter dem Text statt darueber — Headline bleibt das Erste im Blick */
  .h-mark { width: clamp(140px, 28vw, 220px); }
}

@media (max-width: 768px) {
  :root {
    --copy-size: 18px;
    --section-title-size: clamp(34px, 9.5vw, 44px);
    --h1-size: clamp(27px, 7.6vw, 38px);
  }
  .hero { min-height: 100svh; padding: 120px 0 60px; }
  .hero-glow { width: 900px; height: 900px; top: -560px; filter: blur(40px); }
  .hero-buttons { margin-top: 48px; gap: 16px; }
  .scroll-indicator { display: none; }
  .talents { padding: 30px 0 90px; }
  .talents-title { margin-bottom: 44px; }
  .talents-cta { margin-top: 56px; gap: 16px; }
  .talent-name { font-size: 26px; }
  .arbeit-home { min-height: 0; padding: 70px 0; }
  .section-dark { padding: 60px 0 80px; }
  .arbeit-copy { font-size: 17px; margin-bottom: 44px; }
  .arbeit-subline { margin-bottom: 20px; }
  .section-diagonal { padding: 80px 0 60px; }
  .section-diagonal.page-top { padding-bottom: 90px; }
  .section-diagonal .section-title { margin-bottom: 40px; }
  .milestones-block { margin-top: 80px; }
  .milestone-text { padding: 30px 24px; }
  .milestone-text h3 { font-size: 24px; }
  .milestone-media { min-height: 240px; }
  .milestones-list { gap: 36px; }
  .site-footer { padding: 60px 0 30px; }
  .footer-grid { padding-bottom: 40px; }
  .talents-page { padding: 140px 0 90px; }
  .talent-search { margin: 36px auto 50px; }
  .page-top { padding-top: 140px; }
  .creator-layout { margin-top: 30px; gap: 34px; }
  .creator-photo { max-width: 420px; margin: 0 auto; width: 100%; }
  .creator-longtext { margin-top: 80px; font-size: 16px; }
  .creator-placements { margin-top: 60px; }
  .creator-contact { margin-top: 70px; }
  .creator-gallery { margin-top: 70px; }
}

@media (max-width: 560px) {
  :root {
    --section-title-size: clamp(30px, 8.8vw, 36px);
    --copy-size: 16.5px;
  }
  .header-inner { padding: 0 18px; }
  .logo { font-size: 22px; }
  /* Header kompakter (Mythic: ~80px Hoehe) */
  .site-header { padding: 18px 0; }
  .site-header.scrolled { padding: 12px 0; }
  .mobile-menu { padding-top: 88px; }
  .hero { padding: 110px 0 56px; }
  /* Feste Design-Umbrüche auf kleinen Screens aufheben */
  .hero-copy br.lb { display: none; }
  .hero-copy { margin-top: 20px; }
  .hero-mark { display: none; }
  .hero-inner { gap: 36px; }
  .hero-buttons { margin-top: 40px; }
  .hero-buttons .btn, .talents-cta .btn { width: 100%; }
  .talents-grid { grid-template-columns: 1fr; gap: 56px; }
  .talent-photo { width: 220px; }
  .talent-name { font-size: 24px; margin-top: 20px; }
  .services-grid { grid-template-columns: 1fr; gap: 18px; }
  .service-card { padding: 32px 22px; min-height: 0; gap: 18px; }
  .contact-form { grid-template-columns: 1fr; }
  .kontakt-card { padding: 20px 22px; }
  .form-success { padding: 34px 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  /* Talents-Seite: 2 schmale Kacheln pro Reihe wie bei loaded.gg mobil */
  .creator-tiles { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .creator-tiles .creator-tile:nth-child(even) { margin-top: 18px; }
  .tile-overlay { padding: 44px 12px 12px; }
  .tile-name { font-size: 14px; }
  .tile-socials { margin-top: 7px; gap: 9px; }
  .tile-socials svg { width: 14px; height: 14px; }
  .creator-info h1 { font-size: 26px; }
  .stat-row, .stat-row.ccv { padding: 12px 14px 4px; }
  .stat-row .stat-value { font-size: 15px; }
  .stat-row .stat-label { font-size: 10px; letter-spacing: .6px; }
  .milestone-media { min-height: 200px; }
  .btn-header .btn-label { font-size: 13px; }
}

/* Touch-Geräte: Hover-Infos gibt es nicht — Zahlen direkt zeigen */
@media (hover: none) {
  .talent-card .social-count { opacity: 1; transform: none; }
  .creator-reach .reach-hover { max-width: 200px; opacity: 1; margin-left: 8px; }
}

/* Überschrift über dem Fließtext — wie "Kontaktiere uns" (Verlauf Weiß->Grau), halbe Größe */
.creator-longtext-title {
  max-width: 980px;
  margin: clamp(110px, 24vh, 320px) auto 0;
  text-align: center;
  font-size: clamp(22px, calc(40 / 1920 * 100vw), 40px);
  font-weight: var(--section-title-weight);
  line-height: 1.1;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--section-grad-a) 0%, var(--section-grad-b) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 760px) { .creator-longtext-title { margin-top: 90px; } }
/* ===== Anti-Text-Snap bei Hover-Scale (Nav, Logo, Buttons) =====
   Elemente, die per transform skaliert werden, DAUERHAFT auf einem eigenen
   Compositing-Layer halten (will-change: transform). Ohne das verwirft der
   Browser den Layer am Ende der Hover-Transition, rastert den Text neu aufs
   Pixelraster und der Text "ruckt" sichtbar um Subpixel nach.
   backface-visibility: hidden deckt dasselbe in Safari ab. */
.logo,
.nav-link,
.btn,
.tile-socials a,
.service-icon {
  will-change: transform;
  backface-visibility: hidden;
}
/* ===== Startseite: "Unser Hintergrund" — hebt sich farblich von den
   Nachbar-Sektionen ab (gleiche Familie wie der Kontakt-Verlauf, gespiegelt) ===== */
.background-block {
  background: linear-gradient(to bottom right, #140028 0%, #001533 100%);
  padding: 110px 0 120px;
}
.bgb-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(24px, calc(220 / 1920 * 100vw), 220px);
}
.background-block .section-title { text-align: center; margin-bottom: 64px; }
/* Layout ist fuer Text + 2 Bilder vorbereitet; .no-media = Box mittig, solange keine Bilder da sind */
.bgb-layout { display: grid; grid-template-columns: 1fr 1.05fr; gap: 44px; align-items: center; }
.bgb-layout.no-media { grid-template-columns: 1fr; justify-items: center; }
.bgb-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 18px;
  padding: 40px 44px;
  max-width: 660px;
  font-size: 18px;
  line-height: 1.85;
  color: var(--text-copy);
}
.bgb-card p + p { margin-top: 16px; }
.bgb-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.bgb-imgs img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 14px; }
@media (max-width: 1024px) { .bgb-layout { grid-template-columns: 1fr; } }
@media (max-width: 760px) {
  .background-block { padding: 80px 0 90px; }
  .background-block .section-title { margin-bottom: 40px; }
  .bgb-card { padding: 28px 24px; font-size: 16.5px; }
  .bgb-imgs { gap: 14px; }
}
}
/* ===== Original-Logo (SVG-Dateien, banani550) statt Schriftzug =====
   Header: weißes Emblem ohne Schrift · Footer: farbiges Logo mit weißer Schrift */
.logo { display: inline-flex; align-items: center; }
.logo-mark-img { height: 34px; width: auto; display: block; }
.logo-full-img { height: 30px; width: auto; display: block; }
@media (max-width: 560px) {
  .logo-mark-img { height: 28px; }
  .logo-full-img { height: 24px; }
}
/* Consent-Checkbox der Formulare: gleiche Custom-Box wie im Panel (native
   Checkboxen rendern auf dunklem Grund inkonsistent) */
.form-consent { cursor: pointer; user-select: none; }
.form-consent input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; padding: 0;
  border: 1.5px solid rgba(255, 255, 255, .3);
  border-radius: 5px;
  background: rgba(255, 255, 255, .05);
  display: inline-grid; place-content: center;
  cursor: pointer;
  transition: border-color .15s var(--ease), background .15s var(--ease);
}
.form-consent input[type="checkbox"]::before {
  content: ""; width: 10px; height: 10px;
  transform: scale(0); transition: transform .12s var(--ease);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 82% 2%, 46% 60%);
  background: #fff;
}
.form-consent input[type="checkbox"]:checked { background: linear-gradient(135deg, #A703DE, #610099); border-color: #BF00FF; }
.form-consent input[type="checkbox"]:checked::before { transform: scale(1); }
.form-consent input[type="checkbox"]:hover { border-color: #CC91FF; }
.form-consent input[type="checkbox"]:focus-visible { outline: 2px solid rgba(191, 0, 255, .5); outline-offset: 2px; }