/* MISTER – Aurora-Look wie in der App: dunkel, ein Grün, viel Luft, keine Kästen */

:root {
  --bg: #050807;
  --bg2: #071209;
  --mister: #34c759;
  --mister-light: #73ffa6;
  --text: #f2f7f3;
  --muted: #9db3a4;
  --faint: #5c6f62;
  --hairline: rgba(255, 255, 255, 0.09);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
  background:
    radial-gradient(1100px 620px at 78% -10%, rgba(24, 110, 58, 0.55), transparent 65%),
    radial-gradient(900px 560px at 12% 8%, rgba(16, 70, 38, 0.45), transparent 60%),
    radial-gradient(1200px 800px at 50% 115%, rgba(14, 60, 34, 0.35), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

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

/* Kopf */
header {
  padding: 26px 0 0;
}
.nav {
  display: flex; align-items: center; gap: 26px;
  padding-bottom: 18px;
  border-bottom: 0.5px solid var(--hairline);
}
.nav .brand {
  display: flex; align-items: center; gap: 10px;
  margin-right: auto; text-decoration: none;
}
.nav .brand img { height: 30px; }
.nav .brand span {
  color: var(--text); font-weight: 900; letter-spacing: 0.28em; font-size: 15px;
}
.nav a.link {
  color: var(--muted); text-decoration: none;
  font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
}
.nav a.link:hover { color: var(--mister-light); }

/* Held */
.hero { text-align: center; padding: 84px 0 30px; }
.hero img.misty {
  height: 210px;
  filter: drop-shadow(0 0 46px rgba(52, 199, 89, 0.38));
}
.hero h1 {
  font-size: clamp(42px, 8vw, 72px);
  font-weight: 900; letter-spacing: 0.22em; margin-top: 26px;
  text-shadow: 0 0 34px rgba(52, 199, 89, 0.55);
}
.hero p.tag {
  color: var(--mister-light);
  font-size: 12px; font-weight: 800; letter-spacing: 0.26em; text-transform: uppercase;
  margin-top: 14px;
}
.hero p.sub {
  color: var(--muted); max-width: 560px; margin: 26px auto 0; font-size: 17px;
}
.badge18 {
  display: inline-block; margin-top: 34px;
  color: var(--faint); font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  border: 1px solid var(--hairline); border-radius: 999px; padding: 7px 16px;
}

/* Sektionen – Haarlinien statt Karten */
section { padding: 58px 0 0; }
.cap {
  color: var(--faint);
  font-size: 11px; font-weight: 900; letter-spacing: 0.22em; text-transform: uppercase;
  padding-bottom: 14px; border-bottom: 0.5px solid var(--hairline);
}
.feature {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 0; border-bottom: 0.5px solid var(--hairline);
}
.feature .dot {
  flex: none; width: 10px; height: 10px; border-radius: 50%;
  background: var(--mister); margin-top: 9px;
  box-shadow: 0 0 14px rgba(52, 199, 89, 0.8);
}
.feature h3 { font-size: 16px; font-weight: 800; }
.feature p { color: var(--muted); font-size: 14.5px; margin-top: 3px; }

/* Textseiten (Datenschutz etc.) */
.page { padding: 64px 0 0; }
.page h1 {
  font-size: 30px; font-weight: 900; letter-spacing: 0.02em;
}
.page p.lead { color: var(--muted); margin-top: 12px; font-size: 16px; }
.block { margin-top: 42px; }
.block h2 {
  color: var(--faint);
  font-size: 11px; font-weight: 900; letter-spacing: 0.22em; text-transform: uppercase;
  padding-bottom: 10px; border-bottom: 0.5px solid var(--hairline);
}
.block p { color: var(--muted); font-size: 15px; margin-top: 14px; }
.block p strong { color: var(--text); }
.block a { color: var(--mister-light); text-decoration: none; }
.block a:hover { text-decoration: underline; }

/* Kontakt-Knopf */
.cta {
  display: inline-block; margin-top: 30px;
  background: rgba(52, 199, 89, 0.14);
  color: var(--mister-light); text-decoration: none;
  font-weight: 900; font-size: 14px; letter-spacing: 0.04em;
  padding: 14px 30px; border-radius: 999px;
  box-shadow: 0 0 26px rgba(52, 199, 89, 0.18);
}
.cta:hover { background: rgba(52, 199, 89, 0.22); }

/* Fuß */
footer {
  margin-top: 92px; padding: 26px 0 46px;
  border-top: 0.5px solid var(--hairline);
  color: var(--faint); font-size: 12px;
  display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: center;
}
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--mister-light); }
footer .spacer { margin-right: auto; }

@media (max-width: 560px) {
  .nav { gap: 14px; }
  .hero { padding-top: 56px; }
  .hero img.misty { height: 150px; }
}
