/* Fonts loaded via functions.php */
:root {
  /* Dark BG */
  --sw-black: #06060b;
  --sw-dark-1: #0c0c14;
  --sw-dark-2: #12121e;
  --sw-dark-3: #1a1a2e;
  --sw-dark-4: #24243a;
  --sw-dark-5: #2e2e48;

  /* Accents */
  --sw-neon-red: #ff2d55;
  --sw-neon-blue: #00aaff;
  --sw-neon-purple: #8b5cf6;
  --sw-orange: #e8730e;
  --sw-savings: #2ea84a;
  --sw-cost-red: #e8430e;

  /* Text */
  --sw-white: #f0f0f5;
  --sw-g1: #d4d4e0; --sw-gray-100: #d4d4e0;
  --sw-g2: #a8a8be; --sw-gray-200: #a8a8be;
  --sw-g3: #7c7c98; --sw-gray-300: #7c7c98;
  --sw-g4: #505068; --sw-gray-400: #505068;
  --sw-g5: #38384e; --sw-gray-500: #38384e;

  /* Semantic */
  --sw-success: #34d399;
  --sw-warning: #fbbf24;
  --sw-error: #f87171;

  /* Gradients */
  --grad-brand: linear-gradient(135deg, #ff2d55, #8b5cf6, #00aaff);
  --grad-card: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));

  /* Fonts */
  --fd: 'Outfit', sans-serif;
  --fb: 'Plus Jakarta Sans', sans-serif;
  --fm: 'JetBrains Mono', monospace;

  /* Spacing (4px base) */
  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px;
  --sp-5: 20px; --sp-6: 24px; --sp-8: 32px; --sp-10: 40px;
  --sp-12: 48px; --sp-16: 64px; --sp-24: 96px;

  /* Radii */
  --r-sm: 6px; --r-md: 10px; --r-lg: 16px; --r-xl: 24px; --r-full: 9999px;

  /* Motion */
  --ease: cubic-bezier(.16, 1, .3, 1);
  --spring: cubic-bezier(.34, 1.56, .64, 1);
  --dur-fast: 150ms; --dur-norm: 250ms; --dur-slow: 400ms;

  /* Focus */
  --focus: 0 0 0 3px rgba(0, 170, 255, 0.4);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fb);
  background: var(--sw-black);
  color: var(--sw-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sw-neon-blue); text-decoration: none; }
a:hover { color: var(--sw-white); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--sp-6); }

/* Typografie */
h1, h2, h3, h4 {
  font-family: var(--fd);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; letter-spacing: -1.5px; }
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 600; }

.overline {
  font-family: var(--fm);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.subtitle {
  font-size: 1rem;
  color: var(--sw-g2);
  line-height: 1.7;
}
.mono { font-family: var(--fm); }
.gradient-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section { padding: var(--sp-24) var(--sp-6); }
.section-dark1 { background: var(--sw-dark-1); }
.section-dark2 { background: var(--sw-dark-2); }
.text-center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--fd); font-weight: 600; font-size: 14px;
  padding: 10px 24px; border: none; border-radius: var(--r-md);
  cursor: pointer; transition: all var(--dur-norm) var(--ease);
  text-decoration: none;
}
.btn:focus-visible { box-shadow: var(--focus); }
.btn-primary {
  background: var(--sw-neon-red); color: #fff;
  box-shadow: 0 4px 20px rgba(255, 45, 85, 0.3);
}
.btn-primary:hover {
  background: #ff4466; color: #fff;
  box-shadow: 0 6px 28px rgba(255, 45, 85, 0.4);
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.06); color: var(--sw-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); }
.btn-sm { font-size: 12px; padding: 6px 16px; }
.btn-lg { font-size: 16px; padding: 14px 32px; border-radius: var(--r-lg); }

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  transition: background var(--dur-norm) ease, border-color var(--dur-norm) ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6, 6, 11, 0.9);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: var(--fd); font-weight: 800; font-size: 1.2rem;
  text-decoration: none;
}
.nav-links { display: flex; gap: var(--sp-8); }
.nav-links a {
  font-family: var(--fd); font-weight: 500; font-size: 0.9rem;
  color: var(--sw-g2); text-decoration: none;
  transition: color var(--dur-fast) ease;
}
.nav-links a:hover { color: var(--sw-white); }

/* Hamburger */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; position: relative;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; background: var(--sw-white);
  border-radius: 1px; position: absolute; left: 6px;
  transition: all var(--dur-fast) ease;
}
.nav-toggle span:nth-child(1) { top: 10px; }
.nav-toggle span:nth-child(2) { top: 15px; }
.nav-toggle span:nth-child(3) { top: 20px; }

/* Hero */
.hero {
  padding: 140px 0 80px; position: relative; overflow: hidden;
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(255, 45, 85, 0.12), transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(0, 170, 255, 0.08), transparent 50%);
}
.hero-inner {
  display: flex; align-items: center; gap: var(--sp-16);
  position: relative;
}
.hero-text { flex: 1 1 45%; }
.hero-mockups {
  flex: 0 0 55%; display: flex; justify-content: center; align-items: center;
}
.hero-mockups img {
  width: 120%; max-width: 800px; height: auto;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 18px; border-radius: var(--r-full);
  margin-bottom: var(--sp-6);
}
.hero-actions { display: flex; gap: var(--sp-4); margin-top: var(--sp-8); flex-wrap: wrap; align-items: center; }
.app-store-badge img {
  height: 48px; width: auto; display: block;
  transition: opacity var(--dur-fast) ease;
}
.app-store-badge:hover img { opacity: 0.85; }

/* Phone Mockups (Feature-Sektion) */
.phone {
  border-radius: 20px; overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.phone img { width: 100%; height: auto; }

/* Stats */
.stats-section { padding: var(--sp-12) var(--sp-6); }
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 900px; margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.stat {
  padding: var(--sp-8) var(--sp-4); text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.stat:last-child { border-right: none; }
.stat-value {
  font-family: var(--fd); font-size: 1.6rem; font-weight: 800;
  letter-spacing: -1px; display: block;
}
.stat-label {
  font-family: var(--fm); font-size: 0.7rem;
  color: var(--sw-g3); margin-top: 4px; display: block;
  text-transform: uppercase; letter-spacing: 1px;
}

/* Features Sticky Scroll */
.features { padding: var(--sp-24) 0; }
.features-inner { display: flex; gap: var(--sp-16); align-items: flex-start; }
.features-phone {
  flex: 0 0 50%; position: sticky; top: 10vh;
  display: flex; justify-content: center;
}
.phone-sticky {
  width: 100%; max-width: 600px; border-radius: 0; overflow: hidden;
  border: none;
  box-shadow: none;
}
.phone-sticky img { transition: opacity var(--dur-slow) var(--ease); }
.features-list { flex: 1 1 50%; display: flex; flex-direction: column; gap: var(--sp-16); }

.feature-block {
  display: flex; gap: var(--sp-6); padding: var(--sp-10);
  border-radius: var(--r-xl); position: relative;
  opacity: 0; transform: translateY(20px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
.feature-block.visible { opacity: 1; transform: translateY(0); }
.feature-accent {
  width: 4px; border-radius: 2px; flex-shrink: 0;
  align-self: stretch;
}
.feature-content { flex: 1; }
.feature-content h2 { margin-bottom: var(--sp-4); font-size: 1.5rem; }
.feature-content .subtitle { margin-bottom: var(--sp-6); }

.feature-checks {
  list-style: none; padding: 0; margin-bottom: var(--sp-6);
}
.feature-checks li {
  padding: var(--sp-2) 0; color: var(--sw-g2); font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.feature-checks li:last-child { border-bottom: none; }
.feature-checks li::before {
  content: '\2713\0020'; color: var(--sw-savings); font-weight: 700;
}
.feature-link {
  font-family: var(--fd); font-weight: 600; font-size: 0.9rem;
  text-decoration: none;
}

/* Provider */
.provider-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: var(--sp-3); max-width: 800px; margin: 0 auto;
}
.provider {
  padding: var(--sp-2) var(--sp-5); border-radius: var(--r-md);
  font-family: var(--fd); font-weight: 600; font-size: 0.85rem;
  color: #fff; transition: transform var(--dur-norm) var(--ease);
}
.provider:hover { transform: translateY(-2px); }

/* Press */
.press-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-6); max-width: 1200px; margin: 0 auto;
}
.press-card {
  background: var(--grad-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-lg); padding: var(--sp-8);
  transition: all var(--dur-norm) var(--ease);
}
.press-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.1);
}
.press-source {
  font-family: var(--fm); font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: var(--sp-2);
}
.press-title {
  font-family: var(--fd); font-weight: 700; font-size: 1rem;
  color: var(--sw-white); margin-bottom: var(--sp-2); line-height: 1.4;
}
.press-quote { color: var(--sw-g3); font-size: 0.9rem; line-height: 1.6; margin-bottom: var(--sp-3); }
.press-link { font-weight: 600; font-size: 0.85rem; text-decoration: none; }

/* FAQ */
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.faq-q {
  font-family: var(--fd); font-weight: 700; font-size: 1.05rem;
  color: var(--sw-white); padding: var(--sp-5) 0; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-q::after {
  content: '+'; font-size: 1.2rem; color: var(--sw-g3);
  transition: transform var(--dur-fast) ease;
}
details[open] .faq-q::after { content: '\2212'; }
.faq-q::-webkit-details-marker { display: none; }
.faq-a {
  color: var(--sw-g2); line-height: 1.7; padding: 0 0 var(--sp-5);
}

/* Blog */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-6); max-width: 1000px; margin: 0 auto;
}
.blog-card {
  background: var(--grad-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-lg); padding: var(--sp-8);
  transition: all var(--dur-norm) var(--ease);
}
.blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.1);
}
.blog-tag {
  font-family: var(--fm); font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: var(--sp-2);
}
.blog-title {
  font-family: var(--fd); font-weight: 700; color: var(--sw-white);
  margin-bottom: var(--sp-2);
}
.blog-teaser { color: var(--sw-g3); font-size: 0.9rem; line-height: 1.6; margin-bottom: var(--sp-3); }
.blog-link { color: var(--sw-neon-blue); font-weight: 600; font-size: 0.85rem; text-decoration: none; }

/* CTA */
.cta-section {
  padding: var(--sp-24) var(--sp-6); position: relative; overflow: hidden;
  background: var(--sw-dark-1);
}
.cta-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(255, 45, 85, 0.1), transparent 60%);
}

/* Footer */
.footer {
  background: var(--sw-black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--sw-g4); text-align: center;
  padding: var(--sp-12) var(--sp-6) var(--sp-8); font-size: 0.85rem;
}
.footer p { color: var(--sw-g4); margin: 0; }
.footer p + p { margin-top: var(--sp-3); }
.footer a { color: var(--sw-g4); text-decoration: none; transition: color var(--dur-fast) ease; }
.footer a:hover { color: var(--sw-white); }

/* Blog-Index */
.blog-index {
  display: flex; flex-direction: column; gap: var(--sp-1);
}
.blog-index-card {
  display: block; text-decoration: none;
  padding: var(--sp-5) var(--sp-6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--dur-fast) ease;
}
.blog-index-card:hover {
  background: rgba(255, 255, 255, 0.03);
}
.blog-index-card h3 {
  color: var(--sw-white); margin-top: var(--sp-1);
  font-size: 1.05rem;
}
.blog-index-card:hover h3 { color: var(--sw-neon-blue); }

/* Kategorie-Badge */
.blog-index-card .cat-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-right: 8px;
}
.cat-badge--kosten { background: rgba(0, 170, 255, 0.15); color: var(--sw-neon-blue); }
.cat-badge--sport { background: rgba(251, 191, 36, 0.15); color: var(--sw-warning); }
.cat-badge--serien { background: rgba(139, 92, 246, 0.15); color: var(--sw-neon-purple); }

/* Kategorie-Tabs */
.cat-tabs {
  display: flex;
  gap: var(--sp-2);
  margin-bottom: var(--sp-8);
  flex-wrap: wrap;
}
.cat-tab {
  background: rgba(255, 255, 255, 0.06);
  color: var(--sw-g2);
  border: none;
  padding: var(--sp-2) var(--sp-5);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--dur-fast) ease;
  font-family: inherit;
}
.cat-tab:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--sw-white);
}
.cat-tab.active {
  background: var(--sw-neon-blue);
  color: #fff;
}

/* Blog-Artikel */
.blog-article {
  max-width: 700px;
}
.blog-article h1 {
  margin-bottom: var(--sp-8);
}
.article-content h2 {
  margin-top: var(--sp-10); margin-bottom: var(--sp-4);
  font-size: 1.3rem;
}
.article-content h3 {
  margin-top: var(--sp-6); margin-bottom: var(--sp-2);
}
.article-content p {
  color: var(--sw-g2); line-height: 1.8; margin-bottom: var(--sp-4);
}
.article-content ul, .article-content ol {
  color: var(--sw-g2); line-height: 1.8;
  padding-left: var(--sp-6); margin-bottom: var(--sp-4);
}
.article-content li { margin-bottom: var(--sp-2); }
.article-content strong { color: var(--sw-white); }
.article-content table {
  width: 100%; border-collapse: collapse; margin-bottom: var(--sp-6);
  font-size: 0.9rem;
}
.article-content th {
  text-align: left; padding: var(--sp-3) var(--sp-4);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  color: var(--sw-white); font-family: var(--fd); font-weight: 600;
}
.article-content td {
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--sw-g2);
}
.article-content img {
  border-radius: var(--r-lg); margin: var(--sp-6) 0;
}

/* Legal-Seiten */
.legal-content {
  max-width: 700px;
}
.legal-content h1 {
  margin-bottom: var(--sp-8);
}
.legal-content h2 {
  margin-top: var(--sp-10); margin-bottom: var(--sp-4);
  font-size: 1.3rem;
}
.legal-content h3 {
  margin-top: var(--sp-6); margin-bottom: var(--sp-2);
}
.legal-content p {
  color: var(--sw-g2); line-height: 1.7; margin-bottom: var(--sp-4);
}
.legal-content ul {
  color: var(--sw-g2); line-height: 1.7;
  padding-left: var(--sp-6); margin-bottom: var(--sp-4);
}
.legal-content li { margin-bottom: var(--sp-1); }
.legal-content hr {
  border: none; border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: var(--sp-10) 0;
}
.legal-content hr.accent {
  border-top: 2px solid var(--sw-neon-blue);
  margin: var(--sp-12) 0;
}
.legal-content strong { color: var(--sw-white); }

/* Feature-Seiten */
.feature-hero {
  padding: 120px 0 60px; position: relative;
}
.feature-hero-inner {
  display: flex; align-items: center; gap: var(--sp-16);
}
.feature-hero-text { flex: 1 1 55%; }
.feature-hero-text h1 { margin-top: var(--sp-3); }
.feature-hero-text .subtitle { margin-top: var(--sp-4); max-width: 500px; }
.feature-hero-img {
  flex: 0 0 40%; display: flex; justify-content: center;
}
.feature-hero-img img {
  width: 100%; max-width: 420px; height: auto;
}

/* Sport-Grid */
.sport-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-6);
}
.sport-card {
  background: var(--grad-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-lg); padding: var(--sp-6);
}
.sport-icon { font-size: 1.5rem; display: block; margin-bottom: var(--sp-2); }
.sport-card h3 { font-size: 1rem; margin-bottom: var(--sp-1); }
.sport-card p { color: var(--sw-g3); font-size: 0.85rem; line-height: 1.5; }

/* Steps */
.steps { display: flex; flex-direction: column; gap: var(--sp-8); }
.step {
  display: flex; gap: var(--sp-6); align-items: flex-start;
}
.step-num {
  flex-shrink: 0; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--sw-neon-red); color: #fff;
  font-family: var(--fd); font-weight: 800; font-size: 1.1rem;
  border-radius: 50%;
}
.step h3 { margin-bottom: var(--sp-1); }
.step .subtitle { margin-top: var(--sp-1); }

/* Screenshot-Grid */
.screenshot-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-6);
}
.screenshot-card { text-align: center; }
.screenshot-card img {
  width: 100%; max-width: 300px; height: auto;
  border-radius: var(--r-lg); margin: 0 auto var(--sp-3);
}
.screenshot-card p {
  font-family: var(--fm); font-size: 0.75rem; color: var(--sw-g3);
  text-transform: uppercase; letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav .btn-primary { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--sw-dark-1); padding: var(--sp-6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .hero { padding: 100px 0 40px; }
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-text { flex: 1 1 100%; }
  .hero-pill { font-size: 10px; }
  .hero-mockups { flex: 1 1 100%; margin-top: var(--sp-6); }
  .hero-mockups img { max-width: 320px; width: 85%; }
  .hero-actions { justify-content: center; }
  .app-store-badge { display: flex; justify-content: center; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .stat:nth-child(2) { border-right: none; }

  .features-inner { flex-direction: column; }
  .features-phone {
    position: relative; top: auto; flex: none;
    width: 100%; margin-bottom: var(--sp-4);
  }
  .phone-sticky { width: 260px; margin: 0 auto; }

  .feature-block { padding: var(--sp-6); }
  .feature-content h2 { font-size: 1.2rem; }

  .feature-hero { padding: 100px 0 40px; }
  .feature-hero-inner { flex-direction: column; text-align: center; }
  .feature-hero-text { flex: 1 1 100%; }
  .feature-hero-text .subtitle { margin-left: auto; margin-right: auto; }
  .feature-hero-img { flex: 1 1 100%; margin-top: var(--sp-6); }
  .feature-hero-img img { max-width: 280px; }
  .feature-hero .hero-actions { justify-content: center; }

  .screenshot-grid { grid-template-columns: 1fr; }
  .screenshot-card img { max-width: 240px; }
}

/* ===== Ausgelagerte Inline-Styles ===== */

/* Hero-Bereich */
.hero-overline {
  color: var(--sw-neon-red);
  letter-spacing: 1.5px;
}
.hero-subtitle {
  max-width: 480px;
  margin-top: var(--sp-4);
}
.hero-app-store-badge {
  margin-top: var(--sp-4);
}

/* Feature-Akzentfarben */
.feature-accent--red { background: var(--sw-neon-red); }
.feature-accent--blue { background: var(--sw-neon-blue); }
.feature-accent--purple { background: var(--sw-neon-purple); }

.overline--red { color: var(--sw-neon-red); }
.overline--blue { color: var(--sw-neon-blue); }
.overline--purple { color: var(--sw-neon-purple); }

.feature-link--red { color: var(--sw-neon-red); }
.feature-link--blue { color: var(--sw-neon-blue); }
.feature-link--purple { color: var(--sw-neon-purple); }

/* Provider-Badges */
.provider--netflix { background: #e50914; }
.provider--disney { background: #113ccf; }
.provider--prime { background: #00a8e1; }
.provider--apple { background: #2a2a2a; border: 1px solid rgba(255,255,255,.2); }
.provider--sky { background: #6ab04c; }
.provider--dazn { background: #c8b800; color: #000; }
.provider--paramount { background: #0064ff; }
.provider--hbo { background: #7b2d8b; }
.provider--rtl { background: #d21e2b; }
.provider--magenta { background: #e20074; }
.provider--magentasport { background: #e20074; }
.provider--waipu { background: #4ecdc4; color: #000; }
.provider--crunchyroll { background: #f47521; }
.provider--hulu { background: #1ce783; color: #000; }
.provider--peacock { background: #000; border: 1px solid rgba(255,255,255,.2); }
.provider--espn { background: #cc0000; }
.provider--youtubetv { background: #ff0000; }
.provider--discovery { background: #0033a0; }
.provider--joyn { background: #1e1e1e; border: 1px solid rgba(255,255,255,.1); color: #23D96E; }
.provider--youtube { background: #ff0000; }
.provider--dyn { background: #003b7a; }

/* Subtitle-Varianten */
.subtitle--provider {
  max-width: 620px;
  margin: var(--sp-3) auto var(--sp-12);
}
.subtitle--section-intro {
  margin: var(--sp-3) auto var(--sp-12);
}
.subtitle--blog-intro {
  margin-bottom: var(--sp-8);
}

/* Presse-Karten-Farben */
.press-card--blue {
  border-left: 4px solid #00aaff;
}
.press-card--blue .press-source,
.press-card--blue .press-link {
  color: #00aaff;
}
.press-card--orange {
  border-left: 4px solid #e8730e;
}
.press-card--orange .press-source,
.press-card--orange .press-link {
  color: #e8730e;
}
.press-card--purple {
  border-left: 4px solid #8b5cf6;
}
.press-card--purple .press-source,
.press-card--purple .press-link {
  color: #8b5cf6;
}

/* FAQ-Container */
.faq-container {
  max-width: 700px;
}

/* Blog-Teaser */
.blog-alle-wrapper {
  margin-top: var(--sp-8);
}

/* CTA-Bereich */
.cta-container {
  position: relative;
}
.cta-headline {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
}
.cta-subtitle {
  max-width: 500px;
  margin: var(--sp-4) auto var(--sp-8);
}

/* Artikel-/Seiten-Top-Padding */
.section--page-top {
  padding-top: 120px;
}

/* Single-Artikel */
.article-meta {
  margin-bottom: var(--sp-3);
}
.article-date {
  color: var(--sw-g3);
}
.article-back-nav {
  margin-top: var(--sp-12);
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.article-back-link {
  color: var(--sw-neon-blue);
  font-family: var(--fd);
  font-weight: 600;
}

/* Blog-Index */
.blog-container {
  max-width: 800px;
}
.overline--muted {
  color: var(--sw-g3);
}
.blog-empty {
  color: var(--sw-g3);
  padding: var(--sp-6);
}
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-10);
}

/* Header-Logo */
.nav-logo-img {
  height: 36px;
  width: auto;
}

/* ===== Neue Seiten-Komponenten ===== */

/* Spartipps-Grid (Kosten-Seite) */
.tipp-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-6);
}
.tipp-card {
  background: var(--grad-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 4px solid var(--sw-neon-blue);
  border-radius: var(--r-lg); padding: var(--sp-6);
  transition: all var(--dur-norm) var(--ease);
}
.tipp-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.1);
  border-left-color: var(--sw-neon-blue);
}
.tipp-card h3 {
  font-size: 1rem; margin-bottom: var(--sp-2);
  color: var(--sw-white);
}
.tipp-card p {
  color: var(--sw-g3); font-size: 0.85rem; line-height: 1.6;
}

/* Feature-Links (Cross-Navigation) */
.feature-links {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: var(--sp-4);
}
.feature-link {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  font-family: var(--fd); font-weight: 600; font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--dur-norm) var(--ease);
}
.feature-link:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

/* Sport-Grid 3-spaltig */
.sport-grid--3col {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Rechte-Tabelle (Sport-Übersicht) */
.rechte-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 calc(-1 * var(--sp-6));
  padding: 0 var(--sp-6);
}
.rechte-tabelle {
  width: 100%; border-collapse: collapse;
  font-size: 0.85rem; min-width: 700px;
}
.rechte-tabelle th {
  text-align: center; padding: var(--sp-3) var(--sp-4);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  color: var(--sw-white); font-family: var(--fd); font-weight: 600;
  font-size: 0.8rem; white-space: nowrap;
}
.rechte-tabelle th:first-child { text-align: left; }
.rechte-tabelle td {
  padding: var(--sp-3) var(--sp-4); text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--sw-g2);
}
.rechte-tabelle td:first-child {
  text-align: left; font-weight: 600; color: var(--sw-white);
  white-space: nowrap;
}
.rechte-tabelle tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}
.rechte-check { color: var(--sw-success) !important; font-weight: 700; }
.rechte-cross { color: var(--sw-g4) !important; }
.rechte-hinweis {
  color: var(--sw-g4); font-size: 0.75rem;
  margin-top: var(--sp-4); text-align: center;
  font-style: italic;
}

/* Filter-Tabs (Sport-Übersicht) */
.filter-tabs {
  display: flex; gap: var(--sp-2);
  justify-content: center; flex-wrap: wrap;
}
.filter-tab {
  background: rgba(255, 255, 255, 0.06);
  color: var(--sw-g2); border: none;
  padding: var(--sp-2) var(--sp-5);
  border-radius: 50px; font-size: 0.88rem;
  font-weight: 600; cursor: pointer;
  transition: all var(--dur-fast) ease;
  font-family: inherit;
}
.filter-tab:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--sw-white);
}
.filter-tab.active {
  background: var(--sw-neon-red); color: #fff;
}

/* Kontaktformular */
.kontakt-form {
  display: flex; flex-direction: column; gap: var(--sp-6);
}
.kontakt-feld { display: flex; flex-direction: column; gap: var(--sp-2); }
.kontakt-feld label {
  font-family: var(--fd); font-weight: 600; font-size: 0.9rem;
  color: var(--sw-g1);
}
.kontakt-feld input,
.kontakt-feld textarea,
.kontakt-feld select {
  background: var(--sw-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  color: var(--sw-white); font-family: var(--fb);
  font-size: 0.95rem; line-height: 1.6;
  transition: border-color var(--dur-fast) ease, box-shadow var(--dur-fast) ease;
}
.kontakt-feld input:focus,
.kontakt-feld textarea:focus,
.kontakt-feld select:focus {
  outline: none;
  border-color: var(--sw-neon-blue);
  box-shadow: var(--focus);
}
.kontakt-feld select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a8a8be' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.kontakt-feld textarea { resize: vertical; min-height: 120px; }
.kontakt-honeypot {
  position: absolute; left: -9999px; opacity: 0;
  height: 0; overflow: hidden;
}
.kontakt-meldung {
  padding: var(--sp-4) var(--sp-6);
  border-radius: var(--r-md); margin-bottom: var(--sp-6);
}
.kontakt-meldung p { margin: 0; }
.kontakt-meldung--success {
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: var(--sw-success);
}
.kontakt-meldung--error {
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.3);
  color: var(--sw-error);
}

/* Kanban-Board (Roadmap) */
.kanban-legende {
  display: flex; justify-content: center; gap: var(--sp-4);
  margin-bottom: var(--sp-10);
}
.kanban-board {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6); align-items: start;
}
.kanban-spalte {
  display: flex; flex-direction: column; gap: var(--sp-4);
}
.kanban-spalte-titel {
  font-size: 1rem; font-weight: 700;
  padding-bottom: var(--sp-3);
  border-bottom: 2px solid;
  margin-bottom: var(--sp-2);
}
.kanban-spalte-titel--fertig { border-color: var(--sw-success); color: var(--sw-success); }
.kanban-spalte-titel--in-arbeit { border-color: var(--sw-warning); color: var(--sw-warning); }
.kanban-spalte-titel--geplant { border-color: var(--sw-g3); color: var(--sw-g3); }
.kanban-card {
  background: var(--grad-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-lg); padding: var(--sp-5);
  transition: all var(--dur-norm) var(--ease);
}
.kanban-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.1);
}
.kanban-card h3 {
  font-size: 0.95rem; margin: var(--sp-2) 0 var(--sp-1);
  color: var(--sw-white);
}
.kanban-card p {
  color: var(--sw-g3); font-size: 0.8rem; line-height: 1.5;
}
.kanban-badge {
  display: inline-block;
  font-family: var(--fm); font-size: 0.65rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px;
  padding: 2px 10px; border-radius: var(--r-full);
}
.kanban-badge--fertig {
  background: rgba(52, 211, 153, 0.15); color: var(--sw-success);
}
.kanban-badge--in-arbeit {
  background: rgba(251, 191, 36, 0.15); color: var(--sw-warning);
}
.kanban-badge--geplant {
  background: rgba(124, 124, 152, 0.2); color: var(--sw-g3);
}

/* Nav-Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  font-family: var(--fd); font-weight: 500; font-size: 0.9rem;
  color: var(--sw-g2); text-decoration: none;
  cursor: pointer; display: flex; align-items: center; gap: 4px;
  transition: color var(--dur-fast) ease;
}
.nav-dropdown-trigger:hover { color: var(--sw-white); }
.nav-dropdown-trigger::after {
  content: ''; display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-top: 2px;
}
.nav-dropdown-menu {
  display: none; position: absolute;
  top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  min-width: 200px;
  background: rgba(18, 18, 30, 0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  padding: var(--sp-2) 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  z-index: 200;
}
.nav-dropdown-menu::before {
  content: ''; position: absolute;
  top: -12px; left: 0; right: 0;
  height: 12px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: flex; flex-direction: column;
}
.nav-dropdown-menu a {
  padding: var(--sp-2) var(--sp-5);
  font-family: var(--fd); font-weight: 500; font-size: 0.85rem;
  color: var(--sw-g2); text-decoration: none;
  transition: all var(--dur-fast) ease;
}
.nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--sw-white);
}

/* Responsive: Neue Komponenten */
@media (max-width: 768px) {
  .kanban-board { grid-template-columns: 1fr; }
  .rechte-scroll { margin: 0 -16px; padding: 0 16px; }
  .feature-links { flex-direction: column; align-items: center; }
  .nav-dropdown-menu {
    position: static; transform: none;
    background: transparent; backdrop-filter: none;
    border: none; box-shadow: none;
    padding: 0 0 0 var(--sp-4);
  }
  .nav-dropdown-trigger::after { display: none; }
  .nav-dropdown.open .nav-dropdown-menu {
    display: flex;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .feature-block { opacity: 1; transform: none; }
}
