/* ---------- Local fonts (latin subset, self-hosted) ---------- */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url('fonts/outfit-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/jetbrains-mono-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* --- Light surface, mit subtilem Lila-Tint (matched zum App-Splash) --- */
  --bg-page:        #ECE6F1;
  --bg-paper:       #FBF9FD;
  --bg-soft:        #F5F1F8;

  /* --- Dark anchor — gleiche Farbe wie App-LaunchScreenBackground (#1E0D33) --- */
  --bg-dark:        #1A0E2E;
  --bg-darker:      #0E0820;

  --border-subtle:  rgba(94, 43, 181, 0.10);
  --border-mid:     rgba(94, 43, 181, 0.22);
  --border-dark:    rgba(255, 255, 255, 0.08);

  /* --- App accent colors (deeper variants für Lesbarkeit auf hell) --- */
  --violet:         #5E2BB5;
  --violet-light:   #8B47E5;
  --violet-pale:    rgba(139, 71, 229, 0.12);
  --cyan:           #0A8DD9;
  --cyan-bright:    #4DC8FF;
  --magenta:        #C53AAE;
  --magenta-light:  #E946C9;

  /* --- Text --- */
  --text-primary:   #1A1230;
  --text-secondary: #5A4F76;
  --text-muted:     #6B6480;
  --text-quiet:     #BCB5C9;
  --text-on-dark:   #ECE6F5;
  --text-on-dark-muted: #A89DC2;

  /* --- Radius --- */
  --radius-soft:    16px;
  --radius-card:    22px;
  --radius-card-lg: clamp(24px, 3vw, 36px);
  --radius-phone:   32px;
  --radius-hero:    36px;
  --radius-pill:    999px;

  /* --- Padding --- */
  --pad-card:       clamp(28px, 3vw, 38px);
  --pad-card-sm:    clamp(20px, 2.2vw, 28px);

  /* --- Easing --- */
  --ease-spring:    cubic-bezier(.2, .7, .2, 1);
  --ease-out:       cubic-bezier(0.2, 0.8, 0.2, 1);

  /* --- Duration --- */
  --dur-fast:       .25s;
  --dur-base:       .4s;
  --dur-slow:       .55s;
  --dur-reveal:     .8s;
  --dur-reveal-3d:  .9s;

  /* --- Shadow --- */
  --shadow-soft:    0 24px 48px -24px rgba(94, 43, 181, 0.18);
  --shadow-phone:   0 50px 80px -20px rgba(26, 18, 48, 0.35), 0 16px 32px -12px rgba(94, 43, 181, 0.22), 0 0 0 1px rgba(26, 18, 48, 0.05);
  --shadow-hero:    0 60px 100px -25px rgba(26, 18, 48, 0.45), 0 20px 40px -15px rgba(94, 43, 181, 0.25), 0 0 0 1px rgba(26, 18, 48, 0.06);
  --shadow-dark:    0 40px 80px -30px rgba(94, 43, 181, 0.4), 0 0 0 1px rgba(94, 43, 181, 0.18);

  /* --- Blur --- */
  --blur-aurora:    120px;
  --blur-glow:      40px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg-page);
  color: var(--text-primary);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 380;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.005em;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--violet); color: #fff; }

/* ---------- Atmospheric background ---------- */
.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 75% 55% at 10% 12%, rgba(139, 71, 229, 0.10), transparent 70%),
    radial-gradient(ellipse 60% 50% at 92% 82%, rgba(77, 200, 255, 0.07), transparent 75%);
}

.aurora {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  filter: blur(120px);
  opacity: 0.45;
  mix-blend-mode: multiply;
  animation: drift 38s ease-in-out infinite;
  border-radius: 50%;
}
.aurora-1 {
  top: -20%; left: -15%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(189, 165, 230, 0.7) 0%, transparent 65%);
  animation-delay: 0s;
}
.aurora-2 {
  bottom: -25%; right: -20%;
  width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(180, 215, 240, 0.55) 0%, transparent 70%);
  animation-delay: -19s;
}

@keyframes drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(4vw, -2vw) scale(1.05); }
  66%      { transform: translate(-2vw, 3vw) scale(0.97); }
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.18;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.18, 0 0 0 0 0.18, 0 0 0 0 0.22, 0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- Layout ---------- */
.wrap {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ---------- Top bar (sticky + shrink) ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 22px 0;
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: padding .28s var(--ease-out),
              background .28s var(--ease-out),
              backdrop-filter .28s var(--ease-out),
              border-color .28s var(--ease-out);
}
.topbar.scrolled {
  padding: 10px 0;
  background: rgba(236, 230, 241, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--border-subtle);
}
.topbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brandmark {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: font-size .28s var(--ease-out), gap .28s var(--ease-out);
}
.brandmark-icon {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  box-shadow:
    0 2px 6px rgba(26, 18, 48, 0.12),
    0 0 0 1px rgba(26, 18, 48, 0.04);
  transition: transform .25s ease, box-shadow .25s ease,
              width .28s var(--ease-out), height .28s var(--ease-out);
}
.topbar.scrolled .brandmark { font-size: 19px; gap: 10px; }
.topbar.scrolled .brandmark-icon { width: 30px; height: 30px; }
.brandmark:hover .brandmark-icon {
  transform: rotate(-3deg) scale(1.04);
  box-shadow:
    0 6px 14px rgba(94, 43, 181, 0.22),
    0 0 0 1px rgba(94, 43, 181, 0.10);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 6px;
  cursor: pointer;
  z-index: 110;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform .28s var(--ease-out),
              opacity .2s var(--ease-out);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.topbar nav {
  position: relative;
  display: flex;
  gap: 28px;
  align-items: center;
}
.topbar nav a {
  position: relative;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 6px 0;
  transition: color .25s ease;
}
.topbar nav a:hover { color: var(--violet); }
.topbar nav a.active { color: var(--violet); }
/* Animated sliding underline indicator (positioned by JS) */
.nav-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--violet);
  border-radius: 2px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(0);
  transition: transform .35s var(--ease-out),
              width .35s var(--ease-out),
              opacity .25s var(--ease-out);
}
.nav-underline.visible { opacity: 1; }
.lang-switch {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}
.lang-switch .active {
  color: var(--violet);
  font-weight: 600;
}
.lang-switch .sep {
  color: var(--border-mid);
  font-weight: 400;
}
.lang-switch a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color .25s var(--ease-out);
}
.lang-switch a:hover { color: var(--violet); }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  padding: clamp(50px, 10vh, 110px) 0 clamp(70px, 12vh, 140px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 32px;
  opacity: 0;
  animation: rise .4s ease-out 0s forwards;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--text-quiet);
}
.eyebrow .pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 8px rgba(139, 71, 229, 0.6);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

h1.headline {
  font-family: 'Outfit', sans-serif;
  font-weight: 280;
  font-size: clamp(50px, 7.2vw, 92px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: 32px;
  opacity: 0;
  animation: rise .42s ease-out 0s forwards;
}
h1.headline em {
  font-style: normal;
  font-weight: 400;
  color: var(--violet);
}

.lede {
  font-size: clamp(16px, 1.25vw, 18.5px);
  line-height: 1.62;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 44px;
  opacity: 0;
  animation: rise .45s ease-out 0s forwards;
}

/* ---------- Email capture ---------- */
.capture {
  opacity: 0;
  animation: rise .5s ease-out 0s forwards;
}
.capture form {
  display: flex;
  align-items: stretch;
  background: var(--bg-paper);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  padding: 6px;
  max-width: 480px;
  box-shadow: 0 1px 2px rgba(26, 18, 48, 0.04), 0 24px 48px -28px rgba(94, 43, 181, 0.18);
  transition: border-color .3s ease, box-shadow .3s ease;
}
.capture form:focus-within {
  border-color: var(--violet-light);
  box-shadow: 0 1px 2px rgba(26, 18, 48, 0.04), 0 0 0 4px rgba(139, 71, 229, 0.10), 0 24px 48px -24px rgba(94, 43, 181, 0.32);
}
.capture input[type="email"] {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 14px 22px;
  font-family: inherit;
  /* 16px ist Pflicht: iOS/iPadOS Safari zoomt bei Fokus eines Felds mit <16px automatisch
     rein und zoomt nicht zurueck -> Seite bleibt verschoben/horizontal scrollbar. */
  font-size: 16px;
  color: var(--text-primary);
  outline: none;
  min-width: 0;
  border-radius: 999px;
}
.capture input[type="email"]::placeholder {
  color: var(--text-muted);
}
/* iOS Safari: Autofill setzt sonst ein eckiges, gelbes Rechteck unter
   die pill-förmige Form. Box-shadow-inset tauscht das Gelb gegen unsere
   Paper-Farbe und respektiert die border-radius. */
.capture input[type="email"]:-webkit-autofill,
.capture input[type="email"]:-webkit-autofill:hover,
.capture input[type="email"]:-webkit-autofill:focus,
.capture input[type="email"]:-webkit-autofill:active {
  border-radius: 999px;
  -webkit-box-shadow: 0 0 0 1000px var(--bg-paper) inset;
  -webkit-text-fill-color: var(--text-primary);
  caret-color: var(--text-primary);
  transition: background-color 5000s ease-in-out 0s;
}
.capture button {
  border: 0;
  background: var(--violet);
  color: #fff;
  padding: 0 28px;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.005em;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.capture button:hover {
  transform: translateX(2px);
  background: var(--violet-light);
  box-shadow: 0 12px 32px -8px rgba(139, 71, 229, 0.55);
}
.capture button:active {
  transform: translateY(1px) scale(0.98);
  transition-duration: .08s;
}
.capture small {
  display: block;
  margin-top: 14px;
  margin-left: 22px;
  font-size: 12.5px;
  color: var(--text-secondary);
}
/* Honeypot — hidden from real users, traps bots */
.capture .hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* ---------- Hero Screenshot — der dunkle Anker ---------- */
.hero-shot {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: rise .55s ease-out 0s forwards;
}
.hero-shot::before {
  content: '';
  position: absolute;
  inset: 8% 0%;
  background:
    radial-gradient(ellipse 55% 35% at 50% 30%, rgba(139, 71, 229, 0.25), transparent 70%),
    radial-gradient(ellipse 50% 30% at 50% 75%, rgba(77, 200, 255, 0.18), transparent 70%);
  filter: blur(40px);
  z-index: -1;
}
.hero-shot img {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 36px;
  box-shadow:
    0 60px 100px -25px rgba(26, 18, 48, 0.45),
    0 20px 40px -15px rgba(94, 43, 181, 0.25),
    0 0 0 1px rgba(26, 18, 48, 0.06);
  opacity: 0;
  transition: opacity 0.9s ease-out;
}
.hero-shot.video-done img {
  opacity: 1;
}
.hero-shot .splash-stage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1320 / 2868;
  background: #000;
  border-radius: 36px;
  box-shadow:
    0 60px 100px -25px rgba(26, 18, 48, 0.45),
    0 20px 40px -15px rgba(94, 43, 181, 0.25),
    0 0 0 1px rgba(26, 18, 48, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.8s ease-out;
}
.hero-shot .splash-stage .splash-video {
  width: 62%;
  max-width: 220px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24%;
  transform: translateY(-4px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 80px 4px rgba(139, 71, 229, 0.45),
    0 36px 70px -10px rgba(89, 38, 140, 0.75),
    0 18px 36px -6px rgba(0, 0, 0, 0.55);
}
.hero-shot.video-done .splash-stage {
  opacity: 0;
}
@media (prefers-reduced-motion: reduce) {
  .hero-shot .splash-stage { display: none; }
  .hero-shot img { opacity: 1; transition: none; }
}

/* ---------- Sections ---------- */
section {
  position: relative;
  z-index: 2;
  padding: clamp(60px, 9vw, 120px) 0;
}

.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 24px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 280;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  max-width: 720px;
  margin-bottom: 60px;
}
.section-title em {
  font-style: normal;
  font-weight: 400;
  color: var(--violet);
}

/* ---------- Pillars (Magazin-Triptychon) ---------- */
.pillars-triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: clamp(20px, 3vw, 40px);
}

.pillar {
  position: relative;
  padding: clamp(8px, 1vw, 16px) clamp(24px, 3.2vw, 48px);
  /* Per-Pillar Akzentfarbe — wird von Modifier-Klassen überschrieben */
  --accent: var(--violet);
  --accent-rgb: 139, 71, 229;
}
.pillar:first-child { padding-left: 0; }
.pillar:last-child  { padding-right: 0; }

.pillar:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 4px;
  bottom: 4px;
  right: 0;
  width: 1px;
  background: linear-gradient(180deg,
    transparent 0%,
    var(--border-mid) 22%,
    var(--border-mid) 78%,
    transparent 100%);
}

/* Akzent-Töne pro Säule — gespiegelt zur App (LongevityPillarRing) */
/* Nourish: green → mint, Move: blue → cyan, Restore: purple → indigo */
.pillar-nourish {
  --accent:        #2BB44A;        /* leicht abgedunkelt für Lesbarkeit auf hellem BG */
  --accent-rgb:    52, 199, 89;    /* iOS .green   #34C759 */
  --accent-rgb-2:  0, 199, 190;    /* iOS .mint    #00C7BE */
}
.pillar-move {
  --accent:        #007AFF;
  --accent-rgb:    0, 122, 255;    /* iOS .blue    #007AFF */
  --accent-rgb-2:  50, 173, 230;   /* iOS .cyan    #32ADE6 */
}
.pillar-restore {
  --accent:        #8E3FBF;        /* leicht abgedunkelt */
  --accent-rgb:    175, 82, 222;   /* iOS .purple  #AF52DE */
  --accent-rgb-2:  88, 86, 214;    /* iOS .indigo  #5856D6 */
}

/* ---------- Glas-Säule pro Pillar ---------- */
.pillar-column {
  position: relative;
  width: clamp(46px, 5vw, 64px);
  height: clamp(130px, 17vw, 180px);
  margin: 0 0 clamp(28px, 3vw, 40px);
  border-radius: clamp(22px, 2.6vw, 32px);
  /* Ring-Gradient der App eingefangen: oben Hauptfarbe, unten Sekundärfarbe */
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(255, 255, 255, 0.16) 12%,
      rgba(var(--accent-rgb),   0.18) 38%,
      rgba(var(--accent-rgb-2), 0.34) 100%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -20px 36px -16px rgba(var(--accent-rgb-2), 0.40),
    0 18px 34px -14px rgba(var(--accent-rgb-2), 0.32),
    0 0 0 1px rgba(var(--accent-rgb), 0.10);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  overflow: hidden;
  transform: translateZ(0);
  transition:
    transform .55s cubic-bezier(.2,.7,.2,1),
    box-shadow .55s cubic-bezier(.2,.7,.2,1);
}

/* Spitzlicht oben (statisch) */
.pillar-column::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 12%;
  right: 12%;
  height: 22%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center top,
    rgba(255, 255, 255, 0.85),
    rgba(255, 255, 255, 0) 70%);
  filter: blur(3px);
  pointer-events: none;
}

/* Vertikale Glanz-Kante (statisch) */
.pillar-column::after {
  content: '';
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: 18%;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0.0));
  filter: blur(0.6px);
  pointer-events: none;
}

/* Wandernder Lichtstreifen (durch Hover ausgelöst) */
.pillar-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.55) 48%,
    rgba(255, 255, 255, 0.0) 100%);
  mix-blend-mode: screen;
  transform: translateY(-110%);
  opacity: 0;
}

.pillar:hover .pillar-column {
  transform: translateY(-10px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -22px 42px -14px rgba(var(--accent-rgb-2), 0.50),
    0 36px 60px -18px rgba(var(--accent-rgb-2), 0.45),
    0 0 0 1px rgba(var(--accent-rgb), 0.22),
    0 0 60px -8px rgba(var(--accent-rgb), 0.42);
}
.pillar:hover .pillar-shine {
  animation: pillar-shine-drop 1.4s cubic-bezier(.3, .7, .3, 1) forwards;
}

@keyframes pillar-shine-drop {
  0%   { transform: translateY(-110%); opacity: 0; }
  18%  { opacity: 1; }
  82%  { opacity: 1; }
  100% { transform: translateY(110%);  opacity: 0; }
}

.pillar-num {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: clamp(14px, 1.6vw, 22px);
  transition: color .4s ease;
}

.pillar-word {
  font-family: 'Outfit', sans-serif;
  font-weight: 220;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--text-primary);
  margin-bottom: clamp(18px, 2.2vw, 28px);
}

.pillar-claim {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.28;
  letter-spacing: -0.012em;
  color: var(--accent);
  margin-bottom: 14px;
  transition: color .4s ease;
}

.pillar-text {
  font-size: 15px;
  line-height: 1.62;
  color: var(--text-secondary);
  max-width: 30ch;
}

/* ---------- Why ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
}
.why-card {
  background: var(--bg-paper);
  border: 1px solid var(--border-subtle);
  border-radius: 22px;
  padding: clamp(28px, 3vw, 38px);
  transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.why-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-mid);
  box-shadow: 0 24px 48px -24px rgba(94, 43, 181, 0.18);
}
.why-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--violet);
  letter-spacing: 0.1em;
  margin-bottom: 22px;
  display: block;
}
.why-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.why-card p {
  font-size: 15px;
  line-height: 1.62;
  color: var(--text-secondary);
}

/* ---------- Showcase — Story-driven composition ---------- */
.story {
  display: block;
  max-width: 1040px;
  margin: 0 auto;
  margin-bottom: clamp(96px, 12vw, 160px);
  position: relative;
}
.story:last-of-type { margin-bottom: 0; }

.story-caption { max-width: 460px; }
.story .cap-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 16px;
}
.story .cap-title {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.story .cap-title em {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(135deg, var(--violet) 0%, var(--magenta) 55%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 0.08em;
  margin-right: -0.08em;
}
.story .cap-text {
  font-size: 16px;
  line-height: 1.62;
  color: var(--text-secondary);
}

/* Shared phone visual */
.story-phone {
  margin: 0;
  position: relative;
}
.story-phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 32px;
  box-shadow:
    0 50px 80px -20px rgba(26, 18, 48, 0.35),
    0 16px 32px -12px rgba(94, 43, 181, 0.22),
    0 0 0 1px rgba(26, 18, 48, 0.05);
  transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out);
}
.story-phone::before {
  content: '';
  position: absolute;
  inset: 8% 0%;
  background:
    radial-gradient(ellipse 55% 35% at 50% 30%, rgba(139, 71, 229, 0.18), transparent 70%),
    radial-gradient(ellipse 50% 30% at 50% 75%, rgba(77, 200, 255, 0.12), transparent 70%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}

/* --- A) Zoom-In (Activity): two phones, gestaffelt --- */
.story-zoom {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.story-zoom .story-stage {
  position: relative;
  padding-bottom: 8%;
}
.story-zoom .story-phone-front {
  width: 66%;
  position: relative;
  z-index: 2;
  transition: transform .8s var(--ease-out);
}
.story-zoom .story-phone-back {
  width: 58%;
  position: absolute;
  top: 16%;
  right: 0;
  z-index: 1;
  transform: scale(0.92);
  transform-origin: top right;
  transition: transform .8s var(--ease-out);
}
.story-zoom:hover .story-phone-front { transform: translate(-6px, -8px); }
.story-zoom:hover .story-phone-back  { transform: scale(0.92) translate(8px, 10px); }

/* --- B) Sequence (FoodSnap): zwei Phones + Pfeil --- */
.story-sequence {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: clamp(40px, 5vw, 56px);
}
.story-sequence .story-caption {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.story-sequence .story-stage {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
}
.story-sequence .story-phone {
  max-width: 320px;
  justify-self: center;
  width: 100%;
}
.story-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--violet);
}
.story-arrow svg {
  width: 40px;
  height: 40px;
  display: block;
}
.story-arrow span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet);
}

/* --- C) Single (Nutrition/Liv/Recipe): Phone + Caption, alternierend --- */
.story-single {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}
.story-single .story-phone {
  max-width: 340px;
  width: 100%;
  justify-self: center;
}
.story-single-left .story-phone   { order: 1; }
.story-single-left .story-caption { order: 2; }
.story-single-right .story-phone   { order: 2; }
.story-single-right .story-caption { order: 1; justify-self: end; }

/* --- D) Marquee (Database): infinite horizontal scroll --- */
.story-marquee {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  display: block;
}
.story-marquee .story-caption {
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 56px);
  text-align: center;
}
.marquee-stage {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee-row {
  display: flex;
  gap: clamp(20px, 3vw, 36px);
  width: max-content;
  animation: marquee-scroll 80s linear infinite;
  will-change: transform;
}
.marquee-stage:hover .marquee-row { animation-play-state: paused; }
.marquee-phone {
  flex: 0 0 auto;
  width: clamp(180px, 22vw, 240px);
  margin: 0;
  position: relative;
}
.marquee-phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
  box-shadow:
    0 30px 60px -16px rgba(26, 18, 48, 0.30),
    0 10px 24px -8px rgba(94, 43, 181, 0.20),
    0 0 0 1px rgba(26, 18, 48, 0.05);
}
@keyframes marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* ---------- Focus & Tips ---------- */
#focus {
  position: relative;
  padding-bottom: clamp(40px, 6vw, 80px);
}
#focus .section-eyebrow,
#focus .section-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
#focus .section-title { margin-bottom: clamp(40px, 5vw, 60px); }

.focus-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  max-width: 720px;
  margin: 0 auto clamp(48px, 6vw, 80px);
  align-items: end;
}
.focus-phone {
  margin: 0;
  position: relative;
}
.focus-phone::before {
  content: '';
  position: absolute;
  inset: 8% 0%;
  background:
    radial-gradient(ellipse 55% 35% at 50% 30%, rgba(139, 71, 229, 0.18), transparent 70%),
    radial-gradient(ellipse 50% 30% at 50% 75%, rgba(77, 200, 255, 0.12), transparent 70%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}
.focus-phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 32px;
  box-shadow:
    0 50px 80px -20px rgba(26, 18, 48, 0.35),
    0 16px 32px -12px rgba(94, 43, 181, 0.22),
    0 0 0 1px rgba(26, 18, 48, 0.05);
  transition: transform .6s var(--ease-out);
}
.focus-phone-a { transform: translateY(clamp(20px, 3vw, 36px)); }
.focus-phone-a:hover img { transform: translateY(-6px); }
.focus-phone-b:hover img { transform: translateY(-6px); }

.focus-meta {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.focus-text {
  font-size: 16px;
  line-height: 1.62;
  color: var(--text-secondary);
  margin: 0 0 28px;
}
.focus-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.focus-pills li { display: block; margin: 0; padding: 0; }
.focus-chip {
  display: inline-block;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: var(--bg-paper);
  border: 1px solid var(--border-mid);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: border-color .25s var(--ease-out),
              color .25s var(--ease-out),
              background .25s var(--ease-out),
              transform .12s var(--ease-out);
}
.focus-chip:hover { border-color: var(--violet); background: var(--violet-pale); }
.focus-chip:focus-visible { outline: 2px solid var(--violet); outline-offset: 2px; }
.focus-chip:active { transform: scale(0.97); transition-duration: .08s; }
.focus-chip[aria-expanded="true"] {
  background: var(--violet);
  border-color: var(--violet);
  color: var(--bg-paper);
}

.focus-blurb {
  position: relative;
  max-width: 560px;
  margin: 28px auto 0;
  padding: 18px 24px;
  border-radius: 16px;
  background: var(--bg-paper);
  border: 1px solid var(--border-subtle);
  box-shadow:
    0 14px 32px -18px rgba(94, 43, 181, 0.22),
    0 0 0 1px rgba(26, 18, 48, 0.04);
  text-align: left;
}
.focus-blurb:not([hidden]) {
  animation: focus-blurb-in .24s var(--ease-out);
}
.focus-blurb-tail {
  position: absolute;
  top: -7px;
  left: var(--tail-x, 50%);
  width: 14px;
  height: 14px;
  background: var(--bg-paper);
  border-top: 1px solid var(--border-subtle);
  border-left: 1px solid var(--border-subtle);
  transform: translateX(-50%) rotate(45deg);
  border-top-left-radius: 3px;
  transition: left .32s var(--ease-out);
}
.focus-blurb-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
  text-wrap: pretty;
}
@keyframes focus-blurb-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Premium — Plans + Highlights ---------- */
#premium {
  position: relative;
  padding-bottom: clamp(40px, 6vw, 80px);
}
#premium .section-eyebrow,
#premium .section-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
#premium .section-title { margin-bottom: clamp(48px, 6vw, 72px); }

.premium-compare {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(20px, 3vw, 32px);
  max-width: 1040px;
  margin: 0 auto;
  align-items: stretch;
}

.plan {
  position: relative;
  background: var(--bg-paper);
  border-radius: var(--radius-card-lg);
  padding: var(--pad-card);
  border: 1px solid var(--border-subtle);
}

.plan-premium {
  background:
    linear-gradient(180deg, rgba(94, 43, 181, 0.05) 0%, rgba(77, 200, 255, 0.03) 100%),
    var(--bg-paper);
  border: 1px solid rgba(94, 43, 181, 0.35);
  box-shadow:
    0 30px 60px -20px rgba(94, 43, 181, 0.22),
    0 8px 24px -8px rgba(26, 18, 48, 0.10),
    inset 0 0 0 1px rgba(139, 71, 229, 0.08);
}

.plan-badge {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: white;
  background: linear-gradient(135deg, var(--violet), var(--magenta));
  padding: 7px 13px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 14px -4px rgba(94, 43, 181, 0.4);
  z-index: 1;
}

.plan header { margin-bottom: 24px; }

.plan-eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 14px;
}

.plan-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin: 0;
}

.plan-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.plan-list li {
  padding: 12px 0;
  border-top: 1px solid var(--border-subtle);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-secondary);
}
.plan-list li:first-child {
  border-top: none;
  padding-top: 0;
}

.plan-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}
.plan-group h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 10px;
  font-weight: 400;
}
.plan-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.plan-group li {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-secondary);
  padding: 3px 0;
}

.premium-rule {
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet);
  margin: clamp(64px, 8vw, 100px) 0 32px;
}

.premium-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 24px);
  max-width: 1040px;
  margin: 0 auto;
}

.ph-card {
  padding: var(--pad-card);
  background: var(--bg-paper);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .25s var(--ease-out), transform .25s var(--ease-out);
}
.ph-card:hover {
  border-color: var(--border-mid);
  transform: translateY(-4px);
}

.ph-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet);
}
.ph-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin: 0;
}
.ph-text {
  font-size: 14.5px;
  line-height: 1.58;
  color: var(--text-secondary);
  margin: 0;
}

.premium-foot {
  text-align: center;
  margin: clamp(48px, 6vw, 72px) auto 0;
  max-width: 600px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ---------- Pull quote — editorial decorator ---------- */
.pullquote {
  position: relative;
  z-index: 2;
  padding: clamp(70px, 11vw, 140px) 0;
  text-align: left;
}
.pullquote-inner {
  position: relative;
  padding-left: clamp(20px, 3vw, 40px);
  max-width: 880px;
}
.pullquote-inner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 38px;
  width: 2px;
  background: linear-gradient(180deg, var(--violet) 0%, rgba(94, 43, 181, 0.15) 100%);
  border-radius: 2px;
}
.pullquote blockquote {
  font-family: 'Outfit', sans-serif;
  font-weight: 280;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 28px;
}
.pullquote blockquote em {
  font-style: normal;
  font-weight: 400;
  color: var(--violet);
}
.pullquote cite {
  font-family: 'JetBrains Mono', monospace;
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- Beta box — DARK INVERSION als zweiter Anker ---------- */
.beta-box {
  background:
    radial-gradient(ellipse 60% 70% at 92% 8%, rgba(139, 71, 229, 0.32), transparent 65%),
    radial-gradient(ellipse 50% 50% at 8% 100%, rgba(77, 200, 255, 0.18), transparent 70%),
    var(--bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: clamp(24px, 3vw, 36px);
  padding: clamp(40px, 6vw, 76px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 40px 80px -30px rgba(94, 43, 181, 0.4),
    0 0 0 1px rgba(94, 43, 181, 0.18);
}
.beta-box > * { position: relative; z-index: 1; }
.beta-box h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 280;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--text-on-dark);
  margin-bottom: 20px;
}
.beta-box h2 em {
  font-style: normal;
  font-weight: 400;
  color: var(--cyan-bright);
}
.beta-box p {
  font-size: 16px;
  line-height: 1.62;
  color: var(--text-on-dark-muted);
  max-width: 460px;
}
.beta-box .capture { margin-top: clamp(28px, 3.4vw, 40px); }
.beta-list {
  list-style: none;
  display: grid;
  gap: 16px;
}
.beta-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: baseline;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-on-dark-muted);
}
.beta-list li::before {
  content: '+';
  font-family: 'JetBrains Mono', monospace;
  color: var(--cyan-bright);
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
}

/* ---------- Footer ---------- */
footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border-subtle);
  padding: 44px 0 60px;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
footer a {
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color .2s ease, border-color .2s ease;
}
footer a:hover {
  color: var(--violet);
  border-color: var(--violet-light);
}
footer .legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-disclaimer { display: block; margin-top: 6px; font-size: 12px; color: var(--text-quiet); }

/* ---------- Legal page (Datenschutz, AGB, Nutzungsbedingungen, EN-Pendants) ---------- */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) 0 clamp(48px, 7vw, 96px);
}
.legal-page h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 18px;
}
.legal-page h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--text-primary);
  margin-top: clamp(34px, 4vw, 48px);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-subtle);
}
.legal-page h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.3;
  color: var(--text-primary);
  margin-top: clamp(24px, 2.6vw, 32px);
  margin-bottom: 10px;
}
.legal-page p {
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.6;
}
.legal-page strong { color: var(--text-primary); font-weight: 600; }
.legal-page em { font-style: italic; color: var(--text-primary); }
.legal-page a {
  color: var(--violet);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color .25s var(--ease-out);
}
.legal-page a:hover { color: var(--violet-light); }
.legal-page ul, .legal-page ol {
  margin: 6px 0 18px 0;
  padding-left: 22px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.legal-page li {
  margin-bottom: 6px;
  padding-left: 4px;
}
.legal-page li::marker { color: var(--violet-light); }
.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 24px;
  font-size: 15px;
  background: var(--bg-paper);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-soft);
  overflow: hidden;
}
.legal-page thead { background: var(--violet-pale); }
.legal-page th, .legal-page td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: top;
}
.legal-page th {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--violet);
  font-size: 13.5px;
  letter-spacing: 0.01em;
}
.legal-page td { color: var(--text-secondary); }
.legal-page tbody tr:last-child td { border-bottom: none; }
.legal-page > p:first-of-type + p,
.legal-page > p:nth-of-type(2) {
  color: var(--text-muted);
  font-size: 14.5px;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: clamp(32px, 4vw, 48px);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-mid);
  background: var(--bg-paper);
  color: var(--violet);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  transition: background .25s var(--ease-out), border-color .25s var(--ease-out), transform .25s var(--ease-out);
}
.legal-back:hover {
  background: var(--violet-pale);
  border-color: var(--violet);
  color: var(--violet);
  transform: translateX(-2px);
}

/* ---------- Animations ---------- */
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  /* iOS-Safari paint-cost-killer: teure Composite-Layer entschaerfen */
  .aurora { filter: blur(48px); mix-blend-mode: normal; animation: none; opacity: 0.35; }
  .grain { display: none; }
  .topbar.scrolled { background: rgba(236, 230, 241, 0.95); backdrop-filter: none; -webkit-backdrop-filter: none; }

  .hero { grid-template-columns: 1fr; gap: 48px; }
  .hero-shot img { max-width: 280px; }
  .hero-shot .splash-stage { max-width: 280px; }
  .why-grid { grid-template-columns: 1fr; }
  .beta-box { grid-template-columns: 1fr; padding: clamp(28px, 6vw, 76px); }

  /* Capture-Form bleibt einzeilige Pill — Button kompakter, Touch-Target 44px+ */
  .capture form { padding: 5px; }
  .capture input[type="email"] {
    padding: 12px 16px;
    font-size: 16px;  /* <16px loest iOS-Auto-Zoom beim Fokus aus */
  }
  .capture button {
    padding: 0 18px;
    font-size: 13.5px;
    min-height: 44px;
  }
  .capture small { font-size: 12px; margin-left: 18px; }

  .nav-toggle { display: flex; }
  .topbar nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(78%, 320px);
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    padding: 96px clamp(28px, 8vw, 48px) 48px;
    background: rgba(236, 230, 241, 0.96);
    backdrop-filter: saturate(140%) blur(16px);
    -webkit-backdrop-filter: saturate(140%) blur(16px);
    box-shadow: -1px 0 0 var(--border-subtle);
    transform: translateX(100%);
    transition: transform .32s var(--ease-out);
  }
  .topbar nav.active { transform: translateX(0); }
  .topbar nav a { font-size: 20px; }
  .lang-switch { font-size: 17px; margin-top: 14px; }
  .nav-underline { display: none; }
  body.nav-open { overflow: hidden; }
  /* Story stack — alles untereinander, Caption immer oben */
  .story-zoom,
  .story-single {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .story-zoom .story-caption { order: 1; }
  .story-zoom .story-stage   { order: 2; padding-bottom: 0; }
  .story-zoom .story-phone-front { width: 78%; }
  .story-zoom .story-phone-back {
    width: 72%;
    position: relative;
    top: auto;
    right: auto;
    margin-top: -28%;
    margin-left: 22%;
  }
  .story-single-left .story-caption,
  .story-single-right .story-caption { order: 1; justify-self: stretch; }
  .story-single-left .story-phone,
  .story-single-right .story-phone   { order: 2; }

  .story-sequence .story-stage {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 320px;
  }
  .story-arrow { flex-direction: row; gap: 14px; }
  .story-arrow svg { transform: rotate(90deg); }

  .marquee-phone { width: clamp(160px, 52vw, 200px); }

  .focus-stage { gap: 20px; max-width: 380px; }
  .focus-phone-a { transform: translateY(16px); }

  .premium-compare { grid-template-columns: 1fr; }
  .plan-groups { grid-template-columns: 1fr; gap: 18px; }
  .premium-highlights { grid-template-columns: 1fr; }
  .pillars-triptych { grid-template-columns: 1fr; }
  .pillar { padding: 0; text-align: center; }
  .pillar-column { margin-left: auto; margin-right: auto; }
  .pillar-text { max-width: 36ch; margin-left: auto; margin-right: auto; }
  .pillar:not(:last-child) {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-subtle);
  }
  .pillar:not(:last-child)::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .aurora { animation: none; }
  .eyebrow .pulse { animation: none; }
  .eyebrow, h1.headline, .lede, .capture, .hero-shot { opacity: 1; animation: none; }
  .pillar:hover .pillar-shine { animation: none; }
  .pillar:hover .pillar-column { transform: none; }
  .brandmark:hover .brandmark-icon { transform: none; }
  .marquee-row { animation: none; }
  .marquee-stage { overflow-x: auto; }
  .story-zoom:hover .story-phone-front,
  .story-zoom:hover .story-phone-back { transform: none; }
}

/* ---------- Capture success state ---------- */
.capture-success {
  margin-top: 20px;
  background: var(--bg-paper);
  border: 1px solid var(--violet-light);
  border-radius: 16px;
  padding: 18px 22px;
  max-width: 480px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-primary);
  box-shadow: 0 12px 32px -16px rgba(94, 43, 181, 0.32);
  animation: rise .6s ease-out;
}
.capture-success strong {
  color: var(--violet);
  font-weight: 600;
}
.capture-success #capture-email {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13.5px;
  color: var(--violet);
}
.capture-error {
  margin-top: 12px;
  padding: 12px 16px;
  max-width: 480px;
  border-radius: 12px;
  background: rgba(177, 32, 56, 0.06);
  border: 1px solid rgba(177, 32, 56, 0.28);
  color: #8a1a2e;
  font-size: 13.5px;
  line-height: 1.5;
}
.capture-error a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.capture button[disabled] {
  opacity: 0.6;
  cursor: progress;
}

/* ============================================================
   Intelligence — "Was Kivaia über dich lernt"
   ============================================================ */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
}
.learn-card {
  position: relative;
  padding: clamp(28px, 3vw, 38px);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.20) 100%);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.learn-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-mid);
  box-shadow: 0 24px 48px -24px rgba(94, 43, 181, 0.20);
}
.learn-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--violet);
  display: block;
  margin-bottom: 18px;
}
.learn-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.learn-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ============================================================
   Features disclosure — kollabierbar
   ============================================================ */
.features-disclosure {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.features-disclosure summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(22px, 2.6vw, 32px) clamp(8px, 1.5vw, 20px);
  transition: color .25s ease;
}
.features-disclosure summary::-webkit-details-marker { display: none; }
.features-disclosure-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 280;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.features-disclosure-hint {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet);
  white-space: nowrap;
  position: relative;
  padding-right: 22px;
  transition: color .25s ease;
}
.features-disclosure-hint::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  transition: transform .3s ease;
}
.features-disclosure[open] .features-disclosure-hint::after {
  transform: translateY(-30%) rotate(-135deg);
}
.features-disclosure summary:hover .features-disclosure-hint {
  color: var(--violet-light);
}
.features-disclosure-hint .hint-open { display: none; }
.features-disclosure[open] .features-disclosure-hint .hint-closed { display: none; }
.features-disclosure[open] .features-disclosure-hint .hint-open { display: inline; }

/* ============================================================
   Features list — "Und noch mehr"
   ============================================================ */
.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border-subtle);
}
.features-list li {
  display: grid;
  grid-template-columns: minmax(180px, 220px) 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: baseline;
  padding: clamp(20px, 2.2vw, 26px) clamp(8px, 1.5vw, 20px);
  border-bottom: 1px solid var(--border-subtle);
}
.features-list li:nth-child(odd) {
  border-right: 1px solid var(--border-subtle);
}
.feature-key {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.feature-text {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* ============================================================
   Responsive overrides for new sections
   ============================================================ */
@media (max-width: 880px) {
  .learn-grid { grid-template-columns: 1fr; gap: 16px; }
  .features-list { grid-template-columns: 1fr; }
  .features-list li {
    grid-template-columns: 1fr;
    gap: 6px;
    border-right: none !important;
  }
}
@media (min-width: 881px) and (max-width: 1100px) {
  .learn-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Scroll Animations (IntersectionObserver)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-3d {
  opacity: 0;
  transform: translateY(60px) rotateX(10deg) scale(0.95);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
  transform-origin: bottom center;
}
.reveal-3d.active {
  opacity: 1;
  transform: translateY(0) rotateX(0deg) scale(1);
}

/* Hover-Override: bei kombiniertem .reveal.active konkurriert sonst der
   Reveal-Final-State (transform: translateY(0)) mit dem :hover-transform
   bei gleicher Specificity. Spezifischere Regel gewinnt. */
.why-card.reveal.active:hover,
.daystory-step.reveal.active:hover {
  transform: translateY(-3px);
}

/* Reduzierte Bewegung berücksichtigen */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-3d {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   Phase 5 — Neue Sections (Liv-Portrait, Daystory, FAQ, Features-Grid, Privacy, Dedication, Phone-Tilts)
   ============================================================ */

/* --- Liv-Portrait --- */
.liv-portrait {
  padding: clamp(80px, 9vw, 120px) 0 clamp(40px, 6vw, 60px);
  position: relative;
}
.liv-portrait-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  margin-top: 48px;
}
.liv-cool-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 220px;
  width: 100%;
  margin: 0 auto;
  border-radius: var(--radius-card-lg);
  overflow: hidden;
  background: var(--bg-dark);
  box-shadow: var(--shadow-hero);
}
.liv-cool-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.liv-portrait-body {
  display: grid;
  gap: clamp(28px, 3vw, 40px);
}
.liv-lede {
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.45;
  color: var(--text-primary);
  font-weight: 400;
  letter-spacing: -0.012em;
  text-wrap: balance;
}
.liv-block { display: grid; gap: 14px; }
.liv-block-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet);
  font-weight: 400;
}
.liv-list { list-style: none; display: grid; gap: 10px; padding: 0; margin: 0; }
.liv-list li {
  font-size: 17px;
  line-height: 1.5;
  color: var(--text-secondary);
  padding-left: 18px;
  position: relative;
}
.liv-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
  opacity: 0.6;
}
.liv-block-text {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* --- Daystory --- */
.daystory {
  padding: clamp(80px, 9vw, 100px) 0 clamp(60px, 8vw, 80px);
}
.daystory-hero {
  margin: 56px 0 clamp(40px, 6vw, 64px);
  border-radius: var(--radius-card-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.daystory-hero img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.daystory-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 28px);
}
.daystory-step {
  display: grid;
  gap: 14px;
  padding: var(--pad-card-sm);
  background: var(--bg-paper);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  transition: transform var(--dur-fast) var(--ease-spring), box-shadow var(--dur-fast) var(--ease-spring);
}
.daystory-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.daystory-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 400;
  color: var(--violet);
  letter-spacing: 0.04em;
}
.daystory-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-primary);
  font-weight: 400;
  text-wrap: balance;
}

/* --- FAQ --- */
.faq {
  padding: clamp(80px, 9vw, 100px) 0 clamp(40px, 5vw, 60px);
}
.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 48px;
  max-width: 760px;
}
.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  background: var(--bg-paper);
  overflow: hidden;
  transition: border-color var(--dur-fast) var(--ease-spring);
}
.faq-item[open] { border-color: var(--border-mid); }
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 200;
  color: var(--violet);
  transition: transform var(--dur-fast) var(--ease-spring);
}
.faq-item[open] > summary::after { transform: rotate(45deg); }
.faq-item > p {
  padding: 0 28px 22px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}
.faq-item .faq-premium-intro {
  padding: 0 28px 12px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}
.faq-premium-grid {
  padding: 0 28px 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}
.faq-premium-grid h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet);
  font-weight: 400;
  margin: 8px 0 6px;
}
.faq-premium-grid ul {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-primary);
}
.faq-premium-grid li {
  padding: 2px 0;
}
@media (max-width: 720px) {
  .faq-premium-grid { grid-template-columns: 1fr; gap: 8px 0; }
}

/* --- Features-Grid (3 Kategorien) --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 48px) clamp(40px, 5vw, 72px);
  margin-top: 28px;
}
.features-category:nth-child(3) { grid-column: 1 / -1; }
.features-category-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet);
  font-weight: 400;
  margin-bottom: 16px;
}
/* Override default features-list 2-col grid for categorized layout */
.features-grid .features-list {
  grid-template-columns: 1fr;
}
.features-grid .features-list li:nth-child(odd) {
  border-right: none;
}
.features-grid .features-list li {
  grid-template-columns: minmax(140px, 180px) 1fr;
  gap: clamp(16px, 2vw, 28px);
  padding: clamp(14px, 1.6vw, 18px) 0;
}
/* Fokus-Bereiche: full-width category with internal 2-col list */
.features-grid .features-category:nth-child(3) .features-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.features-grid .features-category:nth-child(3) .features-list li:nth-child(odd) {
  border-right: 1px solid var(--border-subtle);
  padding-right: clamp(20px, 3vw, 40px);
}
.features-grid .features-category:nth-child(3) .features-list li:nth-child(even) {
  padding-left: clamp(20px, 3vw, 40px);
}

/* --- Privacy --- */
.privacy {
  padding: clamp(80px, 10vw, 128px) 0 clamp(48px, 6vw, 64px);
  text-align: center;
}
.privacy-inner { max-width: 600px; margin: 0 auto; }
.privacy-text {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  text-wrap: balance;
}

/* --- Dedication unter Pullquote --- */
.dedication {
  margin-top: 32px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.005em;
  text-wrap: balance;
  text-align: center;
}

/* --- Responsive --- */
@media (max-width: 880px) {
  .liv-portrait-grid { grid-template-columns: 1fr; gap: 40px; }
  .liv-cool-stage { max-width: 172px; }
  .daystory-strip { grid-template-columns: 1fr; gap: 16px; }
  .features-grid { grid-template-columns: 1fr; gap: 24px; }
  .features-category:nth-child(n) { grid-column: 1; }
  .features-grid .features-category:nth-child(3) .features-list {
    grid-template-columns: 1fr;
  }
  .features-grid .features-category:nth-child(3) .features-list li:nth-child(odd) {
    border-right: none;
    padding-right: 0;
  }
  .features-grid .features-category:nth-child(3) .features-list li:nth-child(even) {
    padding-left: 0;
  }
}

/* --- Reduced Motion: hover-states deaktivieren --- */
@media (prefers-reduced-motion: reduce) {
  .daystory-step:hover,
  .why-card.reveal.active:hover,
  .daystory-step.reveal.active:hover { transform: none; box-shadow: none; }
}
