/* ============================================================
   Generationenbrücke — Landing Page
   Design-System-Tokens (Schema „Salbei") + Seitenlayout.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@400;500;600;700;800&family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,600&display=swap');

:root {
  /* Farben (Salbei) */
  --color-primary: #4e7a52;
  --color-primary-strong: #365639;
  --color-primary-soft: #e7efe1;
  --color-on-primary: #ffffff;
  --color-bg: #f7f8f1;
  --color-surface: #ffffff;
  --color-ink: #28302a;
  --color-ink-muted: #7f897d;
  --color-line: #e7e8dd;
  --color-star: #d9a441;

  --text-primary: var(--color-ink);
  --text-secondary: var(--color-ink-muted);
  --accent: var(--color-primary);
  --accent-tint: var(--color-primary-soft);

  /* Schrift */
  --font-display: 'Newsreader', Georgia, serif;
  --font-sans: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;

  /* Radien / Schatten */
  --radius-md: 14px;
  --radius-lg: 16px;
  --radius-xl: 18px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(20,20,20,.04);
  --shadow-card: 0 4px 14px rgba(28,40,28,.06);
  --shadow-button: 0 6px 16px rgba(40,55,42,.16);
  --shadow-raised: 0 12px 32px rgba(20,20,20,.10), 0 2px 6px rgba(20,20,20,.05);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--color-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ---- Kopfzeile ---- */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; max-width: 1080px; margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; }
.brand .dot {
  width: 30px; height: 30px; border-radius: var(--radius-pill);
  background: var(--accent-tint); color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.nav .btn-sm {
  background: var(--accent); color: var(--color-on-primary);
  padding: 9px 16px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 14px; text-decoration: none;
  box-shadow: var(--shadow-button);
}

/* ---- Hero ---- */
.hero {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px;
  align-items: center; padding: 48px 0 64px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-tint); color: var(--color-primary-strong);
  padding: 6px 14px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 13px; margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(38px, 6vw, 60px); line-height: 1.05; margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.hero p.lead { font-size: 18px; color: var(--text-secondary); margin: 0 0 28px; max-width: 30em; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 24px; border-radius: var(--radius-lg);
  font-weight: 700; font-size: 16px; text-decoration: none; border: none; cursor: pointer;
}
.btn-primary { background: var(--accent); color: var(--color-on-primary); box-shadow: var(--shadow-button); }
.btn-primary:hover { background: var(--color-primary-strong); }
.btn-ghost { background: var(--color-surface); color: var(--text-primary); border: 1px solid var(--color-line); }
.btn small { display: block; font-weight: 500; font-size: 11.5px; opacity: .85; }

.hero-art { position: relative; display: flex; justify-content: center; }
.phone-frame {
  width: 290px; border-radius: 34px; border: 1px solid var(--color-line);
  background: var(--color-surface); box-shadow: var(--shadow-raised);
  overflow: hidden;
}

/* ---- Vertrauen ---- */
.trust {
  display: flex; flex-wrap: wrap; gap: 24px; justify-content: center;
  padding: 8px 0 56px; color: var(--text-secondary); font-weight: 600; font-size: 14px;
}
.trust span { display: inline-flex; align-items: center; gap: 8px; }
.trust .ph { color: var(--accent); }

/* ---- Abschnitte ---- */
section { padding: 56px 0; }
.section-head { text-align: center; max-width: 36em; margin: 0 auto 40px; }
.section-head h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(28px, 4vw, 40px); margin: 0 0 12px; line-height: 1.1;
}
.section-head p { color: var(--text-secondary); font-size: 17px; margin: 0; }

/* Feature-Karten */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--color-surface); border: 1px solid var(--color-line);
  border-radius: var(--radius-xl); padding: 26px; box-shadow: var(--shadow-sm);
}
.card .ic {
  width: 50px; height: 50px; border-radius: var(--radius-md);
  background: var(--accent-tint); color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 16px;
}
.card h3 { font-size: 18px; margin: 0 0 8px; }
.card p { color: var(--text-secondary); margin: 0; font-size: 15px; }

/* Screenshots */
.screens { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.screens figure { margin: 0; text-align: center; }
.screens img {
  border-radius: 26px; border: 1px solid var(--color-line);
  box-shadow: var(--shadow-card); margin: 0 auto 14px;
}
.screens figcaption { font-weight: 600; color: var(--text-secondary); font-size: 14px; }

/* Download / Anleitung */
.download { background: var(--color-surface); border-top: 1px solid var(--color-line); border-bottom: 1px solid var(--color-line); }
.dl-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.dl-card {
  background: var(--accent-tint); border-radius: var(--radius-xl); padding: 32px;
}
.dl-card .big { font-family: var(--font-display); font-weight: 600; font-size: 26px; margin: 0 0 6px; }
.dl-card .meta { color: var(--color-primary-strong); font-weight: 600; font-size: 14px; margin-bottom: 22px; }
.steps { counter-reset: step; list-style: none; margin: 0; padding: 0; }
.steps li {
  position: relative; padding-left: 48px; margin-bottom: 22px; min-height: 34px;
}
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 34px; height: 34px; border-radius: var(--radius-pill);
  background: var(--accent); color: var(--color-on-primary);
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.steps li b { display: block; margin-bottom: 2px; }
.steps li span { color: var(--text-secondary); font-size: 15px; }
.note {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--color-bg); border: 1px solid var(--color-line);
  border-radius: var(--radius-md); padding: 14px 16px; font-size: 14px; color: var(--text-secondary);
  margin-top: 8px;
}
.note .ph { color: var(--accent); font-size: 18px; flex: none; margin-top: 1px; }

/* Footer */
footer { padding: 40px 0 56px; color: var(--text-secondary); font-size: 14px; text-align: center; }
footer .brand { justify-content: center; margin-bottom: 12px; color: var(--text-primary); }

@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; gap: 32px; text-align: center; padding-top: 24px; }
  .eyebrow { margin-inline: auto; }
  .hero p.lead { margin-inline: auto; }
  .cta-row { justify-content: center; }
  .features, .screens { grid-template-columns: 1fr; }
  .screens img { max-width: 280px; }
  .dl-grid { grid-template-columns: 1fr; gap: 32px; }
}
