/* =====================================================================
   MyRocketPage — Premium-Tech Dark CD
   Indigo #7C8CF8 · Electric Blue #5BA3FB · Amber #F5B544 (nur Award)
   Dark Elevation auf #0A0A0F · Geist + Inter + Geist Mono
   ===================================================================== */

:root {
  /* Elevation */
  --e0: #0A0A0F;   /* Seite */
  --e1: #111118;
  --e2: #16161F;   /* Karten */
  --e3: #1E1E2A;
  --e4: #2A2A38;

  /* Akzente */
  --indigo: #7C8CF8;
  --indigo-dk: #5C6CE0;
  --blue:   #5BA3FB;
  --amber:  #F5B544;

  /* Text */
  --tx-head: rgba(241,244,249,0.92);
  --tx-body: rgba(180,188,204,0.82);
  --tx-mut:  rgba(130,140,158,0.60);
  --tx-peak: #F1F4F9;

  /* Linien & Flächen */
  --hair:  rgba(255,255,255,0.08);
  --hair2: rgba(255,255,255,0.12);
  --glow:  0 0 48px rgba(124,140,248,0.28);
  --glow-strong: 0 0 64px rgba(124,140,248,0.42);

  --grad: linear-gradient(135deg, var(--indigo), var(--blue));

  /* Maße */
  --maxw: 1200px;
  --radius: 16px;
  --radius-sm: 10px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --text-hero: clamp(2.75rem, 7vw, 6.25rem);
  --text-h2:   clamp(1.75rem, 4vw, 3.25rem);
  --text-h3:   clamp(1.2rem, 2vw, 1.55rem);
  --text-lead: clamp(1.05rem, 1.5vw, 1.2rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce){ html { scroll-behavior: auto; } }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--e0);
  color: var(--tx-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: rgba(124,140,248,0.32); color: var(--tx-peak); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Geist', sans-serif;
  color: var(--tx-head);
  line-height: 1.06;
  letter-spacing: -0.025em;
  font-weight: 700;
}

strong { color: var(--tx-head); font-weight: 600; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

.section { padding: clamp(72px, 11vh, 140px) 0; position: relative; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--indigo);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--indigo); opacity: 0.6;
}

.section-title {
  font-size: var(--text-h2);
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  font-weight: 750;
}
.accent { color: var(--indigo); }
.gradient {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.lead { font-size: var(--text-lead); color: var(--tx-body); max-width: 640px; }

/* ===================== CUSTOM CURSOR ===================== */
#cursor, #cursor-dot { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; border-radius: 50%; mix-blend-mode: screen; }
#cursor { width: 34px; height: 34px; border: 1px solid rgba(124,140,248,0.7); transform: translate(-50%,-50%); transition: width .25s, height .25s, background .25s, border-color .25s; }
#cursor-dot { width: 5px; height: 5px; background: var(--indigo); transform: translate(-50%,-50%); }
#cursor.is-hover { width: 58px; height: 58px; background: rgba(124,140,248,0.08); border-color: var(--blue); }
@media (hover: none), (pointer: coarse) { #cursor, #cursor-dot { display: none !important; } }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Geist', sans-serif; font-weight: 600; font-size: 15px;
  padding: 14px 26px; border-radius: 999px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, border-color .3s, color .3s;
  letter-spacing: -0.01em; white-space: nowrap;
}
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* Primär: Gradient. Definierte Kante durch dunklen Rand + feine helle Innen-Hairline,
   damit sich der Button klar vom leuchtenden Planetenrand abhebt (kein 90er-Glow). */
.btn-primary {
  background: var(--grad); color: #0A0A0F;
  border-color: rgba(10,10,15,0.55);
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.25) inset,
    0 6px 20px -6px rgba(10,10,15,0.7),
    0 0 0 1px rgba(10,10,15,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.35) inset,
    0 10px 28px -8px rgba(10,10,15,0.75),
    0 0 0 1px rgba(10,10,15,0.4),
    var(--glow);
}

/* Sekundär (Ghost): abgedunkelter Blur-Hintergrund garantiert Lesbarkeit auf
   jedem Untergrund – auch über dem hellen Planetenbogen. */
.btn-ghost {
  background: rgba(10,10,15,0.55);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  backdrop-filter: blur(10px) saturate(120%);
  border-color: rgba(255,255,255,0.22);
  color: var(--tx-head);
  box-shadow: 0 6px 20px -8px rgba(10,10,15,0.6);
}
.btn-ghost:hover {
  background: rgba(10,10,15,0.68);
  border-color: var(--indigo);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(10,10,15,0.7), 0 0 0 1px rgba(124,140,248,0.25);
}

/* Dunkel: solide Karte mit klarer Kante */
.btn-dark {
  background: var(--e3); color: var(--tx-head);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 6px 18px -8px rgba(10,10,15,0.6);
}
.btn-dark:hover { background: var(--e4); border-color: var(--indigo); transform: translateY(-2px); box-shadow: 0 8px 22px -8px rgba(10,10,15,0.7), 0 0 0 1px rgba(124,140,248,0.2); }

/* ===================== NAV ===================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  transition: background .4s, backdrop-filter .4s, padding .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,15,0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  padding: 12px 32px;
  border-bottom: 1px solid var(--hair);
}
.nav__logo img { height: 30px; width: auto; }
.nav__links { display: flex; gap: 6px; list-style: none; }
.nav__links a {
  position: relative; display: flex; flex-direction: column;
  font-family: 'Geist', sans-serif; font-weight: 500; font-size: 14.5px;
  color: var(--tx-body); padding: 8px 14px; border-radius: 8px;
  transition: color .25s, background .25s;
}
.nav__links a span { font-family: 'Geist Mono', monospace; font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--tx-mut); margin-top: 1px; transition: color .25s; }
.nav__links a:hover { color: var(--tx-head); background: rgba(255,255,255,0.04); }
.nav__links a:hover span { color: var(--indigo); }
.nav__cta { padding: 11px 22px; font-size: 14.5px; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__burger span { width: 24px; height: 2px; background: var(--tx-head); border-radius: 2px; transition: .3s; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(10,10,15,0.97); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 6px;
  transform: translateY(-100%); transition: transform .5s var(--ease); padding: 40px;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { font-family: 'Geist', sans-serif; font-weight: 600; font-size: 1.6rem; color: var(--tx-head); display: flex; flex-direction: column; align-items: center; padding: 10px; }
.mobile-menu a span { font-family: 'Geist Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--tx-mut); margin-top: 2px; }
/* CTA-Button im Mobile-Menü: großzügiger Innenabstand, Text klebt nicht am Rand */
.mobile-menu a.btn { flex-direction: row; padding: 16px 40px; font-size: 1.05rem; align-self: center; width: auto; min-width: 240px; justify-content: center; }
.mobile-menu .close { position: absolute; top: 24px; right: 28px; font-size: 2.4rem; background: none; border: none; color: var(--tx-head); cursor: pointer; line-height: 1; }

/* ===================== HERO (Scroll-Reise) ===================== */
.hero { position: relative; height: 380vh; }            /* gepinnte Strecke */
.hero__stage {
  position: sticky; top: 0; height: 100svh; min-height: 600px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}

/* Layer-Basis */
.hero__layer { position: absolute; inset: 0; will-change: transform, opacity; }
.hero__layer img { width: 100%; height: 100%; object-fit: cover; }

/* Hintergrund-Sternfeld (statisch, ganz hinten) */
.hero__sky {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 700px at 50% 120%, rgba(124,140,248,0.10), transparent 60%),
    var(--e0);
}

/* Planet-Szene: das Foto mit dem Planeten-Bogen unten */
.hero__planet { z-index: 2; }
.hero__planet picture, .hero__planet img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__planet img { object-fit: cover; object-position: center bottom; }

/* Galaxie-Frame: erscheint in der letzten Phase. Bild MUSS immer den ganzen
   Viewport decken (kein schwarzer Rand auf iPhone 16 Pro Max o. Ä.). */
.hero__galaxy { z-index: 1; opacity: 0; transform: scale(1.15); background: var(--e0); }
.hero__galaxy picture, .hero__galaxy img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__galaxy img { object-fit: cover; object-position: center center; }

/* Rakete */
.hero__rocket {
  z-index: 4; display: flex; align-items: flex-end; justify-content: center;
  pointer-events: none;
}
.hero__rocket img { width: clamp(104px, 12.5vw, 168px); height: auto; object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(91,163,251,0.45)); }

/* Vignette für Lesbarkeit des Texts */
.hero__veil {
  position: absolute; inset: 0; z-index: 5; pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 30%, transparent 30%, rgba(10,10,15,0.55) 100%),
    linear-gradient(180deg, rgba(10,10,15,0.55) 0%, transparent 28%, transparent 60%, rgba(10,10,15,0.4) 100%);
}

.hero__content {
  position: relative; z-index: 6; text-align: center; max-width: 880px;
  padding-inline: 24px; will-change: transform, opacity;
}
.hero__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Geist Mono', monospace; font-size: 12.5px; letter-spacing: 0.06em;
  color: var(--tx-body); background: rgba(255,255,255,0.04);
  border: 1px solid var(--hair); border-radius: 999px; padding: 7px 16px; margin-bottom: 26px;
}
.hero__kicker .stars { color: var(--amber); letter-spacing: 1px; }
.hero h1 { font-size: var(--text-hero); font-weight: 800; letter-spacing: -0.04em; line-height: 1.02; margin-bottom: 24px; }
.hero .subline { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--tx-body); max-width: 660px; margin: 0 auto 34px; line-height: 1.6; }
.hero__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 34px; }
.hero__kicker-txt { letter-spacing: 0.04em; }
.nowrap { white-space: nowrap; }
.hero__trustline { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; font-family: 'Geist Mono', monospace; font-size: 12px; letter-spacing: 0.04em; color: var(--tx-body); }
.hero__trustline span { display: inline-flex; align-items: center; }
.hero__trustline span::before { content: ""; }

/* Award-Badge im Hero */
.hero__award { position: absolute; z-index: 7; top: 110px; right: 40px; width: 84px; opacity: 0.9; transition: transform .4s var(--ease), opacity .4s; }
.hero__award img { width: 100%; }
.hero__award:hover { transform: rotate(-6deg) scale(1.05); opacity: 1; }

/* Zweite Szene */
.hero__scene2 {
  position: absolute; z-index: 6; text-align: center; max-width: 720px; padding-inline: 24px;
  opacity: 0; transform: translateY(40px); will-change: transform, opacity;
  /* Rein dekorative Szene – darf die Hero-Buttons darunter NICHT blockieren. */
  pointer-events: none;
}
.hero__scene2 h2 { font-size: clamp(2rem, 5vw, 3.6rem); margin-bottom: 14px; text-shadow: 0 2px 30px rgba(10,10,15,0.85); }
.hero__scene2 p { color: var(--tx-head); font-size: 1.12rem; text-shadow: 0 1px 18px rgba(10,10,15,0.9); }
/* dezenter, lesbarer Backdrop hinter Szene-2-Text */
.hero__scene2::before {
  content: ""; position: absolute; inset: -10% -8%; z-index: -1;
  background: radial-gradient(60% 60% at 50% 45%, rgba(10,10,15,0.62), transparent 75%);
  filter: blur(4px); pointer-events: none;
}
/* Scroll-Indikator: weiße vertikale Linie mit durchlaufendem Punkt + Label */
.hero__scroll {
  position: absolute; z-index: 6; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
  text-decoration: none; opacity: 0.9; transition: opacity .3s var(--ease);
}
.hero__scroll:hover { opacity: 1; }
/* Scroll-Hinweis INNERHALB der zweiten Szene: relativ, mittig unter dem Text */
.hero__scroll--scene2 {
  position: relative; bottom: auto; left: auto; transform: none;
  margin: 28px auto 0; pointer-events: auto;
}
.hero__scroll-track {
  position: relative; display: block; width: 1px; height: 46px;
  background: linear-gradient(180deg, rgba(255,255,255,0.75), rgba(255,255,255,0.12));
  overflow: hidden;
}
.hero__scroll-dot {
  position: absolute; top: 0; left: 50%; width: 3px; height: 3px; margin-left: -1.5px;
  border-radius: 50%; background: #fff;
  box-shadow: 0 0 6px rgba(255,255,255,0.9);
  animation: scrollRun 1.9s var(--ease) infinite;
}
.hero__scroll-label {
  font-family: 'Geist Mono', monospace; font-size: 10.5px; text-transform: uppercase;
  letter-spacing: 0.22em; color: #fff; text-shadow: 0 1px 10px rgba(10,10,15,0.8);
}
@keyframes scrollRun {
  0%   { transform: translateY(-6px); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(46px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll-dot { animation: none; top: 4px; opacity: 0.9; }
}

/* ===================== PROBLEM ===================== */
.problem { background: var(--e0); }
.problem__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; margin-top: 48px; align-items: start; }
.problem__list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.problem__list li { position: relative; padding-left: 38px; color: var(--tx-body); line-height: 1.6; }
.problem__list li::before { content: ""; position: absolute; left: 0; top: 6px; width: 18px; height: 18px; border-radius: 50%; border: 1px solid rgba(245,181,68,0.5); background: radial-gradient(circle at 50% 50%, rgba(245,181,68,0.25), transparent 70%); }
.problem__card { background: var(--e2); border: 1px solid var(--hair); border-radius: var(--radius); padding: 36px; position: relative; overflow: hidden; }
.problem__card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--grad); }
.problem__card-label { font-family: 'Geist Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--indigo); margin-bottom: 14px; }
.problem__card h3 { font-size: var(--text-h3); margin-bottom: 14px; }
.problem__card p { color: var(--tx-body); margin-bottom: 14px; }
.problem__card-proof { color: var(--tx-head); font-weight: 500; border-top: 1px solid var(--hair); padding-top: 16px; }

/* ===================== SOLUTION ===================== */
.solution { background: var(--e1); }
.solution__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 54px; }
.sol-card { background: var(--e2); border: 1px solid var(--hair); border-radius: var(--radius); padding: 28px 24px; transition: transform .4s var(--ease), border-color .4s, background .4s; }
.sol-card:hover { transform: translateY(-6px); border-color: rgba(124,140,248,0.4); background: var(--e3); }
.sol-card__step { font-family: 'Geist Mono', monospace; font-size: 14px; color: var(--indigo); margin-bottom: 18px; }
.sol-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.sol-card p { color: var(--tx-body); font-size: 0.96rem; line-height: 1.6; }

/* ===================== IMPACT ===================== */
.impact { background: var(--e0); position: relative; overflow: hidden; }
.impact__bg { position: absolute; inset: 0; background: radial-gradient(900px 500px at 50% 0%, rgba(124,140,248,0.10), transparent 60%); pointer-events: none; }
.impact__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 54px; }
.impact__item { text-align: center; padding: 32px 18px; border: 1px solid var(--hair); border-radius: var(--radius); background: rgba(22,22,31,0.6); }
.impact__num { font-family: 'Geist', sans-serif; font-weight: 800; font-size: clamp(2.2rem, 4vw, 3.2rem); letter-spacing: -0.03em; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.impact__label { color: var(--tx-body); font-size: 0.92rem; margin-top: 10px; line-height: 1.5; }

/* ===================== MISSIONS ===================== */
.missions { background: var(--e1); }
.missions__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 54px; }
.mission-tile { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--hair); aspect-ratio: 16/10; background: var(--e2); cursor: pointer; }
.mission-tile video, .mission-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.mission-tile__poster { z-index: 1; }
.mission-tile video { z-index: 2; opacity: 0; transition: opacity .4s var(--ease); }
.mission-tile.playing video { opacity: 1; }
.mission-tile:hover .mission-tile__poster, .mission-tile:hover video { transform: scale(1.06); }
.mission-tile__overlay { position: absolute; inset: 0; z-index: 3; display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; background: linear-gradient(180deg, transparent 40%, rgba(10,10,15,0.85)); }
.mission-tile__cat { font-family: 'Geist Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--blue); margin-bottom: 6px; }
.mission-tile__title { font-family: 'Geist', sans-serif; font-weight: 650; color: var(--tx-peak); font-size: 1.1rem; }
.missions__note { text-align: center; color: var(--tx-mut); font-size: 0.9rem; margin-top: 28px; }

/* ===================== PRICING ===================== */
.pricing { background: var(--e0); }
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 54px; align-items: stretch; }
.plan { background: var(--e2); border: 1px solid var(--hair); border-radius: var(--radius); padding: 34px 28px; display: flex; flex-direction: column; transition: transform .4s var(--ease), border-color .4s; }
.plan:hover { transform: translateY(-5px); border-color: var(--hair2); }
.plan--featured { background: var(--e2); border-color: rgba(124,140,248,0.5); box-shadow: var(--glow); position: relative; }
.plan--featured::before { content: ""; position: absolute; inset: -1px; border-radius: var(--radius); padding: 1px; background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; opacity: 0.6; }
.plan__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #0A0A0F; font-family: 'Geist Mono', monospace; font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; padding: 5px 14px; border-radius: 999px; white-space: nowrap; }
.plan__name { font-family: 'Geist', sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--tx-head); }
.plan__for { color: var(--tx-mut); font-size: 0.9rem; margin-top: 4px; margin-bottom: 22px; }
.plan__price { font-family: 'Geist', sans-serif; font-weight: 800; font-size: 2.6rem; color: var(--tx-peak); letter-spacing: -0.03em; }
.plan__price small { font-size: 1rem; font-weight: 500; color: var(--tx-mut); letter-spacing: 0; }
/* Orbit: textueller Preis („Individuell“) kleiner, damit der Zusatz sauber daneben passt */
.plan__price--text { font-size: 1.9rem; }
.plan__price--text small { display: inline; white-space: nowrap; }
.plan__note { color: var(--tx-mut); font-size: 0.82rem; margin-top: 4px; margin-bottom: 24px; }
.plan__features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex: 1; }
.plan__features li { position: relative; padding-left: 28px; color: var(--tx-body); font-size: 0.95rem; line-height: 1.5; }
.plan__features li::before { content: ""; position: absolute; left: 0; top: 3px; width: 16px; height: 16px; border-radius: 50%; background: rgba(124,140,248,0.14); border: 1px solid rgba(124,140,248,0.4); }
.plan__features li::after { content: ""; position: absolute; left: 5px; top: 7px; width: 6px; height: 3px; border-left: 1.5px solid var(--indigo); border-bottom: 1.5px solid var(--indigo); transform: rotate(-45deg); }
.pricing__guarantee { text-align: center; color: var(--tx-body); margin-top: 36px; font-size: 0.95rem; }

/* ===================== COUNTDOWN ===================== */
.countdown { background: var(--e1); }
.countdown__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 54px; }
.step { background: var(--e2); border: 1px solid var(--hair); border-radius: var(--radius); padding: 32px 28px; position: relative; overflow: hidden; }
.step__num { position: absolute; top: 14px; right: 22px; font-family: 'Geist', sans-serif; font-weight: 800; font-size: 4.5rem; color: rgba(124,140,248,0.10); line-height: 1; }
.step__t { font-family: 'Geist Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--blue); margin-bottom: 14px; }
.step h3 { font-size: var(--text-h3); margin-bottom: 10px; }
.step p { color: var(--tx-body); font-size: 0.96rem; margin-bottom: 18px; }
.step__free { display: inline-block; font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: 0.06em; color: var(--indigo); background: rgba(124,140,248,0.12); border: 1px solid rgba(124,140,248,0.3); padding: 5px 12px; border-radius: 999px; }

/* ===================== TESTIMONIALS ===================== */
.testimonials { background: var(--e0); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 54px; }
.testi { background: var(--e2); border: 1px solid var(--hair); border-radius: var(--radius); padding: 30px 28px; }
.testi__stars { color: var(--amber); letter-spacing: 2px; margin-bottom: 16px; }
.testi p { color: var(--tx-body); line-height: 1.6; margin-bottom: 22px; font-size: 0.98rem; }
.testi__author { display: flex; align-items: center; gap: 14px; }
.testi__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad); color: #0A0A0F; font-family: 'Geist', sans-serif; font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; }
.testi__name { font-family: 'Geist', sans-serif; font-weight: 600; color: var(--tx-head); font-size: 0.95rem; }
.testi__role { color: var(--tx-mut); font-size: 0.82rem; }

/* ===================== CREW ===================== */
.crew { background: var(--e1); }
.crew__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 54px; }
.crew-member { text-align: center; }
.crew-member__photo { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--hair); filter: grayscale(0.3) brightness(0.92); transition: filter .4s, transform .4s var(--ease); background: var(--e2); }
.crew-member:hover .crew-member__photo { filter: grayscale(0) brightness(1); transform: translateY(-4px); }
.crew-member h3 { margin-top: 16px; font-size: 1.1rem; }
.crew-member span { color: var(--indigo); font-family: 'Geist Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; }

/* ===================== FAQ ===================== */
.faq { background: var(--e0); }
.faq__list { max-width: 820px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--e2); border: 1px solid var(--hair); border-radius: var(--radius-sm); overflow: hidden; transition: border-color .3s; }
.faq-item.open { border-color: rgba(124,140,248,0.4); }
.faq-item__q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 26px; font-family: 'Geist', sans-serif; font-weight: 600; font-size: 1.05rem; color: var(--tx-head); display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.faq-item .plus { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq-item .plus::before, .faq-item .plus::after { content: ""; position: absolute; background: var(--indigo); border-radius: 2px; transition: transform .3s var(--ease); }
.faq-item .plus::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-item .plus::after { top: 0; left: 7px; width: 2px; height: 16px; }
.faq-item.open .plus::after { transform: rotate(90deg); opacity: 0; }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-item__a p { padding: 0 26px 24px; color: var(--tx-body); line-height: 1.65; }

/* ===================== FINAL / KONTAKT ===================== */
.final { background: var(--e1); position: relative; overflow: hidden; }
.final__stars { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.6; pointer-events: none; }
.final .container { position: relative; z-index: 2; }
.final h2 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; letter-spacing: -0.04em; margin-bottom: 16px; }
.final > .container > div:first-child p { color: var(--tx-body); max-width: 580px; margin: 0 auto 48px; font-size: 1.1rem; }
.contact__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; max-width: 980px; margin-inline: auto; }
.contact__info h3 { font-size: var(--text-h3); margin-bottom: 14px; }
.contact__info p { color: var(--tx-body); margin-bottom: 28px; }
.contact__detail { display: flex; align-items: center; gap: 12px; color: var(--tx-body); margin-bottom: 16px; font-size: 0.95rem; }
.contact__detail svg { width: 20px; height: 20px; fill: none; stroke: var(--indigo); stroke-width: 1.6; flex-shrink: 0; }

.form { background: var(--e2); border: 1px solid var(--hair); border-radius: var(--radius); padding: 34px; }
.form__row { margin-bottom: 18px; display: flex; flex-direction: column; gap: 7px; }
.form label { font-family: 'Geist', sans-serif; font-weight: 500; font-size: 0.88rem; color: var(--tx-head); }
.form input, .form select { background: var(--e0); border: 1px solid var(--hair2); border-radius: var(--radius-sm); padding: 13px 15px; color: var(--tx-head); font-family: inherit; font-size: 0.95rem; transition: border-color .25s, box-shadow .25s; }
.form input:focus, .form select:focus { outline: none; border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(124,140,248,0.18); }
.form select { appearance: none; cursor: pointer; }
.form__consent { display: flex; gap: 10px; align-items: flex-start; font-weight: 400 !important; font-size: 0.85rem !important; color: var(--tx-body) !important; margin-bottom: 22px; line-height: 1.5; }
.form__consent input { margin-top: 3px; flex: 0 0 auto; accent-color: var(--indigo); }
.form__consent-txt { flex: 1 1 auto; display: block; }
.form__consent a { color: var(--indigo); text-decoration: underline; }
.form .btn { width: 100%; justify-content: center; }
.form__status { margin-top: 16px; font-size: 0.9rem; text-align: center; }
.form__status.ok { color: var(--blue); }
.form__status.err { color: var(--amber); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ===================== FOOTER ===================== */
.footer { background: var(--e0); border-top: 1px solid var(--hair); padding: 64px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
.footer__logo img { height: 32px; margin-bottom: 16px; }
.footer__logo p { color: var(--tx-mut); font-size: 0.9rem; line-height: 1.6; max-width: 320px; }
.footer h4 { font-family: 'Geist', sans-serif; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--tx-head); margin-bottom: 16px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a, .footer ul li { color: var(--tx-mut); font-size: 0.92rem; transition: color .25s; }
.footer ul a:hover { color: var(--indigo); }
.footer__bottom { border-top: 1px solid var(--hair); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--tx-mut); font-size: 0.82rem; font-family: 'Geist Mono', monospace; letter-spacing: 0.02em; }

/* ===================== REVEAL ===================== */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }

/* ===================== PRICING-MODELL-HINWEIS ===================== */
.pricing__model {
  max-width: 760px; margin: 26px auto 0;
  background: rgba(124,140,248,0.07); border: 1px solid rgba(124,140,248,0.28);
  border-radius: var(--radius); padding: 20px 26px;
}
.pricing__model span { color: var(--tx-body); font-size: 0.98rem; line-height: 1.6; }
.pricing__model strong { color: var(--tx-head); }

/* ===================== BLOG-TEASER (Swipe-Karussell) ===================== */
.blogteaser { background: var(--e0); }
.blogteaser__rail {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 1fr);
  gap: 22px; margin-top: 54px;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  overscroll-behavior-x: contain;
  scrollbar-width: thin; scrollbar-color: var(--e4) transparent;
  padding-bottom: 14px;
}
.blogteaser__rail::-webkit-scrollbar { height: 6px; }
.blogteaser__rail::-webkit-scrollbar-thumb { background: var(--e4); border-radius: 999px; }
.blogteaser__rail::-webkit-scrollbar-track { background: transparent; }
@media (min-width: 1025px) {
  .blogteaser__rail {
    grid-auto-flow: row;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-columns: auto;
    overflow: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }
}

.blog-card {
  scroll-snap-align: start;
  display: flex; flex-direction: column;
  background: var(--e2); border: 1px solid var(--hair); border-radius: var(--radius);
  overflow: hidden; transition: transform .4s var(--ease), border-color .4s;
  min-height: 100%;
}
.blog-card:hover { transform: translateY(-6px); border-color: rgba(124,140,248,0.4); }
.blog-card__media { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--e3); }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.blog-card:hover .blog-card__media img { transform: scale(1.05); }
.blog-card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.blog-card__cats { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.blog-card__cat { font-family: 'Geist Mono', monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--indigo); background: rgba(124,140,248,0.12); border: 1px solid rgba(124,140,248,0.3); padding: 3px 9px; border-radius: 999px; }
.blog-card__title { font-family: 'Geist', sans-serif; font-weight: 650; font-size: 1.18rem; color: var(--tx-head); line-height: 1.25; margin-bottom: 10px; }
.blog-card__desc { color: var(--tx-body); font-size: 0.94rem; line-height: 1.55; margin-bottom: 18px; flex: 1; }
.blog-card__meta { display: flex; align-items: center; gap: 12px; font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--tx-mut); letter-spacing: 0.03em; }
.blog-card__more { color: var(--indigo); font-family: 'Geist', sans-serif; font-weight: 600; font-size: 0.92rem; margin-left: auto; display: inline-flex; align-items: center; gap: 6px; }
.blogteaser__hint { text-align: center; color: var(--tx-mut); font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: 0.06em; margin-top: 16px; }
@media (min-width: 1025px) { .blogteaser__hint { display: none; } }
.blogteaser__foot { text-align: center; margin-top: 36px; }

/* ===================== STICKY-CTA (mobil/tablet) ===================== */
/* Progressiver Blur-Schleier am unteren Viewport-Rand.
   Mehrere gestapelte Layer mit steigender Blur-Stärke + Mask-Verlauf erzeugen
   einen echten weichen Übergang: ganz unten am stärksten unscharf, nach oben
   wird der Inhalt zunehmend scharf. Liegt unter dem Sticky-CTA (z-index). */
.sticky-veil {
  position: fixed; left: 0; right: 0; bottom: 0; height: 150px;
  z-index: 1040; pointer-events: none;
  opacity: 0; transition: opacity .4s var(--ease);
}
.sticky-veil::before,
.sticky-veil::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
}
/* Layer 1: leichte Unschärfe, reicht weiter nach oben */
.sticky-veil::before {
  height: 150px;
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  -webkit-mask-image: linear-gradient(to top, #000 0%, #000 30%, transparent 100%);
  mask-image: linear-gradient(to top, #000 0%, #000 30%, transparent 100%);
}
/* Layer 2: starke Unschärfe + dunkler Verlauf nur am unteren Rand */
.sticky-veil::after {
  height: 96px;
  -webkit-backdrop-filter: blur(9px); backdrop-filter: blur(9px);
  background: linear-gradient(to top, rgba(10,10,15,0.78) 0%, rgba(10,10,15,0.30) 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, #000 0%, #000 25%, transparent 100%);
  mask-image: linear-gradient(to top, #000 0%, #000 25%, transparent 100%);
}
.sticky-veil.show { opacity: 1; }
@media (min-width: 1025px) { .sticky-veil { display: none; } }

.sticky-cta {
  position: fixed; left: 50%; bottom: 18px; z-index: 1050;
  transform: translate(-50%, 140%);
  display: none; align-items: center; gap: 10px;
  background: var(--grad); color: #0A0A0F;
  font-family: 'Geist', sans-serif; font-weight: 700; font-size: 15px;
  padding: 14px 26px; border-radius: 999px;
  box-shadow: 0 10px 34px rgba(10,10,15,0.5), var(--glow);
  transition: transform .45s var(--ease), opacity .3s; opacity: 0;
  white-space: nowrap;
}
.sticky-cta.show { transform: translate(-50%, 0); opacity: 1; }
.sticky-cta__icon { font-size: 17px; }
@media (max-width: 1024px) { .sticky-cta { display: inline-flex; } }
@media (prefers-reduced-motion: reduce) { .sticky-cta { transition: opacity .2s; } }

/* ===================== NAV „MEHR“-Dropdown ===================== */
.nav__more { position: relative; }
.nav__more-btn {
  display: flex; flex-direction: column; align-items: flex-start;
  background: none; border: none; cursor: pointer;
  font-family: 'Geist', sans-serif; font-weight: 500; font-size: 14.5px;
  color: var(--tx-body); padding: 8px 14px; border-radius: 8px;
  transition: color .25s, background .25s;
}
.nav__more-btn span { font-family: 'Geist Mono', monospace; font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--tx-mut); margin-top: 1px; transition: color .25s; }
.nav__more-btn:hover, .nav__more.open .nav__more-btn { color: var(--tx-head); background: rgba(255,255,255,0.04); }
.nav__more-pop {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 220px;
  background: rgba(16,16,24,0.96); backdrop-filter: blur(16px);
  border: 1px solid var(--hair); border-radius: 12px; padding: 8px;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  box-shadow: 0 18px 44px rgba(0,0,0,0.45);
}
.nav__more.open .nav__more-pop { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__more-pop a { display: block; padding: 10px 14px; border-radius: 8px; font-family: 'Geist', sans-serif; font-weight: 500; font-size: 14px; color: var(--tx-body); transition: color .2s, background .2s; }
.nav__more-pop a:hover { color: var(--tx-head); background: rgba(124,140,248,0.12); }
/* Standard (Desktop): vollständige Linkliste sichtbar, „Mehr“ versteckt */
.nav__more, .nav__more-only { display: none; }
.nav__links > li:not(.nav__more-only):not(.nav__more) { display: block; }
@media (min-width: 1025px) { .nav__more-only { display: block; } }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .solution__grid, .impact__grid, .crew__grid { grid-template-columns: repeat(2, 1fr); }
  .missions__grid, .pricing__grid, .countdown__steps, .testimonials__grid { grid-template-columns: 1fr; }
  .problem__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__award { top: 88px; right: 20px; width: 64px; }
}

/* TABLET-TIER (701–1024px, z. B. iPad quer): Top-Links + „Mehr“-Dropdown
   statt reinem Burger – verhindert Überlagerung der Navigation. */
@media (min-width: 701px) and (max-width: 1024px) {
  .nav__links { display: flex; }
  .nav__more { display: block; }
  .nav__more-only { display: none; }
  .nav__links a { font-size: 14px; padding: 8px 11px; }
  .nav__more-btn { font-size: 14px; padding: 8px 11px; }
  .nav__cta { display: inline-flex; padding: 10px 16px; font-size: 13.5px; }
  .nav__burger { display: none; }
}

/* MOBILE-TIER (≤700px): nur Burger */
@media (max-width: 700px) {
  .nav__links { display: none; }
  .nav__more { display: none; }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .nav { padding: 14px 20px; }
  .nav.scrolled { padding: 10px 20px; }
  .section { padding: 64px 0; }
  .solution__grid, .impact__grid, .crew__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { height: 360vh; }
  /* Hero-Inhalt etwas höher setzen, damit die Trust-Zeile nicht auf der
     hellen Planetenkante „klebt“ und unlesbar wird. */
  .hero__content { transform: translateY(-7vh); }
  .hero__trustline { gap: 14px; font-size: 11px; color: var(--tx-head); }
  .hero__trustline span { text-shadow: 0 1px 14px rgba(10,10,15,0.95), 0 0 4px rgba(10,10,15,0.8); }
  .hero__award { display: none; }
  .footer__bottom { flex-direction: column; }
  .blogteaser__rail { grid-auto-columns: 85%; }
}

/* ===================== REDUCED MOTION ===================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero { height: 100svh; }
  .hero__stage { position: relative; }
  .hero__galaxy { display: none; }
  .hero__rocket { display: none; }
}

/* =====================================================================
   BOOSTER-RAKETE — Sticky-Scroll-Zündung (#launch)
   ===================================================================== */
.launch{
  position: relative;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(124,140,248,.10), transparent 60%),
    var(--e0);
  /* Scroll-Höhe = so viel Weg, wie die Timeline zum Abspielen braucht */
  height: 320vh;
}
.launch__pin{
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.launch__stage{
  position: relative;
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
  padding: 0 24px;
  text-align: center;
}
.launch__intro{ margin-bottom: 8px; }
.launch__intro .section-title{ margin-top: 8px; }

/* Szene: quadratische Bühne für Rakete + Booster */
.launch__scene{
  position: relative;
  width: min(560px, 88vw);
  height: min(560px, 62svh);
  margin: 28px auto 0;
}

/* Startrampe / Boden */
.launch__pad{
  position: absolute;
  left: 50%;
  bottom: 6%;
  transform: translateX(-50%);
  width: 190px;
  height: 14px;
  border-radius: 40px;
  background: linear-gradient(180deg, #2A2A38, #14141C);
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
  z-index: 1;
}
.launch__pad::before{
  content:"";
  position:absolute; left:50%; top:-6px;
  transform: translateX(-50%);
  width: 120px; height: 8px; border-radius: 40px;
  background: rgba(124,140,248,.25);
}

/* Rakete */
.launch__rocket{
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translate(-50%, 0);
  z-index: 3;
  will-change: transform;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,.45));
}
.launch__rocket svg{ display:block; width: clamp(84px, 16vw, 120px); height:auto; }

/* Booster-Karten */
.booster{
  position: absolute;
  z-index: 2;
  width: clamp(148px, 26vw, 190px);
  padding: 14px 16px;
  text-align: left;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(30,30,42,.82), rgba(16,16,22,.82));
  border: 1px solid rgba(124,140,248,.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 34px rgba(0,0,0,.42);
  will-change: transform, opacity;
  opacity: 0;
}
.booster__num{
  display:inline-block;
  font-family: var(--font-mono, monospace);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--indigo);
  margin-bottom: 4px;
}
.booster strong{ display:block; font-size: 1.05rem; color: #F1F4F9; margin-bottom: 4px; }
.booster__txt{ display:block; font-size: .82rem; line-height:1.4; color: rgba(241,244,249,.72); }

/* Andock-Positionen (relativ zur Rakete in der Mitte) */
.booster--tl{ left: 0;   top: 6%;  }
.booster--tr{ right: 0;  top: 6%;  }
.booster--bl{ left: 0;   top: 46%; }
.booster--br{ right: 0;  top: 46%; }

/* Feuer: sitzt an der Düse INNERHALB der Rakete und fliegt mit ihr mit */
.launch__flame{
  position: absolute;
  left: 50%;
  bottom: -6px;               /* an der Düse unten */
  transform: translateX(-50%);
  z-index: -1;                /* hinter dem Rumpf */
  opacity: 0;                 /* per GSAP eingeblendet */
  will-change: opacity, transform;
  pointer-events: none;
}
.flame{
  position:absolute; left:50%; bottom:0; transform: translateX(-50%);
  border-radius: 50% 50% 46% 46%;
  filter: blur(1px);
}
.flame--core{ width: 20px; height: 62px; background: linear-gradient(180deg,#FFF6D6,#F5B544 55%,#F58544); }
.flame--mid{  width: 34px; height: 84px; background: linear-gradient(180deg,rgba(245,181,68,.85),rgba(245,133,68,.35)); }
.flame--outer{width: 54px; height: 106px; background: linear-gradient(180deg,rgba(124,140,248,.55),rgba(91,163,251,.05)); }

/* Rauch: gewaltige Wolke beim Start – füllt fast den halben Bildschirm,
   viele Kugeln, verflüchtigt sich langsam. */
.launch__smoke{
  position:absolute; left:50%; bottom:0;
  transform: translateX(-50%);
  width: min(760px, 96vw); height: min(420px, 46svh);
  z-index: 2;
  pointer-events:none;
  opacity: 0;                 /* per GSAP eingeblendet */
  will-change: opacity;
}
.smoke{
  position:absolute; bottom:0; left:50%;
  border-radius:50%;
  background: radial-gradient(circle, rgba(210,215,234,.60), rgba(206,211,230,0) 70%);
  opacity: 0;
}
/* Untere, breite Basis-Wolke */
.smoke--1{ width:150px; height:150px; margin-left:-230px; bottom:-10px; }
.smoke--2{ width:180px; height:180px; margin-left: 120px; bottom:-16px; }
.smoke--3{ width:220px; height:220px; margin-left:-70px; bottom:-30px; }
.smoke--4{ width:130px; height:130px; margin-left: 210px; bottom:-4px; }
.smoke--5{ width:160px; height:160px; margin-left:-170px; bottom:10px; }
.smoke--6{ width:200px; height:200px; margin-left: 30px; bottom:-12px; }
.smoke--7{ width:120px; height:120px; margin-left: 170px; bottom:30px; }
.smoke--8{ width:140px; height:140px; margin-left:-30px; bottom:40px; }
/* Mittlere Schicht – füllt die Breite */
.smoke--9{  width:170px; height:170px; margin-left:-300px; bottom:20px; }
.smoke--10{ width:190px; height:190px; margin-left: 220px; bottom:24px; }
.smoke--11{ width:150px; height:150px; margin-left:-120px; bottom:70px; }
.smoke--12{ width:175px; height:175px; margin-left: 90px; bottom:80px; }
.smoke--13{ width:130px; height:130px; margin-left:-250px; bottom:90px; }
.smoke--14{ width:145px; height:145px; margin-left: 260px; bottom:64px; }
/* Obere, aufsteigende Kräusel */
.smoke--15{ width:110px; height:110px; margin-left:-60px; bottom:130px; }
.smoke--16{ width:125px; height:125px; margin-left: 40px; bottom:150px; }
.smoke--17{ width:95px;  height:95px;  margin-left:-180px; bottom:120px; }
.smoke--18{ width:100px; height:100px; margin-left: 150px; bottom:140px; }

/* Enthüllungstext hinter dem Rauch – erscheint nach dem Start */
.launch__reveal{
  position:absolute; inset:0; display:grid; place-items:center;
  z-index: 1;                 /* hinter dem Rauch (z-index:2), vor dem Boden */
  opacity: 0;                 /* per GSAP eingeblendet */
  pointer-events:none;
  will-change: opacity, transform;
}
.launch__reveal-title{
  font-size: clamp(1.9rem, 5.2vw, 3.6rem);
  line-height: 1.08; font-weight: 800; letter-spacing: -0.01em;
  max-width: 16ch; margin: 0 auto;
  text-shadow: 0 2px 30px rgba(10,10,15,0.8);
}

/* Live-Flammen-Flackern (nur wenn aktiv via .is-igniting) */
.launch__flame.is-igniting .flame{ animation: flicker .12s infinite alternate; }
@keyframes flicker{ from{ transform: translateX(-50%) scaleY(.92);} to{ transform: translateX(-50%) scaleY(1.08);} }

/* --- Mobile: Booster gestapelt näher an die Rakete --- */
@media (max-width: 720px){
  .launch{ height: 300vh; }
  .launch__scene{ width: 100%; max-width: 420px; height: 58svh; margin-inline:auto; }
  .booster{ width: clamp(120px, 40vw, 160px); padding: 10px 12px; }
  .booster strong{ font-size: .96rem; }
  .booster__txt{ font-size: .74rem; }
  .booster--tl{ left: 0; top: 2%; }
  .booster--tr{ right: 0; top: 2%; }
  .booster--bl{ left: 0; top: 52%; }
  .booster--br{ right: 0; top: 52%; }
}

/* --- Reduced Motion: statische, angedockte Endansicht, kein Start --- */
@media (prefers-reduced-motion: reduce){
  .launch{ height: auto; }
  .launch__pin{ position: static; height: auto; padding: 80px 0; overflow: visible; }
  .booster{ opacity: 1 !important; transform: none !important; }
  .booster--tl,.booster--tr,.booster--bl,.booster--br{
    position: static; width:auto; margin: 10px auto; display:inline-block;
  }
  .launch__scene{ height:auto; }
  .launch__rocket{ position: static; transform:none !important; margin: 24px auto; }
  .launch__pad,.launch__smoke,.launch__flame{ display:none; }
  /* Enthüllungstext statisch unter der Szene zeigen (kein Rauch-Reveal) */
  .launch__reveal{ position: static; opacity: 1 !important; margin-top: 32px; }
}

/* --- Crew: Michael verlinkt --- */
.crew-member--link{ text-decoration:none; color:inherit; display:block; transition: transform .3s var(--ease); }
.crew-member--link:hover{ transform: translateY(-4px); }
.crew-member--link:hover .crew-member__ext{ color: var(--indigo); }
.crew-member__ext{ font-size:.7em; color: rgba(241,244,249,.5); transition: color .3s var(--ease); }
