@font-face {
  font-family: 'Hyperion';
  src: url('../fonts/Hyperion.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --space: #000000;
  --panel: #0F1728;
  --panel-light: #17203A;
  --teal: #02DEE5;
  --teal-dim: #0A6E71;
  --crimson: #F92656;
  --crimson-dim: #7A1330;
  --pink: #FF5B8A;
  --cream: #EAF2F2;
  --grey: #7E93A6;
  --line: rgba(126,147,166,0.22);
  --glow-teal: 0 0 18px rgba(2,222,229,0.55);
  --glow-crimson: 0 0 20px rgba(249,38,86,0.5);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: linear-gradient(180deg, #000b15 0%, #000000 100%);
  background-attachment: fixed;
  color: var(--cream);
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Sternenhimmel-Hintergrund über die ganze Seite */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1.5px 1.5px at 10% 15%, #fff 100%, transparent),
    radial-gradient(1.5px 1.5px at 80% 8%, #fff 100%, transparent),
    radial-gradient(1px 1px at 45% 30%, #fff 100%, transparent),
    radial-gradient(1.5px 1.5px at 65% 60%, #fff 100%, transparent),
    radial-gradient(1px 1px at 20% 75%, #fff 100%, transparent),
    radial-gradient(1.5px 1.5px at 92% 45%, #fff 100%, transparent),
    radial-gradient(1px 1px at 30% 90%, #fff 100%, transparent),
    radial-gradient(1.5px 1.5px at 55% 12%, #fff 100%, transparent),
    radial-gradient(1px 1px at 8% 50%, #fff 100%, transparent),
    radial-gradient(1.5px 1.5px at 75% 85%, #fff 100%, transparent);
  background-size: 100% 100%;
  opacity: 0.5;
  animation: twinkle 6s ease-in-out infinite alternate;
}
@keyframes twinkle { from { opacity: 0.3; } to { opacity: 0.65; } }

nav, section, footer, .region-bar, .stat-strip, .photo-break { position: relative; z-index: 1; }

h1, h2, .display {
  font-family: 'Hyperion', 'Oswald', sans-serif;
  letter-spacing: 0.02em;
}
h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

.script { font-family: 'Oswald', sans-serif; font-weight: 200; font-style: italic; text-transform: none; letter-spacing: 0.02em; }

.mono { font-family: 'Oswald', sans-serif; font-weight: 200; }

.eyebrow {
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  color: var(--teal);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--teal);
}

a { color: inherit; text-decoration: none; }
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Fuel gauge */
.fuel-gauge {
  position: fixed; right: 18px; top: 50%; transform: translateY(-50%);
  width: 34px; height: 220px; border: 1px solid var(--line); border-radius: 4px;
  background: rgba(15,23,40,0.7); backdrop-filter: blur(4px); z-index: 100;
  display: flex; flex-direction: column-reverse; padding: 4px; gap: 3px;
}
.fuel-gauge .seg { flex: 1; background: rgba(126,147,166,0.15); border-radius: 2px; transition: background 0.4s ease, box-shadow 0.4s ease; }
.fuel-gauge .seg.lit { background: var(--teal); box-shadow: var(--glow-teal); }
.fuel-label {
  position: fixed; right: 16px; top: calc(50% + 118px);
  font-family: 'Oswald', sans-serif; font-weight: 200; font-size: 0.65rem;
  color: var(--grey); letter-spacing: 0.1em; z-index: 100;
}
@media (max-width: 780px) { .fuel-gauge, .fuel-label { display: none; } }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(8,11,22,0.85); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 24px; }
.logo-img { height: 34px; display: block; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-family: 'Oswald', sans-serif; font-weight: 400; font-size: 0.92rem; color: var(--grey);
  transition: color 0.2s ease; position: relative;
}
.nav-links a:hover { color: var(--teal); }
@media (max-width: 800px) { .nav-links { display: none; } }
.nav-cta {
  border: 1px solid var(--teal); color: var(--teal); padding: 8px 18px;
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 0.9rem; border-radius: 2px;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.nav-cta:hover { background: var(--teal); color: var(--space); box-shadow: var(--glow-teal); }

/* HERO */
.hero {
  min-height: 92vh; display: flex; align-items: center; position: relative;
  padding: 80px 0 60px; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.75) 55%, rgba(0,0,0,0.97) 100%),
    url('images/rocket-scene.jpg');
  background-size: cover;
  background-position: center 25%;
  z-index: -1;
}
.hero-logo { height: clamp(64px, 8vw, 110px); margin-bottom: 26px; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.6)); }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; width: 100%; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero .claim {
  font-family: 'Oswald', sans-serif; font-weight: 200; font-style: italic; font-size: 1.5rem; color: var(--cream);
  margin-bottom: 6px; display: inline-block;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.2rem); line-height: 1.02; font-weight: 800; margin: 14px 0 24px;
}
.keep-case { text-transform: none; }
.hero h1 .crimson { color: var(--crimson); text-shadow: 0 0 24px rgba(255,51,85,0.65), 0 0 46px rgba(255,51,85,0.3); }
.hero h1 .teal { color: var(--teal); text-shadow: 0 0 24px rgba(47,230,218,0.65), 0 0 46px rgba(47,230,218,0.3); }
.hero p.lead { color: var(--grey); font-size: 1.1rem; max-width: 480px; margin-bottom: 34px; }
.cta-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.trust-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 16px;
  padding: 36px 40px; text-align: center;
}
.trust-stars { color: #FFC838; font-size: 1.3rem; letter-spacing: 3px; }
.trust-card p { color: var(--grey); font-size: 1.05rem; max-width: 640px; margin: 0 auto; }
.trust-card strong { color: var(--cream); }
.btn-primary {
  background: linear-gradient(135deg, var(--teal), #1fc7bb); color: var(--space);
  font-family: 'Oswald', sans-serif; font-weight: 700; padding: 16px 28px;
  border-radius: 2px; font-size: 0.9rem; letter-spacing: 0.05em;
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease; border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(47,230,218,0.35); }
.btn-ghost {
  color: var(--cream); font-family: 'Oswald', sans-serif; font-weight: 400; font-size: 0.95rem;
  border-bottom: 1px solid var(--grey); padding-bottom: 2px;
}

/* mission console */
.hero-visual { position: relative; text-align: center; }
.hero-rocket-img {
  width: 100%; max-width: 320px; height: auto; margin: 0 auto 14px; display: block;
  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.55)) drop-shadow(0 0 40px rgba(2,222,229,0.15));
  animation: rocketFloat 4.5s ease-in-out infinite;
}
@keyframes rocketFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(-1.5deg); }
}
.trust-badges { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; text-align: left; }
.trust-badge {
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px;
  padding: 14px 18px; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--cream);
  display: flex; align-items: center; gap: 10px; backdrop-filter: blur(6px);
}
.trust-badge strong { color: var(--teal); }
.trust-stars-sm { color: #FFC838; letter-spacing: 2px; }
.console-readout {
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 20px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  font-family: 'Oswald', sans-serif; font-weight: 200; font-size: 0.85rem;
}
.console-readout div { color: var(--grey); }
.console-readout div b { color: var(--teal); display: block; font-size: 1rem; margin-top: 2px; }

/* SECTION generic */
section { padding: 110px 0; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 14px 0 16px; }
.section-head p { color: var(--grey); font-size: 1.05rem; }
hr.rule { border: none; border-top: 1px solid var(--line); margin: 0; }

/* WAS IST ES */
.concept-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
@media (max-width: 780px) { .concept-grid { grid-template-columns: 1fr; } }
.concept-cell { background: var(--panel); padding: 32px 28px; }
.concept-cell .num { font-family: 'Oswald', sans-serif; font-weight: 200; color: var(--teal-dim); font-size: 0.9rem; }
.concept-cell h3 { font-size: 1.3rem; margin: 12px 0 10px; }
.concept-cell p { color: var(--grey); font-size: 0.95rem; }

/* PROCESS */
.process { display: flex; flex-direction: column; border-left: 1px solid var(--line); margin-left: 14px; }
.process-step { position: relative; padding: 0 0 48px 40px; }
.process-step:last-child { padding-bottom: 0; }
.process-step::before {
  content: ''; position: absolute; left: -6px; top: 4px; width: 11px; height: 11px;
  background: var(--space); border: 2px solid var(--teal); border-radius: 50%; box-shadow: var(--glow-teal);
}
.process-step .tag { font-family: 'Oswald', sans-serif; font-weight: 200; color: var(--teal); font-size: 0.82rem; letter-spacing: 0.1em; }
.process-step h3 { font-size: 1.2rem; margin: 8px 0 8px; font-weight: 700; text-transform: none; letter-spacing: 0; font-family: 'Oswald', sans-serif; }
.process-step p { color: var(--grey); font-size: 0.95rem; max-width: 520px; }

/* SPIELKATEGORIEN */
.kategorien-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .kategorien-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .kategorien-grid { grid-template-columns: 1fr; } }
.kategorie { background: var(--panel); border: 1px solid var(--line); border-radius: 8px; padding: 22px 20px; transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease; }
.kategorie:hover { border-color: var(--teal); transform: translateY(-3px); box-shadow: var(--glow-teal); }
.kategorie .kat-num { font-family: 'Oswald', sans-serif; font-weight: 200; color: var(--crimson); opacity: 0.8; font-size: 0.8rem; margin-bottom: 10px; }
.kategorie h3 { font-size: 1.02rem; margin-bottom: 6px; letter-spacing: 0; }
.kategorie p { color: var(--grey); font-size: 0.85rem; }

/* TICKETS */
.tickets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .tickets { grid-template-columns: 1fr; } }
.ticket { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; position: relative; display: flex; flex-direction: column; transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease; }
.ticket.featured { border-color: var(--crimson); transform: translateY(-8px); box-shadow: var(--glow-crimson); }
.ticket:hover { transform: translateY(-6px); }
.ticket-top { padding: 28px 26px 20px; }
.ticket-flag { font-family: 'Oswald', sans-serif; font-weight: 200; font-size: 0.8rem; color: var(--teal); letter-spacing: 0.1em; margin-bottom: 10px; }
.ticket.featured .ticket-flag { color: var(--crimson); }
.ticket-top h3 { font-size: 1.6rem; margin-bottom: 6px; }
.ticket-top .sub { color: var(--grey); font-size: 0.85rem; }
.ticket-price { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 2.2rem; color: var(--cream); margin: 18px 0 4px; }
.ticket-price span { font-size: 0.9rem; color: var(--grey); }
.perforation { position: relative; height: 0; border-top: 2px dashed var(--line); margin: 0 22px; }
.perforation::before, .perforation::after { content: ''; position: absolute; top: -10px; width: 20px; height: 20px; background: var(--space); border-radius: 50%; }
.perforation::before { left: -32px; }
.perforation::after { right: -32px; }
.ticket-bottom { padding: 22px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.ticket-bottom ul { list-style: none; margin-bottom: 24px; flex: 1; }
.ticket-bottom li { font-size: 0.88rem; color: var(--grey); padding: 7px 0; display: flex; gap: 10px; }
.ticket-bottom li::before { content: '✓'; color: var(--teal); font-weight: 700; }
.ticket-cta { display: block; text-align: center; padding: 13px; border-radius: 2px; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 0.95rem; border: 1px solid var(--teal); color: var(--teal); transition: background 0.25s ease, color 0.25s ease; }
.ticket.featured .ticket-cta { background: var(--crimson); color: var(--space); border-color: var(--crimson); }
.ticket-cta:hover { background: var(--teal); color: var(--space); }
.ticket.featured .ticket-cta:hover { background: var(--crimson); }
.tickets-note { margin-top: 28px; font-family: 'Oswald', sans-serif; font-weight: 200; font-size: 0.85rem; color: var(--grey); text-align: center; }

.zusatzoptionen { max-width: 640px; margin: 32px auto 0; display: grid; gap: 12px; }
.zusatz-item {
  background: var(--panel); border: 1px solid var(--line); border-radius: 8px;
  padding: 14px 18px; font-size: 0.92rem; color: var(--grey);
}
.zusatz-item .zusatz-label { color: var(--cream); font-weight: 600; margin-right: 6px; }
.zusatz-item strong { color: var(--teal); }
.zusatz-item.christmas { border-color: rgba(255,51,85,0.35); background: rgba(255,51,85,0.06); }
.zusatz-item.christmas strong, .zusatz-item.christmas .zusatz-label { color: var(--crimson); }

.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 760px; }
.faq-item {
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 4px 20px;
}
.faq-item summary {
  padding: 16px 0; cursor: pointer; font-weight: 600; font-size: 1rem; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-family: 'Oswald', sans-serif; font-weight: 400; color: var(--teal); font-size: 1.2rem;
  transition: transform 0.2s ease; flex-shrink: 0; margin-left: 12px;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--grey); font-size: 0.92rem; padding-bottom: 18px; line-height: 1.6; }

.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 780px) { .audience-grid { grid-template-columns: 1fr; } }
.audience-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 32px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.audience-card:hover { border-color: var(--teal); transform: translateY(-4px); }
.audience-icon { font-size: 2.2rem; margin-bottom: 12px; }
.audience-card h3 { font-size: 1.3rem; margin-bottom: 16px; }
.audience-card ul { list-style: none; margin-bottom: 24px; }
.audience-card li { color: var(--grey); font-size: 0.92rem; padding: 6px 0; padding-left: 22px; position: relative; }
.audience-card li::before { content: '✓'; color: var(--teal); font-weight: 700; position: absolute; left: 0; }
.audience-cta {
  display: inline-flex; align-items: center; gap: 6px; color: var(--teal);
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 0.95rem;
  border-bottom: 1px solid var(--teal); padding-bottom: 3px; transition: gap 0.2s ease;
}
.audience-cta:hover { gap: 10px; }

/* REGION BAR */
.region-bar { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; }

.stat-strip { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 32px 0; }
.stat-strip .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: center; }
@media (max-width: 700px) { .stat-strip .wrap { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.stat-num { font-family: 'Hyperion', 'Oswald', sans-serif; font-size: clamp(1.6rem, 3.2vw, 2.2rem); color: var(--teal); text-shadow: 0 0 20px rgba(2,222,229,0.4); }
.stat-label { font-family: 'Oswald', sans-serif; font-weight: 200; font-size: 0.85rem; color: var(--grey); margin-top: 4px; }

.photo-break { position: relative; min-height: 46vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.photo-break-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.photo-break::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.7) 100%);
}
.photo-break-overlay { position: relative; z-index: 1; text-align: center; }
.photo-break-overlay .script { display: block; font-size: 1.4rem; color: var(--cream); margin-bottom: 8px; }
.photo-break-overlay h2 { font-size: clamp(1.8rem, 4.5vw, 3rem); color: var(--cream); text-shadow: 0 0 30px rgba(2,222,229,0.5); }

.video-wrap {
  max-width: 900px; margin: 0 auto; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: 0 25px 70px rgba(0,0,0,0.5), 0 0 40px rgba(2,222,229,0.08);
  background: #000;
}
.video-wrap video { width: 100%; display: block; aspect-ratio: 16 / 9; }
.region-bar .wrap { display: flex; align-items: center; justify-content: center; gap: 14px; font-family: 'Oswald', sans-serif; font-weight: 400; font-size: 0.95rem; color: var(--teal); text-align: center; flex-wrap: wrap; }

/* SOCIAL PROOF */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .proof-grid { grid-template-columns: 1fr; } }
.proof-card { background: var(--panel); border: 1px solid var(--line); border-radius: 8px; padding: 26px; }
.proof-card .stars { color: var(--teal); letter-spacing: 3px; font-size: 0.95rem; margin-bottom: 14px; }
.proof-card p.quote { font-size: 0.98rem; margin-bottom: 20px; }
.proof-card .who { font-family: 'Oswald', sans-serif; font-weight: 200; font-size: 0.85rem; color: var(--grey); }
.proof-card .who b { color: var(--cream); display: block; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 0.92rem; margin-bottom: 2px; }

/* URGENCY */
.urgency {
  background: linear-gradient(135deg, rgba(255,51,85,0.1), rgba(255,91,138,0.06));
  border: 1px solid rgba(255,51,85,0.35); border-radius: 10px; padding: 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.urgency h3 { font-size: 1.5rem; margin-bottom: 8px; font-family: 'Hyperion', 'Oswald', sans-serif; }
.urgency p { color: var(--grey); max-width: 480px; }
.btn-flame { background: var(--crimson); color: var(--space); font-family: 'Oswald', sans-serif; font-weight: 700; padding: 14px 24px; border-radius: 2px; white-space: nowrap; box-shadow: var(--glow-crimson); }

/* KONTAKT */
.kontakt-section { background: var(--panel-light); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.kontakt-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .kontakt-grid { grid-template-columns: 1fr; } }
.kontakt-info h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin: 14px 0 16px; }
.kontakt-info p { color: var(--grey); margin-bottom: 22px; font-size: 1.02rem; }
.kontakt-punkte { list-style: none; display: grid; gap: 12px; }
.kontakt-punkte li { display: flex; gap: 10px; align-items: center; font-size: 0.92rem; }
.kontakt-punkte li::before { content: '✓'; color: var(--teal); font-weight: 700; }

form.mission-form { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 32px; position: relative; }
.feld { margin-bottom: 18px; }
.feld-reihe { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .feld-reihe { grid-template-columns: 1fr; } }
label { display: block; font-family: 'Oswald', sans-serif; font-weight: 400; font-size: 0.85rem; color: var(--teal); letter-spacing: 0.05em; margin-bottom: 6px; text-transform: uppercase; }
input, select, textarea { width: 100%; font: inherit; color: var(--cream); background: var(--space); border: 1px solid var(--line); border-radius: 4px; padding: 12px 14px; }
input:focus-visible, select:focus-visible, textarea:focus-visible, a:focus-visible, button:focus-visible { outline: 2px solid var(--crimson); outline-offset: 2px; }
textarea { resize: vertical; min-height: 100px; }
.form-hinweis { font-family: 'Oswald', sans-serif; font-weight: 200; font-size: 0.8rem; color: var(--grey); margin-top: 14px; }
.erfolg { display: none; background: rgba(47,230,218,0.12); border: 1px solid var(--teal); color: var(--teal); border-radius: 6px; padding: 14px 16px; font-size: 0.9rem; margin-top: 16px; }
.g-recaptcha { margin-bottom: 18px; }

/* FOOTER */
footer { padding: 60px 0 40px; }
.footer-contact {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
  padding-bottom: 24px; font-size: 0.92rem; color: var(--grey);
}
.footer-contact a { color: var(--teal); }
.flyer-link {
  border: 1px solid var(--line-strong, var(--line)); border-radius: 999px; padding: 8px 16px;
  font-family: 'Oswald', sans-serif; font-weight: 400; font-size: 0.85rem; color: var(--teal) !important;
  transition: background 0.2s ease;
}
.flyer-link:hover { background: rgba(47,230,218,0.1); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; color: var(--grey); font-family: 'Oswald', sans-serif; font-weight: 200; }


/* SHOOTING STARS — comet: bright head + soft fading tail, angle matches flight path */
.shooting-star {
  position: fixed;
  top: 0; left: 0;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #EAF2F2;
  box-shadow: 0 0 10px 3px rgba(47,230,218,0.75);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  will-change: transform, opacity;
  animation: shoot linear infinite;
}
.shooting-star::after {
  content: '';
  position: absolute;
  top: 50%; right: 100%;
  width: 130px; height: 1.5px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, rgba(47,230,218,0.6));
  border-radius: 2px;
}
.shooting-star.crimson { box-shadow: 0 0 10px 3px rgba(255,51,85,0.75); }
.shooting-star.crimson::after { background: linear-gradient(90deg, transparent, rgba(255,51,85,0.6)); }
.ss1 { top: 12%; animation-duration: 9s;  animation-delay: 0s; }
.ss2 { top: 46%; animation-duration: 11s; animation-delay: 3.5s; }
.ss3 { top: 74%; animation-duration: 10s; animation-delay: 6.5s; }
/* Travel direction: down-right. Both dx/dy use vw so the rotate angle (~15deg) actually matches the path. */
@keyframes shoot {
  0%   { transform: translate(-12vw, -3vw) rotate(15deg); opacity: 0; }
  6%   { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translate(112vw, 30vw) rotate(15deg); opacity: 0; }
}

/* NEBULA DRIFT */
.hero::before { animation: drift 22s ease-in-out infinite alternate; }
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(2%, -2%) scale(1.04); }
}

/* HERO ROCKET — gentle idle float only, no scroll motion (the big climb lives in .mission-rocket) */
.patch-idle { animation: idleFloat 3.6s ease-in-out infinite; }
@keyframes idleFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.flame-flicker { animation: flicker 0.35s ease-in-out infinite alternate; transform-origin: 100px 140px; }
@keyframes flicker {
  from { opacity: 0.75; transform: scaleY(0.9); }
  to   { opacity: 1; transform: scaleY(1.08); }
}

/* MISSION ROCKET — climbs the entire page, bottom to top, synced to overall scroll progress */
.mission-rocket {
  position: fixed;
  left: 26px;
  top: 88vh;
  z-index: 60;
  width: 34px;
  pointer-events: none;
  will-change: top;
}
.mission-rocket svg { width: 100%; height: auto; overflow: visible; filter: drop-shadow(0 0 8px rgba(47,230,218,0.5)); }
.mission-rocket .trail {
  position: absolute;
  left: 50%; top: 100%;
  width: 3px; height: 90px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, rgba(255,91,138,0.6), transparent);
  border-radius: 3px;
}
@media (max-width: 780px) { .mission-rocket { display: none; } }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
  body::before, .hero::before, .shooting-star, .patch-idle, .flame-flicker, .hero-rocket-img { animation: none !important; }
  .mission-rocket { display: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============ MOBILE-FEINSCHLIFF ============ */
@media (max-width: 780px) {
  section { padding: 64px 0; }
  .hero { padding: 60px 0 40px; min-height: auto; }
  .hero-visual { margin-top: 32px; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn-primary, .cta-row .btn-ghost { text-align: center; justify-content: center; }

  .photo-break { min-height: 34vh; }
  .photo-break-overlay { padding: 0 20px; }
  .photo-break-overlay .script { font-size: 1.1rem; }

  .trust-card { padding: 26px 22px; }
  .trust-card h2 { flex-direction: column; align-items: flex-start !important; gap: 8px !important; }

  .kontakt-grid { gap: 40px; }

  .urgency { padding: 28px 24px; flex-direction: column; align-items: flex-start; }
  .urgency .btn-flame { width: 100%; text-align: center; }

  .footer-contact { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: left; }

  .faq-item summary { font-size: 0.92rem; padding: 14px 0; }

  .ticket-top, .ticket-bottom { padding-left: 20px; padding-right: 20px; }
}

@media (max-width: 480px) {
  section { padding: 48px 0; }
  .wrap { padding: 0 18px; }
  .hero h1 { margin: 10px 0 18px; }
  .concept-cell { padding: 24px 20px; }
  .trust-badge { font-size: 0.85rem; padding: 12px 14px; }
}

/* ============ COOKIE-BANNER ============ */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 500;
  max-width: 640px; margin: 0 auto;
  background: var(--panel); border: 1px solid var(--line); border-radius: 12px;
  padding: 20px 24px; box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.cookie-banner p { color: var(--grey); font-size: 0.88rem; line-height: 1.6; margin-bottom: 14px; }
.cookie-banner a { color: var(--teal); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }
.cookie-banner-actions button {
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 0.85rem; padding: 10px 20px;
  border-radius: 4px; cursor: pointer; border: 1px solid var(--line);
}
.cookie-btn-decline { background: transparent; color: var(--grey); }
.cookie-btn-accept { background: var(--teal); color: var(--space); border-color: var(--teal); }
@media (max-width: 480px) { .cookie-banner-actions { justify-content: stretch; } .cookie-banner-actions button { flex: 1; } }

.form-cookie-overlay {
  position: absolute; inset: 0; z-index: 10; border-radius: 10px;
  background: rgba(15,23,40,0.94); backdrop-filter: blur(3px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 32px;
}
.form-cookie-overlay p { color: var(--cream); font-size: 0.95rem; max-width: 340px; margin-bottom: 20px; line-height: 1.6; }
.form-cookie-overlay .cookie-btn-accept {
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 0.9rem; padding: 12px 26px;
  border-radius: 4px; cursor: pointer; background: var(--teal); color: var(--space); border: none;
}
