/* Syndicate — Premium Landing (Palette & Motion angelehnt an venox Portfolio) */

:root {
  --black: #0a0a0a;
  --black-soft: #111111;
  --dark: #161616;
  --grey: #2a2a2a;
  --grey-muted: #8a8a8a;
  --white: #fafafa;
  --white-dim: #e5e5e5;
  /* Hellblau — kein Lila */
  --accent: #38bdf8;
  --accent-deep: #0ea5e9;
  --accent-soft: rgba(56, 189, 248, 0.22);
  --accent-glow: rgba(56, 189, 248, 0.35);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --urgency-bar-height: 2.125rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

/* 1:1 wie portfolio/styles.css — ANIMATED GRADIENT BACKGROUND */
.bg-gradient {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--black);
  overflow: hidden;
  pointer-events: none;
}

.bg-gradient::before {
  content: "";
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(ellipse 70% 60% at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 70% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 60%),
    linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 1) 50%, rgba(30, 30, 30, 0.95) 100%);
  animation: gradientMove 18s ease-in-out infinite;
}

.bg-gradient::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.04) 0%, transparent 35%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
  animation: gradientFloat 25s ease-in-out infinite reverse;
}

@keyframes gradientMove {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(3%, -2%) scale(1.03);
  }
  50% {
    transform: translate(-2%, 3%) scale(0.98);
  }
  75% {
    transform: translate(-3%, -1%) scale(1.02);
  }
}

@keyframes gradientFloat {
  0%,
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
  50% {
    opacity: 0.8;
    transform: translate(-5%, 5%);
  }
}

/* Dünne Urgency-Leiste (oben, schwarz) */
.urgency-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #000;
}

.urgency-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: var(--urgency-bar-height);
  padding: 0.32rem clamp(0.85rem, 3vw, 2.25rem);
  box-sizing: border-box;
}

.urgency-bar__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.45);
}

.urgency-bar__text {
  font-family: var(--font-body);
  font-size: clamp(0.62rem, 1.9vw, 0.72rem);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
  text-align: center;
}

/* Hero */
.hero {
  min-height: 100vh;
  padding: calc(var(--urgency-bar-height) + 2.25rem) clamp(1.25rem, 4vw, 3rem) 4rem;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-muted);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 1.25rem;
}

.hero-title-accent {
  background: linear-gradient(120deg, var(--white) 0%, #bae6fd 40%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--white-dim);
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero-lead strong {
  color: var(--white);
  font-weight: 600;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.hero-stat {
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  min-width: 120px;
}

.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--accent);
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--grey-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 4px 24px rgba(255, 255, 255, 0.18);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(255, 255, 255, 0.28);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Schritt 1 — Video-Karte (Referenz-Layout) */
.hero-visual-wrap {
  max-width: 100%;
}

.step-video-card {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.045);
  background: #141414;
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.55),
    0 0 100px rgba(125, 211, 252, 0.07);
}

.step-video-card__header {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.28rem 0.5rem;
  padding: 0.42rem 0.95rem 0.48rem;
  isolation: isolate;
  /* Helles Glas + sehr helles Blau */
  background: linear-gradient(
    135deg,
    rgba(240, 249, 255, 0.78) 0%,
    rgba(224, 242, 254, 0.65) 38%,
    rgba(186, 230, 253, 0.55) 72%,
    rgba(165, 243, 252, 0.48) 100%
  );
  backdrop-filter: blur(20px) saturate(155%);
  -webkit-backdrop-filter: blur(20px) saturate(155%);
  border-bottom: none;
}

/* Oben: ultradünne Haarlinie */
.step-video-card__header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.22) 25%,
    rgba(255, 255, 255, 0.32) 50%,
    rgba(255, 255, 255, 0.22) 75%,
    transparent 100%
  );
  transform: scaleY(0.12);
  transform-origin: top center;
  pointer-events: none;
  z-index: 1;
}

.step-video-card__header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 18%,
    rgba(255, 255, 255, 0.14) 50%,
    rgba(255, 255, 255, 0.08) 82%,
    transparent 100%
  );
  transform: scaleY(0.22);
  transform-origin: bottom center;
  pointer-events: none;
}

.step-video-card__kicker {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.42);
  line-height: 1;
}

.step-video-card__title {
  font-family: var(--font-display);
  font-size: clamp(0.88rem, 2vw, 1.05rem);
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.step-video-card__viewport {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(145deg, #1c1917 0%, #0c0a09 45%, #1a1a1a 100%);
}

.step-video-card__viewport--player .vtc-custom-player {
  position: absolute;
  inset: 0;
  border-radius: 0;
}

.step-video-card__viewport--player .vtc-custom-player video,
.call-card__viewport .vtc-custom-player video {
  object-fit: cover;
}

.step-video-card__pill {
  position: absolute;
  left: 50%;
  bottom: 1.15rem;
  transform: translateX(-50%);
  padding: 0.5rem 1.35rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.45s ease;
  z-index: 3;
}

.step-video-card__viewport--player:has(.custom-player.is-playing) .step-video-card__pill {
  opacity: 0;
}

/* VTC-Style Custom Player (Syndicate) */
.vtc-custom-player {
  position: absolute;
  inset: 0;
  background: #000;
  overflow: hidden;
}

.vtc-custom-player video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  object-fit: contain;
  object-position: center center;
  background: #000;
  cursor: pointer;
}

.custom-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  z-index: 2;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(56, 189, 248, 0.12);
}

.custom-play-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(56, 189, 248, 0.2);
}

.custom-play-btn svg {
  width: 26px;
  height: 26px;
  color: #fff;
  fill: currentColor;
}

.custom-play-btn .icon-pause {
  display: none;
}

.custom-play-btn .icon-play {
  margin-left: 3px;
}

.custom-player.is-playing .custom-play-btn .icon-play {
  display: none;
}

.custom-player.is-playing .custom-play-btn .icon-pause {
  display: block;
}

.custom-player.is-playing .custom-play-btn {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.custom-player:hover .custom-play-btn {
  opacity: 1;
  pointer-events: auto;
}

.custom-player.is-playing:hover .custom-play-btn {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.32);
  opacity: 1;
}

.custom-player.is-playing:hover .custom-play-btn svg {
  color: #fff;
}

.custom-player.controls-hidden .custom-play-btn,
.custom-player.controls-hidden .custom-controls {
  opacity: 0 !important;
  pointer-events: none;
}

.custom-player.controls-hidden {
  cursor: none;
}

.custom-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.88));
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 2;
}

.custom-player:hover .custom-controls,
.custom-player.is-playing .custom-controls {
  opacity: 1;
}

.custom-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.custom-btn:hover {
  color: #fff;
}

.custom-btn svg {
  width: 20px;
  height: 20px;
}

.custom-play-sm .icon-pause {
  display: none;
}

.custom-player.is-playing .custom-play-sm .icon-play {
  display: none;
}

.custom-player.is-playing .custom-play-sm .icon-pause {
  display: block;
}

.custom-time,
.custom-duration {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.82);
  min-width: 34px;
  font-variant-numeric: tabular-nums;
}

.custom-progress {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.custom-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.95), rgba(125, 211, 252, 0.95));
  border-radius: 2px;
  transition: width 0.08s linear;
}

.custom-progress-filled {
  display: none;
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  color: var(--grey-muted);
  font-size: 0.72rem;
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2.2s ease-in-out infinite;
}

.hero-scroll svg {
  width: 22px;
  height: 22px;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* Sections */
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 4vw, 2rem);
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-muted);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.text-dim {
  color: var(--grey-muted);
  font-weight: 500;
}

/* Problem / solution */
.problem-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.ps-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color var(--transition), transform var(--transition);
}

.ps-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
}

.ps-problem {
  border-color: rgba(239, 68, 68, 0.2);
}

.ps-solution {
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 0 40px rgba(56, 189, 248, 0.08);
}

.ps-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--grey-muted);
}

.ps-list {
  list-style: none;
}

.ps-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--white-dim);
}

.ps-list li:last-child {
  margin-bottom: 0;
}

.ps-list svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.ps-problem svg {
  color: #f87171;
}

.ps-solution svg {
  color: #7dd3fc;
}

/* Pillars */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: var(--transition);
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.pillar-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 1.25rem;
}

.pillar-icon svg {
  width: 26px;
  height: 26px;
}

.pillar-tiktok .pillar-icon {
  background: rgba(125, 211, 252, 0.2);
  color: #7dd3fc;
}

.pillar-sales .pillar-icon {
  background: rgba(56, 189, 248, 0.22);
  color: var(--accent);
}

.pillar-scale .pillar-icon {
  background: rgba(14, 165, 233, 0.22);
  color: #38bdf8;
}

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

.pillar-card p {
  font-size: 0.92rem;
  color: var(--grey-muted);
  line-height: 1.65;
}

/* Live Calls — Karten */
.calls-section__head {
  margin-bottom: 2.25rem;
}

.section-head--calls {
  margin-bottom: 0;
}

.calls-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.calls-grid:has(> .call-card:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.call-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.call-card__viewport {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--black-soft);
}

.call-card__viewport .vtc-custom-player {
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.call-card__tag {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 4;
  padding: 0.25rem 0.55rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.call-card__caption {
  font-size: 0.88rem;
  color: var(--grey-muted);
  line-height: 1.45;
  margin: 0;
  padding: 0 0.15rem;
}

@media (max-width: 900px) {
  .calls-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .calls-grid:has(> .call-card:nth-child(2):last-child) {
    grid-template-columns: 1fr;
  }
}

/* Steps */
.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
}

.step-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent);
  line-height: 1;
}

.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.step-body p {
  font-size: 0.92rem;
  color: var(--grey-muted);
}

/* Über mich */
.about-section {
  position: relative;
}

.about-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.about-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  text-align: center;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.05;
}

.about-name__first {
  color: var(--white);
}

.about-name__last {
  color: var(--accent);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}

.about-media {
  min-width: 0;
  width: 100%;
  justify-self: center;
}

.about-photo-frame {
  position: relative;
  width: 100%;
  max-width: min(100%, 400px);
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--black-soft);
  aspect-ratio: 1 / 1;
  min-height: 200px;
  max-height: min(72vw, 440px);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(56, 189, 248, 0.06);
}

.about-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.about-kicker {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.about-text {
  font-size: 0.98rem;
  color: var(--grey-muted);
  line-height: 1.7;
  margin: 0 0 1rem;
}

.about-text strong {
  color: var(--white-dim);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin: 1.5rem 0 1.5rem;
}

.about-stat {
  padding: 0.85rem 0.65rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.about-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}

.about-stat-word {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.about-stat-word.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.about-stat-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.35;
}

.about-cta {
  margin-right: 0.75rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 840px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-photo-frame {
    max-width: min(100%, 360px);
    aspect-ratio: 1 / 1;
  }

  .about-stats {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
}

/* Activity toast (unten links) */
.activity-toast {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 900;
  max-width: min(360px, calc(100vw - 2rem));
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  background: #121212;
  border: 1px solid rgba(56, 189, 248, 0.28);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
  transform: translateX(-120%);
  opacity: 0;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease;
  pointer-events: none;
}

.activity-toast.is-visible {
  transform: translateX(0);
  opacity: 1;
}

.activity-toast__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.activity-toast__body {
  flex: 1;
  min-width: 0;
}

.activity-toast__line1 {
  margin: 0 0 0.35rem;
  font-size: 0.88rem;
  line-height: 1.35;
}

.activity-toast__name {
  color: var(--white);
  font-weight: 700;
}

.activity-toast__loc {
  color: var(--grey-muted);
  font-weight: 500;
}

.activity-toast__msg {
  margin: 0 0 0.4rem;
  font-size: 0.82rem;
  color: var(--white-dim);
  line-height: 1.5;
}

.activity-toast__time {
  margin: 0;
  font-size: 0.72rem;
  color: #5c5c5c;
}

/* FAQ — Premium */
.faq-section--premium {
  position: relative;
  overflow: hidden;
}

.faq-premium-glow {
  pointer-events: none;
  position: absolute;
  width: 70%;
  max-width: 720px;
  height: 320px;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(56, 189, 248, 0.14) 0%, transparent 70%);
  filter: blur(40px);
  opacity: 0.9;
}

.faq-section__head {
  position: relative;
  text-align: center;
  margin-bottom: 2.75rem;
}

.faq-premium-title {
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  letter-spacing: -0.045em;
  margin-top: 0.5rem;
}

.faq-premium-sub {
  max-width: 36rem;
  margin: 1rem auto 0;
  font-size: 0.95rem;
  color: var(--grey-muted);
  line-height: 1.6;
}

.faq-list--premium {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
}

.faq-item {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.09);
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.faq-item.is-open {
  border-color: rgba(56, 189, 248, 0.4);
  background: rgba(56, 189, 248, 0.06);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.1),
    0 20px 50px rgba(0, 0, 0, 0.25);
}

.faq-item--featured {
  border-color: rgba(56, 189, 248, 0.22);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(56, 189, 248, 0.04) 100%);
}

.faq-item--featured.is-open {
  border-color: rgba(56, 189, 248, 0.55);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  padding: 1.15rem 1.3rem;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 600;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-trigger:hover {
  background: rgba(255, 255, 255, 0.04);
}

.faq-trigger--featured {
  padding: 1.25rem 1.35rem;
  font-size: 1.02rem;
}

.faq-q {
  flex: 1 1 220px;
  line-height: 1.4;
}

.faq-badge {
  flex-shrink: 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  color: var(--accent);
  border: 1px solid rgba(56, 189, 248, 0.35);
  background: rgba(56, 189, 248, 0.08);
}

.faq-toggle-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.faq-toggle-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--accent);
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease;
}

.faq-toggle-bar--h {
  width: 11px;
  height: 2px;
}

.faq-toggle-bar--v {
  width: 2px;
  height: 11px;
}

.faq-item.is-open .faq-toggle-bar--v {
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
  padding: 0 1.3rem 1.2rem;
  margin: 0;
  font-size: 0.9rem;
  color: var(--grey-muted);
  line-height: 1.68;
}

.faq-answer p strong {
  color: var(--white-dim);
  font-weight: 600;
}

.faq-answer--rich {
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-answer--rich {
  max-height: min(78vh, 580px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.faq-item--featured.is-open .faq-answer--rich {
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(56, 189, 248, 0.5) rgba(255, 255, 255, 0.06);
}

.faq-item--featured.is-open .faq-answer--rich::-webkit-scrollbar {
  width: 5px;
}

.faq-item--featured.is-open .faq-answer--rich::-webkit-scrollbar-track {
  margin: 0.5rem 0;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

.faq-item--featured.is-open .faq-answer--rich::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(125, 211, 252, 0.85) 0%, rgba(56, 189, 248, 0.45) 100%);
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.faq-rich-inner {
  padding: 0.35rem 1.35rem 1.35rem;
  font-size: 0.9rem;
  color: var(--grey-muted);
  line-height: 1.72;
}

.faq-item--featured .faq-rich-inner {
  position: relative;
  padding-left: 1.65rem;
  margin-left: 0.35rem;
}

.faq-item--featured .faq-rich-inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  bottom: 0.35rem;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(
    180deg,
    rgba(125, 211, 252, 0.95) 0%,
    rgba(56, 189, 248, 0.35) 55%,
    rgba(255, 255, 255, 0.06) 100%
  );
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.12),
    0 0 18px rgba(56, 189, 248, 0.18);
}

.faq-rich-inner p {
  margin: 0 0 0.85rem;
  padding: 0;
}

.faq-rich-inner p:last-child {
  margin-bottom: 0;
}

.faq-rich-lead {
  font-family: var(--font-display);
  font-size: 1.15rem !important;
  font-weight: 700;
  color: var(--white) !important;
  margin-bottom: 1rem !important;
}

.faq-rich-heading {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 1.25rem 0 0.65rem;
}

.faq-rich-bullets {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  color: var(--grey-muted);
}

.faq-rich-bullets li {
  margin-bottom: 0.5rem;
}

.faq-rich-bullets li::marker {
  color: var(--accent);
}

.faq-rich-signoff {
  margin-top: 1.25rem !important;
  padding-top: 1rem !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white-dim) !important;
}

@media (max-width: 640px) {
  .faq-answer p {
    padding: 0 1.1rem 1.05rem;
    font-size: 0.88rem;
  }

  .faq-trigger,
  .faq-trigger--featured {
    padding: 1rem 1.1rem;
    font-size: 0.92rem;
  }

  .faq-item.is-open .faq-answer--rich {
    max-height: min(72vh, 520px);
  }

  .faq-rich-inner {
    padding: 0.35rem 1.1rem 1.15rem;
  }

  .faq-item--featured .faq-rich-inner {
    padding-left: 1.45rem;
    margin-left: 0.2rem;
  }
}

/* CTA */
.cta-section {
  padding-bottom: 3.25rem;
}

.cta-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  padding: 1.35rem clamp(1.15rem, 3vw, 1.85rem);
  text-align: center;
  max-width: min(720px, 94vw);
  margin-left: auto;
  margin-right: auto;
}

.cta-glow {
  position: absolute;
  width: 60%;
  height: 120%;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(56, 189, 248, 0.22) 0%, transparent 65%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 1.55rem);
  margin-bottom: 0.45rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.cta-text {
  color: var(--grey-muted);
  margin-bottom: 1rem;
  font-size: 0.88rem;
  line-height: 1.55;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.cta-btn-apply {
  padding: 0.72rem 1.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem clamp(1.25rem, 4vw, 3rem);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
}

.footer-nav {
  display: flex;
  gap: 1.75rem;
}

.footer-nav a {
  color: var(--grey-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.82rem;
  color: var(--grey-muted);
}

@media (min-width: 769px) {
  .footer-copy {
    width: auto;
    text-align: right;
  }
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    max-width: 640px;
    margin: 0 auto;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual-wrap {
    max-width: 640px;
    margin: 0 auto;
  }

  .problem-solution {
    grid-template-columns: 1fr;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .step-video-card__play {
    width: 72px;
    height: 72px;
  }

  .step-video-card__play-icon {
    width: 28px;
    height: 28px;
  }

  .step-video-card__pill {
    font-size: 0.78rem;
    padding: 0.45rem 1rem;
    max-width: calc(100% - 2rem);
    text-align: center;
    white-space: normal;
    line-height: 1.3;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ——— Bewerbungs-Modal ——— */
body.apply-modal-open {
  overflow: hidden;
}

.apply-modal {
  position: fixed;
  inset: 0;
  z-index: 2400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.25rem, 5vw, 2.75rem);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.35s;
}

.apply-modal.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.apply-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.apply-modal.is-open .apply-modal__backdrop {
  opacity: 1;
}

.apply-modal__dialog {
  position: relative;
  width: min(100%, 720px);
  max-height: min(92vh, 820px);
  overflow-y: auto;
  overscroll-behavior: contain;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(165deg, rgba(30, 30, 30, 0.97) 0%, rgba(14, 14, 14, 0.98) 45%, rgba(18, 22, 28, 0.99) 100%);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.08),
    0 32px 80px rgba(0, 0, 0, 0.65),
    0 0 120px rgba(56, 189, 248, 0.06);
  transform: translateY(18px) scale(0.97);
  opacity: 0;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease;
}

.apply-modal.is-open .apply-modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.apply-modal__dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(125, 211, 252, 0.35) 0%,
    rgba(56, 189, 248, 0.12) 40%,
    transparent 65%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.apply-modal__close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white-dim);
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.apply-modal__close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
}

.apply-modal__close svg {
  width: 20px;
  height: 20px;
}

.apply-modal__panel {
  position: relative;
  padding: clamp(2rem, 4.5vw, 2.6rem) clamp(2.35rem, 6vw, 3.25rem) clamp(2rem, 4vw, 2.35rem) clamp(1.85rem, 5vw, 2.85rem);
}

.apply-modal__eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
}

.apply-modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  background: linear-gradient(120deg, var(--white) 0%, #bae6fd 55%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.apply-modal__title--success {
  text-align: center;
  -webkit-text-fill-color: var(--white);
  background: none;
  margin-top: 0.5rem;
}

.apply-modal__lead {
  font-size: 0.9rem;
  color: var(--grey-muted);
  line-height: 1.6;
  margin-bottom: 1.35rem;
}

.apply-modal__error {
  font-size: 0.85rem;
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.28);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.apply-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem 1.75rem;
}

.apply-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.apply-field--full {
  grid-column: 1 / -1;
}

.apply-field__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-muted);
  line-height: 1.45;
  padding-right: 0.35rem;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.apply-field__input {
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--white);
  padding: 0.82rem 1.15rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.apply-field__input::placeholder {
  color: rgba(138, 138, 138, 0.75);
}

.apply-field__input:hover {
  border-color: rgba(255, 255, 255, 0.16);
}

.apply-field__input:focus {
  outline: none;
  border-color: rgba(56, 189, 248, 0.55);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

.apply-field__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238a8a8a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.5rem;
}

.apply-form__actions {
  margin-top: 1.5rem;
}

.apply-form__submit {
  width: 100%;
  padding: 1rem 1.5rem;
}

.apply-modal__panel--success {
  text-align: center;
  padding: 2.5rem clamp(1.85rem, 5vw, 2.85rem) 2.25rem;
}

.apply-success-visual {
  display: flex;
  justify-content: center;
  margin-bottom: 0.25rem;
}

.apply-check {
  color: #4ade80;
  filter: drop-shadow(0 0 24px rgba(74, 222, 128, 0.35));
}

.apply-check__ring {
  stroke-dasharray: 327;
  stroke-dashoffset: 327;
  transform-origin: 60px 60px;
  transform: rotate(-90deg);
}

.apply-check__ring.is-drawn {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.apply-check__path {
  stroke-dasharray: 64;
  stroke-dashoffset: 64;
}

.apply-check__path.is-drawn {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.38s;
}

.apply-modal__success-text {
  font-size: 0.92rem;
  color: var(--grey-muted);
  line-height: 1.65;
  max-width: 28rem;
  margin: 0 auto 1.5rem;
}

.apply-modal__calendly {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .apply-form__grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .apply-modal__panel {
    padding-left: clamp(1.35rem, 4.5vw, 1.85rem);
    padding-right: clamp(2.5rem, 8vw, 3rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .apply-modal,
  .apply-modal__backdrop,
  .apply-modal__dialog {
    transition-duration: 0.01ms !important;
  }

  .apply-check__ring.is-drawn,
  .apply-check__path.is-drawn {
    transition-duration: 0.01ms !important;
  }

  .apply-check__ring,
  .apply-check__path {
    stroke-dashoffset: 0 !important;
  }
}
