/* Weide Beat FM — Landingpage. CI: Grün, Logo: Regenbogen */
:root {
  --g950: #052e16;
  --g900: #14532d;
  --g700: #15803d;
  --g600: #16a34a;
  --g500: #22c55e;
  --g200: #bbf7d0;
  --g100: #dcfce7;
  --g50: #f2faf2;
  --ink: #0f2417;
  --muted: #5b7264;
  --line: #d9ead9;
  --amber: #f59e0b;
  --rainbow: linear-gradient(90deg,#ef4444,#f59e0b,#eab308,#22c55e,#3b82f6,#8b5cf6);
  --shadow: 0 1px 2px rgba(5,46,22,.06), 0 12px 32px rgba(5,46,22,.10);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', 'Segoe UI', system-ui, sans-serif;
  background: #fff; color: var(--ink);
  font-size: 16px; line-height: 1.6;
  overflow-x: hidden;
}
img, svg { max-width: 100%; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
section { padding: 84px 0; }
h2 { font-size: clamp(28px, 4vw, 40px); line-height: 1.15; font-weight: 800; letter-spacing: -.01em; }
.kicker { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--g700); background: var(--g100); padding: 6px 14px; border-radius: 999px; margin-bottom: 16px; }
.lead { font-size: 18px; color: var(--muted); max-width: 640px; }
.center { text-align: center; }
.center .lead { margin: 14px auto 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--g600); color: #fff; border: none; cursor: pointer;
  padding: 14px 26px; border-radius: 12px; font-family: inherit; font-size: 16px; font-weight: 700;
  text-decoration: none; transition: transform .15s, box-shadow .15s, background .15s;
  box-shadow: 0 4px 14px rgba(22,163,74,.35);
}
.btn:hover { background: var(--g700); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(22,163,74,.4); }
.btn.ghost { background: #fff; color: var(--g700); border: 1.5px solid var(--g600); box-shadow: none; }
.btn.ghost:hover { background: var(--g100); }
.btn.small { padding: 9px 18px; font-size: 14px; }
.btn.big { padding: 17px 34px; font-size: 17.5px; }
.btn svg { width: 18px; height: 18px; }
.btn.white { background: #fff; color: var(--g900); box-shadow: 0 4px 14px rgba(0,0,0,.2); }
.btn.white:hover { background: var(--g100); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(255,255,255,.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: border .2s, box-shadow .2s;
}
.nav.scrolled { border-color: var(--line); box-shadow: 0 2px 20px rgba(5,46,22,.06); }
.nav-inner { display: flex; align-items: center; gap: 28px; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); margin-right: auto; }
.brand svg { width: 40px; height: 40px; }
.brand b { font-size: 17.5px; font-weight: 800; line-height: 1.1; display: block; }
.brand small { font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--g700); font-weight: 600; }
.nav-links { display: flex; gap: 26px; }
.nav-links a { text-decoration: none; color: var(--ink); font-size: 15px; font-weight: 600; }
.nav-links a:hover { color: var(--g700); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
@media (max-width: 860px) { .nav-links { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: 168px 0 110px;
  background:
    radial-gradient(900px 480px at 82% 8%, rgba(34,197,94,.16), transparent 65%),
    radial-gradient(700px 420px at 8% 30%, rgba(59,130,246,.08), transparent 60%),
    linear-gradient(180deg, var(--g50), #fff 85%);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 { font-size: clamp(36px, 5.4vw, 58px); line-height: 1.06; font-weight: 800; letter-spacing: -.02em; margin: 18px 0 22px; }
.hero h1 .rb { background: var(--rainbow); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { font-size: 19px; margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.trust { display: flex; gap: 20px; flex-wrap: wrap; font-size: 13.5px; color: var(--muted); }
.trust span { display: inline-flex; align-items: center; gap: 7px; }
.trust svg { width: 15px; height: 15px; stroke: var(--g600); }

/* Hero-Visual: Player-Karte */
.hero-visual { position: relative; }
.player-card {
  background: linear-gradient(135deg, var(--g700), var(--g900));
  border-radius: 22px; padding: 28px; color: #fff;
  box-shadow: 0 30px 70px rgba(5,46,22,.35);
  position: relative; overflow: hidden;
  transform: rotate(1.5deg);
}
.player-card .rainbow-edge { position: absolute; left: 0; right: 0; bottom: 0; height: 6px; background: var(--rainbow); }
.pc-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.pc-logo { width: 58px; height: 58px; border-radius: 14px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pc-logo svg { width: 40px; height: 40px; }
.pc-live { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; background: rgba(239,68,68,.2); color: #fecaca; padding: 3px 10px; border-radius: 999px; }
.pc-live .dot { width: 7px; height: 7px; border-radius: 50%; background: #ef4444; animation: pulse 1.4s infinite; }
@keyframes pulse { 0%,100% { opacity: 1 } 50% { opacity: .3 } }
.pc-title { font-size: 21px; font-weight: 800; margin-top: 5px; }
.pc-sub { font-size: 13.5px; opacity: .8; }
.pc-controls { display: flex; align-items: center; gap: 14px; }
.pc-play { width: 52px; height: 52px; border-radius: 50%; background: #fff; color: var(--g700); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pc-play svg { width: 22px; height: 22px; }
.eq { display: flex; align-items: flex-end; gap: 3px; height: 30px; flex: 1; }
.eq span { width: 5px; background: var(--g500); border-radius: 2px; animation: eq 1s ease-in-out infinite; }
.eq span:nth-child(5n+1) { height: 40%; animation-delay: 0s }
.eq span:nth-child(5n+2) { height: 90%; animation-delay: .15s }
.eq span:nth-child(5n+3) { height: 60%; animation-delay: .3s }
.eq span:nth-child(5n+4) { height: 100%; animation-delay: .45s }
.eq span:nth-child(5n+5) { height: 50%; animation-delay: .6s }
@keyframes eq { 0%,100% { transform: scaleY(.4) } 50% { transform: scaleY(1) } }
.pc-listeners { font-size: 12px; opacity: .75; white-space: nowrap; }
/* schwebende Chips um die Karte */
.float-chip {
  position: absolute; background: #fff; border-radius: 14px; padding: 12px 16px;
  box-shadow: var(--shadow); font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
  animation: floaty 5s ease-in-out infinite;
}
.float-chip svg { width: 18px; height: 18px; stroke: var(--g600); flex-shrink: 0; }
.float-chip small { display: block; font-weight: 400; color: var(--muted); font-size: 11.5px; }
.fc1 { top: -26px; right: 4px; animation-delay: 0s; }
.fc2 { bottom: 36px; left: -34px; animation-delay: 1.4s; }
.fc3 { bottom: -26px; right: 42px; animation-delay: 2.6s; }
@keyframes floaty { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-9px) } }
@media (max-width: 960px) { .fc2 { left: 0 } .float-chip { position: static; margin: 10px 8px 0 0; display: inline-flex; animation: none; } .player-card { transform: none; } }

/* ---------- Social proof ---------- */
.proof { padding: 34px 0 10px; }
.proof p { text-align: center; font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.proof-logos { display: flex; justify-content: center; gap: 44px; flex-wrap: wrap; opacity: .55; }
.proof-logos span { font-weight: 800; font-size: 17px; color: var(--g900); letter-spacing: .02em; }

/* ---------- Feature-Grid ---------- */
.features { background: var(--g50); }
.f-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
@media (max-width: 960px) { .f-grid { grid-template-columns: 1fr; } }
.f-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 28px;
  box-shadow: 0 1px 2px rgba(5,46,22,.04); transition: transform .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.f-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.f-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--rainbow); opacity: 0; transition: opacity .2s; }
.f-card:hover::before { opacity: 1; }
.f-icon { width: 48px; height: 48px; border-radius: 13px; background: var(--g100); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.f-icon svg { width: 24px; height: 24px; stroke: var(--g700); }
.f-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.f-card p { font-size: 14.5px; color: var(--muted); }

/* ---------- Steps ---------- */
.steps { }
.s-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; counter-reset: step; }
@media (max-width: 960px) { .s-grid { grid-template-columns: 1fr; } }
.s-card { position: relative; padding: 30px 26px 26px; border-radius: 18px; border: 1.5px dashed var(--line); }
.s-num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--rainbow);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 18px; margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.s-card h3 { font-size: 17.5px; margin-bottom: 8px; }
.s-card p { font-size: 14.5px; color: var(--muted); }

/* ---------- GEMA-USP ---------- */
.gema {
  background: linear-gradient(120deg, var(--g900), var(--g950)); color: #fff;
  position: relative; overflow: hidden;
}
.gema::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 5px; background: var(--rainbow); }
.gema-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
@media (max-width: 960px) { .gema-grid { grid-template-columns: 1fr; } }
.gema .kicker { background: rgba(255,255,255,.12); color: var(--g200); }
.gema h2 { color: #fff; }
.gema p { color: #b9dfc4; font-size: 16.5px; margin-top: 16px; }
.gema ul { list-style: none; margin-top: 22px; }
.gema li { display: flex; gap: 11px; padding: 7px 0; font-size: 15.5px; color: #e4f5e8; }
.gema li svg { width: 19px; height: 19px; stroke: var(--g500); flex-shrink: 0; margin-top: 3px; }
.gema-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15); border-radius: 18px; padding: 28px; }
.gema-card h4 { font-size: 14px; letter-spacing: .08em; text-transform: uppercase; color: var(--g200); margin-bottom: 18px; }
.gema-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed rgba(255,255,255,.15); font-size: 14.5px; }
.gema-row:last-child { border: none; }
.gema-row b { font-variant-numeric: tabular-nums; }
.gema-row.total { font-size: 16px; font-weight: 800; color: var(--g200); }

/* ---------- Testimonials ---------- */
.quotes { background: var(--g50); }
.q-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
@media (max-width: 960px) { .q-grid { grid-template-columns: 1fr; } }
.q-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 26px; box-shadow: 0 1px 2px rgba(5,46,22,.04); }
.q-stars { color: var(--amber); letter-spacing: 2px; font-size: 15px; margin-bottom: 12px; }
.q-card blockquote { font-size: 15px; line-height: 1.65; }
.q-who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.q-ava { width: 40px; height: 40px; border-radius: 50%; background: var(--rainbow); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; }
.q-who b { display: block; font-size: 14px; }
.q-who small { color: var(--muted); font-size: 12.5px; }

/* ---------- Pricing ---------- */
.tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; }
@media (max-width: 1000px) { .tiers { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .tiers { grid-template-columns: 1fr; } }
.tier { background: #fff; border: 1.5px solid var(--line); border-radius: 18px; padding: 26px 22px; position: relative; display: flex; flex-direction: column; }
.tier.hot { border-color: var(--g600); box-shadow: 0 0 0 4px var(--g200), var(--shadow); }
.tier .flag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--g600); color: #fff; font-size: 11.5px; font-weight: 700; padding: 4px 14px; border-radius: 999px; white-space: nowrap; }
.tier h4 { font-size: 16px; }
.tier .seats { color: var(--muted); font-size: 13px; margin-bottom: 14px; }
.tier .price { font-size: 34px; font-weight: 800; color: var(--g900); }
.tier .price small { font-size: 14px; font-weight: 500; color: var(--muted); }
.tier ul { list-style: none; margin: 16px 0 22px; font-size: 13.5px; flex: 1; }
.tier li { display: flex; gap: 8px; align-items: flex-start; padding: 4.5px 0; }
.tier li svg { width: 15px; height: 15px; stroke: var(--g600); flex-shrink: 0; margin-top: 3px; }
.pricing-note { text-align: center; font-size: 13.5px; color: var(--muted); margin-top: 22px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 44px auto 0; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px; background: #fff; overflow: hidden; }
.faq-item summary {
  cursor: pointer; padding: 18px 22px; font-weight: 700; font-size: 15.5px;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 22px; color: var(--g600); font-weight: 400; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .a { padding: 0 22px 18px; font-size: 14.5px; color: var(--muted); }

/* ---------- Final CTA ---------- */
.final {
  background:
    radial-gradient(700px 340px at 50% -10%, rgba(255,255,255,.18), transparent 60%),
    linear-gradient(120deg, var(--g700), var(--g900));
  color: #fff; text-align: center; position: relative; overflow: hidden;
}
.final::after { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 5px; background: var(--rainbow); }
.final h2 { color: #fff; }
.final p { color: #c8e8d0; font-size: 17px; margin: 16px auto 32px; max-width: 560px; }
.final .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
footer { padding: 44px 0; border-top: 1px solid var(--line); }
.foot-grid { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.foot-grid .brand svg { width: 34px; height: 34px; }
.foot-links { display: flex; gap: 22px; font-size: 13.5px; }
.foot-links a { color: var(--muted); text-decoration: none; }
.foot-links a:hover { color: var(--g700); }
.foot-note { font-size: 12px; color: var(--muted); margin-top: 18px; }

/* ---------- Register-Modal ---------- */
.modal-bg {
  position: fixed; inset: 0; background: rgba(5,46,22,.55); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; z-index: 100; padding: 20px;
}
.modal-bg.open { display: flex; }
.modal {
  background: #fff; border-radius: 20px; padding: 34px; max-width: 460px; width: 100%;
  box-shadow: 0 30px 80px rgba(0,0,0,.35); position: relative;
  animation: pop .25s ease-out;
}
@keyframes pop { from { transform: scale(.94); opacity: 0 } to { transform: scale(1); opacity: 1 } }
.modal .close { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 26px; color: var(--muted); cursor: pointer; line-height: 1; }
.modal h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.modal .sub { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.modal label { display: block; font-size: 13px; font-weight: 700; color: var(--g900); margin: 14px 0 6px; }
.modal input, .modal select {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 11px;
  font-family: inherit; font-size: 15px;
}
.modal input:focus, .modal select:focus { outline: 2px solid var(--g200); border-color: var(--g500); }
.modal .btn { width: 100%; margin-top: 22px; }
.modal .tiny { font-size: 12px; color: var(--muted); text-align: center; margin-top: 14px; }

/* ---------- Scroll-Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .eq span, .float-chip, .pc-live .dot { animation: none; }
}
