:root{
  --bg:#0b0f14;
  --card:#101824;
  --text:#e8eef6;
  --muted:#b7c2d0;
  --line:#233044;
  --accent:#7fb0ff;
  --accent2:#a3ffcf;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; background:var(--bg); color:var(--text); }
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }
img{ max-width:100%; height:auto; display:block; }

.container{ width:min(1100px, 92vw); margin:0 auto; }

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(140%) blur(10px);
  background: rgba(11,15,20,0.75);
  border-bottom:1px solid rgba(35,48,68,0.6);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{ display:flex; align-items:center; gap:12px; }
//.brand img{ width:44px; height:44px; border-radius:12px; background:#0f1722; border:1px solid rgba(35,48,68,0.8); padding:6px; }
.brand img{
  height: 44px;          /* Header-Höhe bleibt schlank */
  width: auto;           /* Querformat bleibt korrekt */
  max-width: 220px;      /* verhindert "zu breit" im Menü */
  border-radius: 10px;   /* optional: abrunden */
  background: transparent;
  border: 0;
  padding: 0;
}
.brand .title{ line-height:1.05; }
.brand .title strong{ display:block; font-size:14px; letter-spacing:0.4px; }
.brand .title span{ display:block; font-size:12px; color:var(--muted); }

.menu{ display:flex; gap:14px; flex-wrap:wrap; justify-content:flex-end; }
.menu a{
  font-size:13px; color:var(--muted);
  padding:8px 10px; border-radius:12px;
  border:1px solid transparent;
}
.menu a:hover{ color:var(--text); border-color:rgba(35,48,68,0.8); background:rgba(16,24,36,0.6); }

.hero{
  padding:56px 0 26px;
  border-bottom:1px solid rgba(35,48,68,0.6);
  background:
    radial-gradient(1100px 380px at 20% 10%, rgba(127,176,255,0.22), transparent 55%),
    radial-gradient(900px 420px at 80% 0%, rgba(163,255,207,0.10), transparent 55%);
}
.heroGrid{
  display:grid; grid-template-columns: 1.1fr 0.9fr; gap:22px; align-items:center;
}
@media (max-width: 900px){
  .heroGrid{ grid-template-columns:1fr; }
}
.kicker{ color:var(--muted); font-size:13px; letter-spacing:0.3px; }
.h1{ font-size:42px; line-height:1.05; margin:10px 0 12px; }
@media (max-width: 520px){ .h1{ font-size:34px; } }
.lead{ color:var(--muted); font-size:16px; line-height:1.6; max-width:60ch; }

.ctaRow{ display:flex; gap:12px; margin-top:18px; flex-wrap:wrap; }
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:11px 14px; border-radius:14px;
  border:1px solid rgba(35,48,68,0.9);
  background:rgba(16,24,36,0.7);
  color:var(--text); font-size:13px;
}
.btn.primary{
  border-color: rgba(127,176,255,0.55);
  background: linear-gradient(180deg, rgba(127,176,255,0.20), rgba(16,24,36,0.8));
}
.btn:hover{ transform: translateY(-1px); }
.badges{ display:flex; gap:10px; margin-top:18px; flex-wrap:wrap; }
.badge{
  font-size:12px; color:var(--muted);
  padding:8px 10px; border-radius:999px;
  border:1px solid rgba(35,48,68,0.7);
  background:rgba(16,24,36,0.45);
}

.heroCard{
  border:1px solid rgba(35,48,68,0.9);
  background: linear-gradient(180deg, rgba(16,24,36,0.85), rgba(16,24,36,0.55));
  border-radius:22px; overflow:hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.heroCard .imgWrap{ aspect-ratio: 4 / 3; overflow:hidden; }
.heroCard .imgWrap img{ width:100%; height:100%; object-fit:cover; }
.heroCard .meta{ padding:14px 14px 16px; }
.meta strong{ display:block; font-size:14px; }
.meta span{ display:block; font-size:12px; color:var(--muted); margin-top:6px; line-height:1.5; }

.section{ padding:36px 0; }
.h2{ font-size:22px; margin:0 0 10px; }
.p{ color:var(--muted); line-height:1.7; margin:0; }

.grid3{ display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; margin-top:16px; }
@media (max-width: 900px){ .grid3{ grid-template-columns:1fr; } }

.card{
  border:1px solid rgba(35,48,68,0.85);
  background: rgba(16,24,36,0.55);
  border-radius:20px;
  padding:16px;
}
.card h3{ margin:0 0 8px; font-size:15px; }
.card p{ margin:0; color:var(--muted); line-height:1.6; font-size:13px; }

.split{
  display:grid; grid-template-columns: 1fr 1fr; gap:14px; align-items:start;
}
@media (max-width: 900px){ .split{ grid-template-columns:1fr; } }

.list{ margin:10px 0 0; padding-left:18px; color:var(--muted); line-height:1.75; }
.small{ font-size:12px; color:var(--muted); line-height:1.6; }

.footer{
  border-top:1px solid rgba(35,48,68,0.6);
  padding:20px 0; color:var(--muted);
}
.footerRow{
  display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap;
  font-size:12px;
}
.footer a{ color:var(--muted); }
.footer a:hover{ color:var(--text); }
.lang-switch{
  font-weight:600;
  font-size:13px;
  padding:8px 12px;
  border-radius:10px;
  border:1px solid rgba(127,176,255,0.5);
  background:rgba(127,176,255,0.08);
  color:#e8eef6;
  margin-left:10px;
}

.lang-switch:hover{
  background:rgba(127,176,255,0.18);
  text-decoration:none;
.secret-love{
  position: relative;
  color: inherit;
  opacity: 1;
  cursor: default;
}

.love-tooltip{
  position:absolute;
  bottom:18px;
  left:50%;
  transform:translateX(-50%);
  padding:6px 10px;
  border-radius:8px;
  font-size:12px;
  white-space:nowrap;
  opacity:0;
  pointer-events:none;
  transition:none;  /* wichtig: kein CSS-Fade, keine Delay-Regeln */
  border:1px solid rgba(127,176,255,0.3);
  background:#0f1722;
}

