/* ===== Design tokens ===== */
:root {
  --red-dark: #3d0000;
  --red: #8f0f13;
  --red-bright: #c8102e;
  --red-glow: #ff2e3a;
  --cream: #f3efe6;
  --cream-dim: #e4ddcd;
  --black: #141110;
  --ink: #1a1414;
  --white: #ffffff;
  --font-display: 'Anton', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 20px;
  --max-w: 1160px;
  --shadow-lg: 0 30px 60px -20px rgba(0,0,0,0.5);
}

* { box-sizing: border-box; }
.icon {
  width: 1em;
  height: 1em;
  fill: currentColor;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: -0.125em;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--black);
  color: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; letter-spacing: 0.5px; margin: 0; line-height: 1.05; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* subtle grain overlay for texture across whole page */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }
.btn-primary.btn-spotify {
  background: #1ed760;
  color: #06210f;
  box-shadow: 0 10px 25px -8px rgba(30,215,96,0.55);
}
.btn-primary.btn-spotify:hover { background: #1fdf65; }
.spotify-icon { font-size: 0.75em; }
.spotify-icon .icon { width: 16px; height: 16px; vertical-align: -2px; }
.btn-ghost {
  background: transparent;
  border-color: rgba(243,239,230,0.4);
  color: var(--cream);
}
.btn-ghost:hover { background: rgba(243,239,230,0.08); border-color: var(--cream); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20,17,16,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(243,239,230,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.5px;
}
.brand-ball { font-size: 1.3rem; color: var(--red-bright); }
.brand-ball .icon { width: 26px; height: 26px; }
.footer-brand .brand-ball .icon { width: 22px; height: 22px; }
.brand-accent { color: var(--red-glow); margin-left: 6px; }
.btn-donate {
  margin-right: auto;
  background: rgba(243,239,230,0.08);
  border-color: rgba(243,239,230,0.25);
  color: var(--cream);
  padding: 7px 14px;
  font-size: 0.8rem;
  gap: 6px;
}
.btn-donate:hover {
  background: #f5a623;
  border-color: #f5a623;
  color: var(--black);
}
.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(243,239,230,0.75);
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--white); }
.header-cta { margin-left: 8px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  display: block;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 70px 0 0;
  background:
    radial-gradient(ellipse 900px 500px at 15% 10%, rgba(255,46,58,0.25), transparent 60%),
    radial-gradient(ellipse 900px 600px at 85% 30%, rgba(255,46,58,0.15), transparent 60%),
    linear-gradient(160deg, var(--red-dark) 0%, var(--red) 45%, var(--black) 100%);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 70px;
}

/* --- Cover card recreation --- */
.hero-cover { display: flex; justify-content: center; }
.cover-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-2deg);
}
.cover-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cover-tear {
  position: absolute;
  background: var(--red-bright);
}
.tear-1 {
  top: -30%;
  left: -25%;
  width: 90%;
  height: 90%;
  clip-path: polygon(0 0, 45% 0, 20% 60%, 0 40%);
  transform: rotate(8deg);
  opacity: 0.95;
}
.tear-2 {
  bottom: -35%;
  right: -25%;
  width: 90%;
  height: 90%;
  clip-path: polygon(100% 100%, 55% 100%, 78% 40%, 100% 62%);
  transform: rotate(6deg);
  opacity: 0.95;
}
.cover-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}
.cover-line {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 8vw, 3.1rem);
  line-height: 0.95;
}
.cover-line--red { color: var(--red-bright); }
.cover-line--white {
  color: var(--white);
  -webkit-text-stroke: 1.5px var(--ink);
  paint-order: stroke fill;
}
.cover-divider {
  position: relative;
  z-index: 2;
  width: 70%;
  border-top: 2px solid rgba(20,17,16,0.4);
  margin: 18px 0 12px;
  display: flex;
  justify-content: center;
}
.cover-mic {
  background: #ece7dc;
  padding: 0 12px;
  margin-top: -14px;
  font-size: 1.2rem;
  color: var(--ink);
}
.cover-caption {
  position: relative;
  z-index: 2;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}

/* --- Hero copy --- */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(243,239,230,0.75);
  margin-bottom: 14px;
}
.hero-copy h1 {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 10px;
  color: var(--cream);
}
.hero-hosts {
  font-size: 1rem;
  color: rgba(243,239,230,0.75);
  margin-top: 4px;
  font-weight: 500;
}
.hero-desc {
  margin-top: 22px;
  max-width: 540px;
  font-size: 1.05rem;
  color: rgba(243,239,230,0.9);
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.stripe-divider {
  height: 26px;
  background: repeating-linear-gradient(-45deg, var(--cream) 0 26px, var(--cream-dim) 26px 52px);
  clip-path: polygon(0 0, 100% 40%, 100% 100%, 0 60%);
}

/* ===== Ticker ===== */
.ticker {
  background: var(--red-bright);
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
  border-bottom: 4px solid var(--black);
}
.ticker-track {
  display: inline-flex;
  gap: 40px;
  animation: scroll-left 22s linear infinite;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: var(--white);
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ticker-item .icon { width: 16px; height: 16px; }
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Folgen page hero ===== */
.folgen-hero {
  padding: 140px 0 60px;
  background:
    radial-gradient(ellipse 900px 500px at 15% 10%, rgba(255,46,58,0.25), transparent 60%),
    linear-gradient(160deg, var(--red-dark) 0%, var(--red) 45%, var(--black) 100%);
}
.folgen-hero .btn { margin-top: 28px; }
.embed-wrap--tall iframe { min-height: 800px; }

/* ===== Sections ===== */
.section { padding: 96px 0; background: var(--black); }
.section-alt { background: var(--ink); }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red-glow);
  margin: 0 0 10px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  max-width: 700px;
}
.section-lead {
  margin-top: 14px;
  color: rgba(243,239,230,0.75);
  max-width: 600px;
  font-size: 1.05rem;
}

/* Feature grid */
.feature-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: linear-gradient(160deg, rgba(200,16,46,0.12), rgba(200,16,46,0.02));
  border: 1px solid rgba(243,239,230,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.feature-card:hover { transform: translateY(-6px); border-color: var(--red-glow); }
.feature-icon { font-size: 2rem; display: block; margin-bottom: 14px; color: var(--red-bright); }
.feature-card h3 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.feature-card p { margin: 0; font-size: 0.92rem; color: rgba(243,239,230,0.7); }

/* Partner / Sponsoren */
.partner-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.partner-card {
  background: rgba(243,239,230,0.04);
  border: 1px solid rgba(243,239,230,0.1);
  border-radius: var(--radius);
  padding: 32px;
}
.partner-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
  background: var(--white);
}
.partner-card h3 { font-family: var(--font-body); font-size: 1.1rem; color: var(--white); margin-bottom: 10px; }
.partner-card p { margin: 0; color: rgba(243,239,230,0.7); font-size: 0.95rem; }

.partner-strip {
  padding: 48px 0;
  background: var(--ink);
  border-top: 1px solid rgba(243,239,230,0.08);
  border-bottom: 1px solid rgba(243,239,230,0.08);
}
.partner-strip-inner { text-align: center; }
.partner-strip-inner .section-eyebrow { justify-content: center; }
.partner-strip-logos {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.partner-strip-logos a {
  display: flex;
  align-items: center;
}
.partner-strip-logos img {
  height: 56px;
  width: 56px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter 0.2s ease, opacity 0.2s ease;
}
.partner-strip-logos a:hover img { filter: grayscale(0); opacity: 1; }

/* Embed */
.embed-wrap {
  margin-top: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.embed-wrap iframe { display: block; border: none; }
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  color: var(--red-glow);
  font-weight: 700;
  font-size: 0.95rem;
}
.section-link .icon { transition: transform 0.15s ease; }
.section-link:hover .icon { transform: translateX(4px); }

/* Social feed */
.social-feed-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.social-feed-col {
  background: rgba(243,239,230,0.04);
  border: 1px solid rgba(243,239,230,0.1);
  border-radius: var(--radius);
  padding: 24px;
}
.social-feed-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.social-feed-header .icon { width: 28px; height: 28px; color: var(--red-glow); flex-shrink: 0; }
.social-feed-header h3 { font-family: var(--font-body); font-size: 1.05rem; color: var(--white); margin-bottom: 2px; }
.social-feed-header a { font-size: 0.85rem; color: rgba(243,239,230,0.6); }
.social-feed-header a:hover { color: var(--cream); }
.social-feed-posts { display: flex; flex-direction: column; gap: 16px; }
.social-feed-posts .instagram-media,
.social-feed-posts .tiktok-embed { margin: 0 !important; width: 100% !important; }
.social-feed-yt { border-radius: 14px; overflow: hidden; aspect-ratio: 16 / 9; }
.social-feed-yt iframe { width: 100%; height: 100%; border: none; }
.social-feed-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 48px 20px;
  border: 1px dashed rgba(243,239,230,0.25);
  border-radius: 14px;
  color: rgba(243,239,230,0.7);
  font-size: 0.9rem;
  font-weight: 600;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.social-feed-placeholder .icon { width: 28px; height: 28px; }
.social-feed-placeholder:hover { border-color: var(--red-glow); color: var(--white); }

/* Hosts */
.host-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.host-card {
  background: rgba(243,239,230,0.04);
  border: 1px solid rgba(243,239,230,0.1);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}
.host-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  background: linear-gradient(160deg, var(--red-bright), var(--red-dark));
}
.host-avatar-photo {
  overflow: hidden;
  background: none;
}
.host-avatar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.host-card h3 { font-family: var(--font-body); font-size: 1.15rem; color: var(--white); margin-bottom: 10px; }
.host-card p { margin: 0; color: rgba(243,239,230,0.7); font-size: 0.95rem; }

/* Warum section */
.warum-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.check-list { margin: 32px 0; display: flex; flex-direction: column; gap: 16px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: rgba(243,239,230,0.9);
}
.check-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--red-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--white);
}
.check-icon .icon { width: 16px; height: 16px; }
.warum-visual { display: flex; justify-content: center; }
.scoreboard {
  background: var(--red);
  border: 3px solid var(--black);
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
}
.scoreboard-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  color: var(--white);
  letter-spacing: 1px;
  font-size: 1.1rem;
}
.scoreboard-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #1ed760;
  box-shadow: 0 0 12px 2px rgba(30,215,96,0.8);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.scoreboard-countdown {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(243,239,230,0.2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--cream);
  text-align: center;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(160deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 100px 0;
  text-align: center;
}
.final-cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}
.final-cta-inner p {
  color: rgba(243,239,230,0.85);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* Footer */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(243,239,230,0.08);
  padding: 48px 0;
  text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.footer-tagline { color: rgba(243,239,230,0.6); font-size: 0.9rem; margin: 4px 0; }
.social-links { display: flex; gap: 14px; margin: 6px 0 4px; }
.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(243,239,230,0.06);
  border: 1px solid rgba(243,239,230,0.15);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.social-icon .icon { width: 18px; height: 18px; fill: var(--cream); }
.social-icon:hover { background: var(--red-bright); border-color: var(--red-bright); transform: translateY(-2px); }
.footer-link { color: var(--red-glow); font-weight: 700; font-size: 0.9rem; margin-top: 6px; }
.footer-legal { margin-top: 14px; }
.footer-legal a { color: rgba(243,239,230,0.5); font-size: 0.8rem; }
.footer-legal a:hover { color: var(--cream); }
.footer-copy { color: rgba(243,239,230,0.4); font-size: 0.8rem; margin-top: 4px; }

/* ===== Sponsoring page ===== */
.sponsor-tiers {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sponsor-tier {
  background: rgba(243,239,230,0.04);
  border: 1px solid rgba(243,239,230,0.1);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.sponsor-tier h3 { font-family: var(--font-body); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.sponsor-tier > p:not(.abo-price) { margin: 0 0 18px; font-size: 0.92rem; color: rgba(243,239,230,0.7); }
.sponsor-tier ul { display: flex; flex-direction: column; gap: 10px; }
.sponsor-tier li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(243,239,230,0.85);
}
.sponsor-tier .check-icon { width: 22px; height: 22px; }
.sponsor-tier .check-icon .icon { width: 13px; height: 13px; }

/* Reichweite-Stats */
.stats-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stat-card {
  background: rgba(243,239,230,0.04);
  border: 1px solid rgba(243,239,230,0.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--red-glow);
  line-height: 1;
  margin: 0 0 10px;
}
.stat-label { margin: 0; font-size: 0.92rem; color: rgba(243,239,230,0.75); }

.contact-form {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 720px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group--full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(243,239,230,0.8);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--cream);
  background: rgba(243,239,230,0.06);
  border: 1px solid rgba(243,239,230,0.18);
  border-radius: 12px;
  padding: 12px 16px;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red-glow);
  background: rgba(243,239,230,0.1);
}
.form-group select { appearance: none; }
.contact-form .btn { grid-column: 1 / -1; justify-self: start; }
.form-note {
  grid-column: 1 / -1;
  margin: -8px 0 0;
  font-size: 0.82rem;
  color: rgba(243,239,230,0.5);
}
.form-status {
  grid-column: 1 / -1;
  margin: -8px 0 0;
  font-size: 0.88rem;
  min-height: 1.2em;
}
.form-status:empty { display: none; }
.form-status--success { color: #3ddc84; }
.form-status--error { color: var(--red-glow); }

/* ===== Abo page ===== */
.btn-abo {
  background: var(--red-bright);
  color: var(--white);
  box-shadow: 0 10px 25px -8px rgba(200,16,46,0.55);
}
.btn-abo:hover { background: var(--red-glow); }
.btn-light {
  background: var(--cream);
  color: var(--black);
}
.btn-light:hover { background: var(--white); }

.abo-teaser-card {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
  background:
    radial-gradient(ellipse 600px 300px at 15% 10%, rgba(255,46,58,0.25), transparent 60%),
    linear-gradient(160deg, var(--red) 0%, var(--red-dark) 100%);
  border: 1px solid rgba(255,46,58,0.4);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}
.abo-teaser-card .section-eyebrow { color: var(--cream); }
.abo-teaser-card .section-lead { color: rgba(243,239,230,0.9); }
.abo-teaser-card .btn { margin-top: 28px; }
.abo-teaser-list { display: flex; flex-direction: column; gap: 14px; }
.abo-teaser-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--white);
}

.abo-tiers {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.abo-tiers--single {
  grid-template-columns: 1fr;
  max-width: 420px;
  margin-inline: auto;
}
.scoreboard-countdown-wrap {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(243,239,230,0.15);
}
.scoreboard-countdown-wrap .scoreboard-row {
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  justify-content: center;
}
.abo-tier {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(243,239,230,0.04);
  border: 1px solid rgba(243,239,230,0.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.abo-tier:hover { transform: translateY(-6px); border-color: var(--red-glow); }
.abo-tier--featured {
  background: linear-gradient(160deg, rgba(200,16,46,0.18), rgba(200,16,46,0.04));
  border-color: var(--red-bright);
}
.abo-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red-bright);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
}
.abo-tier h3 { font-family: var(--font-body); font-size: 1.1rem; font-weight: 800; color: var(--white); }
.abo-price {
  margin: 14px 0 4px;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1;
}
.abo-price span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(243,239,230,0.6);
}
.abo-tier > p:not(.abo-price) { margin: 0 0 20px; font-size: 0.9rem; color: rgba(243,239,230,0.7); }
.abo-tier ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.abo-tier li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(243,239,230,0.85);
}
.abo-tier .check-icon { width: 22px; height: 22px; }
.abo-tier .check-icon .icon { width: 13px; height: 13px; }
.abo-tier .btn { margin-top: auto; justify-content: center; }
.abo-note {
  margin: 20px 0 0;
  font-size: 0.82rem;
  color: rgba(243,239,230,0.5);
}

/* Steps */
.steps-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: rgba(243,239,230,0.04);
  border: 1px solid rgba(243,239,230,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red-bright);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step-card h3 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step-card p { margin: 0; font-size: 0.92rem; color: rgba(243,239,230,0.7); }

/* FAQ */
.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 760px;
}
.faq-item {
  background: rgba(243,239,230,0.04);
  border: 1px solid rgba(243,239,230,0.1);
  border-radius: 14px;
  padding: 0 22px;
  transition: border-color 0.15s ease;
}
.faq-item[open] { border-color: var(--red-glow); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--white);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--red-glow);
  transition: transform 0.15s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0 0 18px; font-size: 0.92rem; color: rgba(243,239,230,0.75); }
.faq-item p a { color: var(--red-glow); font-weight: 600; }

/* Hosts: mehrteilige Bio + Buchungs-Link */
.host-card p + p { margin-top: 10px; }
.host-book {
  display: inline-block;
  margin-top: 16px;
  color: var(--red-glow);
  font-weight: 700;
  font-size: 0.9rem;
}
.host-book:hover { color: var(--white); }

/* ===== Impressum / Rechtliches ===== */
.legal-content { max-width: 760px; }
.legal-content section + section { margin-top: 44px; }
.legal-content h2 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 14px;
}
.legal-content p { margin: 0 0 14px; color: rgba(243,239,230,0.75); font-size: 0.98rem; }
.legal-content p:last-child { margin-bottom: 0; }
.legal-content address {
  font-style: normal;
  margin: 0;
  color: rgba(243,239,230,0.85);
  line-height: 1.7;
}
.legal-content a { color: var(--red-glow); font-weight: 600; }
.legal-content a:hover { color: var(--white); }
.legal-placeholder { color: var(--red-glow); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding-bottom: 50px; }
  .hero-cover { order: -1; }
  .hero-desc { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .warum-inner { grid-template-columns: 1fr; }
  .warum-visual { order: -1; }
  .abo-teaser-card { grid-template-columns: 1fr; gap: 28px; }
  .abo-tiers { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .tip-grid { grid-template-columns: repeat(2, 1fr); }
  .auth-panel .contact-form { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--ink);
    border-bottom: 1px solid rgba(243,239,230,0.1);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(243,239,230,0.06);
  }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .feature-grid { grid-template-columns: 1fr; }
  .host-grid { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr; }
  .sponsor-tiers { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .abo-teaser-card { padding: 32px 24px; }
  .tip-grid { grid-template-columns: 1fr; }
  .member-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ===== Mitgliederbereich ===== */
.auth-box {
  max-width: 480px;
  margin: 0 auto;
  background: rgba(243,239,230,0.04);
  border: 1px solid rgba(243,239,230,0.12);
  border-radius: var(--radius);
  padding: 32px;
}
.auth-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(243,239,230,0.12);
}
.auth-tab {
  flex: 1;
  background: none;
  border: none;
  color: rgba(243,239,230,0.6);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 8px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transform: translateY(1px);
}
.auth-tab.is-active { color: var(--white); border-bottom-color: var(--red-glow); }
.auth-panel { display: none; }
.auth-panel.is-active { display: block; }
.auth-panel .contact-form { grid-template-columns: 1fr 1fr; margin-top: 0; max-width: none; }

.locked-box {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  background: rgba(243,239,230,0.04);
  border: 1px solid rgba(243,239,230,0.12);
  border-radius: var(--radius);
  padding: 40px 36px;
}
.locked-box p { color: rgba(243,239,230,0.8); margin: 0 0 20px; line-height: 1.6; }
.locked-box .btn { margin: 8px 6px 0; }
.locked-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,46,58,0.12);
  color: var(--red-glow);
  margin-bottom: 18px;
}
.locked-icon svg { width: 26px; height: 26px; }
.locked-box .locked-email {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(243,239,230,0.55);
  margin: 0 0 6px;
}
.locked-box h2 { margin-bottom: 14px; }
.locked-box .locked-lead { margin-bottom: 0; }
.locked-divider { height: 1px; background: rgba(243,239,230,0.12); margin: 24px 0; }
.locked-box .locked-note {
  font-size: 0.9rem;
  color: rgba(243,239,230,0.6);
  margin: 0 0 24px;
}
.locked-box .locked-note a { color: var(--red-glow); font-weight: 600; }

.member-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.member-header .section-eyebrow { margin: 0; }

.tip-form { margin-top: 32px; }
.tip-competition {
  border: 1px solid rgba(243,239,230,0.12);
  border-radius: var(--radius);
  padding: 24px;
  margin: 0 0 24px;
}
.tip-competition legend {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  padding: 0 10px;
}
.tip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tip-grid--wide { grid-template-columns: 1fr; }
.tip-form .btn { margin-top: 8px; }
