/* ==========================================================================
   Tipavio Landing — „Warm Editorial“ (Design-Template der App, Light 1a)
   Fonts: Young Serif (Headings) · Helvetica Neue (Body) · SF Mono (Meta)
   ========================================================================== */

:root {
  --bg: #F7F3EC;            /* Cream */
  --surface: #FFFFFF;
  --border: #E5DFD3;
  --text: #2A2520;          /* Ink */
  --text-muted: #8A8175;    /* Stein */
  --accent: #D4552E;        /* Sonne */
  --accent-soft: #E8804A;   /* Sonne hell */
  --accent-gradient: linear-gradient(135deg, #E8804A, #D4552E);

  /* Cinematic (immer dunkel — „Deine Welt“) */
  --night: #221E1A;
  --night-surface: #322C25;
  --night-border: #3A342D;
  --night-text: #F7F3EC;
  --night-muted: #9C9284;
  --glow: #E8804A;          /* Glut */

  --font-heading: 'Young Serif', Georgia, serif;
  --font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-mono: 'SF Mono', Menlo, 'Cascadia Mono', monospace;
  --font-hand: 'Caveat', cursive;

  --radius-sm: 6px; --radius-md: 10px; --radius-lg: 16px;
  --shadow-paper: 0 1px 2px rgba(42,37,32,.08), 0 12px 32px -12px rgba(42,37,32,.25);
  --maxw: 1160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; overflow-x: clip; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
/* Papier-Korn über allem (sehr subtil) */
body::after {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9998;
  opacity: .3; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.55 0 0 0 0 0.5 0 0 0 0 0.44 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3 { font-family: var(--font-heading); font-weight: 400; line-height: 1.08; }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); letter-spacing: -0.01em; }
h3 { font-size: 1.35rem; }
em { font-style: normal; color: var(--accent); }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(212,85,46,.22); }

.meta-line {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-muted);
}
.hand { font-family: var(--font-hand); font-size: 1.25rem; color: var(--text); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 26px; border-radius: 999px; font-size: 15px; font-weight: 600;
  letter-spacing: .01em; white-space: nowrap;
  transition: transform .25s cubic-bezier(.2,.8,.3,1.2), box-shadow .25s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn-primary {
  background: var(--accent-gradient); color: #fff;
  box-shadow: 0 8px 20px -8px rgba(212,85,46,.55);
}
.btn-primary:hover { box-shadow: 0 14px 28px -10px rgba(212,85,46,.6); }
.btn-ghost { border: 1.5px solid var(--border); background: var(--surface); color: var(--text); }
.btn-ghost:hover { border-color: var(--text-muted); }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* ==========================================================================
   Preloader
   ========================================================================== */
.preloader {
  position: fixed; inset: 0; z-index: 9999; background: var(--bg);
  display: grid; place-items: center;
}
.pre-inner { position: relative; text-align: center; }
.pre-wordmark {
  font-family: var(--font-heading); font-size: clamp(3rem, 9vw, 5.5rem);
  color: var(--text); display: inline-block;
}
.pre-wordmark span { display: inline-block; }
.pre-pin { position: absolute; width: clamp(22px, 4vw, 34px); left: 0; top: 0; }
.pre-claim {
  margin-top: 14px; font-family: var(--font-hand); font-size: 1.5rem;
  color: var(--accent); opacity: 0;
}

/* ==========================================================================
   Nav
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 18px clamp(20px, 4vw, 48px);
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}
.nav.scrolled {
  background: rgba(247,243,236,.85); backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border); padding-top: 12px; padding-bottom: 12px;
}
.nav-brand {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-heading); font-size: 1.35rem;
}
.nav-pin { width: 15px; }
.nav-links { display: flex; gap: clamp(16px, 3vw, 36px); font-size: 14.5px; font-weight: 500; }
.nav-links a { position: relative; opacity: .8; transition: opacity .2s; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px; height: 2px; width: 100%;
  background: var(--accent); border-radius: 2px; transform: scaleX(0);
  transform-origin: left; transition: transform .3s cubic-bezier(.2,.8,.3,1);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em;
  padding: 8px 14px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid var(--border); background: var(--surface); color: var(--text);
  transition: border-color .2s ease, transform .2s ease;
}
.lang-toggle:hover { border-color: var(--text-muted); transform: translateY(-1px); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; min-height: 100svh;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: center; gap: clamp(24px, 4vw, 64px);
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(110px, 16vh, 160px) clamp(20px, 4vw, 48px) 80px;
}
.hero-meta { margin-bottom: 20px; }
.hero-title {
  /* Klein genug, dass „Viele Reisen.“ / „Many Trips.“ je eine Zeile bleiben */
  font-size: clamp(2.7rem, 6.2vw, 5.2rem); letter-spacing: -0.015em; margin-bottom: 26px;
}
.line-mask { display: block; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.line { display: block; }
.hero-sub { max-width: 46ch; font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: var(--text-muted); margin-bottom: 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }


/* ---------- Scrapbook-Cluster ---------- */
.hero-visual { position: relative; height: min(72vh, 620px); }
.paper {
  position: absolute; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-paper);
}
.tape {
  position: absolute; width: 86px; height: 26px;
  background: rgba(232,128,74,.4); backdrop-filter: blur(1px);
  box-shadow: 0 1px 2px rgba(42,37,32,.08);
}
.tape-top { top: -13px; left: 50%; transform: translateX(-50%) rotate(-3deg); }
.tape-corner { top: -10px; right: -26px; transform: rotate(40deg); }

.polaroid { padding: 10px 10px 6px; width: clamp(170px, 17vw, 225px); }
.polaroid .photo { display: block; width: 100%; height: auto; border-radius: 2px; }
.polaroid .hand { text-align: center; padding: 4px 0 2px; font-size: 1.3rem; }
.p1 { top: 2%; left: 2%; transform: rotate(-7deg); z-index: 3; }
.p2 { top: 40%; right: 0; transform: rotate(6deg); z-index: 4; }

.trip-card {
  left: 26%; top: 26%; z-index: 5; width: clamp(210px, 21vw, 265px);
  border-radius: var(--radius-lg); padding: 18px 20px; transform: rotate(-3deg);
}
.trip-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.trip-flag { font-size: 1.5rem; }
.chip {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em;
  background: rgba(232,128,74,.14); color: var(--accent);
  padding: 4px 10px; border-radius: 999px; white-space: nowrap;
}
.trip-name { font-size: 2rem; margin-bottom: 2px; }
.trip-dates { font-family: var(--font-mono); font-size: 12.5px; color: var(--text-muted); margin-bottom: 14px; }
.trip-foot { display: flex; justify-content: space-between; align-items: center; }
.avatars { display: flex; }
.avatars i {
  width: 30px; height: 30px; border-radius: 50%; margin-left: -8px;
  display: grid; place-items: center; font-style: normal; font-size: 12px; font-weight: 700;
  background: var(--accent-gradient); color: #fff; border: 2px solid var(--surface);
}
.avatars i:first-child { margin-left: 0; }
.avatars i.more { background: var(--bg); color: var(--text-muted); }
.ministamp { width: 44px; color: var(--accent); opacity: .75; transform: rotate(12deg); }
.ministamp text { font-family: var(--font-mono); font-size: 15px; fill: currentColor; }

.boarding {
  bottom: 4%; left: 6%; z-index: 6; width: clamp(230px, 24vw, 300px);
  padding: 14px 18px 12px; transform: rotate(3deg); border-radius: var(--radius-md);
}
.boarding-head {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em;
  color: var(--text-muted); border-bottom: 1px dashed var(--border);
  padding-bottom: 8px; margin-bottom: 10px;
}
.boarding-route { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.boarding-route strong { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 400; }
.route-line { flex: 1; color: var(--accent); }
.boarding-meta { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 10px; }
.boarding-meta strong { font-size: 13px; color: var(--text); }
.barcode {
  height: 26px; border-radius: 2px;
  background: repeating-linear-gradient(90deg, var(--text) 0 2px, transparent 2px 5px, var(--text) 5px 6px, transparent 6px 11px);
  opacity: .8;
}

.stamp { position: absolute; color: var(--accent); opacity: .8; }
.stamp text { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .3em; fill: currentColor; }
.stamp .stamp-center { font-family: var(--font-heading); font-size: 19px; letter-spacing: .05em; }
.stamp-big { width: clamp(110px, 11vw, 150px); top: -4%; right: 8%; transform: rotate(14deg); z-index: 2; }


/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--surface); transform: rotate(-1.2deg) scale(1.02);
  overflow: hidden; padding: 16px 0; margin: 10px 0 0;
}
.marquee-track { display: flex; width: max-content; will-change: transform; }
.marquee-seg {
  font-family: var(--font-mono); font-size: 14px; letter-spacing: .18em;
  color: var(--text-muted); white-space: nowrap; padding-right: 8px;
}
.marquee-seg b { color: var(--accent); font-weight: 400; }

/* ==========================================================================
   Sections (allgemein)
   ========================================================================== */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(90px, 12vh, 150px) clamp(20px, 4vw, 48px); }
.section-head { max-width: 640px; margin-bottom: clamp(40px, 6vh, 70px); }
.section-head .meta-line { margin-bottom: 16px; }
.section-sub { color: var(--text-muted); font-size: 1.08rem; margin-top: 18px; max-width: 52ch; }

/* ---------- TravelWrap (Story-Karten-Fächer) ---------- */
.wrap-cards {
  display: flex; justify-content: center; align-items: center;
  padding-top: clamp(10px, 3vh, 30px);
}
.wrap-card {
  position: relative;
  width: clamp(200px, 22vw, 250px); aspect-ratio: 9 / 13.5;
  border-radius: var(--radius-lg); padding: 26px 22px;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 8px;
}
.wrap-card .meta-line { font-size: 10.5px; color: var(--accent); }
.wrap-big {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3vw, 2.5rem); line-height: 1.08;
}
.wrap-sub { color: var(--text-muted); font-size: .95rem; }
.wrap-card:nth-child(1) { transform: rotate(-8deg) translateY(20px); z-index: 1; }
.wrap-card:nth-child(2) {
  margin: 0 -10px; transform: translateY(-8px) scale(1.04); z-index: 2;
  box-shadow: 0 2px 3px rgba(42,37,32,.06), 0 28px 56px -18px rgba(42,37,32,.32);
}
.wrap-card:nth-child(3) {
  transform: rotate(8deg) translateY(20px); z-index: 1;
  /* Inhalt nach rechts — die linke Kartenhälfte liegt unter der Mittelkarte */
  align-items: flex-end; text-align: right;
}

/* ---------- Features ---------- */
.cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
/* 5 Karten bewusst als 3 + 2 (zentriert) statt 4 + 1 */
@media (min-width: 981px) {
  .cards { grid-template-columns: repeat(6, 1fr); }
  .card { grid-column: span 2; }
  .card:nth-child(4) { grid-column: 2 / span 2; }
}
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 26px 22px;
  box-shadow: var(--shadow-paper);
  transition: transform .35s cubic-bezier(.2,.8,.3,1), box-shadow .35s ease;
}
.card:hover { transform: translateY(-6px) rotate(-0.6deg) !important; box-shadow: 0 2px 3px rgba(42,37,32,.06), 0 24px 48px -16px rgba(42,37,32,.3); }
.card-icon { font-size: 1.9rem; display: inline-block; margin-bottom: 14px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: .98rem; }
.card-meta { margin-top: 18px; font-size: 10.5px; color: var(--accent); }

/* ---------- Split / Reisekasse ---------- */
.split {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 80px); align-items: center;
}
.split-copy .meta-line { margin-bottom: 16px; }
/* DE „Kosten teilen, / statt Freundschaften verlieren.“ — nur so passt es in zwei Zeilen */
html[lang="de"] .split-copy h2 { font-size: clamp(1.8rem, 2.7vw, 2rem); }
.ticklist { list-style: none; margin-top: 26px; display: grid; gap: 12px; }
.ticklist li { padding-left: 34px; position: relative; color: var(--text); font-size: 1.02rem; }
.ticklist li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent-gradient); color: #fff;
  font-size: 12px; font-weight: 700; display: grid; place-items: center;
}

.phone-wrap { display: grid; place-items: center; perspective: 1200px; }
.phone {
  position: relative; width: min(320px, 82vw); border-radius: 44px;
  background: var(--night); padding: 12px;
  box-shadow: 0 2px 4px rgba(42,37,32,.2), 0 40px 80px -24px rgba(42,37,32,.45);
  transform: rotate(3deg);
}
.tape-phone { top: -14px; left: 50%; transform: translateX(-50%) rotate(-2deg); z-index: 2; }
.phone-screen {
  background: var(--bg); border-radius: 34px; overflow: hidden;
  padding: 22px 16px 16px; min-height: 560px;
  display: flex; flex-direction: column; gap: 14px;
}
.app-head { display: flex; justify-content: space-between; align-items: center; }
.app-trip { font-family: var(--font-heading); font-size: 1.5rem; }
.app-flag { font-size: 1.1rem; }
.balance-card {
  background: var(--accent-gradient); border-radius: var(--radius-lg);
  color: #fff; padding: 18px;
  box-shadow: 0 10px 24px -10px rgba(212,85,46,.55);
}
.balance-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; opacity: .85; margin-bottom: 6px; }
.balance-amount { font-size: 1.02rem; }
.balance-amount strong { font-family: var(--font-heading); font-size: 1.7rem; font-weight: 400; }
.expense-list { display: flex; flex-direction: column; gap: 8px; }
.expense-row {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 11px 13px;
}
.ex-emoji { font-size: 1.2rem; }
.ex-body { flex: 1; display: flex; flex-direction: column; line-height: 1.3; }
.ex-body strong { font-size: .92rem; font-weight: 600; }
.ex-body span { font-size: .78rem; color: var(--text-muted); }
.ex-amount { font-family: var(--font-mono); font-size: .85rem; }
.settle-card {
  margin-top: auto; background: var(--surface); border: 1px dashed var(--accent-soft);
  border-radius: var(--radius-lg); padding: 14px 16px;
}
.settle-card .meta-line { font-size: 10px; margin-bottom: 6px; }
.settle-row { font-size: .95rem; margin-bottom: 10px; }
.settle-btn {
  width: 100%; border: 0; cursor: pointer; padding: 11px;
  border-radius: 999px; font-weight: 700; font-size: .88rem;
  background: var(--accent-gradient); color: #fff; font-family: var(--font-body);
}

/* ==========================================================================
   Deine Welt (cinematic dark + Globus)
   ========================================================================== */
.world { background: var(--night); color: var(--night-text); position: relative; height: 250vh; }
.world-sticky {
  position: sticky; top: 0; height: 100svh; overflow: hidden;
  display: grid; align-items: center;
}
.world-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 55% at 72% 46%, rgba(232,128,74,.22), transparent 65%);
}
.globe-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%; display: block;
  touch-action: pan-y;
}
.world-ui {
  position: relative; z-index: 2; pointer-events: none;
  max-width: var(--maxw); width: 100%; margin: 0 auto;
  padding: 100px clamp(20px, 4vw, 48px);
}
.world-meta { color: var(--glow); margin-bottom: 18px; }
.world-title { font-size: clamp(2.1rem, 4.6vw, 3.6rem); margin-bottom: 20px; }
.world-title em { color: var(--glow); }
.world-sub { color: var(--night-muted); max-width: 44ch; font-size: 1.06rem; }
.world-counter { display: flex; align-items: baseline; gap: 12px; margin-top: 44px; }
.counter-num {
  font-family: var(--font-heading); font-size: clamp(4rem, 9vw, 7rem);
  color: var(--glow); line-height: 1;
  text-shadow: 0 0 40px rgba(232,128,74,.4);
}
.counter-total { font-family: var(--font-mono); font-size: 1rem; letter-spacing: .1em; color: var(--night-muted); }
.world-coords { margin-top: 18px; color: var(--night-muted); }

/* ==========================================================================
   So geht's
   ========================================================================== */
.steps-grid {
  position: relative;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  padding-top: clamp(40px, 8vh, 90px);
}
.steps-path {
  position: absolute; top: 0; left: 0; width: 100%; height: clamp(90px, 14vh, 160px);
  color: var(--accent); opacity: .9;
}
.step {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px 28px;
  box-shadow: var(--shadow-paper);
}
.step-num {
  display: inline-grid; place-items: center; width: 54px; height: 54px;
  border: 2px dashed var(--accent); border-radius: 50%; color: var(--accent);
  font-family: var(--font-mono); font-size: 15px; letter-spacing: .06em;
  margin-bottom: 18px; transform: rotate(-6deg);
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: .98rem; }

/* ==========================================================================
   CTA + Footer
   ========================================================================== */
.cta { padding: clamp(90px, 14vh, 170px) clamp(20px, 4vw, 48px); }
.cta-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.cta-inner .section-sub { max-width: none; }
.cta-title { font-size: clamp(2.2rem, 4.6vw, 3.6rem); margin-bottom: 16px; }
.cta-pass { position: relative; margin: 46px auto 0; max-width: 520px; padding: 20px 26px 0; border-radius: var(--radius-lg); text-align: left; }
.cta-pass-body { padding: 18px 0 24px; }
.cta-pass-route { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.cta-pass-route strong { font-family: var(--font-heading); font-size: 1.9rem; font-weight: 400; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-tear {
  border-top: 2px dashed var(--border); position: relative; margin: 0 -26px;
}
.cta-tear::before, .cta-tear::after {
  content: ''; position: absolute; top: -11px; width: 20px; height: 20px;
  border-radius: 50%; background: var(--bg); border: 1px solid var(--border);
}
.cta-tear::before { left: -11px; clip-path: inset(0 0 0 50%); }
.cta-tear::after { right: -11px; clip-path: inset(0 50% 0 0); }
.cta-stub { padding: 14px 0; text-align: center; font-size: 11px; }

/* ---------- Hero-Badge (Beta-Hinweis) ---------- */
.hero-badge {
  display: inline-block; margin-bottom: 18px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(232,128,74,.14); color: var(--accent);
  border: 1px solid rgba(212,85,46,.25);
  font-size: 11px; letter-spacing: .12em;
}

/* ---------- Warteliste-Formular ---------- */
.waitlist-form { padding: 6px 0 24px; }
.waitlist-row { display: flex; flex-wrap: wrap; gap: 12px; }
.waitlist-input {
  flex: 1 1 220px; min-width: 0;
  padding: 14px 16px;
  font-family: var(--font-body); font-size: 15px;
  color: var(--text); background: var(--surface);
  border: 1.5px solid var(--border); border-radius: 999px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.waitlist-input::placeholder { color: var(--text-muted); }
.waitlist-input:focus {
  outline: none; border-color: var(--accent-soft);
  box-shadow: 0 0 0 3px rgba(232,128,74,.18);
}
.waitlist-btn { flex: 0 0 auto; white-space: nowrap; }
.waitlist-btn:disabled { opacity: .6; cursor: default; transform: none; }
.waitlist-captcha { margin-top: 14px; min-height: 65px; }
.waitlist-status {
  min-height: 20px; margin-top: 12px;
  font-size: 14px; color: var(--text-muted);
}
.waitlist-status[data-kind="ok"] { color: var(--accent); }
.waitlist-status[data-kind="err"] { color: #B23A2A; }
.waitlist-note { margin-top: 6px; text-align: left; }
@media (max-width: 520px) {
  .waitlist-row { flex-direction: column; }
  /* Spalten-Layout: flex-basis 220px wäre sonst die HÖHE → Feld normal halten */
  .waitlist-input { flex: 0 0 auto; width: 100%; }
  .waitlist-btn { width: 100%; }
}

.footer {
  border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
  max-width: var(--maxw); margin: 0 auto; padding: 34px clamp(20px, 4vw, 48px) 44px;
}
.footer-brand { font-family: var(--font-heading); font-size: 1.25rem; }
.footer-claim { color: var(--accent); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 120px; min-height: auto; gap: 40px; }
  .hero-visual { height: 440px; max-width: 520px; margin: 0 auto; width: 100%; }
  .split { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; max-width: 460px; }
  .wrap-cards { flex-direction: column; gap: 18px; }
  .wrap-card { width: min(280px, 80vw); aspect-ratio: auto; min-height: 200px; }
  .wrap-card:nth-child(1) { transform: rotate(-3deg); }
  .wrap-card:nth-child(2) { margin: 0; transform: rotate(2deg); }
  .wrap-card:nth-child(3) { transform: rotate(-2deg); }
  .steps-path { display: none; }
  .world { height: 200vh; }
  .world-ui { padding-top: 64px; padding-bottom: 72px; }
  .world-sticky { align-items: end; }
  /* Dunkler Verlauf unter dem Text: Globus oben frei, Text unten immer lesbar */
  .world-sticky::after {
    content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 1;
    background: linear-gradient(to bottom, transparent 36%, rgba(34,30,26,.72) 60%, var(--night) 86%);
  }
  .world-glow { background: radial-gradient(ellipse 96% 38% at 50% 24%, rgba(232,128,74,.20), transparent 68%); }
  .world-title { font-size: clamp(1.85rem, 6.6vw, 2.6rem); margin-bottom: 16px; }
  .world-sub { max-width: none; font-size: 1rem; }
  .world-counter { margin-top: 30px; }
}
@media (max-width: 520px) {
  .hero-visual { height: 470px; }
  .p1 { top: 0; left: -5%; }
  .p2 { top: 34%; }
  .trip-card { left: 14%; top: 17%; }
  .boarding { left: -2%; bottom: 1%; }
  .stamp-big { right: -1%; top: -3%; }
}
/* Sehr schmale Phones (iPhone SE): Nav-Leiste kompakter, „App laden“ einzeilig */
@media (max-width: 380px) {
  .nav { padding-left: 16px; padding-right: 16px; gap: 10px; }
  .nav .btn-sm { padding: 9px 15px; }
  .lang-toggle { padding: 7px 11px; }
  .nav-brand { font-size: 1.2rem; }
}

/* ==========================================================================
   Reduced Motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; }
}
