/* ═══════════════════════════════════════════════════════
   vAIcation Website v2 — Scrollytelling
   Farbwelt 1:1 aus der App (lib/core/constants/app_colors.dart)
   Radii/Glass 1:1 aus app_theme.dart / home_shell_page.dart
   ═══════════════════════════════════════════════════════ */

:root {
  /* App-Palette */
  --primary: #2563EB;
  --primary-light: #60A5FA;
  --primary-pale: #DBEAFE;
  --cyan: #0EA5E9;
  --cyan-bright: #22D3EE;
  --pink: #EC4899;
  --pink-light: #F472B6;
  --gold: #F59E0B;
  --gold-bright: #FBBF24;
  --success: #10B981;

  --dark-bg: #151C28;
  --dark-card: #243244;
  --dark-card-elev: #2D3D52;
  --dark-border: #334155;

  --bg: #F8FAFC;
  --card: #FFFFFF;
  --text: #0F172A;
  --text-2: #475569;
  --text-3: #64748B;
  --border: #E2E8F0;

  /* Verläufe (App) */
  --grad-primary: linear-gradient(135deg, #2563EB 0%, #60A5FA 100%);
  --grad-vibrant: linear-gradient(135deg, #2563EB 0%, #0EA5E9 55%, #22D3EE 100%);
  --grad-gold: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);

  /* Radii (App-Theme) */
  --r-card: 20px;
  --r-btn: 16px;
  --r-sheet: 24px;
  --r-chip: 12px;
  --r-pill: 980px;

  --maxw: 1160px;
  --nav-h: 64px;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ─── Reset / Basis ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--dark-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -0.5px; font-weight: 800; }
h2 { font-size: clamp(30px, 4.6vw, 52px); }
h3 { font-size: 18px; font-weight: 700; letter-spacing: 0; }
button { font: inherit; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 780px; }
.desktop-only { display: none; }
@media (min-width: 720px) { .desktop-only { display: inline; } }

/* ─── Farb-Bühne + Sterne ─── */
.stage-bg {
  position: fixed; inset: 0; z-index: -2;
  background: var(--dark-bg);
  transition: background-color 0.9s var(--ease);
}
.stars { position: fixed; inset: 0; z-index: -1; opacity: 1; transition: opacity .9s var(--ease); pointer-events: none; }
body[data-theme="light"] .stars { opacity: 0; }
.stars i {
  position: absolute; inset: 0; display: block;
  background-image:
    radial-gradient(1.4px 1.4px at 12% 22%, rgba(255,255,255,.9) 50%, transparent 51%),
    radial-gradient(1.2px 1.2px at 34% 8%,  rgba(255,255,255,.7) 50%, transparent 51%),
    radial-gradient(1.6px 1.6px at 56% 31%, rgba(255,255,255,.8) 50%, transparent 51%),
    radial-gradient(1px   1px   at 73% 15%, rgba(255,255,255,.6) 50%, transparent 51%),
    radial-gradient(1.4px 1.4px at 88% 42%, rgba(255,255,255,.85) 50%, transparent 51%),
    radial-gradient(1.1px 1.1px at 21% 64%, rgba(255,255,255,.55) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 44% 79%, rgba(255,255,255,.75) 50%, transparent 51%),
    radial-gradient(1px   1px   at 67% 58%, rgba(255,255,255,.6) 50%, transparent 51%),
    radial-gradient(1.3px 1.3px at 81% 84%, rgba(255,255,255,.8) 50%, transparent 51%),
    radial-gradient(1.1px 1.1px at 6% 45%,  rgba(255,255,255,.65) 50%, transparent 51%);
  animation: twinkle 4.5s ease-in-out infinite;
}
.stars i:nth-child(2) { transform: scale(1.7) rotate(38deg); animation-delay: -1.6s; opacity: .7; }
.stars i:nth-child(3) { transform: scale(2.6) rotate(74deg); animation-delay: -3.1s; opacity: .45; }
@keyframes twinkle { 0%,100% { opacity: .9; } 50% { opacity: .45; } }

/* ─── Typo-Helfer ─── */
.grad {
  background: var(--grad-vibrant);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.grad-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.kicker {
  font-size: 13px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 14px;
}
.kicker-ai { color: var(--pink); }
.kicker-gold { color: var(--gold-bright); }
.kicker-light { color: rgba(255,255,255,.9); }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--cyan-bright);
  border: 1px solid rgba(34,211,238,.35); border-radius: var(--r-pill);
  padding: 8px 18px; margin-bottom: 28px;
}
.section-sub { font-size: 18px; color: var(--text-2); max-width: 620px; margin: 18px auto 0; }
.badge-premium {
  display: inline-block; vertical-align: 2px;
  font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  color: #fff; background: var(--grad-vibrant);
  border-radius: var(--r-pill); padding: 3px 9px; margin-left: 6px;
}

/* ─── Buttons (App: radius 16, padding 32/16, w600, ls .5) ─── */
.btn {
  display: inline-block; text-decoration: none; text-align: center;
  font-size: 16px; font-weight: 600; letter-spacing: .5px;
  border-radius: var(--r-btn); padding: 16px 32px;
  transition: transform .25s var(--ease-spring), box-shadow .25s var(--ease), background .25s var(--ease);
}
.btn-primary {
  color: #fff; background: var(--grad-primary);
  box-shadow: 0 8px 24px rgba(37, 99, 235, .35);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 12px 32px rgba(37, 99, 235, .45); }
.btn-ghost { color: #fff; border: 1.5px solid rgba(255,255,255,.28); }
.btn-ghost:hover { border-color: rgba(255,255,255,.6); transform: translateY(-2px); }
.btn-outline { color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline:hover { background: var(--primary-pale); transform: translateY(-2px); }
.btn-disabled { color: var(--text-3); background: var(--border); cursor: default; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 18px 44px; font-size: 17px; }

/* ─── Nav (Frosted-Glass-Pille, blur 30 wie App-NavBar) ─── */
.nav {
  position: fixed; top: 12px; left: 50%; transform: translate(-50%, 0);
  z-index: 100; width: min(var(--maxw), calc(100% - 24px));
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.55);
  -webkit-backdrop-filter: blur(30px); backdrop-filter: blur(30px);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: transform .45s var(--ease), opacity .45s var(--ease), background .45s var(--ease);
}
.nav.nav-hidden { transform: translate(-50%, -120%); opacity: 0; }
body[data-theme="dark"] .nav {
  background: rgba(21,28,40,.55);
  border-color: rgba(255,255,255,.14);
  color: #F8FAFC;
}
.nav-logo { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 17px; text-decoration: none; letter-spacing: -.3px; }
.nav-links { display: none; gap: 26px; }
.nav-links a { text-decoration: none; font-size: 14.5px; font-weight: 600; color: inherit; opacity: .8; transition: opacity .2s; }
.nav-links a:hover { opacity: 1; }
@media (min-width: 860px) { .nav-links { display: flex; } }

/* ─── Szenen-Basis ─── */
.scene { position: relative; }

/* ─── Hero ─── */
.hero {
  min-height: 100svh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  color: #F8FAFC; padding: 120px 24px 80px; overflow: hidden;
}
.hero h1 { font-size: clamp(44px, 8vw, 92px); letter-spacing: -1px; }
.hero h1 .line { display: block; }
.hero-sub { font-size: clamp(16px, 2.2vw, 20px); color: #CBD5E1; max-width: 640px; margin: 26px auto 0; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 38px; }
.hero-note { margin-top: 22px; font-size: 13px; color: #94A3B8; }
.hero-plane {
  font-size: 44px; margin-bottom: 8px;
  animation: heroPlane 5.5s ease-in-out infinite;
  filter: drop-shadow(0 6px 18px rgba(96,165,250,.45));
}
@keyframes heroPlane {
  0%   { transform: translate(-46vw, 8vh)  rotate(12deg) scale(.7); opacity: 0; }
  12%  { opacity: 1; }
  50%  { transform: translate(0, -1vh)     rotate(-4deg) scale(1); }
  88%  { opacity: 1; }
  100% { transform: translate(46vw, -9vh)  rotate(10deg) scale(.75); opacity: 0; }
}
.hero-inner > * { opacity: 0; transform: translateY(26px); animation: rise .9s var(--ease) forwards; }
.hero-inner > *:nth-child(2) { animation-delay: .12s; }
.hero-inner > *:nth-child(3) { animation-delay: .26s; }
.hero-inner > *:nth-child(4) { animation-delay: .4s; }
.hero-inner > *:nth-child(5) { animation-delay: .54s; }
.hero-inner > *:nth-child(6) { animation-delay: .68s; }
@keyframes rise { to { opacity: 1; transform: none; } }
.scroll-cue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.35); border-radius: 14px;
}
.scroll-cue span {
  position: absolute; top: 7px; left: 50%; width: 4px; height: 9px; margin-left: -2px;
  border-radius: 2px; background: var(--cyan-bright);
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* ─── Pinned Szenen ─── */
.pin { position: relative; height: 380vh; }
.pin-long { height: 480vh; }
#wrapped.pin { height: 300vh; }
.pin-stage {
  position: sticky; top: 0; height: 100svh; overflow: hidden;
  display: flex; align-items: center;
}
.pin-grid {
  width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center;
  position: relative; z-index: 2; /* Inhalte über Deko (Polaroids) */
}
@media (min-width: 860px) {
  .pin-grid { grid-template-columns: 1fr 1fr; gap: 60px; }
  .pin-grid-rev .pin-copy { order: 0; }
  .pin-grid-rev .phone-wrap { order: 1; }
}

/* Text-Steps: JS scrubbt Opacity/Transform kontinuierlich am Scroll entlang */
.pin-copy { position: relative; min-height: 280px; }
.pin-step {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center;
  opacity: 0;
  will-change: opacity, transform;
  pointer-events: none;
}
.pin-step h2 { margin-bottom: 16px; }
.pin-step p { color: var(--text-2); font-size: 17px; max-width: 460px; }

/* Globus- & Wrapped-Szene sind dunkel → helle Texte */
[data-scene="globe"] .pin-step h2, [data-scene="wrapped"] .pin-step h2 { color: #F8FAFC; }
[data-scene="globe"] .pin-step p { color: #CBD5E1; }
[data-scene="wrapped"] .pin-step p { color: rgba(255,255,255,.88); }
[data-scene="globe"] .kicker { color: var(--cyan-bright); }

/* ─── Phone-Mockup ─── */
.phone-wrap { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.phone {
  position: relative; width: min(310px, 66vw); aspect-ratio: 690 / 1500;
  border-radius: 54px; padding: 10px;
  background: linear-gradient(160deg, #3a4556, #10151f 60%, #2c3646);
  box-shadow:
    0 30px 80px rgba(0,0,0,.45),
    0 4px 18px rgba(0,0,0,.3),
    inset 0 0 2px rgba(255,255,255,.35);
}
/* Der „Screen“ clippt alle Inhalte hart am Display-Radius — kein Überlaufen möglich */
.phone-screen {
  position: absolute; inset: 10px;
  border-radius: 44px; overflow: hidden; background: #F8FAFC;
}
.phone-screen img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.phone-island {
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 86px; height: 24px; border-radius: 14px; background: #000; z-index: 3;
}
.phone-globe .phone { box-shadow: 0 30px 90px rgba(37,99,235,.35), 0 4px 18px rgba(0,0,0,.4), inset 0 0 2px rgba(255,255,255,.35); }

/* Globus-Phone: fliegt herein und driftet danach weiter (Dauerbewegung) */
[data-scene="globe"] .phone-wrap {
  transform:
    translateY(calc((1 - min(var(--p, 0) * 3, 1)) * 12vh - var(--p, 0) * 3vh))
    scale(calc(.86 + min(var(--p, 0) * 3, 1) * .14))
    rotate(calc((1 - min(var(--p, 0) * 3, 1)) * -6deg + var(--p, 0) * 3deg));
  opacity: min(calc(var(--p, 0) * 5), 1);
  will-change: transform, opacity;
}

/* Tour-Phone: sanfter Dauer-Drift über die ganze Szene */
[data-scene="tour"] .phone-wrap {
  transform: translateY(calc((0.5 - var(--p, 0.5)) * 6vh));
  will-change: transform;
}

/* Feature-Tour: Screens werden von JS kontinuierlich durchgeblendet */
.tour-img { opacity: 0; will-change: opacity, transform; }
.tour-img.active { opacity: 1; }
.tour-dots { display: flex; gap: 8px; }
.tour-dots i {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); transition: all .35s var(--ease);
}
.tour-dots i.active { width: 26px; border-radius: 6px; background: var(--primary); }

.ticks { list-style: none; margin-top: 18px; display: grid; gap: 10px; }
.ticks li { padding-left: 30px; position: relative; color: var(--text-2); font-size: 15.5px; }
.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--primary-pale); color: var(--primary);
  font-size: 12px; font-weight: 800; display: grid; place-items: center;
}

/* ─── Vibes-Marquee ─── */
.vibes { padding: 130px 0; text-align: center; overflow: hidden; }
.marquee-stack { margin-top: 54px; display: grid; gap: 16px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: inline-flex; gap: 12px; white-space: nowrap; will-change: transform; animation: marq 46s linear infinite; }
.m2 .marquee-track { animation-duration: 58s; animation-direction: reverse; }
.m3 .marquee-track { animation-duration: 52s; }
@keyframes marq { to { transform: translateX(-50%); } }
.vibe-chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14.5px; font-weight: 600; color: var(--text-2);
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-chip); padding: 9px 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
}
.vibe-chip.hot { color: #fff; background: var(--grad-vibrant); border: none; }

/* ─── Genie-Chat ─── */
.genie { padding: 130px 0; }
.genie-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 900px) { .genie-grid { grid-template-columns: 1fr 1fr; gap: 70px; } }
.genie-copy h2 { margin-bottom: 16px; }
.genie-copy p { color: var(--text-2); font-size: 17px; }
.chat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-sheet);
  box-shadow: 0 24px 70px rgba(37,99,235,.14);
  overflow: hidden; max-width: 460px; justify-self: center; width: 100%;
}
.chat-head {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
}
.chat-avatar {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  font-size: 20px; background: var(--grad-vibrant);
}
.chat-head strong { display: block; font-size: 15px; }
.chat-head small { color: var(--text-3); font-size: 12.5px; }
.chat-body { padding: 20px; display: grid; gap: 12px; }
.bubble {
  max-width: 85%; padding: 11px 15px; font-size: 14.5px; line-height: 1.5;
  border-radius: 18px;
  opacity: 0; transform: translateY(16px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.reveal .bubble { opacity: 1; transform: none; }
.reveal .bubble:nth-child(1) { transition-delay: .1s; }
.reveal .bubble:nth-child(2) { transition-delay: .55s; }
.reveal .bubble:nth-child(3) { transition-delay: 1.05s; }
.reveal .bubble:nth-child(4) { transition-delay: 1.55s; }
.bubble.user { justify-self: end; color: #fff; background: var(--primary); border-bottom-right-radius: 6px; }
.bubble.genie { justify-self: start; background: #F1F5F9; color: var(--text); border-bottom-left-radius: 6px; }
.dest-cards { display: grid; gap: 8px; width: 100%; max-width: 100%; }
.dest-cards > span { font-size: 14.5px; }
.dest {
  display: block; text-align: left; width: 100%; cursor: pointer;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-chip);
  padding: 10px 14px; transition: border-color .2s, transform .2s var(--ease-spring);
}
.dest:hover { border-color: var(--primary); transform: translateY(-1px); }
.dest b { display: block; font-size: 14px; }
.dest em { font-style: normal; font-size: 12.5px; color: var(--text-3); }

/* ─── Crew ─── */
.crew { padding: 130px 0; text-align: center; }
.crew-grid {
  margin-top: 54px; display: grid; gap: 20px; text-align: left;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .crew-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .crew-grid { grid-template-columns: repeat(4, 1fr); } }
.crew-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-card);
  padding: 22px;
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal .crew-card { opacity: 1; transform: none; }
.reveal .crew-card:nth-child(2) { transition-delay: .12s; }
.reveal .crew-card:nth-child(3) { transition-delay: .24s; }
.reveal .crew-card:nth-child(4) { transition-delay: .36s; }
.crew-card h3 { margin-bottom: 16px; }
.mini-chat { display: grid; gap: 8px; }
.mini-chat .bubble { opacity: 1; transform: none; font-size: 13.5px; max-width: 95%; }
.bubble.user2 { justify-self: end; color: #fff; background: var(--primary); border-bottom-right-radius: 6px; }
.bubble.mate { justify-self: start; background: #F1F5F9; border-bottom-left-radius: 6px; }
.bubble.mate b { color: var(--primary); font-size: 12px; display: block; }
.dots { display: inline-flex; gap: 3px; padding: 4px 2px 0; }
.dots i { width: 6px; height: 6px; border-radius: 50%; background: var(--text-3); animation: blink 1.2s infinite; }
.dots i:nth-child(2) { animation-delay: .2s; }
.dots i:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%,80%,100% { opacity: .25; } 40% { opacity: 1; } }
.poll-q { font-weight: 700; font-size: 14.5px; margin-bottom: 12px; }
.poll-row { margin-bottom: 12px; font-size: 13.5px; color: var(--text-2); }
.poll-bar {
  position: relative; height: 30px; margin-top: 5px;
  background: #F1F5F9; border-radius: 9px; overflow: hidden;
}
.poll-bar i {
  position: absolute; inset: 0 auto 0 0; width: 0; border-radius: 9px;
  background: var(--grad-primary);
  transition: width 1.1s var(--ease) .3s;
}
.reveal .poll-bar i { width: var(--w); }
.poll-bar b { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); font-size: 13px; }
.split { display: grid; gap: 12px; }
.split-row { display: flex; align-items: center; gap: 12px; }
.split-emoji {
  width: 42px; height: 42px; border-radius: var(--r-chip); background: #F1F5F9;
  display: grid; place-items: center; font-size: 20px; flex: none;
}
.split-row b { display: block; font-size: 14.5px; }
.split-row small { color: var(--text-3); font-size: 12.5px; }
.split-sum { margin-left: auto; font-size: 16px; }
.split-note {
  background: #ECFDF5; color: #065F46; border-radius: var(--r-chip);
  font-size: 13.5px; padding: 10px 14px;
}
.crew-card .ticks li { font-size: 14px; }

/* ─── Wrapped ─── */
[data-scene="wrapped"] .pin-stage { }
.wrapped-copy .kicker { color: rgba(255,255,255,.95); }
.phone-wrapped { transform: rotate(calc(-4deg + var(--p, 0) * 6deg)) translateY(calc((0.5 - var(--p, 0.5)) * 4vh)); will-change: transform; }
.polaroid {
  position: absolute; width: 130px; height: 156px; background: #fff;
  border-radius: 8px; padding: 10px 10px 34px;
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
  display: grid; place-items: center; font-size: 44px; z-index: 1;
}
.polaroid span { background: #E7F6EC; width: 100%; height: 100%; display: grid; place-items: center; border-radius: 4px; }
.polaroid.p1 { top: 12%; left: 6%;  transform: rotate(calc(-14deg + var(--p, 0) * 10deg)) translateY(calc(var(--p, 0) * -30px)); }
.polaroid.p2 { top: 76%; left: 3%; transform: rotate(calc(9deg - var(--p, 0) * 12deg))  translateY(calc(var(--p, 0) * -50px)); }
.polaroid.p3 { top: 18%; right: 7%; transform: rotate(calc(12deg - var(--p, 0) * 8deg))  translateY(calc(var(--p, 0) * -40px)); }
@media (max-width: 860px) { .polaroid { display: none; } }

/* ─── Gamification ─── */
/* Dunkle Nicht-Pin-Szenen tragen ihre Farbe selbst → nie heller Text auf hellem Grund */
.game { padding: 140px 0; text-align: center; color: #F8FAFC; background: var(--dark-bg); }
.game .section-sub { color: #94A3B8; }
.xp-card {
  margin: 56px auto 0; max-width: 720px; text-align: left;
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--r-card); padding: 26px 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,.5), 0 0 20px -4px rgba(59,130,246,.15);
}
.xp-head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.xp-level { font-size: 15px; font-weight: 700; color: var(--primary-light); }
.xp-title { font-size: 22px; font-weight: 800; }
.xp-val { margin-left: auto; font-size: 14px; color: #94A3B8; }
.xp-val b { color: var(--gold-bright); font-size: 17px; }
.xp-bar {
  height: 12px; margin-top: 16px; border-radius: 8px;
  background: rgba(255,255,255,.08); overflow: hidden;
}
.xp-bar i {
  display: block; height: 100%; width: 0; border-radius: 8px;
  background: var(--grad-gold);
  box-shadow: 0 0 16px rgba(251,191,36,.5);
  transition: width 1.6s var(--ease) .2s;
}
.reveal .xp-bar i { width: 72%; }
.xp-ladder { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.xp-ladder span {
  font-size: 12px; font-weight: 600; color: #94A3B8;
  border: 1px solid var(--dark-border); border-radius: var(--r-pill); padding: 5px 12px;
}
.xp-ladder span.on { color: #0F172A; background: var(--grad-gold); border-color: transparent; font-weight: 800; }
.rarity-row {
  margin-top: 26px; display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  max-width: 900px; margin-inline: auto;
}
.rarity {
  border-radius: var(--r-card); padding: 18px 14px;
  background: var(--dark-card); border: 1px solid var(--dark-border);
  opacity: 0; transform: translateY(24px) scale(.94);
  transition: opacity .5s var(--ease), transform .5s var(--ease-spring);
}
.reveal .rarity { opacity: 1; transform: none; }
.reveal .rarity:nth-child(2) { transition-delay: .1s; }
.reveal .rarity:nth-child(3) { transition-delay: .2s; }
.reveal .rarity:nth-child(4) { transition-delay: .3s; }
.reveal .rarity:nth-child(5) { transition-delay: .4s; }
.rarity b { display: block; font-size: 15px; }
.rarity span { font-size: 12px; font-weight: 700; opacity: .85; }
.rarity em { display: block; font-style: normal; font-size: 12px; color: #94A3B8; margin-top: 8px; }
.r-common    { border-top: 3px solid #B45309; } .r-common b    { color: #D97706; }
.r-uncommon  { border-top: 3px solid #CBD5E1; } .r-uncommon b  { color: #E2E8F0; }
.r-rare      { border-top: 3px solid var(--gold-bright); } .r-rare b { color: var(--gold-bright); }
.r-epic      { border-top: 3px solid var(--pink-light); } .r-epic b { color: var(--pink-light); }
.r-legendary { border-top: 3px solid #FB923C; } .r-legendary b { color: #FB923C; }
.counters {
  margin-top: 60px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px;
  max-width: 760px; margin-inline: auto;
}
@media (min-width: 700px) { .counters { grid-template-columns: repeat(4, 1fr); } }
.counters b { display: block; font-size: clamp(38px, 5vw, 56px); font-weight: 800; background: var(--grad-vibrant); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.counters span { font-size: 14px; color: #94A3B8; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

/* ─── Feature-Grid ─── */
.grid-sec { padding: 130px 0; text-align: center; }
.feat-grid {
  margin-top: 54px; display: grid; gap: 20px; text-align: left;
  grid-template-columns: 1fr;
}
@media (min-width: 700px)  { .feat-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .feat-grid { grid-template-columns: repeat(3, 1fr); } }
.feat-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-card);
  padding: 24px;
  opacity: 0; transform: translateY(26px);
  transition: opacity .55s var(--ease), transform .55s var(--ease), box-shadow .3s;
}
.reveal .feat-card { opacity: 1; transform: none; }
.reveal .feat-card:nth-child(2) { transition-delay: .07s; }
.reveal .feat-card:nth-child(3) { transition-delay: .14s; }
.reveal .feat-card:nth-child(4) { transition-delay: .21s; }
.reveal .feat-card:nth-child(5) { transition-delay: .28s; }
.reveal .feat-card:nth-child(6) { transition-delay: .35s; }
.reveal .feat-card:nth-child(7) { transition-delay: .42s; }
.reveal .feat-card:nth-child(8) { transition-delay: .49s; }
.reveal .feat-card:nth-child(9) { transition-delay: .56s; }
.feat-card:hover { box-shadow: 0 18px 46px rgba(15,23,42,.08); }
.feat-card h3 { margin-bottom: 8px; }
.feat-card p { color: var(--text-2); font-size: 14.5px; }
.feat-media {
  border-radius: var(--r-chip); overflow: hidden; margin-bottom: 16px; height: 230px;
  border: 1px solid var(--border);
}
/* Nur der untere Karten-Ausschnitt des Route-Screenshots (oben ist ein Admin-Toggle) */
.feat-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 100%; }

/* ─── Pricing ─── */
.pricing { padding: 130px 0; text-align: center; }
.price-grid {
  margin-top: 54px; display: grid; gap: 22px; text-align: left;
  grid-template-columns: 1fr; max-width: 880px; margin-inline: auto;
}
@media (min-width: 800px) { .price-grid { grid-template-columns: 1fr 1fr; } }
.price-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-sheet);
  padding: 30px; display: flex; flex-direction: column; gap: 18px; position: relative;
}
.price-card .btn { margin-top: auto; }
.price-pro { border: 2px solid transparent; background:
  linear-gradient(var(--card), var(--card)) padding-box,
  var(--grad-vibrant) border-box;
  box-shadow: 0 24px 60px rgba(37,99,235,.16);
}
.pro-flag {
  position: absolute; top: -13px; right: 24px;
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  color: #fff; background: var(--grad-vibrant); border-radius: var(--r-pill); padding: 5px 14px;
}
.price b { font-size: 34px; font-weight: 800; letter-spacing: -.5px; }
.price span { display: block; color: var(--text-3); font-size: 13.5px; margin-top: 2px; }
.trip-pass-note {
  margin: 30px auto 0; max-width: 620px; font-size: 14.5px; color: var(--text-2);
  background: var(--card); border: 1px dashed var(--border); border-radius: var(--r-card);
  padding: 14px 20px;
}

/* ─── FAQ ─── */
.faq { padding: 130px 0; }
.faq h2 { text-align: center; margin-bottom: 40px; }
.faq .kicker { text-align: center; }
.faq details {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-btn);
  margin-bottom: 12px; overflow: hidden;
}
.faq summary {
  cursor: pointer; list-style: none; font-weight: 700; font-size: 16px;
  padding: 18px 22px; position: relative; user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: 22px; font-weight: 400; color: var(--primary); transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 22px 18px; color: var(--text-2); font-size: 15px; }

/* ─── Finale + Footer ─── */
.finale {
  padding: 150px 0 0; color: #F8FAFC; text-align: center; overflow: hidden; position: relative;
  background: var(--dark-bg);
}
.finale-inner { position: relative; z-index: 1; }
.finale .section-sub { color: #94A3B8; margin-bottom: 36px; }
.finale h2 { font-size: clamp(36px, 5.6vw, 64px); }
.finale-plane {
  position: absolute; top: 90px; left: 0; font-size: 36px; z-index: 0;
  animation: flyby 9s linear infinite;
  filter: drop-shadow(0 4px 14px rgba(96,165,250,.4));
}
@keyframes flyby {
  0%   { transform: translateX(-8vw)  translateY(30px)  rotate(8deg); }
  100% { transform: translateX(108vw) translateY(-40px) rotate(8deg); }
}
.footer { margin-top: 110px; border-top: 1px solid rgba(255,255,255,.1); padding: 48px 24px 34px; }
.footer-grid {
  max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap;
  justify-content: space-between; gap: 28px; text-align: left;
}
.footer-brand { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 17px; }
.footer-claim { color: #94A3B8; font-size: 13.5px; margin-top: 10px; }
.footer-grid nav { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
.footer-grid nav a { color: #CBD5E1; text-decoration: none; font-size: 13.5px; }
.footer-grid nav a:hover { color: #fff; }
.footer-copy { margin-top: 36px; color: #64748B; font-size: 12.5px; text-align: center; }

/* ─── Reduced Motion: alles statisch ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .pin { height: auto !important; }
  .pin-stage { position: static; height: auto; padding: 90px 0; }
  .pin-copy { min-height: 0; }
  .pin-step { position: static; opacity: 1 !important; transform: none !important; visibility: visible !important; margin-bottom: 40px; pointer-events: auto; }
  .tour-img { opacity: 1; transform: none; display: none; }
  .tour-img[data-step="0"] { display: block; }
  .bubble, .crew-card, .feat-card, .rarity { opacity: 1; transform: none; }
  .xp-bar i { width: 72%; }
  .poll-bar i { width: var(--w); }
  .phone-wrap, .phone-wrapped, .polaroid { transform: none !important; opacity: 1 !important; }
}

/* ─── Kleine Screens: Pins kompakter ─── */
@media (max-width: 859px) {
  .pin { height: 340vh; }
  .pin-long { height: 440vh; }
  .pin-grid { grid-template-rows: auto 1fr; height: 100svh; padding-top: 84px; padding-bottom: 24px; gap: 8px; }
  .phone-wrap { order: 0; }
  .pin-copy { order: 1; min-height: 200px; }
  .phone { width: min(220px, 52vw); }
  .pin-step h2 { font-size: 26px; }
  .pin-step p { font-size: 15px; }
  .pin-step { justify-content: flex-start; }
}
