:root {
  --bg: #0b1120;
  --bg-elev: #111827;
  --bg-elev-2: #1a2234;
  --bg-sunken: #0d1424;
  --border: #1e293b;
  --border-light: #334155;
  --text: #f1f5f9;
  --text-dim: #94a3b8;
  --text-muted: #64748b;
  --accent: #38bdf8;
  --accent-dark: #0284c7;
  --success: #22c55e;
  --gold: #facc15;
  --danger: #ef4444;
  --pos-gk: #facc15;
  --pos-def: #38bdf8;
  --pos-mid: #22c55e;
  --pos-fwd: #ef4444;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11", "ss01";
  overflow-x: hidden;
  letter-spacing: -0.011em;
  position: relative;
}

/* Subtile Noise-Texture — macht Dark-Themes premium (Apple/Linear/Vercel-Trick) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header / Navigation — sticky, ruhig */
header {
  background: rgba(11, 17, 32, 0.6);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid transparent;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.25s ease, border-color 0.25s ease;
}

header.is-scrolled {
  background: rgba(11, 17, 32, 0.85);
  border-bottom-color: var(--border);
}

header .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 22px;
  color: var(--text);
  letter-spacing: 0.5px;
}

.brand-logo {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 2px 12px rgba(56, 189, 248, 0.2));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.brand:hover .brand-logo {
  transform: translateY(-1px);
  filter: drop-shadow(0 4px 16px rgba(56, 189, 248, 0.35));
}

nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
}

nav a {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 600;
}

nav a:hover { color: var(--text); text-decoration: none; }

/* Scroll-Progress-Bar oben */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #a78bfa, var(--accent));
  background-size: 200% 100%;
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 200;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.6);
  animation: progress-shine 3s linear infinite;
}
@keyframes progress-shine {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

/* Cursor-Spotlight (nur Desktop) */
.cursor-spotlight {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.08), rgba(129, 140, 248, 0.03) 40%, transparent 65%);
  pointer-events: none;
  z-index: 2;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.cursor-spotlight.is-active { opacity: 1; }

@media (hover: none), (max-width: 768px) {
  .cursor-spotlight { display: none; }
}

/* ═══ HERO ═══════════════════════════════════════════════════════════════ */
.hero {
  padding: 100px 0 140px;
  position: relative;
  overflow: hidden;
}

/* Dot-Grid-Pattern im Hero — mit radial-mask, dass es zu den Rändern ausfadet */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(56, 189, 248, 0.15) 1px, transparent 1.5px);
  background-size: 32px 32px;
  background-position: 0 0;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 75%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.hero-bg-glow {
  position: absolute;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.06), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-watermark {
  position: absolute;
  top: 50%;
  left: -80px;
  transform: translateY(-50%) rotate(-10deg);
  height: 720px;
  width: auto;
  opacity: 0.025;
  pointer-events: none;
  z-index: 0;
  filter: brightness(2);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 28px;
}

.pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.hero h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: var(--text);
}

.hero h1 .accent-word {
  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    #7dd3fc 30%,
    #ffffff 50%,
    #7dd3fc 70%,
    var(--accent) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: text-shimmer 4s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  display: inline-block;
}

@keyframes text-shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.hero .tagline {
  font-size: 18px;
  color: var(--text-dim);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-muted);
  font-size: 13px;
  flex-wrap: wrap;
}

.hero-trust span.dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.5;
}

/* Buttons — mit Sheen-Reflex-Effekt beim Hover */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.2s ease,
              border-color 0.2s ease,
              color 0.2s ease,
              box-shadow 0.25s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  font-family: inherit;
  letter-spacing: -0.01em;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 70%
  );
  transition: left 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn:hover::before { left: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #7dd3fc 100%);
  color: #0b1120;
  box-shadow:
    0 4px 20px -4px rgba(56, 189, 248, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  box-shadow:
    0 8px 32px -4px rgba(56, 189, 248, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: var(--border-light);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(56, 189, 248, 0.06);
}

/* ═══ META-STATS ═════════════════════════════════════════════════════════ */
.meta-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  margin-top: 0;
}

.meta-stat {
  text-align: left;
}

.meta-stat-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
}

.meta-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

/* ═══ PHONE MOCKUP ═══════════════════════════════════════════════════════ */
.hero-phone {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  perspective: 1400px;
}

/* Aurora-Halos hinterm Phone — mehrere colored glows die sich langsam bewegen */
.hero-phone::before,
.hero-phone::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.hero-phone::before {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.35), transparent 70%);
  top: 10%;
  left: 10%;
  animation: aurora-drift-1 12s ease-in-out infinite;
}
.hero-phone::after {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(129, 140, 248, 0.28), transparent 70%);
  bottom: 5%;
  right: 5%;
  animation: aurora-drift-2 14s ease-in-out infinite;
}

@keyframes aurora-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  50% { transform: translate(30px, -20px) scale(1.15); opacity: 1; }
}
@keyframes aurora-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(-25px, 30px) scale(1.1); opacity: 0.9; }
}

.phone-frame {
  width: 320px;
  height: 640px;
  background: #0a0f1a;
  border-radius: 44px;
  border: 8px solid #1a2036;
  padding: 12px;
  position: relative;
  z-index: 2;
  box-shadow:
    0 60px 120px -20px rgba(0, 0, 0, 0.75),
    0 20px 40px -10px rgba(56, 189, 248, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4);
  transform: perspective(1400px) rotateY(-8deg) rotateX(4deg) rotate(-2deg);
  animation: phone-float-3d 8s ease-in-out infinite;
  transform-style: preserve-3d;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 24px;
  background: #0a0f1a;
  border-radius: 0 0 16px 16px;
  z-index: 10;
}

@keyframes phone-float-3d {
  0%, 100% {
    transform: perspective(1400px) rotateY(-8deg) rotateX(4deg) rotate(-2deg) translateY(0);
  }
  50% {
    transform: perspective(1400px) rotateY(-6deg) rotateX(3deg) rotate(-2deg) translateY(-12px);
  }
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0f1729 0%, #0a0f1a 100%);
  border-radius: 32px;
  padding: 36px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 4px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-team {
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
}

.mock-brand {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--accent);
  opacity: 0.6;
}

.mock-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.mock-live-badge {
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.mock-live-badge .mock-live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--danger);
  margin-right: 4px;
  animation: pulse 1.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.mock-matchup {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 12px;
  background: rgba(56, 189, 248, 0.06);
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 14px;
}

.mock-team-side {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mock-team-name {
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 600;
}

.mock-score {
  font-size: 22px;
  font-weight: 900;
  color: var(--success);
}

.mock-score-lose { color: var(--text-dim); }

.mock-vs {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  padding: 0 4px;
}

.mock-section-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 4px 2px;
}

.mock-player-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mock-player {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.mock-pos {
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #fff;
}

.mock-pos-gk { background: var(--pos-gk); }
.mock-pos-def { background: var(--pos-def); }
.mock-pos-mid { background: var(--pos-mid); }
.mock-pos-fwd { background: var(--pos-fwd); }

.mock-name {
  flex: 1;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}

.mock-pts {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
}

/* ═══ REVEAL-ON-SCROLL ═══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ═══ SCROLLY (Sticky Phone Storytelling) ═══════════════════════════════ */
.scrolly {
  padding: 120px 0 60px;
  border-top: 1px solid var(--border);
  position: relative;
}

.scrolly-intro {
  margin-bottom: 40px;
}

.scrolly-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}

.scrolly-phone-wrap {
  position: relative;
  height: 100%;
}

.scrolly-phone-sticky {
  position: sticky;
  top: 15vh;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70vh;
}

.scrolly-phone-sticky .phone-frame {
  transform: none;
  animation: none;
  position: relative;
  overflow: hidden;
}

/* Multiple screens gestackt, eine ist aktiv */
.scrolly-phone-sticky .phone-screen {
  position: absolute;
  inset: 12px;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition:
    opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  border-radius: 32px;
}

.scrolly-phone-sticky .phone-screen.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.scrolly-steps {
  display: flex;
  flex-direction: column;
}

.scrolly-step {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 0;
  opacity: 0.3;
  transform: translateX(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.scrolly-step.is-active {
  opacity: 1;
  transform: none;
}

.scrolly-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.scrolly-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.scrolly-step h3 {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.8px;
  margin-bottom: 18px;
  color: var(--text);
  line-height: 1.15;
}

.scrolly-step p {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 440px;
}

.scrolly-step ul {
  margin-top: 20px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.scrolly-step ul li {
  font-size: 14px;
  color: var(--text-dim);
  padding-left: 20px;
  position: relative;
}

.scrolly-step ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

/* Progress-Indikator rechts vom Phone */
.scrolly-progress {
  position: absolute;
  right: -32px;
  top: 20%;
  bottom: 20%;
  width: 2px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.scrolly-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--accent);
  height: 33%;
  transition: height 0.5s ease, top 0.5s ease;
}

/* ═══ SHOWCASE (Legacy — nicht mehr genutzt, wird per HTML ersetzt) ═════ */
.showcase {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
  align-items: end;
}

.showcase-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.phone-frame-sm {
  width: 260px;
  height: 520px;
  padding: 10px;
  border-width: 6px;
  border-radius: 36px;
  animation: none;
  transform: none;
}

.phone-frame-sm::before {
  width: 82px;
  height: 20px;
}

.phone-frame-sm .phone-screen {
  padding: 30px 12px 12px;
  border-radius: 26px;
}

.phone-frame-sm .mock-team,
.phone-frame-sm .mock-brand { font-size: 11px; }
.phone-frame-sm .mock-avatar { width: 20px; height: 20px; }
.phone-frame-sm .mock-name { font-size: 11px; }
.phone-frame-sm .mock-pos { font-size: 8px; padding: 2px 5px; }

.tilt-left { transform: rotate(-4deg); }
.tilt-right { transform: rotate(4deg); }

.tilt-left:hover,
.tilt-right:hover,
.phone-frame-sm:hover { transform: rotate(0) translateY(-6px); transition: transform 0.35s ease; }

.showcase-label {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 240px;
}

.showcase-label strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}

.showcase-label span {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ── Draft-Screen ── */
.mock-draft-timer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: rgba(56, 189, 248, 0.06);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 10px;
}
.mock-draft-round { font-size: 10px; color: var(--text-dim); font-weight: 700; }
.mock-draft-clock {
  font-size: 18px;
  font-weight: 900;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: 1px;
}
.mock-draft-pickbox {
  padding: 14px 12px;
  background: rgba(56, 189, 248, 0.06);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 12px;
  text-align: center;
}
.mock-draft-label {
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.mock-draft-team { font-size: 16px; font-weight: 900; color: var(--text); }
.mock-pick-num {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

/* ── Field/Aufstellung-Screen ── */
.mock-formation-badge {
  align-self: flex-start;
  padding: 3px 9px;
  border-radius: 6px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #86efac;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.mock-pitch {
  position: relative;
  flex: 1;
  min-height: 280px;
  background:
    linear-gradient(180deg, #0d3b1f 0%, #0a2f18 100%);
  border-radius: 10px;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.mock-pitch-lines {
  position: absolute;
  inset: 0;
  background:
    /* Mittellinie */
    linear-gradient(to bottom, transparent calc(50% - 1px), rgba(255,255,255,0.15) 50%, transparent calc(50% + 1px)),
    /* Mittelkreis */
    radial-gradient(circle at 50% 50%, transparent 26px, rgba(255,255,255,0.15) 26px, rgba(255,255,255,0.15) 27px, transparent 27px);
  pointer-events: none;
}

.mock-pitch::before {
  /* obere Strafraum-Linie */
  content: '';
  position: absolute;
  top: 6px;
  left: 25%;
  width: 50%;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.15);
  border-top: none;
  pointer-events: none;
}

.mock-pitch::after {
  /* untere Strafraum-Linie */
  content: '';
  position: absolute;
  bottom: 6px;
  left: 25%;
  width: 50%;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.15);
  border-bottom: none;
  pointer-events: none;
}

.mock-pitch-row {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  position: relative;
  z-index: 2;
}

.mock-p-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 10px -2px rgba(0,0,0,0.6);
  border: 2px solid rgba(255,255,255,0.15);
}

.mock-c-gk { background: var(--pos-gk); }
.mock-c-def { background: var(--pos-def); }
.mock-c-mid { background: var(--pos-mid); }
.mock-c-fwd { background: var(--pos-fwd); }

.mock-bench-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
}
.mock-bench-label { font-size: 10px; font-weight: 800; color: var(--text-dim); letter-spacing: 0.5px; }
.mock-bench-count { font-size: 10px; color: var(--text-muted); }

/* ── Waiver-Screen ── */
.mock-filter-row {
  display: flex;
  gap: 6px;
  overflow-x: hidden;
}

.mock-chip {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 9px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.3px;
}

.mock-chip-active {
  background: rgba(56, 189, 248, 0.18);
  border-color: rgba(56, 189, 248, 0.5);
  color: var(--accent);
}

.mock-add-btn {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--accent);
  color: #0b1120;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.mock-waiver-status {
  align-self: flex-start;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}
.mock-waiver-status .mock-live-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.4s ease-in-out infinite;
}

/* Section-Divider — Gradient-Linie mit Dot in der Mitte */
.section-divider {
  height: 1px;
  max-width: 1080px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
  position: relative;
}

.section-divider::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.6);
}

/* ═══ STEPS ═════════════════════════════════════════════════════════════ */
.steps {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
  perspective: 1200px;
}

.step-card {
  position: relative;
  padding: 32px 28px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              background 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.step-card:hover {
  border-color: rgba(56, 189, 248, 0.25);
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.03), transparent);
}

.step-card > * {
  transform: translateZ(0);
  transition: transform 0.3s ease;
}

.step-card:hover .step-num {
  transform: translateZ(30px);
}

.step-card:hover h3 {
  transform: translateZ(20px);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
}

.step-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
  letter-spacing: -0.2px;
}

.step-card p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ═══ FEATURES ══════════════════════════════════════════════════════════ */
.features {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  margin-top: 64px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

/* ═══ BENTO-GRID ══════════════════════════════════════════════════════ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 16px;
  margin-top: 64px;
}

.bento {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease,
              background 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bento:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.35);
  background: var(--bg-elev-2);
}

.bento::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(56, 189, 248, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.bento:hover::before { opacity: 1; }

.bento h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.2px;
  margin-top: 4px;
}

.bento p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

.bento .feature-icon {
  align-self: flex-start;
}

/* Hero-Card: 2 Cols × 2 Rows */
.bento-big {
  grid-column: span 2;
  grid-row: span 2;
  padding: 0;
  display: grid;
  grid-template-rows: 1fr auto;
}

.bento-big .bento-content {
  padding: 32px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.bento-big h3 {
  font-size: 26px;
  letter-spacing: -0.5px;
}

.bento-big p {
  font-size: 15px;
  max-width: 480px;
}

/* Visuelles Widget im großen Card: Draft-Timer + fließende Picks */
.bento-visual {
  position: relative;
  height: 100%;
  min-height: 200px;
  padding: 32px 32px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  overflow: hidden;
}

.draft-timer-widget {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: "Inter", monospace;
  font-variant-numeric: tabular-nums;
  position: relative;
  z-index: 2;
}

.draft-timer-num {
  font-size: 88px;
  font-weight: 800;
  background: linear-gradient(180deg, #ffffff 0%, var(--accent) 130%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -3px;
  line-height: 1;
  text-shadow: 0 0 60px rgba(56, 189, 248, 0.4);
}

.draft-timer-unit {
  font-size: 20px;
  color: var(--text-dim);
  font-weight: 600;
}

.draft-picks-flow {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
  z-index: 2;
}

.draft-pick-mini {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 600;
  animation: pick-drift 4s ease-in-out infinite;
}
.draft-pick-mini:nth-child(1) { animation-delay: 0s; }
.draft-pick-mini:nth-child(2) { animation-delay: 0.5s; }
.draft-pick-mini:nth-child(3) { animation-delay: 1s; }
.draft-pick-mini:nth-child(4) { animation-delay: 1.5s; }

@keyframes pick-drift {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(-4px); opacity: 1; }
}

.dpm-pos {
  padding: 2px 5px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.3px;
}
.dpm-pos.gk { background: var(--pos-gk); color: #1a2234; }
.dpm-pos.def { background: var(--pos-def); }
.dpm-pos.mid { background: var(--pos-mid); }
.dpm-pos.fwd { background: var(--pos-fwd); }

.bento-visual::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, var(--bg-elev));
  pointer-events: none;
  z-index: 1;
}

/* Wide-Card unten: Freundeskreise-USP */
.bento-wide {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.bento-wide .bento-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bento-wide h3 {
  font-size: 24px;
  letter-spacing: -0.5px;
}

.bento-wide p {
  max-width: 500px;
  font-size: 15px;
}

.bento-stats {
  display: flex;
  gap: 32px;
  padding: 20px 24px;
  background: rgba(56, 189, 248, 0.04);
  border: 1px solid rgba(56, 189, 248, 0.15);
  border-radius: 14px;
}

.mini-stat {
  text-align: center;
  min-width: 80px;
}

.mini-stat-num {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}

.mini-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.2px;
}

@media (max-width: 900px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-big, .bento-wide { grid-column: span 1; grid-row: auto; }
  .bento-big { grid-template-rows: auto auto; }
  .bento-wide { grid-template-columns: 1fr; }
  .bento-stats { justify-content: space-around; }
}

/* ═══ FAQ ═══════════════════════════════════════════════════════════ */
.faq {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.faq-list {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.faq-item[open] {
  border-color: rgba(56, 189, 248, 0.3);
  background: var(--bg-elev-2);
}

.faq-item summary {
  padding: 22px 26px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.1px;
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { color: var(--accent); }

.faq-toggle {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              background 0.3s ease;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--text-dim);
  border-radius: 1px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.faq-toggle::before {
  top: 50%;
  left: 25%;
  right: 25%;
  height: 1.5px;
  transform: translateY(-50%);
}
.faq-toggle::after {
  left: 50%;
  top: 25%;
  bottom: 25%;
  width: 1.5px;
  transform: translateX(-50%);
}

.faq-item[open] .faq-toggle {
  transform: rotate(180deg);
  border-color: var(--accent);
  background: rgba(56, 189, 248, 0.1);
}
.faq-item[open] .faq-toggle::before { background: var(--accent); }
.faq-item[open] .faq-toggle::after {
  transform: translateX(-50%) scaleY(0);
}

.faq-body {
  padding: 0 26px 24px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
  max-width: 640px;
}

.faq-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.faq-body em { font-style: normal; color: var(--text); font-weight: 500; }

.feature {
  background: var(--bg);
  padding: 36px 30px;
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

/* Rotierende conic-gradient Border beim Hover */
.feature::after {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 90deg,
    var(--accent) 130deg,
    rgba(129, 140, 248, 0.8) 150deg,
    transparent 190deg,
    transparent 360deg
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: rotate-conic 4s linear infinite;
  animation-play-state: paused;
  pointer-events: none;
  z-index: 1;
}

.feature:hover::after {
  opacity: 1;
  animation-play-state: running;
}

@keyframes rotate-conic {
  to { transform: rotate(360deg); }
}

.feature:hover {
  background: var(--bg-elev);
}

.feature:hover::before {
  opacity: 1;
}

.feature:hover .feature-icon {
  border-color: var(--accent);
  color: var(--accent);
  transform: scale(1.05);
  box-shadow: 0 0 24px -4px rgba(56, 189, 248, 0.35);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: var(--accent);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}

.feature-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  letter-spacing: -0.1px;
}

.feature p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.65;
}

/* Section headings */
.section-title {
  font-size: 44px;
  font-weight: 700;
  text-align: center;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #94a3b8 130%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.section-subtitle {
  text-align: center;
  color: var(--text-dim);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
  letter-spacing: -0.01em;
}

/* ═══ STORES CTA ════════════════════════════════════════════════════════ */
.stores {
  padding: 120px 0 140px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.store-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 10px;
  min-width: 200px;
  cursor: not-allowed;
  color: var(--text-muted);
}

.store-badge:hover { text-decoration: none; }

.store-badge-icon {
  width: 22px;
  height: 22px;
  color: var(--text-dim);
}

.store-badge-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.store-badge-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.store-badge-small {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.store-badge-big {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dim);
}

.store-badge-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 5px 12px;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.store-badge-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ═══ FOOTER ════════════════════════════════════════════════════════════ */
footer {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  padding: 56px 0 40px;
  margin-top: 0;
}

footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.footer-logo {
  height: 72px;
  width: auto;
  opacity: 0.85;
  filter: drop-shadow(0 4px 20px rgba(56, 189, 248, 0.15));
}

footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

footer .copyright {
  color: var(--text-muted);
  font-size: 13px;
}

footer nav ul {
  gap: 20px;
}

/* ═══ LEGAL PAGES (unangetastet!) ═════════════════════════════════════ */
.legal {
  padding: 60px 0 100px;
}

.legal h1 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 24px;
}

.legal h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--text);
}

.legal h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 20px 0 8px;
  color: var(--text-dim);
}

.legal p, .legal ul, .legal ol {
  margin-bottom: 12px;
  color: var(--text-dim);
}

.legal ul, .legal ol { padding-left: 24px; }
.legal li { margin-bottom: 6px; }

.legal .updated {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 24px;
}

.placeholder {
  background: rgba(245, 158, 11, 0.08);
  border: 1px dashed var(--gold);
  border-radius: 6px;
  padding: 2px 8px;
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
}

.notice-box {
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 10px;
  padding: 12px 16px;
  color: #7dd3fc;
  font-size: 14px;
  line-height: 1.55;
  margin: 12px 0 24px;
}

/* ═══ RESPONSIVE ═══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .hero .tagline { margin-left: auto; margin-right: auto; }
  .cta-row { justify-content: center; }
  .hero-trust { justify-content: center; }
  .steps-grid { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; gap: 56px; }
  .tilt-left, .tilt-right { transform: none; }

  /* Scrolly kollabiert auf Mobile — kein Sticky */
  .scrolly-grid { grid-template-columns: 1fr; gap: 40px; }
  .scrolly-phone-sticky { position: static; height: auto; }
  .scrolly-step { min-height: auto; opacity: 1; transform: none; padding: 32px 0; }
  .scrolly-step h3 { font-size: 26px; }
  .scrolly-progress { display: none; }
}

@media (max-width: 640px) {
  .hero { padding: 40px 0 60px; }
  .hero h1 { font-size: 38px; letter-spacing: -0.5px; }
  .hero .tagline { font-size: 16px; }
  .phone-frame { width: 260px; height: 520px; }
  .section-title { font-size: 30px; }
  .section-subtitle { font-size: 15px; }
  .steps, .features, .stores, .showcase { padding: 60px 0; }
  nav ul { gap: 16px; }
  nav a { font-size: 13px; }
  footer .row { flex-direction: column; text-align: center; }
}
