@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap');

:root{
  --accent:#c62828;
  --bg:#07080a;
  --paper:#ffffff;
  --text:#12151b;
  --muted:#6b7280;
  --shadow:0 18px 50px rgba(0,0,0,.18);
  --r:22px;
}

*{ box-sizing:border-box; }

html,body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background:var(--bg);
  color:#fff;
}

a{ color:inherit; text-decoration:none; }

/* ===== LANDSCHAFT ===== */
.hero-image{
  min-height:100svh;          /* langes Bild, aber Chip sichtbar */
  padding-bottom:140px;       /* grosser Abstand zum Content */
  position:relative;
  background:
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.22)),
    url("Landschaft.jpg");
  background-size:cover;
  background-position:center;
}

/* Chip sofort sichtbar (mittig) */
.hero-chip{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, 300%);
  background:rgba(0,0,0,.55);
  padding:12px 18px;
  border-radius:999px;
  font-weight:700;
  font-size:15px;
  backdrop-filter:blur(6px);
  border:1px solid rgba(255,255,255,.14);
}

.scroll-hint{
  position:absolute;
  top:50%;
  left:50%;
  transform: translateX(-50%, 1000%);
  font-size:22px;
  opacity:.85;
  animation: bounce 1.8s infinite;
}

@keyframes bounce{
  0%,100%{ transform: translate(-50%, 1000%); }
  50%{ transform: translate(-50%, 1080%); }
}

/* ===== CONTENT ===== */
.content{
  max-width:720px;
  margin:0 auto;
  padding:0 16px 70px;
}

.card{
  background:var(--paper);
  color:var(--text);
  border-radius:var(--r);
  padding:22px;
  box-shadow:var(--shadow);
  margin-top:36px;            /* MEHR Abstand zwischen Blocks */
}

/* erster Block bewusst weiter unten */
.hero-card{
  margin-top:64px;
}

.pill{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  background:#f3f4f6;
  font-size:13px;
  color:#374151;
  font-weight:600;
}

h1{
  margin:14px 0 10px;
  font-size:clamp(30px,7vw,44px);
  letter-spacing:-.04em;
}

h2{ margin:0 0 12px; }

.accent{ color:var(--accent); }

.sub{
  margin:0 0 14px;
  color:#242a33;
  line-height:1.6;
}

.actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin:14px 0;
}

.btn{
  padding:14px;
  border-radius:999px;
  background:var(--accent);
  color:#fff;
  font-weight:800;
  text-align:center;
}

.btn.ghost{
  background:transparent;
  border:1px solid rgba(0,0,0,.12);
  color:var(--text);
}

.meta{
  display:flex;
  gap:12px;
  font-size:13px;
  color:var(--muted);
}

.organizer{
  display:flex;
  gap:14px;
  align-items:center;
  margin-top:20px;
  padding-top:14px;
  border-top:1px solid rgba(0,0,0,.08);
}

.organizer img{
  width:96px;
  height:96px;
  border-radius:50%;
  object-fit:cover;
  border:3px solid #fff;
  box-shadow:0 10px 25px rgba(0,0,0,.18);
}

.byline{ font-weight:900; font-size:18px; }

.solve{
  display:grid;
  gap:10px;
}

.solve-row{
  display:flex;
  justify-content:space-between;
  background:#f6f7f9;
  padding:12px;
  border-radius:16px;
  font-weight:700;
}

.mini-callout{
  margin-top:12px;
  font-size:13px;
  color:#374151;
  background:rgba(198,40,40,.08);
  border:1px solid rgba(198,40,40,.16);
  padding:10px 12px;
  border-radius:16px;
}

.footer{
  display:flex;
  justify-content:space-between;
  margin-top:40px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.12);
}

.muted{ color:var(--muted); }
.small{ font-size:13px; }

/* ===== DESKTOP ===== */
@media (min-width:900px){
  .hero-chip,
  .scroll-hint{
    display:none;   /* Desktop: komplett clean */
  }

  .content{ max-width:900px; }
}

.reveal{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:12px 0 14px;
}

.badge{
  background:#f6f7f9;
  border:1px solid rgba(0,0,0,.06);
  border-radius:999px;
  padding:10px 12px;
  font-weight:700;
  color:#111827;
}

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap:10px;
  margin-bottom:10px;
}

.qa{ display:grid; gap:12px; }

.q{
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  padding:12px 14px;
  background:#fff;
}

.q summary{
  cursor:pointer;
  font-weight:900;
  display:flex;
  align-items:center;
  gap:10px;
}

.letter{
  width:28px;
  height:28px;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(198,40,40,.12);
  border:1px solid rgba(198,40,40,.20);
  color:var(--accent);
  font-weight:950;
}

.qtext{
  margin:10px 0 0;
  color:#242a33;
  line-height:1.45;
}

.answer{
  margin-top:10px;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(0,0,0,.04);
  border:1px solid rgba(0,0,0,.10);
  font-weight:800;
  color:#111827;
}

