/* ==========================================================================
   Eatova Landing v2 - Anti-Slop-Ueberarbeitung
   Typo: Archivo (variable, Breiten-Achse: Display gestreckt-fett, Body normal)
         + IBM Plex Mono für Zahlen und Metadaten.
   Haltung: Kanten statt Glow, Panels statt schwebender Elemente, Film-Grain,
   ein Akzent (Lime, App-Token), Theme-Lock dark (die App ist dark-only).
   Radius-System: Buttons/Chips Pill, Panels 24px, Phone-Bezel 44px.
   ========================================================================== */

:root {
  --bg: #0B0D11;
  --surface: #14171D;
  --surface-soft: #1B1F27;
  --text: #F5F6F8;
  --muted: #D8DBE0;
  --lime: #C3F400;
  --lime-ink: #161a04;
  --hairline: rgba(255, 255, 255, 0.09);
  --shadow: 0 30px 90px rgba(3, 4, 7, 0.6);
  --r-panel: 24px;
  --r-phone: 44px;
  --r-pill: 999px;
  --font: "Archivo", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: dark;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Film-Grain: nimmt dem Dark-Theme die sterile Flatness. Fixed + no
   pointer-events, damit nichts repainted wird (Perf-Regel des Skills). */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

::selection { background: var(--lime); color: var(--bg); }

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

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.container {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 28px;
}

/* Display-Typo: gestreckte, fette Archivo. Der Breiten-Kontrast zur normalen
   Body-Schrift ist die Stimme der Seite. */
h1, h2 {
  font-weight: 800;
  font-stretch: 118%;
  letter-spacing: -0.025em;
  line-height: 1.02;
  text-wrap: balance;
}

h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }

p { color: var(--muted); }

.mono { font-family: var(--mono); }

/* ==========================================================================
   Navigation
   ========================================================================== */

#top-sentinel { position: absolute; top: 0; height: 32px; width: 1px; }

.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.nav.scrolled {
  background: rgba(11, 13, 17, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--hairline);
}

.nav-inner {
  max-width: 1240px;
  margin-inline: auto;
  padding: 13px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-stretch: 118%;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

/* Wortmarke: "eat" + Fokusring-SVG als "o" + "va" (Logo 2026-08) */
.brand-word {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  font-stretch: 112%;
  font-size: 1.32rem;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
}

.brand-o {
  display: block;
  width: 0.98em;
  height: 0.98em;
  margin: 0 0.05em;
}

.nav-links { display: flex; gap: 28px; margin-left: auto; }

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--lime); }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: var(--r-pill);
  padding: 15px 30px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 800;
  font-stretch: 112%;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: transform 0.2s var(--ease), background 0.2s ease, box-shadow 0.25s ease;
}

.btn:active { transform: translateY(1px) scale(0.98); }

/* Taktile Button-Materialien nach dem 21st-Cinematic-Hero-Rezept:
   Licht von oben (inset-Highlight), Masse nach unten (gestaffelte Schatten). */
.btn-primary {
  background: linear-gradient(180deg, #d3ff33 0%, var(--lime) 100%);
  color: var(--bg);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.12),
    0 2px 4px rgba(0, 0, 0, 0.35),
    0 14px 28px -8px rgba(0, 0, 0, 0.45),
    inset 0 1px 1px rgba(255, 255, 255, 0.65),
    inset 0 -3px 6px rgba(0, 0, 0, 0.16);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.12),
    0 6px 12px -2px rgba(0, 0, 0, 0.4),
    0 22px 38px -10px rgba(0, 0, 0, 0.55),
    inset 0 1px 1px rgba(255, 255, 255, 0.65),
    inset 0 -3px 6px rgba(0, 0, 0, 0.16);
}

.btn-primary:active {
  background: var(--lime);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.18),
    inset 0 3px 6px rgba(0, 0, 0, 0.22);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--hairline);
}

.btn-ghost:hover {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.btn-dark {
  background: linear-gradient(180deg, #1a1e26 0%, var(--bg) 100%);
  color: var(--text);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 2px 4px rgba(0, 0, 0, 0.5),
    0 14px 28px -6px rgba(0, 0, 0, 0.7),
    inset 0 1px 1px rgba(255, 255, 255, 0.14),
    inset 0 -3px 6px rgba(0, 0, 0, 0.6);
}

.btn-dark:hover {
  transform: translateY(-3px);
  background: linear-gradient(180deg, #232834 0%, #14171d 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16),
    0 6px 12px -2px rgba(0, 0, 0, 0.6),
    0 22px 36px -8px rgba(0, 0, 0, 0.85),
    inset 0 1px 1px rgba(255, 255, 255, 0.18),
    inset 0 -3px 6px rgba(0, 0, 0, 0.6);
}

.btn-nav { padding: 10px 20px; font-size: 0.88rem; }

/* ==========================================================================
   Hero: Split, linksbündig, Type führt. Kein Mega-Glow, das Phone steht auf
   einer angeschnittenen Panel-Kante.
   ========================================================================== */

.hero {
  position: relative;
  padding-top: 96px;
  min-height: 100dvh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
  background: var(--bg);
}

/* Higgsfield-Backdrop mit langsamem Ken-Burns-Zoom: Video-Gefuehl ohne Video. */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  animation: kenburns 38s ease-in-out infinite alternate;
}

/* Periodischer Scan-Sweep ueber die ganze Buehne: das Produkt-Motiv als
   lebendige Lichtkante. Laeuft 1x pro 9s-Zyklus, Rest ist Pause. */
.hero-scanline {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(195, 244, 0, 0.75) 20%, #eaffb0 50%, rgba(195, 244, 0, 0.75) 80%, transparent 100%);
  animation: hero-sweep 9s var(--ease) 2s infinite;
  opacity: 0;
  pointer-events: none;
}

/* Leichte Abdunklung zur Mitte-unten, damit Copy und Mockup sauber sitzen. */
.hero-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 115%, rgba(4, 5, 8, 0.85) 0%, transparent 55%),
    linear-gradient(180deg, rgba(11, 13, 17, 0.45) 0%, transparent 26%);
}

.hero-center {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  padding-top: clamp(28px, 6vh, 72px);
}

.hero-title {
  font-size: clamp(2.5rem, 5.4vw, 4.1rem);
  opacity: 0;
  animation: fade-up 0.9s var(--ease) 0.15s forwards;
}

/* Durchgestrichenes "tippen": die Wertaussage als Typo-Geste. Der Strich
   zeichnet sich nach dem Titel-Einstieg selbst. */
.strike {
  position: relative;
  color: var(--muted);
  white-space: nowrap;
}

.strike::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  top: 52%;
  height: 0.09em;
  background: var(--lime);
  border-radius: 2px;
  transform: scaleX(0) rotate(-2deg);
  transform-origin: left center;
  animation: strike-in 0.5s var(--ease) 1s forwards;
}

.hero-sub {
  margin-top: 22px;
  margin-inline: auto;
  font-size: 1.12rem;
  line-height: 1.65;
  max-width: 52ch;
  opacity: 0;
  animation: fade-up 0.8s var(--ease) 0.35s forwards;
}

.hero-ctas {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.8s var(--ease) 0.5s forwards;
}

/* Mittig angeschnittenes App-Mockup (Launch-UI-Pattern): der Container
   kappt das Phone und blendet es nach unten weich aus. */
.hero-mockup {
  margin-top: clamp(36px, 6vh, 64px);
  height: clamp(260px, 40vh, 440px);
  overflow: hidden;
  mask-image: linear-gradient(180deg, black 62%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, black 62%, transparent 100%);
  opacity: 0;
  animation: fade-up 1.1s var(--ease) 0.6s forwards;
}

.hero-mockup .phone {
  width: min(340px, 80vw);
  margin-inline: auto;
  box-shadow: var(--shadow);
}

/* ==========================================================================
   Phone-Frames
   ========================================================================== */

.phone {
  width: min(320px, 78vw);
  border-radius: var(--r-phone);
  border: 8px solid #20242d;
  background: #20242d;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}

.phone img { border-radius: calc(var(--r-phone) - 8px); }

.phone-crop { aspect-ratio: 10 / 11; }

.phone-crop img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

/* Angeschrägte Varianten in den Feature-Panels: leichte Rotation nimmt den
   Screenshots die Katalog-Steifheit. Der Tilt-Handler übernimmt bei Hover. */
.lean-right { rotate: 2.2deg; }
.lean-left { rotate: -2.2deg; }

/* Freistehendes Feature-Bild: der Higgsfield-generierte KI-Scan-Teller
   (1168px Quelle, knackscharf bei voller Panel-Breite). */
.shot-img {
  width: min(560px, 100%);
  height: auto;
  border-radius: 18px;
  box-shadow: var(--shadow);
  will-change: transform;
}

/* Panel hinter den Feature-Screenshots: eine echte Fläche mit Kante,
   statt eines im Nichts schwebenden Bildes. */
.shot-panel {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: clamp(28px, 4vw, 52px) clamp(20px, 3vw, 40px);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(195, 244, 0, 0.05) 0%, transparent 55%),
    var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-panel);
  overflow: hidden;
}

.shot-panel .phone { margin-block: -6px; }

/* ==========================================================================
   Marquee: echte Produktnamen aus dem eigenen Index, Lime-Band, leicht gekippt
   ========================================================================== */

.marquee {
  background: var(--lime);
  color: var(--lime-ink);
  overflow: hidden;
  padding: 15px 0;
  rotate: -1.1deg;
  scale: 1.02;
  margin-block: -12px;
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
}

.marquee-group span {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.marquee-group .sep { opacity: 0.45; }

/* ==========================================================================
   Proof: ein nachprüfbarer Satz statt Zahlen-Banner. Beide Quellen sind
   einen Klick entfernt (OpenFoodFacts, GitHub).
   ========================================================================== */

.proof { padding: 110px 0 30px; }

.proof-inner p {
  max-width: 58ch;
  font-size: 1.15rem;
  line-height: 1.7;
}

.proof-inner a {
  color: var(--lime);
  text-underline-offset: 3px;
}

/* ==========================================================================
   Feature-Splits
   ========================================================================== */

.feature { padding: 105px 0; }

.split {
  display: grid;
  grid-template-columns: 5fr 6fr;
  align-items: center;
  gap: clamp(40px, 6vw, 88px);
}

.split-flip { grid-template-columns: 6fr 5fr; }

.split-copy h2 { text-transform: uppercase; }

.split-copy p { margin-top: 20px; font-size: 1.07rem; max-width: 48ch; }

.check-list {
  list-style: none;
  margin-top: 28px;
  display: grid;
}

.check-list li {
  position: relative;
  padding: 13px 0 13px 30px;
  color: var(--text);
  font-size: 0.99rem;
  font-weight: 500;
  border-top: 1px solid var(--hairline);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 21px;
  width: 9px;
  height: 6px;
  border-left: 2px solid var(--lime);
  border-bottom: 2px solid var(--lime);
  transform: rotate(-45deg);
}

.split-visual { display: flex; justify-content: center; }

/* Rezept-Duo: Higgsfield-Food-Fotografie mit echten App-Werten. */
.recipe-duo {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 420px;
}

.recipe-duo figure { margin: 0; }

.recipe-duo img {
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease);
}

.recipe-duo figure:hover img { transform: translateY(-4px) scale(1.02); }

.recipe-duo figcaption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-top: 9px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

.recipe-duo figcaption .mono {
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 500;
  white-space: nowrap;
}

/* ==========================================================================
   Coach: getönte Vollbreiten-Bühne
   ========================================================================== */

.coach-section {
  padding: 115px 0;
  background: #0E1118;
  border-block: 1px solid var(--hairline);
}

.coach-head { max-width: 620px; }
.coach-head h2 { text-transform: uppercase; }
.coach-head p { margin-top: 18px; font-size: 1.07rem; }

.coach-stage {
  position: relative;
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.coach-bubbles { position: absolute; inset: 0; pointer-events: none; }

.coach-bubble {
  position: absolute;
  max-width: 260px;
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 0.88rem;
  line-height: 1.5;
  box-shadow: var(--shadow);
}

.coach-bubble.b1 {
  left: max(2%, calc(50% - 490px));
  top: 16%;
  background: var(--surface-soft);
  border: 1px solid var(--hairline);
  color: var(--text);
  border-bottom-left-radius: 6px;
  rotate: -1.5deg;
}

.coach-bubble.b2 {
  right: max(2%, calc(50% - 470px));
  bottom: 20%;
  background: var(--lime);
  color: var(--bg);
  font-weight: 600;
  border-bottom-right-radius: 6px;
  rotate: 1.5deg;
}

/* ==========================================================================
   Ablauf: Verb-Reihen, Mono-Body
   ========================================================================== */

.flow { padding: 110px 0; }

.flow-inner h2 { max-width: 620px; text-transform: uppercase; }

.flow-rows { margin-top: 52px; display: grid; }

.flow-row {
  display: grid;
  /* Breit genug fuer "DRANBLEIBEN" in Maximalgroesse (laengstes Verb) */
  grid-template-columns: 330px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 32px 0;
  border-top: 1px solid var(--hairline);
}

.flow-row:last-child { border-bottom: 1px solid var(--hairline); }

.flow-verb {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  font-stretch: 118%;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--lime);
}

.flow-row p { font-size: 1.02rem; max-width: 54ch; }

/* ==========================================================================
   Maker-Zitat: großes Lime-Anführungszeichen als typografischer Anker
   ========================================================================== */

.maker { padding: 40px 0 115px; }

.maker-inner { max-width: 780px; }

.maker blockquote { position: relative; padding-left: clamp(56px, 8vw, 96px); }

.maker blockquote::before {
  content: "\201E";
  position: absolute;
  left: 0;
  top: -0.28em;
  font-size: clamp(4.5rem, 9vw, 7rem);
  font-weight: 800;
  font-stretch: 118%;
  line-height: 1;
  color: var(--lime);
}

.maker blockquote p {
  font-size: clamp(1.35rem, 2.7vw, 1.9rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  letter-spacing: -0.015em;
}

.maker blockquote footer {
  margin-top: 20px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.85rem;
}

/* ==========================================================================
   FAQ: Hairline-Reihen, Plus->X-Icon, weiche Hoehen-Animation
   (Interaktionsmuster nach den 21st.dev-Accordion-Referenzen)
   ========================================================================== */

.faq { padding: 0 0 115px; }

.faq-inner { max-width: 820px; }

.faq-inner h2 { text-transform: uppercase; }

.faq-list { margin-top: 40px; }

.faq-item { border-top: 1px solid var(--hairline); }
.faq-item:last-child { border-bottom: 1px solid var(--hairline); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--text);
  font-family: var(--font);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: left;
  transition: color 0.2s ease;
}

.faq-q:hover { color: var(--lime); }

.faq-icon {
  position: relative;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  transition: transform 0.35s var(--ease);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--muted);
  border-radius: 2px;
  transition: background 0.2s ease;
}

.faq-icon::before { width: 14px; height: 2px; }
.faq-icon::after { width: 2px; height: 14px; }

.faq-q:hover .faq-icon::before,
.faq-q:hover .faq-icon::after { background: var(--lime); }

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}

.faq-a-inner { overflow: hidden; }

.faq-a-inner p {
  padding: 0 4px 24px;
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.65;
}

.faq-a-inner a { color: var(--lime); text-underline-offset: 3px; }

.faq-item.open .faq-a { grid-template-rows: 1fr; }

/* ==========================================================================
   Finaler CTA
   ========================================================================== */

.cta { padding-bottom: 110px; }

.cta-panel {
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(255, 255, 255, 0.22) 0%, transparent 55%),
    var(--lime);
  border-radius: var(--r-panel);
  padding: clamp(52px, 7vw, 88px);
  text-align: center;
  color: var(--bg);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 40px 90px -30px rgba(0, 0, 0, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.55),
    inset 0 -3px 12px rgba(0, 0, 0, 0.12);
}

.cta-panel h2 {
  color: var(--bg);
  text-transform: uppercase;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
}

.cta-panel p {
  margin-top: 14px;
  color: rgba(11, 13, 17, 0.7);
  font-family: var(--mono);
  font-size: 0.95rem;
}

.cta-panel .btn { margin-top: 32px; }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer { border-top: 1px solid var(--hairline); padding: 34px 0; }

.footer-inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

.footer-links { display: flex; gap: 22px; margin-left: auto; }

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
}

.footer-links a:hover { color: var(--lime); }

.footer-note { color: var(--muted); font-family: var(--mono); font-size: 0.82rem; }

/* ==========================================================================
   KI-Kennzeichnung (Art. 50 EU-KI-Verordnung): dezentes Chip-Badge auf allen
   KI-generierten Bildern. Die Handy-Screens sind echte App-Screenshots und
   tragen bewusst keine Kennzeichnung.
   ========================================================================== */

.ai-badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  background: rgba(11, 13, 17, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(245, 246, 248, 0.88);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: help;
}

.ai-badge::before {
  content: "\2726";
  color: var(--lime);
  font-size: 0.7rem;
  line-height: 1;
}

/* Position je Buehne */
.hero .ai-badge { left: 18px; bottom: 16px; }
.shot-panel .ai-badge { right: 14px; bottom: 12px; }
.recipe-duo figure { position: relative; }
.recipe-duo .ai-badge { top: 8px; right: 8px; padding: 4px 9px; font-size: 0.56rem; gap: 5px; }

/* Transparenzhinweis im Footer */
.footer-ai {
  margin-top: 16px;
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(216, 219, 224, 0.55);
  max-width: 78ch;
}

/* ==========================================================================
   Scroll-Reveals (einzeln + gestaffelte Gruppen)
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.in { opacity: 1; transform: none; }

.reveal-group > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-group.in > * { opacity: 1; transform: none; }

.reveal-group.in > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-group.in > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-group.in > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-group.in > *:nth-child(5) { transition-delay: 0.4s; }

/* ==========================================================================
   Keyframes
   ========================================================================== */

@keyframes strike-in { to { transform: scaleX(1) rotate(-2deg); } }

@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}

@keyframes hero-sweep {
  0% { top: 6%; opacity: 0; }
  4% { opacity: 1; }
  40% { top: 90%; opacity: 1; }
  46% { top: 90%; opacity: 0; }
  100% { top: 90%; opacity: 0; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Mobile Collapse (explizit, < 900px)
   ========================================================================== */

@media (max-width: 900px) {
  .hero { padding-top: 100px; min-height: auto; }
  .hero-mockup { height: clamp(220px, 34vh, 320px); }
  .nav-links { display: none; }
  .marquee { rotate: 0deg; scale: 1; margin-block: 0; }
  .proof { padding-top: 72px; }
  .split, .split-flip { grid-template-columns: 1fr; }
  .split-flip .split-visual { order: 2; }
  .feature { padding: 64px 0; }
  .lean-right, .lean-left { rotate: 0deg; }
  .coach-bubble { position: static; max-width: 100%; margin-top: 14px; rotate: 0deg; }
  .coach-bubbles { position: static; margin-top: 20px; display: grid; pointer-events: auto; }
  .coach-stage { flex-direction: column; align-items: center; }
  .flow-row { grid-template-columns: 1fr; gap: 8px; }
  .maker blockquote { padding-left: 0; padding-top: 64px; }
  .maker blockquote::before { top: -0.1em; }
}

/* ==========================================================================
   Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .strike::after { animation: none; transform: scaleX(1) rotate(-2deg); }
  .hero-title, .hero-sub, .hero-ctas, .hero-mockup { animation: none; opacity: 1; }
  .hero-bg { animation: none; }
  .hero-scanline { animation: none; opacity: 0; }
  .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .reveal-group > * { opacity: 1; transform: none; transition: none; }
  .faq-a { transition: none; }
  .faq-icon { transition: none; }
  .btn { transition: none; }
}
