* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #1B1E24;
  --face: linear-gradient(145deg, #23272F 0%, #1A1D23 100%);
  --ink: #F2F5FA;
  --muted: #8A93A8;
  --line: #2B303A;
  --lime: #B7F34D;
  --gold: #F5B301;
  --purple: #A78BFA;
  --nm-hi: rgba(255, 255, 255, 0.05);
  --nm-lo: rgba(0, 0, 0, 0.55);
  --shadow: 7px 7px 16px var(--nm-lo), -5px -5px 12px var(--nm-hi);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}
.orb { position: fixed; border-radius: 50%; filter: blur(85px); pointer-events: none; z-index: 0; }
.orb.a { width: 420px; height: 420px; background: #B7F34D; top: -140px; right: -140px; opacity: 0.14; animation: drift1 16s ease-in-out infinite; }
.orb.b { width: 480px; height: 480px; background: #7C3AED; bottom: -180px; left: -180px; opacity: 0.16; animation: drift2 20s ease-in-out infinite; }
@keyframes drift1 { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-60px, 70px) scale(1.12); } }
@keyframes drift2 { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(80px, -60px) scale(0.92); } }

.wrap { position: relative; z-index: 1; max-width: 1080px; margin: 0 auto; padding: 0 22px; }

nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 16px;
  /* Volle Viewport-Breite trotz zentriertem .wrap, Inhalt bleibt buendig */
  margin: 0 calc(50% - 50vw); padding: 16px calc(50vw - 50%);
  background: rgba(27, 30, 36, 0.85);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
nav.scrolled { border-bottom-color: var(--line); }
.logo { font-family: 'Archivo', sans-serif; font-style: italic; font-weight: 900; font-size: 26px; letter-spacing: -0.03em; }
.logo span { padding: 0 0.15em; margin: 0 -0.15em; color: transparent; background-image: linear-gradient(135deg, #D9FF7E 12%, #B7F34D 42%, #A78BFA 82%, #8B5CF6 100%); -webkit-background-clip: text; background-clip: text; }
nav .spacer { flex: 1; }

.btn {
  display: inline-block;
  border: none;
  border-radius: 999px;
  padding: 15px 30px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  background: linear-gradient(145deg, #C8FA69, #9FD93C);
  color: #16220A;
  box-shadow: var(--shadow), 0 0 26px rgba(183, 243, 77, 0.22);
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow), 0 0 40px rgba(183, 243, 77, 0.4); }
.btn:active { transform: scale(0.97); }
.btn.ghost { background: var(--face); color: #C6CCDA; box-shadow: var(--shadow); }
.btn.ghost:hover { box-shadow: var(--shadow); }
.btn.small { padding: 11px 22px; font-size: 14px; }
.btn.pulse { animation: ctaGlow 3s ease-in-out infinite; }
@keyframes ctaGlow {
  0%, 100% { box-shadow: 7px 7px 16px var(--nm-lo), -5px -5px 12px var(--nm-hi), 0 0 22px rgba(183, 243, 77, 0.2); }
  50% { box-shadow: 7px 7px 16px var(--nm-lo), -5px -5px 12px var(--nm-hi), 0 0 42px rgba(183, 243, 77, 0.42); }
}

/* ---------- Scroll-Reveals ---------- */
.rv { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1); }
.rv.in { opacity: 1; transform: none; }
.rv.d1 { transition-delay: 0.08s; }
.rv.d2 { transition-delay: 0.16s; }
.rv.d3 { transition-delay: 0.24s; }

/* ---------- Hero ---------- */
.hero { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 30px; align-items: center; padding: 44px 0 30px; }
.kicker { font-size: 12px; font-weight: 800; letter-spacing: 0.28em; text-transform: uppercase; color: var(--lime); margin-bottom: 16px; }
h1 {
  font-family: 'Archivo', sans-serif;
  font-style: italic;
  font-weight: 900;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
h1 .lime { color: var(--lime); }
h1 .purple { color: var(--purple); }
.sub { font-size: 17px; color: var(--muted); font-weight: 600; margin: 22px 0 30px; max-width: 470px; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.kickoff {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 24px; padding: 9px 18px;
  background: rgba(183, 243, 77, 0.09);
  border: 1px solid rgba(183, 243, 77, 0.35);
  border-radius: 999px;
  font-size: 13.5px; font-weight: 800; color: var(--lime);
}
.kickoff .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); animation: blink 1.6s ease-in-out infinite; flex: none; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

/* ---------- Automatische Packshow (aus der App, groesser) ---------- */
.heroshow { position: relative; min-height: 480px; display: flex; align-items: center; justify-content: center; }
.heroglow {
  position: absolute; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 179, 1, 0.26) 0%, rgba(139, 92, 246, 0.14) 55%, transparent 72%);
  filter: blur(28px);
  animation: glowPulse 4.5s ease-in-out infinite;
}
@keyframes glowPulse { 0%, 100% { transform: scale(1); opacity: 0.85; } 50% { transform: scale(1.14); opacity: 1; } }
.psstage { position: relative; width: 100%; height: 440px; display: flex; align-items: center; justify-content: center; }
.pscards { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }

/* .pack.psPack statt .psPack: die .pack-Basisregel steht weiter unten in der
   Datei und wuerde Groesse und Animation sonst wieder ueberschreiben */
.pack.psPack {
  position: absolute;
  width: 216px; height: 302px;
  aspect-ratio: auto;
  padding: 18px 14px;
  cursor: default;
  animation: psPackLoop 12s ease-in-out infinite;
}
.pack.psPack:active { transform: none; }
/* 12s-Schleife: Pack ~2s, Karten halten ~8s (die App-Fassung war den
   Landing-Besuchern zu fluechtig, die Karten verschwanden zu schnell) */
@keyframes psPackLoop {
  0%   { opacity: 1; transform: scale(1) rotate(-3deg); }
  12%  { opacity: 1; transform: scale(1.07) rotate(2deg); }
  17%  { opacity: 0; transform: scale(0.55) rotate(0deg); }
  88%  { opacity: 0; transform: scale(0.55) rotate(0deg); }
  95%  { opacity: 1; transform: scale(1.03) rotate(-2deg); }
  100% { opacity: 1; transform: scale(1) rotate(-3deg); }
}
.packlogo.stacked { line-height: 1.02; text-align: center; }
.packlogo.stacked span { display: block; }
.packlogo.stacked .lo { font-size: 1.33em; }
.psPack .packlogo { font-size: 26px; }
.psPack .packsub { font-size: 11px; letter-spacing: 0.18em; }
.psPack .packstar { font-size: 30px; }

.pscard {
  position: absolute;
  width: 152px; padding: 12px 10px 14px;
  background: linear-gradient(160deg, #262A32 45%, #332C18 115%);
  border: 2px solid rgba(245, 179, 1, 0.65);
  border-radius: 18px;
  box-shadow: var(--shadow), 0 0 26px rgba(245, 179, 1, 0.16);
  text-align: center;
  opacity: 0;
  overflow: hidden;
  animation: psCard 12s ease-in-out infinite;
}
.pscard::before {
  content: ''; position: absolute; inset: -60% -30%; pointer-events: none;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 230, 150, 0.26) 50%, rgba(255, 214, 100, 0.12) 54%, transparent 62%);
  animation: shine 2.6s ease-in-out infinite;
}
.pscard .posbadge { position: absolute; top: 10px; left: 10px; }
.pstier {
  position: absolute; top: 10px; right: 10px;
  font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 999px;
  background: var(--gold); color: #3d2e00;
}
.pscard .pava { width: 62px; height: 62px; margin: 26px auto 8px; font-size: 18px; }
.psname { position: relative; font-size: 13px; font-weight: 800; line-height: 1.2; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pspts { position: relative; font-family: 'Archivo', sans-serif; font-style: italic; font-weight: 900; font-size: 18px; color: var(--lime); margin-top: 4px; }
.pspts span { font-size: 9px; color: var(--muted); letter-spacing: 0.06em; }

.ps1 { animation-delay: 0.05s; --x: -152px; --r: -10deg; }
.ps2 { animation-delay: 0.18s; --x: 0px;    --r: 0deg; }
.ps3 { animation-delay: 0.31s; --x: 152px;  --r: 10deg; }
@keyframes psCard {
  0%, 15%  { opacity: 0; transform: translate(0, 0) scale(0.5) rotate(0deg); }
  21%      { opacity: 1; transform: translate(var(--x), -8px) scale(1) rotate(var(--r)); }
  87%      { opacity: 1; transform: translate(var(--x), -8px) scale(1) rotate(var(--r)); }
  93%      { opacity: 0; transform: translate(var(--x), -20px) scale(0.94) rotate(var(--r)); }
  100%     { opacity: 0; transform: translate(0, 0) scale(0.5) rotate(0deg); }
}

/* Kompakte Fassung im Abschluss-Block */
.finalshow { position: relative; min-height: 300px; display: flex; align-items: center; justify-content: center; margin-bottom: 6px; }
.finalshow .heroglow { width: 240px; height: 240px; }
.finalshow .psstage { height: 280px; }
.finalshow .pack.psPack { width: 136px; height: 190px; padding: 12px 10px; }
.finalshow .psPack .packlogo { font-size: 16px; }
.finalshow .psPack .packsub { font-size: 7.5px; }
.finalshow .psPack .packstar { font-size: 19px; }
.finalshow .pscard { width: 108px; padding: 9px 8px 10px; }
.finalshow .pscard .pava { width: 44px; height: 44px; margin: 20px auto 6px; font-size: 14px; }
.finalshow .psname { font-size: 10.5px; }
.finalshow .pspts { font-size: 14px; }
.finalshow .ps1 { --x: -104px; }
.finalshow .ps3 { --x: 104px; }

/* Avatare fuer Packshow + Marquee */
.pava {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: #fff; font-weight: 800;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}
.pava img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.pava.small { width: 28px; height: 28px; font-size: 10px; flex: none; }

/* ---------- Spieler-Marquee ---------- */
.marquee {
  overflow: hidden;
  margin: 0 -22px;
  padding: 4px 0 30px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track { display: flex; gap: 12px; width: max-content; animation: marquee 40s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }
.mchip {
  display: flex; align-items: center; gap: 8px;
  background: var(--face);
  border-radius: 999px;
  padding: 7px 16px 7px 7px;
  box-shadow: var(--shadow);
  font-size: 13px; font-weight: 800;
  white-space: nowrap;
}
.mchip .mpos { font-size: 11px; letter-spacing: 0.04em; }
.mchip .mpts { color: var(--muted); font-weight: 700; font-size: 12px; }

/* ---------- Statsleiste mit Zaehlern ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding-bottom: 70px; }
.stat { background: var(--face); border-radius: 20px; padding: 20px 10px 16px; box-shadow: var(--shadow); text-align: center; }
.stat b {
  display: block;
  font-family: 'Archivo', sans-serif; font-style: italic; font-weight: 900;
  font-size: 36px; line-height: 1.1; color: var(--lime);
}
/* Nur das Label ist klein und grau; die Zaehler-Spanne im <b> erbt dessen Optik */
.stat > span { font-size: 12.5px; color: var(--muted); font-weight: 700; }

/* ---------- Rivalitaet: animiertes Live-Duell ---------- */
.rivalry { padding: 60px 0 10px; text-align: center; }
.rivalry .f-kicker { color: var(--lime); }
.rivalry h2 { font-family: 'Archivo', sans-serif; font-style: italic; font-weight: 900; font-size: clamp(32px, 4.6vw, 50px); letter-spacing: -0.02em; line-height: 1.08; }
.rivalry > p { color: var(--muted); font-weight: 600; font-size: 16.5px; max-width: 580px; margin: 16px auto 0; }
.duel { max-width: 640px; margin: 40px auto 0; }
.duelrow { display: flex; align-items: stretch; justify-content: center; gap: 18px; }
.duelcard {
  flex: 1; max-width: 240px; position: relative;
  background: var(--face);
  border: 2px solid transparent;
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 24px 16px 20px;
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.duelava { width: 58px; height: 58px; margin: 0 auto 10px; font-size: 15px; }
.duelcard.rival .duelava { font-size: 24px; }
.duelname { font-weight: 800; font-size: 15px; }
.duelscore { font-family: 'Archivo', sans-serif; font-style: italic; font-weight: 900; font-size: 40px; line-height: 1.15; margin-top: 4px; }
.duelcard.you .duelscore { color: var(--lime); }
.duelcard.rival .duelscore { color: var(--purple); }
.duelcard.lead { border-color: rgba(183, 243, 77, 0.6); box-shadow: var(--shadow), 0 0 24px rgba(183, 243, 77, 0.16); }
.duelcard.rival.lead { border-color: rgba(139, 92, 246, 0.6); box-shadow: var(--shadow), 0 0 24px rgba(139, 92, 246, 0.2); }
.duelcard.winner { transform: translateY(-6px) scale(1.03); }
.leadchip {
  position: absolute; top: -13px; left: 50%;
  transform: translateX(-50%) scale(0); transform-origin: center;
  padding: 4px 12px; border-radius: 999px;
  font-size: 10.5px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase;
  background: linear-gradient(145deg, #C8FA69, #9FD93C); color: #16220A;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1.4);
}
.duelcard.rival .leadchip { background: linear-gradient(145deg, #A78BFA, #8B5CF6); color: #fff; }
.duelcard.lead .leadchip { transform: translateX(-50%) scale(1); }
.duelvs { align-self: center; flex: none; font-family: 'Archivo', sans-serif; font-style: italic; font-weight: 900; font-size: 28px; color: var(--muted); }
.duelticker {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 22px; padding: 11px 22px;
  background: var(--face); border-radius: 999px;
  font-size: 14px; font-weight: 800;
  box-shadow: var(--shadow);
}
.duelticker .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); animation: blink 1.6s ease-in-out infinite; flex: none; }
.livechip svg { vertical-align: -2px; margin-right: 3px; }

/* ---------- Icon-Story ---------- */
.iconstory { padding: 60px 0 70px; text-align: center; }
.iconstory .f-kicker { color: var(--gold); }
.iconstory h2 {
  font-family: 'Archivo', sans-serif; font-style: italic; font-weight: 900;
  font-size: clamp(32px, 4.6vw, 50px);
  letter-spacing: -0.02em; line-height: 1.08;
}
.iconstory h2 .gold { padding: 0 0.15em; margin: 0 -0.15em; color: transparent; background-image: linear-gradient(135deg, #FFE9A8 5%, #F5B301 45%, #E8A200 100%); -webkit-background-clip: text; background-clip: text; }
.iconstory > p { color: var(--muted); font-weight: 600; font-size: 16.5px; max-width: 560px; margin: 16px auto 0; }

.tier-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; max-width: 820px; margin: 42px auto 0; }
.tcard {
  position: relative;
  background: var(--face);
  border: 2px solid transparent;
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 28px 18px 24px;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.tcard:hover { transform: translateY(-6px); }
.tcard .tstar { font-size: 26px; line-height: 1; }
.tcard h3 { font-family: 'Archivo', sans-serif; font-style: italic; font-weight: 900; font-size: 23px; letter-spacing: -0.01em; margin: 8px 0 8px; }
.tcard p { color: var(--muted); font-weight: 600; font-size: 13.5px; line-height: 1.55; }
.tcard::before { content: ''; position: absolute; inset: -60% -30%; pointer-events: none; }
.tcard.gold {
  border-color: rgba(245, 179, 1, 0.7);
  background: linear-gradient(160deg, #262A32 45%, #332C18 115%);
  box-shadow: var(--shadow), 0 0 26px rgba(245, 179, 1, 0.16);
}
.tcard.gold .tstar, .tcard.gold h3 { color: #F0C449; }
.tcard.gold::before { background: linear-gradient(115deg, transparent 40%, rgba(255, 230, 150, 0.26) 50%, rgba(255, 214, 100, 0.12) 54%, transparent 62%); animation: shine 2.6s ease-in-out infinite; }
.tcard.silver {
  border-color: rgba(190, 202, 218, 0.5);
  background: linear-gradient(160deg, #262A32 45%, #2B313C 115%);
}
.tcard.silver .tstar, .tcard.silver h3 { color: #C3CCDA; }
.tcard.silver::before { background: linear-gradient(115deg, transparent 40%, rgba(235, 242, 250, 0.2) 50%, rgba(186, 202, 220, 0.1) 54%, transparent 62%); animation: shine 3.1s ease-in-out infinite; }
.tcard.bronze { border-color: rgba(208, 144, 79, 0.45); }
.tcard.bronze .tstar, .tcard.bronze h3 { color: #D0904F; }

.becomes { max-width: 600px; margin: 48px auto 0; }
.becomes .arrow { font-size: 26px; color: var(--gold); animation: bounceDown 2.2s ease-in-out infinite; }
@keyframes bounceDown { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
.becomes h3 { font-family: 'Archivo', sans-serif; font-style: italic; font-weight: 900; font-size: clamp(26px, 3.4vw, 36px); margin: 10px 0 12px; }
.becomes p { color: var(--muted); font-weight: 600; font-size: 16px; }
.iconbadge {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 24px; padding: 12px 26px;
  border-radius: 999px;
  font-family: 'Archivo', sans-serif; font-style: italic; font-weight: 900; font-size: 20px;
  letter-spacing: 0.02em;
  color: #3d2e00;
  background: linear-gradient(150deg, #FFE9A8 0%, #F5C43C 30%, #E8A200 65%, #FFDE8A 100%);
  box-shadow: 0 10px 30px rgba(216, 150, 0, 0.35), inset 0 0 0 2px rgba(255, 255, 255, 0.5);
  position: relative; overflow: hidden;
  animation: badgeFloat 3.4s ease-in-out infinite;
}
.iconbadge .packshine { animation-duration: 3.2s; }
@keyframes badgeFloat { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-6px) rotate(1deg); } }
.badgecap { margin-top: 12px; font-size: 12.5px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* ---------- Features ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; padding: 60px 0; }
.feature.flip .f-img { order: 2; }
.f-img { display: flex; justify-content: center; position: relative; }
.f-img .phone { position: relative; transform: rotate(-2.5deg); }
.feature.flip .f-img .phone { transform: rotate(2.5deg); }
.f-kicker { font-size: 11px; font-weight: 800; letter-spacing: 0.24em; text-transform: uppercase; color: var(--purple); margin-bottom: 10px; }
.feature h2, .crew h2 {
  font-family: 'Archivo', sans-serif;
  font-style: italic;
  font-weight: 900;
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 16px;
}
.feature p { color: var(--muted); font-weight: 600; font-size: 16px; }
.feature ul, ul.ticks { list-style: none; margin-top: 18px; }
.feature li, ul.ticks li { padding: 7px 0 7px 30px; position: relative; font-weight: 700; font-size: 15px; }
.feature li::before, ul.ticks li::before { content: ''; position: absolute; left: 0; top: 14px; width: 16px; height: 8px; border-left: 3px solid var(--lime); border-bottom: 3px solid var(--lime); transform: rotate(-45deg) translateY(-4px); }

.phone {
  position: relative;
  width: 270px;
  border-radius: 34px;
  border: 3px solid #2E333E;
  background: #101218;
  padding: 10px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.phone img { width: 100%; border-radius: 24px; display: block; }

/* Live-Chips, die ueber den Screenshots aufpoppen */
.livechip {
  position: absolute; z-index: 2;
  padding: 9px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 900; white-space: nowrap;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
  opacity: 0;
}
.rv.in .livechip { animation: chipPop 6.5s ease-in-out infinite; }
.livechip.td { top: 16%; right: 2%; background: linear-gradient(145deg, #C8FA69, #9FD93C); color: #16220A; }
.livechip.fire { bottom: 26%; left: 0; background: linear-gradient(145deg, #FF9D45, #FF5A3C); color: #fff; animation-delay: 3.2s !important; }
.livechip.steal { top: 14%; left: 0; background: linear-gradient(150deg, #FFE9A8, #F5C43C, #E8A200); color: #4a3600; }
.livechip.skill { bottom: 22%; right: 2%; background: linear-gradient(145deg, #A78BFA, #8B5CF6); color: #fff; animation-delay: 3.2s !important; }
@keyframes chipPop {
  0%, 6%   { opacity: 0; transform: translateY(12px) scale(0.8); }
  12%, 52% { opacity: 1; transform: translateY(0) scale(1); }
  60%, 100%{ opacity: 0; transform: translateY(-14px) scale(0.9); }
}

/* ---------- Interaktive Pack-Demo (in der Draft-Sektion) ---------- */
.demo-phone {
  width: min(100%, 360px);
  margin: 0 auto;
  border-radius: 34px;
  border: 3px solid #2E333E;
  background: #101218;
  padding: 14px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.demo-stage {
  position: relative;
  /* Hoehe des geoeffneten Zustands, damit beim Aufreissen nichts springt */
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border-radius: 22px;
}

.packwrap { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.pack {
  position: relative;
  width: min(76%, 258px);
  aspect-ratio: 3 / 4.2;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: inherit;
  color: #4a3600;
  background: linear-gradient(150deg, #FFE9A8 0%, #F5C43C 26%, #E8A200 52%, #FFDE8A 74%, #D99400 100%);
  box-shadow: inset 0 0 0 2.5px rgba(255, 255, 255, 0.55), inset 0 -18px 40px rgba(150, 95, 0, 0.35), 0 18px 38px rgba(216, 150, 0, 0.35);
  animation: packFloat 3.2s ease-in-out infinite;
}
.pack:active { transform: scale(0.97); }
.pack:focus-visible { outline: 3px solid var(--lime); outline-offset: 4px; }
@keyframes packFloat {
  0%, 100% { transform: translateY(0) rotate(-0.6deg); }
  50% { transform: translateY(-9px) rotate(0.6deg); }
}
.packshine {
  position: absolute;
  inset: -50% -35%;
  background: linear-gradient(112deg, transparent 42%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.35) 55%, transparent 63%);
  animation: shine 2.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shine { 0% { transform: translateX(-65%); } 60%, 100% { transform: translateX(65%); } }
.packstar { font-size: 34px; line-height: 1; color: rgba(255, 255, 255, 0.92); text-shadow: 0 2px 6px rgba(60, 45, 15, 0.4); }
.packlogo { font-family: 'Archivo', sans-serif; font-style: italic; font-size: 22px; font-weight: 900; letter-spacing: -0.03em; color: #fff; text-shadow: 0 2px 10px rgba(55, 45, 25, 0.5); }
.packsub { font-size: 10.5px; font-weight: 800; letter-spacing: 0.2em; opacity: 0.85; }
.packseal {
  position: absolute;
  bottom: 16px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: inherit;
}
.packhint { font-size: 13.5px; font-weight: 700; color: var(--muted); }

.pack.opening { animation: packOpen 0.72s cubic-bezier(0.35, 0, 0.4, 1) forwards; }
@keyframes packOpen {
  0% { transform: scale(1) rotate(0); }
  12% { transform: scale(1.02) rotate(-2.5deg); }
  24% { transform: scale(1.03) rotate(2.5deg); }
  36% { transform: scale(1.04) rotate(-2.5deg); }
  48% { transform: scale(1.05) rotate(2deg); }
  60% { transform: scale(1.07) rotate(-1deg); opacity: 1; }
  100% { transform: scale(1.65) rotate(0); opacity: 0; }
}
.packflash {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(circle at 50% 45%, rgba(255, 240, 190, 0.9) 0%, rgba(255, 215, 100, 0.5) 28%, transparent 62%);
  animation: packFlash 0.7s ease-out forwards;
}
@keyframes packFlash {
  0% { opacity: 0; transform: scale(0.6); }
  35% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.35); }
}

.card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; list-style: none; padding: 4px; }
.dcard {
  background: var(--face);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 14px 12px 12px;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.dcard > span { display: block; }
.posbadge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--pc);
  color: #101218;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.tierdot {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
  z-index: 2;
}
.tier1 { background: rgba(245, 179, 1, 0.2); color: #F0C449; }
.tier2 { background: rgba(200, 210, 225, 0.14); color: #C3CCDA; }
.tier3 { background: rgba(208, 144, 79, 0.16); color: #D0904F; }
.dcard .avatar {
  width: 52px; height: 52px;
  margin: 24px 0 10px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}
.dcard .avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.dcard .dname { font-weight: 800; font-size: 14px; line-height: 1.2; min-height: 34px; position: relative; }
.dcard .dmeta { font-size: 11.5px; color: var(--muted); font-weight: 700; margin-top: 2px; position: relative; }
.dcard .dppg { margin-top: 8px; font-size: 13px; font-weight: 800; position: relative; }
/* Label immer auf eigener Zeile: sonst haengt die Kartenhoehe an der Spaltenbreite
   und die Buehne springt beim Oeffnen je nach Viewport unterschiedlich weit */
.dcard .dppg span { color: var(--muted); font-weight: 700; font-size: 11px; display: block; }

.dcard.deal { animation: deal 0.5s cubic-bezier(0.2, 0.7, 0.3, 1.15) both; }
@keyframes deal {
  from { opacity: 0; transform: translateY(30px) rotateY(55deg) scale(0.82); }
  60% { opacity: 1; }
  to { opacity: 1; transform: none; }
}

/* Tier 1 glaenzt golden, Tier 2 silbern */
.dcard.shiny::before { content: ''; position: absolute; inset: -60% -30%; pointer-events: none; }
.dcard.shiny.gold {
  border-color: rgba(245, 179, 1, 0.75);
  background: linear-gradient(160deg, #262A32 45%, #332C18 115%);
  box-shadow: var(--shadow), 0 0 24px rgba(245, 179, 1, 0.18);
}
.dcard.shiny.gold::before {
  background: linear-gradient(115deg, transparent 40%, rgba(255, 230, 150, 0.28) 50%, rgba(255, 214, 100, 0.14) 54%, transparent 62%);
  animation: shine 2.6s ease-in-out infinite;
}
.dcard.shiny.gold .tierdot { background: var(--gold); color: #3d2e00; animation: pulse 1.6s ease-in-out infinite; }
.dcard.shiny.silver {
  border-color: rgba(190, 202, 218, 0.55);
  background: linear-gradient(160deg, #262A32 45%, #2B313C 115%);
  box-shadow: var(--shadow), 0 0 22px rgba(160, 178, 200, 0.14);
}
.dcard.shiny.silver::before {
  background: linear-gradient(115deg, transparent 40%, rgba(235, 242, 250, 0.22) 50%, rgba(186, 202, 220, 0.12) 54%, transparent 62%);
  animation: shine 3.1s ease-in-out infinite;
}
.dcard.shiny.silver .tierdot { background: linear-gradient(135deg, #E2E8EF, #A9B5C3); color: #39424e; animation: pulse 1.9s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }

.demo-again {
  display: block;
  margin: 14px auto 0;
  border: none;
  border-radius: 999px;
  padding: 11px 22px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 800;
  cursor: pointer;
  background: var(--face);
  color: #C6CCDA;
  box-shadow: var(--shadow);
}
.demo-again:active { transform: scale(0.97); }
.demo-again:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }

/* ---------- Crew-Sektion ---------- */
.crew { padding: 60px 0; text-align: center; }
.crew > p { color: var(--muted); font-weight: 600; font-size: 16.5px; max-width: 560px; margin: 0 auto 36px; }
.modes { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; text-align: left; }
.mode {
  position: relative;
  background: var(--face);
  border-radius: 24px;
  padding: 30px 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.mode .m-kicker { font-size: 11px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 8px; }
.mode.offline .m-kicker { color: var(--lime); }
.mode.online .m-kicker { color: var(--purple); }
.mode h3 { font-family: 'Archivo', sans-serif; font-style: italic; font-weight: 900; font-size: 24px; margin-bottom: 10px; }
.mode > p { color: var(--muted); font-weight: 600; font-size: 15px; }
.mode.online { border: 1px solid rgba(139, 92, 246, 0.35); }

/* ---------- Steps ---------- */
.steps { padding: 70px 0; text-align: center; }
.steps h2 { font-family: 'Archivo', sans-serif; font-style: italic; font-weight: 900; font-size: clamp(30px, 4vw, 44px); margin-bottom: 40px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { background: var(--face); border-radius: 24px; padding: 30px 24px; box-shadow: var(--shadow); text-align: left; }
.step .num {
  font-family: 'Archivo', sans-serif;
  font-style: italic;
  font-weight: 900;
  font-size: 44px;
  color: var(--lime);
}
.step h3 { font-size: 19px; font-weight: 800; margin: 8px 0 8px; }
.step p { color: var(--muted); font-weight: 600; font-size: 14.5px; }

/* ---------- FAQ ---------- */
.faq { padding: 40px 0 60px; max-width: 720px; margin: 0 auto; }
.faq h2 { font-family: 'Archivo', sans-serif; font-style: italic; font-weight: 900; font-size: clamp(28px, 3.6vw, 40px); text-align: center; margin-bottom: 32px; }
.faq details {
  background: var(--face);
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 800;
  font-size: 15.5px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  margin-left: auto;
  width: 10px; height: 10px;
  border-right: 3px solid var(--lime);
  border-bottom: 3px solid var(--lime);
  transform: rotate(45deg);
  transition: transform 0.25s;
  flex: none;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq details p { padding: 0 22px 18px; color: var(--muted); font-weight: 600; font-size: 14.5px; }

/* ---------- Abschluss ---------- */
.final { text-align: center; padding: 50px 0 90px; }
.final h2 { font-family: 'Archivo', sans-serif; font-style: italic; font-weight: 900; font-size: clamp(34px, 5vw, 54px); margin-bottom: 14px; }
.final p { color: var(--muted); font-weight: 600; margin-bottom: 30px; }
.final .kickoff { margin: 26px 0 0; }

footer { border-top: 1px solid var(--line); padding: 26px 0 40px; display: flex; gap: 16px; align-items: center; color: var(--muted); font-size: 13px; font-weight: 600; }
footer .spacer { flex: 1; }
footer a { color: var(--muted); }

/* ---------- Sticky-CTA (mobil) ---------- */
.stickycta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: none;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(20, 22, 27, 0.92);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.stickycta.show { transform: none; }
.stickycta .btn { display: block; width: 100%; text-align: center; padding: 14px; }

/* ---------- Reduzierte Bewegung ---------- */
@media (prefers-reduced-motion: reduce) {
  .pack, .packshine, .dcard.deal, .dcard.shiny::before, .dcard.shiny .tierdot, .orb,
  .psPack, .pscard, .pscard::before, .tcard::before, .heroglow, .marquee-track,
  .iconbadge, .becomes .arrow, .kickoff .dot, .btn.pulse, .livechip { animation: none; }
  .packflash { display: none; }
  .rv { opacity: 1; transform: none; transition: none; }
  .pack.psPack { display: none; }
  .pscard { position: relative; opacity: 1; transform: none; }
  .pscards { position: static; gap: 10px; flex-wrap: wrap; }
  .psstage { height: auto; }
  .heroshow, .finalshow { min-height: 0; padding: 20px 0; }
  .livechip { opacity: 1; }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding-top: 16px; gap: 10px; text-align: center; }
  .sub { margin-left: auto; margin-right: auto; }
  .cta-row { justify-content: center; }
  .heroshow { min-height: 330px; }
  .psstage { height: 320px; }
  .pack.psPack { width: 152px; height: 212px; padding: 12px 10px; }
  .psPack .packlogo { font-size: 18px; }
  .psPack .packsub { font-size: 8px; }
  .psPack .packstar { font-size: 21px; }
  .pscard { width: 116px; padding: 9px 8px 10px; }
  .pscard .pava { width: 46px; height: 46px; margin: 22px auto 6px; font-size: 14px; }
  .psname { font-size: 11px; }
  .pspts { font-size: 14.5px; }
  .ps1 { --x: -96px; }
  .ps3 { --x: 96px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .duelrow { gap: 10px; }
  .duelcard { padding: 18px 10px 14px; }
  .duelava { width: 48px; height: 48px; }
  .duelscore { font-size: 30px; }
  .duelvs { font-size: 20px; }
  .tier-cards { grid-template-columns: 1fr; max-width: 380px; }
  .phone { width: 240px; }
  .demo-phone { margin-top: 6px; }
  .feature { grid-template-columns: 1fr; gap: 30px; padding: 44px 0; }
  .feature.flip .f-img { order: 0; }
  .modes { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .stickycta { display: block; }
  .livechip.fire, .livechip.steal { left: 4%; }
  .livechip.td, .livechip.skill { right: 4%; }
}
