/* feva — Landing & Rechtsseiten. Branding aus der App (constants/feva.ts). */
:root {
  --bg: #0e0b16;
  --surface: #1a1626;
  --surface2: #241f33;
  --border: #2e2942;
  --text: #f4f1fb;
  --muted: #9b94b3;
  --pink: #ff4d8d;
  --cyan: #2bd2ff;
  --green: #16d6a6;
  --purple: #7b2ff7;
  --grad: linear-gradient(135deg, #ff4d8d 0%, #7b2ff7 100%);
  --grad-soft: linear-gradient(135deg, rgba(255,77,141,.18), rgba(123,47,247,.18));
  --maxw: 1120px;
  --radius: 18px;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14,11,22,.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.02em; }
.brand img { height: 30px; width: auto; }
.brand .wm { height: 22px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--muted); font-weight: 600; font-size: 15px; transition: color .15s; }
.nav-links a:hover { color: var(--text); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 16px; line-height: 1;
  padding: 15px 28px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s; white-space: nowrap;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 10px 30px rgba(255,77,141,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(255,77,141,.45); }
.btn-ghost { background: rgba(255,255,255,.06); color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-sm { padding: 11px 20px; font-size: 14px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 86px 0 96px; overflow: hidden; }
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; z-index: 0;
}
.hero::before { width: 540px; height: 540px; background: #ff4d8d; top: -160px; right: -120px; }
.hero::after { width: 480px; height: 480px; background: #7b2ff7; bottom: -200px; left: -140px; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--pink);
  background: var(--grad-soft); border: 1px solid var(--border); padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 72px); line-height: 1.02; letter-spacing: -.03em; font-weight: 900; margin-bottom: 20px;
}
.hero h1 .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: clamp(17px, 2.2vw, 21px); color: var(--muted); max-width: 540px; margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note { margin-top: 16px; font-size: 14px; color: var(--muted); }

/* App-Karte (Phone-Mockup-Ersatz) */
.phone {
  position: relative; justify-self: center;
  width: 280px; aspect-ratio: 9 / 18.5; border-radius: 42px;
  background: linear-gradient(160deg, #241f33, #14111e);
  border: 1px solid var(--border); box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center; transform: rotate(4deg);
}
.phone::before { content: ""; position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 110px; height: 26px; border-radius: 999px; background: #0e0b16; }
.phone-inner { text-align: center; padding: 24px; }
.phone-inner img { width: 96px; margin: 0 auto 18px; filter: drop-shadow(0 10px 30px rgba(255,77,141,.5)); }
.phone-inner .wm { width: 130px; margin: 0 auto; opacity: .95; }
.phone-glow { position: absolute; inset: 0; border-radius: 42px; background: var(--grad-soft); z-index: -1; filter: blur(20px); }

/* ---------- Sections ---------- */
section.block { padding: 80px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 54px; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); letter-spacing: -.02em; font-weight: 850; margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 18px; }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .15s, border-color .15s;
}
.feature:hover { transform: translateY(-4px); border-color: #4a3f63; }
.feature .ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--grad-soft); border: 1px solid var(--border); font-size: 26px; margin-bottom: 18px;
}
.feature h3 { font-size: 20px; margin-bottom: 8px; letter-spacing: -.01em; }
.feature p { color: var(--muted); font-size: 15.5px; }

/* CTA-Band */
.cta-band {
  background: var(--grad); border-radius: 28px; padding: 56px 40px; text-align: center; position: relative; overflow: hidden;
}
.cta-band h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 900; letter-spacing: -.02em; margin-bottom: 12px; color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); font-size: 18px; margin-bottom: 26px; }
.cta-band .btn-ghost { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.3); color: #fff; }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.26); }
.store-badge {
  display: inline-flex; align-items: center; gap: 10px; background: #000; color: #fff;
  padding: 12px 22px; border-radius: 14px; font-weight: 600; border: 1px solid rgba(255,255,255,.25);
}
.store-badge .big { font-size: 19px; font-weight: 800; line-height: 1; }
.store-badge .small { font-size: 11px; opacity: .85; line-height: 1.2; }

/* ---------- Footer ---------- */
footer.site {
  border-top: 1px solid var(--border); padding: 56px 0 40px; background: #0b0813; margin-top: 20px;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; margin-bottom: 38px; }
.foot-brand .brand { margin-bottom: 14px; }
.foot-brand p { color: var(--muted); font-size: 14.5px; max-width: 320px; }
.foot-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 16px; }
.foot-col a { display: block; color: var(--text); font-size: 15px; margin-bottom: 11px; opacity: .85; transition: opacity .12s; }
.foot-col a:hover { opacity: 1; color: var(--pink); }
.foot-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); padding-top: 24px; color: var(--muted); font-size: 13.5px; }

/* ---------- Rechts-/Inhaltsseiten ---------- */
.doc-wrap { padding: 48px 0 80px; }
.doc-back { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-weight: 600; margin-bottom: 26px; }
.doc-back:hover { color: var(--pink); }
.doc { max-width: 800px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 46px 48px; }
.doc h1 { font-size: 34px; letter-spacing: -.02em; margin-bottom: 6px; }
.doc h2 { font-size: 23px; margin: 36px 0 12px; padding-top: 18px; border-top: 1px solid var(--border); letter-spacing: -.01em; }
.doc h3 { font-size: 18px; margin: 24px 0 10px; color: var(--text); }
.doc p { color: #d9d4ea; margin: 12px 0; }
.doc ul, .doc ol { margin: 12px 0 12px 22px; color: #d9d4ea; }
.doc li { margin: 6px 0; }
.doc strong { color: var(--text); }
.doc a { color: var(--cyan); text-decoration: underline; text-underline-offset: 2px; }
.doc hr { border: 0; border-top: 1px solid var(--border); margin: 30px 0; }
.doc .updated { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.doc table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 14.5px; }
.doc th, .doc td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; vertical-align: top; }
.doc th { background: var(--surface2); font-weight: 700; }
/* Noch zu füllende Platzhalter sichtbar markieren */
.todo { background: rgba(255,196,0,.16); color: #ffd24d; border: 1px dashed rgba(255,196,0,.5); border-radius: 5px; padding: 0 5px; font-weight: 600; }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .eyebrow { margin-left: auto; margin-right: auto; }
  .phone { order: -1; transform: rotate(0); width: 240px; }
  .features { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav-links a:not(.btn) { display: none; }
}
@media (max-width: 520px) {
  .doc { padding: 28px 20px; }
  .doc h1 { font-size: 27px; }
  .cta-band { padding: 40px 22px; }
  .foot-grid { grid-template-columns: 1fr; gap: 26px; }
}

/* ============================================================ */
/* TINDER-STIL: Collage-Hero · Stories · großer Footer (feva-Optik) */
/* ============================================================ */
.nav-over { position: absolute; top: 0; left: 0; right: 0; background: transparent; border-bottom: 0; }
.nav-over .nav-links a { color: rgba(255,255,255,.92); }
.nav-over .nav-links a.btn { color: #fff; }
.nav-lang { color: rgba(255,255,255,.85); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }

/* Hero mit Karten-Collage */
.hero-c { position: relative; min-height: calc(100svh - 66px); display: grid; place-items: center; overflow: hidden; background: #0e0b16; }
.collage {
  position: absolute; inset: -14%; z-index: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px; transform: rotate(-12deg) scale(1.28); transform-origin: center; opacity: .92;
}
.ccard { aspect-ratio: 3 / 4.6; border-radius: 16px; position: relative; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,.45); }
.ccard .nm { position: absolute; left: 12px; bottom: 32px; color: #fff; font-weight: 800; font-size: 15px; text-shadow: 0 2px 8px rgba(0,0,0,.65); }
.ccard .pad { position: absolute; left: 0; right: 0; bottom: 10px; display: flex; gap: 7px; justify-content: center; }
.ccard .pad i { width: 14px; height: 14px; border-radius: 50%; display: block; box-shadow: 0 2px 6px rgba(0,0,0,.35); }
.ccard .pad i:nth-child(1) { background: #ffd24d; }
.ccard .pad i:nth-child(2) { background: #ff4d6d; }
.ccard .pad i:nth-child(3) { background: #2bd2ff; }
.ccard .pad i:nth-child(4) { background: #16d6a6; }
.ccard .pad i:nth-child(5) { background: #b14dff; }
.hero-veil { position: absolute; inset: 0; z-index: 1; background: radial-gradient(125% 125% at 50% 38%, rgba(14,11,22,.34), rgba(14,11,22,.84) 76%); }
.hero-inner { position: relative; z-index: 2; text-align: center; padding: 40px 20px 70px; }
.htitle { font-size: clamp(48px, 11vw, 156px); line-height: .9; letter-spacing: -.045em; font-weight: 900; color: #fff; margin: 0; }
.htitle .tm { font-size: .2em; font-weight: 700; vertical-align: super; }
.hero-pill { margin-top: 32px; font-size: 18px; padding: 18px 52px; }
.scrollhint { position: absolute; bottom: 22px; left: 0; right: 0; z-index: 2; text-align: center; color: rgba(255,255,255,.78); font-size: 14.5px; font-weight: 600; line-height: 1.5; }
.disclaim { position: absolute; right: 14px; bottom: 12px; z-index: 2; color: rgba(255,255,255,.45); font-size: 11px; max-width: 40%; text-align: right; }

/* Stories-Reihe */
.stories-sec { padding: 84px 0; }
.stories { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.scard { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; transition: transform .15s, border-color .15s; }
.scard:hover { transform: translateY(-4px); border-color: #4a3f63; }
.scard .img { aspect-ratio: 4 / 3.3; display: grid; place-items: center; font-size: 46px; background: var(--grad-soft); }
.scard .sbody { padding: 22px 20px 24px; }
.scard h3 { font-size: 19px; margin-bottom: 8px; letter-spacing: -.01em; }
.scard p { color: var(--muted); font-size: 14.5px; margin-bottom: 14px; }
.scard .more { color: var(--pink); font-weight: 700; font-size: 14px; }

/* "Was ist feva" SEO-Block */
.about { padding: 20px 0 84px; }
.about h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 850; letter-spacing: -.02em; margin-bottom: 18px; }
.about p { color: var(--muted); font-size: 16px; max-width: 840px; margin-bottom: 14px; line-height: 1.75; }
.about em { color: var(--text); font-style: normal; font-weight: 600; }

/* Großer Footer */
.fbig { border-top: 1px solid var(--border); background: #0b0813; padding: 62px 0 42px; margin-top: 10px; }
.fbig .brand { margin-bottom: 18px; }
.fbig .desc { color: var(--muted); max-width: 900px; font-size: 14.5px; line-height: 1.75; margin-bottom: 42px; }
.fcols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 40px; }
.fcols h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 15px; }
.fcols a { display: block; color: var(--text); font-size: 14.5px; margin-bottom: 11px; opacity: .85; transition: color .12s, opacity .12s; }
.fcols a:hover { color: var(--pink); opacity: 1; }
.appbadges { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 38px; }
.appbadges .lbl { font-weight: 800; font-size: 18px; }
.fbar { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); padding-top: 24px; color: var(--muted); font-size: 13px; }
.fbar .links { display: flex; gap: 16px; flex-wrap: wrap; }
.fbar a { color: var(--muted); }
.fbar a:hover { color: var(--pink); }

@media (max-width: 1000px) {
  .stories { grid-template-columns: repeat(2, 1fr); }
  .fcols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .collage { grid-template-columns: repeat(auto-fill, minmax(118px, 1fr)); transform: rotate(-12deg) scale(1.5); }
  .htitle { font-size: clamp(44px, 16vw, 80px); }
  .stories { grid-template-columns: 1fr; }
  .fcols { grid-template-columns: 1fr; }
  .disclaim { max-width: 55%; }
}

/* ============================================================ */
/* V2: Foto-Hero + iPhone-Mockup · So funktioniert · Sicherheit  */
/* ============================================================ */
.hero2 { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; background: #0e0b16; }
.hero2 .bg { position: absolute; inset: 0; z-index: 0; background-color: #0e0b16; background-image: url('assets/hero-club.jpg'); background-size: cover; background-position: 70% center; }
.hero2 .bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(14,11,22,.97) 0%, rgba(14,11,22,.86) 34%, rgba(14,11,22,.42) 66%, rgba(14,11,22,.6) 100%),
    linear-gradient(180deg, rgba(14,11,22,.55) 0%, rgba(14,11,22,0) 30%, rgba(14,11,22,.7) 100%);
}
.hero2 .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: 48px; align-items: center; padding-top: 96px; padding-bottom: 64px; }
.hero2 h1 { font-size: clamp(40px, 5.6vw, 78px); line-height: 1.0; letter-spacing: -.035em; font-weight: 900; margin: 0 0 22px; }
.hero2 h1 .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero2 .lead { font-size: clamp(17px, 2vw, 21px); color: #ddd8ec; max-width: 540px; margin-bottom: 32px; line-height: 1.55; }
.hero2 .cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero2 .hero-note { margin-top: 18px; font-size: 13.5px; color: var(--muted); }
.phone-wrap { display: flex; justify-content: center; }

/* CSS-iPhone mit feva-UI */
.phone {
  width: 300px; aspect-ratio: 9 / 19.3; border-radius: 48px;
  background: #0a0710; border: 11px solid #17131f; position: relative; overflow: hidden;
  box-shadow: 0 50px 100px rgba(0,0,0,.65), 0 0 0 1px rgba(255,255,255,.06) inset, 0 0 80px rgba(123,47,247,.25);
}
.phone::before { content: ""; position: absolute; top: 13px; left: 50%; transform: translateX(-50%); width: 96px; height: 27px; background: #000; border-radius: 999px; z-index: 6; }
.fui { position: absolute; inset: 0; background: var(--bg); display: flex; flex-direction: column; }
.fui-top { padding: 30px 18px 8px; display: flex; align-items: center; justify-content: space-between; }
.fui-top img { height: 18px; width: auto; }
.fui-top .tab { font-size: 12px; font-weight: 700; color: var(--muted); }
.fui-card { position: relative; margin: 8px 14px 0; flex: 1; border-radius: 24px; overflow: hidden; background: linear-gradient(160deg, #ff4d8d, #7b2ff7); }
.fui-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.55)); }
.fui-live { position: absolute; top: 12px; left: 12px; z-index: 2; display: inline-flex; align-items: center; gap: 7px; background: rgba(0,0,0,.4); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); color: #fff; font-size: 11px; font-weight: 700; padding: 6px 11px; border-radius: 999px; }
.fui-live .dot { width: 7px; height: 7px; border-radius: 50%; background: #16d6a6; box-shadow: 0 0 8px #16d6a6; }
.fui-name { position: absolute; left: 16px; bottom: 16px; z-index: 2; color: #fff; }
.fui-name b { font-size: 21px; font-weight: 800; letter-spacing: -.01em; }
.fui-name span { display: block; font-size: 12.5px; opacity: .92; margin-top: 3px; }
.fui-actions { display: flex; gap: 14px; align-items: center; justify-content: center; padding: 16px 0 26px; }
.fui-actions span { border-radius: 50%; display: grid; place-items: center; }
.fui-actions .x { width: 48px; height: 48px; background: #241f33; color: #9b94b3; font-size: 19px; }
.fui-actions .heart { width: 64px; height: 64px; background: var(--grad); color: #fff; font-size: 27px; box-shadow: 0 12px 26px rgba(255,77,141,.5); }
.fui-actions .star { width: 48px; height: 48px; background: #241f33; color: #2bd2ff; font-size: 19px; }

/* So funktioniert feva — 4 Schritte */
.steps-sec { padding: 104px 0; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.step .no { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 800; letter-spacing: .1em; color: var(--pink); margin-bottom: 18px; }
.step .no::before { content: ""; width: 32px; height: 2px; border-radius: 2px; background: var(--grad); }
.step .ico { font-size: 30px; margin-bottom: 14px; }
.step h3 { font-size: 21px; margin-bottom: 10px; letter-spacing: -.01em; }
.step p { color: var(--muted); font-size: 15.5px; line-height: 1.65; }

/* Sicherheit — 4 Punkte */
.safety-sec { padding: 0 0 104px; }
.safety-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.spoint { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 28px 26px; display: flex; gap: 18px; align-items: flex-start; }
.spoint .ico { width: 50px; height: 50px; flex: none; border-radius: 14px; background: var(--grad-soft); border: 1px solid var(--border); display: grid; place-items: center; font-size: 24px; }
.spoint h3 { font-size: 18px; margin-bottom: 6px; letter-spacing: -.01em; }
.spoint p { color: var(--muted); font-size: 15px; line-height: 1.6; }

/* Final CTA */
.finalcta { position: relative; padding: 120px 0; text-align: center; overflow: hidden; background: #0b0813; }
.finalcta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 130% at 50% -10%, rgba(255,77,141,.22), rgba(123,47,247,.12) 40%, transparent 70%); }
.finalcta .inner { position: relative; z-index: 1; }
.finalcta h2 { font-size: clamp(32px, 5vw, 58px); font-weight: 900; letter-spacing: -.03em; margin-bottom: 28px; }

@media (max-width: 880px) {
  .hero2 { min-height: auto; }
  .hero2 .container { grid-template-columns: 1fr; gap: 0; text-align: center; padding-top: 120px; padding-bottom: 80px; }
  .hero2 .lead { margin-left: auto; margin-right: auto; }
  .hero2 .cta { justify-content: center; }
  .hero2 .eyebrow { margin-left: auto; margin-right: auto; }
  .phone-wrap { display: none; }            /* mobil: Foto + Text sprechen für sich */
  .steps { grid-template-columns: repeat(2, 1fr); gap: 36px 28px; }
  .safety-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
  .hero2 .bg { background-position: 64% center; }
}

/* ============================================================ */
/* V3 — exakter Mockup-Nachbau: floating Nav · Foto-Hero ·       */
/*       Stat-Karten · iPhone „Heute Nacht" · 3 Feature-Karten   */
/* ============================================================ */
.svgi { width: 20px; height: 20px; display: block; }
.svgi.s { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.svgi.f { fill: currentColor; }

/* Floating Nav */
.topnav { position: absolute; top: 18px; left: 0; right: 0; z-index: 60; padding: 0 20px; }
.topnav .bar { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between;
  padding: 11px 14px 11px 22px; border-radius: 26px; background: rgba(18,14,28,.55);
  border: 1px solid rgba(255,255,255,.09); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(0,0,0,.35); }
.brand2 { display: flex; align-items: center; gap: 12px; }
.brand2 .logo { height: 36px; width: auto; }
.brand2 .bt { display: flex; flex-direction: column; gap: 3px; }
.brand2 .bt .wm { height: 20px; width: auto; }
.brand2 .bt small { font-size: 11px; color: var(--muted); letter-spacing: .01em; }
.navlinks { display: flex; align-items: center; gap: 30px; }
.navlinks a { color: #e9e5f5; font-weight: 600; font-size: 15px; opacity: .9; }
.navlinks a:hover { opacity: 1; color: #fff; }
.navlinks .btn { color: #fff; }

/* Hero */
.hero3 { position: relative; overflow: hidden; background: #0e0b16; }
.hero3 .bg { position: absolute; inset: 0; z-index: 0; background-color: #0e0b16; background-image: url('assets/hero-club.jpg'); background-size: cover; background-position: 64% center; }
.hero3 .bg::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, #0e0b16 0%, rgba(14,11,22,.92) 26%, rgba(14,11,22,.55) 52%, rgba(14,11,22,.28) 74%, rgba(14,11,22,.55) 100%),
              linear-gradient(180deg, rgba(14,11,22,.4) 0%, transparent 22%, rgba(14,11,22,.55) 100%); }
.hero3 .container { position: relative; min-height: 840px; }
.hero3 .copy { position: relative; z-index: 2; max-width: 640px; padding-top: 150px; padding-bottom: 70px; }
.hero3 h1 { font-size: clamp(52px, 7vw, 94px); line-height: .96; letter-spacing: -.04em; font-weight: 900; margin: 0 0 24px; color: #fff; }
.hero3 h1 .grad { background: linear-gradient(92deg, #ff5198, #ff2d72); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero3 .lead { font-size: clamp(17px, 1.6vw, 20px); color: #cfc9e0; max-width: 540px; line-height: 1.6; margin: 0 0 32px; }
.hero3 .cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero3 .cta .btn { font-size: 16.5px; padding: 16px 30px; }
.hero3 .cta .btn svg { width: 18px; height: 18px; margin-right: 2px; }

/* Stat-Karten */
.stat-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.stat { display: flex; align-items: center; gap: 13px; background: rgba(22,18,33,.6); border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px; padding: 13px 17px 13px 14px; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.stat .ic { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; flex: none; }
.stat .ic svg { width: 21px; height: 21px; }
.ic.pink { background: rgba(255,77,141,.15); color: #ff4d8d; box-shadow: inset 0 0 18px rgba(255,77,141,.22); }
.ic.purple { background: rgba(123,47,247,.16); color: #a877ff; box-shadow: inset 0 0 18px rgba(123,47,247,.25); }
.ic.cyan { background: rgba(43,210,255,.14); color: #2bd2ff; box-shadow: inset 0 0 18px rgba(43,210,255,.2); }
.ic.green { background: rgba(22,214,166,.14); color: #16d6a6; box-shadow: inset 0 0 18px rgba(22,214,166,.2); }
.stat b { font-size: 14.5px; color: #fff; display: block; line-height: 1.2; }
.stat span { font-size: 12.5px; color: var(--muted); }

/* iPhone (floating, rechts) */
.device-wrap { position: absolute; right: 0; bottom: -70px; z-index: 3; }
.device { width: 320px; aspect-ratio: 9 / 19.4; border-radius: 46px; background: #0a0710; border: 10px solid #15111d; position: relative; overflow: hidden;
  box-shadow: 0 60px 130px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.05) inset, 0 24px 90px rgba(255,77,141,.28); }
.device::before { content: ""; position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 100px; height: 28px; background: #000; border-radius: 999px; z-index: 20; }
.app { position: absolute; inset: 0; background: #0e0b16; display: flex; flex-direction: column; }
.app-status { display: flex; justify-content: space-between; align-items: center; padding: 14px 22px 0; font-size: 13px; font-weight: 700; color: #fff; }
.app-status .r { display: flex; gap: 6px; align-items: center; }
.app-status .r svg { width: 16px; height: 12px; fill: #fff; }
.app-body { flex: 1; overflow: hidden; padding: 6px 15px 0; }
.app-head { display: flex; justify-content: space-between; align-items: flex-start; margin: 10px 2px 16px; }
.app-head h4 { font-size: 21px; font-weight: 800; color: #fff; margin: 0; }
.app-head .loc { font-size: 11px; color: var(--muted); display: flex; align-items: center; gap: 5px; margin-top: 4px; }
.app-head .loc .dot { width: 6px; height: 6px; border-radius: 50%; background: #16d6a6; box-shadow: 0 0 6px #16d6a6; }
.app-head .menu { width: 30px; height: 30px; border-radius: 9px; background: #1a1626; border: 1px solid var(--border); display: grid; place-items: center; color: var(--muted); }
.app-head .menu svg { width: 15px; height: 15px; }
.app-lbl { display: flex; justify-content: space-between; align-items: baseline; margin: 0 2px 10px; }
.app-lbl b { font-size: 12.5px; color: #fff; }
.app-lbl a { font-size: 10.5px; color: var(--pink); font-weight: 700; }
.spots { display: flex; justify-content: space-between; margin-bottom: 18px; }
.spot { width: 18%; text-align: center; }
.spot i { display: block; width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 6px; border: 2px solid rgba(255,255,255,.14); }
.spot small { font-size: 9px; color: var(--muted); display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.clubcard { position: relative; height: 124px; border-radius: 18px; overflow: hidden; margin-bottom: 18px; }
.clubcard .cbg { position: absolute; inset: 0; }
.clubcard::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 38%, rgba(0,0,0,.72)); }
.clubcard .meta { position: absolute; left: 13px; bottom: 11px; z-index: 2; }
.clubcard .meta b { font-size: 16px; color: #fff; font-weight: 800; }
.clubcard .meta span { display: block; font-size: 10.5px; color: rgba(255,255,255,.88); margin-top: 1px; }
.clubcard .live { position: absolute; right: 11px; bottom: 11px; z-index: 2; display: flex; align-items: center; gap: 5px; background: rgba(10,8,16,.55); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); color: #fff; font-size: 10px; font-weight: 700; padding: 4px 9px; border-radius: 999px; }
.clubcard .live .dot { width: 6px; height: 6px; border-radius: 50%; background: #16d6a6; box-shadow: 0 0 6px #16d6a6; }
.matchrow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mcard { border-radius: 14px; overflow: hidden; background: #1a1626; border: 1px solid var(--border); }
.mcard .ph { height: 76px; }
.mcard .info { padding: 7px 8px 9px; }
.mcard .info b { font-size: 11px; color: #fff; display: block; line-height: 1.15; }
.mcard .info span { font-size: 9px; color: var(--muted); }
.tabbar { display: flex; justify-content: space-around; align-items: center; padding: 9px 6px 16px; border-top: 1px solid var(--border); background: #0e0b16; }
.tabbar .tb { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 9px; color: var(--muted); }
.tabbar .tb svg { width: 19px; height: 19px; }
.tabbar .tb.active { color: var(--pink); }

/* 3 Feature-Karten */
.features3 { padding: 96px 0 60px; }
.fgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.fcard { background: var(--surface); border: 1px solid var(--border); border-radius: 22px; padding: 34px 32px; transition: transform .15s, border-color .15s; }
.fcard:hover { transform: translateY(-4px); border-color: #463c60; }
.fcard .head { display: flex; align-items: center; justify-content: space-between; }
.fcard .ic { width: 58px; height: 58px; border-radius: 17px; display: grid; place-items: center; margin-bottom: 22px; }
.fcard .ic svg { width: 27px; height: 27px; }
.fcard .head .arrow { width: 26px; height: 26px; margin-top: -22px; }
.fcard h3 { font-size: 23px; margin-bottom: 11px; letter-spacing: -.01em; }
.fcard p { color: var(--muted); font-size: 15.5px; line-height: 1.6; max-width: 90%; }
.arr-pink { color: #ff4d8d; } .arr-purple { color: #a877ff; } .arr-green { color: #16d6a6; }

@media (max-width: 1340px) { .device-wrap { right: -10px; } }
@media (max-width: 1100px) { .device-wrap { transform: scale(.86); transform-origin: bottom right; right: -24px; } }
@media (max-width: 900px) {
  .navlinks a:not(.btn) { display: none; }
  .hero3 .container { min-height: auto; }
  .hero3 .copy { max-width: 100%; padding-top: 130px; padding-bottom: 60px; }
  .device-wrap { display: none; }
  .fgrid { grid-template-columns: 1fr; }
  .brand2 .bt small { display: none; }
}
@media (max-width: 560px) {
  .hero3 h1 { font-size: clamp(44px, 13vw, 64px); }
  .stat { flex: 1 1 100%; }
}

/* ============================================================ */
/* V4 — Clean Full-Screen Foto-Hero (Hinge/Tinder/Bumble-Stil)   */
/* ============================================================ */
.cnav { position: absolute; top: 26px; left: 0; right: 0; z-index: 60; }
.cnav .row { max-width: 1300px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; }
.cnav .left { display: flex; gap: 28px; }
.cnav .right { display: flex; gap: 26px; justify-content: flex-end; align-items: center; }
.cnav a { color: rgba(255,255,255,.92); font-weight: 600; font-size: 15px; }
.cnav a:hover { color: #fff; }
.cnav .center { display: flex; justify-content: center; align-items: center; gap: 9px; }
.cnav .center .lg { height: 30px; width: auto; }
.cnav .center .wm { height: 21px; width: auto; }
.cnav .right .btn { color: #fff; }

.shero { position: relative; height: 100svh; min-height: 600px; overflow: hidden; background: #0e0b16; }
.shero .bg { position: absolute; inset: 0; background: #0e0b16 url('assets/hero-club.jpg') center center / cover no-repeat; }
.shero .bg::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,6,14,.5) 0%, rgba(8,6,14,0) 20%, rgba(8,6,14,0) 40%, rgba(8,6,14,.55) 78%, rgba(8,6,14,.9) 100%),
              linear-gradient(90deg, rgba(8,6,14,.55) 0%, rgba(8,6,14,0) 48%); }
.shero .inner { position: relative; z-index: 2; height: 100%; max-width: 1300px; margin: 0 auto; padding: 0 32px 9vh; display: flex; align-items: flex-end; }
.shero h1 { color: #fff; font-size: clamp(46px, 8vw, 118px); line-height: .95; letter-spacing: -.035em; font-weight: 900; margin: 0; text-shadow: 0 6px 44px rgba(0,0,0,.4); }
.shero .scrollcue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 7px; color: rgba(255,255,255,.85); font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.shero .scrollcue svg { width: 22px; height: 22px; animation: bob 1.7s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

@media (max-width: 760px) {
  .cnav .left { display: none; }
  .cnav .right a:not(.btn) { display: none; }
  .shero h1 { font-size: clamp(40px, 12vw, 70px); }
  .shero .inner { padding-bottom: 12vh; }
}

/* ============================================================ */
/* V5 — Helle „zweite Seite" (weiß, beim Runterscrollen)         */
/* ============================================================ */
.light { background: #ffffff; color: #1b1622; }
.light .section-head h2 { color: #14101c; }
.light .section-head p { color: #5b5667; }
.light .fcard { background: #f7f6fb; border-color: #ece9f3; }
.light .fcard:hover { transform: translateY(-4px); border-color: #ddd8ea; box-shadow: 0 14px 34px rgba(20,16,28,.07); }
.light .fcard h3 { color: #14101c; }
.light .fcard p { color: #5b5667; }
.light .safety-grid .spoint { background: #f7f6fb; border-color: #ece9f3; }
.light .spoint .ic { border-color: #ece9f3; }
.light .spoint h3 { color: #14101c; }
.light .spoint p { color: #5b5667; }
.light .finalcta { background: #ffffff; }
.light .finalcta::before { background: radial-gradient(70% 130% at 50% -10%, rgba(255,77,141,.12), rgba(123,47,247,.06) 40%, transparent 70%); }
.light .finalcta h2 { color: #14101c; }
.light .finalcta p { color: #6b6678 !important; }

/* ============================================================ */
/* V6 — Editorial helle Sektion (clean/elegant, Hinge-Stil)      */
/* ============================================================ */
.container.narrow { max-width: 1000px; }
.light .ed { padding: 120px 0; }
.light .ed:first-of-type { padding-top: 150px; }
.kicker { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #d11e63; margin-bottom: 22px; }
.ed-h { font-size: clamp(34px, 5vw, 62px); line-height: 1.04; letter-spacing: -.025em; font-weight: 800; color: #14101c; max-width: 17ch; margin: 0; }
.ed-h em { font-style: normal; color: #ff2d72; }
.ed-sub { font-size: clamp(17px, 2vw, 20px); color: #5b5667; max-width: 560px; margin-top: 24px; line-height: 1.55; }

/* Schritt-Liste (Trennlinien statt Boxen) */
.rows { margin-top: 60px; }
.row-ed { display: grid; grid-template-columns: 84px 1fr; gap: 26px; align-items: start; padding: 34px 0; border-top: 1px solid #e9e7f0; }
.row-ed:last-child { border-bottom: 1px solid #e9e7f0; }
.row-ed .n { font-size: 19px; font-weight: 800; color: #c8c3d6; letter-spacing: .03em; padding-top: 6px; }
.row-ed h3 { font-size: clamp(22px, 2.4vw, 30px); color: #14101c; font-weight: 700; letter-spacing: -.015em; margin: 0 0 9px; }
.row-ed p { color: #5b5667; font-size: 17px; line-height: 1.6; max-width: 580px; }

/* Sicherheit-Liste */
.safelist { margin-top: 54px; display: grid; grid-template-columns: 1fr 1fr; gap: 0 64px; }
.safe-ed { padding: 30px 0; border-top: 1px solid #e9e7f0; }
.safe-ed h3 { font-size: 20px; color: #14101c; font-weight: 700; letter-spacing: -.01em; margin: 0 0 8px; }
.safe-ed p { color: #5b5667; font-size: 16px; line-height: 1.6; max-width: 420px; }

/* Final */
.final-ed { text-align: center; padding: 130px 0 140px; }
.final-ed .ed-h { max-width: none; margin: 0 auto; }
.final-ed .ed-note { color: #6b6678; font-size: 14px; margin-top: 18px; }
.final-ed .ed-note a { color: var(--pink); font-weight: 700; }

@media (max-width: 760px) {
  .light .ed { padding: 80px 0; }
  .row-ed { grid-template-columns: 1fr; gap: 6px; padding: 26px 0; }
  .row-ed .n { padding-top: 0; }
  .safelist { grid-template-columns: 1fr; }
}

/* ============================================================ */
/* V7 — Hinge-Editorial: Serif, handgezeichneter Kreis/Pfeil      */
/* ============================================================ */
.ed-h, .a-h, .row-ed h3, .safe-ed h3 { font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; font-weight: 600; letter-spacing: -.012em; }
.kicker { color: #a31a6b; }
.ed-h em { color: #a31a6b; }

.approach { position: relative; padding: 150px 0 130px; }
.approach .grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 30px; }
.approach .left { max-width: 640px; }
.approach .a-h { font-size: clamp(46px, 8vw, 100px); line-height: .98; color: #14101c; margin: 0; }
.approach .right { align-self: end; justify-self: end; max-width: 470px; }
.approach .right p { font-size: clamp(17px, 1.4vw, 20px); color: #4a4556; line-height: 1.6; margin: 0 0 30px; }

.btn-dark { display: inline-flex; align-items: center; background: #14101c; color: #fff; font-weight: 700; font-size: 16px; padding: 16px 34px; border-radius: 999px; transition: background .15s, transform .12s; }
.btn-dark:hover { background: #2a2436; transform: translateY(-2px); }

.circled { position: relative; white-space: nowrap; }
.circled svg { position: absolute; left: -9%; top: -20%; width: 118%; height: 142%; overflow: visible; pointer-events: none; }
.circled svg path { fill: none; stroke: #a31a6b; stroke-width: 3; stroke-linecap: round; }
.sketch-arrow { position: absolute; left: 47%; top: 46%; width: 160px; height: 160px; color: #a31a6b; pointer-events: none; }
.sketch-arrow path { fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 860px) {
  .approach { padding: 90px 0 70px; }
  .approach .grid { grid-template-columns: 1fr; }
  .approach .right { justify-self: start; align-self: start; margin-top: 34px; }
  .sketch-arrow { display: none; }
}

/* V7b — längeres Statement: ruhigere Größe, Absatz unten rechts */
.approach .grid { display: block; }
.approach .left { max-width: 760px; }
.approach .a-h { font-size: clamp(30px, 4.3vw, 56px); line-height: 1.12; }
.approach .right { max-width: 470px; margin-left: auto; margin-top: 88px; }
@media (max-width: 860px) { .approach .right { margin-left: 0; margin-top: 30px; } }

/* ============================================================ */
/* V8 — Minimal editorial Split: Statement links, Schritte rechts */
/* ============================================================ */
.howsplit { padding: 150px 0 120px; }
.howsplit .wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 72px; align-items: start; }
.howsplit .lead-col h2 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: clamp(32px, 3.4vw, 50px); line-height: 1.14; letter-spacing: -.012em; color: #14101c; margin: 0; max-width: 15ch; }
.howsplit .lead-col .lead { margin-top: 26px; color: #5b5667; font-size: 18px; line-height: 1.6; max-width: 440px; }
.howsplit .steps-col { padding-top: 6px; }
.hstep { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 26px 0; border-top: 1px solid #e9e7f0; }
.hstep:first-child { padding-top: 0; border-top: 0; }
.hstep .n { font-family: 'Playfair Display', Georgia, serif; font-size: 19px; font-weight: 600; color: #c5c0d4; }
.hstep h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: 22px; color: #14101c; margin: 0 0 6px; letter-spacing: -.01em; }
.hstep p { color: #5b5667; font-size: 15.5px; line-height: 1.55; }
@media (max-width: 860px) {
  .howsplit { padding: 80px 0; }
  .howsplit .wrap { grid-template-columns: 1fr; gap: 44px; }
  .hstep:first-child { border-top: 1px solid #e9e7f0; padding-top: 26px; }
}

/* Gradient-Akzentwort in Headlines (wie im Mockup „Nacht") */
.gradtext { background: linear-gradient(100deg, #ff4d8d, #b14dff); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Sprach-Umschalter (DE/EN) in der Nav */
.langswitch { display: inline-flex; align-items: center; border: 1px solid rgba(255,255,255,0.22); border-radius: 999px; overflow: hidden; }
.langswitch button { appearance: none; -webkit-appearance: none; background: transparent; border: 0; color: rgba(255,255,255,0.6); font-size: 13px; font-weight: 700; letter-spacing: .03em; padding: 7px 12px; cursor: pointer; font-family: inherit; transition: background .15s, color .15s; }
.langswitch button.on { background: #fff; color: #14101c; }
.langswitch button:not(.on):hover { color: #fff; }
@media (max-width: 720px) { .langswitch button { padding: 6px 10px; font-size: 12px; } }

/* KI-Hinweis am Hero-Bild (dezent, unten rechts wie bei Tinder) */
.shero .aidisclaimer { position: absolute; right: 16px; bottom: 13px; z-index: 2; margin: 0; max-width: 62%; text-align: right; color: rgba(255,255,255,0.5); font-size: 11px; font-weight: 400; letter-spacing: .01em; text-shadow: 0 1px 6px rgba(0,0,0,.45); }
@media (max-width: 720px) { .shero .aidisclaimer { right: 12px; bottom: 9px; font-size: 10px; } }

/* ============================================================ */
/* MOBILE-POLISH — saubere, vollständige Handy-Ansicht          */
/* ============================================================ */
@media (max-width: 760px) {
  /* Nav: Logo links, Sprache + App-Button rechts (statt 3-Spalten) */
  .cnav { top: 14px; }
  .cnav .row { padding: 0 18px; grid-template-columns: auto 1fr; gap: 12px; }
  .cnav .left { display: none; }
  .cnav .center { justify-content: flex-start; }
  .cnav .center .lg { height: 26px; }
  .cnav .center .wm { height: 18px; }
  .cnav .right { gap: 12px; }
  .btn-sm { padding: 10px 16px; font-size: 13px; }

  /* Hero: schmaleres Seiten-Padding, Headline-Schutzraum */
  .shero .inner { padding-left: 22px; padding-right: 22px; padding-bottom: 16vh; }
  .shero .aidisclaimer { max-width: 70%; }

  /* großzügige Abstände fürs Handy reduzieren */
  .final-ed { padding: 88px 0 96px; }
  .howsplit { padding: 70px 0; }
}

@media (max-width: 420px) {
  .cnav .right { gap: 8px; }
  .cnav .center .wm { height: 16px; }
  .btn-sm { padding: 9px 13px; font-size: 12.5px; }
  .shero h1 { font-size: clamp(34px, 12.5vw, 56px); }
  .langswitch button { padding: 6px 9px; font-size: 11.5px; }
  .container { padding: 0 18px; }
}

/* ============================================================ */
/* Warteliste-Pop-up                                            */
/* ============================================================ */
.wl-modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.wl-modal.open { display: flex; }
.wl-backdrop { position: absolute; inset: 0; background: rgba(6,4,12,.72); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.wl-card { position: relative; z-index: 1; width: 100%; max-width: 440px; background: #1a1626; border: 1px solid #2e2942; border-radius: 24px; padding: 38px 34px 32px; box-shadow: 0 40px 100px rgba(0,0,0,.6); text-align: center; animation: wl-pop .22s ease; }
@keyframes wl-pop { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }
.wl-x { position: absolute; top: 12px; right: 14px; background: transparent; border: 0; color: #9b94b3; font-size: 26px; line-height: 1; cursor: pointer; padding: 6px; }
.wl-x:hover { color: #fff; }
.wl-logo { height: 38px; width: auto; margin: 0 auto 16px; }
.wl-kicker { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #ff4d8d; margin-bottom: 12px; }
.wl-card h3 { font-size: 25px; font-weight: 800; letter-spacing: -.02em; color: #f4f1fb; margin: 0 0 10px; line-height: 1.15; }
.wl-sub { color: #9b94b3; font-size: 15px; line-height: 1.55; margin: 0 auto 24px; max-width: 350px; }
.wl-form { display: flex; flex-direction: column; gap: 12px; }
.wl-input { width: 100%; background: #241f33; border: 1px solid #2e2942; border-radius: 14px; padding: 15px 16px; font-size: 16px; color: #f4f1fb; font-family: inherit; }
.wl-input::placeholder { color: #6f6884; }
.wl-input:focus { outline: none; border-color: #ff4d8d; }
.wl-form .btn { width: 100%; padding: 15px; }
.wl-msg { min-height: 20px; margin: 14px 0 0; font-size: 14px; font-weight: 600; }

/* Handy: Hero-Ausschnitt nach rechts -> die zwei Personen sichtbar (Desktop unveraendert) */
@media (max-width: 760px) {
  .shero .bg { background-position: 78% center; }
}
