/* ============================================================
   SOCIAL SPORTS CLUB — socialsportsclub.de
   Night Run. Schwarz. Pink. Dresden.
   ============================================================ */

@font-face {
  font-family: 'Archivo Black';
  src: url('../fonts/ArchivoBlack-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/SpaceGrotesk-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/SpaceGrotesk-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0a090b;
  --bg-2: #131016;
  --card: #17131a;
  --ink: #f6f2f7;
  --soft: #a89fad;
  --line: #2b2530;
  --pink: #ff2fa3;
  --pink-hot: #ff5cbb;
  --pink-deep: #99105f;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.03rem;
  line-height: 1.6;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
[hidden] { display: none !important; }
h1, h2, h3 { margin: 0; }
p { margin: 0 0 1em; }
::selection { background: var(--pink); color: #16000d; }

/* Korn */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: .38;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
}

/* Pink-Glut im Hintergrund */
.glow {
  position: absolute;
  width: 60vw;
  height: 60vw;
  max-width: 900px;
  max-height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 47, 163, .17) 0%, transparent 62%);
  pointer-events: none;
  z-index: 0;
}

.wrap { max-width: 1160px; margin-inline: auto; padding-inline: clamp(20px, 4.5vw, 48px); position: relative; z-index: 2; }

.blk {
  font-family: 'Archivo Black', 'Space Grotesk', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: .95;
  letter-spacing: .01em;
}
.pink { color: var(--pink); }
.soft { color: var(--soft); }
.kick {
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--pink);
}
.stroke {
  color: transparent;
  -webkit-text-stroke: 2px var(--pink);
}

/* ---------- Header ---------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(10, 9, 11, .78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-head .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 62px;
}
.logo {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.05rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .55rem;
}
.logo img { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--pink); }
.main-nav { display: flex; gap: 1.3rem; }
.main-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: .85rem;
  color: var(--soft);
  transition: color .15s;
}
.main-nav a:hover { color: var(--pink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: 'Archivo Black', sans-serif;
  font-size: .95rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  background: var(--pink);
  color: #16000d;
  padding: 1em 1.6em .92em;
  border-radius: 999px;
  transition: transform .16s, box-shadow .16s, background .16s;
}
.btn:hover {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 12px 34px rgba(255, 47, 163, .45);
  background: var(--pink-hot);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--pink);
}
.btn--ghost:hover { background: rgba(255, 47, 163, .12); box-shadow: none; }
.btn--sm { font-size: .78rem; padding: .75em 1.25em .68em; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  text-align: center;
  padding-block: clamp(2rem, 5vw, 4rem) 0;
  overflow: visible;
}
.hero .glow { top: -10%; left: 50%; transform: translateX(-50%); }
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: .4em 1em;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--soft);
}
.hero-chip i {
  width: 8px; height: 8px;
  background: var(--pink);
  border-radius: 50%;
  font-style: normal;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-chip i { animation: pulse 1.8s ease-in-out infinite; }
  @keyframes pulse { 50% { opacity: .3; } }
}

.globe-wrap {
  position: relative;
  max-width: 720px;
  margin: 1rem auto 0;
}
.globe { width: 100%; height: auto; display: block; }
.globe text {
  font-family: 'Archivo Black', sans-serif;
  fill: var(--pink);
  letter-spacing: .01em;
}
@media (prefers-reduced-motion: no-preference) {
  .globe { animation: breathe 6s ease-in-out infinite alternate, tilt 14s ease-in-out infinite alternate; }
  @keyframes breathe { from { scale: 1; } to { scale: 1.025; } }
  @keyframes tilt { from { rotate: -1.6deg; } to { rotate: 1.6deg; } }
}
.globe-stk {
  position: absolute;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(.7rem, 1.6vw, .95rem);
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--ink);
  color: #16000d;
  padding: .5em .95em .4em;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
  white-space: nowrap;
}
.gs1 { top: 9%; right: 2%; transform: rotate(7deg); }
.gs2 { bottom: 16%; left: -1%; transform: rotate(-6deg); background: var(--pink); color: #16000d; }
@media (prefers-reduced-motion: no-preference) {
  .globe-stk { animation: floaty 5s ease-in-out infinite alternate; }
  .gs2 { animation-delay: 1.2s; }
  @keyframes floaty { to { translate: 0 -10px; } }
}

.hero-sub {
  max-width: 34em;
  margin: 1.6rem auto 0;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: var(--soft);
}
.hero-sub strong { color: var(--ink); }
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

/* ---------- Ticker ---------- */
.ticker {
  overflow: hidden;
  background: var(--pink);
  color: #16000d;
  transform: rotate(-1.4deg) scale(1.02);
  margin-block: clamp(3rem, 6vw, 5rem);
  user-select: none;
}
.ticker--dark { background: var(--bg-2); color: var(--pink); border-block: 2px solid var(--pink); }
.ticker-track {
  display: flex;
  gap: 2.4rem;
  padding: .6rem 0 .5rem;
  white-space: nowrap;
  width: max-content;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.55rem);
  letter-spacing: .05em;
  text-transform: uppercase;
}
@media (prefers-reduced-motion: no-preference) {
  .ticker-track { animation: tickmove 26s linear infinite; }
  .ticker--dark .ticker-track { animation-duration: 34s; animation-direction: reverse; }
  @keyframes tickmove {
    from { transform: translateX(0) skewX(var(--tskew, 0deg)); }
    to { transform: translateX(-50%) skewX(var(--tskew, 0deg)); }
  }
}
.ticker-track i { font-style: normal; opacity: .5; }

/* ---------- Sections ---------- */
.sec { padding-block: clamp(4rem, 8vw, 7rem); position: relative; }
.sec-head { margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.sec-title { font-size: clamp(2.2rem, 6vw, 4.4rem); }

/* ---------- Countdown / Next Run ---------- */
.next { text-align: center; }
.next .glow { top: 0; left: 20%; }
.count {
  display: flex;
  justify-content: center;
  gap: clamp(.8rem, 3vw, 2.2rem);
  margin-block: 2rem 1rem;
  flex-wrap: wrap;
}
.count > div { min-width: 4.2em; }
.count b {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 400;
  font-size: clamp(2.8rem, 8vw, 5.6rem);
  line-height: 1;
  color: var(--pink);
  display: block;
  font-variant-numeric: tabular-nums;
}
.count span {
  display: block;
  margin-top: .3rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--soft);
}
.next-meta { font-size: 1.1rem; color: var(--ink); font-weight: 700; }
.next-meta .soft { font-weight: 400; }
.announce {
  max-width: 34em;
  margin-inline: auto;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--ink);
}
.evt-list { list-style: none; margin: 2.5rem auto 0; padding: 0; max-width: 760px; text-align: left; }
.evt-list li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  border-top: 1px solid var(--line);
  padding: 1.1rem .2rem;
  flex-wrap: wrap;
}
.evt-list li:last-child { border-bottom: 1px solid var(--line); }
.evt-date {
  font-family: 'Archivo Black', sans-serif;
  color: var(--pink);
  font-size: 1.05rem;
  min-width: 7.5em;
  text-transform: uppercase;
}
.evt-title { font-weight: 700; flex: 1; }
.evt-spot { color: var(--soft); font-size: .92rem; }

/* ---------- So läuft's ---------- */
.steps { display: grid; gap: clamp(1.5rem, 4vw, 2.5rem); }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.2rem, 3.5vw, 2.5rem);
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
}
.step-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(3.4rem, 9vw, 6.5rem);
  line-height: .9;
  color: transparent;
  -webkit-text-stroke: 2.5px var(--pink);
}
.step h3 { font-size: clamp(1.3rem, 2.6vw, 1.8rem); margin-bottom: .4rem; text-transform: uppercase; font-family: 'Archivo Black', sans-serif; font-weight: 400; }
.step p { color: var(--soft); max-width: 42em; margin: 0; }

/* ---------- Galerie ---------- */
.gal { padding-block: clamp(3rem, 6vw, 5rem) 0; }
.gal-row { overflow: hidden; margin-bottom: 16px; }
.gal-track { display: flex; gap: 14px; width: max-content; }
@media (prefers-reduced-motion: no-preference) {
  .gal-track { animation: tickmove 52s linear infinite; }
  .gal-row:nth-child(even) .gal-track { animation-direction: reverse; animation-duration: 64s; }
  .gal-row:hover .gal-track { animation-play-state: paused; }
}
.gal-item {
  width: clamp(200px, 26vw, 320px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  flex-shrink: 0;
  border: 2px solid transparent;
  transition: border-color .2s, transform .2s;
}
.gal-item:nth-child(odd) { transform: rotate(-.8deg); }
.gal-item:nth-child(even) { transform: rotate(.8deg); }
.gal-item:hover { border-color: var(--pink); transform: scale(1.03); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Manifest / Quote ---------- */
.manifest { text-align: center; }
.manifest .glow { top: 10%; right: 5%; left: auto; }
.mani-quote {
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 3.6vw, 2.6rem);
  line-height: 1.15;
  max-width: 22em;
  margin: 0 auto 1.5rem;
}
.mani-quote em { font-style: normal; color: var(--pink); }
.mani-src { color: var(--soft); font-size: .95rem; }
.barcode {
  margin: 2.5rem auto 0;
  width: 220px;
  height: 46px;
  background: repeating-linear-gradient(90deg,
    var(--pink) 0 2px, transparent 2px 5px,
    var(--pink) 5px 9px, transparent 9px 11px,
    var(--pink) 11px 12px, transparent 12px 17px,
    var(--pink) 17px 20px, transparent 20px 22px);
  opacity: .9;
}
.barcode + p { margin-top: .6rem; font-size: .75rem; letter-spacing: .3em; text-transform: uppercase; color: var(--soft); }

/* ---------- Zahlen ---------- */
.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 2.5rem);
  text-align: center;
}
.fact b {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1;
  display: block;
  color: var(--pink);
}
.fact span { display: block; margin-top: .5rem; color: var(--soft); font-size: .95rem; }

/* ---------- Community CTA ---------- */
.join {
  border: 2px solid var(--pink);
  border-radius: 22px;
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  background:
    radial-gradient(120% 140% at 50% 0%, rgba(255, 47, 163, .14) 0%, transparent 55%),
    var(--card);
}
.join h2 { font-size: clamp(1.8rem, 4.5vw, 3rem); margin-bottom: .6rem; }
.join p { color: var(--soft); max-width: 36em; margin-inline: auto; }
.join .hero-ctas { margin-top: 1.4rem; }

/* ---------- Partner ---------- */
.partner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 2rem;
}
.partner h3 { font-family: 'Archivo Black', sans-serif; font-weight: 400; text-transform: uppercase; font-size: 1.3rem; margin-bottom: .3rem; }
.partner p { margin: 0; color: var(--soft); max-width: 38em; }
.partner p b { color: var(--ink); }

/* ---------- Footer ---------- */
.site-foot { padding-block: 2.6rem 5rem; }
.foot-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.foot-logo { font-family: 'Archivo Black', sans-serif; text-transform: uppercase; font-size: 1.2rem; line-height: 1.3; }
.foot-links { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.foot-links a { text-decoration: none; font-weight: 700; font-size: .9rem; color: var(--soft); }
.foot-links a:hover { color: var(--pink); }
.foot-meta { width: 100%; margin-top: 1.6rem; font-size: .8rem; color: var(--soft); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

/* ---------- IG-Chip ---------- */
.igchip {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 85;
  display: flex;
  align-items: center;
  gap: .55rem;
  background: var(--pink);
  color: #16000d;
  border-radius: 999px;
  padding: 6px 15px 6px 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: .85rem;
  box-shadow: 0 14px 40px rgba(255, 47, 163, .4);
  transition: transform .18s;
}
.igchip:hover { transform: translateY(-3px) rotate(2deg); }
.igchip img { width: 32px; height: 32px; border-radius: 999px; border: 2px solid #16000d; }

/* ---------- Reveal ---------- */
.rv { opacity: 0; transform: translateY(26px); }
.rv.on { opacity: 1; transform: none; transition: opacity .7s, transform .7s cubic-bezier(.2, .7, .2, 1); }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Legal ---------- */
.legal { max-width: 780px; padding-block: 3.5rem 5rem; }
.legal h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1.5rem; }
.legal h2 { font-size: 1.2rem; margin: 2rem 0 .5rem; }
.legal p, .legal li { color: var(--soft); }

/* ============================================================
   V2 — MEHR ANIMATION / MEHR DEKO
   ============================================================ */

/* Cursor-Glow (nur Maus-Geräte) */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 47, 163, .22) 0%, transparent 65%);
  pointer-events: none;
  z-index: 88;
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .4s;
}
@media (hover: none), (prefers-reduced-motion: reduce) {
  .cursor-glow { display: none; }
}

/* Mini-Foto-Sticker um die Kugel */
.stk-photo {
  position: absolute;
  width: clamp(84px, 11vw, 128px);
  margin: 0;
  padding: 5px 5px 7px;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, .55);
  z-index: 5;
}
.stk-photo img { border-radius: 5px; }
.sp1 { top: 42%; left: -10%; transform: rotate(-8deg); }
.sp2 { bottom: 6%; right: -6%; transform: rotate(7deg); }

/* Orbitender Stern um die Kugel */
.orbit {
  position: absolute;
  top: 0; left: 0;
  color: var(--pink);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  offset-path: ellipse(52% 47% at 50% 50%);
  offset-rotate: 0deg;
  z-index: 6;
  text-shadow: 0 0 18px rgba(255, 47, 163, .8);
}

/* Spinnende Sterne als Deko */
.spin-star {
  position: absolute;
  color: var(--pink);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  opacity: .85;
  text-shadow: 0 0 22px rgba(255, 47, 163, .7);
  pointer-events: none;
  z-index: 1;
}
.ss1 { top: 14%; right: 8%; }
.ss2 { top: 10%; left: 7%; }

/* Galerie: Pink-Duotone, hebt sich beim Hover */
.gal-item { position: relative; }
.gal-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 47, 163, .28), rgba(10, 9, 11, .1));
  mix-blend-mode: color;
  transition: opacity .3s;
}
.gal-item img { filter: grayscale(.25) contrast(1.05); transition: filter .3s, transform .4s; }
.gal-item:hover::after { opacity: 0; }
.gal-item:hover img { filter: none; transform: scale(1.06); }

/* Barcode: Scan-Linie */
.barcode { position: relative; overflow: hidden; }
.barcode::after {
  content: "";
  position: absolute;
  top: -10%;
  bottom: -10%;
  width: 3px;
  background: #fff;
  box-shadow: 0 0 14px 3px rgba(255, 255, 255, .8);
}

/* Sektions-Titel: Unterstrich-Sweep */
.sec-head .sec-title::after {
  content: "";
  display: block;
  width: 92px;
  height: 7px;
  margin-top: .3em;
  background: var(--pink);
  transform: skewX(-18deg) scaleX(0);
  transform-origin: left;
}
.next .sec-head .sec-title::after { margin-inline: auto; transform-origin: center; }
.sec-head.on .sec-title::after { transition: transform .7s .3s cubic-bezier(.2, .9, .2, 1); transform: skewX(-18deg) scaleX(1); }

/* Steps: Nummern füllen sich, wenn sichtbar */
.step-num { transition: color .6s .25s, text-shadow .6s .25s; }
.step.on .step-num {
  color: var(--pink);
  text-shadow: 0 0 34px rgba(255, 47, 163, .45);
}

/* Route mit laufenden Punkten (hinter "So läuft's") */
.route {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: .5;
  pointer-events: none;
}
.route path { stroke: var(--pink); stroke-width: 2.5; fill: none; stroke-dasharray: 7 16; }
.route circle { fill: var(--pink); filter: drop-shadow(0 0 6px rgba(255, 47, 163, .9)); }
#so .wrap { position: relative; z-index: 2; }

/* Join-Karte: pulsierende Glut */
.join { box-shadow: 0 0 0 rgba(255, 47, 163, 0); }

/* Countdown: Ziffern-Pop */
.count b { transition: transform .15s; }
.count b.pop { transform: scale(1.14) rotate(-1.5deg); }

/* Header-Logo dreht beim Hover */
.logo img { transition: transform .5s cubic-bezier(.3, 1.6, .4, 1); }
.logo:hover img { transform: rotate(360deg); }

/* ---------- Alle neuen Animationen (nur ohne Reduced Motion) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .glow { animation: drift 18s ease-in-out infinite alternate; }
  .hero .glow { animation-duration: 24s; }
  @keyframes drift {
    to { translate: 5% -4%; scale: 1.18; }
  }

  /* Hero-Einlauf gestaffelt */
  .hero-chip { animation: rise .7s .05s cubic-bezier(.2, .9, .2, 1) both; }
  .globe-wrap { animation: globein 1s .15s cubic-bezier(.2, 1.4, .3, 1) both; }
  .hero-sub { animation: rise .7s .45s cubic-bezier(.2, .9, .2, 1) both; }
  .hero-ctas { animation: rise .7s .6s cubic-bezier(.2, .9, .2, 1) both; }
  @keyframes rise { from { opacity: 0; translate: 0 26px; } }
  @keyframes globein { from { opacity: 0; scale: .82; rotate: -4deg; } }

  /* Neon-Flackern auf HOTTEST */
  .flick { animation: flick 6.5s infinite; }
  @keyframes flick {
    0%, 71%, 74%, 77%, 100% { opacity: 1; }
    72%, 75% { opacity: .35; }
    73%, 76% { opacity: .85; }
  }

  /* Stern-Orbit um die Kugel */
  .orbit { animation: orbit 16s linear infinite; }
  @keyframes orbit { from { offset-distance: 0%; } to { offset-distance: 100%; } }

  .spin-star { animation: spin 12s linear infinite; }
  .ss2 { animation-duration: 17s; animation-direction: reverse; }
  @keyframes spin { to { rotate: 360deg; } }

  .stk-photo { animation: floaty 6s ease-in-out infinite alternate; }
  .sp2 { animation-delay: 1.4s; }

  .barcode::after { animation: scan 3.2s ease-in-out infinite alternate; }
  @keyframes scan { from { left: -4%; } to { left: 102%; } }

  .route path { animation: dashmove 1.6s linear infinite; }
  @keyframes dashmove { to { stroke-dashoffset: -23; } }

  .join { animation: joinpulse 3.4s ease-in-out infinite; }
  @keyframes joinpulse {
    50% { box-shadow: 0 0 70px rgba(255, 47, 163, .35); }
  }

  .btn { will-change: transform; }
  .igchip { animation: chipin 1s 1.2s cubic-bezier(.2, 1.5, .3, 1) both; }
  @keyframes chipin { from { opacity: 0; translate: 0 40px; } }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .main-nav { display: none; }
  .facts { grid-template-columns: 1fr; }
  .partner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .igchip span { display: none; }
  .igchip { padding: 6px; }
  .globe-stk { display: none; }
  .stk-photo { display: none; }
  .spin-star { display: none; }
}

/* ---------- Nur für Screenreader (H1) ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- FAQ ---------- */
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 0;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--pink);
  font-family: 'Archivo Black', sans-serif;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item p { color: var(--soft); max-width: 46em; margin: 0 0 1.3rem; }
