:root {
  --bg: #e8f0fa;
  --bg-deep: #002846;
  --fg: #0b1220;
  --muted: #50667a;
  --card: #ffffff;
  --border: #d0dcf0;
  --primary: #0284c7;
  --primary-strong: #0369a1;
  --accent: #0d9488;
  --coral: #f97316;
  --danger: #dc2626;
  --success: #15803d;
  --radius: 20px;
  --shadow: 0 22px 60px rgba(2, 40, 70, 0.14);
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--fg);
  background: var(--bg-deep);
  line-height: 1.55;
  overflow-x: hidden;
}

a { color: var(--primary-strong); }
img { display: block; max-width: 100%; }
.shell { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

/* ----- reveal ----- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  will-change: opacity, transform;
}
.reveal.from-left { transform: translateX(-48px); }
.reveal.from-right { transform: translateX(48px); }
.reveal.from-scale { transform: scale(0.92); }
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }
.reveal-delay-6 { transition-delay: 0.48s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float, .bubble, .hero-glow { animation: none !important; }
}

/* ----- nav ----- */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(0, 40, 70, 0.78);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: 0 0 auto;
  white-space: nowrap;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s var(--ease);
}
.brand:hover img { transform: rotate(-6deg) scale(1.06); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-links a:hover { color: #fff; background: rgba(255, 255, 255, 0.1); }

/* ----- hero ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 7rem 0 5rem;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 85% 15%, rgba(2, 132, 199, 0.45), transparent 55%),
    radial-gradient(700px 420px at 10% 80%, rgba(13, 148, 136, 0.35), transparent 50%),
    linear-gradient(165deg, #003a63 0%, #002846 45%, #011c31 100%);
}
.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.28), transparent 68%);
  filter: blur(8px);
  animation: drift 12s ease-in-out infinite alternate;
  pointer-events: none;
}
.hero-glow.a { top: -8%; right: -5%; }
.hero-glow.b { bottom: -15%; left: -10%; animation-delay: -4s; width: 420px; height: 420px; }
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-30px, 24px) scale(1.08); }
}

.bubbles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.bubble {
  position: absolute;
  bottom: -40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  animation: rise linear infinite;
}
@keyframes rise {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 0.7; }
  100% { transform: translateY(-110vh) scale(1.2); opacity: 0; }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  width: min(100% - 2rem, var(--max));
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #7dd3fc;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}
h1 {
  margin: 0 0 1.1rem;
  font-size: clamp(2.6rem, 5.5vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 800;
}
h1 .accent {
  background: linear-gradient(90deg, #7dd3fc, #5eead4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede {
  margin: 0 0 1.8rem;
  max-width: 34rem;
  color: rgba(226, 239, 252, 0.82);
  font-size: 1.15rem;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.store-section {
  margin-top: 1.75rem;
}
.store-label {
  margin: 0 0 0.85rem;
  color: rgba(226, 239, 252, 0.7);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.store-badge {
  display: inline-flex;
  transition: transform 0.25s var(--ease), opacity 0.2s ease, filter 0.2s ease;
  line-height: 0;
  text-decoration: none;
}
.store-badge:hover { transform: translateY(-3px) scale(1.02); }
.store-badge svg { display: block; height: 54px; width: auto; }
.store-badge.is-soon {
  opacity: 0.45;
  filter: grayscale(0.35);
  cursor: default;
  pointer-events: none;
}
.store-badge.is-soon:hover { transform: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-decoration: none;
  border-radius: 14px;
  padding: 0.95rem 1.35rem;
  font-weight: 650;
  font-size: 1rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 14px 32px rgba(2, 132, 199, 0.4);
}
.btn-primary:hover { box-shadow: 0 18px 40px rgba(2, 132, 199, 0.5); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); }

.hero-visual-wrap {
  justify-self: center;
  position: relative;
}
.hero-visual {
  width: min(100%, 340px);
  aspect-ratio: 1;
  border-radius: 28%;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 0 12px rgba(255, 255, 255, 0.08);
  background: var(--bg-deep);
  animation: float 5.5s ease-in-out infinite;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.orbit {
  position: absolute;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  animation: float 6s ease-in-out infinite;
}
.orbit.o1 { top: 8%; left: -18%; animation-delay: -1s; }
.orbit.o2 { bottom: 18%; right: -22%; animation-delay: -2.5s; }
.orbit.o3 { bottom: -2%; left: 8%; animation-delay: -4s; }

.scroll-hint {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
}
.scroll-hint span {
  width: 18px;
  height: 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  position: relative;
}
.scroll-hint span::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  width: 3px;
  height: 6px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: #fff;
  animation: wheel 1.6s ease-in-out infinite;
}
@keyframes wheel {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

/* ----- light bands ----- */
.band {
  position: relative;
  background:
    radial-gradient(900px 400px at 100% 0%, rgba(2, 132, 199, 0.1), transparent 50%),
    linear-gradient(180deg, #eef4fb 0%, #e4eef8 100%);
  color: var(--fg);
  padding: 5.5rem 0;
}
.band.alt {
  background:
    radial-gradient(800px 360px at 0% 100%, rgba(13, 148, 136, 0.12), transparent 55%),
    linear-gradient(180deg, #e2ecf6 0%, #edf3fa 100%);
}
.band.deep {
  background:
    radial-gradient(700px 360px at 70% 20%, rgba(2, 132, 199, 0.25), transparent 55%),
    linear-gradient(180deg, #013456 0%, #002846 100%);
  color: #fff;
  padding: 5rem 0;
}
.band.deep .muted { color: rgba(226, 239, 252, 0.75); }

.section-head { max-width: 40rem; margin-bottom: 2.25rem; }
.section-head h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.85rem, 3.4vw, 2.5rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
}
.section-head p { margin: 0; color: var(--muted); font-size: 1.05rem; }
.band.deep .section-head p { color: rgba(226, 239, 252, 0.75); }

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}
.pill {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(2, 132, 199, 0.1);
  color: var(--primary-strong);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(2, 132, 199, 0.18);
  transition: transform 0.25s var(--ease), background 0.2s ease;
}
.pill:hover { transform: translateY(-2px); background: rgba(2, 132, 199, 0.16); }
.band.deep .pill {
  background: rgba(255, 255, 255, 0.08);
  color: #bae6fd;
  border-color: rgba(255, 255, 255, 0.14);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.3rem;
  box-shadow: 0 10px 28px rgba(11, 18, 32, 0.05);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(2, 40, 70, 0.14);
  border-color: #b7cce8;
}
.feature:hover::before { transform: scaleX(1); }
.feature .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.12), rgba(13, 148, 136, 0.14));
  color: var(--primary-strong);
  font-size: 1.15rem;
  transition: transform 0.35s var(--ease);
}
.feature:hover .icon { transform: scale(1.08) rotate(-4deg); }
.feature h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}
.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.stat {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 1.2rem 1.15rem;
  transition: transform 0.3s var(--ease), background 0.2s ease;
}
.stat:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
}
.stat strong {
  display: block;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.2rem;
  background: linear-gradient(90deg, #7dd3fc, #5eead4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span { color: rgba(226, 239, 252, 0.72); font-size: 0.92rem; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  counter-reset: step;
}
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem 1.35rem;
  position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.7rem;
}
.step h3 { margin: 0 0 0.4rem; font-size: 1.1rem; }
.step p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.note {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.92rem;
}

/* ----- contact ----- */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.25rem;
  align-items: start;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease);
}
.card:hover { transform: translateY(-3px); }
.card h2 { margin: 0 0 0.55rem; font-size: 1.55rem; letter-spacing: -0.03em; }
.card p { color: var(--muted); margin: 0 0 0.85rem; }

.email-hint {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: #f4f8fc;
  border: 1px dashed #b7cce8;
  color: var(--muted);
  font-size: 0.95rem;
  user-select: none;
}
.email-hint .parts {
  display: inline;
  font-weight: 650;
  color: var(--fg);
  letter-spacing: 0.01em;
}
.email-hint .at {
  color: var(--primary-strong);
  font-weight: 700;
  padding: 0 0.15em;
}

form { display: grid; gap: 0.9rem; margin-top: 0.35rem; }
label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
  font-weight: 550;
  color: var(--muted);
}
input, textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 0.8rem 0.95rem;
  background: #fff;
  color: var(--fg);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:hover, textarea:hover { border-color: #94a8c4; }
input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15);
}
textarea { min-height: 150px; resize: vertical; }
.msg { margin-top: 0.75rem; font-size: 0.95rem; font-weight: 650; }
.msg.error { color: var(--danger); }
.msg.success { color: var(--success); }
.sent-summary {
  margin-top: 0.75rem;
  padding: 1rem;
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  border-radius: 12px;
  color: #14532d;
}
.sent-summary h3 { margin: 0 0 0.6rem; font-size: 1.05rem; }
.sent-summary p { margin: 0 0 0.5rem; color: #14532d; }
.sent-summary pre {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: inherit;
}
.hidden { display: none !important; }
button[disabled] { opacity: 0.7; cursor: wait; }

footer {
  background: #011627;
  color: rgba(226, 239, 252, 0.65);
  padding: 1.75rem 0 2.4rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
footer .shell {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
}
footer a {
  color: rgba(226, 239, 252, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}
footer a:hover { color: #fff; }
footer strong { color: #fff; }
.footer-powered {
  margin-top: 0.35rem;
  font-size: 0.88rem;
  color: rgba(226, 239, 252, 0.55);
}
.footer-powered a {
  color: #7dd3fc;
  font-weight: 650;
  text-decoration: none;
  border-bottom: 1px solid rgba(125, 211, 252, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-powered a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 900px) {
  .hero-grid, .features, .split, .steps, .contact-wrap { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 6.5rem 0 4rem; }
  .hero-visual { width: min(100%, 260px); }
  .orbit.o1 { left: -4%; }
  .orbit.o2 { right: -4%; }
  .scroll-hint { display: none; }
  h1 { font-size: 2.45rem; }
  .band { padding: 4rem 0; }
}

/* ----- language switch (crawlable links) ----- */
.lang-switch {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  overflow: hidden;
  margin-left: 0.25rem;
}
.lang-switch a {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.4rem 0.7rem;
  text-decoration: none;
  border-radius: 0;
  transition: background 0.2s ease, color 0.2s ease;
}
/* Flaggen als Inline-SVG statt Emoji: Windows rendert Regional-Indicator-Emoji nicht
   als Flagge, sondern als Buchstabenpaar — aus "🇩🇪 DE" wuerde dort "DE DE". */
.lang-switch svg {
  width: 21px;
  height: 14px;
  display: block;
  border-radius: 2px;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}
.lang-switch a:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
.lang-switch a:hover svg { opacity: 1; }
.lang-switch a[aria-current="true"] { background: #fff; color: var(--bg-deep); }
.lang-switch a[aria-current="true"] svg { opacity: 1; }

/* ----- screenshot slider ----- */
.shots { padding: 4.5rem 0 4rem; }
.shots .section-head { margin-inline: auto; text-align: center; }
.slider-wrap {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}
.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}
.slide {
  position: absolute;
  width: 168px;
  cursor: pointer;
  transition: transform 0.55s var(--ease), opacity 0.45s ease, filter 0.45s ease;
  user-select: none;
}
/* Der Rahmen gibt die Groesse vor, der Screenshot sitzt in seiner Aussparung.
   Andersherum — Rahmen ueber den Screenshot spannen — geht schief: frame.png ist
   525x1081, die Bildschirmoeffnung liegt darin bei x 21..498 und y 22..1063, und
   rechts stehen 4 leere Spalten. Der Screenshot schaute deshalb rechts heraus.
   Die Prozente unten sind genau diese Messwerte. */
.slide-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}
/* Bewusst etwas groesser als die gemessene Oeffnung (21/525 = 4%, 478/525 = 91%): die
   Blende laeuft weich aus, und genau auf Kante blitzt an den Raendern der Hintergrund
   durch. Der Screenshot schiebt sich jetzt links und rechts unter die Blende — sie liegt
   darueber und deckt den Ueberstand ab. */
.slide-inner {
  position: absolute;
  left: 2.6%;
  top: 1.4%;
  width: 94%;
  height: 97.6%;
  border-radius: 7% / 3.4%;
  overflow: hidden;
  background: #011627;
  z-index: 1;
}
.slide-img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.slide[data-pos="0"] { transform: translateX(0) scale(1); z-index: 5; opacity: 1; filter: none; }
.slide[data-pos="-1"] { transform: translateX(-185px) scale(0.82); z-index: 4; opacity: 0.7; filter: brightness(0.72); }
.slide[data-pos="1"] { transform: translateX(185px) scale(0.82); z-index: 4; opacity: 0.7; filter: brightness(0.72); }
.slide[data-pos="-2"] { transform: translateX(-315px) scale(0.68); z-index: 3; opacity: 0.4; filter: brightness(0.5); }
.slide[data-pos="2"] { transform: translateX(315px) scale(0.68); z-index: 3; opacity: 0.4; filter: brightness(0.5); }
.slide[data-pos="-3"] { transform: translateX(-420px) scale(0.55); z-index: 2; opacity: 0; }
.slide[data-pos="3"] { transform: translateX(420px) scale(0.55); z-index: 2; opacity: 0; }
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.slider-btn:hover { background: rgba(125, 211, 252, 0.22); border-color: #7dd3fc; }
.slider-btn.prev { left: clamp(4px, 3vw, 60px); }
.slider-btn.next { right: clamp(4px, 3vw, 60px); }
.shot-caption {
  margin: 1.4rem auto 0;
  max-width: 32rem;
  text-align: center;
  color: rgba(226, 239, 252, 0.82);
  font-size: 1rem;
  min-height: 3rem;
}
.shot-caption strong { display: block; color: #fff; font-size: 1.05rem; letter-spacing: -0.01em; }
.slider-dots { display: flex; gap: 8px; justify-content: center; margin-top: 1rem; }
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(226, 239, 252, 0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.dot.active { background: #5eead4; transform: scale(1.5); }
.shots-noscript { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }

/* ----- spoken examples ----- */
.voice-list { display: grid; gap: 0.7rem; margin: 0; padding: 0; list-style: none; }
.voice-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.4rem 1rem;
  align-items: baseline;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.85rem 1.05rem;
  transition: transform 0.3s var(--ease), border-color 0.2s ease;
}
.voice-list li:hover { transform: translateX(4px); border-color: #b7cce8; }
.voice-said { font-weight: 650; color: var(--fg); }
.voice-said::before { content: "🎙 "; }
.voice-done { color: var(--muted); font-size: 0.95rem; }
.voice-done::before { content: "→ "; color: var(--accent); font-weight: 700; }

/* ----- parameter table ----- */
/* min-width:0 beats the automatic minimum of a grid item — without it the 34rem wide table
   pushes the whole page wider than the phone screen instead of scrolling inside its box. */
.table-wrap { overflow-x: auto; min-width: 0; border-radius: var(--radius); border: 1px solid var(--border); background: var(--card); }
table.params { width: 100%; border-collapse: collapse; font-size: 0.95rem; min-width: 34rem; }
table.params caption { text-align: left; padding: 1rem 1.15rem 0; color: var(--muted); font-size: 0.9rem; }
table.params th, table.params td { padding: 0.7rem 1.15rem; text-align: left; border-bottom: 1px solid var(--border); }
table.params th { font-weight: 650; color: var(--fg); background: #f4f8fc; }
table.params tbody tr:last-child td { border-bottom: 0; }
table.params td:first-child { font-weight: 650; }
.range-ok { color: var(--success); font-weight: 600; }
.range-warn { color: #b45309; }
.range-bad { color: var(--danger); }

/* ----- faq ----- */
.faq { display: grid; gap: 0.7rem; }
.faq details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.2rem 1.1rem;
  transition: border-color 0.2s ease, box-shadow 0.25s ease;
}
.faq details[open] { border-color: #b7cce8; box-shadow: 0 12px 30px rgba(2, 40, 70, 0.08); }
.faq summary {
  cursor: pointer;
  font-weight: 650;
  padding: 0.95rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--primary-strong); font-size: 1.3rem; line-height: 1; }
.faq details[open] summary::after { content: "−"; }
.faq p { margin: 0 0 1rem; color: var(--muted); font-size: 0.97rem; }
.faq a { color: var(--primary-strong); }

/* ----- prose / long copy ----- */
.prose { max-width: 46rem; }
.prose p { color: var(--muted); font-size: 1.02rem; margin: 0 0 1rem; }
.prose h3 { margin: 1.8rem 0 0.5rem; font-size: 1.15rem; letter-spacing: -0.02em; color: var(--fg); }
.band.deep .prose p { color: rgba(226, 239, 252, 0.78); }
.band.deep .prose h3 { color: #fff; }
.lead-in { font-size: 1.1rem; color: var(--fg); font-weight: 550; }

.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.cols-2 > * { min-width: 0; }

@media (max-width: 900px) {
  .cols-2 { grid-template-columns: 1fr; gap: 1.5rem; }
  .voice-list li { grid-template-columns: 1fr; }
  .shots-noscript { grid-template-columns: 1fr 1fr; }
  .slider-wrap { height: 360px; }
  .slide { width: 148px; }
  .slide[data-pos="-1"] { transform: translateX(-140px) scale(0.8); }
  .slide[data-pos="1"] { transform: translateX(140px) scale(0.8); }
  .slide[data-pos="-2"] { transform: translateX(-235px) scale(0.64); }
  .slide[data-pos="2"] { transform: translateX(235px) scale(0.64); }
}

@media (min-width: 1100px) {
  .slider-wrap { height: 470px; }
  .slide { width: 200px; }
  .slide[data-pos="-1"] { transform: translateX(-225px) scale(0.82); }
  .slide[data-pos="1"] { transform: translateX(225px) scale(0.82); }
  .slide[data-pos="-2"] { transform: translateX(-390px) scale(0.68); }
  .slide[data-pos="2"] { transform: translateX(390px) scale(0.68); }
}

/* ----- slider fallback without JavaScript: a plain grid of framed screenshots ----- */
.shots-noscript { height: auto; align-items: stretch; }
.shots-noscript .slide { position: relative; width: 100%; cursor: default; opacity: 1; filter: none; }
.slider-wrap:has(.shots-noscript) { height: auto; }
.slider-wrap:has(.shots-noscript) .slider-btn { display: none; }

@media (max-width: 600px) {
  .nav-links { gap: 0.1rem; }
  .nav-links a { padding: 0.35rem 0.5rem; font-size: 0.86rem; }
  .brand { font-size: 1.05rem; }
  .brand img { width: 34px; height: 34px; }
}

/* Unter 600px passen Marke und fuenf Anker nicht in eine Zeile — die Sprachumschaltung
   bleibt, die Sprungmarken verschwinden. Die Abschnitte stehen ohnehin untereinander. */
@media (max-width: 600px) {
  .nav-links a[href^="#"] { display: none; }
}
