/* =================================================================
   ViaLuna – "Nocturne"  ·  Shared Stylesheet
   Ein Design für alle Seiten & Sprachen. Hier EINMAL ändern,
   es gilt automatisch überall.
   ================================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Nachthimmel */
  --void:    #06070f;   /* tiefer Weltraum, Basis            */
  --night:   #0b0e1e;   /* Sektionsgrund                     */
  --panel:   #10142b;   /* Karten / Panels                   */
  --panel-2: #171d3b;   /* gehobene Panels                   */
  --haze:    rgba(255,255,255,.08);  /* Hairlines / Borders  */
  --haze-2:  rgba(255,255,255,.14);

  /* Mondlicht & Text */
  --moon:    #f5f2ea;   /* warmes Mondlicht – Haupttext      */
  --silver:  #b3bcda;   /* gedämpfter Fliesstext             */
  --dim:     #7d88ab;   /* Captions / Labels                 */

  /* Marke: "via luna" – Periwinkle-Glühen */
  --lune:    #8b7cff;
  --lune-2:  #b6a6ff;
  --lune-3:  #6a5bf0;

  /* App-Akzente (aus den echten Icons) */
  --lf:  #3d82f6;   /* LanguageFast  */
  --bq:  #f2b03c;   /* Berner Quiz   */
  --qw:  #4d9dff;   /* QuickWish     */
  --fp:  #63c8ff;   /* Frosted Peng. */

  /* Verläufe */
  --grad-aurora: radial-gradient(120% 90% at 78% -8%, rgba(139,124,255,.30) 0%, rgba(139,124,255,0) 55%),
                 radial-gradient(90% 70% at 12% 8%, rgba(61,130,246,.20) 0%, rgba(61,130,246,0) 52%);
  --grad-lune:   linear-gradient(115deg, #b6a6ff 0%, #8b7cff 45%, #6a5bf0 100%);
  --grad-text:   linear-gradient(100deg, #f5f2ea 0%, #cdbfff 55%, #8b7cff 100%);

  /* Radien */
  --r-sm: 12px;
  --r:    18px;
  --r-lg: 24px;
  --r-xl: 34px;
  --r-full: 999px;

  /* Schatten & Glühen */
  --sh:      0 10px 30px rgba(0,0,0,.35), 0 2px 8px rgba(0,0,0,.25);
  --sh-lg:   0 30px 70px rgba(0,0,0,.5), 0 8px 20px rgba(0,0,0,.3);
  --glow:    0 0 0 1px var(--haze), 0 20px 60px -20px rgba(139,124,255,.55);

  /* Layout */
  --maxw: 1200px;
  --pad: clamp(1.1rem, 4vw, 2.2rem);

  /* Typo */
  --font-display: "Clash Display", "Switzer", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Switzer", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--moon);
  background: var(--void);
  line-height: 1.65;
  font-size: clamp(1rem, .97rem + .2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* Ambienter Sternenstaub über der ganzen Seite */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(1.5px 1.5px at 12% 22%, rgba(255,255,255,.35), transparent 60%),
    radial-gradient(1.5px 1.5px at 78% 12%, rgba(255,255,255,.28), transparent 60%),
    radial-gradient(1px 1px at 34% 68%, rgba(255,255,255,.25), transparent 60%),
    radial-gradient(1px 1px at 62% 82%, rgba(255,255,255,.22), transparent 60%),
    radial-gradient(1.5px 1.5px at 88% 58%, rgba(255,255,255,.25), transparent 60%),
    radial-gradient(1px 1px at 22% 88%, rgba(255,255,255,.20), transparent 60%);
  opacity: .9;
}

img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--lune); color: #fff; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--moon);
  overflow-wrap: break-word;
  hyphens: auto;
}
p, li, summary { overflow-wrap: break-word; }

/* ---------- Layout-Helfer ---------- */
.wrap { position: relative; z-index: 1; width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { position: relative; padding-block: clamp(4.5rem, 9vw, 8rem); }
.skip {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--lune); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 var(--r-sm) 0;
}
.skip:focus { left: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 600;
  font-size: .74rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--lune-2); margin-bottom: 1rem;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px;
  background: linear-gradient(90deg, var(--lune), transparent);
}
.section-head { max-width: 44rem; margin: 0 auto clamp(2.8rem, 5vw, 4rem); text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(2.1rem, 1.4rem + 2.8vw, 3.4rem); margin-bottom: 1rem; }
.section-head p { color: var(--silver); font-size: 1.12rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-weight: 600; font-size: 1rem; padding: .9rem 1.7rem; border-radius: var(--r-full);
  border: 1px solid transparent; white-space: nowrap;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.btn:active { transform: translateY(1px); }
.btn-gold { /* Primär-CTA im Marken-Violett */
  background: var(--grad-lune); color: #fff;
  box-shadow: 0 14px 40px -12px rgba(139,124,255,.75);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 22px 55px -12px rgba(139,124,255,.9); }
.btn-ghost {
  background: rgba(255,255,255,.04); color: var(--moon);
  border-color: var(--haze-2); backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,.09); border-color: var(--lune); transform: translateY(-2px); }
.btn-dark { /* App-Karten-CTA */
  background: rgba(255,255,255,.05); color: var(--moon);
  border-color: var(--haze-2); padding: .7rem 1.3rem; font-size: .95rem;
}
.btn-dark:hover { background: rgba(255,255,255,.1); border-color: currentColor; transform: translateX(3px); }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(6,7,15,.6);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid var(--haze);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 72px; }
.brand { display: flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--moon); letter-spacing: -.02em; }
.brand img { height: 34px; width: 34px; border-radius: 9px; }
.brand .moon {
  width: 30px; height: 30px; border-radius: 9px; flex: none;
  display: grid; place-items: center;
  background: var(--grad-lune); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: .82rem; letter-spacing: .01em;
  box-shadow: 0 6px 16px -4px rgba(139,124,255,.6), inset 0 1px 0 rgba(255,255,255,.25);
}
.brand .moon::after { content: "VL"; }
.nav-links { display: none; align-items: center; gap: 2rem; font-weight: 500; }
.nav-links a { color: var(--silver); transition: color .2s; position: relative; }
.nav-links a:hover { color: var(--moon); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--grad-lune); border-radius: 2px; transition: width .28s ease;
}
.nav-links a:hover::after { width: 100%; }

/* Sprach-Umschalter */
.lang { position: relative; }
.lang > summary {
  list-style: none; display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem .85rem; border-radius: var(--r-full);
  background: rgba(255,255,255,.05); color: var(--moon);
  font-weight: 600; font-size: .88rem; border: 1px solid var(--haze-2);
}
.lang > summary::-webkit-details-marker { display: none; }
.lang > summary::after { content: "▾"; font-size: .7rem; opacity: .6; transition: transform .2s; }
.lang[open] > summary::after { transform: rotate(180deg); }
.lang .menu {
  position: absolute; right: 0; top: calc(100% + .55rem); min-width: 190px;
  background: var(--panel); border: 1px solid var(--haze-2); border-radius: var(--r); box-shadow: var(--sh-lg);
  padding: .4rem; z-index: 70;
}
.lang .menu a { display: flex; align-items: center; gap: .6rem; padding: .58rem .7rem; border-radius: var(--r-sm); font-size: .92rem; color: var(--silver); }
.lang .menu a:hover { background: rgba(255,255,255,.06); color: var(--moon); }

.nav-cta { display: none; }
.burger {
  display: inline-flex; flex-direction: column; gap: 5px; padding: 9px; border-radius: 10px;
  background: rgba(255,255,255,.05); border: 1px solid var(--haze-2);
}
.burger span { width: 20px; height: 2px; background: var(--moon); border-radius: 2px; transition: .3s; }
.mobile-menu { display: none; flex-direction: column; gap: .25rem; padding: .5rem var(--pad) 1.3rem; border-bottom: 1px solid var(--haze); background: var(--night); }
.mobile-menu.open { display: flex; }
.mobile-menu > a:not(.btn) { padding: .9rem .4rem; font-weight: 600; color: var(--moon); border-bottom: 1px solid var(--haze); }
.mobile-menu .btn { margin-top: 1rem; width: 100%; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .burger { display: none; }
}

/* Doku-Kopf (Impressum / Datenschutz / App-Seiten) */
.doc-head { background: rgba(6,7,15,.72); }
.doc-head .nav-inner { height: 66px; }
.doc-head .back { color: var(--lune-2); font-weight: 600; font-size: .92rem; }
.doc-head .back:hover { color: var(--moon); }

/* ================================================================
   HERO  ·  Signature: der Mond + App-Konstellation
   ================================================================ */
.hero { position: relative; overflow: hidden; padding-block: clamp(3.5rem, 7vw, 6.5rem) clamp(4rem, 9vw, 7rem); }
.hero::before { /* Aurora-Nebel */
  content: ""; position: absolute; inset: -20% -10% auto -10%; height: 130%;
  background: var(--grad-aurora); z-index: 0; pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }
.hero-grid > * { min-width: 0; }
@media (min-width: 980px) { .hero-grid { grid-template-columns: 1.02fr .98fr; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: .55rem; padding: .45rem 1rem .45rem .5rem;
  background: rgba(255,255,255,.04); border: 1px solid var(--haze-2); border-radius: var(--r-full);
  font-size: .82rem; font-weight: 600; color: var(--silver); margin-bottom: 1.6rem;
  backdrop-filter: blur(6px);
}
.hero-badge .flag { width: 22px; height: 22px; border-radius: 6px; display: grid; place-items: center; background: #d5121b; color: #fff; font-weight: 800; font-size: .78rem; }
.hero h1 { font-size: clamp(2.6rem, 1.5rem + 4.6vw, 4.6rem); margin-bottom: 1.3rem; letter-spacing: -.03em; }
.hero h1 .grad { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .sub { font-size: clamp(1.08rem, 1rem + .5vw, 1.28rem); color: var(--silver); max-width: 34rem; margin-bottom: 2rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.hero-stats { display: flex; flex-wrap: wrap; gap: 2.2rem; margin-top: 2.6rem; }
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats b { font-family: var(--font-display); font-size: 1.7rem; color: var(--moon); line-height: 1; }
.hero-stats span { color: var(--dim); font-size: .82rem; letter-spacing: .04em; margin-top: .35rem; }

@media (max-width: 979px) {
  .hero-copy { text-align: center; }
  .hero .sub { margin-inline: auto; }
  .cta-row, .hero-stats { justify-content: center; }
}

/* Klickbare App-Kacheln im Hero */
.hero-apps { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .9rem; }
@media (max-width: 620px) { .hero-apps { grid-template-columns: 1fr; } }
.chip {
  display: flex; align-items: center; gap: .85rem;
  background: rgba(16,20,43,.66); border: 1px solid var(--haze-2);
  border-radius: var(--r); padding: .85rem 1rem;
  box-shadow: var(--sh); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: var(--moon); text-decoration: none;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}
.chip img { width: 46px; height: 46px; border-radius: 12px; flex: none; box-shadow: 0 4px 12px rgba(0,0,0,.35); }
.chip-txt { display: flex; flex-direction: column; min-width: 0; font-weight: 700; font-size: 1rem; line-height: 1.2; }
.chip-txt small { color: var(--dim); font-weight: 500; font-size: .8rem; margin-top: .12rem; }
.chip-arrow { margin-left: auto; flex: none; color: var(--chip, var(--lune)); font-size: 1.05rem; opacity: 0; transform: translateX(-6px); transition: opacity .25s ease, transform .25s ease; }
.chip:hover { transform: translateY(-4px); border-color: var(--chip, var(--lune)); background: rgba(20,25,54,.82); box-shadow: 0 24px 50px -20px var(--chip, rgba(139,124,255,.7)); }
.chip:hover .chip-arrow { opacity: 1; transform: none; }
.chip:focus-visible { outline: 2px solid var(--chip, var(--lune)); outline-offset: 3px; }
.chip.is-lf { --chip: var(--lf); }
.chip.is-bq { --chip: var(--bq); }
.chip.is-qw { --chip: var(--qw); }
.chip.is-fp { --chip: var(--fp); }

/* ================================================================
   APPS  ·  Bento-Konstellation
   ================================================================ */
.apps { background: linear-gradient(180deg, var(--void) 0%, var(--night) 100%); }
.app-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .app-grid { grid-template-columns: repeat(2, 1fr); } }

.app-card {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(180deg, rgba(23,29,59,.6), rgba(16,20,43,.6));
  border: 1px solid var(--haze); border-radius: var(--r-xl);
  padding: clamp(1.6rem, 3vw, 2.2rem); overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), border-color .35s ease, box-shadow .35s ease;
}
.app-card::before { /* farbiges Glühen je App */
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: 0;
  background: radial-gradient(90% 70% at 82% -10%, var(--accent, var(--lune)) 0%, transparent 60%);
  transition: opacity .4s ease;
}
.app-card > * { position: relative; z-index: 1; }
.app-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--accent, var(--lune)) 55%, transparent);
  box-shadow: 0 30px 70px -28px var(--accent, rgba(139,124,255,.7));
}
.app-card:hover::before { opacity: .16; }

.app-top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.app-icon {
  width: 66px; height: 66px; border-radius: 18px; flex: none;
  display: grid; place-items: center; overflow: hidden;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,.6), 0 0 0 1px var(--haze);
}
.app-icon img { width: 100%; height: 100%; object-fit: cover; }
.app-title h3 { font-size: 1.4rem; margin-bottom: .3rem; }
.app-tag {
  display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: .02em;
  color: var(--accent, var(--lune-2));
  background: color-mix(in srgb, var(--accent, var(--lune)) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent, var(--lune)) 30%, transparent);
  padding: .2rem .65rem; border-radius: var(--r-full);
}
.app-card > p { color: var(--silver); font-size: 1rem; margin-bottom: 1.6rem; flex: 1; }
.app-actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.app-actions .btn-dark { color: var(--accent, var(--lune-2)); }

/* Akzent-Zuweisung pro Karte */
.app-card.is-lf { --accent: var(--lf); }
.app-card.is-bq { --accent: var(--bq); }
.app-card.is-qw { --accent: var(--qw); }
.app-card.is-fp { --accent: var(--fp); }

/* ================================================================
   ÜBER UNS
   ================================================================ */
.about { background: var(--night); }
.about-grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1.05fr .95fr; } }
.about h2 { font-size: clamp(1.9rem, 1.4rem + 2.4vw, 3rem); margin-bottom: 1.2rem; }
.about p { color: var(--silver); margin-bottom: 1rem; max-width: 34rem; }
.about-facts { display: grid; gap: 1rem; }
.fact {
  display: flex; gap: 1rem; align-items: flex-start;
  background: linear-gradient(180deg, rgba(23,29,59,.5), rgba(16,20,43,.5));
  border: 1px solid var(--haze); border-radius: var(--r-lg); padding: 1.2rem 1.3rem;
  transition: border-color .3s ease, transform .3s ease;
}
.fact:hover { border-color: var(--haze-2); transform: translateX(4px); }
.fact .ic {
  width: 46px; height: 46px; border-radius: 13px; flex: none; display: grid; place-items: center; font-size: 1.35rem;
  background: rgba(139,124,255,.12); border: 1px solid rgba(139,124,255,.25);
}
.fact b { display: block; color: var(--moon); margin-bottom: .15rem; }
.fact span { color: var(--dim); font-size: .92rem; }

/* ================================================================
   KONTAKT
   ================================================================ */
.contact { background: linear-gradient(180deg, var(--night) 0%, var(--void) 100%); text-align: center; }
.contact .wrap { max-width: 44rem; }
.contact h2 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.1rem); margin-bottom: 1rem; }
.contact p { color: var(--silver); font-size: 1.12rem; margin-bottom: 2rem; }
.contact .eyebrow { justify-content: center; }

/* ================================================================
   APP-DETAILSEITEN (QuickWish / Frosted Penguin)
   ================================================================ */
.app-hero { position: relative; overflow: hidden; text-align: center; padding-block: clamp(3.5rem, 8vw, 6rem) clamp(3rem, 6vw, 5rem); }
.app-hero::before {
  content: ""; position: absolute; inset: -30% -10% auto -10%; height: 150%; z-index: 0; pointer-events: none;
  background: radial-gradient(70% 60% at 50% 0%, color-mix(in srgb, var(--accent, var(--lune)) 32%, transparent) 0%, transparent 60%);
}
.app-hero .wrap { max-width: 46rem; }
.app-hero .app-icon {
  width: clamp(96px, 22vw, 128px); height: clamp(96px, 22vw, 128px); border-radius: 30px;
  margin: 0 auto 1.8rem; box-shadow: 0 24px 60px -18px color-mix(in srgb, var(--accent, var(--lune)) 70%, transparent), 0 0 0 1px var(--haze-2);
}
.app-hero h1 { font-size: clamp(2.6rem, 1.6rem + 4vw, 4.2rem); margin-bottom: 1.1rem; letter-spacing: -.03em; }
.app-hero .sub { color: var(--silver); font-size: clamp(1.08rem, 1rem + .5vw, 1.28rem); margin-bottom: 2.2rem; }
.stores { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }
.store-badge img { height: clamp(46px, 13vw, 54px); width: auto; border-radius: 11px; box-shadow: var(--sh); transition: transform .3s ease, box-shadow .3s ease; }
.store-badge:hover img { transform: translateY(-3px); box-shadow: var(--sh-lg); }

.app-detail.is-qw { --accent: var(--qw); }
.app-detail.is-fp { --accent: var(--fp); }

.feature-grid { display: grid; gap: 1.3rem; grid-template-columns: 1fr; }
@media (min-width: 620px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }
.feature {
  background: linear-gradient(180deg, rgba(23,29,59,.5), rgba(16,20,43,.5));
  border: 1px solid var(--haze); border-radius: var(--r-lg);
  padding: 1.8rem 1.6rem; transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.feature:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--accent, var(--lune)) 45%, transparent); box-shadow: 0 24px 55px -26px color-mix(in srgb, var(--accent, var(--lune)) 75%, transparent); }
.feature .ic {
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 1.2rem;
  background: color-mix(in srgb, var(--accent, var(--lune)) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent, var(--lune)) 26%, transparent);
}
.feature h3 { font-size: 1.18rem; margin-bottom: .55rem; }
.feature p { color: var(--silver); font-size: .97rem; }

/* ================================================================
   DOKU-SEITEN (Datenschutz / Impressum)
   ================================================================ */
.doc-page { padding-block: clamp(2.5rem, 5vw, 4.5rem); min-height: 60vh; }
.doc {
  max-width: 52rem; margin-inline: auto;
  background: linear-gradient(180deg, rgba(23,29,59,.5), rgba(16,20,43,.55));
  border: 1px solid var(--haze); border-radius: var(--r-xl);
  padding: clamp(1.8rem, 5vw, 3.5rem); box-shadow: var(--sh); scroll-margin-top: 90px;
}
.doc + .doc { margin-top: 1.4rem; }
.doc h1 { font-size: clamp(1.9rem, 1.5rem + 1.6vw, 2.5rem); margin-bottom: .4rem; }
.doc .updated { color: var(--dim); font-weight: 600; margin-bottom: 2rem; }
.doc h2 { font-size: 1.28rem; margin: 2rem 0 .8rem; color: var(--moon); }
.doc h3 { font-size: 1.05rem; margin: 1.4rem 0 .5rem; color: var(--lune-2); }
.doc p, .doc li { color: var(--silver); }
.doc p { margin-bottom: 1rem; }
.doc strong { color: var(--moon); }
.doc ul { list-style: disc; padding-left: 1.3rem; margin-bottom: 1rem; display: grid; gap: .5rem; }
.doc a { color: var(--lune-2); }
.doc a:hover { text-decoration: underline; }

.lang-tabs { max-width: 52rem; margin: 0 auto 1.4rem; display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.lang-tabs a { display: inline-flex; align-items: center; gap: .4rem; padding: .48rem .95rem; border-radius: var(--r-full); background: rgba(255,255,255,.04); border: 1px solid var(--haze-2); color: var(--silver); font-weight: 600; font-size: .88rem; }
.lang-tabs a:hover { color: var(--moon); border-color: var(--lune); }

/* ================================================================
   FOOTER
   ================================================================ */
.footer { background: var(--void); border-top: 1px solid var(--haze); color: var(--dim); font-size: .92rem; padding-block: 3.2rem; }
.footer-top { display: grid; gap: 2rem; align-items: center; justify-items: center; padding-bottom: 2rem; border-bottom: 1px solid var(--haze); }
@media (min-width: 760px) { .footer-top { grid-template-columns: 1fr 1fr 1fr; justify-items: stretch; } }
.footer .brand { color: var(--moon); }
.footer-mid { text-align: center; }
.footer-mid p { margin-bottom: .2rem; }
.footer-mid a { color: var(--lune-2); font-weight: 600; }
.footer-mid a:hover { color: var(--moon); }
.footer-links { display: flex; gap: 1.6rem; justify-content: center; flex-wrap: wrap; }
@media (min-width: 760px) { .footer-links { justify-content: flex-end; } }
.footer-links a { color: var(--silver); }
.footer-links a:hover { color: var(--moon); }
.footer-bottom { text-align: center; color: var(--dim); font-size: .8rem; margin-top: 1.8rem; }

/* ================================================================
   MOTION
   ================================================================ */
/* Scroll-Reveal */
.js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* Hero-Einblendung gestaffelt */
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.hero-copy > * { animation: rise .85s both cubic-bezier(.2,.7,.3,1); }
.hero-copy > *:nth-child(1) { animation-delay: .05s; }
.hero-copy > *:nth-child(2) { animation-delay: .14s; }
.hero-copy > *:nth-child(3) { animation-delay: .23s; }
.hero-copy > *:nth-child(4) { animation-delay: .32s; }
.hero-copy > *:nth-child(5) { animation-delay: .41s; }
.hero-apps .chip { animation: rise .8s both cubic-bezier(.2,.7,.3,1); }
.hero-apps .chip:nth-child(1) { animation-delay: .30s; }
.hero-apps .chip:nth-child(2) { animation-delay: .38s; }
.hero-apps .chip:nth-child(3) { animation-delay: .46s; }
.hero-apps .chip:nth-child(4) { animation-delay: .54s; }

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
  .hero-copy > *, .hero-apps .chip { animation: none !important; }
  body::before { display: none; }
}
