/* ============================================================
   Website-Design (Startseite + Rechtsseiten)
   Eigenstaendiger Look: Nachtschwarz + Neon (Cyan x Pink).
   Gold ist abgeschafft; Akzente laufen ueber Cyan/Pink-Verlaeufe.
   Headlines & Wortmarke: DM Sans. TOPLUXURY ist KOMPLETT raus (Daniel 11.07.).
   Die Werkzeug-Seiten (radix/astro-geografie/transite) behalten
   ihr eigenes UI in src/styles.css bzw. site-bridge.css.
   ============================================================ */

@font-face {
  font-family: "DM Sans";
  src: url("fonts/DMSans-Regular.woff2") format("woff2"),
       url("fonts/DMSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("fonts/DMSans-Medium.woff2") format("woff2"),
       url("fonts/DMSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("fonts/DMSans-SemiBold.woff2") format("woff2"),
       url("fonts/DMSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("fonts/DMSans-Bold.woff2") format("woff2"),
       url("fonts/DMSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --night: #090d1c;
  --night-soft: #10162c;
  --night-panel: #151d38;

  /* Neon-Farbwelt: Cyan x Pink auf Nachtschwarz (Gold abgeschafft) */
  --cyan: #00b2c2;        /* Basis-Cyan */
  --neon: #35d4e8;        /* helles Neon-Cyan fuer Text-Akzente */
  --pink: #ff2e88;        /* Neon-Pink */
  --pink-soft: #ff5ec4;   /* helles Pink */
  --focus-ring: var(--pink-soft);

  --star: #f4efe4;
  --text: #e8e6df;
  --text-muted: #b8b7c6;

  /* Eingabeflächen 14.07.2026: derselbe kühle Weißton wie in den Werkzeugen. */
  --field-bg: #f6f9fa;
  --field-bg-hover: #fbfdfe;
  --field-bg-focus: #ffffff;
  --field-bg-disabled: #e9f0f2;
  --field-text: #090d1c;
  --field-placeholder: #56616d;
  --field-disabled-text: #606a75;

  /* Hairlines auf Neon-Cyan umgestellt */
  --line: rgba(53, 212, 232, 0.22);
  --line-soft: rgba(53, 212, 232, 0.12);

  /* Redaktionelle Icon-Kacheln: ruhig, klar und bewusst einfacher als die
     leuchtenden Linien der Kartenwelt. */
  --icon-surface-quiet-start: #134457;
  --icon-surface-quiet-end: #1a5364;
  --icon-surface-strong-start: #0b667a;
  --icon-surface-strong-end: #047686;
  --icon-edge: rgba(155, 234, 241, 0.1);
  --icon-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);

  --display: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --wordmark: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --rhythm: 120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

/* Touch: Sofort-Scroll — iOS schliesst Picker waehrend Scroll-Animationen (13.07.) */
@media (pointer: fine) { html { scroll-behavior: smooth; } }

/* ---------- Marken-Scrollleiste (Cyan -> Pink) ---------- */
html {
  scrollbar-width: thin;
  scrollbar-color: #35d4e8 rgba(9, 13, 28, 0.9);
}
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #090d1c; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00b2c2, #35d4e8 45%, #ff2e88);
  border-radius: 999px;
  border: 2px solid #090d1c;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #35d4e8, #7fe9f4 45%, #ff5ec4);
}
::-webkit-scrollbar-corner { background: #090d1c; }

body {
  font-family: var(--sans);
  background: var(--night);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Sternenhimmel: dezente, rein dekorative Punkte per Gradient.
   Bleibt als statischer Fallback; site-fx.js legt darueber ein
   animiertes Canvas (.fx-starfield). */
.sky {
  background-image:
    radial-gradient(1px 1px at 12% 22%, rgba(244, 239, 228, 0.8) 50%, transparent 51%),
    radial-gradient(1px 1px at 34% 8%, rgba(244, 239, 228, 0.5) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 56% 30%, rgba(53, 212, 232, 0.7) 50%, transparent 51%),
    radial-gradient(1px 1px at 72% 12%, rgba(244, 239, 228, 0.6) 50%, transparent 51%),
    radial-gradient(1px 1px at 88% 26%, rgba(244, 239, 228, 0.45) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 22% 42%, rgba(244, 239, 228, 0.35) 50%, transparent 51%),
    radial-gradient(1px 1px at 64% 48%, rgba(53, 212, 232, 0.5) 50%, transparent 51%),
    radial-gradient(ellipse 90% 60% at 50% -10%, #141a34 0%, var(--night) 70%);
  /* Desktop: Sternenfeld bleibt beim Scrollen ortsfest (Parallax-frei). */
  background-attachment: fixed;
}

/* iOS/Safari rendert `background-attachment: fixed` auf Touch-Geraeten janky
   bis gar nicht (teurer Repaint bei jedem Scroll-Frame, sichtbares Ruckeln).
   Auf Touch/Coarse-Pointer daher auf `scroll` zuruecknehmen. Der Verlauf ist
   rein dekorativer Fallback und wird vom fixierten .fx-starfield-Canvas ohnehin
   ueberlagert, der Unterschied faellt visuell nicht ins Gewicht. Desktop
   (feiner Zeiger/Hover) behaelt das gewuenschte ortsfeste `fixed`. */
@media (hover: none), (pointer: coarse), (max-width: 900px) {
  /* max-width 900 zusaetzlich: schmale Fenster/Emulatoren melden teils
     hover:hover - fixed dort zusammen mit Overlays ein Chromium-Freeze-Risiko
     (siehe .hero-copy-Kommentar, 12.07.). */
  .sky {
    background-attachment: scroll;
  }
}

/* Animiertes Sternenfeld-Canvas (von site-fx.js erzeugt) */
.fx-starfield {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Inhalt liegt ueber der Sternebene */
.site-header, main, .site-footer { position: relative; z-index: 1; }

/* Hero: kinoreif, vollflaechiges Neon-Visual + gepinnter Inhalt */
.hero { position: relative; }

a { color: var(--neon); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Projektweiter Standard fuer Links im Fliesstext. Navigation, Kartenlinks
   und grosse CTAs behalten ihre jeweils funktional begruendete Form. */
.text-link,
main :where(p, li) > a:not(.btn):not(.guide-card-link) {
  color: var(--neon);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(53, 212, 232, 0.48);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.22s ease, text-decoration-color 0.22s ease;
}
.text-link:hover,
main :where(p, li) > a:not(.btn):not(.guide-card-link):hover {
  color: var(--pink-soft);
  text-decoration-color: rgba(255, 94, 196, 0.62);
}

/* Projektweiter Standard fuer echte Zitate und redaktionelle Pullquotes.
   Kontextklassen wie .guide-quote steuern nur noch Groesse und Rahmen. */
.site-quote {
  margin-block: 0;
  margin-inline: 0;
  quotes: "„" "“" "‚" "‘";
  font-style: italic;
}
.site-quote > p { margin: 0; }
.site-quote > p:first-child::before { content: open-quote; }
.site-quote > p:last-child::after { content: close-quote; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--night);
  background: var(--star);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 0.18s ease;
}
.skip-link:focus { transform: translateY(0); }

#main-content { scroll-margin-top: 120px; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 4px;
}

/* Gemeinsamer weißer Eingabe-Look für Marketing-Formulare. Das Kontaktformular
   und der vorbereitete Newsletter behalten ihre eigene Geometrie, teilen aber
   Normal-, Hover-, Fokus-, Disabled-, Placeholder- und Autofill-Zustände. */
.newsletter input[type="email"],
.kontakt-form .field input,
.kontakt-form .field textarea,
.kontakt-form .field select {
  border: 1px solid var(--line);
  background: var(--field-bg);
  color: var(--field-text);
  color-scheme: light;
  font-size: 16px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.newsletter input[type="email"]::placeholder,
.kontakt-form .field input::placeholder,
.kontakt-form .field textarea::placeholder {
  color: var(--field-placeholder);
  opacity: 1;
}

@media (hover: hover) {
  .newsletter input[type="email"]:hover:not(:focus):not(:disabled),
  .kontakt-form .field input:hover:not(:focus):not(:disabled),
  .kontakt-form .field textarea:hover:not(:focus):not(:disabled),
  .kontakt-form .field select:hover:not(:focus):not(:disabled) {
    border-color: rgba(53, 212, 232, 0.58);
    background: var(--field-bg-hover);
  }
}

.newsletter input[type="email"]:focus,
.kontakt-form .field input:focus,
.kontakt-form .field textarea:focus,
.kontakt-form .field select:focus {
  border-color: var(--neon);
  background: var(--field-bg-focus);
  box-shadow: 0 0 0 3px rgba(53, 212, 232, 0.18);
}

.newsletter input[type="email"]:disabled,
.kontakt-form .field input:disabled,
.kontakt-form .field textarea:disabled,
.kontakt-form .field select:disabled {
  background: var(--field-bg-disabled);
  color: var(--field-disabled-text);
  cursor: not-allowed;
  opacity: 1;
}

.newsletter input[type="email"]:-webkit-autofill,
.kontakt-form .field input:-webkit-autofill,
.kontakt-form .field textarea:-webkit-autofill {
  -webkit-text-fill-color: var(--field-text);
  box-shadow: 0 0 0 1000px var(--field-bg-focus) inset;
  caret-color: var(--field-text);
}

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

/* ---------- Kopfbereich ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  /* KEIN backdrop-filter: sticky + backdrop-filter + gehaltener :hover auf einem
     Kind (a.wordmark) am Scroll-Ende laesst Chromium den geblurrten Backdrop-
     Snapshot wiederholt invalidieren -> Header flackert (gleiche Bug-Familie wie
     .hero-copy, diagnostiziert 13.07.). Angehobene Deckkraft ersetzt den Blur. */
  background: rgba(9, 13, 28, 0.92);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(9, 13, 28, 0.97);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 15px;
  padding-bottom: 15px;
}

/* Marken-Anker vor dem Namenszug: Daniels Diamant-Logomark (ohne Schriftzug,
   aus dem grossen Logo freigestellt; Feedback Daniel 12.07.). */
.wordmark-emblem {
  width: 26px;
  height: 40px;
  display: block;
  flex: 0 0 auto;
}
/* Zweizeilig: Name oben, Astro-Geografie darunter (Feedback Daniel 12.07. -
   nebeneinander wirkte die Schrift zu gross). */
.wordmark-text {
  display: flex;
  flex-direction: column;
  line-height: 1.18;
  font-size: 1.02rem;
}
.wordmark-sub {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-style: italic; /* Claim-Variante E (Daniel 12.07.): kursiv + kleingeschrieben */
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--wordmark);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--star);
  white-space: nowrap;
}
.wordmark .wordmark-sub { color: var(--neon); }
/* Logo-Finale V1a (Daniel 13.07.): Claim traegt den Marken-Verlauf Cyan -> Pink.
   @supports-Gate: Browser ohne background-clip:text behalten die einfarbige
   Neon-Fassung oben (nie transparenter Text ohne gemalten Verlauf). */
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .wordmark .wordmark-sub {
    background: linear-gradient(97deg, var(--neon), var(--pink-soft));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
.wordmark:hover { text-decoration: none; }

.site-nav { display: flex; gap: 26px; flex-wrap: wrap; }
.site-nav a {
  position: relative;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 2px 0;
  transition: color 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
/* Animierte Verlaufs-Unterstreichung Cyan -> Pink */
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: linear-gradient(90deg, var(--neon), var(--pink));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-nav a:hover { color: var(--neon); text-decoration: none; }
.site-nav a:hover::after { transform: scaleX(1); }
.site-nav a[aria-current="page"],
.site-nav a[aria-current="location"] { color: var(--star); }
.site-nav a[aria-current="page"]::after,
.site-nav a[aria-current="location"]::after { transform: scaleX(1); }

/* ---------- Held (kinoreif, gepinnt) ---------- */

.hero { padding: 0; }

.hero-track { height: 184vh; }

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh; /* dyn. Viewport-Hoehe auf Mobil (ein-/ausblendende URL-Leiste); alte Browser behalten vh */
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  /* Ersatz fuer das entfernte Hero-Foto: tiefes Nachtblau + dezenter
     Cyan-Radialschimmer oben rechts. Das Sternenfeld liegt dahinter. */
  background:
    radial-gradient(72% 55% at 84% 10%, rgba(53, 212, 232, 0.05) 0%, transparent 62%),
    linear-gradient(180deg, #0a1022 0%, #070b18 100%);
}

/* Hero-Lichtstrahlen-Canvas (wandernde Laserkoepfe, von site-fx.js erzeugt).
   Liegt ueber dem .hero-sticky-Grund (0) und unter dem Scrim (1). */
.fx-beams {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transform-origin: 82% 22%;
  will-change: transform;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(96deg, rgba(9, 13, 28, 0.62) 0%, rgba(9, 13, 28, 0.44) 32%, rgba(9, 13, 28, 0.18) 62%, rgba(9, 13, 28, 0.3) 100%),
    linear-gradient(0deg, rgba(9, 13, 28, 0.78) 0%, rgba(9, 13, 28, 0) 40%),
    linear-gradient(180deg, rgba(9, 13, 28, 0.5) 0%, rgba(9, 13, 28, 0) 26%);
}

.hero .wrap { position: relative; z-index: 2; width: 100%; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  will-change: transform, opacity;
}

.hero-copy { max-width: 40rem; }

.hero .kicker {
  color: var(--neon);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 22px;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.6rem, 5.8vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--star);
  margin: 0 0 24px;
  text-shadow: 0 2px 10px rgba(9, 13, 28, 0.6);
}

/* Neon-Schluesselwort "Orte": Verlaufs-Text Cyan -> Pink mit Schimmer */
.hero h1 .accent {
  position: relative;
  color: var(--neon);
  background: linear-gradient(
    100deg,
    var(--neon) 0%,
    #7fe9f4 26%,
    var(--pink-soft) 54%,
    var(--pink) 78%,
    var(--neon) 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: accent-shimmer 7s ease-in-out infinite;
}
@keyframes accent-shimmer {
  0%   { background-position: 130% 50%; }
  100% { background-position: -30% 50%; }
}
.hero .lede {
  max-width: 54ch;
  margin: 0 0 38px;
  color: var(--text-muted);
  font-size: 1.12rem;
}

/* Hero-Lede „aus einem Guss": der Gefühlssatz trägt, die erklärende Zeile rückt
   eine Stufe tiefer und sitzt dichter darunter (Psychologie-Audit M1). */
.hero .lede:has(+ .lede-note) {
  margin-bottom: 13px;
}
.hero .lede-note {
  max-width: 58ch;
  font-size: 1rem;
  line-height: 1.7;
}

/* Gestaffelter Hero-Auftritt: Blocks sliden von unten ein */
.hero .kicker,
.hero h1,
.hero .lede,
.hero .cta-row {
  animation: hero-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero .kicker { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.28s; }
.hero .lede { animation-delay: 0.5s; }
.hero .cta-row { animation-delay: 0.64s; }
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* Held-Buehne mit Globus */
.hero-stage { display: flex; justify-content: center; align-items: center; }

.globe-stage {
  position: relative;
  width: clamp(320px, 44vw, 560px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.globe-stage canvas {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
}
/* Der Globus bringt seine eigene Atmosphaere im Canvas mit -
   die zusaetzliche CSS-Aura wirkte kantig und ist deshalb aus. */
.globe-glow { display: none; }

/* ---------- Buttons ---------- */

.btn {
  position: relative;
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    background-position 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.985); }
.btn:disabled,
.btn[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.55;
  pointer-events: none;
  box-shadow: none;
  transform: none;
}

/* Primaerbutton: ruhiger Neon-Verlauf (Klassenname btn-gold bleibt, nur Optik neu).
   Cyan -> Neon ohne Pink, EIN Cyan-Gluehen, kein wandernder Lichtstreif mehr. */
.btn-gold {
  background: linear-gradient(120deg, var(--cyan) 0%, var(--neon) 100%);
  background-size: 160% 100%;
  background-position: 0% 50%;
  color: #06070f;
  box-shadow: 0 2px 12px rgba(0, 178, 194, 0.45);
}
.btn-gold:hover {
  background-position: 100% 50%;
  filter: brightness(1.05);
  box-shadow: 0 5px 18px rgba(0, 178, 194, 0.58);
}
/* Dezenter Gloss-Schimmer oben, sonst nichts */
.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.06) 44%, rgba(255, 255, 255, 0) 62%);
  pointer-events: none;
  mix-blend-mode: screen;
}
/* Fokus-Ring in der Machart der Chip-Familie (Cyan, 2px) */
.btn-gold:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 2px;
}

/* Sekundaerbutton: transparenter Grund, Verlaufs-Border Cyan -> Pink */
.btn-line {
  border: 1px solid transparent;
  color: var(--star);
  background: transparent;
}
.btn-line::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, var(--neon), var(--pink));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: opacity 0.2s ease;
  opacity: 0.75;
}
.btn-line:hover { background: rgba(53, 212, 232, 0.08); }
.btn-line:hover::after { opacity: 1; }

/* ---------- Abschnitte ---------- */

section { padding: var(--rhythm) 0; }

.section-head { text-align: center; max-width: 62ch; margin: 0 auto 56px; }

.section-head .kicker {
  color: var(--neon);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 14px;
}

/* Inline-Kicker (frueher als style-Attribut gesetzt) */
.kicker-inline {
  color: var(--neon);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}

h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  color: var(--star);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-head p { color: var(--text-muted); }

/* ---------- Abschnitts-Uebergaenge: leuchtende Neon-Linien ---------- */
main > section { position: relative; }
main > section + section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(680px, 82%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--neon) 35%,
    var(--pink) 65%,
    transparent
  );
  pointer-events: none;
}

/* ============================================================
   KINO-SZENEN — vollflaechige, scroll-getriebene Bild-Szenen
   Jede Szene: hoher Track + position:sticky-Buehne (100vh),
   Bild als cover-Ebene, Scrim fuer Lesbarkeit, Text darueber.
   site-fx.js treibt transform/opacity von Bild- und Textebenen.
   ============================================================ */
.scene { padding: 0; }
.scene-track { height: 196vh; }
.scene-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh; /* dyn. Viewport-Hoehe auf Mobil (ein-/ausblendende URL-Leiste); alte Browser behalten vh */
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.scene-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scale(1.06);
  transform-origin: center;
  will-change: transform;
}
.scene-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.scene-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(96deg, rgba(9, 13, 28, 0.95) 0%, rgba(9, 13, 28, 0.82) 38%, rgba(9, 13, 28, 0.42) 66%, rgba(9, 13, 28, 0.5) 100%),
    linear-gradient(0deg, rgba(9, 13, 28, 0.7) 0%, rgba(9, 13, 28, 0) 44%);
}
.scene .wrap { position: relative; z-index: 2; width: 100%; }
.scene-content {
  max-width: 40rem;
  will-change: transform, opacity;
}
.scene-kicker {
  color: var(--neon);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.scene-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.35rem, 5.2vw, 4.75rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--star);
  margin: 0 0 22px;
  text-shadow: 0 2px 20px rgba(9, 13, 28, 0.6);
  hyphens: manual;
  max-width: 13ch;
}
.scene-text {
  max-width: 46ch;
  margin: 0 0 32px;
  color: var(--text);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}
.scene-cta { display: flex; gap: 14px; flex-wrap: wrap; }
/* Kein Trennstrich-Glow ueber die vollflaechigen Bildszenen */
.scene::before,
.finale::before { content: none !important; }

/* ============================================================
   ASTRO-GEOGRAFIE — "Deine Linien fuehren an echte Orte"
   Drei edle Bild-Karten (16:9), darunter eine kompakte Laender-Reihe.
   ============================================================ */
.orte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  gap: 26px;
}
.orte-card {
  display: flex;
  flex-direction: column;
  background: rgba(21, 29, 56, 0.34);
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  padding: 12px 12px 6px;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.orte-card:hover {
  border-color: var(--line);
  box-shadow: 0 18px 22px rgba(0, 0, 0, 0.34);
}
.orte-media {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: var(--night-soft);
}
.orte-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.001);
  transform-origin: center;
  will-change: transform;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.orte-card:hover .orte-media img { transform: scale(1.07); }
.orte-body {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 18px 8px 14px;
}
.orte-label {
  color: var(--neon);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
}
.orte-text {
  color: var(--text-muted);
  font-size: 0.97rem;
}

/* Zweite Reihe: kompakte Laender-Kacheln, prominentes Label in DM Sans 700 */
.orte-more { margin-top: 68px; }
.orte-more-head {
  text-align: center;
  margin: 0 0 30px;
}
.orte-more-head h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  color: var(--star);
}
.orte-countries {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.orte-country {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(21, 29, 56, 0.34);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.orte-country:hover {
  border-color: var(--line);
  box-shadow: 0 16px 22px rgba(0, 0, 0, 0.34);
}
.country-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--night-soft);
}
.country-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.001);
  transform-origin: center;
  will-change: transform;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.orte-country:hover .country-media img { transform: scale(1.07); }
.country-body { padding: 14px 15px 16px; }
.country-label {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 1.02rem;
  color: var(--neon);
  margin-bottom: 4px;
}
/* Eine Kachel darf einen Pink-Akzent tragen */
.orte-country.is-pink .country-label { color: var(--pink-soft); }
.country-line {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.orte-cta {
  text-align: center;
  margin-top: 52px;
}
.orte-hint {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================================
   GLAS-KACHELN — geteilte Basis fuer Vorteile, Schritte, Achsen
   Premium-Zurueckhaltung: Typografie + Raum, haarfeine Border,
   Hover = sanftes Anheben, Border wird sichtbarer. Kein Dekor-Overkill.
   ============================================================ */
.glass-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(53, 212, 232, 0.18);
  border-radius: 18px;
  padding: 32px 30px;
  background: rgba(21, 29, 56, 0.42);
  backdrop-filter: blur(8px);
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
/* Kacheln sind komplett klickbar (Daniel 12.07.): die Ueberschrift traegt den
   Link, ihr unsichtbares ::after spannt die Klickflaeche ueber die ganze Kachel.
   Text-Links in der Kachel liegen per z-index darueber und bleiben eigenstaendig. */
.tile-link { color: inherit; }
a.tile-link:hover { text-decoration: none; color: var(--neon); }
.tile-link::after { content: ""; position: absolute; inset: 0; border-radius: 18px; }
.glass-tile p a { position: relative; z-index: 1; }

.glass-tile:hover {
  border-color: rgba(53, 212, 232, 0.38);
  transform: translateY(-4px);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.32);
}
.glass-tile h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--star);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.glass-tile p {
  color: var(--text-muted);
  font-size: 0.96rem;
}

/* Schritt-Ziffer: schlank und leicht, Verlaufs-Text Cyan -> Pink.
   Bewusst duenner als die Kachel-Titel, nur ein stiller Marker. */
.tile-num {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--neon);
  background: linear-gradient(120deg, var(--neon) 0%, var(--pink-soft) 58%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}

/* ---------- Vorteile: 2x2, reine Typo-Kacheln ----------
   Einziges Schmuck-Detail: 2px hohe Verlaufs-Linie oben links. */
.vorteile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
/* Vorteil-Kachel: reduziertes Zeichen auf einer ruhigen Petrolfläche, links
   neben der Überschrift. Die Form bleibt bewusst flach und ohne Neonrahmen. */
.vorteil-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 16px;
}
.vorteil-chip {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid var(--icon-edge);
  border-radius: 18px;
  background: linear-gradient(145deg, var(--icon-surface-quiet-start), var(--icon-surface-quiet-end));
  box-shadow: var(--icon-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: transform 0.24s cubic-bezier(0.16, 1, 0.3, 1), background 0.24s ease, box-shadow 0.24s ease;
}
.vorteil-chip img {
  /* 60 % der 64er-Kachel statt 50 % — Icon-Offensive 13.07.2026 (Daniel:
     Glyphen kraeftiger und groesser; SVG-Striche auf 4.4 angehoben). */
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: none;
}
.vorteil-head h3 {
  margin: 0;
  line-height: 1.2;
}
.glass-tile:hover .vorteil-chip {
  transform: translateY(-1px);
  background: linear-gradient(145deg, var(--icon-surface-strong-start), var(--icon-surface-strong-end));
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.vorteile-grid > [data-reveal]:nth-child(2) { transition-delay: 0.06s; }
.vorteile-grid > [data-reveal]:nth-child(3) { transition-delay: 0.12s; }
.vorteile-grid > [data-reveal]:nth-child(4) { transition-delay: 0.18s; }

/* ============================================================
   SO LIEST DU DEINE LANDKARTE — drei Schritt-Kacheln
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.steps-grid > [data-reveal]:nth-child(2) { transition-delay: 0.08s; }
.steps-grid > [data-reveal]:nth-child(3) { transition-delay: 0.16s; }

/* ============================================================
   DIE VIER ACHSEN — Kacheln mit Mini-Achsen-Rad
   Haarfeiner Kreis + Fadenkreuz, gluehender Punkt an der
   Achsen-Position (AC links, DC rechts, MC oben in Pink, IC unten).
   ============================================================ */
.achsen-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.achsen-grid .glass-tile {
  --axis-rgb: 53, 212, 232;
  overflow: hidden;
}
.achsen-grid .glass-tile:nth-child(3),
.achsen-grid .glass-tile:nth-child(4) { --axis-rgb: 255, 46, 136; }
.achsen-grid .glass-tile::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 10px;
  left: 7px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--axis-rgb), 0.16), rgba(var(--axis-rgb), 0.035) 42%, transparent 70%);
  opacity: 0.38;
  transform: scale(0.86);
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.achsen-grid .glass-tile > * { position: relative; z-index: 1; }
.achsen-grid .glass-tile:hover {
  border-color: rgba(var(--axis-rgb), 0.48);
  box-shadow:
    0 18px 30px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(var(--axis-rgb), 0.11);
}
.achsen-grid .glass-tile:hover::after {
  opacity: 0.9;
  transform: scale(1.12);
}
.achsen-grid .glass-tile h3 { font-weight: 700; }
.achsen-grid > [data-reveal]:nth-child(2) { transition-delay: 0.06s; }
.achsen-grid > [data-reveal]:nth-child(3) { transition-delay: 0.12s; }
.achsen-grid > [data-reveal]:nth-child(4) { transition-delay: 0.18s; }

.axis-dial {
  width: 76px;
  height: 76px;
  display: block;
  margin-bottom: 4px;
  color: rgb(var(--axis-rgb));
  overflow: visible;
  filter: drop-shadow(0 0 5px rgba(var(--axis-rgb), 0.1));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
}
.axis-dial .dial-ring {
  fill: none;
  stroke: rgba(var(--axis-rgb), 0.38);
  stroke-width: 1;
  transition: stroke 0.3s ease, stroke-width 0.3s ease;
}
.axis-dial .dial-cross {
  stroke: rgba(var(--axis-rgb), 0.18);
  stroke-width: 1;
  transition: stroke 0.3s ease, stroke-width 0.3s ease;
}
/* Gluehender Punkt: fester Kern + zwei enge Halo-Ringe */
.axis-dial .dot-core {
  fill: currentColor;
  transform-box: fill-box;
  transform-origin: center;
  animation: axis-core-focus 3.2s ease-in-out infinite;
}
.axis-dial .dot-halo,
.axis-dial .dot-halo2 {
  fill: currentColor;
  transform-box: fill-box;
  transform-origin: center;
  animation: axis-dot-breathe 3.2s ease-in-out infinite;
}
.axis-dial .dot-halo { opacity: 0.24; animation-delay: -0.9s; }
.axis-dial .dot-halo2 { opacity: 0.11; }

.achsen-grid .glass-tile:hover .axis-dial {
  transform: translateY(-2px) scale(1.06);
  filter: drop-shadow(0 0 10px rgba(var(--axis-rgb), 0.26));
}
.achsen-grid .glass-tile:hover .axis-dial:hover {
  transform: translateY(-4px) scale(1.13);
  filter: drop-shadow(0 0 14px rgba(var(--axis-rgb), 0.38));
}
.achsen-grid .glass-tile:hover .dial-ring {
  stroke: rgba(var(--axis-rgb), 0.72);
  stroke-width: 1.35;
}
.achsen-grid .glass-tile:hover .dial-cross {
  stroke: rgba(var(--axis-rgb), 0.38);
  stroke-width: 1.15;
}
.achsen-grid .glass-tile:hover .dot-halo,
.achsen-grid .glass-tile:hover .dot-halo2 { animation-duration: 1.7s; }

@keyframes axis-dot-breathe {
  0%, 100% { opacity: 0.08; transform: scale(0.62); }
  50% { opacity: 0.22; transform: scale(0.86); }
}
@keyframes axis-core-focus {
  0%, 100% {
    transform: scale(0.68);
    filter: drop-shadow(0 0 1.5px currentColor) drop-shadow(0 0 3px currentColor);
  }
  50% {
    transform: scale(0.76);
    filter: drop-shadow(0 0 2px currentColor) drop-shadow(0 0 4.5px currentColor);
  }
}

/* Responsiv fuer die Kachel-Sektionen */
@media (max-width: 900px) {
  .achsen-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .steps-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .vorteile-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .achsen-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   DIE LINIEN DER PLANETEN — obere Buehnen-Reihe (3 Renderings)
   + untere Reihe aus vier kompakten Text-Kacheln.
   Obere Reihe: quadratisches Planeten-Rendering randlos in der
   Kopfzone, sanfter Zoom 1.03 beim Hover, haarfeine Hover-Kante.
   ============================================================ */
.planeten-buehne {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 22px;
}
.planet-buehne {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(21, 29, 56, 0.42);
  border: 1px solid rgba(53, 212, 232, 0.18);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.planet-buehne:hover {
  border-color: rgba(53, 212, 232, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.34);
}
.planet-buehne-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--night-soft);
}
.planet-buehne-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.001);
  transform-origin: center;
  will-change: transform;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.planet-buehne:hover .planet-buehne-media img { transform: scale(1.03); }
.planet-buehne-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 24px 24px;
}
.planet-buehne-body h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--star);
}
.planet-buehne-body p {
  color: var(--text-muted);
  font-size: 0.97rem;
}
.planeten-buehne > [data-reveal]:nth-child(2) { transition-delay: 0.08s; }
.planeten-buehne > [data-reveal]:nth-child(3) { transition-delay: 0.16s; }

/* Untere Reihe: vier kompakte Text-Kacheln (Padding ~22px) */
.planeten-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.planet-tile {
  padding: 22px;
  gap: 6px;
}
.planet-tile h3 {
  font-weight: 700;
  font-size: 1rem;
}
.planet-tile p {
  font-size: 0.92rem;
  line-height: 1.55;
}
.planeten-foot {
  max-width: 64ch;
  margin: 30px auto 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
}
@media (max-width: 860px) {
  .planeten-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .planeten-buehne { grid-template-columns: 1fr; }
}
@media (max-width: 460px) {
  .planeten-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RELOCATION CHART — zweispaltig: Text links, Sternkarte rechts
   ============================================================ */
.reloc-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.reloc-copy { max-width: 40rem; }
.reloc-copy p { color: var(--text-muted); margin-bottom: 16px; }
.reloc-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  align-items: center;
  margin-top: 24px;
}
.reloc-media { position: relative; }
/* Bild = klickbare Kachel zur Karte (Stretched-Link wie die index-Kacheln). */
.reloc-media .portrait-frame {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.reloc-media-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 22px;
}
.reloc-media-link:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 4px;
}
.reloc-media:hover .portrait-frame,
.reloc-media:focus-within .portrait-frame {
  transform: translateY(-4px);
}

/* ============================================================
   KOSTENLOS — ruhige, klare Zusage, mittiger CTA
   ============================================================ */
.kostenlos-cta { text-align: center; margin-top: 4px; }

/* ============================================================
   FAQ — kompaktes Akkordeon (native <details>/<summary>)
   Haarfeine Trennlinien, Summary mit Cyan-Hover, CSS-Chevron
   der sich beim Oeffnen dreht. Snippet-tauglich.
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-item:first-child { border-top: 1px solid var(--line-soft); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.08rem;
  line-height: 1.35;
  color: var(--star);
  overflow-wrap: anywhere;
  transition: color 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item summary::-webkit-details-marker { display: none; }
/* SEO-Paket 29.08.2026: Fragen sind jetzt echte h3-Ueberschriften im summary; font/inherit haelt die Optik exakt unveraendert. */
.faq-item summary h3 { display: inline; font: inherit; color: inherit; letter-spacing: inherit; margin: 0; }
.faq-item summary:hover { color: var(--neon); }
/* Chevron aus zwei Kanten, zeigt nach unten, dreht beim Oeffnen nach oben */
.faq-item summary::after {
  content: "";
  flex: none;
  width: 9px;
  height: 9px;
  margin-right: 6px;
  border-right: 2px solid var(--neon);
  border-bottom: 2px solid var(--neon);
  transform: rotate(45deg);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-answer { padding: 0 4px 22px; }
.faq-answer :where(p, ul, ol) {
  max-width: 68ch;
}
.faq-answer p {
  color: var(--text-muted);
  font-size: 0.99rem;
}
.faq-answer :where(ul, ol) {
  margin-top: 12px;
  padding-left: 20px;
  color: var(--text-muted);
}
.faq-more {
  max-width: 760px;
  margin: 28px auto 0;
  text-align: right;
}
.faq-more a {
  color: var(--neon);
  font-weight: 700;
}

/* ============================================================
   FINALE — Newsletter ueber vollflaechigem Horizont-Glow
   ============================================================ */
.finale {
  position: relative;
  padding: 0;
  min-height: clamp(620px, 82vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.finale-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 60%;
}
.finale-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 72%, rgba(53, 212, 232, 0.16), transparent 29%),
    radial-gradient(circle at 78% 68%, rgba(255, 77, 157, 0.13), transparent 31%),
    linear-gradient(180deg, rgba(9, 13, 28, 0.88) 0%, rgba(9, 13, 28, 0.58) 40%, rgba(9, 13, 28, 0.4) 70%, rgba(9, 13, 28, 0.76) 100%);
}
.finale .wrap { position: relative; z-index: 2; width: 100%; padding-top: 96px; padding-bottom: 96px; }

/* ---------- Über Daniel ---------- */

.about-page {
  min-height: 76vh;
  padding: 0;
}
.about-page .wrap { max-width: 1120px; }
.about-hero { padding: clamp(76px, 8vw, 116px) 0 clamp(96px, 10vw, 138px); }
.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  grid-template-areas:
    "portrait heading"
    "portrait story";
  column-gap: clamp(44px, 7vw, 88px);
  align-items: start;
}
.about-heading {
  grid-area: heading;
  padding-top: 18px;
}
.about-heading .kicker { margin-bottom: 22px; }
.about-heading h1 {
  margin: 0;
  color: var(--star);
  font-family: var(--display);
  font-size: clamp(2.8rem, 5.6vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.96;
}
.about-intro {
  max-width: 42ch;
  margin: 24px 0 0;
  color: var(--text);
  font-size: clamp(1.12rem, 1.8vw, 1.38rem);
  line-height: 1.45;
}
.about-intro span { white-space: nowrap; }
.about-portrait-column { grid-area: portrait; }
.about-visual {
  width: 100%;
  max-width: 440px;
  margin: 0;
  border-radius: 26px;
  box-shadow:
    0 36px 70px -30px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(53, 212, 232, 0.08),
    0 18px 56px -38px rgba(53, 212, 232, 0.7);
}
.about-visual img {
  aspect-ratio: 1000 / 1241;
  object-fit: cover;
}
.about-story {
  grid-area: story;
  max-width: 590px;
  margin-top: 38px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.about-story > p {
  max-width: 62ch;
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.75;
}
.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.about-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 440px;
  margin: 24px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
}
.about-facts > div + div {
  margin-left: 22px;
  padding-left: 22px;
  border-left: 1px solid var(--line-soft);
}
.about-facts dt {
  color: var(--star);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
}
.about-facts dd {
  margin: 5px 0 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}
.about-legacy-link {
  margin-top: 20px !important;
  color: var(--text-muted);
  font-size: 0.88rem !important;
}
.about-origin {
  position: relative;
  padding: clamp(92px, 10vw, 144px) 0;
  border-top: 1px solid var(--line-soft);
  background:
    radial-gradient(ellipse 56% 64% at 88% 30%, rgba(255, 77, 157, 0.045), transparent 72%),
    linear-gradient(180deg, rgba(16, 22, 44, 0.2), rgba(9, 13, 28, 0));
}
.about-origin-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(52px, 8vw, 92px);
  align-items: start;
}
.about-origin-heading {
  position: sticky;
  top: 112px;
  align-self: start;
}
.about-origin-heading h2 {
  max-width: 11ch;
  margin: 0;
  color: var(--star);
  font-family: var(--display);
  font-size: clamp(2.25rem, 4.4vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.03;
}
.about-origin-heading > p {
  max-width: 34ch;
  margin: 28px 0 0;
  color: var(--text-muted);
  font-size: 1.04rem;
  line-height: 1.72;
}
.about-origin-facts {
  max-width: 360px;
  margin: 38px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-origin-facts > div {
  padding: 18px 0;
}
.about-origin-facts > div + div {
  border-top: 1px solid var(--line-soft);
}
.about-origin-facts dt {
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-origin-facts dd {
  margin: 6px 0 0;
  color: var(--star);
  font-size: 0.96rem;
  line-height: 1.45;
}
.about-origin-story {
  width: 100%;
  max-width: 650px;
  justify-self: end;
}
.about-origin-chapter {
  padding-bottom: clamp(46px, 6vw, 64px);
  border-bottom: 1px solid var(--line);
}
.about-origin-chapter + .about-origin-chapter {
  padding-top: clamp(46px, 6vw, 64px);
}
.about-origin-chapter:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.about-origin-chapter h3 {
  max-width: 24ch;
  margin: 0 0 24px;
  color: var(--star);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.16;
}
.about-origin-chapter p {
  max-width: 64ch;
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(1.01rem, 1.3vw, 1.08rem);
  line-height: 1.82;
}
.about-origin-chapter p + p {
  margin-top: 20px;
}
.about-origin-chapter .about-origin-emphasis {
  max-width: 43ch;
  margin-top: 30px;
  padding: 3px 0 3px clamp(20px, 3vw, 30px);
  border-left: 2px solid var(--neon);
  color: var(--star);
  font-family: var(--display);
  font-size: clamp(1.18rem, 2vw, 1.48rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.48;
}
.about-method {
  position: relative;
  padding: clamp(88px, 9vw, 126px) 0 clamp(96px, 10vw, 138px);
  border-top: 1px solid var(--line-soft);
  background:
    radial-gradient(ellipse 58% 85% at 12% 45%, rgba(53, 212, 232, 0.045), transparent 72%),
    linear-gradient(180deg, rgba(16, 22, 44, 0.3), rgba(9, 13, 28, 0));
}
.about-method-heading {
  max-width: 760px;
}
.about-method-heading h2 {
  max-width: 15ch;
  margin: 0;
  color: var(--star);
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
}
.about-method-heading p {
  max-width: 52ch;
  margin: 28px 0 0;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.7;
}
.about-principles {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr) minmax(0, 1.15fr);
  margin-top: clamp(54px, 7vw, 82px);
  border-top: 1px solid var(--line);
}
.about-principles article {
  padding: 28px 34px 0 0;
}
.about-principles article + article {
  padding-left: 34px;
  border-left: 1px solid var(--line-soft);
}
.about-principles h3 {
  margin: 0 0 12px;
  color: var(--neon);
  font-size: 1rem;
  font-weight: 700;
}
.about-principles p {
  max-width: 31ch;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.portrait-frame {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--night-panel);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.4);
}
.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 13, 28, 0) 55%, rgba(9, 13, 28, 0.35) 100%);
  pointer-events: none;
}
.portrait-frame img { display: block; width: 100%; height: auto; }

/* Relocation-Karte: ruhiger Instrumentenrahmen passend zur dunklen Startseite. */
.reloc-media .portrait-frame {
  isolation: isolate;
  padding: clamp(10px, 1.2vw, 16px);
  border: 1px solid transparent;
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 10%, rgba(53, 212, 232, 0.18), transparent 34%) padding-box,
    radial-gradient(circle at 90% 88%, rgba(255, 46, 136, 0.14), transparent 36%) padding-box,
    linear-gradient(145deg, #0c1530 0%, var(--night-panel) 55%, #23152e 100%) padding-box,
    linear-gradient(120deg, rgba(53, 212, 232, 0.72), rgba(255, 46, 136, 0.62)) border-box;
  box-shadow:
    0 26px 54px rgba(0, 0, 0, 0.46),
    0 0 34px rgba(53, 212, 232, 0.07),
    0 0 38px rgba(255, 46, 136, 0.05);
}
.reloc-media .portrait-frame::before,
.reloc-media .portrait-frame::after { content: none; }
.reloc-media .portrait-frame img {
  border: 0;
  border-radius: 50%;
  clip-path: circle(48.35% at 50% 50%);
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.22));
  transform: none;
  transition: none;
}

/* ---------- Newsletter ---------- */

.newsletter {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  background:
    radial-gradient(circle at 14% 0%, rgba(53, 212, 232, 0.13), transparent 34%) padding-box,
    radial-gradient(circle at 94% 100%, rgba(255, 77, 157, 0.1), transparent 36%) padding-box,
    linear-gradient(165deg, rgba(21, 29, 56, 0.9), rgba(12, 18, 38, 0.84)) padding-box,
    linear-gradient(120deg, rgba(53, 212, 232, 0.72), rgba(255, 77, 157, 0.58)) border-box;
  backdrop-filter: blur(14px);
  border: 1px solid transparent;
  border-radius: 28px;
  padding: clamp(42px, 6vw, 64px) clamp(22px, 5vw, 60px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4), inset 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.newsletter::before {
  content: "";
  position: absolute;
  top: -112px;
  right: -96px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(53, 212, 232, 0.24);
  border-radius: 50%;
  box-shadow:
    0 0 0 34px rgba(53, 212, 232, 0.035),
    0 0 0 68px rgba(255, 77, 157, 0.025);
  pointer-events: none;
}
.newsletter > * { position: relative; z-index: 1; }
.newsletter-symbol {
  margin: 0 auto 20px;
}
.newsletter:hover .newsletter-symbol,
.newsletter-symbol:hover {
  transform: translateY(-1px);
  background: linear-gradient(145deg, var(--icon-surface-strong-start), var(--icon-surface-strong-end));
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.newsletter-kicker {
  margin: 0 0 16px;
  color: var(--neon);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.newsletter h2 {
  max-width: 14ch;
  margin: 0 auto 18px;
  font-size: clamp(2rem, 4.5vw, 3rem);
}
.newsletter-copy {
  max-width: 56ch;
  margin: 0 auto;
  color: var(--text-muted);
}

.newsletter form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

.newsletter input[type="email"] {
  border-radius: 999px;
  padding: 14px 24px;
  font-family: var(--sans);
  font-size: 1rem;
  width: min(100%, 420px);
  min-width: 0;
}

.newsletter .hint { font-size: 0.82rem; color: var(--text-muted); margin-top: 18px; }

/* ---------- Fussbereich ---------- */

.site-footer {
  position: relative;
  border-top: 1px solid transparent;
  padding: 72px 0 52px;
  color: var(--text-muted);
  font-size: 0.9rem;
  background: linear-gradient(180deg, rgba(9, 13, 28, 0) 0%, rgba(16, 22, 44, 0.5) 100%);
}
/* Footer-Hairline als Neon-Verlauf statt harter Kante */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(53, 212, 232, 0.5) 30%,
    rgba(255, 46, 136, 0.4) 55%,
    rgba(53, 212, 232, 0.5) 70%,
    transparent
  );
  pointer-events: none;
}

.site-footer .wrap {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
}
.footer-brand .wordmark { font-size: 1.1rem; }
.footer-brand p { margin-top: 12px; max-width: 34ch; color: var(--text-muted); }
.footer-col h4,
.footer-col .footer-heading {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neon);
  font-weight: 600;
  margin-bottom: 14px;
}
.footer-col nav { display: flex; flex-direction: column; gap: 9px; }
.footer-col nav a { color: var(--text-muted); }
.footer-col nav a:hover { color: var(--neon); text-decoration: none; }
.footer-col nav a[aria-current="page"],
.footer-col nav a[aria-current="location"] { color: var(--neon); }

.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-nav a { color: var(--text-muted); }
.footer-nav a:hover { color: var(--neon); }
.footer-nav a[aria-current="page"],
.footer-nav a[aria-current="location"] { color: var(--neon); }

/* Social-Icons: schlichte, einfarbige Line-Piktogramme (currentColor).
   Tap-Ziel 44px, Icon ~22px. Auf allen Footer-Seiten identisch. */
.footer-social {
  display: flex;
  gap: 8px;
  align-items: center;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--text-muted);
  border: 1px solid transparent;
  border-radius: 12px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--neon);
  border-color: rgba(53, 212, 232, 0.3);
  background: rgba(53, 212, 232, 0.08);
}
.footer-social svg {
  width: 22px;
  height: 22px;
  display: block;
}

.site-footer details summary { cursor: pointer; color: var(--text-muted); }
.site-footer details summary:hover { color: var(--neon); }
.site-footer details p { margin-top: 10px; max-width: 75ch; }

/* Footer mobil: kompakt und aufgeraeumt (Betreiberin-Feedback-Update 12.07.,
   Vorbild daniel-bayer.net). Zwei schmale Linkspalten nebeneinander statt
   gestapelt, kleinere Schrift, linksbuendig, engere Abstaende. Tap-Ziele
   bleiben >=44px (Hoehe ueber min-height, nicht ueber Schrift). */
@media (max-width: 820px) {
  .site-footer { padding: 48px 0 40px; }
  .site-footer .wrap { gap: 20px; }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    padding-bottom: 18px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 48ch; }
  .footer-col .footer-heading { margin-bottom: 6px; }
  .footer-col nav { gap: 0; }
  .footer-col nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-size: 0.85rem;
  }
  .footer-nav { gap: 2px 18px; }
  .footer-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-size: 0.85rem;
  }
}

/* ---------- Scroll-Reveal ---------- */

[data-reveal] {
  opacity: 1;
  transform: none;
}
.reveal-enhanced [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-enhanced [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}
/* Gestaffeltes Einblenden benachbarter Karten */
.orte-grid > [data-reveal]:nth-child(2) { transition-delay: 0.08s; }
.orte-grid > [data-reveal]:nth-child(3) { transition-delay: 0.16s; }

/* ---------- Rechtsseiten + ueber-mich ---------- */

.legal-page { padding: 88px 0 110px; }
.legal-page .wrap { max-width: 760px; }
.legal-page h1 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--star);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 28px;
  hyphens: auto;
  overflow-wrap: anywhere;
}
.legal-page h2 { font-size: 1.25rem; margin: 40px 0 12px; scroll-margin-top: 100px; }
.legal-page h3 { font-size: 1rem; margin-bottom: 8px; color: var(--star); }
.legal-page p, .legal-page li { color: var(--text-muted); margin-bottom: 12px; }
.legal-page li strong, .legal-page p strong { color: var(--text); }
.legal-page ul { padding-left: 22px; margin-bottom: 20px; }
.legal-page address {
  color: var(--text-muted);
  font-style: normal;
}
.legal-page code {
  padding: 0.12em 0.35em;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--star);
  background: rgba(21, 29, 56, 0.72);
}
.legal-intro {
  max-width: 64ch;
  font-size: 1.08rem;
}
.legal-meta {
  margin-top: 44px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.9rem;
}
.legal-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 28px 0 10px;
  padding: 18px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.legal-toc a { color: var(--text-muted); }
.legal-toc a:hover { color: var(--neon); }
.legal-callout {
  margin: 22px 0 28px;
  padding: 20px 22px 8px;
  border-left: 3px solid var(--neon);
  background: rgba(21, 29, 56, 0.58);
}
.faq-page h2 { margin-top: 52px; }
.faq-page .faq-list { margin: 0; }

.draft-banner {
  background: rgba(53, 212, 232, 0.1);
  border: 1px solid var(--cyan);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--neon);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.newsletter-form-preview {
  width: min(100%, 420px);
  margin: 28px auto 0;
  padding: 13px 20px;
  border: 1px solid rgba(53, 212, 232, 0.32);
  border-radius: 999px;
  color: var(--star);
  background: rgba(9, 13, 28, 0.7);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.24);
}

/* ---------- Responsiv ---------- */

@media (max-width: 900px) {
  :root { --rhythm: 84px; }
  .hero-grid {
    grid-template-columns: 1fr;
    /* Handy-Test 12.07.: engerer Abstand, damit der Globus weiter oben sitzt */
    gap: 20px;
  }
  /* Handy-Feedback 12.07.: Hero-Text als abgerundete Kachel (Vorbild daniel-bayer.net,
     uebersetzt ins Glass-Tile-Vokabular der Site) - gibt der Mobilansicht oben eine
     klare Einteilung. Nur mobil; am Desktop bleibt der Hero offen. */
  .hero-copy {
    max-width: 60ch;
    border: 1px solid rgba(53, 212, 232, 0.18);
    border-radius: 24px;
    /* KEIN backdrop-filter: zusammen mit background-attachment:fixed auf .sky
       friert Chromium das Scrollen komplett ein (Compositing-Deadlock,
       diagnostiziert 12.07.). Solides rgba wirkt auf dem dunklen Grund gleich. */
    background: rgba(21, 29, 56, 0.72);
    padding: 28px 22px;
  }
  /* Handy-Feedback 12.07. (2. Runde): Header bleibt vollbreit und klebt
     buendig oben - die Kachel-Optik gilt nur fuer den Hero, nicht die Leiste. */
  /* Handy-Test 12.07.: Globus mittig statt linksbuendig */
  .hero-stage { order: 2; justify-content: center; }
  /* Handy-Test 12.07.: groesser auf schmalen Screens (vorher 62vw/max 380px) */
  .globe-stage { width: clamp(280px, 78vw, 420px); }
}

@media (max-width: 820px) {
  .about-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "heading"
      "portrait"
      "story";
    row-gap: 0;
  }
  .about-heading { padding-top: 0; }
  .about-heading h1 { font-size: clamp(2.7rem, 12vw, 4.5rem); }
  .about-intro { margin-bottom: 36px; }
  .about-visual { max-width: 520px; }
  .about-facts { max-width: 520px; }
  .about-story {
    max-width: 650px;
    margin-top: 42px;
  }
  .about-origin-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 56px;
  }
  .about-origin-heading { position: static; }
  .about-origin-heading h2 { max-width: 15ch; }
  .about-origin-heading > p { max-width: 46ch; }
  .about-origin-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 650px;
  }
  .about-origin-facts > div + div {
    padding-left: 24px;
    border-top: 0;
    border-left: 1px solid var(--line-soft);
  }
  .about-origin-story {
    max-width: 650px;
    justify-self: start;
  }
  .about-method-heading h2 { max-width: 16ch; }
  .about-principles { grid-template-columns: 1fr; }
  .about-principles article {
    padding: 24px 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .about-principles article + article {
    padding-left: 0;
    border-left: 0;
  }
  .about-principles p { max-width: 58ch; }
}

/* Mobil: Szenen + Hero NICHT pinnen — normale Bild+Text-Bloecke,
   Lesbarkeit vor Effekt. */
@media (max-width: 820px) {
  .site-header .wrap {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .site-nav {
    width: 100%;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
    padding: 2px 2px 8px;
    scrollbar-width: thin;
  }
  .site-nav a { flex: 0 0 auto; }

  .reloc-grid { grid-template-columns: 1fr; gap: 36px; }

  .hero-track { height: auto; }
  .hero-sticky {
    position: static;
    height: auto;
    min-height: 0;
    /* Handy-Feedback 12.07.: vorher 104px oben / 76px unten - dichter unter dem
       Header, und unter dem Globus nur noch kurzer Auslauf (Daniel: zu viel Luft). */
    padding: 48px 0 20px;
  }

  .scene-track { height: auto; }
  /* Handy-Feedback 12.07.: der Globus wirkte "oben schwer", weil unter ihm nur
     20px Puffer sassen, das Herzstueck-Panel seinen Text aber erst ~100px tiefer
     begann. Kleinerer Innenabstand oben + weiche Ueberblendung balancieren den
     Uebergang, ohne den Desktop (gepinnte Szene) zu beruehren. */
  .scene-sticky {
    position: static;
    height: auto;
    min-height: 0;
    padding: 40px 0 64px;
  }
  .scene-sticky::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 96px;
    z-index: 1;
    background: linear-gradient(180deg, #090d1c 0%, rgba(9, 13, 28, 0) 100%);
    pointer-events: none;
  }
  .scene-media { transform: none; }
  .finale { min-height: 0; }
}

@media (max-width: 720px) {
  .orte-countries { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  /* Zwei Linkspalten bleiben nebeneinander (kompakt), nur der Abstand ruecht enger. */
  .footer-top { gap: 10px 18px; }
  .faq-item summary {
    gap: 14px;
    padding-block: 19px;
    font-size: 1rem;
  }
  .faq-more { text-align: left; }
  .about-hero { padding-top: 58px; }
  .about-heading .kicker { margin-bottom: 16px; }
  .about-intro { margin-bottom: 28px; }
  .about-story { margin-top: 32px; padding-top: 26px; }
  .about-facts > div + div { margin-left: 16px; padding-left: 16px; }
  .about-origin { padding: 72px 0 82px; }
  .about-origin-grid { gap: 42px; }
  .about-origin-facts { grid-template-columns: minmax(0, 1fr); }
  .about-origin-facts > div + div {
    padding-left: 0;
    border-top: 1px solid var(--line-soft);
    border-left: 0;
  }
  .about-origin-chapter { padding-bottom: 40px; }
  .about-origin-chapter + .about-origin-chapter { padding-top: 40px; }
  .about-origin-chapter h3 { margin-bottom: 20px; }
  .about-method { padding-top: 72px; }
  .finale .wrap { padding-top: 64px; padding-bottom: 64px; }
  .newsletter { padding: 38px 20px; border-radius: 18px; }
  .newsletter::before { top: -80px; right: -80px; width: 170px; height: 170px; }
  .newsletter h2 { font-size: clamp(2rem, 10vw, 2.75rem); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .glass-tile, .site-nav a, .site-nav a::after, .site-header,
  .orte-card, .orte-media img, .orte-country, .country-media img,
  .planet-buehne, .planet-buehne-media img,
  .faq-item summary, .faq-item summary::after, .vorteil-chip { transition: none; }
  .reloc-media .portrait-frame { transition: none; }
  .reloc-media:hover .portrait-frame { transform: none; }
  .btn:active { transform: none; }
  .text-link { transition: none; }
  /* Kein Zoom-Zwang: Bild-Karten bleiben ruhig */
  .orte-card:hover .orte-media img,
  .orte-country:hover .country-media img,
  .planet-buehne:hover .planet-buehne-media img { transform: none; }
  .planet-buehne:hover { transform: none; box-shadow: none; }
  /* Glas-Kacheln ohne Bewegung; die statische Verlaufs-Linie bleibt */
  .glass-tile:hover { transform: none; box-shadow: none; }
  .glass-tile:hover .vorteil-chip,
  .newsletter:hover .newsletter-symbol,
  .newsletter-symbol:hover { transform: none; }
  .achsen-grid .glass-tile::after,
  .achsen-grid .axis-dial,
  .axis-dial .dial-ring,
  .axis-dial .dot-core,
  .axis-dial .dot-halo,
  .axis-dial .dot-halo2 {
    animation: none;
    transition: none;
  }
  .achsen-grid .glass-tile:hover,
  .achsen-grid .glass-tile:hover .axis-dial,
  .achsen-grid .glass-tile:hover .axis-dial:hover { transform: none; }
  .newsletter:hover .newsletter-symbol,
  .newsletter-symbol:hover { transform: none; }
  /* Alle Veredelungs-Animationen anhalten */
  .hero .kicker,
  .hero h1,
  .hero h1 .accent,
  .hero .lede,
  .hero .cta-row {
    animation: none !important;
  }
  /* Statischer Fallback-Zustand fuer den Hero-Auftritt */
  .hero .kicker,
  .hero h1,
  .hero .lede,
  .hero .cta-row {
    opacity: 1;
    transform: none;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  /* Szenen + Hero statisch lesbar: nicht pinnen, keine scroll-Choreografie */
  .hero-track,
  .scene-track { height: auto; }
  .hero-sticky {
    position: static;
    height: auto;
    min-height: 0;
    padding: 104px 0 76px;
  }
  .scene-sticky {
    position: static;
    height: auto;
    min-height: 78vh;
    padding: 80px 0;
  }
  .scene-media { transform: none; }
  .hero-grid,
  .scene-content { opacity: 1 !important; transform: none !important; }
  .scene-content [data-line] { opacity: 1 !important; transform: none !important; }
  .finale { min-height: 0; }
}

/* ---------- Mobile-Qualitaet: schmale Hochformate + kurze Querformate ---------- */

@media (max-width: 820px) {
  .site-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .hero-copy {
    min-width: 0;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 9.8vw, 2.6rem);
    /* Handy-Feedback 12.07.: lange Woerter (Astrokartographie) liefen aus der
       Hero-Kachel - deutsche Silbentrennung haelt sie im Rahmen. */
    hyphens: auto;
    overflow-wrap: break-word;
  }
}

/* Breite Smartphones liegen im Querformat oft knapp ueber dem regulaeren
   Mobile-Breakpoint. Die kurze Hoehe darf die Sticky-Buehnen nicht clippen. */
@media (orientation: landscape) and (max-height: 520px) and (max-width: 960px) {
  .hero-track,
  .scene-track {
    height: auto;
  }

  .hero-sticky {
    position: static;
    height: auto;
    min-height: 0;
    padding: 56px 0 48px;
  }

  .scene-sticky {
    position: static;
    height: auto;
    min-height: 0;
    padding: 56px 0;
  }

  .scene-media {
    transform: none;
  }

  .finale {
    min-height: 0;
  }
}
