/* ============================================================
   HUSTLED.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', 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;
}

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) */
.nav-link {
  position: relative;
  color: var(--nav-text);
  text-decoration: none;
  font-size: var(--nav-size);
  font-weight: var(--nav-weight);
  padding: 4px 0;
  transition: color .2s var(--ease);
}
.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); }

/* Wort waechst beim Hovern leicht mit (Mythic: scale-105, 200ms) */
.nav-link span {
  display: inline-block;
  transition: transform .2s var(--ease);
}
.nav-link:hover span { transform: scale(1.05); }

/* ============ 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: Orange-Gradient (FF6200 -> 993B00, bestätigt) */
.btn-primary {
  background: linear-gradient(90deg, var(--btn-grad-a), var(--btn-grad-b));
  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);
}
/* Rueckweg verzoegert: Hover reagiert sofort, beim Verlassen wartet die
   Animation kurz, bevor sie zum Ausgangspunkt zurueckgeht */
.btn-primary, .btn-light { transition-delay: .18s; }
.btn-primary:hover, .btn-light:hover { transition-delay: 0s; }

/* Mythic-CTA-Hover: dunklerer Verlauf + scale-105 + shadow-xl, 300ms */
.btn-primary:hover {
  transform: scale(1.05);
  filter: brightness(.86);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .4), 0 8px 10px -6px rgba(0, 0, 0, .35);
}

/* Heller CTA: "Über uns" */
.btn-light {
  background: linear-gradient(115deg, var(--btn-light-bg), var(--btn-light-bg2));
  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:hover {
  transform: scale(1.05);
  filter: brightness(.93);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .4), 0 8px 10px -6px rgba(0, 0, 0, .35);
}

/* ============ 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(150px, calc(254 / 1920 * 100vw), 254px);
  height: auto;
  filter: drop-shadow(0 18px 50px rgba(0, 0, 0, .45));
  animation: markFloat 7s ease-in-out infinite;
}

@keyframes markFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* 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);
}

/* 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; }

/* 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;
}

.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;
  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;
  /* bestätigt: Verlauf zu #3F0048 (26%) — beginnt ab ca. Mitte der ersten
     Creator-Reihe und ist ab Sektionsmitte voll da */
  background: linear-gradient(180deg,
      rgba(63, 0, 72, 0) 0%,
      rgba(63, 0, 72, 0) 15%,
      rgba(63, 0, 72, .26) 50%,
      rgba(63, 0, 72, .26) 100%);
  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 Reihe 1 (links), unten an Reihe 2 (rechts) —
   die Button-Reihe darunter liegt AUSSERHALB der Klammer */
.talents-deco {
  position: absolute;
  width: clamp(120px, calc(240 / 1920 * 100vw), 240px);
  height: auto;
  pointer-events: none;
}
.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);
}

/* Social-Media-Icons unter der Beschreibung */
.talents-grid { --otk-gold: #ffc31f; }

.talent-socials {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.talent-socials a {
  color: #ffffff;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: transform .2s var(--ease);
}
/* Icon sitzt in fester runder Box, damit beim Hovern nichts verspringt.
   Exakt 24px = 1:1 zur viewBox, sonst werden Kanten unscharf/rundlich */
.talent-socials svg {
  width: 24px;
  height: 24px;
  box-sizing: content-box;
  padding: 8px;
  border-radius: 50%;
  background-color: transparent;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
/* Hover wie bei OTK: goldener Kreis, Icon dunkel */
.talent-socials a:hover { transform: scale(1.1); }
.talent-socials a:hover svg {
  background-color: var(--otk-gold);
  color: #121212;
}

/* 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;
  align-items: start;
}

.creator-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
}

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

.creator-bio {
  margin-top: 18px;
  max-width: 680px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-copy);
}

/* 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;
}

@media (max-width: 1024px) {
  .creator-layout { grid-template-columns: 1fr; gap: 44px; }
  .stat-row { grid-template-columns: 60px 1fr; row-gap: 14px; }
}

/* ============ 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 {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-copy);
}

.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[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;
}

/* ============ /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;
}
.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);
}

/* 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; }
}

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

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

/* 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 { animation: none; opacity: 1; transform: none; }
  .hero-glow, .h-mark, .scroll-indicator::before { animation: none; }
}

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

@media (max-width: 1024px) {
  .main-nav { 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; }
  .hero-mark { order: -1; }
  .h-mark { width: clamp(140px, 28vw, 220px); }
}

@media (max-width: 560px) {
  .hero { padding: 120px 0 70px; }
  /* Feste Design-Umbrüche auf kleinen Screens aufheben */
  .hero-copy br.lb { display: none; }
  .talents-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .creator-tiles { grid-template-columns: 1fr; }
  .creator-tiles .creator-tile:nth-child(even) { margin-top: 0; }
  .hero-buttons .btn { width: 100%; }
  .btn-header .btn-label { font-size: 13px; }
  .header-inner { padding: 0 22px; }
}
