/* JGREATER Firmenauftritt
   Brand: Elefant-Logo · Schwarz / Weiß / Signalrot · Outfit + Manrope */

:root {
  --paper: #f3f4f6;
  --paper-2: #e8eaee;
  --ink: #0a0a0a;
  --ink-soft: #2c3038;
  --muted: #5c6470;
  --line: rgba(10, 10, 10, 0.12);
  --accent: #e10600;
  --accent-deep: #b30500;
  --surface: #ffffff;
  --nav-h: 4.25rem;
  --anchor-gap: 1rem;
  --section-pad-y: 5rem;
  /* Stage layout: ~1440px content rail on large screens; text stays ch-constrained */
  --max: 90rem;
  --gutter: clamp(1.15rem, 2.8vw, 3.25rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --nav-blur: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + var(--anchor-gap));
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Smooth scroll is costly / janky on many mobile browsers */
@media (hover: none), (pointer: coarse) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  overscroll-behavior-y: contain;
  touch-action: manipulation;
}

/* —— HERO LAYOUT —— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: #fff;
}

.hero-main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 1.25rem) 0 2.75rem;
  min-height: 0;
}

.hero-strip {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link:focus-visible {
  outline-offset: 2px;
}

/* Seiten-Fortschritt beim Blättern */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  height: 2px;
  width: 100%;
  background: var(--accent);
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  padding: 0.65rem 1rem;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 1rem;
}

/* Anchors: immer klar unter der fixen Nav */
main > section[id],
main > section.section[id],
.spektrum-area[id],
#kiki,
.warnhinweis {
  scroll-margin-top: calc(var(--nav-h) + var(--anchor-gap));
}

/* Full-viewport / page-top: no extra offset — otherwise the next light
   section peeks in as a white strip, or content sits too high under the nav. */
#home,
#ueber,
#kontakt,
#warnhinweis {
  scroll-margin-top: 0;
}

ul {
  list-style: none;
}

.wrap {
  width: min(100% - (2 * var(--gutter)), var(--max));
  margin-inline: auto;
}

/* —— NAV —— */
.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--ink) 72%, transparent);
  backdrop-filter: blur(var(--nav-blur));
  -webkit-backdrop-filter: blur(var(--nav-blur));
  border-bottom: 1px solid transparent;
  transition:
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.site-nav.is-scrolled {
  background: color-mix(in srgb, var(--ink) 92%, transparent);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

/* Hauptseite: Hero läuft nahtlos in den Header */
.has-hero-nav .site-nav:not(.is-scrolled) {
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}

.has-hero-nav .site-nav.is-scrolled {
  background: color-mix(in srgb, var(--ink) 88%, transparent);
  backdrop-filter: blur(var(--nav-blur));
  -webkit-backdrop-filter: blur(var(--nav-blur));
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.has-hero-nav .site-nav:has(.nav-links.is-open) {
  background: color-mix(in srgb, var(--ink) 94%, transparent);
  backdrop-filter: blur(var(--nav-blur));
  -webkit-backdrop-filter: blur(var(--nav-blur));
}

.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  width: min(100% - (2 * var(--gutter)), var(--max));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-right: auto;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.brand img {
  width: 2.35rem;
  height: 2.35rem;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.brand em {
  font-style: normal;
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}

.nav-links a:hover,
.nav-links a.is-active,
.nav-links a[aria-current="page"],
.nav-links a[aria-current="true"] {
  color: #fff;
}

.nav-links a.is-active,
.nav-links a[aria-current="page"],
.nav-links a[aria-current="true"] {
  box-shadow: inset 0 -2px 0 var(--accent);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  background: var(--accent);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: none !important;
  transition: background 0.25s var(--ease);
}

.nav-cta:hover {
  background: var(--accent-deep);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  cursor: pointer;
  position: relative;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  height: 1.5px;
  background: #fff;
  transition: transform 0.25s var(--ease);
}

.nav-toggle span {
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.kiki-float {
  position: fixed;
  top: calc(var(--nav-h) + 0.7rem);
  right: max(0.85rem, calc((100vw - var(--max)) / 2));
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  width: min(15.5rem, calc(100vw - 1.7rem));
  pointer-events: none;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease),
    visibility 0.35s var(--ease);
}

.kiki-float.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none !important;
}

.kiki-float.is-hidden a {
  pointer-events: none !important;
}

.kiki-float-av {
  pointer-events: auto;
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.kiki-float-av:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 26px rgba(225, 6, 0, 0.22);
}

.kiki-float-av video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
  /* Schwarzer Videohintergrund wirkt transparent */
  mix-blend-mode: screen;
}

.kiki-float-chat {
  pointer-events: auto;
  display: block;
  max-width: 100%;
  text-decoration: none;
}

.kiki-float-bubble {
  display: block;
  padding: 0.48rem 0.7rem;
  border-radius: 0.85rem 0.15rem 0.85rem 0.85rem;
  background: #0a0a0a;
  border: 0;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), color 0.2s var(--ease);
}

.kiki-float-bubble.is-on {
  opacity: 0.96;
  transform: none;
}

.kiki-float-chat:hover .kiki-float-bubble {
  color: #fff;
}

/* —— BUTTONS —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.45rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-deep);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-ink {
  background: var(--ink);
  color: #fff;
}

.btn-ink:hover {
  background: var(--accent);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: #fff;
}

/* —— HERO DETAILS —— */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transform: scale(1.08);
  filter: brightness(0.42) saturate(0.75) contrast(1.05);
  will-change: transform, filter;
}

.hero-sunrise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.hero-sunrise-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 64% 54%, rgba(20, 16, 12, 0.15) 0%, rgba(4, 7, 12, 0.78) 55%, rgba(2, 4, 8, 0.92) 100%);
  opacity: 1;
  will-change: opacity;
}

.hero-sunrise-glow {
  position: absolute;
  left: 65%;
  top: 54%;
  width: min(140vmax, 92rem);
  height: min(140vmax, 92rem);
  transform: translate(-50%, -50%) scale(0.42);
  border-radius: 50%;
  background:
    radial-gradient(circle,
      rgba(255, 236, 190, 0.78) 0%,
      rgba(255, 176, 82, 0.42) 18%,
      rgba(255, 112, 42, 0.18) 36%,
      rgba(255, 90, 30, 0.05) 52%,
      transparent 68%);
  opacity: 0;
  filter: blur(2px);
  mix-blend-mode: screen;
  will-change: opacity, transform;
}

.hero-sunrise-bloom {
  position: absolute;
  inset: -8% 0;
  background:
    linear-gradient(180deg,
      transparent 24%,
      rgba(255, 170, 90, 0.1) 46%,
      rgba(255, 198, 120, 0.22) 56%,
      rgba(255, 150, 70, 0.12) 66%,
      transparent 82%);
  opacity: 0;
  mix-blend-mode: soft-light;
  will-change: opacity;
}

.hero-sunrise-rays {
  position: absolute;
  left: 65%;
  top: 53%;
  width: min(160vmax, 110rem);
  height: min(160vmax, 110rem);
  transform: translate(-50%, -50%) rotate(-8deg) scale(0.92);
  background: repeating-conic-gradient(
    from 198deg at 50% 50%,
    rgba(255, 220, 160, 0.16) 0deg,
    transparent 3.5deg,
    transparent 11deg,
    rgba(255, 190, 120, 0.08) 14deg,
    transparent 18deg
  );
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 0%, #000 22%, transparent 58%);
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, #000 22%, transparent 58%);
  opacity: 0;
  mix-blend-mode: screen;
  will-change: opacity, transform;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.22) 0%, rgba(10, 10, 10, 0.12) 18%, rgba(10, 10, 10, 0.28) 42%, rgba(10, 10, 10, 0.78) 72%, rgba(10, 10, 10, 0.96) 100%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.62) 0%, rgba(10, 10, 10, 0.22) 48%, transparent 72%);
  opacity: 1;
  transition: none;
}

/* Premium sunrise — once on load */
.hero.is-sunrise .hero-media img {
  animation: sunrise-image 3.4s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

.hero.is-sunrise .hero-sunrise-veil {
  animation: sunrise-veil 3.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero.is-sunrise .hero-sunrise-glow {
  animation: sunrise-glow 3.5s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
}

.hero.is-sunrise .hero-sunrise-bloom {
  animation: sunrise-bloom 3.3s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

.hero.is-sunrise .hero-sunrise-rays {
  animation: sunrise-rays 3.7s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero.is-sunrise .hero-shade {
  animation: sunrise-shade 3.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero.is-sunrise .hero-brand {
  animation: sunrise-rise 1.25s cubic-bezier(0.22, 1, 0.36, 1) 0.95s both;
}

.hero.is-sunrise .hero-eye {
  animation: sunrise-rise 1.3s cubic-bezier(0.22, 1, 0.36, 1) 1.15s both;
}

.hero.is-sunrise .hero-cta-note {
  animation: sunrise-rise 1.2s cubic-bezier(0.22, 1, 0.36, 1) 1.35s both;
}

.hero.is-sunrise .hero-actions {
  animation: sunrise-rise 1.2s cubic-bezier(0.22, 1, 0.36, 1) 1.5s both;
}

.hero.is-sunrise .hero-side-link {
  animation: sunrise-rise 1.1s cubic-bezier(0.22, 1, 0.36, 1) 1.7s both;
}

.hero.is-sunrise .hero-strip {
  animation: sunrise-strip 1.3s cubic-bezier(0.22, 1, 0.36, 1) 1.55s both;
}

@keyframes sunrise-image {
  0% {
    transform: scale(1.1);
    filter: brightness(0.38) saturate(0.68) contrast(1.08);
  }
  55% {
    filter: brightness(0.92) saturate(1.02) contrast(1.02);
  }
  100% {
    transform: scale(1.02);
    filter: brightness(1) saturate(1.05) contrast(1);
  }
}

@keyframes sunrise-veil {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes sunrise-glow {
  0% {
    opacity: 0;
    transform: translate(-50%, -38%) scale(0.38);
  }
  45% {
    opacity: 0.85;
  }
  100% {
    opacity: 0.55;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes sunrise-bloom {
  0% { opacity: 0; }
  40% { opacity: 0.7; }
  100% { opacity: 0.35; }
}

@keyframes sunrise-rays {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-14deg) scale(0.86);
  }
  50% {
    opacity: 0.42;
  }
  100% {
    opacity: 0.22;
    transform: translate(-50%, -50%) rotate(-4deg) scale(1);
  }
}

@keyframes sunrise-shade {
  0% { opacity: 1.15; filter: brightness(0.7); }
  100% { opacity: 1; filter: brightness(1); }
}

@keyframes sunrise-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes sunrise-strip {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero.sunrise-done .hero-media img,
.hero.sunrise-done .hero-sunrise-veil,
.hero.sunrise-done .hero-sunrise-glow,
.hero.sunrise-done .hero-sunrise-bloom,
.hero.sunrise-done .hero-sunrise-rays,
.hero.sunrise-done .hero-shade {
  animation: none;
  will-change: auto;
}

.hero.sunrise-done .hero-media img {
  transform: scale(1.02);
  filter: brightness(1) saturate(1.05) contrast(1);
}

.hero.sunrise-done .hero-sunrise-veil {
  opacity: 0;
}

.hero.sunrise-done .hero-sunrise-glow {
  opacity: 0.55;
  transform: translate(-50%, -50%) scale(1);
}

.hero.sunrise-done .hero-sunrise-bloom {
  opacity: 0.35;
}

.hero.sunrise-done .hero-sunrise-rays {
  opacity: 0.22;
  transform: translate(-50%, -50%) rotate(-4deg) scale(1);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0;
  max-width: min(100%, 44rem);
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}

.hero-brand em {
  font-style: normal;
  color: var(--accent);
}

.hero-eye {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 4.15rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  word-spacing: 0.04em;
  margin: 0 0 1.15rem;
  max-width: 15ch;
  color: #fff;
  text-wrap: balance;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

.hero-cta-note {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.85rem;
}

.hero-cta-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  min-width: min(100%, 17.5rem);
}

.btn-hero-cta {
  min-height: 3.2rem;
  padding: 0.95rem 1.7rem;
  font-size: 1.02rem;
  letter-spacing: 0.015em;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 12px 32px rgba(225, 6, 0, 0.35);
  width: 100%;
}

.btn-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(225, 6, 0, 0.42);
}

.btn-hero-dl {
  min-height: 3.2rem;
  padding: 0.95rem 1.4rem;
  font-size: 1.02rem;
  letter-spacing: 0.015em;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.btn-hero-dl:hover {
  transform: translateY(-2px);
}

.hero-side-link {
  margin: 1.15rem 0 0;
  padding: 0 0.35rem;
  font-size: 0.92rem;
  line-height: 1.35;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.01em;
}

.hero-side-link a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), opacity 0.2s var(--ease);
  opacity: 0.92;
}

.hero-side-link a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* —— STRIP (auch in Hero) —— */
.strip,
.hero-strip {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  padding: 1.25rem 0;
  border-bottom: 2px solid var(--accent);
}

.hero-strip {
  border-bottom: 0;
  border-top: 0;
  padding: 1.15rem 0 1.25rem;
}

.strip-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: center;
  font-size: 0.95rem;
  line-height: 1.35;
}

.hero-strip .strip-row {
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.strip-row p {
  margin: 0;
  padding: 0.55rem 1.25rem;
  text-align: center;
}

.hero-strip .strip-row p {
  padding: 0.65rem 1.1rem;
}

.strip-row p + p {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.strip-row strong {
  display: inline;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.005em;
}

/* —— SECTIONS —— */
.section {
  padding: var(--section-pad-y) 0;
}

.section-soft {
  background: var(--paper-2);
}

.section-ink {
  background: var(--ink);
  color: #f3f4f6;
}

.kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  max-width: 16ch;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 42ch;
  margin-bottom: 2.5rem;
}

.section-ink .section-lead {
  color: #9aa3b5;
}

/* —— METHOD —— */
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.method-item {
  padding: 2rem 1.5rem 2rem 0;
  border-bottom: 1px solid var(--line);
}

.method-item + .method-item {
  border-left: 1px solid var(--line);
  padding-left: 1.75rem;
}

.method-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
}

.method-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}

.method-item p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* —— CAPABILITIES —— */
.cap-head {
  margin-bottom: 2.5rem;
  max-width: 52ch;
}

#moeglich .section-title {
  max-width: 22ch;
}

#moeglich .section-lead {
  margin-bottom: 0;
  color: #9aa3b5;
}

.cap-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  column-gap: 2.5rem;
  row-gap: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  list-style: none;
}

.cap-list li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 1.02rem;
  font-weight: 500;
}

.cap-list strong {
  font-family: var(--font-display);
  color: var(--accent);
  font-weight: 700;
}

/* —— KREATIV AUF STARTSEITE —— */
.kreativ-home-head {
  margin-bottom: 2.5rem;
}

.kreativ-home-head .section-title {
  max-width: 16ch;
}

.kreativ-home-head .section-lead {
  margin-bottom: 0;
  flex: 1 1 16rem;
  max-width: 40rem;
}

.kreativ-lead-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem 1.5rem;
  margin-top: 0.35rem;
}

.kreativ-lab-inline {
  display: inline;
  border: 0;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  white-space: nowrap;
}

.kreativ-lab-inline:hover {
  color: var(--accent);
}

.kreativ-home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.kreativ-home-item {
  padding: 1.35rem 1.15rem 1.4rem;
  border-top: 2px solid var(--accent);
  background: var(--surface);
}

.kreativ-home-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
}

.kreativ-home-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.55rem;
}

.kreativ-home-item p:last-child {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

/* —— KREATIV-SEITE —— */
.spektrum-hero {
  padding: calc(var(--nav-h) + 4.5rem) 0 4.5rem;
  background: var(--ink);
  color: #f3f4f6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.spektrum-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1.25rem;
}

.spektrum-brand em {
  font-style: normal;
  color: var(--accent);
}

.spektrum-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.15rem;
  max-width: 16ch;
  color: #fff;
}

.spektrum-lead {
  font-size: 1.08rem;
  color: #9aa3b5;
  max-width: 48ch;
  margin-bottom: 2rem;
}

.spektrum-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.spektrum-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2rem;
}

.spektrum-jump a {
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 0.82rem;
  font-weight: 700;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.spektrum-jump a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.section-ink .spektrum-jump a {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #f3f4f6;
}

.section-ink .spektrum-jump a:hover {
  border-color: var(--accent);
  color: #fff;
}

.spektrum-area {
  scroll-margin-top: calc(var(--nav-h) + var(--anchor-gap));
}

.spektrum-area-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: start;
}

.spektrum-area .section-lead {
  margin-bottom: 0;
}

.spektrum-points {
  list-style: none;
  display: grid;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 0.25rem;
}

.section-ink .spektrum-points {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.spektrum-points li {
  padding: 1rem 0 1rem 1rem;
  border-left: 3px solid var(--accent);
  color: var(--muted);
  font-size: 0.98rem;
}

.section-ink .spektrum-points li {
  color: #9aa3b5;
}

.spektrum-points strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.section-ink .spektrum-points strong {
  color: #fff;
}

.spektrum-cta .section-title {
  max-width: 18ch;
}

.spektrum-cta-inner .section-lead {
  margin-bottom: 1.75rem;
}

.spektrum-live-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}

.spektrum-live-list a {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.35rem 1.25rem;
  border-top: 2px solid var(--accent);
  background: rgba(255, 255, 255, 0.04);
  color: #f3f4f6;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.spektrum-live-list a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.spektrum-live-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.spektrum-live-desc {
  color: #9aa3b5;
  font-size: 0.95rem;
}

/* —— CASES —— */
.cases-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.cases-head .section-title {
  max-width: 28ch;
}

.cases-head .section-lead {
  margin-bottom: 0;
}

.case-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.25rem;
}

.case-grid.case-grid-feature {
  grid-template-columns: 1fr;
}

.case-feature,
.case-tile {
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
  min-height: 18rem;
}

.case-feature {
  grid-row: span 1;
  min-height: 22rem;
}

.case-grid-feature .case-feature-3d {
  min-height: clamp(22rem, 52vh, 34rem);
}

.case-feature img,
.case-tile img,
.case-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.case-feature:hover img,
.case-tile:hover img,
.case-tile:hover video {
  transform: scale(1.04);
}

.case-feature-3d {
  background: #0b1018;
  min-height: 24rem;
}

.case-feature-3d:hover img {
  transform: none;
}

.birkis-ur {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0b1018;
}

.birkis-ur-fallback,
.birkis-ur-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.birkis-ur-canvas {
  touch-action: none;
  cursor: grab;
}

.birkis-ur-canvas:active {
  cursor: grabbing;
}

.birkis-ur-ui {
  position: absolute;
  z-index: 2;
  left: 0.85rem;
  top: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  pointer-events: none;
}

.birkis-ur-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  pointer-events: auto;
}

.birkis-ur-btn {
  appearance: none;
  margin: 0;
  padding: 0.38rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(12, 16, 24, 0.72);
  color: #e8edf5;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.birkis-ur-btn:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.birkis-ur-btn.is-active {
  border-color: color-mix(in srgb, var(--accent) 70%, #fff);
  background: color-mix(in srgb, var(--accent) 28%, rgba(12, 16, 24, 0.85));
  color: #fff;
}

.birkis-ur-hint {
  margin: 0;
  max-width: 22ch;
  font-size: 0.68rem;
  line-height: 1.35;
  color: rgba(220, 228, 240, 0.62);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}

.case-feature-3d .case-meta {
  z-index: 3;
}

.case-feature-stack {
  display: block;
  margin-top: 1.25rem;
  min-height: clamp(18rem, 42vw, 28rem);
  background: #0a0a0a;
}

.case-feature-stack:hover img {
  transform: none;
}

.case-feature-stack img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.case-feature-stack .case-meta {
  z-index: 2;
}

.case-meta {
  position: absolute;
  inset: auto 0 0;
  padding: 1.4rem 1.35rem;
  background: linear-gradient(transparent, rgba(10, 10, 10, 0.9));
  color: #fff;
}

.case-meta .tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff8a80;
  margin-bottom: 0.35rem;
}

.case-meta h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.case-meta .case-abbr {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 0.35rem 0 0.45rem;
}

.case-meta .case-abbr strong {
  color: #ff8a80;
  font-weight: 700;
}

.case-kiki {
  display: grid;
  grid-template-columns: minmax(17rem, 0.9fr) 1.35fr;
  gap: 0;
  margin-top: 1.25rem;
  color: #fff;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--accent);
  background: var(--ink);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.case-kiki .kiki-head {
  position: relative;
  z-index: 1;
  padding: 2rem 1.75rem 2.1rem;
  background:
    radial-gradient(120% 80% at 0% 100%, rgba(225, 6, 0, 0.16), transparent 55%),
    linear-gradient(180deg, #121212 0%, var(--ink) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-kiki .kiki-head::after {
  content: "";
  position: absolute;
  top: 12%;
  bottom: 12%;
  right: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 255, 255, 0.18) 30%,
    rgba(255, 255, 255, 0.18) 70%,
    transparent
  );
  pointer-events: none;
}

.kiki-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: #fff;
  margin: 0 0 0.65rem;
}

.kiki-expand {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.22rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--accent);
  margin: 0 0 1.15rem;
  line-height: 1.25;
  max-width: 18ch;
}

.kiki-tech {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 0.75rem;
}

.kiki-can {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
  margin: 0;
  max-width: 34ch;
}

.kiki-cta-wrap {
  margin-top: 1.35rem;
}

.kiki-cta {
  display: inline-flex;
  width: auto;
  text-decoration: none;
}

.kiki-stage {
  position: relative;
  min-height: 20rem;
  background: #050505;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.kiki-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.55) 0%, transparent 18%),
    radial-gradient(70% 80% at 70% 45%, transparent 35%, rgba(0, 0, 0, 0.35) 100%);
}

.case-kiki video {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 20rem;
  max-height: 30rem;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 980px) {
  .case-kiki {
    grid-template-columns: 1fr;
  }

  .case-kiki .kiki-head {
    padding: 1.75rem 1.4rem;
  }

  .case-kiki .kiki-head::after {
    display: none;
  }

  .kiki-expand {
    max-width: none;
  }

  .kiki-stage::before {
    background:
      linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, transparent 22%),
      radial-gradient(70% 80% at 50% 45%, transparent 35%, rgba(0, 0, 0, 0.3) 100%);
  }

  .case-kiki video {
    object-fit: contain;
    max-height: 26rem;
  }
}

.case-stack {
  display: grid;
  gap: 1.25rem;
}

.case-grid.case-grid-2,
.case-grid.case-grid-3 {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 1.25rem;
}

.case-grid.case-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.case-grid.case-grid-2 .case-tile,
.case-grid.case-grid-3 .case-tile {
  min-height: 16rem;
}

/* —— SPIEL · Bürokratie-Buster —— */
.spiel {
  position: relative;
  min-height: min(100dvh, 52rem);
  padding: calc(var(--nav-h) + 1.5rem) 0 2.5rem;
  background: var(--ink);
  color: #f3f4f6;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
}

.spiel-shell {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
  min-height: 0;
  height: 100%;
}

.spiel-head {
  flex-shrink: 0;
}

.spiel-head .kicker {
  margin-bottom: 0.45rem;
}

.spiel-head .section-title {
  max-width: 16ch;
  margin-bottom: 0.45rem;
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  color: #fff;
}

.spiel-head .section-lead {
  margin-bottom: 0;
  max-width: 46ch;
  font-size: 0.98rem;
  color: #9aa3b5;
}

.spiel-frame {
  position: relative;
  flex: 1;
  min-height: 0;
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  background: #6fa8d8;
  box-shadow:
    0 22px 48px rgba(10, 10, 10, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  overflow: hidden;
}

.spiel-hud {
  position: absolute;
  inset: 0.75rem 0.85rem auto;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  justify-content: space-between;
  pointer-events: none;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}

.spiel-hud span {
  padding: 0.4rem 0.75rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(10, 10, 10, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px rgba(10, 10, 10, 0.08);
}

.spiel-hud strong {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent);
}

.spiel-hud-end {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.spiel-mute {
  pointer-events: auto;
  margin: 0;
  padding: 0.15rem 0.45rem;
  border: 1px solid rgba(10, 10, 10, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #1a1a1a;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.spiel-mute[aria-pressed="true"] {
  background: rgba(30, 30, 30, 0.82);
  color: #fff;
  border-color: transparent;
}

#spielCanvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  touch-action: none;
  cursor: crosshair;
}

.spiel-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  background: rgba(10, 10, 10, 0.28);
  backdrop-filter: blur(4px);
  padding: 1.25rem;
}

.spiel-overlay[hidden] {
  display: none;
}

.spiel-card {
  width: min(100%, 26rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  padding: 1.5rem 1.4rem 1.35rem;
  box-shadow: 0 24px 48px rgba(10, 10, 10, 0.18);
  text-align: left;
  color: var(--ink);
}

.spiel-card[hidden] {
  display: none;
}

.spiel-card-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.55rem;
}

.spiel-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.55rem;
  color: var(--ink);
}

.spiel-card p {
  color: var(--muted);
  margin-bottom: 1.15rem;
  font-size: 0.98rem;
}

.spiel-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.spiel-card-actions .btn {
  flex: 1 1 auto;
}

@media (max-width: 720px) {
  .spiel {
    padding: calc(var(--nav-h) + 0.75rem) 0 0.85rem;
  }

  .spiel-head .section-lead {
    font-size: 0.9rem;
  }

  .spiel-hud {
    font-size: 0.75rem;
    gap: 0.35rem;
  }
}

/* Teaser + Close: default desktop hidden */
.spiel-teaser {
  display: none;
}

.spiel-close {
  display: none;
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 8;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 0;
  background: rgba(10, 10, 10, 0.72);
  color: #fff;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  place-items: center;
  align-content: center;
}

.spiel-close:hover {
  background: var(--accent);
}

.spiel-rotate {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 6;
  place-items: center;
  align-content: center;
  gap: 0.35rem;
  padding: 1.5rem;
  text-align: center;
  background: rgba(10, 10, 10, 0.88);
  color: #fff;
}

.spiel-rotate[hidden] {
  display: none !important;
}

.spiel-rotate-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.spiel-rotate h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.spiel-rotate p {
  color: #9aa3b5;
  font-size: 0.95rem;
  max-width: 28ch;
  margin: 0 auto;
}

.spiel-rotate-icon {
  margin-top: 0.65rem;
  font-size: 2.4rem;
  color: var(--accent);
  animation: spiel-rotate-pulse 1.4s ease-in-out infinite;
}

@keyframes spiel-rotate-pulse {
  0%, 100% { transform: rotate(-18deg); }
  50% { transform: rotate(18deg); }
}

/* Mobile: Vorschau + Start; Spiel nur in Vollansicht */
@media (max-width: 900px) {
  .spiel-teaser {
    display: grid;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 3px solid var(--accent);
    background: #111;
    overflow: hidden;
  }

  .spiel-teaser-media {
    width: min(33.333vw, 33.333%);
    max-width: 33.333vw;
    margin: 1rem auto 0;
    overflow: hidden;
    background: transparent;
  }

  .spiel-teaser-media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
  }

  .spiel-teaser-body {
    padding: 1.15rem 1.15rem 1.25rem;
  }

  .spiel-teaser-kicker {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.4rem;
  }

  .spiel-teaser-body h3 {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 5vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.45rem;
    color: #fff;
  }

  .spiel-teaser-body p {
    color: #9aa3b5;
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .spiel-teaser-body .btn {
    width: 100%;
  }

  .spiel-frame {
    display: none;
  }

  body.spiel-fs-open {
    overflow: hidden;
  }

  body.spiel-fs-open .site-nav,
  body.spiel-fs-open .kiki-float,
  body.spiel-fs-open .site-footer,
  body.spiel-fs-open .scroll-progress,
  body.spiel-fs-open .skip-link {
    display: none !important;
  }

  body.spiel-fs-open .spiel {
    position: fixed;
    inset: 0;
    z-index: 220;
    min-height: 100dvh;
    max-height: 100dvh;
    height: 100dvh;
    width: 100vw;
    padding: 0;
    margin: 0;
    border: 0;
    background: #0a0a0a;
  }

  body.spiel-fs-open .spiel-shell {
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
    padding: 0;
    gap: 0;
  }

  body.spiel-fs-open .spiel-head,
  body.spiel-fs-open .spiel-teaser {
    display: none !important;
  }

  body.spiel-fs-open .spiel-frame {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    box-shadow: none;
    border-radius: 0;
  }

  body.spiel-fs-open .spiel-close {
    display: grid;
  }

  body.spiel-fs-open .spiel-close[hidden] {
    display: grid !important;
  }

  body.spiel-fs-open .spiel-hud {
    inset: 0.45rem 3.2rem auto 0.55rem;
    font-size: 0.68rem;
    gap: 0.35rem 0.55rem;
  }

  body.spiel-fs-open .spiel-hud span {
    padding: 0.28rem 0.5rem;
  }

  body.spiel-fs-open .spiel-card {
    width: min(100%, 22rem);
    padding: 1rem;
    max-height: calc(100dvh - 2rem);
    overflow: auto;
  }

  body.spiel-fs-open .spiel-overlay {
    padding: 0.65rem;
  }
}

@media (max-width: 900px) and (orientation: portrait) {
  body.spiel-fs-open .spiel-rotate {
    display: grid;
  }

  body.spiel-fs-open .spiel-hud,
  body.spiel-fs-open #spielCanvas,
  body.spiel-fs-open .spiel-overlay {
    visibility: hidden;
    pointer-events: none;
  }
}

@media (max-width: 900px) and (orientation: landscape) {
  body.spiel-fs-open .spiel-rotate {
    display: none !important;
  }

  body.spiel-fs-open .spiel-hud,
  body.spiel-fs-open #spielCanvas,
  body.spiel-fs-open .spiel-overlay {
    visibility: visible;
  }

  body.spiel-fs-open #spielCanvas,
  body.spiel-fs-open .spiel-overlay {
    pointer-events: auto;
  }

  body.spiel-fs-open .spiel-hud {
    pointer-events: none;
  }

  body.spiel-fs-open .spiel-mute {
    pointer-events: auto;
  }

  body.spiel-fs-open .spiel-overlay[hidden] {
    display: none;
    pointer-events: none;
  }
}

/* —— KIKI LIVE · dunkel (im Hell/Dunkel-Wechsel) —— */
#kiki {
  scroll-margin-top: calc(var(--nav-h) + var(--anchor-gap));
}

.kiki-live-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.kiki-live-head .section-title {
  max-width: 14ch;
  margin-bottom: 0.55rem;
}

.kiki-live-head .section-lead {
  margin-bottom: 0;
  max-width: 46ch;
}

.kiki-glass {
  display: grid;
  grid-template-columns: minmax(13rem, 0.72fr) 1.4fr;
  min-height: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
}

.kiki-glass-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem;
  padding: 0.25rem 1.15rem 1.35rem 0;
  border-right: 0;
  background: transparent;
}

.kiki-avatar-wrap {
  position: relative;
  width: min(100%, 270px);
}

.kiki-live-ring {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
}

#kiki .talking-host,
#kiki .presence-fallback {
  position: absolute;
  inset: 0;
}

#kiki .talking-host canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

#kiki .presence-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.kiki-live-status {
  font-size: 0.8rem;
  color: #9aa3b5;
  text-align: center;
  min-height: 1.2em;
  max-width: 24ch;
}

.kiki-live-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.kiki-ctrl,
.kiki-reset-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.15rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: #c5cad4;
  border: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.kiki-speak {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem;
  border: 0;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  user-select: none;
  transition: color 0.2s var(--ease), opacity 0.2s var(--ease);
}

.kiki-speak input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.kiki-speak-icons {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  color: inherit;
}

.kiki-speak-icons svg {
  grid-area: 1 / 1;
  width: 1.75rem;
  height: 1.75rem;
}

.kiki-speak-on {
  display: block;
}

.kiki-speak-off {
  display: none;
  color: #7a8494;
}

.kiki-speak.is-off .kiki-speak-on,
.kiki-speak:not(:has(input:checked)) .kiki-speak-on {
  display: none;
}

.kiki-speak.is-off .kiki-speak-off,
.kiki-speak:not(:has(input:checked)) .kiki-speak-off {
  display: block;
}

.kiki-speak.is-off,
.kiki-speak:not(:has(input:checked)) {
  color: #7a8494;
}

.kiki-speak.is-on,
.kiki-speak:has(input:checked) {
  color: var(--accent);
  background: transparent;
  border: 0;
}

.kiki-speak:hover {
  opacity: 0.85;
}

.kiki-ctrl input[type='color'] {
  width: 1.45rem;
  height: 1.25rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.kiki-reset-btn {
  appearance: none;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
}

.kiki-reset-btn:hover {
  color: #fff;
}

.kiki-glass-chat {
  display: grid;
  grid-template-rows: 1fr auto auto;
  min-height: 0;
  background: transparent;
}

.kiki-messages {
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0.25rem 0 0.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 14rem;
  max-height: min(38vh, 20rem);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.24) transparent;
}

.kiki-messages::-webkit-scrollbar {
  width: 6px;
}

.kiki-messages::-webkit-scrollbar-track {
  background: transparent;
  margin: 0.5rem 0;
}

.kiki-messages::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid transparent;
  background-clip: padding-box;
}

.kiki-messages::-webkit-scrollbar-thumb:hover {
  background: color-mix(in srgb, var(--accent) 55%, transparent);
}

.kiki-messages::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

.kiki-messages .msg {
  max-width: min(38rem, 92%);
  padding: 0.55rem 0;
  line-height: 1.45;
  font-size: 0.94rem;
  white-space: pre-wrap;
  word-break: break-word;
  border: 0;
  background: transparent;
  animation: rise 0.35s var(--ease) both;
}

.kiki-messages .msg.user {
  align-self: flex-end;
  background: transparent;
  color: #f3f4f6;
}

.kiki-messages .msg.bot {
  align-self: flex-start;
  background: transparent;
  color: #f3f4f6;
}

.kiki-messages .msg .who {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff8a80;
  margin-bottom: 0.28rem;
}

.kiki-messages .msg a.kiki-chat-link {
  color: #ff8a80;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  text-decoration-thickness: 1px;
}

.kiki-messages .msg a.kiki-chat-link:hover {
  color: #fff;
}

.kiki-status-line {
  min-height: 1.1rem;
  padding: 0;
  font-size: 0.8rem;
  color: #9aa3b5;
}

.kiki-status-line.is-error {
  color: #ff8a80;
}

.kiki-composer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
  padding: 0.55rem 0 0;
  border-top: 0;
  background: transparent;
}

.kiki-composer textarea {
  resize: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  color: #f3f4f6;
  font: inherit;
  padding: 0.8rem 0.9rem;
  min-height: 2.85rem;
  max-height: 7rem;
  outline: none;
  transition: border-color 0.2s var(--ease);
}

.kiki-composer textarea::placeholder {
  color: #7a8494;
}

.kiki-composer textarea:focus {
  border-color: rgba(255, 255, 255, 0.35);
}

.kiki-composer .btn {
  align-self: stretch;
  padding-inline: 1.25rem;
}

@media (max-width: 980px) {
  .kiki-glass {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .kiki-glass-side {
    border-right: 0;
    border-bottom: 0;
    padding: 0 0 1rem;
  }

  .kiki-avatar-wrap {
    width: min(52vw, 210px);
  }

  .kiki-messages {
    min-height: 12rem;
    max-height: min(36vh, 16rem);
  }
}


/* —— PACKAGES —— */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.pkg {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.75rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.pkg:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
}

.pkg.is-featured {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  border-top: 3px solid var(--accent);
}

.pkg.is-featured .pkg-price,
.pkg.is-featured .pkg-list li {
  color: rgba(255, 255, 255, 0.78);
}

.pkg.is-featured .pkg-list li::before {
  background: var(--accent);
}

.pkg-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.pkg h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.pkg-price {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.pkg-price strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: inherit;
  margin-bottom: 0.15rem;
}

.pkg-list {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.pkg-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.pkg-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--accent);
}

.pkg .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  white-space: normal;
  line-height: 1.25;
  font-size: 0.92rem;
}

.pkg-note {
  margin-top: 1.5rem;
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 60ch;
}

/* —— ABOUT —— */
#ueber.section {
  min-height: 100vh;
  min-height: 100dvh;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Extra top pad: fixed nav + breathing room (scroll lands on section top) */
  padding: calc(var(--nav-h) + 2.75rem) 0 3rem;
}

#ueber .about-wrap {
  width: min(100% - (2 * var(--gutter)), var(--max));
  flex: 1;
  align-content: center;
}

.about-wrap {
  display: grid;
  grid-template-columns: minmax(14rem, 18rem) minmax(0, 1fr) minmax(16rem, 24rem);
  grid-template-areas:
    "photo copy media"
    "photo eye eye";
  gap: 1.35rem 2rem;
  align-items: center;
}

.about-visual {
  grid-area: photo;
  max-width: 18rem;
  align-self: center;
}

.about-copy {
  grid-area: copy;
  min-width: 0;
  align-self: center;
}

.about-media {
  grid-area: media;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 0;
  align-self: center;
}

.about-boost-twist {
  grid-area: eye;
  margin: 0.35rem 0 0;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: none;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.6vw, 2.65rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  text-wrap: balance;
}

.about-photo {
  aspect-ratio: 3 / 4;
  max-height: min(58vh, 28rem);
  overflow: hidden;
  background: transparent;
  border: 0;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-copy .kicker {
  margin-bottom: 0.45rem;
}

.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}

.about-copy > p {
  color: var(--muted);
  margin-bottom: 0.75rem;
  max-width: 46ch;
  font-size: 1.02rem;
}

.about-now {
  color: var(--ink-soft) !important;
  font-size: 0.95rem;
  font-weight: 500;
  border: 0;
  padding-left: 0;
  max-width: 42ch !important;
}

.about-now strong {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.about-boost-video-wrap {
  margin: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

.about-boost-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: min(28vh, 14rem);
  height: auto;
  object-fit: cover;
  background: transparent;
  mix-blend-mode: screen;
}

.about-boost-twist strong {
  color: var(--accent);
  font-weight: 800;
}

.section-ink .about-copy h2 {
  color: #fff;
}

.section-ink .about-copy > p {
  color: #9aa3b5;
}

.section-ink .about-now {
  color: #d5dae3 !important;
}

/* —— FAQ —— */
.faq-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 0 1.15rem;
  transition: border-color 0.2s var(--ease);
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(10, 10, 10, 0.28);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1.15rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "\2013";
}

.faq-item p {
  color: var(--muted);
  padding: 0 0 1.15rem;
  max-width: 52ch;
  font-size: 0.98rem;
}

/* —— CONTACT —— */
#kontakt.section {
  min-height: 100vh;
  min-height: 100dvh;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Extra top pad: fixed nav + breathing room (Turbo-Boost / Kontakt jump) */
  padding: calc(var(--nav-h) + 2.75rem) 0 2.5rem;
}

#kontakt .wrap {
  width: min(100% - (2 * var(--gutter)), var(--max));
}

.contact-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.contact-form {
  display: grid;
  gap: 0.55rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  padding: 1.15rem 1.25rem;
}

.field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  color: var(--ink-soft);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0.55rem 0.7rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s var(--ease);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink);
}

.field textarea {
  min-height: 3.4rem;
  max-height: 4.75rem;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.form-note {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.35;
}

.contact-aside .kicker {
  margin-bottom: 0.45rem;
}

.contact-aside h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 2.05rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 0.55rem;
}

.contact-aside p {
  color: var(--muted);
  margin-bottom: 0.55rem;
  max-width: 38ch;
  font-size: 0.92rem;
  line-height: 1.45;
}

.contact-promise {
  color: var(--ink-soft) !important;
  font-weight: 500;
  max-width: 42ch !important;
}

.field-opt {
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
  font-size: 0.85em;
}

.contact-meta {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.85rem;
  padding-top: 0.25rem;
}

.contact-meta dt {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.15rem;
}

.contact-meta dd {
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.35;
}

.contact-meta a:hover {
  color: var(--accent);
}

.section-ink .contact-aside h2 {
  color: #fff;
}

.section-ink .contact-aside > p {
  color: #9aa3b5;
}

.section-ink .contact-promise {
  color: #d5dae3 !important;
}

.section-ink .contact-meta dd {
  color: #e8eaee;
}

.section-ink .contact-meta a:hover {
  color: #ff8a80;
}

.section-ink .contact-form .btn-ink {
  background: var(--accent);
  color: #fff;
  margin-top: 0.15rem;
}

.section-ink .contact-form .btn-ink:hover {
  background: var(--accent-deep);
}

.section-ink .form-note {
  color: #9aa3b5;
}

/* —— LEGAL / IMPRESSUM —— */
.legal-page {
  padding: calc(var(--nav-h) + 3.5rem) 0 4.5rem;
  background: var(--paper);
}

.legal-wrap {
  max-width: 46rem;
}

.legal-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 2rem;
}

.legal-block {
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
}

.legal-block:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.legal-block h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.15rem;
}

.legal-block h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 1.35rem 0 0.45rem;
  color: var(--ink);
}

.legal-block:first-of-type h3:first-child {
  margin-top: 0;
}

.legal-block p,
.legal-block li {
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
  max-width: 52ch;
}

.legal-block a {
  color: var(--accent);
  font-weight: 600;
}

.legal-back {
  margin-top: 2rem;
}

/* —— FOOTER —— */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
}

.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-brand img {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: cover;
}

.site-footer a:hover {
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  justify-content: flex-end;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.footer-links a:hover {
  color: #fff;
}

/* —— WARNHINWEIS · Art. 50 KI-VO · Star-Wars-Crawl —— */
.warnhinweis {
  --warn-lap: 200vh; /* feste Lap-Höhe → Loop ohne Sprung */
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: #000;
  color: #fff;
  scroll-margin-top: calc(var(--nav-h) + var(--anchor-gap));
}

.warnhinweis-fade {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}

.warnhinweis-fade--top {
  top: 0;
  height: 22%;
  background: linear-gradient(to bottom, #000 20%, transparent 100%);
}

.warnhinweis-fade--bottom {
  bottom: 0;
  height: 18%;
  background: linear-gradient(to top, #000 25%, transparent 100%);
}

.warnhinweis-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* starke Perspektive = Text wird schnell kleiner, Fluchtpunkt näher */
  perspective: 140px;
  perspective-origin: 50% 52%;
  overflow: hidden;
  transform-style: preserve-3d;
}

.warnhinweis-crawl {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  /* steiler, aber nicht „am Horizont“ */
  transform: rotateX(42deg);
  transform-origin: 50% 70%;
  transform-style: preserve-3d;
}

.warnhinweis-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  transform-style: preserve-3d;
  will-change: transform;
  animation: warnhinweis-crawl 18s linear infinite;
}

/*
  Text sitzt unten in jeder Lap (= nah / groß) und wandert nach oben (= fern / klein).
  Zweite Lap folgt → alter Text bleibt in der Ferne, neuer kommt von unten.
*/
.warnhinweis-inner {
  box-sizing: border-box;
  flex: 0 0 auto;
  width: min(82%, 36rem);
  height: var(--warn-lap);
  padding: 0 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* Einstieg nah am unteren Bildrand */
  padding-top: calc(var(--warn-lap) * 0.52);
  text-align: center;
}

.warnhinweis-badge {
  margin: 0 0 3.25rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8vw, 4.5rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--accent);
  text-shadow: 0 0 24px rgba(225, 6, 0, 0.35);
}

.warnhinweis-law {
  margin: 0 0 3.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.2vw, 1.85rem);
  font-weight: 700;
  line-height: 2.15;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.92);
}

.warnhinweis-claim {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.6vw, 2.1rem);
  font-weight: 800;
  line-height: 2.1;
  letter-spacing: -0.02em;
  color: #fff;
}

@keyframes warnhinweis-crawl {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    /* genau eine Lap → nahtlos, kein Sprung nach hinten */
    transform: translate3d(0, calc(var(--warn-lap) * -1), 0);
  }
}

/* —— REVEAL —— */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* —— RESPONSIVE —— */
@media (max-width: 1180px) {
  .pkg-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero.is-sunrise .hero-media img {
    animation-duration: 2.5s;
  }

  .hero.is-sunrise .hero-sunrise-veil,
  .hero.is-sunrise .hero-sunrise-glow,
  .hero.is-sunrise .hero-sunrise-bloom,
  .hero.is-sunrise .hero-sunrise-rays,
  .hero.is-sunrise .hero-shade {
    animation-duration: 2.4s;
  }

  .hero.is-sunrise .hero-brand,
  .hero.is-sunrise .hero-eye,
  .hero.is-sunrise .hero-cta-note,
  .hero.is-sunrise .hero-actions,
  .hero.is-sunrise .hero-side-link,
  .hero.is-sunrise .hero-strip {
    animation-duration: 0.95s;
  }

  .hero.is-sunrise .hero-brand { animation-delay: 0.55s; }
  .hero.is-sunrise .hero-eye { animation-delay: 0.7s; }
  .hero.is-sunrise .hero-cta-note { animation-delay: 0.85s; }
  .hero.is-sunrise .hero-actions { animation-delay: 0.95s; }
  .hero.is-sunrise .hero-side-link { animation-delay: 1.1s; }
  .hero.is-sunrise .hero-strip { animation-delay: 0.9s; }

  .hero-sunrise-rays {
    opacity: 0;
  }

  .hero.is-sunrise .hero-sunrise-rays,
  .hero.sunrise-done .hero-sunrise-rays {
    opacity: 0.12;
  }
}

@media (max-width: 980px) {
  .method-grid,
  .pkg-grid,
  .case-grid,
  .case-grid.case-grid-2,
  .case-grid.case-grid-3,
  .about-wrap,
  .contact-band,
  .faq-wrap,
  .strip-row {
    grid-template-columns: 1fr;
  }

  #kontakt.section {
    min-height: 0;
    padding: calc(var(--nav-h) + 1.75rem) 0 3.5rem;
    display: block;
  }

  #kontakt .contact-band {
    gap: 1.75rem;
    align-items: stretch;
  }

  .kiki-float {
    top: calc(var(--nav-h) + 0.65rem);
    right: 0.85rem;
    width: auto;
    align-items: flex-end;
    gap: 0;
  }

  .kiki-float-av {
    width: 76px;
    height: 76px;
    margin-right: 0.15rem;
  }

  .kiki-float-chat {
    display: none !important;
  }

  .hero-content {
    padding-right: 5rem;
  }

  .cap-list {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
  }

  .kreativ-home-grid {
    grid-template-columns: 1fr 1fr;
  }

  .spektrum-live-list {
    grid-template-columns: 1fr;
  }

  .spektrum-area-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .strip-row {
    gap: 0.15rem;
  }

  .strip-row p {
    text-align: left;
    padding: 0.45rem 0.15rem;
  }

  .strip-row p + p {
    border-left: 0;
    padding-left: 0.15rem;
  }

  .method-item + .method-item {
    border-left: 0;
    padding-left: 0;
  }

  .case-feature {
    grid-row: auto;
    min-height: 22rem;
  }

  .cases-head {
    flex-direction: column;
    align-items: start;
  }

  .pkg-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-wrap {
    grid-template-columns: minmax(11rem, 14rem) 1fr;
    grid-template-areas:
      "photo copy"
      "media media"
      "eye eye";
  }

  .about-visual {
    max-width: 14rem;
  }

  .about-photo {
    max-height: min(42vh, 22rem);
  }

  .about-media {
    max-width: min(26rem, 100%);
  }

  .about-boost-video {
    max-height: min(26vh, 14rem);
  }

  .about-boost-twist {
    font-size: clamp(1.55rem, 4vw, 2.2rem);
    text-align: center;
  }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto;
    background: var(--ink);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0;
    display: none;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-cta {
    margin-top: 0.75rem;
    justify-content: center;
  }

  .nav-toggle {
    display: inline-block;
  }

  .kiki-float {
    top: calc(var(--nav-h) + 0.7rem);
    right: 0.7rem;
    left: auto;
    width: auto;
    align-items: flex-end;
    gap: 0;
  }

  .kiki-float-av {
    width: 68px;
    height: 68px;
    margin-right: 0.2rem;
  }

  .kiki-float-chat {
    display: none !important;
  }

  .hero-content {
    padding-bottom: 1.25rem;
    padding-right: 0;
    padding-inline: 0.5rem;
    max-width: 100%;
    text-align: center;
    margin-inline: auto;
  }

  .hero-brand,
  .hero-cta-note {
    text-align: center;
  }

  .hero-eye {
    font-size: clamp(1.85rem, 9vw, 2.6rem);
    max-width: 14ch;
    margin-inline: auto;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 22rem);
    margin-inline: auto;
  }

  .hero-cta-stack {
    width: 100%;
    min-width: 0;
  }

  .hero-side-link {
    margin-top: 1rem;
  }

  .pkg-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .about-wrap {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "copy"
      "media"
      "eye";
    gap: 1.15rem;
  }

  .about-visual {
    max-width: 10rem;
    width: 100%;
    justify-self: center;
    margin-inline: auto;
  }

  .about-boost-twist {
    text-align: center;
  }

  .btn-hero-cta,
  .btn-hero-dl {
    width: 100%;
    white-space: normal;
    margin-inline: auto;
  }

  .hero-strip .strip-row {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    font-size: clamp(0.98rem, 3.4vw, 1.12rem);
  }

  .hero-strip .strip-row p {
    text-align: center;
    padding: 0.75rem 0.9rem;
  }

  .hero-strip .strip-row p:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-strip .strip-row p:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .kreativ-home-grid {
    grid-template-columns: 1fr;
  }

  .spiel {
    min-height: 0;
    padding-bottom: 2rem;
  }

  .case-kiki {
    grid-template-columns: 1fr;
  }

  .kiki-glass {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .scroll-progress {
    transition: none;
  }

  .hero.is-sunrise .hero-media img,
  .hero.is-sunrise .hero-sunrise-veil,
  .hero.is-sunrise .hero-sunrise-glow,
  .hero.is-sunrise .hero-sunrise-bloom,
  .hero.is-sunrise .hero-sunrise-rays,
  .hero.is-sunrise .hero-shade,
  .hero.is-sunrise .hero-brand,
  .hero.is-sunrise .hero-eye,
  .hero.is-sunrise .hero-cta-note,
  .hero.is-sunrise .hero-actions,
  .hero.is-sunrise .hero-side-link,
  .hero.is-sunrise .hero-strip,
  .hero-media img,
  .hero-brand,
  .hero-eye,
  .hero-actions,
  .btn-hero-cta,
  .kiki-messages .msg,
  .kiki-avatar-glow,
  .warnhinweis-badge,
  .warnhinweis-crawl,
  .warnhinweis-track,
  [data-reveal] {
    animation: none !important;
    transition: none;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .hero-media img {
    transform: scale(1.02);
    filter: brightness(1) saturate(1.05) contrast(1);
  }

  .hero-sunrise-veil {
    opacity: 0 !important;
  }

  .hero-sunrise-glow {
    opacity: 0.45 !important;
    transform: translate(-50%, -50%) scale(1) !important;
  }

  .hero-sunrise-bloom {
    opacity: 0.28 !important;
  }

  .hero-sunrise-rays {
    opacity: 0.16 !important;
    transform: translate(-50%, -50%) rotate(-4deg) scale(1) !important;
  }

  .warnhinweis {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.25rem;
  }

  .warnhinweis-stage {
    position: static;
    perspective: none;
  }

  .warnhinweis-crawl {
    position: static;
  }

  .warnhinweis-track {
    display: block;
  }

  .warnhinweis-inner[aria-hidden="true"] {
    display: none;
  }

  .warnhinweis-inner {
    min-height: 0;
    padding: 0;
    transform: none;
  }

  .warnhinweis-fade {
    display: none;
  }

  .warnhinweis-inner {
    height: auto;
    padding-top: 0;
  }
}

/* —— LARGE / ULTRA-WIDE STAGE LAYOUT —— */
@media (min-width: 1440px) {
  :root {
    --max: 96rem; /* ~1536px — better use of 1440–1920 viewports */
    --nav-h: 4.5rem;
    --section-pad-y: clamp(5.5rem, 7vw, 7.5rem);
  }

  .section {
    padding: var(--section-pad-y) 0;
  }

  .method-grid,
  .pkg-grid {
    gap: 0;
  }

  .hero-content {
    max-width: min(100%, 48rem);
  }

  .hero-eye {
    font-size: clamp(2.6rem, 4.2vw, 4.6rem);
  }
}

@media (min-width: 1800px) {
  :root {
    --max: 104rem; /* ~1664px — ultrawide without stretching text */
  }

  .case-grid.case-grid-3 {
    gap: 1.35rem;
  }

  .strip-row {
    font-size: 1.05rem;
  }

  .pkg-grid {
    gap: 1.25rem;
  }
}

/* —— MOBILE SCROLL / PAINT PERFORMANCE —— */
@media (max-width: 900px) {
  :root {
    --nav-blur: 8px;
    --gutter: clamp(0.95rem, 4.2vw, 1.35rem);
  }

  .site-nav,
  .has-hero-nav .site-nav.is-scrolled,
  .has-hero-nav .site-nav:has(.nav-links.is-open) {
    backdrop-filter: blur(var(--nav-blur));
    -webkit-backdrop-filter: blur(var(--nav-blur));
  }

  main > section,
  .section,
  .spektrum-area {
    content-visibility: visible;
    contain-intrinsic-size: none;
  }

  .hero.sunrise-done .hero-media img,
  .hero:not(.is-sunrise) .hero-media img {
    animation: none;
    will-change: auto;
  }

  .hero.is-sunrise .hero-media img {
    will-change: transform, filter;
  }

  .kiki-float {
    will-change: auto;
  }

  .kiki-float video {
    content-visibility: auto;
  }
}

@media (hover: none) and (pointer: coarse) {
  .btn-hero-cta:hover,
  .btn-hero-dl:hover,
  .btn:hover,
  .case-tile:hover,
  .pkg:hover,
  .method-item:hover {
    transform: none;
  }

  .case-tile:hover img,
  .case-tile:hover video,
  .hero-media img {
    transform: none;
  }

  .scroll-progress {
    will-change: auto;
  }
}

@supports (padding: max(0px)) {
  .site-nav {
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
  }
}
