/* ═══════════════════════════════════════════════════════════════
   AICQ Website 2.0 — „Globus-Look" 1:1 aus der App
   Basis: Startbildschirm der App (dunkler Globus, Sage-Grün #8FBC8F,
   weiße Pill-Navigation, Blüten-Logo, WindowFrame mit rotem X).
   2026-07-07 — Neubau. Alte Version liegt in /Website1.
   Kompatibel mit den Unterseiten (.topbar, .window, .legal, …).
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Farbwelt der App */
  --bg-deep: #04070a;          /* Seitenhintergrund (Globus-Nacht) */
  --bg-tint: #071009;          /* grünliche Tiefe */
  --frame-bg: #0B141A;         /* WindowFrame der App */
  --surface-card: #1F2C34;     /* Karten (Dark Mode der App) */
  --surface-deep: #162128;
  --header-bg: #1F2C34;
  --accent: #8FBC8F;           /* Sage-Grün — Hauptakzent der App */
  --accent-2: #6B9E6B;
  --accent-bright: #A8D5A8;
  --accent-soft: rgba(143, 188, 143, 0.13);
  --accent-line: rgba(143, 188, 143, 0.30);
  --ai-blue: #89CFF0;          /* „AI" im Logo */
  --dot-blue: #4a9be0;         /* Nutzerpunkte auf dem Globus */
  --nav-white: #f4f6f5;        /* weiße Pill-Navi der App */
  --nav-icon: #9aa0a6;
  --red: #f87171;
  --amber: #f2b01e;
  --text: rgba(255, 255, 255, 0.94);
  --text-dim: rgba(255, 255, 255, 0.64);
  --text-faint: rgba(255, 255, 255, 0.42);
  --border: rgba(255, 255, 255, 0.09);
  --radius: 22px;
  --radius-sm: 16px;
  --shadow-window: 0 30px 80px -20px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255,255,255,0.04);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(60% 42% at 18% -4%, rgba(143,188,143,0.10), transparent 65%),
    radial-gradient(50% 38% at 86% 12%, rgba(74,155,224,0.07), transparent 70%),
    radial-gradient(70% 55% at 50% 115%, rgba(143,188,143,0.08), transparent 70%),
    linear-gradient(165deg, var(--bg-deep), var(--bg-tint) 55%, #050a0d);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(143,188,143,0.35); color: #fff; }

a { color: var(--accent); }
a:hover { color: var(--accent-bright); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 6px; }

img { max-width: 100%; display: block; }

/* ── Sternenfeld (Canvas, dezent hinter allem) ── */
/* z-index:-1 legt den Canvas hinter den Inhalt — KEINE Regel auf body-Kinder!
   (body > *:not(#stars) hatte ID-Spezifität und hebelte position:fixed
   von Dock/Nav aus → Menü klebte oben im Header. 2026-07-07 gefixt.) */
#stars {
  position: fixed; inset: 0; width: 100%; height: 100%;
  z-index: -1; pointer-events: none; opacity: 0.55;
}

/* ── Scroll-Fortschritt ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--ai-blue));
  z-index: 200; border-radius: 0 3px 3px 0;
  box-shadow: 0 0 12px rgba(143,188,143,0.7);
}

/* ── Skip-Link ── */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: #0B141A; font-weight: 700;
  padding: 10px 16px; border-radius: 0 0 12px 0; z-index: 999;
}
.skip-link:focus { left: 0; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION — weiße Pill wie die Menüleiste der App
   ═══════════════════════════════════════════════════════════════ */
.site-nav {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
  z-index: 100;
  display: flex; align-items: center; gap: 4px;
  background: rgba(244, 246, 245, 0.96);
  border-radius: 999px;
  padding: 7px 10px 7px 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255,255,255,0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  max-width: calc(100vw - 24px);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.site-nav.hidden-up { transform: translateX(-50%) translateY(-84px); }

.nav-brand {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 16px; letter-spacing: 0.05em;
  color: #1c2b23; text-decoration: none; padding: 4px 10px 4px 4px;
}
.nav-brand:hover { color: #1c2b23; }
.nav-brand .bloom { width: 30px; height: 30px; flex-shrink: 0; transition: transform 0.5s var(--ease-spring); }
.nav-brand:hover .bloom { transform: rotate(72deg); }
.nav-brand .ai { color: #3b8bc4; }

.site-nav .links { display: flex; align-items: center; gap: 2px; }
.site-nav .links a {
  color: #5b6660; text-decoration: none; font-size: 13.5px; font-weight: 650;
  padding: 8px 13px; border-radius: 999px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.site-nav .links a:hover { background: rgba(143,188,143,0.16); color: #24402c; }

.site-nav .nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0B141A !important; font-weight: 800; font-size: 13.5px;
  padding: 9px 18px; border-radius: 999px; text-decoration: none;
  margin-left: 4px; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(143,188,143,0.45);
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s;
}
.site-nav .nav-cta:hover { transform: translateY(-1px) scale(1.03); box-shadow: 0 8px 22px rgba(143,188,143,0.55); }
.site-nav .nav-cta:active { transform: scale(0.97); }

.site-nav .lang-pill {
  display: inline-flex; gap: 1px; margin-left: 6px;
  background: rgba(0,0,0,0.06); border-radius: 999px; padding: 2px;
}
.site-nav .lang-pill a {
  color: #7b857f; text-decoration: none; font-size: 11.5px; font-weight: 800;
  padding: 5px 9px; border-radius: 999px; line-height: 1;
}
.site-nav .lang-pill a[aria-current="page"] { background: #fff; color: #24402c; box-shadow: 0 1px 4px rgba(0,0,0,0.15); }

/* Mobile: App-Feeling — Icon-Pill unten wie in der App */
.dock {
  display: none;
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 100;
  background: rgba(244, 246, 245, 0.97);
  border-radius: 999px; height: 62px;
  box-shadow: 0 14px 44px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(255,255,255,0.6);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  align-items: center; justify-content: space-around; padding: 0 10px;
}
.dock a {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  color: var(--nav-icon); text-decoration: none; font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.02em; padding: 4px 6px; border-radius: 14px;
  transition: color 0.2s, transform 0.2s var(--ease-spring);
}
.dock a:active { transform: scale(0.9); }
.dock a svg { width: 21px; height: 21px; }
.dock a.active, .dock a:hover { color: #47714a; }
.dock .dock-bloom {
  margin-top: -26px;
  width: 56px; height: 56px; border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, #fff, #eef4ee 70%);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 0 5px rgba(143,188,143,0.28);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s var(--ease-spring);
}
.dock .dock-bloom svg { width: 36px; height: 36px; }
.dock .dock-bloom:active { transform: scale(0.92); }

@media (max-width: 880px) {
  .site-nav .links { display: none; }
  .site-nav { top: 10px; padding: 6px 10px 6px 7px; }
  .dock { display: flex; }
  body { padding-bottom: 86px; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  max-width: 1080px; margin: 0 auto; padding: 118px 22px 30px;
  display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 44px; align-items: center;
  min-height: 92vh;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent); font-weight: 750; font-size: 12.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid var(--accent-line); border-radius: 999px;
  padding: 7px 14px; margin-bottom: 18px;
  background: rgba(143,188,143,0.07);
}
.eyebrow .pulse-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 rgba(143,188,143,0.6);
  animation: pulseDot 2.2s infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(143,188,143,0.55); }
  70% { box-shadow: 0 0 0 9px rgba(143,188,143,0); }
  100% { box-shadow: 0 0 0 0 rgba(143,188,143,0); }
}

.hero h1 {
  font-size: clamp(36px, 5.6vw, 62px); font-weight: 850; line-height: 1.06;
  letter-spacing: 0.015em;
}
.hero h1 .grad {
  background: linear-gradient(100deg, var(--accent-bright) 10%, var(--accent) 45%, var(--ai-blue) 105%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .tagline {
  color: var(--text-dim); font-size: clamp(15.5px, 2vw, 18.5px);
  max-width: 500px; margin-top: 18px;
}
.hero .tagline strong { color: var(--text); font-weight: 650; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.cta-primary, .cta-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 750; font-size: 15px; padding: 14px 24px; border-radius: 16px;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.25s, background 0.2s, border-color 0.2s;
}
.cta-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0B141A; position: relative; overflow: hidden;
  box-shadow: 0 12px 34px -8px rgba(143,188,143,0.65);
}
.cta-primary::after {
  content: ""; position: absolute; top: 0; left: -80%; width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg); transition: left 0.6s var(--ease-out);
}
.cta-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 44px -8px rgba(143,188,143,0.8); color: #0B141A; }
.cta-primary:hover::after { left: 130%; }
.cta-primary:active { transform: translateY(0) scale(0.97); }
.cta-primary:disabled { opacity: 0.6; cursor: default; transform: none; }
.cta-ghost { background: rgba(255,255,255,0.03); color: var(--text); border-color: var(--border); }
.cta-ghost:hover { border-color: var(--accent-line); color: var(--accent-bright); background: rgba(143,188,143,0.06); transform: translateY(-2px); }

.stores { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.store-badge {
  display: inline-flex; flex-direction: column; align-items: flex-start;
  border: 1px solid var(--border); border-radius: 14px; padding: 9px 16px;
  background: rgba(31,44,52,0.65); color: var(--text-dim); text-decoration: none; min-width: 172px;
  transition: border-color 0.25s, transform 0.25s var(--ease-out), background 0.25s;
}
.store-badge:hover { border-color: var(--accent-line); transform: translateY(-2px); background: rgba(31,44,52,0.9); }
.store-badge .small { font-size: 10px; letter-spacing: 0.09em; text-transform: uppercase; }
.store-badge .big { font-size: 16px; font-weight: 750; color: #fff; }
.store-badge .soon-tag { font-size: 9.5px; color: var(--accent); font-weight: 800; letter-spacing: 0.08em; margin-top: 2px; }

.hero-proof { display: flex; align-items: center; gap: 10px; margin-top: 24px; color: var(--text-faint); font-size: 12.5px; }
.hero-proof .dots { display: inline-flex; }
.hero-proof .dots span {
  width: 9px; height: 9px; border-radius: 50%; background: var(--dot-blue);
  margin-left: -3px; box-shadow: 0 0 8px rgba(74,155,224,0.8);
  animation: dotPulse 3s ease-in-out infinite;
}
.hero-proof .dots span:nth-child(2) { animation-delay: 0.5s; background: var(--accent); box-shadow: 0 0 8px rgba(143,188,143,0.8); }
.hero-proof .dots span:nth-child(3) { animation-delay: 1s; }
@keyframes dotPulse { 0%,100% { opacity: 0.45; } 50% { opacity: 1; } }

/* ── Hero rechts: Telefon mit echtem App-Screenshot ── */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 560px; }

.orbit {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 560px; height: 560px; max-width: 96vw; max-height: 96vw;
  pointer-events: none; opacity: 0.9;
}
.orbit .ring { transform-origin: 50% 50%; animation: orbitSpin 40s linear infinite; }
.orbit .ring--rev { animation: orbitSpin 55s linear infinite reverse; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }

.phone-wrap { position: relative; animation: phoneFloat 7s ease-in-out infinite; }
@keyframes phoneFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.phone-glow {
  position: absolute; inset: -12%;
  background: radial-gradient(48% 44% at 50% 48%, rgba(143,188,143,0.28), rgba(74,155,224,0.10) 55%, transparent 72%);
  filter: blur(10px); z-index: 0; pointer-events: none;
  animation: glowPulse 5s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100% { opacity: 0.75; } 50% { opacity: 1; } }

.phone {
  position: relative; z-index: 2;
  width: 258px; max-width: 68vw;
  background: #04060b; border-radius: 42px; padding: 9px;
  box-shadow: 0 40px 90px -12px rgba(0,0,0,0.75), inset 0 0 0 1.5px rgba(255,255,255,0.09);
}
.phone__screen {
  border-radius: 34px; overflow: hidden; background: #060a07;
  aspect-ratio: 9 / 18.6;
}
.phone__screen img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.phone__notch {
  position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 20px; background: #04060b; border-radius: 0 0 14px 14px; z-index: 6;
}

/* Schwebende Feature-Chips um das Telefon */
.float-chip {
  position: absolute; z-index: 5;
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(31,44,52,0.92); border: 1px solid var(--accent-line);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: 999px; padding: 8px 14px;
  font-size: 12.5px; font-weight: 700; color: var(--text);
  box-shadow: 0 14px 34px rgba(0,0,0,0.5);
  animation: chipFloat 6s ease-in-out infinite;
  white-space: nowrap;
}
.float-chip .em { font-size: 15px; }
.chip-1 { top: 8%; left: -8%; animation-delay: 0.5s; }
.chip-2 { top: 34%; right: -12%; animation-delay: 1.6s; }
.chip-3 { bottom: 26%; left: -14%; animation-delay: 2.7s; }
@keyframes chipFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* Mini-Chat-Fenster, das live „tippt" */
.hero-chat {
  position: absolute; right: -6%; bottom: -3%; z-index: 6;
  width: 265px;
  background: var(--frame-bg); border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-window);
  animation: chipFloat 8s ease-in-out infinite; animation-delay: 1s;
}
.hero-chat .bar {
  display: flex; align-items: center; justify-content: space-between;
  height: 36px; padding: 0 12px; background: var(--header-bg);
  font-size: 12px; font-weight: 750; letter-spacing: 0.04em;
}
.hero-chat .bar .x {
  width: 20px; height: 20px; border-radius: 6px; background: rgba(248,113,113,0.85);
  color: #fff; font-size: 10px; font-weight: 800; display: flex; align-items: center; justify-content: center;
}
.hero-chat .body { padding: 12px; display: flex; flex-direction: column; gap: 8px; min-height: 150px; }

.bubble {
  max-width: 88%; padding: 8px 12px; border-radius: 14px; font-size: 12.5px; line-height: 1.45;
  opacity: 0; transform: translateY(8px) scale(0.96);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-spring);
}
.bubble.show { opacity: 1; transform: none; }
.bubble--in { background: var(--surface-card); border-bottom-left-radius: 5px; align-self: flex-start; }
.bubble--out { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #0B141A; font-weight: 550; border-bottom-right-radius: 5px; align-self: flex-end; }
.bubble--fire { background: rgba(249,115,22,0.13); border: 1px solid rgba(249,115,22,0.4); align-self: flex-start; border-bottom-left-radius: 5px; }
.bubble--ninja { background: rgba(143,188,143,0.14); border: 1px dashed rgba(143,188,143,0.5); align-self: flex-end; border-bottom-right-radius: 5px; }
.bubble .meta { display: block; font-size: 9.5px; opacity: 0.55; margin-top: 2px; text-align: right; }

.typing { display: inline-flex; gap: 4px; padding: 10px 13px; background: var(--surface-card); border-radius: 14px; border-bottom-left-radius: 5px; align-self: flex-start; opacity: 0; transition: opacity 0.3s; }
.typing.show { opacity: 1; }
.typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--text-faint); animation: typingBlink 1.2s infinite; }
.typing span:nth-child(2) { animation-delay: 0.18s; }
.typing span:nth-child(3) { animation-delay: 0.36s; }
@keyframes typingBlink { 0%,60%,100% { opacity: 0.25; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 104px; min-height: 0; gap: 30px; }
  .hero .eyebrow { margin-left: auto; margin-right: auto; }
  .hero .tagline { margin-left: auto; margin-right: auto; }
  .hero-actions, .stores { justify-content: center; }
  .hero-proof { justify-content: center; }
  .hero-visual { flex-direction: column; gap: 12px; min-height: 0; margin-top: 26px; }
  .hero-chat { position: static; width: 100%; max-width: 330px; margin: 16px auto 0; animation: none; }
  .chip-1 { left: 0%; top: 4%; } .chip-2 { right: 0%; } .chip-3 { left: 2%; bottom: 18%; }
}

/* ═══════════════════════════════════════════════════════════════
   TRUST-LEISTE
   ═══════════════════════════════════════════════════════════════ */
.trust-bar {
  max-width: 1020px; margin: 10px auto 0; padding: 0 20px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
}
.trust-item {
  flex: 1 1 150px; max-width: 196px;
  background: linear-gradient(170deg, rgba(31,44,52,0.85), rgba(22,33,40,0.85));
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 16px 14px; text-align: center;
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}
.trust-item:hover { transform: translateY(-4px); border-color: var(--accent-line); }
.trust-item strong { display: block; color: var(--accent); font-size: 19px; font-weight: 800; letter-spacing: 0.02em; }
.trust-item span { color: var(--text-dim); font-size: 12px; }

/* ── Sprachen-Marquee ── */
.lang-marquee { max-width: 100%; overflow: hidden; margin: 34px auto 0; padding: 12px 0; position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.lang-track { display: flex; gap: 12px; width: max-content; animation: marquee 36s linear infinite; }
.lang-marquee:hover .lang-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.lang-chip {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  border: 1px solid var(--border); border-radius: 999px; padding: 8px 16px;
  color: var(--text-dim); font-size: 13px; font-weight: 650;
  background: rgba(31,44,52,0.5);
}
.lang-chip .fl { font-size: 15px; }

/* ═══════════════════════════════════════════════════════════════
   SEKTIONEN
   ═══════════════════════════════════════════════════════════════ */
.section { max-width: 1020px; margin: 92px auto 0; padding: 0 20px; scroll-margin-top: 96px; }
.section-eyebrow {
  color: var(--accent); font-weight: 750; font-size: 12.5px;
  letter-spacing: 0.16em; text-transform: uppercase; text-align: center;
}
.section-title {
  text-align: center; font-size: clamp(26px, 4.2vw, 40px); font-weight: 830;
  letter-spacing: 0.015em; margin: 8px 0 14px; line-height: 1.15;
}
.section-sub { text-align: center; color: var(--text-dim); font-size: 15.5px; max-width: 640px; margin: 0 auto 36px; }

/* ── Fenster-Karte (WindowFrame der App) ── */
.window {
  max-width: 1020px; margin: 26px auto; background: var(--frame-bg);
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-window);
  overflow: hidden; scroll-margin-top: 96px;
}
.window--narrow { max-width: 800px; }
.window__titlebar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 16px; height: 46px; background: var(--header-bg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}
.window__title { font-weight: 750; font-size: 14px; letter-spacing: 0.04em; color: #fff; display: flex; align-items: center; gap: 9px; }
.window__title::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 8px rgba(143,188,143,0.9);
}
.window__x {
  width: 28px; height: 28px; border-radius: 9px; border: 1px solid rgba(248, 113, 113, 0.3);
  background: rgba(248, 113, 113, 0.85); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 750; text-decoration: none; line-height: 1;
  transition: transform 0.2s var(--ease-spring), background 0.2s;
}
.window__x:hover { background: #ef4444; color: #fff; transform: rotate(90deg); }
.window__body { padding: 30px 28px; }
@media (max-width: 600px) { .window__body { padding: 24px 16px; } }

/* ── Schritte ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; position: relative; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: linear-gradient(170deg, var(--surface-card), var(--surface-deep));
  border: 1px solid var(--border); border-radius: 20px; padding: 26px 22px;
  position: relative; overflow: hidden;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}
.step:hover { transform: translateY(-5px); border-color: var(--accent-line); box-shadow: 0 22px 50px -16px rgba(0,0,0,0.7); }
.step::after {
  content: ""; position: absolute; top: -40%; right: -30%; width: 70%; height: 90%;
  background: radial-gradient(closest-side, rgba(143,188,143,0.10), transparent);
  pointer-events: none;
}
.step-num {
  width: 42px; height: 42px; border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0B141A; font-weight: 850; font-size: 19px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
  box-shadow: 0 8px 20px -6px rgba(143,188,143,0.6);
}
.step h3 { font-size: 17.5px; margin-bottom: 6px; }
.step p { color: var(--text-dim); font-size: 14px; }
.step .hint { margin-top: 12px; font-size: 12px; color: var(--accent); font-weight: 700; letter-spacing: 0.03em; }

/* ── Feature-Kacheln ── */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: 14px; margin-top: 6px; }
.feature {
  background: linear-gradient(170deg, var(--surface-card), var(--surface-deep));
  border: 1px solid var(--border); border-radius: 18px; padding: 20px 18px;
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}
.feature:hover { transform: translateY(-4px); border-color: var(--accent-line); box-shadow: 0 18px 44px -14px rgba(0,0,0,0.65); }
.feature .icon {
  width: 46px; height: 46px; border-radius: 15px; font-size: 21px;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
  transition: transform 0.3s var(--ease-spring);
}
.feature:hover .icon { transform: scale(1.12) rotate(-6deg); }
.feature h3 { font-size: 15.5px; margin-bottom: 4px; }
.feature p { font-size: 13.5px; color: var(--text-dim); }

/* ═══════════════════════════════════════════════════════════════
   LIVE-DEMO — „Was sieht der Server?"
   ═══════════════════════════════════════════════════════════════ */
.e2e-demo { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 18px; }
@media (max-width: 760px) { .e2e-demo { grid-template-columns: 1fr; } }
.e2e-pane {
  border-radius: 16px; border: 1px solid var(--border); overflow: hidden;
  background: var(--surface-deep);
}
.e2e-pane .pane-head {
  display: flex; align-items: center; gap: 8px; padding: 10px 14px;
  font-size: 12.5px; font-weight: 750; letter-spacing: 0.05em; text-transform: uppercase;
}
.e2e-pane--you .pane-head { background: rgba(143,188,143,0.12); color: var(--accent); }
.e2e-pane--server .pane-head { background: rgba(248,113,113,0.10); color: var(--red); }
.e2e-pane .pane-body { padding: 16px 14px; min-height: 108px; display: flex; align-items: center; }
.e2e-plain {
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #0B141A;
  font-weight: 550; font-size: 14px; padding: 10px 14px;
  border-radius: 14px; border-bottom-right-radius: 5px; margin-left: auto;
  max-width: 100%; word-break: break-word;
  transition: transform 0.2s var(--ease-spring);
}
.e2e-plain.pop { animation: popIn 0.25s var(--ease-spring); }
@keyframes popIn { from { transform: scale(0.9); } to { transform: scale(1); } }
.e2e-cipher {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12.5px; color: #7fd08a; word-break: break-all; line-height: 1.6;
  text-shadow: 0 0 10px rgba(127,208,138,0.35);
  max-width: 100%;
}
.e2e-cipher .lock { color: var(--red); font-family: inherit; }
.e2e-input-row { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.e2e-input-row input {
  flex: 1 1 240px; min-width: 0; background: var(--surface-deep);
  border: 1px solid var(--border); border-radius: 14px; padding: 13px 16px;
  color: var(--text); font-size: 15px; outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.e2e-input-row input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(143,188,143,0.15); }
.e2e-note { margin-top: 14px; font-size: 13px; color: var(--text-faint); display: flex; gap: 8px; align-items: flex-start; }
.e2e-note .k { color: var(--accent); font-weight: 700; }

/* P2P-Diagramm */
.p2p-diagram { margin-top: 26px; padding: 22px 16px 14px; border-top: 1px dashed var(--border); }
.p2p-svg { width: 100%; max-width: 620px; margin: 0 auto; display: block; }
.p2p-beam { stroke-dasharray: 8 10; animation: beamFlow 1.2s linear infinite; }
@keyframes beamFlow { to { stroke-dashoffset: -18; } }
.p2p-caption { text-align: center; color: var(--text-dim); font-size: 13.5px; margin-top: 10px; }
.p2p-caption strong { color: var(--accent); }

/* ═══════════════════════════════════════════════════════════════
   APP-SHOWCASE — Fenster-Tabs mit App-Navigationsleiste
   ═══════════════════════════════════════════════════════════════ */
.apptabs { margin-top: 20px; }
.apptabs-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 4px;
  background: var(--nav-white); border-radius: 999px; height: 60px;
  max-width: 560px; margin: 0 auto; padding: 0 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.55);
  position: relative;
}
.apptab {
  appearance: none; background: none; border: 0; cursor: pointer;
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--nav-icon); position: relative;
  transition: color 0.25s, background 0.25s, transform 0.2s var(--ease-spring);
}
.apptab svg { width: 22px; height: 22px; }
.apptab:hover { color: #47714a; transform: scale(1.1); }
.apptab:active { transform: scale(0.9); }
.apptab[aria-selected="true"] { color: #2e5232; background: rgba(143,188,143,0.22); }
.apptab .badge {
  position: absolute; top: 2px; right: 0; min-width: 15px; height: 15px; padding: 0 4px;
  border-radius: 999px; background: #f04438; color: #fff; font-size: 9px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
.apptab--bloom {
  width: 54px; height: 54px; margin-top: -18px; border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, #fff, #edf3ed 72%);
  box-shadow: 0 8px 22px rgba(0,0,0,0.35), 0 0 0 5px rgba(143,188,143,0.25);
}
.apptab--bloom svg { width: 34px; height: 34px; }
.apptab--bloom[aria-selected="true"] { box-shadow: 0 8px 22px rgba(0,0,0,0.35), 0 0 0 5px rgba(143,188,143,0.55); background: radial-gradient(circle at 50% 42%, #fff, #e2efe2 72%); }

.apptabs-stage {
  max-width: 740px; margin: 26px auto 0; position: relative; min-height: 240px;
}
.apppanel {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: 88px 1fr; gap: 20px; align-items: start;
  background: linear-gradient(170deg, var(--surface-card), var(--surface-deep));
  border: 1px solid var(--border); border-radius: 20px; padding: 26px 24px;
  opacity: 0; transform: translateY(14px) scale(0.985); pointer-events: none;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.apppanel.active { opacity: 1; transform: none; pointer-events: auto; position: relative; }
.apppanel .pic {
  width: 88px; height: 88px; border-radius: 24px; font-size: 38px;
  background: var(--accent-soft); border: 1px solid var(--accent-line);
  display: flex; align-items: center; justify-content: center;
}
.apppanel h3 { font-size: 19px; margin-bottom: 6px; }
.apppanel h3 .tag { font-size: 10.5px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); border: 1px solid var(--accent-line); padding: 3px 8px; border-radius: 999px; margin-left: 8px; vertical-align: 3px; }
.apppanel p { color: var(--text-dim); font-size: 14.5px; }
.apppanel ul { margin: 10px 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.apppanel li {
  font-size: 12px; font-weight: 650; color: var(--accent);
  background: rgba(143,188,143,0.09); border: 1px solid var(--accent-line);
  padding: 5px 11px; border-radius: 999px;
}
@media (max-width: 640px) {
  .apppanel { grid-template-columns: 1fr; text-align: center; }
  .apppanel .pic { margin: 0 auto; }
  .apppanel ul { justify-content: center; }
  .apptabs-bar { padding: 0 12px; height: 56px; }
}
.apptabs-progress {
  height: 3px; max-width: 560px; margin: 14px auto 0; border-radius: 3px;
  background: rgba(255,255,255,0.07); overflow: hidden;
}
.apptabs-progress i { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--accent), var(--ai-blue)); border-radius: 3px; }

/* ═══════════════════════════════════════════════════════════════
   VERGLEICH
   ═══════════════════════════════════════════════════════════════ */
.compare-wrap { overflow-x: auto; border-radius: 18px; border: 1px solid var(--border); -webkit-overflow-scrolling: touch; box-shadow: var(--shadow-window); }
.compare { width: 100%; border-collapse: collapse; min-width: 580px; background: var(--frame-bg); }
.compare th, .compare td { padding: 14px 15px; text-align: center; font-size: 13.5px; border-bottom: 1px solid var(--border); }
.compare thead th { background: var(--header-bg); color: #fff; font-size: 13px; letter-spacing: 0.03em; position: sticky; top: 0; }
.compare tbody th[scope="row"] { text-align: left; color: var(--text); font-weight: 620; }
.compare td { color: var(--text-dim); }
.compare .own { background: rgba(143,188,143,0.10); color: var(--accent); font-weight: 800; }
.compare thead th.own { background: rgba(143,188,143,0.20); color: var(--accent-bright); }
.compare tbody tr { transition: background 0.2s; }
.compare tbody tr:hover { background: rgba(255,255,255,0.025); }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: none; }
.compare .yes { color: var(--accent); font-weight: 800; }
.compare .no { color: var(--text-faint); }
.compare-note { text-align: center; color: var(--text-faint); font-size: 12px; margin-top: 12px; }

/* ── Warum / Manifest ── */
.why-inner {
  background:
    radial-gradient(70% 120% at 85% -10%, rgba(143,188,143,0.13), transparent 60%),
    linear-gradient(170deg, var(--frame-bg), #0a1218);
  border: 1px solid var(--accent-line); border-radius: var(--radius);
  padding: 46px 34px; text-align: center; box-shadow: var(--shadow-window);
  position: relative; overflow: hidden;
}
.why-inner .bloom-mark {
  position: absolute; right: -60px; bottom: -60px; width: 240px; height: 240px;
  opacity: 0.06; pointer-events: none;
  animation: slowSpin 60s linear infinite;
}
@keyframes slowSpin { to { transform: rotate(360deg); } }
.why-inner p { color: var(--text-dim); font-size: 16.5px; max-width: 740px; margin: 0 auto; }
.why-inner p strong { color: var(--text); }
.why .section-title { margin-bottom: 18px; }

/* ═══════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════ */
.faq { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 11px; }
.faq-item {
  background: linear-gradient(170deg, var(--surface-card), var(--surface-deep));
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item[open], .faq-item:hover { border-color: var(--accent-line); }
.faq-item summary {
  cursor: pointer; padding: 17px 20px; font-weight: 650; font-size: 15.5px;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; color: var(--accent); font-size: 24px; font-weight: 700; line-height: 1;
  transition: transform 0.3s var(--ease-spring); flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-a { padding: 0 20px; color: var(--text-dim); font-size: 14.5px;
  max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease-out), padding 0.45s var(--ease-out); }
.faq-item[open] .faq-a { padding: 0 20px 18px; max-height: 400px; }
.faq-a a { color: var(--accent); }

/* ═══════════════════════════════════════════════════════════════
   WARTELISTE
   ═══════════════════════════════════════════════════════════════ */
.waitlist {
  position: relative;
  background:
    radial-gradient(90% 140% at 50% -30%, rgba(143,188,143,0.16), transparent 60%),
    linear-gradient(170deg, var(--frame-bg), #0a1116);
  border: 1px solid var(--accent-line); border-radius: var(--radius);
  padding: 46px 30px 40px; text-align: center; box-shadow: var(--shadow-window);
  overflow: hidden;
}
.waitlist .section-title { margin-bottom: 8px; }
.waitlist-sub { color: var(--text-dim); font-size: 15.5px; max-width: 520px; margin: 0 auto 22px; }
.waitlist-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; max-width: 500px; margin: 0 auto; }
.waitlist-form input {
  flex: 1 1 250px; min-width: 0; background: rgba(22,33,40,0.9);
  border: 1px solid var(--border); border-radius: 15px; padding: 14px 17px;
  color: var(--text); font-size: 15px; outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.waitlist-form input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(143,188,143,0.15); }
.waitlist-msg { min-height: 22px; margin-top: 14px; font-size: 14px; font-weight: 650; }
.waitlist-msg.ok { color: var(--accent); }
.waitlist-msg.err { color: var(--red); }
.waitlist-fineprint { color: var(--text-faint); font-size: 11.5px; max-width: 520px; margin: 14px auto 0; }
.waitlist-fineprint a { color: var(--text-dim); }
.petal { position: absolute; top: 40%; font-size: 16px; pointer-events: none; z-index: 5; animation: petalFall 1.6s var(--ease-out) forwards; }
@keyframes petalFall {
  0% { transform: translateY(0) rotate(0) scale(0.6); opacity: 0; }
  15% { opacity: 1; }
  100% { transform: translateY(-160px) translateX(var(--dx, 0px)) rotate(var(--rot, 180deg)) scale(1.15); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
footer {
  max-width: 1020px; margin: 90px auto 0; padding: 30px 20px 40px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 18px;
}
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
footer .links { display: flex; gap: 4px 18px; flex-wrap: wrap; }
footer a { color: var(--text-dim); text-decoration: none; font-size: 13px; transition: color 0.2s; }
footer a:hover { color: var(--accent); }
footer .copy { color: var(--text-faint); font-size: 12.5px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; border-top: 1px solid var(--border); padding-top: 16px; }
.footer-claim { color: var(--text-faint); font-size: 12.5px; max-width: 420px; }

/* Marken-Schriftzug (Footer + Unterseiten-Topbar) */
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 19px; letter-spacing: 0.06em;
  color: #fff; text-decoration: none;
}
.brand:hover { color: #fff; }
.brand .ai { color: var(--ai-blue); }
.brand--sm { font-size: 17px; }
.brand .flower {
  width: 34px; height: 34px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: inline-flex; align-items: center; justify-content: center;
  color: #0B141A; font-size: 18px;
}
.brand svg.bloom { width: 32px; height: 32px; }

/* ── Sprachumschalter (Legacy + Footer) ── */
.lang-switch { display: inline-flex; gap: 2px; border: 1px solid var(--border); border-radius: 999px; overflow: hidden; }
.lang-switch a { color: var(--text-dim); text-decoration: none; font-size: 12px; font-weight: 750; padding: 6px 11px; }
.lang-switch a[aria-current="page"] { background: rgba(143,188,143,0.16); color: var(--accent); }

/* ── Back-to-top ── */
.back-to-top {
  position: fixed; right: 18px; bottom: 18px; width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #0B141A;
  display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800;
  text-decoration: none; box-shadow: 0 10px 28px rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s var(--ease-spring); z-index: 90;
}
.back-to-top:hover { color: #0B141A; transform: translateY(-2px) scale(1.06); }
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
@media (max-width: 880px) { .back-to-top { bottom: 88px; } }

/* ═══════════════════════════════════════════════════════════════
   REVEAL-ANIMATIONEN
   ═══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(22px);
  filter: blur(4px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out), filter 0.7s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; filter: none; }

/* ═══════════════════════════════════════════════════════════════
   LEGACY — Unterseiten (kontakt, datenschutz, agb, impressum, …)
   Diese Klassen bleiben kompatibel zum alten Markup.
   ═══════════════════════════════════════════════════════════════ */
.topbar {
  max-width: 1020px; margin: 0 auto; padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.topbar nav { display: flex; gap: 4px; flex-wrap: wrap; }
.topbar nav a {
  color: var(--text-dim); text-decoration: none; font-size: 13px; font-weight: 650;
  padding: 8px 12px; border-radius: 999px; transition: background 0.2s, color 0.2s;
}
.topbar nav a:hover, .topbar nav a[aria-current="page"] { background: rgba(143, 188, 143, 0.12); color: var(--accent); }
.topbar nav .nav-cta { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #0B141A; }
.topbar nav .nav-cta:hover { background: var(--accent-bright); color: #0B141A; }

.legal h1 { font-size: 26px; margin-bottom: 4px; }
.legal .stand { color: var(--text-faint); font-size: 12.5px; margin-bottom: 22px; }
.legal h2 { font-size: 18px; margin: 26px 0 8px; color: var(--accent); }
.legal h3 { font-size: 15px; margin: 18px 0 6px; }
.legal p, .legal li { font-size: 14.5px; color: var(--text-dim); }
.legal strong { color: var(--text); }
.legal ul { padding-left: 22px; margin: 8px 0; }
.legal li { margin-bottom: 5px; }

.ph {
  background: rgba(250, 204, 21, 0.15); color: #fde047;
  border: 1px dashed rgba(250, 204, 21, 0.5); border-radius: 6px;
  padding: 0 6px; font-weight: 700; white-space: nowrap;
}
.fill-banner {
  background: rgba(250, 204, 21, 0.08); border: 1px solid rgba(250, 204, 21, 0.35);
  color: #fde047; border-radius: 12px; padding: 12px 14px; font-size: 13px; margin-bottom: 22px;
}

.mini-windows { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; }
.mini-window { background: var(--surface-card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.mini-window__bar { display: flex; align-items: center; justify-content: space-between; padding: 7px 12px; background: rgba(0, 0, 0, 0.28); font-size: 12.5px; font-weight: 700; letter-spacing: 0.03em; }
.mini-window__bar .dot { width: 14px; height: 14px; border-radius: 5px; background: rgba(248, 113, 113, 0.85); flex-shrink: 0; }
.mini-window__body { padding: 11px 12px 13px; font-size: 12.5px; color: var(--text-dim); }

/* ═══════════════════════════════════════════════════════════════
   MOBILE-FEINSCHLIFF (2026-07-07, Feedback Pawel)
   Fenster-Ränder, Trust-Grid, kompakte App-Tabs, volle Buttons,
   Safe-Area fürs Dock, iOS-Zoom-Fix.
   ═══════════════════════════════════════════════════════════════ */

/* iOS zoomt bei Inputs < 16px — deshalb global 16px */
.e2e-input-row input, .waitlist-form input { font-size: 16px; }

/* Fenster nicht mehr randlos, sondern mit Luft zum Displayrand */
@media (max-width: 1060px) {
  .window { width: calc(100% - 28px); max-width: none; margin-left: auto; margin-right: auto; }
}

@media (max-width: 700px) {
  .section { margin-top: 58px; }
  .section-sub { margin-bottom: 26px; font-size: 14.5px; }
  .reveal { filter: none; }                 /* Blur-Filter spart Akku/GPU */
  .window { width: calc(100% - 20px); margin-top: 18px; margin-bottom: 18px; border-radius: 18px; }
  .window__body { padding: 22px 14px; }
  .window__titlebar { height: 42px; }

  .trust-bar { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .trust-item { max-width: none; padding: 13px 10px; }
  .trust-item:last-child { grid-column: 1 / -1; }
  .trust-item strong { font-size: 17px; }
  .lang-marquee { margin-top: 26px; }
}

@media (max-width: 640px) {
  .hero { padding: 94px 18px 14px; gap: 20px; }
  .hero .tagline { font-size: 15px; }
  .hero-actions { margin-top: 22px; gap: 10px; }
  .hero-actions .cta-primary, .hero-actions .cta-ghost { flex: 1 1 100%; }
  .stores { margin-top: 16px; gap: 10px; }
  .store-badge { flex: 1 1 140px; min-width: 0; }
  .hero-proof { margin-top: 18px; }

  .phone { width: 226px; }
  .orbit { opacity: 0.6; }
  .float-chip { font-size: 10.5px; padding: 6px 10px; box-shadow: 0 10px 24px rgba(0,0,0,0.45); }
  .chip-1 { top: 0; left: -4%; }
  .chip-2 { top: 30%; right: -6%; }
  .chip-3 { bottom: 20%; left: -6%; }
  .hero-chat { max-width: 300px; margin-top: 12px; }
  .hero-chat .body { min-height: 130px; }

  .steps { gap: 12px; }
  .step { padding: 22px 18px; }

  .e2e-pane .pane-body { min-height: 84px; padding: 13px 12px; }
  .e2e-cipher { font-size: 11.5px; }
  .p2p-diagram { padding: 18px 4px 8px; }

  .apppanel { padding: 22px 16px; }
  .apppanel .pic { width: 72px; height: 72px; font-size: 32px; border-radius: 20px; }
  .apppanel h3 { font-size: 17px; }

  .compare th, .compare td { padding: 11px 10px; font-size: 12.5px; }
  .why-inner { padding: 32px 20px; }
  .faq-item summary { padding: 15px 16px; font-size: 14.5px; }
  .waitlist { padding: 34px 18px 30px; }
  .waitlist-form .cta-primary { flex: 1 1 100%; }
  .footer-claim { font-size: 12px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(31px, 9.4vw, 40px); }
  .eyebrow { font-size: 11px; padding: 6px 12px; }

  .site-nav { top: 8px; }
  .nav-brand { font-size: 15px; }
  .nav-brand .bloom { width: 26px; height: 26px; }
  .site-nav .nav-cta { padding: 8px 13px; font-size: 12.5px; }

  .apptabs-bar { height: 52px; padding: 0 8px; gap: 2px; }
  .apptab { width: 34px; height: 34px; }
  .apptab svg { width: 19px; height: 19px; }
  .apptab--bloom { width: 46px; height: 46px; margin-top: -16px; }
  .apptab--bloom svg { width: 29px; height: 29px; }
  .apptab .badge { min-width: 13px; height: 13px; font-size: 8px; top: 0; }
}

/* Safe-Area (iPhone-Balken): Dock, Back-to-top und Seitenende ausweichen */
@media (max-width: 880px) {
  .dock { bottom: calc(10px + env(safe-area-inset-bottom, 0px)); }
  body { padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px)); }
  .back-to-top { bottom: calc(84px + env(safe-area-inset-bottom, 0px)); }
}

/* ═══════════════════════════════════════════════════════════════
   REDUCED MOTION — alles ruhigstellen
   ═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; filter: none; }
  .phone-wrap, .float-chip, .hero-chat { animation: none; }
  .lang-track { animation: none; }
  #stars { display: none; }
}
