/* ============================================================
   janneke.at — One-Pager
   Design-System-Tokens + Seitenstyles in einer Datei
   (bewusst gebündelt: eine Datei = ein Request = schneller am Handy)
   ============================================================ */

/* ============================================================
   FONTS
   ============================================================ */
@font-face {
  font-family: 'Bellamona';
  src: url('../fonts/Bellamona.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Brandon Grotesque';
  src: url('../fonts/BrandonGrotesque-Light.woff') format('woff');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Brandon Grotesque';
  src: url('../fonts/BrandonGrotesque-Regular.woff') format('woff');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Brandon Grotesque';
  src: url('../fonts/BrandonGrotesque-Regular-Italic.woff') format('woff');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Brandon Grotesque';
  src: url('../fonts/BrandonGrotesque-Medium.woff') format('woff');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Brandon Grotesque';
  src: url('../fonts/BrandonGrotesque-Bold.woff') format('woff');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Brandon Grotesque';
  /* Black ist Brandons schwerster Schnitt, deckt 800/900 ab */
  src: url('../fonts/BrandonGrotesque-Black.woff') format('woff');
  font-weight: 800 900; font-style: normal; font-display: swap;
}

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  /* ---- Schriften ---- */
  --font-script: 'Bellamona', cursive;
  --font-sans: 'Brandon Grotesque', system-ui, sans-serif;
  --font-display: var(--font-sans);
  --font-heading: var(--font-sans);
  --font-body: var(--font-sans);
  --font-accent: var(--font-script);

  /* ---- Markenfarben ---- */
  --tangerine: #F5AF33;
  --tiffany:   #99D4C0;
  --plum:      #662261;
  --blush:     #F7D4D0;
  --navy:      #052E5A;
  --fokus:     #DF226C;

  --tangerine-100: #FCE9C2;
  --tangerine-300: #F8CC74;
  --tangerine-700: #D08C12;
  --tiffany-100: #D6EEE5;
  --tiffany-300: #B6E2D2;
  --tiffany-700: #5FA992;
  --blush-100: #FBE8E3;
  --blush-200: #F7D4D0;
  --plum-700: #4A1746;
  --navy-300: #4E6B8C;
  --navy-700: #04203E;
  --fokus-50:  #FCE6EF;
  --fokus-700: #B01451;

  --white: #FFFFFF;
  --cream: #FFF8F1;
  --ash:   #6E7A88;
  --line:  #EAE6E2;

  /* ---- Semantik ---- */
  --bg-page:      var(--white);
  --bg-soft:      var(--cream);
  --text-primary: var(--navy);
  --text-heading: var(--navy);
  --text-accent:  var(--fokus);
  --accent:       var(--fokus);
  --accent-hover: var(--fokus-700);
  --focus-ring:   0 0 0 3px var(--fokus-50), 0 0 0 5px var(--fokus);
  --highlight-warm: var(--tangerine-300);
  --highlight-mint: var(--tiffany-300);
  --highlight-pink: var(--blush-200);

  /* ---- Typo-Skala ---- */
  --text-xs: 0.75rem;
  --text-base: 1rem;
  --text-lg: 1.375rem;
  --text-xl: 1.75rem;
  --text-4xl: 4rem;
  --weight-regular: 400;
  --weight-black: 800;
  --leading-tight: 1.08;
  --leading-snug: 1.25;
  --leading-relaxed: 1.65;
  --tracking-tight: -0.01em;
  --tracking-wider: 0.18em;
  --type-eyebrow-size: var(--text-xs);
  --type-eyebrow-weight: 800;
  --type-eyebrow-tracking: var(--tracking-wider);
  --type-script-size: var(--text-4xl);

  /* ---- Maße ---- */
  --container-lg: 1100px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --radius-pill: 999px;

  /* ---- Schatten ---- */
  --shadow-sm:  0 2px 8px rgba(5, 46, 90, 0.07);
  --shadow-md:  0 10px 28px rgba(5, 46, 90, 0.10);
  --shadow-lg:  0 22px 50px rgba(5, 46, 90, 0.14);
  --shadow-warm: 0 16px 40px rgba(223, 34, 108, 0.16);

  /* ---- Bewegung ---- */
  --ease-out:    cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 140ms;
  --dur-base: 240ms;
  --dur-slow: 420ms;
}

/* ============================================================
   BASIS
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg-page);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: var(--leading-snug);
  margin: 0 0 0.5em;
  text-wrap: balance;
}

p { text-wrap: pretty; }
img { max-width: 100%; }
html { scroll-behavior: smooth; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

/* ---- Marken-Primitives ---- */
.jd-eyebrow {
  font-family: var(--font-sans);
  font-size: var(--type-eyebrow-size);
  font-weight: var(--type-eyebrow-weight);
  letter-spacing: var(--type-eyebrow-tracking);
  text-transform: uppercase;
  color: var(--text-accent);
  display: inline-block;
}

.jd-script {
  font-family: var(--font-accent);
  font-weight: var(--weight-regular);
  font-size: var(--type-script-size);
  line-height: 1;
  color: var(--accent);
}

.jd-mark {
  background-image: linear-gradient(var(--highlight-warm), var(--highlight-warm));
  background-repeat: no-repeat;
  background-position: 0 88%;
  background-size: 100% 42%;
  padding: 0 0.08em;
}

/* ---- Button ---- */
.jd-btn {
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  text-decoration: none;
  border-radius: var(--radius-pill);
  font-size: 15px;
  padding: 13px 26px;
  text-align: center;
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.jd-btn:focus-visible { outline: 2px solid var(--fokus); outline-offset: 3px; }
.jd-btn--lg { font-size: 17px; padding: 16px 34px; }

.jd-btn--primary { background: var(--fokus); color: #fff; box-shadow: var(--shadow-warm); }
.jd-btn--primary:hover { background: var(--fokus-700); color: #fff; transform: translateY(-1px); }
.jd-btn--primary:active { transform: translateY(0) scale(0.98); }

.jd-btn--warm { background: var(--tangerine); color: var(--navy); box-shadow: var(--shadow-sm); }
.jd-btn--warm:hover { background: var(--tangerine-700); color: #fff; transform: translateY(-1px); }
.jd-btn--warm:active { transform: translateY(0) scale(0.98); }

/* ============================================================
   SEITENLAYOUT
   ============================================================ */
.lp { background: var(--bg-page); overflow-x: hidden; }
.lp-sec { padding: clamp(3.5rem, 8vw, 6rem) var(--gutter); }
.lp-sec--soft { background: var(--bg-soft); }
.lp-wrap { max-width: 780px; margin: 0 auto; }
.lp-blockwrap { max-width: 1120px; margin: 0 auto; }
.lp-h2 {
  font-weight: 800; font-size: clamp(2.1rem, 6vw, 3.1rem); line-height: 1.06;
  letter-spacing: -.015em; color: var(--text-heading);
  margin: 0 0 clamp(1.5rem,4vw,2.25rem); text-wrap: balance;
}
.lp-h2 .jd-script { font-size: 1.52em; color: var(--fokus); }
.section-head { margin-bottom: clamp(1.75rem,4vw,2.5rem); }
.section-head .jd-eyebrow { display: block; margin-bottom: 10px; color: var(--fokus); }

/* ---- Fließtext ---- */
.lp-body {
  font-size: clamp(1.24rem, 1.08rem + .7vw, 1.5rem); line-height: 1.65; color: #000;
  max-width: 60ch; margin: 1.15em 0 0; text-wrap: pretty;
}
.lp-body--lead {
  font-size: clamp(1.4rem, 1.15rem + .95vw, 1.78rem); font-weight: 500;
  line-height: 1.45; color: #000; margin-top: 0;
}
.lp-body strong {
  font-weight: 800; color: #000;
  box-shadow: inset 0 -.5em 0 color-mix(in srgb, var(--tangerine) 55%, transparent);
}
.lp-body em { font-style: normal; color: var(--fokus); font-weight: 700; }

/* ---- Scroll-Reveal ---- */
[data-reveal] {
  opacity: 1; transform: none;
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
[data-reveal].is-armed { opacity: 0; transform: translateY(26px); }
[data-reveal].is-armed.is-in { opacity: 1; transform: none; }

/* ============================================================
   HEADER
   ============================================================ */
.lp-head {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--white) 92%, transparent);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--line);
}
.lp-head__bar { display: flex; width: 100%; height: 6px; }
.lp-head__bar span { flex: 1; }
.lp-head__inner {
  max-width: var(--container-lg); margin: 0 auto; padding: 14px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.lp-head__logo { display: block; flex: none; }
.lp-head__logo img { height: clamp(46px, 8vw, 62px); width: auto; display: block; }
.lp-head__cta { flex: none; }
@media (max-width: 560px) { .lp-head__cta { display: none; } }

/* ============================================================
   HERO
   ============================================================ */
.lp-hero {
  position: relative; background: var(--bg-page);
  padding: clamp(2.5rem,6vw,4.5rem) var(--gutter) clamp(2rem,5vw,3.5rem);
  overflow: hidden;
}
.lp-hero::before {
  content: ""; position: absolute; right: -160px; top: -120px;
  width: 520px; height: 520px; background: var(--blush); opacity: .5;
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%; z-index: 0;
}
.lp-hero__grid {
  position: relative; z-index: 1; max-width: var(--container-lg); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: clamp(2.25rem,6vw,3.5rem); align-items: center;
}
.lp-hero__eyebrow { color: var(--fokus); display: inline-block; margin-bottom: 16px; }
.lp-hero__title {
  font-weight: 800; font-size: clamp(2.3rem, 7vw, 4rem); line-height: 1.02;
  letter-spacing: -.02em; color: var(--navy); margin: 0 0 20px; text-wrap: balance;
}
.lp-hero__title .jd-script { font-size: 1.42em; color: var(--fokus); }
.lp-hero__sub {
  display: block; font-size: clamp(1.15rem, 3.4vw, 1.5rem); font-weight: 600;
  line-height: 1.24; margin-top: 14px; color: var(--plum);
}
.lp-hero__lead {
  font-size: clamp(1.24rem, 1.08rem + .7vw, 1.5rem); line-height: 1.55; color: #000;
  max-width: 40ch; margin: 0 0 30px;
}
.lp-hero__cta { display: inline-flex; }
.lp-hero__trust {
  margin: 18px 0 0; font-size: 14.5px; font-weight: 600; color: var(--navy-300);
  display: flex; flex-wrap: wrap; gap: 6px 16px;
}
.lp-hero__trust span { display: inline-flex; align-items: center; gap: 6px; }
.lp-hero__trust svg { width: 16px; height: 16px; color: var(--tiffany-700); }
.lp-hero__media { position: relative; justify-self: center; max-width: 460px; width: 100%; }
.lp-hero__photo {
  position: relative; z-index: 2; margin: 0; background: var(--white);
  padding: 12px 12px 16px; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
  transform: rotate(-2deg); transition: transform var(--dur-base) var(--ease-out);
}
.lp-hero__photo:hover { transform: rotate(0deg); }
.lp-hero__photo img { display: block; width: 100%; height: auto; border-radius: calc(var(--radius-xl) - 8px); }
.lp-hero__media::after {
  content: ""; position: absolute; left: -26px; bottom: -26px; width: 150px; height: 150px;
  background: var(--tiffany); border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%; z-index: 0;
}
@media (min-width: 860px) {
  .lp-hero__grid { grid-template-columns: 1.08fr .92fr; }
  .lp-hero__media { justify-self: end; }
}

/* ---- Scroll-Hinweis ---- */
.lp-scroll {
  position: relative; z-index: 1; display: flex; flex-direction: column;
  align-items: center; gap: 4px; margin: 0 auto;
  padding: 0 0 clamp(1.5rem,4vw,2.5rem);
  color: var(--navy-300); font-size: 13px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
}
.lp-scroll:hover { color: var(--fokus); }
.lp-scroll svg { width: 26px; height: 26px; animation: jd-bob 2s var(--ease-out) infinite; }

/* ============================================================
   TAGESKARTE + REGLER
   ============================================================ */
.daytoggle-wrap {
  position: relative; width: 100%; max-width: 560px;
  margin: clamp(3.5rem,7vw,4.75rem) auto clamp(1.75rem,4vw,2.5rem);
}
.daytoggle-doodle {
  position: absolute; top: -46px; right: 2%; display: flex; align-items: flex-start;
  gap: 2px; pointer-events: none; z-index: 3;
}
.daytoggle-doodle__txt {
  font-family: var(--font-script); font-size: clamp(23px,5.4vw,32px); color: #000;
  transform: rotate(-5deg); white-space: nowrap; line-height: 1;
}
.daytoggle-doodle svg { width: 46px; height: 46px; color: var(--fokus); transform: translateY(4px) rotate(6deg); }
.daytoggle {
  display: flex; align-items: center; gap: 0; position: relative; width: 100%;
  max-width: 560px; margin: 0 auto; background: var(--white);
  border: 2.5px solid var(--navy); border-radius: var(--radius-pill); padding: 6px;
  box-shadow: var(--shadow-md); cursor: pointer; user-select: none;
}
.daytoggle:focus-visible { outline: none; box-shadow: var(--shadow-md), var(--focus-ring); }
.daytoggle__thumb {
  position: absolute; top: 6px; bottom: 6px; left: 6px; width: calc(50% - 6px);
  background: var(--fokus); border-radius: var(--radius-pill); box-shadow: var(--shadow-warm);
  transition: transform .42s var(--ease-bounce), background .3s var(--ease-out);
}
.daytoggle.is-real .daytoggle__thumb {
  transform: translateX(100%); background: var(--tangerine); box-shadow: var(--shadow-md);
}
.daytoggle__opt {
  position: relative; z-index: 1; flex: 1; text-align: center; font-weight: 800;
  font-size: clamp(14px,3.2vw,17px); letter-spacing: .01em; padding: 13px 8px;
  color: var(--navy); transition: color .3s var(--ease-out); white-space: nowrap;
}
.daytoggle:not(.is-real) .daytoggle__opt--plan { color: #fff; }

.daycard {
  position: relative; background: var(--white); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg); padding: clamp(1.4rem,4vw,2.1rem); transform: rotate(-1deg);
  border: 1px solid var(--line);
  transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.daycard.is-real {
  transform: rotate(.6deg);
  box-shadow: var(--shadow-lg), 0 0 0 3px color-mix(in srgb, var(--fokus) 42%, transparent);
}
.daycard__top {
  display: flex; align-items: center; gap: 12px; margin-bottom: 6px;
  padding-bottom: 16px; border-bottom: 1.5px dashed var(--line);
}
.daycard__tab {
  font-weight: 800; font-size: 13px; letter-spacing: .05em; text-transform: uppercase;
  color: var(--plum); background: var(--blush-100); padding: 7px 15px; border-radius: var(--radius-pill);
}
.daycard__state { font-family: var(--font-script); font-size: 27px; color: #000; line-height: 1; }
.daycard__dots { margin-left: auto; display: flex; gap: 6px; }
.daycard__dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.daycard__dots i:nth-child(1) { background: var(--fokus); }
.daycard__dots i:nth-child(2) { background: var(--tangerine); }
.daycard__dots i:nth-child(3) { background: var(--tiffany); }
.daycard__list { list-style: none; margin: 0; padding: 0; }
.daycard__row {
  position: relative; display: grid; grid-template-columns: 48px 26px 1fr;
  align-items: baseline; gap: 12px; padding: 15px 4px;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
  transition: transform var(--dur-slow) var(--ease-out);
}
.daycard__row:last-child { border-bottom: 0; }
.daycard.is-real .daycard__row:nth-child(odd) { transform: translateX(-3px) rotate(-.5deg); }
.daycard.is-real .daycard__row:nth-child(even) { transform: translateX(4px) rotate(.45deg); }
.daycard__time { font-weight: 800; font-size: 13.5px; color: var(--navy-300); letter-spacing: .02em; }
.daycard__check {
  align-self: center; width: 20px; height: 20px; border-radius: 6px;
  border: 2px solid var(--line); display: grid; place-items: center; color: transparent;
  transition: all .3s var(--ease-out);
}
.daycard__check svg { width: 13px; height: 13px; }
.daycard.is-real .daycard__check {
  border-color: var(--fokus); color: var(--fokus);
  background: color-mix(in srgb, var(--fokus) 12%, transparent);
}
.daycard__plan { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 10px; min-width: 0; }
.daycard__plantext {
  font-weight: 600; font-size: 16.5px; color: var(--navy);
  transition: color var(--dur-base), opacity var(--dur-base);
}
.daycard.is-real .daycard__plantext {
  color: var(--ash); text-decoration: line-through; text-decoration-color: var(--fokus);
  text-decoration-thickness: 2px; opacity: .68;
}
.daycard__sticky {
  display: none; flex: none; align-self: center; width: max-content; max-width: 100%;
  font-weight: 700; font-size: 12.5px; line-height: 1.2; padding: 7px 12px;
  border-radius: 4px 13px 13px 13px; box-shadow: var(--shadow-sm); white-space: normal;
}
.daycard.is-real .daycard__sticky { display: block; animation: jd-notepop .42s var(--ease-bounce) both; }
.daycard__sticky--fokus { background: var(--fokus); color: #fff; transform: rotate(2deg); }
.daycard__sticky--warm  { background: var(--tangerine); color: var(--navy); transform: rotate(-2.5deg); }
.daycard__sticky--mint  { background: var(--tiffany); color: var(--navy); transform: rotate(2.5deg); }
.daycard__sticky--blush { background: var(--blush-200); color: var(--plum); transform: rotate(-2deg); }
.daycard__aside {
  margin: 18px 4px 0; padding-top: 16px; border-top: 1.5px dashed var(--line);
  font-weight: 600; font-size: 16px; line-height: 1.45; color: var(--navy);
}
.daycard.is-real .daycard__aside { animation: jd-notepop .42s var(--ease-bounce) .1s both; }

/* ============================================================
   BUSINESS MENTAL LOAD
   ============================================================ */
.lp-load {
  position: relative; overflow: hidden; isolation: isolate; background: var(--navy);
  border-radius: var(--radius-xl);
  padding: clamp(1.9rem,6vw,3.75rem) clamp(1.5rem,5vw,3.25rem); box-shadow: var(--shadow-lg);
}
.lp-load::before {
  content: ""; position: absolute; width: 400px; height: 400px; right: -150px; top: -170px;
  background: var(--fokus); opacity: .22; border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%; z-index: 0;
}
.lp-load::after {
  content: ""; position: absolute; width: 320px; height: 320px; left: -130px; bottom: -160px;
  background: var(--tiffany); opacity: .16; border-radius: 54% 46% 42% 58% / 44% 56% 48% 52%; z-index: 0;
}
.lp-load__inner { position: relative; z-index: 1; }
.lp-load__eyebrow { color: var(--tiffany); display: block; margin-bottom: 12px; }
.lp-load__title {
  font-weight: 800; font-size: clamp(1.9rem,5.4vw,2.85rem); line-height: 1.08;
  color: var(--cream); margin: 0 0 clamp(1.5rem,4vw,2rem); text-wrap: balance;
}
.lp-load__title .jd-script { font-size: 1.46em; color: var(--tangerine); }
.lp-def {
  margin: 0 0 clamp(1.75rem,4vw,2.25rem); border-left: 4px solid var(--tiffany);
  padding: 4px 0 4px 20px;
}
.lp-def span {
  display: block; font-size: clamp(1.2rem,4vw,1.55rem); font-weight: 500;
  font-style: italic; line-height: 1.42; color: var(--cream);
}
.lp-bubbles-wrap { margin: 0 0 clamp(1.75rem,4vw,2.25rem); }
.lp-bubbles-hint {
  display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 15px;
  color: color-mix(in srgb, var(--cream) 82%, transparent); margin: 0 0 16px;
  background: color-mix(in srgb, #fff 8%, transparent); padding: 8px 15px; border-radius: var(--radius-pill);
}
.lp-bubbles-hint .jd-script { font-size: 1.72em; color: var(--tangerine); }
.lp-bubbles-hint svg { width: 18px; height: 18px; color: var(--tangerine); animation: jd-poke 1.8s ease-in-out infinite; }
.lp-bubbles { position: relative; display: flex; flex-wrap: wrap; gap: 16px; }
.lp-bubble {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  text-align: center; font-family: var(--font-sans); font-weight: 700; font-size: 15px;
  line-height: 1.2; padding: 13px 20px; border: none; cursor: pointer; user-select: none;
  border-radius: var(--radius-pill); color: #fff; background: var(--c, var(--fokus));
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.lp-bubble:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.lp-bubble:focus-visible { outline: none; box-shadow: var(--shadow-sm), var(--focus-ring); }
.lp-bubble--fokus     { --c: var(--fokus); color: #fff; }
.lp-bubble--tangerine { --c: var(--tangerine); color: var(--navy); }
.lp-bubble--tiffany   { --c: var(--tiffany); color: var(--navy); }
.lp-bubble--plum      { --c: #9a4d93; color: #fff; }
.lp-bubble--blush     { --c: var(--blush); color: var(--plum); }
.lp-bubble.is-popped { animation: jd-burst .5s var(--ease-out) forwards; pointer-events: none; }
.lp-bubble.is-popped::after {
  content: ""; position: absolute; inset: -8px; border-radius: inherit;
  border: 3px solid rgba(255,255,255,.7); animation: jd-ring .5s var(--ease-out) forwards;
}
.lp-cursor { position: absolute; left: 96px; top: 46px; z-index: 4; pointer-events: none; animation: jd-tap 1.9s var(--ease-out) infinite; }
.lp-cursor svg { width: 34px; height: 34px; filter: drop-shadow(0 3px 5px rgba(5,46,90,.4)); }
.lp-load__done { margin: 4px 0 16px; }
.lp-load__done .jd-script { font-size: 3rem; color: var(--tiffany); }
.lp-load__body {
  font-size: clamp(1.24rem, 1.1rem + .6vw, 1.5rem); line-height: 1.65; color: var(--cream);
  margin: 0 0 28px; max-width: 54ch;
}
.lp-load__body strong {
  color: var(--cream); font-weight: 800;
  box-shadow: inset 0 -.5em 0 color-mix(in srgb, var(--fokus) 55%, transparent);
}
.lp-load__cta { display: inline-flex; }

/* ============================================================
   ÜBER MICH
   ============================================================ */
.lp-about {
  display: grid; grid-template-columns: 1fr; gap: clamp(2rem,6vw,3.25rem);
  align-items: center; max-width: 960px;
}
.lp-about__media { position: relative; max-width: 420px; }
.lp-about__photo {
  position: relative; margin: 0; background: var(--white); padding: 12px 12px 16px;
  border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); transform: rotate(-2deg); z-index: 1;
}
.lp-about__photo img { display: block; width: 100%; height: auto; border-radius: calc(var(--radius-xl) - 8px); }
.lp-about__media::after {
  content: ""; position: absolute; right: -24px; bottom: -24px; width: 130px; height: 130px;
  background: var(--tangerine); border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%; z-index: 0;
}
.lp-about__text .jd-eyebrow { display: block; margin-bottom: 16px; color: var(--fokus); }
.lp-about__text p { font-size: clamp(1.3rem, 1.14rem + .7vw, 1.6rem); line-height: 1.62; color: #000; margin: 0; }
.lp-about__text .plum { color: var(--plum); font-weight: 800; }
@media (min-width: 780px) {
  .lp-about { grid-template-columns: 1.15fr 0.95fr; }
  .lp-about__media { max-width: none; }
}

/* ============================================================
   FREEBIES
   ============================================================ */
.lp-cards { display: grid; grid-template-columns: 1fr; gap: 24px; }
.freebie {
  display: flex; flex-direction: column; background: var(--white); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md); overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.freebie:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.freebie__stage { position: relative; height: 230px; display: grid; place-items: center; padding: 22px 22px 0; overflow: hidden; }
.freebie--blush .freebie__stage { background: var(--blush-100); }
.freebie--warm .freebie__stage { background: var(--tangerine-100); }
.freebie__img {
  max-width: 84%; max-height: 240px; object-fit: contain;
  filter: drop-shadow(0 16px 26px rgba(5,46,90,.18)); transform: translateY(8px);
  transition: transform var(--dur-base) var(--ease-out);
}
.freebie:hover .freebie__img { transform: translateY(0) scale(1.02); }
.freebie__stamp {
  position: absolute; top: 16px; right: 16px; z-index: 2; display: grid; place-items: center;
  width: 68px; height: 68px; border-radius: 50%; background: var(--fokus); color: #fff;
  font-weight: 800; font-size: 14px; text-align: center; transform: rotate(8deg);
  box-shadow: var(--shadow-warm); line-height: 1.05;
}
.freebie__body { padding: clamp(1.25rem,4vw,1.6rem); display: flex; flex-direction: column; flex: 1; }
.freebie__title { font-weight: 800; font-size: var(--text-xl); color: var(--text-heading); margin: 0 0 10px; line-height: 1.12; }
.freebie__text { color: #000; margin: 0 0 20px; font-size: clamp(1.14rem, 1.02rem + .5vw, 1.32rem); line-height: 1.55; }
.freebie__cta { margin-top: auto; align-self: flex-start; }
.freebie__cta svg { width: 17px; height: 17px; }

/* ============================================================
   PODCAST / BLOG
   ============================================================ */
.lp-media-stack { display: flex; flex-direction: column; gap: 26px; }
.pcard {
  position: relative; display: grid; grid-template-columns: 1fr; background: var(--white);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-md); overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pcard__art {
  position: relative; overflow: hidden; min-height: 210px; display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start; gap: 18px; padding: clamp(1.6rem,4vw,2.4rem);
}
.pcard--pod .pcard__art { background: var(--fokus); }
.pcard--blog .pcard__art { background: var(--tangerine); }
.pcard__playbtn {
  display: inline-grid; place-items: center; width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--fokus); box-shadow: var(--shadow-md); flex: none;
}
.pcard__playbtn svg { width: 26px; height: 26px; margin-left: 3px; }
.pcard__wave { display: flex; align-items: flex-end; gap: 4px; height: 46px; width: 100%; max-width: 320px; }
.pcard__wave i { flex: 1; background: rgba(255,255,255,.68); border-radius: 3px; }
.pcard__badge {
  align-self: flex-start; font-family: var(--font-script); font-size: 27px; color: #000;
  background: var(--cream); padding: 4px 16px 7px; border-radius: var(--radius-pill);
  transform: rotate(-3deg); box-shadow: var(--shadow-sm);
}
.pcard--blog .pcard__badge { color: var(--navy); }
.pcard__glyph { font-family: var(--font-script); font-size: clamp(3rem,9vw,5rem); color: rgba(255,255,255,.9); line-height: .9; }
.pcard__glyph small {
  display: block; font-family: var(--font-sans); font-weight: 800; font-size: 13px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--navy); margin-top: 8px;
}
.pcard__body { padding: clamp(1.5rem,4vw,2.25rem); display: flex; flex-direction: column; }
.pcard__label { font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--fokus); margin-bottom: 8px; }
.pcard--blog .pcard__label { color: var(--tangerine-700); }
.pcard__title { font-weight: 800; font-size: clamp(1.4rem,4vw,1.9rem); color: var(--text-heading); margin: 0 0 10px; line-height: 1.1; }
.pcard__title .jd-script { color: var(--fokus); font-size: 1.32em; }
.pcard__text { color: #000; font-size: clamp(1.14rem, 1.02rem + .5vw, 1.32rem); line-height: 1.55; margin: 0 0 20px; }
.eplist { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; }
.eplist li { border-top: 1px solid var(--line); }
.eplist li:last-child { border-bottom: 1px solid var(--line); }
.eplist a {
  display: flex; align-items: center; gap: 14px; padding: 14px 4px; color: inherit;
  transition: background var(--dur-base) var(--ease-out);
}
.eplist a:hover { background: color-mix(in srgb, var(--blush-100) 60%, transparent); color: inherit; }
.eplist a:hover .eplist__t { color: var(--fokus); }
.eplist__ic {
  flex: none; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--blush-100); color: var(--fokus);
}
.eplist__ic svg { width: 17px; height: 17px; margin-left: 2px; }
.pcard--blog .eplist__ic { background: var(--tangerine-100); color: var(--plum); border-radius: 12px; }
.pcard--blog .eplist__ic svg { margin-left: 0; }
.eplist__meta { min-width: 0; flex: 1; }
.eplist__tag { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--plum); }
.eplist__t { display: block; font-weight: 700; font-size: 18px; color: #000; line-height: 1.3; transition: color var(--dur-base) var(--ease-out); }
.eplist__d { flex: none; font-size: 15px; font-weight: 700; color: #000; }
.pcard__cta { align-self: flex-start; margin-top: auto; }
.pcard__hint { margin: 0 0 12px; font-size: 15px; font-weight: 700; color: var(--navy-300); }
.pcard__platforms { display: flex; flex-wrap: wrap; gap: 12px; margin-top: auto; }
.pcard__plat {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-weight: 800; font-size: 15px; color: var(--navy);
  background: var(--white); border: 2px solid var(--line); border-radius: var(--radius-pill);
  padding: 12px 22px; text-decoration: none; box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.pcard__plat:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--navy); color: var(--navy); }
.pcard__plat:focus-visible { outline: none; box-shadow: var(--shadow-sm), var(--focus-ring); }
.pcard__plat svg { width: 22px; height: 22px; flex: none; }
@media (min-width: 720px) {
  .pcard--pod  { grid-template-columns: .82fr 1.18fr; }
  .pcard--blog { grid-template-columns: 1.18fr .82fr; }
  .pcard--blog .pcard__art  { order: 2; }
  .pcard--blog .pcard__body { order: 1; }
}

/* ============================================================
   WARTELISTE
   ============================================================ */
.lp-wait {
  position: relative; overflow: hidden; isolation: isolate; background: var(--plum);
  border-radius: var(--radius-xl); padding: clamp(2rem,6vw,3.5rem) clamp(1.5rem,5vw,3.25rem);
  box-shadow: var(--shadow-lg);
}
.lp-wait::before {
  content: ""; position: absolute; width: 320px; height: 320px; left: -130px; top: -150px;
  background: var(--tiffany); opacity: .16; border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
}
.lp-wait::after {
  content: ""; position: absolute; width: 280px; height: 280px; right: -120px; bottom: -140px;
  background: var(--tangerine); opacity: .2; border-radius: 54% 46% 42% 58% / 44% 56% 48% 52%;
}
.lp-wait__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: clamp(2rem,5vw,3rem); align-items: center; }
.lp-wait__eyebrow { color: var(--tiffany); display: block; margin-bottom: 12px; }
.lp-wait__title {
  font-weight: 800; font-size: clamp(1.9rem,5.4vw,2.85rem); line-height: 1.08;
  color: var(--cream); margin: 0 0 18px; text-wrap: balance;
}
.lp-wait__title .jd-script { font-size: 1.46em; color: var(--tangerine); }
.lp-wait__text { font-size: clamp(1.22rem, 1.08rem + .6vw, 1.42rem); line-height: 1.58; color: var(--cream); margin: 0 0 26px; max-width: 46ch; }
.lp-wait__cta { display: inline-flex; }
.lp-wait__note { margin: 14px 0 0; font-size: 15px; font-weight: 600; color: color-mix(in srgb, var(--cream) 82%, transparent); max-width: 42ch; }

/* ---- Warteliste-Formular ---- */
.lp-wait__form { display: flex; flex-direction: column; gap: 12px; max-width: 430px; margin: 4px 0 0; }
/* display:flex sticht das hidden-Attribut aus, deshalb hier explizit ausblenden */
.lp-wait__form[hidden], .lp-wait__thanks[hidden] { display: none; }
.lp-wait__field { position: relative; }
.lp-wait__field label {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
}
.lp-wait__input {
  width: 100%; font-family: var(--font-sans); font-size: 16px; font-weight: 500;
  color: var(--navy); background: var(--white); border: 2px solid transparent;
  border-radius: var(--radius-pill); padding: 15px 22px; box-shadow: var(--shadow-sm);
  -webkit-appearance: none; appearance: none;
}
.lp-wait__input::placeholder { color: var(--navy-300); }
.lp-wait__input:focus {
  outline: none; border-color: var(--tangerine);
  box-shadow: var(--shadow-sm), 0 0 0 3px color-mix(in srgb, var(--tangerine) 45%, transparent);
}
.lp-wait__submit { width: 100%; margin-top: 4px; }

.lp-wait__thanks {
  max-width: 460px; margin: 4px 0 0; padding: 22px 24px;
  background: color-mix(in srgb, #fff 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--tiffany) 55%, transparent);
  border-radius: var(--radius-lg);
}
.lp-wait__thanks:focus { outline: none; }
.lp-wait__thanks-title { margin: 0 0 6px; }
.lp-wait__thanks-title .jd-script { font-size: 2.4rem; color: var(--tiffany); }
.lp-wait__thanks-text { margin: 0; font-size: 16.5px; line-height: 1.55; color: var(--cream); }
.lp-wait__media { position: relative; }
.lp-wait__media::before {
  content: ""; position: absolute; inset: -6% -4%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.28), rgba(255,255,255,0) 66%); z-index: 0;
}
.lp-wait__media img { position: relative; z-index: 1; display: block; width: 100%; height: auto; filter: drop-shadow(0 24px 40px rgba(5,46,90,.4)); }
@media (min-width: 820px) { .lp-wait__grid { grid-template-columns: .92fr 1.08fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.lp-footer { background: var(--navy-700); color: var(--cream); }
.lp-footer__bar { display: flex; width: 100%; height: 10px; }
.lp-footer__bar span { flex: 1; }
.lp-footer__inner { max-width: 720px; margin: 0 auto; padding: clamp(2.5rem,6vw,3.5rem) var(--gutter) 2.5rem; text-align: center; }
.lp-footer__logo { height: 62px; width: auto; display: block; margin: 0 auto 22px; }
.lp-footer__links { display: flex; flex-wrap: wrap; gap: 8px 26px; justify-content: center; margin-bottom: 16px; }
.lp-footer__links a { color: color-mix(in srgb, var(--cream) 82%, transparent); font-size: 14px; font-weight: 600; text-decoration: none; }
.lp-footer__links a:hover { color: var(--cream); }
.lp-footer__copy { margin: 0; font-size: 13px; color: color-mix(in srgb, var(--cream) 55%, transparent); }

/* ============================================================
   ANIMATIONEN
   ============================================================ */
@keyframes jd-notepop { from { opacity: 0; transform: translateY(9px) scale(.92); } to { opacity: 1; } }
@keyframes jd-burst { 0% { transform: scale(1); opacity: 1; } 42% { transform: scale(1.16); opacity: .9; } 100% { transform: scale(.15); opacity: 0; } }
@keyframes jd-ring { 0% { transform: scale(.8); opacity: .8; } 100% { transform: scale(1.7); opacity: 0; } }
@keyframes jd-tap { 0%,72%,100% { transform: translate(0,0); } 80% { transform: translate(-5px,-6px); } 86% { transform: translate(0,0); } }
@keyframes jd-poke { 0%,100% { transform: translateX(0); } 50% { transform: translateX(4px); } }
@keyframes jd-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

@media (min-width: 620px) { .lp-cards { grid-template-columns: 1fr 1fr; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .lp-bubble, .daycard__sticky, .daycard__aside, .lp-cursor,
  .lp-bubbles-hint svg, .lp-scroll svg { animation: none; }
}
