@font-face {
  font-family: "Canela";
  src: url("../assets/fonts/Canela-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Canela";
  src: url("../assets/fonts/Canela-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Canela";
  src: url("../assets/fonts/Canela-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Text";
  src: url("../assets/fonts/SF-Pro-Text-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Text";
  src: url("../assets/fonts/SF-Pro-Text-Semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Display-Font für den Hero-Claim (SIL Open Font License, lokal) */
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../assets/fonts/BricolageGrotesque-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --midnight: #090a0a;
  --midnight-soft: #111113;
  --panel: #151318;
  --panel-soft: #1d1823;
  --white: #ffffff;
  --text: #f8f6fb;
  --muted: #b9b1c2;
  --quiet: #888095; /* AA-Kontrast: min. 4.5:1 auch auf Karten-Hintergründen */
  --lavender: #c99dfc;
  --lavender-deep: #8e38f2;
  --sage: #93cdb7;
  --rose: #dfa2ac;
  --gold: #d1b273;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(201, 157, 252, 0.34);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 17px;
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  font-family: "SF Pro Text", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--midnight);
  line-height: 1.6;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(201, 157, 252, 0.11), transparent 26%),
    linear-gradient(120deg, rgba(147, 205, 183, 0.06), transparent 38%),
    var(--midnight);
}

a {
  color: inherit;
  text-decoration: none;
}

/* Inline-Icons (Hugeicons, stroke-rounded) */
.icon {
  flex: none;
  width: 22px;
  height: 22px;
  vertical-align: -0.28em;
}

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

.site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: flex;
  width: min(1320px, calc(100% - 48px));
  margin: 18px auto 0;
}

/* Navigations-Pille — wieder über die volle Breite */
.nav-pill {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(9, 10, 10, 0.76);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.site-header.is-scrolled .nav-pill {
  border-color: rgba(201, 157, 252, 0.22);
  background: rgba(9, 10, 10, 0.9);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.5);
}

/* Sprachselektion — fix oben rechts in der Ecke, ohne Bubble, scrollt nicht mit
   und blendet beim Runterscrollen aus. */
.lang-floating {
  position: fixed;
  top: 24px;
  right: 28px;
  z-index: 45;
  transition: opacity 260ms ease, transform 260ms ease;
}

.lang-floating.is-hidden {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

/* Menü-Variante der Sprachwahl: nur im mobilen Hamburger-Menü sichtbar
   (hohe Spezifität, sonst überschreibt .lang-switch { display:inline-flex }) */
.lang-switch.lang-switch--menu {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 92px;
  padding: 7px 0;
}

.brand img {
  width: 92px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.site-nav .nav-cta {
  color: var(--midnight);
  background: var(--lavender);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--midnight);
  background: var(--white);
}

/* Sprachumschalter DE/EN — sitzt in der .lang-floating fix oben rechts */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--muted);
  transition: color 160ms ease, background 160ms ease;
}

.lang-switch a img {
  width: 18px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.lang-switch a:hover,
.lang-switch a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.lang-switch a[aria-current] {
  color: var(--midnight);
  background: var(--lavender);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--lavender);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--midnight);
  border-radius: 999px;
}

/* ——— Statement-Hero (volle Bühne, Claim-Varianten a/b/c) ——— */

.statement-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  /* Hero reicht bis zur echten Viewport-Oberkante: der negative Margin holt den
     Flow-Platz zurück, den der schwebende (sticky) Header einnimmt, sodass die
     Aurora hinter der Navi bis ganz nach oben läuft. padding-top hält den Claim
     mittig unter der Navi. hero-aurora.js rendert auf die Hero-Box-Größe, daher
     muss die Box selbst wachsen (nicht nur das Canvas). */
  min-height: 100svh;
  margin-top: -98px;
  padding: 170px 0 110px;
}

.statement-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 157, 252, 0.5), transparent);
}

.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(980px 540px at 50% 16%, rgba(142, 56, 242, 0.17), transparent 70%),
    radial-gradient(760px 460px at 12% 86%, rgba(147, 205, 183, 0.05), transparent 70%),
    radial-gradient(760px 460px at 88% 84%, rgba(223, 162, 172, 0.05), transparent 70%);
}

/* WebGL-Aurora (Three.js, js/hero-aurora.js) — blendet sich über den
   statischen Glow, der ohne WebGL als Fallback bestehen bleibt. */
.hero-aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1400ms ease;
}

html.has-aurora .hero-aurora {
  opacity: 1;
}

/* !important, weil die Entrance-Animation opacity inline auf 1 tweent */
html.has-aurora .hero-glow {
  opacity: 0.45 !important;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

/* Claim-Varianten: HTML hält alle drei, body[data-hero] zeigt eine */
[data-variant] {
  display: none;
}

body[data-hero="a"] [data-variant~="a"],
body[data-hero="b"] [data-variant~="b"],
body[data-hero="c"] [data-variant~="c"] {
  display: block;
}

.statement-title {
  max-width: 1220px;
  margin: 0 0 28px;
  font-size: clamp(3.3rem, 8vw, 7.6rem);
  font-weight: 300;
  line-height: 1.01;
  letter-spacing: -0.015em;
}


.statement-title.display-title {
  font-family: "Bricolage Grotesque", "SF Pro Text", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(3.2rem, 8.6vw, 8.2rem);
  line-height: 0.97;
  letter-spacing: -0.025em;
}

.accent-word {
  background: linear-gradient(112deg, var(--lavender) 18%, var(--lavender-deep) 88%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Aufgeh-Effekt: Claim-Zeilen schieben sich maskiert hoch (nur mit Motion) */
.h-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
  margin-bottom: -0.06em;
}

.h-inner {
  display: block;
}

/* Nur opacity — den Transform-Startwert setzt GSAP selbst (ein CSS-Transform
   würde als Pixel-Offset in GSAPs Transform-Cache landen und haengenbleiben) */
.has-motion .statement-title .h-inner {
  opacity: 0;
}

.has-motion .hero-glow {
  opacity: 0;
  transform: scale(0.82);
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  background: linear-gradient(180deg, #6b46ff, #5733ea);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  box-shadow: 0 14px 34px rgba(91, 52, 236, 0.42);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.download-btn:hover,
.download-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(91, 52, 236, 0.55);
  filter: brightness(1.06);
}

.download-btn-apple {
  width: 20px;
  height: 20px;
  margin-top: -2px;
}

.download-note {
  margin: 0;
  color: var(--quiet);
  font-size: 0.92rem;
}

.hero-actions.statement-actions {
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
}

.statement-sub {
  max-width: 680px;
  margin: 0 0 38px;
  color: var(--muted);
  font-size: 1.16rem;
}

.statement-actions {
  justify-content: center;
  margin-bottom: 0;
}

.scroll-hint {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 26px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: max-content;
  margin: 0 auto;
  color: var(--muted);
  transition: color 160ms ease;
}

.scroll-hint-label {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.scroll-hint-chevron {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 160ms ease, background 160ms ease;
}

.scroll-hint:hover,
.scroll-hint:focus-visible {
  color: var(--lavender);
}

.scroll-hint:hover .scroll-hint-chevron,
.scroll-hint:focus-visible .scroll-hint-chevron {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.07);
}

.scroll-hint .icon {
  width: 19px;
  height: 19px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lavender);
  font-size: 0.92rem;
  font-weight: 600;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Canela", Georgia, serif;
  font-weight: 400;
}

h1 {
  margin-bottom: 24px;
  font-size: 5.35rem;
  font-weight: 300;
  line-height: 0.95;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.15rem;
  line-height: 1.05;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  line-height: 1.25;
}

.hero-lead,
.section-copy p,
.app-store-copy p,
.legal-intro {
  color: var(--muted);
  font-size: 1.13rem;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--midnight);
  background: var(--lavender);
  box-shadow: 0 18px 42px rgba(201, 157, 252, 0.2);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--white);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.button-icon {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-right: 9px;
  border-radius: 999px;
  color: var(--midnight);
  background: rgba(255, 255, 255, 0.72);
}

.button-icon .icon {
  width: 15px;
  height: 15px;
}

.launch-note .icon {
  width: 17px;
  height: 17px;
  color: var(--lavender);
}

.launch-note {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--quiet);
}

.launch-note strong {
  color: var(--white);
}


.feature-section,
.premium-section,
.faq-section {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 84px 0;
}

/* Full-bleed-Bühnen: Hintergrund über die volle Browserbreite, Inhalt im Shell */
.bleed {
  width: 100%;
  margin: 0;
}

.bleed > .shell {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.section-copy.narrow {
  max-width: 820px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.13rem;
}

.pricing-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
}

.pricing-card p,
.pricing-card li,
.faq-list p {
  color: var(--muted);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.principles-grid .principle-card {
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 0;
}


.price-alt {
  display: block;
  margin-top: 8px;
  font-size: 0.95rem;
  color: var(--muted);
}

.pricing-card.highlighted .price-alt {
  color: rgba(9, 10, 10, 0.78);
}

.evidence-section {
  padding: 96px 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(1150px 560px at 50% 0%, rgba(223, 162, 172, 0.06), transparent 70%),
    #0c0b0e;
}

/* ——— Studien im Meet-the-Developer-Stil: alternierende Problem/Antwort-Blöcke ——— */
.evidence-flow {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 7vh, 96px);
  margin-top: 52px;
}

.evidence-block {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.es-number {
  margin: 0 0 14px;
  font-family: "Canela", Georgia, serif;
  font-weight: 400;
  font-size: clamp(3.6rem, 7vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--text);
}

.es-unit {
  margin-left: 0.06em;
  font-size: 0.4em;
  color: #dfa2ac;
}

.es-label {
  margin: 0 0 16px;
  max-width: 30ch;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--text);
}

.evidence-answer {
  position: relative;
}

.ea-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lavender);
}

.ea-kicker::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--lavender), transparent);
}

.ea-headline {
  margin: 0 0 12px;
  font-family: "Canela", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  line-height: 1.08;
  color: var(--text);
}

.ea-label {
  margin: 0 0 16px;
  max-width: 46ch;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.6;
}

.es-source {
  margin: 0;
  font-size: 0.9rem;
}

.es-source a {
  color: var(--quiet);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 160ms ease;
}

.es-source a:hover,
.es-source a:focus-visible {
  color: var(--text);
}

@media (max-width: 820px) {
  .evidence-block {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Studien-Sektion (evidence-flow) auf Mobile verdichten */
@media (max-width: 980px) {
  .evidence-section {
    padding: 52px 0;
  }
}

.evidence-footnote {
  max-width: 820px;
  margin: 36px 0 0;
  font-size: 0.88rem;
  color: var(--quiet);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pricing-card {
  min-height: 380px;
  padding: 32px;
}

.pricing-card.highlighted {
  color: var(--midnight);
  background: var(--lavender);
  border-color: var(--lavender);
}

.pricing-card h3 {
  margin: 16px 0 10px;
  font-size: 2.4rem;
}

.pricing-card small {
  color: currentColor;
  font-size: 1rem;
  font-weight: 600;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 24px;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.pricing-card.highlighted p,
.pricing-card.highlighted li,
.pricing-card.highlighted .plan-name {
  color: rgba(9, 10, 10, 0.78);
}

.pricing-card.highlighted li::before {
  background: var(--midnight);
}

.principle-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
  margin-top: 16px;
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.principle-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--lavender);
}

.principle-card h3 {
  margin-bottom: 6px;
}

.principle-card p {
  margin: 0;
  color: var(--muted);
}

.app-store-section {
  padding: 110px 0;
  border-top: 1px solid var(--line-strong);
  background:
    radial-gradient(1250px 620px at 50% 118%, rgba(142, 56, 242, 0.32), transparent 72%),
    linear-gradient(180deg, rgba(201, 157, 252, 0.08), transparent 55%),
    var(--panel);
}

.app-store-section .shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.app-store-section .eyebrow,
.app-store-section p {
  color: var(--muted);
}

.app-store-section h2 {
  max-width: 760px;
}

.store-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-width: 210px;
  min-height: 72px;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--midnight);
  background: var(--white);
}

.store-badge-apple {
  width: 42px;
  height: 42px;
  flex: none;
}

.store-badge-text {
  display: grid;
  align-content: center;
  text-align: left;
}

.store-badge-text span {
  font-size: 0.82rem;
  font-weight: 600;
}

.store-badge-text strong {
  font-size: 1.35rem;
  line-height: 1.05;
}

/* App-Store-CTA: echter QR auf den App-Store-Link (nur Desktop) über dem Download-Button. */
.store-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.store-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}

.store-qr-code {
  width: 132px;
  height: 132px;
  padding: 13px;
  border-radius: 16px;
  color: var(--midnight);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}

.store-qr-code svg,
.store-qr-code img {
  display: block;
  width: 100%;
  height: 100%;
}

.store-qr-label {
  font-size: 0.82rem;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 22px 26px;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  color: var(--text);
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary .icon {
  width: 18px;
  height: 18px;
  color: var(--quiet);
  transition: transform 260ms ease, color 260ms ease;
}

.faq-list details[open] summary .icon {
  transform: rotate(180deg);
  color: var(--lavender);
}

.faq-list p {
  margin: 14px 0 0;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 46px 0 54px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  margin-bottom: 12px;
}

.site-footer p {
  max-width: 360px;
  margin-bottom: 0;
}

.site-footer nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer nav a {
  padding: 10px 6px;
  margin: -10px -4px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.legal-page {
  background: var(--midnight);
}

.legal-shell {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0 72px;
}

.legal-shell h1 {
  font-size: 3.4rem;
}

.legal-shell section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.legal-shell h2 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.legal-shell p {
  color: var(--muted);
}

.legal-shell ul {
  display: grid;
  gap: 9px;
  margin: 0 0 16px;
  padding-left: 22px;
  color: var(--muted);
}

.legal-shell li::marker {
  color: var(--lavender);
}

.legal-shell a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-shell a:hover,
.legal-shell a:focus-visible {
  color: var(--text);
}

.legal-shell strong {
  color: var(--text);
}

.compact-footer {
  align-items: center;
}

.confirm-shell {
  width: min(480px, calc(100% - 40px));
  margin: 0 auto;
  padding: 140px 0;
  text-align: center;
}

.confirm-shell h1 {
  margin-bottom: 14px;
  font-size: 2.4rem;
}

.confirm-shell p {
  color: var(--muted);
}

.confirm-shell a {
  color: var(--lavender);
}

/* ——— Emotion-Check-in (gepinnte Blob-Sektion) ———
   Die Blobs stehen wie in der App hinter einer Bruestung: .blob-art clippt
   die Kunst unten (overflow), die Labels tragen eine durchgehende border-top
   als Balken-Kante. GSAP schiebt die Bilder IM Clip-Container hoch — so
   poppen sie hinter dem Balken hervor. */

.emotion-section {
  /* Geometrie der Bruestung: Kunst-Hoehe, sichtbarer Anteil, Kopf-Luft,
     horizontale Luft pro Blob (ersetzt das Row-gap, damit die Kante
     ohne Luecken durchlaeuft). Wie im App-Check-in: gross und dicht —
     die vw-Formel haelt die Summe der 7 Blob-Breiten (~6.18 x Hoehe
     plus 14 Gaps) immer unter der 1460px-Shell, vh deckelt flache
     Fenster. */
  --blob-h: min(clamp(132px, 14.2vw, 220px), 26vh);
  --blob-cut: 0.76;
  --peek: 26px;
  --blob-gap: clamp(2px, 0.3vw, 6px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(1050px 640px at 84% 100%, rgba(142, 56, 242, 0.13), transparent 68%),
    radial-gradient(800px 420px at 8% 0%, rgba(201, 157, 252, 0.05), transparent 70%),
    #0d0c11;
}

.emotion-sticky {
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: 104px 0 36px;
}

/* Etwas breiter als die Standard-Shell: die Blob-Reihe darf raumgreifen */
.emotion-sticky > .shell {
  width: min(1460px, calc(100% - 40px));
  margin: 0 auto;
}

.emotion-head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.emotion-head h2 {
  margin-bottom: 14px;
}

.emotion-lede {
  margin: 0;
  color: var(--muted);
  font-size: 1.13rem;
}

.emotion-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: clamp(30px, 5vh, 58px);
}

.emotion-blob {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 var(--blob-gap);
  border: 0;
  background: none;
  color: var(--muted);
  font-family: inherit;
  cursor: pointer;
  transition: color 200ms ease;
}

/* Clip-Container: schneidet die Kunst an der Bruestungs-Kante ab.
   padding-top laesst Luft fuer Back-out-Overshoot und Hover-Lugen. */
.blob-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: calc(var(--peek) + var(--blob-h) * var(--blob-cut));
  padding-top: var(--peek);
  overflow: hidden;
}

.blob-art img {
  display: block;
  width: auto;
  height: var(--blob-h);
  flex-shrink: 0;
  filter: drop-shadow(0 22px 44px rgba(0, 0, 0, 0.45));
  transition: filter 380ms ease;
}

/* Das Traurig-Dreieck laeuft oben spitz zu und laesst in seiner
   Bounding-Box je Seite ca. 10-15% Luft (per Alpha-Scan gemessen) -
   negative Margins ziehen die Nachbarn heran, die transparenten
   Ecken duerfen ueberlappen. */
.emotion-blob[data-emotion="sad"] {
  margin: 0 calc(var(--blob-h) * -0.09);
}

/* Tiefe an der Kante: die Figuren tauchen unten leicht ins Dunkel */
.blob-art::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 62%, rgba(13, 12, 17, 0.5));
}

.emotion-blob.is-dimmed .blob-art img {
  filter:
    drop-shadow(0 22px 44px rgba(0, 0, 0, 0.45))
    saturate(0.3) brightness(0.52);
}

/* Der Balken: durchgehende Kante direkt unter der Kunst. Negative
   margins ueberbruecken das Button-padding, damit die Linie ohne
   Luecken von Blob zu Blob laeuft. */
.blob-label {
  display: flex;
  justify-content: center;
  width: calc(100% + 2 * var(--blob-gap));
  margin: 0 calc(-1 * var(--blob-gap));
  padding-top: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  transition: color 200ms ease;
}

/* Pill traegt von Anfang an Padding + transparente Border — so springt
   das Layout nicht, wenn der Klick sie in der Emotionsfarbe umrandet */
.blob-pill {
  display: inline-block;
  padding: 5px 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.emotion-blob.is-dimmed .blob-label {
  color: var(--quiet);
}

.emotion-blob:hover .blob-label,
.emotion-blob:focus-visible .blob-label {
  color: var(--text);
}

.emotion-blob.is-active .blob-label {
  color: var(--white);
}

.emotion-blob.is-active .blob-pill {
  border-color: var(--blob, var(--lavender));
  background: color-mix(in srgb, var(--blob, var(--lavender)) 15%, transparent);
  box-shadow: 0 0 22px color-mix(in srgb, var(--blob, var(--lavender)) 28%, transparent);
}

.emotion-foot {
  max-width: 660px;
  margin: clamp(26px, 4vh, 44px) auto 0;
  text-align: center;
}

.emotion-foot .moment-note {
  text-align: center;
}

/* Bedeutungs-Box: neutral bis zum ersten Tipp, danach uebernimmt sie die Farbe der
   gewaehlten Emotion (JS setzt --mc + .is-colored).
   min-height reserviert immer Platz fuer zwei Zeilen - Textwechsel darf kein
   Layout-Shift ausloesen (1 Zeile Intro vs. 2 Zeilen Bedeutung). */
.moment-response {
  display: grid;
  align-items: center;
  min-height: 100px;
  padding: 22px 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 320ms ease, background-color 320ms ease, box-shadow 320ms ease;
}

.moment-response.is-colored {
  border-color: color-mix(in srgb, var(--mc, var(--lavender)) 52%, transparent);
  background: color-mix(in srgb, var(--mc, var(--lavender)) 9%, transparent);
  box-shadow: 0 16px 50px color-mix(in srgb, var(--mc, var(--lavender)) 14%, transparent);
}

.moment-line {
  margin: 0;
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.6;
}

.moment-line .mk {
  color: var(--mc, var(--lavender));
  font-weight: 650;
}

.moment-note {
  margin: 22px 0 0;
  color: var(--quiet);
  font-size: 0.85rem;
}

/* ——— Maker-Teaser ——— */

.maker-section {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 96px;
}

.maker-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 40px 44px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(201, 157, 252, 0.11), rgba(255, 255, 255, 0.03));
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
}

.maker-mono {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  color: var(--midnight);
  background: var(--lavender);
  font-family: "Canela", Georgia, serif;
  font-weight: 400;
  font-size: 1.65rem;
}

.maker-card h2 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.maker-card p {
  margin: 0;
  max-width: 640px;
  color: var(--muted);
}

/* ——— Meet the Developer: Story als alternierende Kapitel (Vorbild: Einblicke).
   Pro Kapitel ein Aside (Nummer + Titel + Tagline) und der Fließtext; die Seiten
   wechseln (rechts/links/rechts). Das Zitat ist ein eigenes Highlight-Panel. ——— */
.meet-section {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 36px 0 96px;
}

.meet-flow {
  display: flex;
  flex-direction: column;
  gap: clamp(44px, 6vh, 84px);
  margin-top: 48px;
}

.meet-block {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(40px, 5vw, 88px);
  align-items: start;
}

.meet-block--flip {
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr);
}

.meet-block--flip .meet-aside {
  order: 2;
}

.meet-aside {
  position: sticky;
  top: 116px;
}

.meet-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--lavender);
}

.meet-kicker::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--lavender), transparent);
}

.meet-aside h3 {
  margin: 0 0 10px;
  font-family: "Canela", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  line-height: 1.1;
  color: var(--text);
}

.meet-aside-sub {
  margin: 0;
  max-width: 32ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.5;
}

.meet-text p {
  margin: 0 0 18px;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.66;
}

.meet-text p:last-child {
  margin-bottom: 0;
}

.meet-text p strong {
  color: var(--text);
}

.meet-evidence a {
  color: var(--quiet);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 160ms ease;
}

.meet-evidence a:hover {
  color: var(--text);
}

.meet-quote {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(22px, 3.5vw, 40px);
  margin: clamp(6px, 1.5vh, 20px) 0;
  padding: clamp(30px, 4.2vw, 52px) clamp(32px, 5vw, 64px);
  border: 1px solid rgba(201, 157, 252, 0.22);
  border-radius: 22px;
  background:
    radial-gradient(130% 150% at 0% 0%, rgba(142, 56, 242, 0.20), transparent 56%),
    rgba(201, 157, 252, 0.05);
  overflow: hidden;
}

.meet-quote-photo {
  position: relative;
  flex: none;
  width: clamp(74px, 9.5vw, 108px);
  height: clamp(74px, 9.5vw, 108px);
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201, 157, 252, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.38);
}

.meet-quote-text {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
}

.meet-quote::before {
  content: "\201E";
  position: absolute;
  top: -0.34em;
  right: 0.08em;
  font-family: "Canela", Georgia, serif;
  font-size: 15rem;
  line-height: 1;
  color: rgba(201, 157, 252, 0.10);
  pointer-events: none;
}

.meet-quote-kicker {
  position: relative;
  margin: 0 0 16px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--lavender);
}

.meet-quote-main {
  position: relative;
  margin: 0;
  font-family: "Canela", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.15rem, 2.05vw, 2.05rem);
  line-height: 1.15;
  color: var(--white);
  white-space: nowrap;
}

@media (max-width: 820px) {
  .meet-quote {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .meet-quote-main {
    white-space: normal;
    font-size: clamp(1.4rem, 5.5vw, 2rem);
  }
}

.meet-dev-link {
  margin-top: 6px;
}

.meet-dev-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lavender);
  font-weight: 600;
  transition: color 160ms ease;
}

.meet-dev-link a:hover {
  color: var(--white);
}

.meet-dev-link .icon {
  width: 16px;
  height: 16px;
}

@media (max-width: 860px) {
  .meet-block {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .meet-block--flip .meet-aside {
    order: 0;
  }

  .meet-aside {
    position: static;
  }
}

/* ——— Über-mich-Seite ——— */

.about-shell {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 72px;
}

.about-shell h1 {
  font-size: 4.1rem;
  margin-bottom: 20px;
}

.about-lede {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.22rem;
}

.about-body {
  margin-top: 44px;
  display: grid;
  gap: 0;
}

.about-body section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.about-body h2 {
  font-size: 1.9rem;
  margin-bottom: 14px;
}

.about-body p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 700px;
}

.about-body p strong {
  color: var(--text);
}

.about-quote {
  margin: 38px 0;
  padding: 28px 32px;
  border-left: 2px solid var(--lavender);
  border-radius: 0 8px 8px 0;
  background: rgba(201, 157, 252, 0.07);
}

.about-quote p {
  margin: 0;
  font-family: "Canela", Georgia, serif;
  font-weight: 300;
  font-size: 1.85rem;
  line-height: 1.25;
  color: var(--white);
  max-width: none;
}

.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.about-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 600;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.about-links a:hover,
.about-links a:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--line-strong);
}

.about-links a.primary-link {
  color: var(--midnight);
  background: var(--lavender);
  border-color: transparent;
}

.about-links a.primary-link:hover,
.about-links a.primary-link:focus-visible {
  background: var(--white);
}

.about-links .icon {
  width: 17px;
  height: 17px;
}

/* ——— Bewegung: Entrance, Reveal, Float, Bars ——— */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-inner > *:not(.statement-title) {
  animation: fadeUp 900ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.hero-inner > .eyebrow { animation-delay: 80ms; }
.hero-inner > .statement-title { animation-delay: 180ms; }
.hero-inner > .statement-sub { animation-delay: 320ms; }
.hero-inner > .statement-actions { animation-delay: 440ms; }

.scroll-hint {
  /* backwards statt both: nach der Entrance darf der Scroll-Scrub (inline) wieder greifen */
  animation: fadeUp 700ms cubic-bezier(0.22, 0.61, 0.36, 1) 900ms backwards;
}

.scroll-hint .icon {
  animation: scrollNudge 2.6s ease-in-out 1.8s infinite;
}

@keyframes scrollNudge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

[data-reveal] {
  --reveal-delay: 0ms;
}

.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--reveal-delay);
}

.has-js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .has-js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .stat-pair {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .stat-pair::before {
    content: "↓";
    position: static;
    width: 38px;
    height: 38px;
    margin: -4px auto;
    transform: none;
  }

  .stat-pairs {
    gap: 34px;
  }

  .principles-grid {
    grid-template-columns: 1fr;
  }

  /* Ohne Pin (kein 100svh-Zwang): Sektion scrollt normal, Inhalt atmet */
  .emotion-sticky {
    min-height: 0;
    padding: 84px 0 64px;
  }

  /* Wie in der App: eine Reihe, horizontal scrollbar, Kante laeuft mit */
  .emotion-section {
    --blob-h: clamp(104px, 28vw, 156px);
    --peek: 18px;
    --blob-gap: clamp(4px, 1.1vw, 8px);
  }

  .emotion-row {
    justify-content: flex-start;
    overflow-x: auto;
    margin-inline: -24px;
    padding-inline: 24px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, transparent, #000 26px, #000 calc(100% - 26px), transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 26px, #000 calc(100% - 26px), transparent);
  }

  .emotion-row::-webkit-scrollbar {
    display: none;
  }

  .emotion-blob {
    flex-shrink: 0;
  }

  /* Negative Margin des Traurig-Dreiecks hier zuruecksetzen - in der
     horizontalen Scrollreihe wuerden ueberlappende Touch-Targets stoeren. */
  .emotion-blob[data-emotion="sad"] {
    margin: 0;
  }

  /* Zentriert, solange alles passt - scrollt erst, wenn es eng wird */
  .emotion-blob:first-child {
    margin-left: auto;
  }

  .emotion-blob:last-child {
    margin-right: auto;
  }

  .blob-label {
    padding-top: 8px;
    font-size: 0.84rem;
  }

  .blob-pill {
    padding: 4px 10px;
  }

  .maker-card {
    grid-template-columns: 1fr;
    gap: 22px;
    justify-items: start;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 24px);
    margin-top: 12px;
  }

  .nav-pill {
    border-radius: 22px;
  }

  .nav-toggle {
    display: block;
  }

  /* Mobil: schwebende Sprachwahl raus — stattdessen unten im Hamburger-Menü */
  .lang-floating {
    display: none;
  }

  .lang-switch.lang-switch--menu {
    display: inline-flex;
    align-self: center;
    margin-top: 6px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(9, 10, 10, 0.96);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.42);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 16px;
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-direction: row;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero-inner,
  .bleed > .shell,
  .feature-section,
  .premium-section,
  .faq-section,
  .maker-section,
  .site-footer,
  .legal-shell,
  .about-shell {
    width: calc(100% - 24px);
  }

  .about-shell h1 {
    font-size: 2.9rem;
  }

  .about-quote p {
    font-size: 1.45rem;
  }

  .maker-card {
    padding: 30px 26px;
  }

  .principle-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .statement-hero {
    padding: 120px 0 90px;
  }

  .pricing-grid,
  .app-store-section .shell {
    grid-template-columns: 1fr;
  }

  .app-store-section {
    padding: 72px 0;
  }

  .store-cta {
    width: 100%;
  }

  .store-qr {
    display: none;
  }

  .store-badge {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  body {
    overflow-x: hidden;
  }

  .brand img {
    width: 82px;
  }

  .eyebrow {
    overflow-wrap: anywhere;
  }

  h1 {
    font-size: 2.9rem;
  }

  .statement-title {
    font-size: clamp(2.4rem, 10.5vw, 2.9rem);
  }

  .statement-sub {
    font-size: 1.05rem;
  }

  .scroll-hint {
    bottom: 18px;
    gap: 8px;
  }

  .scroll-hint-label {
    font-size: 0.88rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  /* Auf Mobile sind Bedeutungstexte oft 3-zeilig - min-height
     entsprechend angepasst (ca. 3 Zeilen bei 1rem / line-height 1.6
     plus vertikales Padding 2x20px). */
  .moment-response {
    min-height: 116px;
    padding: 20px 18px;
  }

  .emotion-sticky {
    padding-top: 92px;
  }

  .legal-nav {
    display: none;
  }
}

/* ——— Motion-Layer (GSAP + Lenis, js/motion.js) ———
   Alle Initial-Verstecke hängen an html.has-motion — die Klasse setzt
   ausschließlich motion.js, und nur wenn prefers-reduced-motion aus ist.
   Ohne JS oder mit reduzierter Bewegung bleibt alles sofort sichtbar. */

/* Lenis übernimmt das Smooth-Scrolling — natives CSS-Smooth abschalten,
   sonst glätten beide gleichzeitig und Anker-Sprünge ruckeln. */
html.lenis {
  scroll-behavior: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

/* Magnetic-Buttons: GSAP steuert transform, die CSS-Transition darf nur
   noch Schatten/Filter glätten — sonst schleppt sie jeden Frame nach. */
.has-motion .download-btn {
  transition: box-shadow 160ms ease, filter 160ms ease;
}

/* Emotion-Blobs: Initial-Versteck fuer den Slide-in hinter der Kante.
   GSAP setzt sofort nach Skript-Start yPercent + opacity per inline-Style —
   das CSS hier deckt nur die Frames bis dahin ab. Versteckt wird das BILD
   (nicht der Button), denn der Clip-Container und die Balken-Kante
   muessen von Anfang an stehen. */
.has-motion .blob-art img {
  opacity: 0;
}

.has-motion .emotion-foot {
  opacity: 0;
}

/* Themen-Bubbles: GSAP poppt sie gestaffelt auf */
.has-motion .theme-bubble {
  opacity: 0;
}

/* Parallax-Glows der Bühnen */
.bleed {
  position: relative;
  overflow: hidden;
}

.bleed > .shell {
  position: relative;
  z-index: 1;
}

.stage-glow {
  position: absolute;
  inset: -16% 0;
  pointer-events: none;
}

.glow-rose {
  background: radial-gradient(1150px 560px at 50% 6%, rgba(223, 162, 172, 0.07), transparent 70%);
}

.glow-violet {
  background:
    radial-gradient(1050px 640px at 84% 94%, rgba(142, 56, 242, 0.14), transparent 68%),
    radial-gradient(800px 420px at 8% 8%, rgba(201, 157, 252, 0.05), transparent 70%);
}

.glow-cta {
  background: radial-gradient(1250px 620px at 50% 96%, rgba(142, 56, 242, 0.33), transparent 72%);
}

/* ——— 1-2-3-Steps: editoriale Zeilen statt Karten-Grid. Riesige
   Outline-Nummer, Canela-Titel, Pfeil-Kreis — jede Zeile springt zur
   Detail-Sektion darunter (Lenis-Anker). --sc = Schritt-Akzentfarbe. ——— */

.steps-section {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 84px 0;
  border-top: 1px solid var(--line);
}

.steps-flow {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.step-row {
  border-top: 1px solid var(--line);
}

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

.step-link {
  position: relative;
  display: grid;
  grid-template-columns: clamp(110px, 15vw, 196px) minmax(0, 1fr) 56px;
  align-items: center;
  gap: clamp(20px, 4vw, 56px);
  padding: clamp(30px, 4.6vh, 46px) 6px;
  color: inherit;
}

/* Cursor-Spotlight wie auf den Studien-Zeilen (JS setzt --mx/--my) */
.step-link::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    460px circle at var(--mx, 30%) var(--my, 50%),
    color-mix(in srgb, var(--sc, var(--lavender)) 9%, transparent),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 420ms ease;
}

.step-link:hover::before {
  opacity: 1;
}

.step-num {
  font-family: "Canela", Georgia, serif;
  font-weight: 400;
  font-size: clamp(3.6rem, 7.2vw, 6.6rem);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.32);
  transition: -webkit-text-stroke-color 320ms ease, filter 320ms ease;
}

/* Browser ohne text-stroke sollen die Nummer nicht verlieren */
@supports not (-webkit-text-stroke: 1px white) {
  .step-num {
    color: rgba(255, 255, 255, 0.3);
  }
}

.step-link:hover .step-num,
.step-link:focus-visible .step-num {
  -webkit-text-stroke-color: var(--sc, var(--lavender));
  filter: drop-shadow(0 0 26px color-mix(in srgb, var(--sc, var(--lavender)) 38%, transparent));
}

.step-main {
  display: block;
}

.step-title {
  display: block;
  margin-bottom: 7px;
  font-family: "Canela", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 2.7vw, 2.5rem);
  line-height: 1.08;
  color: var(--white);
}

.step-sub {
  display: block;
  max-width: 52ch;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.45;
}

/* Pfeil zeigt nach unten: die Erklaerung folgt direkt auf der Seite */
.step-go {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid color-mix(in srgb, var(--sc, var(--lavender)) 38%, rgba(255, 255, 255, 0.1));
  transition: background-color 280ms ease, color 280ms ease, transform 280ms ease;
}

.step-go .icon {
  width: 20px;
  height: 20px;
  transform: rotate(90deg);
}

.step-link:hover .step-go,
.step-link:focus-visible .step-go {
  background: var(--sc, var(--lavender));
  color: var(--midnight);
  transform: translateY(4px);
}

@media (max-width: 760px) {
  .steps-section {
    width: calc(100% - 24px);
  }

  .step-link {
    grid-template-columns: 64px minmax(0, 1fr) 42px;
    gap: 16px;
    padding: 26px 2px;
  }

  .step-num {
    font-size: 2.9rem;
  }

  .step-go {
    width: 42px;
    height: 42px;
  }

  .step-go .icon {
    width: 17px;
    height: 17px;
  }
}

/* ——— Tastatur-Fokus: sichtbarer Ring auf allen interaktiven Elementen ——— */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--lavender);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   In-App-Einblicke — originalgetreue Nachbauten echter App-Module:
   Core Influences (InfluenceRow) + Monatsrückblick-Highlights
   (RecapHighlightCard). Farben/Maße 1:1 aus JournalSwiftApp.
   ============================================================ */

.insight-section {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 84px 0;
  border-top: 1px solid var(--line);
  /* App-Label-Farben (InfluenceLabel.color) */
  --boost: #d69efd;
  --drain: #f28c8c;
  --volatile: #f2c74d;
}

/* ——— Drei nummerierte Banger-Bloecke: Copy neben dem App-Mock,
   abwechselnd links/rechts. Nebeneinander statt uebereinander —
   so kann der Mock-Parallax nie wieder den Text ueberfahren. ——— */

.insight-flow {
  display: flex;
  flex-direction: column;
  gap: clamp(64px, 9vh, 110px);
  margin-top: 26px;
}

.insight-block {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}

.insight-block:nth-child(even) .insight-copy {
  order: 2;
}

.insight-num {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--lavender);
}

.insight-num::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--lavender), transparent);
}

.insight-copy h3 {
  margin: 0 0 14px;
  font-family: "Canela", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.9rem, 2.9vw, 2.7rem);
  line-height: 1.08;
  color: var(--text);
}

.insight-copy p {
  margin: 0;
  max-width: 40ch;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.5;
}

/* ——— App-„Bildschirm"-Fläche (appBackground + TopGlow-Anklang) ——— */
.app-surface {
  position: relative;
  padding: 18px;
  border-radius: 26px;
  background:
    radial-gradient(120% 78% at 50% -8%, rgba(201, 157, 252, 0.10), transparent 60%),
    #0d0c10;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.app-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 55%);
  mask-image: linear-gradient(to bottom, #000, transparent 55%);
  pointer-events: none;
}

.app-surface > * {
  position: relative;
  z-index: 1;
}

/* ——— Core Influences ——— */
.ci-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 2px 4px;
}

.ci-head-title {
  font-size: 1.18rem;
  font-weight: 600;
  color: #fff;
}

.ci-head-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.ci-head-pill .icon {
  width: 13px;
  height: 13px;
}

.ci-list {
  background: #111;
  border-radius: 18px;
  overflow: hidden;
}

.ci-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
}

.ci-row + .ci-row {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ci-ic {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
}

.ci-ic .icon {
  width: 22px;
  height: 22px;
}

.ci-main {
  flex: 1;
  min-width: 0;
}

.ci-top {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 9px;
}

.ci-name {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.ci-count {
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}

.ci-ai {
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(214, 158, 253, 0.15);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--boost);
}

.ci-grow {
  flex: 1;
}

.ci-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.ci-badge.boost { color: var(--boost); }
.ci-badge.drain { color: var(--drain); }
.ci-badge.volatile { color: var(--volatile); }

.ci-arrow {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.ci-bar {
  display: flex;
  gap: 6px;
  height: 4px;
}

.ci-seg {
  flex: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.ci-bar.boost .ci-seg.on { background: linear-gradient(90deg, rgba(214, 158, 253, 0.7), #d69efd); }
.ci-bar.drain .ci-seg.on { background: linear-gradient(90deg, rgba(242, 140, 140, 0.7), #f28c8c); }
.ci-bar.volatile .ci-seg.on { background: linear-gradient(90deg, rgba(242, 199, 77, 0.7), #f2c74d); }

/* ——— Monatsrückblick-Highlights ——— */
.rh-eyebrow {
  margin: 4px 2px 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--boost);
}

.rh-title {
  margin: 0 2px 18px;
  font-family: "Canela", Georgia, serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #fff;
}

.rh-label {
  margin: 0 2px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.rh-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rh-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: #111;
}

.rh-spark {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(214, 158, 253, 0.12);
  color: var(--boost);
}

.rh-spark .icon {
  width: 14px;
  height: 14px;
}

.rh-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

/* ——— Top Journal Themes: Glass-Bubble-Chart wie in der Live-Map.
   Groessen/Positionen in % der Feldbreite — skaliert auf jedem Viewport.
   Farb-Glow unten in der Bubble + farbiger Rand, KI-Themen in Lila. ——— */

.tm-field {
  position: relative;
  aspect-ratio: 16 / 10.5;
  margin-top: 6px;
}

.theme-bubble {
  position: absolute;
  left: var(--bx);
  top: var(--by);
  translate: -50% -50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  width: var(--w);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(62% 46% at 50% 92%, color-mix(in srgb, var(--tb) 26%, transparent), transparent 72%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid color-mix(in srgb, var(--tb) 38%, rgba(255, 255, 255, 0.12));
  border-bottom-color: color-mix(in srgb, var(--tb) 72%, transparent);
  box-shadow:
    inset 0 -22px 36px -26px color-mix(in srgb, var(--tb) 55%, transparent),
    0 18px 44px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.tb-name {
  font-size: clamp(0.72rem, 1.15vw, 1rem);
  font-weight: 600;
  color: #fff;
}

.tb-pct {
  font-size: clamp(0.6rem, 0.85vw, 0.78rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
}

.tb-ai {
  margin-top: 3px;
  padding: 1px 6px;
  border-radius: 999px;
  background: rgba(214, 158, 253, 0.16);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--boost);
}

/* ——— Scroll-Reveal: Segmente leuchten gestaffelt auf, Marker erscheint ——— */
.has-motion .insight-section .ci-seg.on {
  transform: scaleX(0);
  transform-origin: left center;
}

.has-motion .insight-section .ci-badge,
.has-motion .insight-section .ci-ai {
  opacity: 0;
}

@media (max-width: 860px) {
  .insight-block {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  /* Gestapelt steht die Copy immer ueber dem Mock */
  .insight-block:nth-child(even) .insight-copy {
    order: 0;
  }

  .insight-flow {
    gap: 64px;
  }
}

/* ============================================================
   Journaling-Sektion: sticky Text-Spalte + Journal-Karte mit
   KI-Chat, der sich beim Scrollen aufbaut (once, kein Reverse).
   ============================================================ */

.deepen-section {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 84px 0;
  border-top: 1px solid var(--line);
}

.deepen-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(44px, 6vw, 100px);
  align-items: center;
}

.deepen-copy {
}

.deepen-copy h2 {
  margin: 12px 0 16px;
  font-family: "Canela", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.9rem, 3.1vw, 2.7rem);
  line-height: 1.08;
  color: var(--text);
}

.deepen-lede {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.55;
  max-width: 42ch;
}

.deepen-points {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  gap: 26px;
}

.deepen-points li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.dp-ic {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: var(--lavender);
  background: color-mix(in srgb, var(--lavender) 12%, transparent);
}

.dp-ic .icon {
  width: 22px;
  height: 22px;
}

.dp-body h3 {
  margin: 0 0 6px;
  font-family: var(--sans, system-ui, sans-serif);
  font-size: 1.22rem;
  font-weight: 650;
  color: var(--text);
}

.dp-body p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--muted);
}

/* App-Screen-Nachbau: Morgen Journal */

.journal-phone {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0a090a;
  max-width: 430px;
  width: 100%;
  justify-self: end;
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.5),
    0 24px 110px rgba(142, 56, 242, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.jp-hero {
  position: absolute;
  inset: 0 0 auto 0;
}

.jp-hero img {
  display: block;
  width: 100%;
  height: auto;
}

.jp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10, 9, 10, 0.7) 75%, #0a090a 94%);
}

.jp-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 18px 0;
}

.jp-back {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.jp-back .icon {
  width: 18px;
  height: 18px;
}

.jp-save {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}

.jp-body {
  position: relative;
  z-index: 1;
  padding: 26px 24px 0;
}

.jp-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #FF9670;
}

.jp-label .icon {
  width: 16px;
  height: 16px;
}

.jp-question {
  margin: 12px 0 0;
  font-family: "Canela", Georgia, serif;
  font-size: clamp(1.65rem, 2vw, 1.9rem);
  font-weight: 400;
  line-height: 1.25;
  color: #fff;
}

.jp-date {
  margin: 22px 0 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.jp-text {
  position: relative;
  margin: 10px 0 0;
  font-size: 1.03rem;
  line-height: 1.55;
}

.jp-user {
  color: rgba(255, 255, 255, 0.92);
}

.jp-ai {
  color: #FF9670;
}

.jp-ai + .jp-ai {
  margin-top: 10px;
}

.jp-user + .jp-ai,
.jp-ai + .jp-user {
  margin-top: 18px;
}

/* Streaming-Mechanik: Ghost haelt die Hoehe, Live baut sich auf */

.jp-text .jp-live {
  position: absolute;
  inset: 0;
  visibility: hidden;
}

.jp-text.is-streaming .jp-ghost {
  visibility: hidden;
}

.jp-text.is-streaming .jp-live {
  visibility: visible;
}

/* Typing-Dots waehrend BETR "denkt" */

.jp-dots {
  position: absolute;
  top: 4px;
  left: 0;
  display: none;
  gap: 5px;
}

.jp-text.is-thinking .jp-dots {
  display: inline-flex;
}

.jp-dots i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FF9670;
  animation: jpDot 1s ease-in-out infinite;
}

.jp-dots i:nth-child(2) {
  animation-delay: 0.15s;
}

.jp-dots i:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes jpDot {
  0%, 100% { opacity: 0.25; }
  40% { opacity: 1; }
}

/* Caret beim Tippen des Nutzer-Textes */

.jp-caret {
  display: none;
  width: 2px;
  height: 1.15em;
  margin-left: 2px;
  vertical-align: text-bottom;
  background: rgba(255, 255, 255, 0.85);
}

.jp-text.is-typing .jp-caret {
  display: inline-block;
  animation: jpCaret 1.05s steps(1) infinite;
}

@keyframes jpCaret {
  0%, 55% { opacity: 1; }
  56%, 100% { opacity: 0; }
}

/* Toolbar */

.jp-toolbar {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 44px 22px 22px;
  margin-top: 6px;
}

.jp-mic {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.jp-mic .icon {
  width: 18px;
  height: 18px;
}

.jp-deepen {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 44px;
  padding: 0 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow:
    inset 0 -12px 22px -14px rgba(255, 150, 112, 0.9),
    0 10px 32px -14px rgba(255, 150, 112, 0.35);
}

.jp-deepen .icon {
  width: 15px;
  height: 15px;
}

@media (max-width: 860px) {
  .deepen-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .deepen-copy {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
  }

  .deepen-lede {
    margin-inline: auto;
  }

  .deepen-points {
    max-width: 460px;
    margin-inline: auto;
    text-align: left;
  }

  .journal-phone {
    justify-self: center;
  }
}

@media (max-width: 520px) {
  .jp-body {
    padding: 22px 18px 0;
  }

  .jp-question {
    font-size: clamp(1.45rem, 5vw, 1.65rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .jp-dots i,
  .jp-caret {
    animation: none;
  }
}

/* ============================================================
   Veredelungs-Schicht: Film-Grain, Karten-Lichter, Blob-Cameos.
   Ziel: die ruhigen Sektionen entsterilisieren, ohne laut zu werden.
   ============================================================ */

/* Feines Film-Korn über der ganzen Seite — nimmt den Flächen die Härte */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"%3E%3Cfilter id="n"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="2" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23n)"/%3E%3C/svg%3E');
  background-size: 180px 180px;
  opacity: 0.05;
  mix-blend-mode: overlay;
}

/* ——— Karten-Spotlight: ein weiches Licht folgt dem Cursor (JS setzt
   --mx/--my, ohne JS bleibt es mittig). Nur Schmuck, kein Inhalt. ——— */

.principle-card,
.pricing-card,
.maker-card {
  position: relative;
  overflow: hidden;
}

.principle-card::before,
.pricing-card:not(.highlighted)::before,
.maker-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    340px circle at var(--mx, 50%) var(--my, 40%),
    rgba(201, 157, 252, 0.09),
    transparent 72%
  );
  opacity: 0;
  transition: opacity 420ms ease;
}

.principle-card:hover::before,
.pricing-card:not(.highlighted):hover::before,
.maker-card:hover::before {
  opacity: 1;
}

.principle-card > *,
.pricing-card > *,
.maker-card > * {
  position: relative;
  z-index: 1;
}

/* ——— Gradient-Hairlines: feine Lichtkante oben auf den Karten ——— */

.principle-card::after,
.pricing-card::after,
.maker-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--hairline, rgba(201, 157, 252, 0.5)), transparent);
}

.principle-card::after {
  --hairline: color-mix(in srgb, var(--pc, var(--lavender)) 55%, transparent);
}

.pricing-card::after {
  --hairline: rgba(209, 178, 115, 0.45);
}

.pricing-card.highlighted::after {
  --hairline: rgba(255, 255, 255, 0.65);
}

/* Sanfter Lift beim Ueberfahren — nur auf Karten ohne GSAP-Transform
   (eine transform-Transition wuerde laufende Tweens verschmieren). */
.principle-card,
.pricing-card {
  transition: transform 360ms cubic-bezier(0.22, 0.61, 0.36, 1), border-color 360ms ease, box-shadow 360ms ease;
}

.principle-card:hover,
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.22);
}

@keyframes statBlobFloat {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -7px;
  }
}

/* ——— Prinzipien: Akzentfarbe pro Haltung ——— */

.principle-icon {
  color: var(--pc, var(--lavender));
  border-color: color-mix(in srgb, var(--pc, var(--lavender)) 40%, transparent);
  background: color-mix(in srgb, var(--pc, var(--lavender)) 10%, transparent);
  box-shadow: 0 0 28px color-mix(in srgb, var(--pc, var(--lavender)) 18%, transparent);
}

/* ——— Maker: warmes Eck-Licht + Monogramm-Ring ——— */

.maker-card {
  background:
    radial-gradient(520px 260px at 0% 0%, rgba(201, 157, 252, 0.16), transparent 70%),
    linear-gradient(135deg, rgba(201, 157, 252, 0.08), rgba(255, 255, 255, 0.03));
}

.maker-mono {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.28),
    0 0 0 7px color-mix(in srgb, var(--lavender) 16%, transparent),
    0 14px 38px rgba(142, 56, 242, 0.35);
}

/* ——— Pricing: Haekchen statt Punkte, Empfohlen-Badge, Premium-Glow ——— */

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 15px;
  height: 15px;
  border-radius: 0;
  background: var(--gold);
  -webkit-mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"%3E%3Cpath d="M5 14L8.5 17.5L19 6.5" stroke="black" stroke-width="2.6" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E') center / contain no-repeat;
  mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"%3E%3Cpath d="M5 14L8.5 17.5L19 6.5" stroke="black" stroke-width="2.6" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E') center / contain no-repeat;
}

.plan-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--midnight);
  color: var(--lavender);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-card.highlighted {
  box-shadow: 0 26px 90px rgba(142, 56, 242, 0.34);
}

/* ——— App-Store-Finale: die sieben Gefuehle verabschieden sich ——— */

.store-blobs {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 26px;
}

.store-blobs img {
  width: auto;
  height: 40px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.4));
  animation: statBlobFloat 4.6s ease-in-out infinite;
}

.store-blobs img:nth-child(2n) { animation-delay: -1.2s; }
.store-blobs img:nth-child(3n) { animation-delay: -2.3s; }
.store-blobs img:nth-child(5n) { animation-delay: -3.4s; }

/* ——— Footer: Lichtkante statt harter Linie ——— */

.site-footer {
  border-top: 0;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 157, 252, 0.4), transparent);
}

@media (max-width: 760px) {
  .store-blobs {
    gap: 10px;
  }

  .store-blobs img {
    height: 32px;
  }

  .plan-badge {
    top: 18px;
    right: 18px;
  }
}
