/* ==========================================================================
   DSCVRBAR — OnePager Stylesheet
   Design tokens first, then layout/components. Keep content-agnostic:
   no copy lives in here, only presentation.
   ========================================================================== */

:root{
  /* --- Color --- */
  --ink:        #12181A;   /* near-black text/headlines */
  --ink-soft:   #4B5657;   /* secondary text on light */
  --paper:      #F4F1EA;   /* warm off-white background */
  --paper-dim:  #E9E5DA;   /* card separators on paper */
  --card:       #FFFFFF;
  --teal:       #00696B;   /* brand primary (Markenfarbe) */
  --teal-deep:  #0A2E2B;   /* dark surfaces / hero / footer */
  --teal-glow:  #35C7B6;   /* highlight/glow accent on dark */
  --amber:      #F0A83B;   /* streak / medal accent */
  --line-dark:  rgba(244,241,234,0.14);

  /* --- Type (CI: Poppins für Überschriften, JetBrains Mono für Texte) --- */
  --font-display: "Poppins", "Arial", sans-serif;
  --font-body:    "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --font-mono:    "JetBrains Mono", "SFMono-Regular", Consolas, monospace;

  /* --- Scale --- */
  --step-0: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --step-1: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  --step-2: clamp(1.75rem, 1.5rem + 1.2vw, 2.5rem);
  --step-3: clamp(2.5rem, 2rem + 2.4vw, 4rem);
  --step-4: clamp(3rem, 2.2rem + 4vw, 5.5rem);

  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;
  --container: 1120px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

/* --- Reset --- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
body{
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; }
h1, h2, h3{
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0;
}
p{ margin: 0; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font: inherit; cursor: pointer; }

:focus-visible{
  outline: 3px solid var(--teal-glow);
  outline-offset: 3px;
}

.wrap{
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--teal);
}
.eyebrow::before{
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(0,105,107,0.15);
}
.on-dark .eyebrow{ color: var(--teal-glow); }
.on-dark .eyebrow::before{ background: var(--teal-glow); box-shadow: 0 0 0 4px rgba(53,199,182,0.18); }

.section{
  padding-block: clamp(3.5rem, 8vw, 7rem);
}
.section-head{
  max-width: 640px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section-head h2{
  font-size: var(--step-3);
  margin-top: 0.5rem;
}
.section-head p{
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
}
.on-dark .section-head p{ color: rgba(244,241,234,0.72); }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244,241,234,0.86);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--paper-dim);
  transition: box-shadow 0.2s ease;
}
.site-header.is-scrolled{ box-shadow: 0 8px 24px rgba(18,24,26,0.08); }
.site-header .wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.9rem;
}
.logo{
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  text-decoration: none;
}
.logo-mark{
  width: 32px; height: 32px;
  display: block;
}

.nav-links{
  display: none;
  gap: 2rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nav-links a{
  text-decoration: none;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.nav-links a:hover{ color: var(--teal); }

@media (min-width: 780px){
  .nav-links{ display: flex; }
}

.btn{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn-primary{
  background: var(--teal);
  color: var(--paper);
}
.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,105,107,0.35);
}
.btn-ghost{
  border-color: var(--line-dark);
  color: var(--paper);
}
.btn-ghost:hover{ background: rgba(244,241,234,0.08); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative;
  background: radial-gradient(120% 140% at 15% -10%, #123B37 0%, var(--teal-deep) 55%, #06201D 100%);
  color: var(--paper);
  overflow: clip;
  padding-block: clamp(3.5rem, 9vw, 6rem) clamp(2rem, 6vw, 4rem);
}
.hero::before{
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 720px;
  max-height: 720px;
  background: radial-gradient(circle, rgba(53,199,182,0.28) 0%, rgba(53,199,182,0) 65%);
  pointer-events: none;
}
.hero .wrap{
  position: relative;
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
}
.hero .wrap > *{ min-width: 0; }
@media (min-width: 900px){
  .hero .wrap{
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }
}
.hero-copy .eyebrow{ margin-bottom: 1.1rem; }
.hero-copy h1{
  font-size: var(--step-4);
  color: var(--paper);
}
.hero-copy h1 em{
  font-style: normal;
  color: var(--teal-glow);
}
.hero-copy .lede{
  margin-top: 1.4rem;
  max-width: 46ch;
  font-size: 1.1rem;
  color: rgba(244,241,234,0.78);
}
.hero-actions{
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.hero-stats{
  margin-top: 2.6rem;
  display: flex;
  gap: clamp(1.5rem, 4vw, 2.6rem);
  flex-wrap: wrap;
}
.hero-stats div strong{
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--paper);
}
.hero-stats div span{
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(244,241,234,0.55);
}

.hero-visual{
  position: relative;
  justify-self: center;
  display: flex;
  justify-content: center;
  width: 100%;
}
.phone{
  position: relative;
  width: 100%;
  max-width: 300px;
  border-radius: 40px;
  border: 8px solid #0d1f1d;
  background: #0d1f1d;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.04);
  overflow: hidden;
}
.phone img{ display: block; width: 100%; height: auto; }

/* --- Hero: Flanier Flamingo läuft einmal über den Bildschirm --- */
.hero-flamingo{
  position: absolute;
  top: clamp(4.5rem, 9vw, 6.5rem);
  left: -160px;
  width: clamp(80px, 11vw, 130px);
  height: auto;
  z-index: 3;
  pointer-events: none;
  /* Bewegung über "left" statt "transform": verhindert, dass mobile Browser
     das Element auf eine Compositor-Ebene legen und dabei die GIF-Frames
     einfrieren (der Flamingo würde sonst nur vorbeigeschoben, ohne zu laufen). */
  animation: flamingo-walk 7s linear 2s 1 forwards;
}
@keyframes flamingo-walk{
  from{ left: -160px; }
  to{   left: 100%; }
}
@media (prefers-reduced-motion: reduce){
  .hero-flamingo{ display: none; }
}

/* ==========================================================================
   Feature rows (Karte / Rangliste / Community)
   ========================================================================== */
.feature-row{
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.feature-row > *{ min-width: 0; }
.feature-row + .feature-row{ margin-top: clamp(3.5rem, 8vw, 6rem); }
@media (min-width: 860px){
  .feature-row{ grid-template-columns: 1fr 1fr; }
  .feature-row.reverse .feature-media{ order: 2; }
}

.feature-media{
  position: relative;
  min-width: 0; /* verhindert, dass das Bild die Grid-Spalte "aufbläht" */
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-media img{
  display: block;
  max-width: 280px;
  width: 100%;
  height: auto;
  border-radius: 34px;
  border: 8px solid #0d1f1d;
  box-shadow: 0 26px 50px rgba(18,24,26,0.22);
}

.feature-text .eyebrow{ margin-bottom: 0.9rem; }
.feature-text h3{
  font-size: var(--step-2);
}
.feature-text p{
  margin-top: 1rem;
  color: var(--ink-soft);
  max-width: 52ch;
}
.feature-list{
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}
.feature-list li{
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  font-size: 0.98rem;
}
.feature-list li::before{
  content: "";
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--amber);
  flex: none;
  transform: translateY(-2px);
}

/* ==========================================================================
   Vibe-Score band (stat strip)
   ========================================================================== */
.vibe-band{
  background: var(--teal-deep);
  color: var(--paper);
}
.vibe-grid{
  display: grid;
  gap: 1.4rem;
}
@media (min-width: 700px){
  .vibe-grid{ grid-template-columns: repeat(4, 1fr); }
}
.vibe-card{
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-m);
  padding: 1.6rem;
  background: rgba(244,241,234,0.03);
}
.vibe-card .num{
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--teal-glow);
}
.vibe-card .lbl{
  margin-top: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(244,241,234,0.6);
}
.vibe-card p{
  margin-top: 0.8rem;
  font-size: 0.92rem;
  color: rgba(244,241,234,0.7);
}

/* ==========================================================================
   Badge crew — signature section
   ========================================================================== */
.crew{
  text-align: center;
}
.crew .section-head{
  margin-inline: auto;
  text-align: center;
}
.crew-grid{
  margin-top: clamp(2rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.9rem, 2.5vw, 1.6rem);
}
@media (min-width: 640px){
  .crew-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 980px){
  .crew-grid{ grid-template-columns: repeat(6, 1fr); }
}
.crew-card{
  position: relative;
  background: var(--card);
  border-radius: var(--radius-m);
  padding: 1.1rem 0.9rem 1.3rem;
  border: 1px solid var(--paper-dim);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.crew-card:hover, .crew-card:focus-within{
  transform: translateY(-6px);
  border-color: var(--paper-dim);
  box-shadow: 0 18px 32px rgba(0,105,107,0.16);
}
.crew-figure{
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 100%; /* 1:1 ratio box, works everywhere (aspect-ratio as progressive enhancement below) */
  border-radius: var(--radius-s);
  overflow: hidden;
  background: var(--card);
  border: 4px solid var(--teal);
}
@supports (aspect-ratio: 1 / 1){
  .crew-figure{ height: auto; aspect-ratio: 1 / 1; padding-top: 0; }
}
.crew-figure img{
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.4rem;
}
.crew-figure .still{ opacity: 1; transition: opacity 0.2s ease; }
.crew-figure .live{ opacity: 0; transition: opacity 0.2s ease; }
.crew-card:hover .still,
.crew-card:focus-within .still{ opacity: 0; }
.crew-card:hover .live,
.crew-card:focus-within .live{ opacity: 1; }
.crew-card.is-live .still{ opacity: 0; }
.crew-card.is-live .live{ opacity: 1; }

.crew-name{
  display: block;
  margin-top: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  line-height: 1.35;
  min-height: 2.7em; /* Platz für zwei Zeilen — einwortige Namen bleiben bündig */
}
.crew-name-line{
  display: block;
}
.crew-note{
  margin-top: 3rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

/* ==========================================================================
   CTA / Download
   ========================================================================== */
.cta{
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}
.cta h2{
  font-size: var(--step-3);
  max-width: 20ch;
  margin-inline: auto;
}
.cta p{
  margin-top: 1rem;
  color: rgba(244,241,234,0.7);
}
.cta-actions{
  margin-top: 2.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  /* Clear Space: mind. 1/4 der Badge-Höhe (Google-Richtlinie) — bei ~54px also ~14px */
  gap: 0.9rem;
}
.store-badge{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.store-badge img{
  display: block;
  width: auto;
}
/* Apple-Badge: Basishöhe. Google-Play-Badge lt. Richtlinie "gleich groß oder
   größer" — durch das breitere Seitenverhältnis ohnehin breiter, zusätzlich
   etwas höher, damit es optisch garantiert nie kleiner wirkt. Beide werden nur
   proportional skaliert (width:auto), nie verzerrt. */
.store-badge.is-apple img{ height: 48px; }
.store-badge.is-google img{ height: 54px; }
.store-badge:hover{ transform: translateY(-2px); opacity: 0.9; }
@media (max-width: 420px){
  .store-badge.is-apple img{ height: 44px; }
  .store-badge.is-google img{ height: 50px; }
}
.cta-note{
  margin-top: 1.8rem;
  margin-inline: auto;
  max-width: 52ch;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: rgba(244,241,234,0.55);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{
  background: var(--ink);
  color: rgba(244,241,234,0.55);
  border-top: 1px solid var(--line-dark);
}
.site-footer .wrap{
  padding-block: clamp(2.5rem, 6vw, 4rem);
}
.footer-brand{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding-bottom: 2rem;
}
.footer-logo{
  width: 72px;
  height: 72px;
}
.footer-wordmark{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  color: var(--teal);
}
.footer-tagline{
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(244,241,234,0.5);
}
.footer-bottom{
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}
.footer-links{
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}
.footer-links a{ text-decoration: none; color: inherit; }
.footer-links a:hover{ color: var(--paper); }

/* ==========================================================================
   Cookie banner
   ========================================================================== */
.btn-ghost-light{
  border: 1px solid var(--paper-dim);
  background: transparent;
  color: var(--ink);
}
.btn-ghost-light:hover{ background: var(--paper-dim); }

.cookie-banner{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  padding: clamp(0.9rem, 3vw, 1.4rem);
  display: flex;
  justify-content: center;
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  pointer-events: none;
}
.cookie-banner.is-visible{
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner[hidden]{ display: none; }

.cookie-banner-inner{
  width: 100%;
  max-width: 760px;
  background: var(--card);
  color: var(--ink);
  border: 1px solid var(--paper-dim);
  border-radius: var(--radius-m);
  padding: 1.2rem 1.4rem;
  box-shadow: 0 20px 44px rgba(18,24,26,0.22);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cookie-banner-inner p{
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.cookie-banner-inner a{
  color: var(--teal);
  text-decoration: underline;
}
.cookie-banner-actions{
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.cookie-banner-actions .btn{ flex: 1 1 auto; justify-content: center; }

@media (min-width: 620px){
  .cookie-banner-inner{
    flex-direction: row;
    align-items: center;
  }
  .cookie-banner-actions{ flex: none; }
  .cookie-banner-actions .btn{ flex: none; }
}

/* ==========================================================================
   Rechtliche Modals (Impressum, Datenschutz, Code of Conduct)
   ========================================================================== */
body.modal-open{ overflow: hidden; }

.modal{
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 80;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}
@media (min-width: 720px){
  .modal{
    align-items: center;
    padding: 2rem;
  }
}
.modal[hidden]{ display: none; }

.modal-backdrop{
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(10,20,19,0.55);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.modal.is-open .modal-backdrop{ opacity: 1; }

.modal-dialog{
  position: relative;
  width: 100%;
  max-width: 760px;
  max-height: 92vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--card);
  color: var(--ink);
  border-radius: var(--radius-l) var(--radius-l) 0 0;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: 0 -20px 60px rgba(10,20,19,0.3);
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}
@media (min-width: 720px){
  .modal-dialog{
    border-radius: var(--radius-l);
    transform: translateY(16px) scale(0.98);
  }
}
.modal.is-open .modal-dialog{
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-close{
  position: sticky;
  top: 0;
  float: right;
  margin: -0.4rem -0.4rem 0 1rem;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  display: grid;
  place-items: center;
  z-index: 2;
  transition: background 0.15s ease;
}
.modal-close:hover{ background: var(--paper-dim); }

.modal-content h2{
  font-size: var(--step-2);
  margin-bottom: 1.2rem;
  padding-right: 2.5rem;
}
.modal-content h3{
  font-size: 1.15rem;
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
  color: var(--teal);
}
.modal-content p{
  margin-bottom: 0.9rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.modal-content a{
  color: var(--teal);
  text-decoration: underline;
  word-break: break-word;
}
.modal-content .legal-list{
  margin: 0 0 1rem 0;
  padding-left: 1.2rem;
  list-style: disc;
}
.modal-content .legal-list li{
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.modal-content strong{ color: var(--ink); }

/* ==========================================================================
   Mitschwebender Download-Zugang (Sticky)
   ========================================================================== */
.sticky-download{
  position: fixed;
  left: 50%;
  bottom: clamp(0.8rem, 3vw, 1.5rem);
  transform: translate(-50%, 150%);
  z-index: 55;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.6rem 0.5rem 1.1rem;
  background: var(--ink);
  border: 1px solid rgba(244,241,234,0.14);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(10,20,19,0.35);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.sticky-download.is-visible{
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-download-label{
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(244,241,234,0.85);
  white-space: nowrap;
}
.sticky-download-btn{
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--teal);
  color: var(--paper);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.18s ease, transform 0.18s ease;
}
.sticky-download-btn:hover{
  background: var(--teal-glow);
  color: var(--ink);
  transform: translateY(-1px);
}
.sticky-download-btn svg{ flex: none; }

/* Auf schmalen Handys: Label ausblenden, nur die zwei Icon-Buttons zeigen */
@media (max-width: 520px){
  .sticky-download{ padding: 0.5rem 0.6rem; gap: 0.45rem; }
  .sticky-download-label{ display: none; }
  .sticky-download-btn span{ display: none; }
  .sticky-download-btn{ padding: 0.55rem 0.7rem; }
}
@media (prefers-reduced-motion: reduce){
  .sticky-download{ transition: opacity 0.2s ease; }
}

/* ==========================================================================
   FAQ (natives details/summary Accordion)
   ========================================================================== */
.faq-list{
  max-width: 760px;
  margin-inline: auto;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.faq-item{
  background: var(--card);
  border: 1px solid var(--paper-dim);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.faq-item summary{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}
/* Standard-Dreieck von summary entfernen */
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary::marker{ content: ""; }
.faq-chevron{
  flex: none;
  color: var(--teal);
  transition: transform 0.25s ease;
}
.faq-item[open] .faq-chevron{ transform: rotate(180deg); }
.faq-answer{
  padding: 0 1.3rem 1.2rem;
}
.faq-answer p{
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 0.95rem;
}
.faq-answer a{
  color: var(--teal);
  text-decoration: underline;
}
.faq-item summary:hover{ background: var(--paper); }
