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

:root {
  --bg: #0F1226;
  --bg-elevated: #1A1D3A;
  --bg-card: #14172E;
  --text: #ECEEF4;
  --text-muted: rgba(236,238,244,0.6);
  --text-dim: rgba(236,238,244,0.32);
  --accent: #BB9AF7;
  --accent-blue: #7AA2F7;
  --accent-warm: #FF9E64;
  --accent-warm-soft: rgba(255,158,100,0.15);
  --success: #9ECE6A;
  --gradient: linear-gradient(135deg, #BB9AF7 0%, #7AA2F7 100%);
  --gradient-warm: linear-gradient(135deg, #FF9E64 0%, #E0AF68 100%);
  --border: rgba(236,238,244,0.08);
  --border-hover: rgba(236,238,244,0.18);
  --sans: 'Inter', -apple-system, sans-serif;
  --display: 'Space Grotesk', 'Inter', sans-serif;
  --max-w: 1100px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(800px 600px at 70% -10%, rgba(187,154,247,0.12), transparent),
    radial-gradient(600px 500px at 10% 100%, rgba(122,162,247,0.08), transparent);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--accent); color: var(--bg); }

.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 24px;
  background: rgba(15,18,38,0.78);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border: 1px solid var(--border);
  border-radius: 80px;
  width: min(94%, 820px);
  transition: transform 0.5s var(--ease), opacity 0.4s;
}
.navbar.hidden { transform: translateX(-50%) translateY(-120px); opacity: 0; }
.nav-brand {
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text);
  display: flex; align-items: center; gap: 8px;
}
.nav-brand img { width: 26px; height: 26px; border-radius: 6px; }
.nav-links { display: flex; gap: 22px; }
.nav-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--text); }
@media (max-width: 820px) { .nav-links { display: none; } }

section { position: relative; z-index: 1; padding: 120px 24px; }
.section-alt { background: linear-gradient(180deg, transparent 0%, rgba(187,154,247,0.04) 50%, transparent 100%); }

/* Accessibility-Banner */
.ax-banner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  margin: 8px auto 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(158,206,106,0.16), rgba(122,162,247,0.16));
  border: 1px solid rgba(158,206,106,0.32);
  color: var(--text);
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
  max-width: 720px;
}
.ax-banner strong { color: var(--accent); }
.ax-banner-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #9ECE6A;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(158,206,106,0.7);
}
.container { max-width: var(--max-w); margin: 0 auto; }

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

/* Hero ambient backdrop, sits below the hero content */
.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.ha-grid {
  position: absolute;
  inset: -2px;
  background-image:
    linear-gradient(to right, rgba(187,154,247,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(187,154,247,0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 35%, #000 35%, transparent 80%);
          mask-image: radial-gradient(ellipse 70% 60% at 50% 35%, #000 35%, transparent 80%);
  opacity: 0.7;
}
.ha-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  animation: heroDrift 16s ease-in-out infinite;
}
.ha-glow-1 { width: 520px; height: 520px; left: 10%;  top: 8%;  background: #BB9AF7; }
.ha-glow-2 { width: 420px; height: 420px; right: 8%;  top: 12%; background: #7AA2F7; animation-delay: -5s; }
.ha-glow-3 { width: 360px; height: 360px; left: 50%;  bottom: -10%; transform: translateX(-50%); background: #FF9E64; opacity: 0.32; animation-delay: -9s; }
@keyframes heroDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, -30px) scale(1.08); }
  66%      { transform: translate(-30px, 25px) scale(0.94); }
}
.ha-doodle {
  position: absolute;
  width: 60px; height: 60px;
  color: rgba(187,154,247,0.18);
  opacity: 0.6;
}
.ha-doodle-1 { top: 18%; left: 8%; animation: floatY 9s ease-in-out infinite; }
.ha-doodle-2 { top: 24%; right: 10%; width: 70px; height: 70px; animation: floatY 11s ease-in-out infinite -2s; color: rgba(122,162,247,0.22); }
.ha-doodle-3 { bottom: 18%; left: 14%; width: 90px; height: 90px; opacity: 0.4; animation: spin 30s linear infinite; }
@keyframes floatY { 0%,100% { transform: translateY(0) rotate(-2deg);} 50% { transform: translateY(-14px) rotate(4deg);} }
@keyframes spin   { to { transform: rotate(360deg); } }
.ha-spark { position: absolute; color: #fff; opacity: 0.7; animation: twinkle 4s ease-in-out infinite; }
.ha-spark-1 { top: 14%; left: 22%; animation-delay: -1s; color: #BB9AF7; }
.ha-spark-2 { top: 36%; right: 18%; animation-delay: -2s; color: #7AA2F7; }
.ha-spark-3 { bottom: 28%; left: 32%; animation-delay: -3s; color: #FF9E64; }
.ha-spark-4 { bottom: 22%; right: 28%; color: #FFFFFF; }
@keyframes twinkle { 0%,100% { transform: scale(1); opacity: 0.35; } 50% { transform: scale(1.4); opacity: 0.95; } }

@media (prefers-reduced-motion: reduce) {
  .ha-glow, .ha-doodle, .ha-spark, .hero-mascot, .hero-glow,
  .orb, .hero-scroll span { animation: none !important; }
}

.hero > .container { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  margin: 0 auto 32px;
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.10);
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(236,238,244,0.78);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
}
.he-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #9ECE6A;
  box-shadow: 0 0 12px #9ECE6A;
  animation: pulse 2.4s ease-in-out infinite;
}

/* Floating feature chips around the mascot.
   Endlose, unabhaengige Sinus-Bewegungen (kein Zirkular-Spin mehr), damit es nicht
   bei einer Umdrehung springt. Jeder Chip hat eigene Phase und Speed. */
.hero-orbit {
  position: absolute;
  inset: -10%;            /* etwas mehr Platz, damit Chips Glow zeigen */
  z-index: 2;
  pointer-events: none;
}
.orb {
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, rgba(15,18,38,0.92) 0%, rgba(20,24,46,0.88) 100%);
  border: 1px solid rgba(187,154,247,0.4);
  color: #BB9AF7;
  box-shadow:
    0 10px 30px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 0 22px rgba(187,154,247,0.25);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  will-change: transform;
}
.orb svg { width: 26px; height: 26px; }

/* Positionen wie auf dem User-Bild: oben rechts, oben links, unten links, unten rechts */
.orb-1 { top: 8%;  right: -8%; color: #FF9E64; border-color: rgba(255,158,100,0.42); animation: floatA 7.5s ease-in-out infinite; }
.orb-2 { top: 18%; left:  -10%; color: #BB9AF7; border-color: rgba(187,154,247,0.42); animation: floatB 9s ease-in-out infinite; }
.orb-3 { bottom: 12%; left:  -2%; color: #7AA2F7; border-color: rgba(122,162,247,0.42); animation: floatC 8s ease-in-out infinite; }
.orb-4 { bottom: 6%;  right: -6%; color: #9ECE6A; border-color: rgba(158,206,106,0.42); animation: floatD 10s ease-in-out infinite; }

/* Jede Animation startet und endet auf identischem Frame, kein Sprung. */
@keyframes floatA {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50%      { transform: translate3d(-6px, 12px, 0) rotate(-4deg); }
}
@keyframes floatB {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50%      { transform: translate3d(8px, -10px, 0) rotate(3deg); }
}
@keyframes floatC {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50%      { transform: translate3d(-10px, -8px, 0) rotate(-3deg); }
}
@keyframes floatD {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50%      { transform: translate3d(10px, 14px, 0) rotate(5deg); }
}

@media (max-width: 520px) {
  .orb { width: 44px; height: 44px; }
  .orb svg { width: 20px; height: 20px; }
  .orb-1 { top: 4%;  right: -2%; }
  .orb-2 { top: 24%; left: -2%; }
  .orb-3 { bottom: 18%; left: 0; }
  .orb-4 { bottom: 4%;  right: 2%; }
}

@media (prefers-reduced-motion: reduce) {
  .orb { animation: none !important; }
}

.age-switch-label {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0 14px 0 6px;
  align-self: center;
}

/* Stats row */
.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 14px 22px;
  margin: 28px auto 28px;
  border-radius: 22px;
  background: rgba(15,18,38,0.55);
  border: 1px solid rgba(255,255,255,0.07);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  flex-wrap: wrap;
  justify-content: center;
}
.hs-item { display: flex; flex-direction: column; align-items: center; min-width: 70px; }
.hs-item b {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, #BB9AF7, #7AA2F7);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  line-height: 1;
}
.hs-item span {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 6px;
}
.hs-sep { width: 1px; height: 28px; background: rgba(255,255,255,0.08); }
@media (max-width: 640px) { .hs-sep { display: none; } .hero-stats { gap: 14px; } }

.hm-dot {
  display: inline-block;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(236,238,244,0.32);
  vertical-align: middle;
}

/* Scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 38px;
  border-radius: 14px;
  border: 1.5px solid rgba(255,255,255,0.18);
  z-index: 3;
  display: flex; justify-content: center;
  padding-top: 6px;
}
.hero-scroll span {
  width: 3px; height: 8px; border-radius: 2px;
  background: rgba(255,255,255,0.55);
  animation: scrollHint 1.6s ease-in-out infinite;
}
@keyframes scrollHint {
  0% { transform: translateY(0); opacity: 1; }
  80%, 100% { transform: translateY(14px); opacity: 0; }
}
@media (max-width: 640px) { .hero-scroll { display: none; } }
/* Hero mascot, soft round fade so the cyan square photo background blends into the page */
.hero-mascot-wrap {
  position: relative;
  width: 420px;
  height: 420px;
  margin: 0 auto 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.hero-glow {
  position: absolute;
  inset: -22%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(closest-side, rgba(120,210,255,0.45) 0%, rgba(120,210,255,0.18) 38%, rgba(120,210,255,0) 72%),
    radial-gradient(closest-side, rgba(187,154,247,0.32) 0%, rgba(187,154,247,0) 60%);
  filter: blur(28px);
  animation: pulse 7s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.9; transform: scale(1); }
  50%      { opacity: 1.0; transform: scale(1.06); }
}
.hero-mascot {
  position: relative;
  z-index: 1;
  width: 320px;
  height: 320px;
  object-fit: contain;
  border-radius: 56px;
  filter: drop-shadow(0 28px 60px rgba(120,140,220,0.55)) drop-shadow(0 0 40px rgba(187,154,247,0.35));
  animation: float 6s ease-in-out infinite;
  transition: opacity 200ms ease, transform 320ms cubic-bezier(.2,.8,.2,1);
  -webkit-mask-image: radial-gradient(circle at center, #000 64%, rgba(0,0,0,0.85) 78%, rgba(0,0,0,0) 100%);
          mask-image: radial-gradient(circle at center, #000 64%, rgba(0,0,0,0.85) 78%, rgba(0,0,0,0) 100%);
}
.hero-mascot.is-swapping { opacity: 0; transform: scale(0.94); }
@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(0, -14px, 0); }
}
.hero-mascot { will-change: transform; }
.hero-glow { will-change: transform, opacity; }

/* Age switcher pills, hard CSS reset so no UA defaults leak through */
.age-switch {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px;
  margin: 0 auto 32px;
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
}
.age-pill {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  background-color: transparent;
  border: 0;
  outline: 0;
  margin: 0;
  font-family: var(--display, inherit);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(236,238,244,0.62);
  padding: 9px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, transform 220ms cubic-bezier(.2,.8,.2,1);
  white-space: nowrap;
  line-height: 1;
}
.age-pill:hover { color: #fff; background: rgba(255,255,255,0.07); }
.age-pill.is-active {
  color: #0b1020;
  background: linear-gradient(135deg, #8ee0ff 0%, #b388ff 100%);
  box-shadow: 0 8px 28px rgba(140,200,255,0.42), inset 0 1px 0 rgba(255,255,255,0.6);
}
.age-pill:focus-visible { outline: 2px solid #8ee0ff; outline-offset: 2px; }

/* Vergleichs-Tabelle, Tick + Cross statt Emojis */
.tick {
  display: inline-flex; align-items: center; gap: 4px;
  color: #9ECE6A;
  font-weight: 600;
}
.cross {
  display: inline-flex; align-items: center; gap: 4px;
  color: rgba(236,238,244,0.32);
  font-weight: 500;
}

/* KI promise box */
.ki-promise {
  margin-top: 48px;
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(120,210,255,0.08), rgba(187,154,247,0.08));
  border: 1px solid rgba(120,210,255,0.18);
}
.ki-promise h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}
.ki-promise p { line-height: 1.7; color: var(--text); }
.ki-promise strong {
  color: #8ee0ff;
  font-weight: 600;
  display: inline-block;
  margin-right: 4px;
}

/* Nav brand, refresh small icon */
.nav-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(120,210,255,0.32);
}
.nav-wordmark { font-weight: 700; letter-spacing: 0.16em; }

@media (max-width: 520px) {
  .hero-mascot-wrap { width: 280px; height: 280px; }
  .hero-mascot { width: 230px; height: 230px; }
  .age-pill { padding: 7px 12px; font-size: 12px; }
  .age-switch-label { display: none; }
  .nav-icon { width: 30px; height: 30px; border-radius: 8px; }
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-title .gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-subtitle {
  font-size: clamp(18px, 2.4vw, 24px);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 32px;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.hero-meta {
  font-size: 12px;
  color: var(--text-dim);
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  font-family: var(--display);
  letter-spacing: 1px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 80px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 12px 40px rgba(187,154,247,0.32);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(187,154,247,0.42);
}
.btn-warm {
  background: var(--gradient-warm);
  color: white;
  box-shadow: 0 12px 40px rgba(255,158,100,0.32);
}
.btn-warm:hover { transform: translateY(-2px); }
/* Offizielles Apple App Store Badge.
   Apple Identity Guidelines: keine Modifikationen am Badge, nur Hover-Skalierung erlaubt.
   https://developer.apple.com/app-store/marketing/guidelines/ */
.btn-app-store {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform 200ms ease, opacity 200ms ease;
  border-radius: 10px;
}
.btn-app-store img {
  display: block;
  height: 60px;
  width: auto;
}
.btn-app-store:hover { transform: translateY(-2px); opacity: 0.92; }
.btn-app-store:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

.btn-ghost {
  background: rgba(236,238,244,0.04);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(236,238,244,0.08); border-color: var(--border-hover); }

.section-title {
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  line-height: 1.1;
}
.section-eyebrow {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-lead {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: 64px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  transition: all 0.4s var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  background: var(--bg-elevated);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(187,154,247,0.18), rgba(122,162,247,0.10));
  border: 1px solid rgba(187,154,247,0.18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: #BB9AF7;
  transition: transform 0.4s var(--ease), background 0.3s, color 0.3s;
}
.feature-icon svg { width: 26px; height: 26px; display: block; }
.feature-card:hover .feature-icon {
  transform: rotate(-4deg) scale(1.06);
  background: linear-gradient(135deg, rgba(187,154,247,0.32), rgba(122,162,247,0.20));
  color: #fff;
}
.feature-title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}
.feature-desc { color: var(--text-muted); font-size: 15px; line-height: 1.6; }

.personas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.persona {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
}
.persona-avatar {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}
.persona h3 {
  font-family: var(--display);
  font-size: 20px;
  margin-bottom: 4px;
}
.persona-tag {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 12px;
  font-family: var(--display);
  letter-spacing: 0.5px;
}
.persona p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.pillar {
  padding: 24px;
  border-left: 2px solid var(--accent);
  background: rgba(187,154,247,0.04);
  border-radius: 0 12px 12px 0;
}
.pillar h4 { font-family: var(--display); font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.pillar p { font-size: 13px; color: var(--text-muted); }

.cta-row { display: flex; gap: 16px; justify-content: center; margin-top: 48px; }

.price-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 80px;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
}
.price-card.accent-warm { border-color: rgba(255,158,100,0.3); background: var(--accent-warm-soft); }
.price-label {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.price-card.accent-warm .price-label { color: var(--accent-warm); }
.price-amount {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
}
.price-card.accent-warm .price-amount { background: var(--gradient-warm); -webkit-background-clip: text; background-clip: text; color: transparent; }
.price-note { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.price-features { list-style: none; margin-bottom: 32px; }
.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
}
.price-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
}

.price-compare h3 {
  font-family: var(--display);
  font-size: 24px;
  margin-bottom: 24px;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table th, .compare-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  font-family: var(--display);
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.compare-table strong { color: var(--success); }

.faq-list { max-width: 760px; }
.faq-list details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 12px;
  padding: 0;
}
.faq-list summary {
  font-family: var(--display);
  font-weight: 500;
  font-size: 17px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 18px;
  font-size: 24px;
  color: var(--text-dim);
  font-weight: 300;
  transition: transform 0.3s;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.roadmap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.roadmap-col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
}
.roadmap-col h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.roadmap-col ul { list-style: none; }
.roadmap-col li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-muted);
  position: relative;
  padding-left: 18px;
}
.roadmap-col li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.press-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.press-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.3s var(--ease);
}
.press-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.press-card h4 {
  font-family: var(--display);
  font-size: 18px;
  margin-bottom: 8px;
}
.press-card p { font-size: 13px; color: var(--text-muted); }

footer {
  padding: 80px 24px 32px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
  background: rgba(20,23,46,0.4);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-col h5 {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  padding: 4px 0;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--text); }
.footer-col p { font-size: 14px; color: var(--text-muted); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 11px;
  color: var(--text-dim);
  font-family: var(--display);
  letter-spacing: 1px;
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Sub-page support */
.subpage section:first-of-type { padding-top: 140px; }
.prose {
  max-width: 720px;
}
.prose h2 {
  font-family: var(--display);
  font-size: 28px;
  margin: 48px 0 16px;
  color: var(--accent);
}
.prose h3 {
  font-family: var(--display);
  font-size: 19px;
  margin: 24px 0 8px;
}
.prose p { margin: 12px 0; color: rgba(236,238,244,0.85); line-height: 1.75; }
.prose ul { margin: 12px 0 12px 24px; color: rgba(236,238,244,0.85); }
.prose li { margin: 6px 0; }
.prose a { color: var(--accent); }
.prose .highlight {
  background: rgba(187,154,247,0.08);
  padding: 20px;
  border-radius: 12px;
  border-left: 3px solid var(--accent);
  margin: 20px 0;
}
.prose .meta {
  font-size: 13px;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-top: 48px;
}
.prose .back {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--text-muted);
  font-size: 14px;
}
.prose .back:hover { color: var(--text); }

/* Language toggle (DE/EN) */
.lang-toggle {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  font-size: 13px;
  margin-left: 12px;
}
.lang-toggle button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 6px;
  color: inherit;
  opacity: 0.5;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0.04em;
  transition: opacity 0.18s ease;
}
.lang-toggle button:hover { opacity: 0.85; }
.lang-toggle button.active {
  opacity: 1;
  color: var(--accent);
}
.lang-toggle .sep { opacity: 0.3; user-select: none; }
