/* ==========================================================================
   Vumble — Website Stylesheet
   Palette und Typografie aus der App (lib/theme/app_theme.dart / FARBEN.txt)
   Keine externen Ressourcen. Nunito wird lokal eingebunden.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Fonts (lokal, kein CDN)
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Nunito';
  src: url('../fonts/Nunito-400.woff2') format('woff2'),
       url('../fonts/Nunito-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('../fonts/Nunito-600.woff2') format('woff2'),
       url('../fonts/Nunito-600.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('../fonts/Nunito-700.woff2') format('woff2'),
       url('../fonts/Nunito-700.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('../fonts/Nunito-800.woff2') format('woff2'),
       url('../fonts/Nunito-800.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   2. Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Marke */
  --green:        #14432D;  /* Primär, Text auf Hell, Flächen */
  --green-accent: #1B6B47;  /* Akzent, Verläufe, Icons */
  --gold:         #C99A2E;  /* NUR Belohnung: Meilensteine, Glanzpunkte */
  --bg:           #FFFFFF;
  --surface:      #F1FBF5;  /* zarte grüne Fläche */
  --text-primary: #1B2A22;
  --text-secondary:#5A6B60;

  /* Abgeleitet */
  --green-050: #F1FBF5;
  --green-100: #E1F3E9;
  --green-200: #C7E6D6;
  --border:    #DCEBE2;
  --gold-soft: rgba(201, 154, 46, .14);

  /* Radien — weiche Rundungen */
  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-pill: 999px;

  /* Schatten — sehr weich, nie hart */
  --sh-sm: 0 2px 8px rgba(20, 67, 45, .06);
  --sh-md: 0 8px 24px rgba(20, 67, 45, .08);
  --sh-lg: 0 20px 48px rgba(20, 67, 45, .12);

  /* Rhythmus */
  --sp-section: clamp(64px, 10vw, 128px);
  --maxw: 1120px;
  --gutter: clamp(20px, 5vw, 40px);

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur: .55s;
}

/* --------------------------------------------------------------------------
   3. Reset & Basis
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, picture { max-width: 100%; display: block; height: auto; }

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  color: var(--green);
  margin: 0 0 .5em;
  letter-spacing: -.015em;
}

h1 { font-size: clamp(2.2rem, 6.2vw, 3.9rem); }
h2 { font-size: clamp(1.75rem, 4.2vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.45rem); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--green-accent); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--green); }

/* Sichtbarer, markenkonformer Fokus für Tastaturbedienung */
:focus-visible {
  outline: 3px solid var(--green-accent);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--green);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--r-md) 0;
  font-weight: 700;
}
.skip-link:focus { left: 0; color: #fff; }

/* --------------------------------------------------------------------------
   4. Layout-Helfer
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: 760px; }

section { position: relative; }
.section { padding-block: var(--sp-section); }
.section--surface { background: var(--surface); }

.section-head { max-width: 660px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-accent);
  background: var(--green-100);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}

.lead {
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: inherit;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: var(--r-md);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
  will-change: transform;
}
.btn--primary { background: var(--green); color: #fff; box-shadow: var(--sh-sm); }
.btn--primary:hover { background: var(--green-accent); color: #fff; transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn--ghost { background: transparent; color: var(--green); border-color: var(--border); }
.btn--ghost:hover { background: var(--green-050); color: var(--green); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* --------------------------------------------------------------------------
   6. Store-Buttons
   Platzhalter für die offiziellen Badges.
   Aktivieren: Klasse "is-disabled" entfernen + href setzen (siehe README).
   -------------------------------------------------------------------------- */
.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: stretch;
}

.store-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 196px;
  padding: 12px 22px;
  border-radius: var(--r-md);
  background: var(--green);
  color: #fff;
  text-decoration: none;
  box-shadow: var(--sh-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.store-btn:hover { color: #fff; transform: translateY(-2px); box-shadow: var(--sh-md); }

/* Slot für die offizielle Badge-Grafik (später einfach <img> hier einsetzen) */
.store-btn__badge { flex: none; width: 26px; height: 26px; opacity: .95; }
.store-btn__badge svg { width: 100%; height: 100%; fill: currentColor; }
.store-btn__text { display: flex; flex-direction: column; line-height: 1.2; text-align: left; }
.store-btn__small { font-size: .7rem; font-weight: 600; opacity: .85; }
.store-btn__big { font-size: 1.02rem; font-weight: 800; }

/* Deaktivierter Zustand: klar erkennbar, aber nicht wie ein Fehler */
.store-btn.is-disabled {
  background: var(--green-050);
  color: var(--green);
  border: 2px solid var(--border);
  box-shadow: none;
  cursor: default;
  pointer-events: none;
}
.store-btn.is-disabled:hover { transform: none; }
.store-btn.is-disabled .store-btn__badge { opacity: .55; }

.store-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.store-note .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  flex: none;
}

/* --------------------------------------------------------------------------
   7. Kopfzeile
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-stuck { border-color: var(--border); box-shadow: var(--sh-sm); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--green);
  letter-spacing: -.02em;
}
.brand img { width: 38px; height: 38px; border-radius: 11px; }

/* Sprachumschalter */
.lang-switch {
  display: inline-flex;
  padding: 4px;
  background: var(--green-050);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  gap: 2px;
}
.lang-switch a {
  padding: 6px 15px;
  border-radius: var(--r-pill);
  font-size: .86rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-decoration: none;
  transition: background-color .22s var(--ease), color .22s var(--ease);
}
.lang-switch a:hover { color: var(--green); background: var(--green-100); }
.lang-switch a[aria-current="true"] { background: var(--green); color: #fff; }

/* --------------------------------------------------------------------------
   8. Hintergrund-Deko (driftende Blätter, Kreise, goldene Funken)
   -------------------------------------------------------------------------- */
.deco {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.deco__item {
  position: absolute;
  will-change: transform;
  animation: drift linear infinite;
}
.deco__circle {
  border-radius: 50%;
  background: var(--green-accent);
  opacity: .05;
}
.deco__leaf { opacity: .07; color: var(--green-accent); }
.deco__leaf svg { width: 100%; height: 100%; fill: currentColor; }
.deco__spark {
  border-radius: 50%;
  background: var(--gold);
  opacity: .22;
  box-shadow: 0 0 12px rgba(201, 154, 46, .5);
}

@keyframes drift {
  0%   { transform: translate3d(0, 0, 0) rotate(0deg); }
  50%  { transform: translate3d(14px, -26px, 0) rotate(9deg); }
  100% { transform: translate3d(0, 0, 0) rotate(0deg); }
}

/* --------------------------------------------------------------------------
   9. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(48px, 8vw, 96px) clamp(56px, 9vw, 112px);
  background:
    radial-gradient(900px 460px at 88% -8%, var(--green-050) 0%, transparent 62%),
    radial-gradient(620px 380px at 6% 108%, var(--green-050) 0%, transparent 60%);
  overflow: hidden;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 6vw, 64px);
  align-items: center;
}

.hero__title { margin-bottom: .35em; }
.hero__title .accent { color: var(--green-accent); display: block; }

.hero__sub {
  font-size: clamp(1.05rem, 2.3vw, 1.24rem);
  color: var(--text-secondary);
  max-width: 52ch;
  margin-bottom: 32px;
}

.hero__art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 260px;
}
.hero__mascot {
  width: min(340px, 74vw);
  filter: drop-shadow(0 22px 40px rgba(20, 67, 45, .18));
  will-change: transform;
}
/* Sanftes Atmen des Maskottchens */
.hero__mascot-wrap { animation: float 6s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(0, -12px, 0); }
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: #fff;
  border: 1px solid var(--border);
  font-size: .88rem;
  font-weight: 700;
  color: var(--green);
  box-shadow: var(--sh-sm);
}
.pill svg { width: 16px; height: 16px; fill: var(--green-accent); flex: none; }
.pill--gold { border-color: var(--gold-soft); }
.pill--gold svg { fill: var(--gold); }

/* --------------------------------------------------------------------------
   10. Peeking Vumble — sitzt IMMER bündig auf seiner Kante
   -------------------------------------------------------------------------- */
.peek {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  width: clamp(88px, 12vw, 152px);
}
/* Auf der Oberkante eines Abschnitts sitzend (schaut von oben herein) */
.peek--top {
  top: 0;
  transform: translateY(-100%);
}
/* Auf der Unterkante sitzend (schaut von unten herein) */
.peek--bottom { bottom: 0; }
.peek--left  { left: clamp(16px, 6vw, 88px); }
.peek--right { right: clamp(16px, 6vw, 88px); }

.peek img { width: 100%; }
.peek--wave img { animation: peek-wave 4.5s ease-in-out infinite; transform-origin: bottom center; }
@keyframes peek-wave {
  0%, 88%, 100% { transform: rotate(0deg); }
  92%           { transform: rotate(-5deg); }
  96%           { transform: rotate(5deg); }
}

/* --------------------------------------------------------------------------
   11. Prinzip in drei Schritten
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  counter-reset: step;
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--sh-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--green-200);
}
.step__num {
  counter-increment: step;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--green-100);
  color: var(--green);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 18px;
}
.step__num::before { content: counter(step); }
.step h3 { margin-bottom: .4em; }
.step p { color: var(--text-secondary); margin: 0; }

/* Zwei Zahlen — Beispielkarte mit Count-Up */
.numbers {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  margin-top: 30px;
}
.num-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.num-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.num-card__icon {
  width: 46px; height: 46px;
  margin: 0 auto 14px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--sh-sm);
}
.num-card__icon svg { width: 24px; height: 24px; fill: var(--green-accent); }
.num-card__value {
  font-size: clamp(2rem, 5.5vw, 2.8rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
}
.num-card__value .unit { font-size: .46em; font-weight: 700; color: var(--text-secondary); margin-left: 4px; }
.num-card__label { color: var(--text-secondary); font-weight: 600; font-size: .95rem; margin-top: 6px; }
.num-card--gold .num-card__icon svg { fill: var(--gold); }

/* --------------------------------------------------------------------------
   12. Screenshots im Handy-Rahmen
   -------------------------------------------------------------------------- */
.phone {
  position: relative;
  width: 100%;
  max-width: 268px;
  margin-inline: auto;
  border-radius: 38px;
  padding: 9px;
  background: linear-gradient(160deg, #23503a 0%, #14432D 45%, #0f3423 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,.16) inset,
    var(--sh-lg);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.phone:hover { transform: translateY(-6px); box-shadow: 0 28px 60px rgba(20,67,45,.18); }

.phone__screen {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: var(--surface);
  /* Entspricht exakt den Screenshots (1080 x 2400), damit nichts abgeschnitten
     wird — weder die Kopfzeile oben noch die Navigationsleiste unten. */
  aspect-ratio: 9 / 20;
}
.phone__screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

/* Dezente Dynamic-Island-Andeutung */
.phone__notch {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 28%;
  height: 15px;
  border-radius: var(--r-pill);
  background: #0f3423;
  z-index: 2;
}

.shots {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 44px);
}
.shot figcaption {
  margin-top: 18px;
  text-align: center;
  color: var(--text-secondary);
  font-size: .95rem;
  max-width: 30ch;
  margin-inline: auto;
}
.shot figcaption strong { display: block; color: var(--green); font-weight: 800; font-size: 1.03rem; margin-bottom: 2px; }

/* Galerie / Karussell für die übrigen Screenshots */
.gallery { margin-top: clamp(48px, 7vw, 76px); }
.gallery__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}
.gallery__head h3 { margin: 0; }
.gallery__nav { display: flex; gap: 8px; }
.gallery__btn {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--green);
  cursor: pointer;
  transition: background-color .22s var(--ease), transform .22s var(--ease), border-color .22s var(--ease);
}
.gallery__btn:hover { background: var(--green-050); border-color: var(--green-200); transform: translateY(-2px); }
.gallery__btn svg { width: 18px; height: 18px; fill: currentColor; }

.gallery__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(190px, 210px);
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--green-200) transparent;
}
.gallery__track > * { scroll-snap-align: center; }
.gallery__track::-webkit-scrollbar { height: 8px; }
.gallery__track::-webkit-scrollbar-thumb { background: var(--green-200); border-radius: var(--r-pill); }
.gallery__track::-webkit-scrollbar-track { background: transparent; }

.gallery .phone { max-width: 100%; padding: 7px; border-radius: 30px; }
.gallery .phone__screen { border-radius: 24px; }
.gallery figcaption { margin-top: 12px; font-size: .88rem; }

/* --------------------------------------------------------------------------
   13. Energiestufen
   -------------------------------------------------------------------------- */
.levels {
  display: grid;
  gap: 14px;
  max-width: 720px;
}
.level {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.level:hover { transform: translateX(4px); box-shadow: var(--sh-md); border-color: var(--green-200); }

.level__dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--green-accent);
  flex: none;
  transition: transform .4s var(--ease);
}
.level__name { font-weight: 800; color: var(--green); font-size: 1.05rem; }
.level__desc { color: var(--text-secondary); font-size: .92rem; display: block; font-weight: 400; }

.level__meter {
  width: clamp(72px, 18vw, 132px);
  height: 10px;
  border-radius: var(--r-pill);
  background: var(--green-100);
  overflow: hidden;
}
.level__fill {
  height: 100%;
  width: 0;
  border-radius: var(--r-pill);
  background: var(--green-accent);
  transform-origin: left center;
  transition: width .9s var(--ease);
}
/* Höchste Stufe: Gold als Glanzpunkt — Belohnung, keine Fläche */
.level--top .level__dot { background: var(--gold); }
.level--top .level__fill { background: linear-gradient(90deg, var(--green-accent), var(--gold)); }
.level--top .level__name { color: var(--green); }

.level.is-lit .level__dot { transform: scale(1.25); }

.tone-note {
  margin-top: 26px;
  padding: 20px 24px;
  border-left: 4px solid var(--green-accent);
  background: var(--green-050);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  color: var(--text-secondary);
  max-width: 720px;
}
.tone-note strong { color: var(--green); }

/* --------------------------------------------------------------------------
   14. Split-Layouts (Teilen, Datenschutz)
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}

.feature-list { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 14px; }
.feature-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  align-items: start;
  color: var(--text-secondary);
}
.feature-list .tick {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--green-100);
  display: grid; place-items: center;
  flex: none;
  margin-top: 2px;
}
.feature-list .tick svg { width: 14px; height: 14px; fill: var(--green-accent); }
.feature-list strong { color: var(--green); display: block; }

/* --------------------------------------------------------------------------
   15. Datenschutz-Abschnitt (dunkel, selbstbewusst)
   -------------------------------------------------------------------------- */
.privacy-band {
  position: relative;
  background: linear-gradient(155deg, #17492F 0%, var(--green) 55%, #0f3423 100%);
  color: #fff;
  overflow: hidden;
}
.privacy-band h2, .privacy-band h3 { color: #fff; }
.privacy-band .eyebrow { background: rgba(255,255,255,.12); color: #DCEBE2; }
.privacy-band .lead { color: rgba(255,255,255,.82); }
.privacy-band .deco__circle { background: #fff; opacity: .04; }
.privacy-band .deco__leaf { color: #fff; opacity: .05; }

.privacy-claim {
  font-size: clamp(1.6rem, 4.6vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: .5em;
}

.privacy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: clamp(34px, 5vw, 52px);
}
.privacy-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  transition: transform .3s var(--ease), background-color .3s var(--ease);
}
.privacy-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.11); }
.privacy-card__icon {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,.12);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.privacy-card__icon svg { width: 22px; height: 22px; fill: #fff; }
.privacy-card h3 { font-size: 1.1rem; margin-bottom: .35em; }
.privacy-card p { color: rgba(255,255,255,.78); font-size: .95rem; margin: 0; }

/* Der seltene Punkt bekommt den Goldakzent */
.privacy-card--highlight { border-color: rgba(201,154,46,.5); }
.privacy-card--highlight .privacy-card__icon { background: rgba(201,154,46,.22); }
.privacy-card--highlight .privacy-card__icon svg { fill: var(--gold); }

/* --------------------------------------------------------------------------
   16. Quellen / Zahlen
   -------------------------------------------------------------------------- */
.sources {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.source-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  box-shadow: var(--sh-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.source-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.source-card h3 { font-size: 1.12rem; }
.source-card p { color: var(--text-secondary); font-size: .95rem; margin: 0; }
.source-card dl { margin: 16px 0 0; display: grid; gap: 8px; font-size: .9rem; }
.source-card dt { font-weight: 700; color: var(--green); }
.source-card dd { margin: 0 0 6px; color: var(--text-secondary); }

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-block: clamp(48px, 7vw, 72px) 32px;
  position: relative;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  margin-bottom: 36px;
}
.footer__brand p { color: var(--text-secondary); font-size: .95rem; max-width: 34ch; margin-top: 12px; }
.footer h4 {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 14px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer a { color: var(--text-secondary); text-decoration: none; font-weight: 600; transition: color .2s var(--ease); }
.footer a:hover { color: var(--green); text-decoration: underline; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: .88rem;
}

/* --------------------------------------------------------------------------
   18. Rechtsseiten — ruhiger, gut lesbar, funktioniert ohne JS
   -------------------------------------------------------------------------- */
.legal-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(44px, 7vw, 76px);
}
.legal-hero h1 { margin-bottom: .25em; }
.legal-hero p { color: var(--text-secondary); margin: 0; }

.legal {
  padding-block: clamp(44px, 6vw, 72px);
  font-size: 1rem;
  line-height: 1.75;
}
.legal h2 {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  margin-top: 2.2em;
  padding-top: 1.2em;
  border-top: 1px solid var(--border);
}
.legal h2:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.legal h3 { font-size: 1.1rem; margin-top: 1.8em; }
.legal p, .legal li { color: var(--text-primary); }
.legal ul, .legal ol { padding-left: 1.3em; margin: 0 0 1.1em; }
.legal li { margin-bottom: .5em; }
.legal table { width: 100%; border-collapse: collapse; margin: 1.2em 0; font-size: .95rem; }
.legal th, .legal td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
.legal th { color: var(--green); font-weight: 800; }
.legal hr { border: 0; border-top: 1px solid var(--border); margin: 2.4em 0; }

.legal-note {
  background: var(--green-050);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 22px;
  color: var(--text-secondary);
  font-size: .94rem;
  margin-bottom: 2em;
}
.legal-note strong { color: var(--green); }

.legal-toc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 26px;
  margin-bottom: 2.5em;
  box-shadow: var(--sh-sm);
}
.legal-toc h2 { font-size: .8rem !important; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 12px !important; padding: 0 !important; border: 0 !important; }
.legal-toc ol { margin: 0; padding-left: 1.2em; display: grid; gap: 6px; }
.legal-toc a { font-weight: 600; }

/* --------------------------------------------------------------------------
   19. 404
   -------------------------------------------------------------------------- */
.notfound {
  min-height: 72vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: clamp(56px, 9vw, 100px);
  position: relative;
  overflow: hidden;
}
.notfound__mascot { width: min(210px, 52vw); margin: 0 auto 28px; }
.notfound__code {
  font-size: clamp(3.4rem, 12vw, 6rem);
  font-weight: 800;
  color: var(--green-100);
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: .1em;
}
.notfound p { color: var(--text-secondary); max-width: 46ch; margin-inline: auto; }

/* --------------------------------------------------------------------------
   20. Scroll-Einblendungen (gestaffelt)
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translate3d(0, 0, 0); }

/* Ohne JS muss alles sichtbar und vollstaendig sein */
html.no-js .reveal { opacity: 1; transform: none; }
html.no-js .level__fill { width: var(--fill, 100%); }

/* --------------------------------------------------------------------------
   21. Responsive
   -------------------------------------------------------------------------- */
@media (min-width: 640px) {
  .numbers { grid-template-columns: 1fr 1fr; }
  .sources { grid-template-columns: 1fr 1fr; }
  .shots { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.05fr .95fr; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .shots { grid-template-columns: repeat(4, 1fr); }
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split__media { order: 2; }
  .privacy-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .gallery__track { grid-auto-columns: 210px; }
}

/* Auf Mobilgeräten sparsamer animieren */
@media (max-width: 767px) {
  .deco__item { animation: none; }
  .deco__spark { display: none; }
  .hero__mascot-wrap { animation: none; }
  .peek--wave img { animation: none; }
  .reveal { transition-duration: .5s; transform: translate3d(0, 14px, 0); }
}

/* --------------------------------------------------------------------------
   22. PFLICHT: prefers-reduced-motion — alles statisch, voll lesbar
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .deco { display: none; }
  .level__fill { width: var(--fill, 100%) !important; }
  .phone:hover, .step:hover, .num-card:hover, .level:hover,
  .privacy-card:hover, .source-card:hover, .btn:hover, .store-btn:hover { transform: none; }
  .gallery__track { scroll-behavior: auto; }
}

/* Druck */
@media print {
  .site-header, .site-footer, .deco, .peek, .skip-link { display: none; }
  body { font-size: 11pt; color: #000; }
  .legal h2 { break-after: avoid; }
}
