/* ============================================================
   CORNER — Waitlist Landingpage
   Schwarz-Weiß · Minimal · Adrenalin
   ============================================================ */

/* Selbst gehostete Fonts — kein Google-Request (Performance + DSGVO) */
@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/anton-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900; /* Variable Font */
  font-display: swap;
  src: url("fonts/inter-var-latin.woff2") format("woff2");
}

:root {
  --black: #0a0a0a;
  --white: #f5f5f3;
  --grey: #8a8a8a;
  --grey-dark: #1c1c1c;
  --line: rgba(245, 245, 243, 0.14);

  --font-display: "Anton", "Arial Black", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --pad-x: clamp(20px, 5vw, 80px);
}

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

html { scroll-behavior: smooth; }

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

::selection { background: var(--white); color: var(--black); }

/* ---------- Utilities ---------- */

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* ---------- Grain / Körnung ---------- */

.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.6s steps(4) infinite;
}

@keyframes grain-shift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-2%, 1%); }
  50%  { transform: translate(1%, -2%); }
  75%  { transform: translate(-1%, 2%); }
  100% { transform: translate(0, 0); }
}

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--black);
  background: var(--white);
  border: 2px solid var(--white);
  padding: 18px 34px;
  cursor: pointer;
  /* --mx/--my: Magnet-Versatz, per JS gesetzt */
  transform: translate3d(var(--mx, 0px), var(--my, 0px), 0);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  background: transparent;
  color: var(--white);
}

.btn:active {
  transform: translate3d(var(--mx, 0px), var(--my, 0px), 0) scale(0.97);
}

.btn:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
}

.btn--small {
  padding: 10px 20px;
  font-size: 12px;
}

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px var(--pad-x);
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.96) 45%,
    rgba(10, 10, 10, 0.6) 75%,
    rgba(10, 10, 10, 0)
  );
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.06em;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
}

.nav__logo:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
}

.nav__dot { color: var(--grey); }

/* ---------- Hero ---------- */

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px var(--pad-x) 100px;
  position: relative;
}

.hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 32px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 11vw, 150px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 40px;
}

.hero__line { display: block; }

.hero__line--outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
  -webkit-text-stroke: clamp(1.1px, 0.02em, 2px) var(--white);
}

.hero__sub {
  max-width: 560px;
  font-size: clamp(16px, 2vw, 19px);
  color: #c9c9c6;
  margin-bottom: 44px;
}

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

.hero__micro {
  margin-top: 20px;
  font-size: 13px;
  color: var(--grey);
  letter-spacing: 0.04em;
}

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

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 22px;
  color: var(--grey);
  animation: bounce 1.6s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 10px); }
}

/* ---------- Waitlist Form ---------- */

.waitlist-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 560px;
  position: relative;
}

.waitlist-form input[type="email"] {
  flex: 1 1 260px;
  background: transparent;
  border: 2px solid var(--line);
  border-color: rgba(245,245,243,0.35);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 18px 20px;
  transition: border-color 0.18s ease;
}

.waitlist-form input[type="email"]::placeholder { color: var(--grey); }

.waitlist-form input[type="email"]:focus {
  outline: none;
  border-color: var(--white);
}

.waitlist-form__status {
  flex-basis: 100%;
  min-height: 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.waitlist-form__status.is-error { color: #d9d9d6; }

.waitlist-form.is-done input,
.waitlist-form.is-done button { display: none; }

.waitlist-form.is-done .waitlist-form__status {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  letter-spacing: 0.08em;
}

/* ---------- Ticker ---------- */

.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 22px 0;
  background: var(--black);
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}

.ticker__track span {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.4vw, 38px);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.ticker__track i {
  font-style: normal;
  color: var(--grey);
  font-size: 20px;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

/* ---------- Sections (generisch) ---------- */

.section {
  padding: clamp(90px, 12vw, 160px) var(--pad-x);
  max-width: 1200px;
  margin: 0 auto;
}

.section__kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 20px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.section__title--small {
  font-size: clamp(30px, 5vw, 56px);
  margin-bottom: 40px;
}

.section__intro {
  max-width: 560px;
  color: #c9c9c6;
  margin-bottom: 64px;
}

/* ---------- Problem-Grid ---------- */

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

@media (min-width: 900px) {
  .problem-grid { grid-template-columns: repeat(3, 1fr); }
}

.problem-card {
  background: var(--black);
  padding: 44px 32px;
  transition: background 0.25s ease;
}

.problem-card:hover { background: var(--grey-dark); }

.problem-card__num {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--grey);
  letter-spacing: 0.2em;
  margin-bottom: 22px;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.problem-card p {
  color: #b5b5b2;
  font-size: 15px;
}

/* ---------- Steps ---------- */

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 48px 40px;
  margin: 64px 0 80px;
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 2px solid var(--white);
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 20px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.step p {
  color: #b5b5b2;
  font-size: 15px;
}

/* ---------- Wochenplan ---------- */

.week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.week__day {
  background: var(--black);
  padding: 22px 8px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.week__day--app { background: var(--white); }
.week__day--app .week__label,
.week__day--app .week__type { color: var(--black); }

.week__day--rest .week__type { color: var(--grey); }

.week__label {
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.week__type {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #d9d9d6;
}

.week__type--gym { color: var(--grey); }

.week__note {
  margin-top: 24px;
  font-size: 14px;
  color: var(--grey);
}

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

/* ---------- Preisanker ---------- */

.price {
  padding: clamp(90px, 12vw, 160px) var(--pad-x);
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.price .section__kicker,
.price .section__title { text-align: center; }

.price__compare {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: clamp(20px, 4vw, 48px);
  margin: 64px 0 36px;
}

.price__box {
  border: 2px solid var(--line);
  padding: 44px 52px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.price__box--new {
  border-color: var(--white);
  background: var(--white);
}

.price__box--new .price__label,
.price__box--new .price__value,
.price__box--new .price__unit { color: var(--black); }

.price__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--grey);
}

.price__value {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 84px);
  line-height: 1;
}

.price__value--strike {
  position: relative;
  color: var(--grey);
}

.price__value--strike::after {
  content: "";
  position: absolute;
  left: -6%;
  top: 50%;
  width: 112%;
  height: 5px;
  background: var(--white);
  transform: rotate(-7deg);
}

.price__unit {
  font-size: 13px;
  color: var(--grey);
  letter-spacing: 0.06em;
}

.price__vs {
  align-self: center;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  color: var(--grey);
  letter-spacing: 0.1em;
}

.price__note {
  color: #c9c9c6;
  font-size: 15px;
}

/* ---------- Final CTA ---------- */

.cta {
  padding: clamp(110px, 15vw, 190px) var(--pad-x);
  text-align: center;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 60% 50% at 50% 60%, rgba(245,245,243,0.06), transparent);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 12vw, 160px);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.cta__title span { display: block; }

.cta__highlight {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
  -webkit-text-stroke: clamp(1.1px, 0.02em, 2px) var(--white);
}

.cta__sub {
  max-width: 480px;
  color: #c9c9c6;
  margin-bottom: 44px;
}

.cta__perks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 34px;
  margin-top: 36px;
  padding: 0;
}

.cta__perks li {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}

.cta__perks li::before {
  content: "×";
  margin-right: 10px;
  color: var(--white);
}

/* ---------- FAQ ---------- */

.section--faq {
  border-top: 1px solid var(--line);
  max-width: 760px;
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq details:first-of-type { border-top: 1px solid var(--line); }

.faq summary {
  font-family: var(--font-display);
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 24px 40px 24px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 0.15s ease;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  color: var(--grey);
  transition: transform 0.2s ease;
}

.faq details[open] summary::after {
  content: "–";
}

.faq summary:hover { color: #c9c9c6; }

.faq summary:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.faq details p {
  padding: 0 0 26px;
  color: #b5b5b2;
  font-size: 15px;
  max-width: 620px;
}

/* ---------- Creator-Programm ---------- */

.creator__highlight {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
  -webkit-text-stroke: clamp(1.1px, 0.02em, 2px) var(--white);
}

.creator__platforms {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  margin: -40px 0 52px;
}

.tiers {
  list-style: none;
  counter-reset: tier;
  border: 1px solid var(--line);
  margin-bottom: 32px;
}

.tier {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.tier:last-child { border-bottom: 0; }

.tier__inner {
  position: relative;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: baseline;
  gap: 8px 32px;
  padding: 26px 28px;
}

/* Invertierte Kopie der Zeile (per JS geklont): weißer Grund, schwarzer
   Text, per clip-path auf Balkenbreite (--fill) beschnitten.
   Safari-sicher — mix-blend-mode fällt dort auf Compositing-Ebenen aus. */
.tier__invert {
  position: absolute;
  inset: 0;
  background: var(--white);
  color: var(--black);
  clip-path: inset(0 calc(100% - var(--fill, 0%)) 0 0);
}

.tier__name {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 40px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}

.tier__views {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tier__reward {
  font-family: var(--font-display);
  font-size: clamp(15px, 2vw, 19px);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: right;
  white-space: nowrap;
}

.creator__note {
  max-width: 560px;
  color: #c9c9c6;
  margin-bottom: 40px;
}

@media (max-width: 720px) {
  .tier__inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "name reward"
      "views views";
    padding: 22px 18px;
  }

  .tier__name { grid-area: name; }

  .tier__reward {
    grid-area: reward;
    /* Nowrap würde auf sehr schmalen Screens (≤360px) aus der
       Zeile laufen und abgeschnitten werden */
    white-space: normal;
    text-align: right;
  }

  .tier__views { grid-area: views; }
}

/* ---------- Footer ---------- */

.footer {
  border-top: 1px solid var(--line);
  padding: 64px var(--pad-x) 44px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer__coming {
  font-size: 13px;
  color: var(--grey);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__nav {
  display: flex;
  gap: 28px;
}

.footer__nav a {
  color: #c9c9c6;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}

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

.footer__copy {
  font-size: 12px;
  color: var(--grey);
  margin-top: 10px;
}

/* ---------- Legal-Seiten ---------- */

.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 160px var(--pad-x) 100px;
}

.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  text-transform: uppercase;
  margin-bottom: 40px;
}

.legal h2 {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 44px 0 14px;
}

.legal p, .legal li {
  color: #c9c9c6;
  font-size: 15px;
  margin-bottom: 12px;
}

.legal a { color: var(--white); }

.legal .todo {
  border: 1px dashed var(--grey);
  padding: 4px 8px;
  color: var(--grey);
}

/* ---------- Mobile ---------- */

@media (max-width: 540px) {
  /* Hero-Titel proportional zur Viewport-Breite — verhindert, dass
     einzelne Zeilen („Wir machen dich") mitten im Satz umbrechen */
  .hero__title { font-size: 11.5vw; }
}

@media (max-width: 720px) {
  .week {
    grid-template-columns: 1fr;
  }

  .week__day {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
  }

  .price__vs { flex-basis: 100%; }

  .price__box { width: 100%; }
}

/* ============================================================
   FX — Effekte & Textspielereien
   Alles scoped auf body.js-fx: die Klasse setzt script.js nur,
   wenn prefers-reduced-motion NICHT aktiv ist. Ohne JS oder mit
   reduzierter Bewegung bleibt die Seite komplett statisch.
   ============================================================ */

/* ---------- Scroll-Fortschritt („Round-Timer") ---------- */

.progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 300;
  pointer-events: none;
}

.progress__bar {
  height: 100%;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: 0 50%;
}

/* ---------- Kamerablitz ---------- */

.flash {
  position: fixed;
  inset: 0;
  background: var(--white);
  opacity: 0;
  pointer-events: none;
  z-index: 250;
}

.flash.is-on {
  animation: flash-pop 0.32s ease-out both;
}

@keyframes flash-pop {
  0%   { opacity: 0; }
  12%  { opacity: 0.85; }
  100% { opacity: 0; }
}

@media (prefers-reduced-motion: no-preference) {

  /* ---------- Hero: Slam-Entrance ---------- */

  body.js-fx .hero__line {
    opacity: 0;
    animation: slam-in 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
    will-change: transform, filter;
  }

  body.js-fx .hero__line:nth-child(1) { animation-delay: 0.10s; }
  body.js-fx .hero__line:nth-child(2) { animation-delay: 0.30s; }
  body.js-fx .hero__line:nth-child(3) { animation-delay: 0.50s; }

  @keyframes slam-in {
    0% {
      opacity: 0;
      transform: translateY(0.45em) scale(1.1);
      filter: blur(10px);
    }
    60% {
      opacity: 1;
      filter: blur(0);
    }
    100% {
      opacity: 1;
      transform: none;
      filter: none;
    }
  }

  body.js-fx .hero__title.fx-shake {
    animation: impact-shake 0.28s linear both;
  }

  @keyframes impact-shake {
    0%, 100% { transform: translate(0, 0); }
    20%      { transform: translate(-4px, 3px); }
    40%      { transform: translate(4px, -3px); }
    60%      { transform: translate(-3px, -2px); }
    80%      { transform: translate(2px, 2px); }
  }

  /* ---------- Ticker: Scroll-Skew ---------- */

  body.js-fx .ticker__skew { will-change: transform; }

  /* ---------- Wochenplan: Kaskade + Hard-Flip ---------- */

  body.js-fx .week .week__day { opacity: 0; }

  body.js-fx .week .week__day:nth-child(1) { --i: 0; }
  body.js-fx .week .week__day:nth-child(2) { --i: 1; }
  body.js-fx .week .week__day:nth-child(3) { --i: 2; }
  body.js-fx .week .week__day:nth-child(4) { --i: 3; }
  body.js-fx .week .week__day:nth-child(5) { --i: 4; }
  body.js-fx .week .week__day:nth-child(6) { --i: 5; }
  body.js-fx .week .week__day:nth-child(7) { --i: 6; }

  body.js-fx .week.is-visible .week__day {
    animation: day-in 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: calc(var(--i) * 90ms);
  }

  @keyframes day-in {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: none; }
  }

  /* App-Tage: erst dunkel, dann harter Flip auf Weiß */
  body.js-fx .week.is-visible .week__day--app {
    animation:
      day-in 0.4s cubic-bezier(0.16, 1, 0.3, 1) both,
      app-flip 0.34s steps(1, end) both;
    animation-delay:
      calc(var(--i) * 90ms),
      calc(var(--i) * 90ms + 0.26s);
  }

  @keyframes app-flip {
    from { background: var(--black); }
    to   { background: var(--white); }
  }

  /* ---------- Preis: Strike zeichnet sich, Stempel ---------- */

  body.js-fx .price__value--strike::after {
    transform: scaleX(0) rotate(-7deg);
    transform-origin: left center;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.4s;
  }

  body.js-fx .price__box--old.is-visible .price__value--strike::after {
    transform: scaleX(1) rotate(-7deg);
  }

  body.js-fx .price__box--new.is-visible {
    animation: stamp-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
  }

  @keyframes stamp-in {
    0%   { opacity: 0; transform: scale(1.25) rotate(2deg); }
    70%  { opacity: 1; transform: scale(0.98) rotate(-0.5deg); }
    100% { opacity: 1; transform: none; }
  }

  /* ---------- CTA: Buchstaben steigen aus der Zeile ---------- */

  body.js-fx .cta__line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.06em; /* Unterlängen von g/y nicht abschneiden */
  }

  body.js-fx .cta__line .fx-letter {
    display: inline-block;
    transform: translateY(120%);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--li) * 30ms);
    will-change: transform;
  }

  body.js-fx .cta.is-in .fx-letter { transform: none; }

  /* ---------- Formular-Erfolg: Punch ---------- */

  body.js-fx .waitlist-form__status.fx-punch {
    animation: punch-in 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  }

  @keyframes punch-in {
    0%   { opacity: 0; transform: scale(1.5); filter: blur(6px); }
    100% { opacity: 1; transform: none; filter: none; }
  }

  /* ---------- Creator: Kaskade + Füllbalken ---------- */

  body.js-fx .tier__inner {
    opacity: 0;
    transform: translateY(14px);
    transition:
      opacity 0.5s ease,
      transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  body.js-fx .tiers.is-visible .tier__inner {
    opacity: 1;
    transform: none;
  }

  body.js-fx .tier__invert {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  }

  body.js-fx .tiers.is-visible .tier__invert {
    clip-path: inset(0 calc(100% - var(--fill, 0%)) 0 0);
  }

  body.js-fx .tiers.is-visible .tier:nth-child(1) .tier__inner { transition-delay: 0.05s; }
  body.js-fx .tiers.is-visible .tier:nth-child(2) .tier__inner { transition-delay: 0.15s; }
  body.js-fx .tiers.is-visible .tier:nth-child(3) .tier__inner { transition-delay: 0.25s; }
  body.js-fx .tiers.is-visible .tier:nth-child(4) .tier__inner { transition-delay: 0.35s; }

  body.js-fx .tiers.is-visible .tier:nth-child(1) .tier__invert { transition-delay: 0.25s; }
  body.js-fx .tiers.is-visible .tier:nth-child(2) .tier__invert { transition-delay: 0.40s; }
  body.js-fx .tiers.is-visible .tier:nth-child(3) .tier__invert { transition-delay: 0.55s; }
  body.js-fx .tiers.is-visible .tier:nth-child(4) .tier__invert {
    transition-delay: 0.70s;
    transition-duration: 1.2s;
  }

} /* Ende prefers-reduced-motion: no-preference */

/* ---------- Reduced Motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .grain,
  .hero__scroll,
  .flash.is-on { animation: none; }

  .ticker__track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
  }

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