/* =========================================================
   FYNAXA v2 — Block-Cinema Premium
   Off-Black + Burnt Orange + Cream
   Switzer Sans Display (kein Italic, straff & modern)
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body { line-height: 1.5; -webkit-font-smoothing: antialiased; }
img, picture, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
em, i { font-style: normal; }

/* =========================================================
   SS-MODE (Screenshot-Mode) — flatten layout for full-page capture
   ========================================================= */
html.ss-mode .scene {
  height: 900px !important;
  min-height: 900px !important;
  max-height: 900px !important;
}
html.ss-mode .scene--pakete {
  height: 1800px !important;
  min-height: 1800px !important;
  max-height: 1800px !important;
}
html.ss-mode .scene__inner {
  opacity: 1 !important;
  transform: none !important;
}
html.ss-mode .hero__inner,
html.ss-mode .statement__inner,
html.ss-mode .roi__inner,
html.ss-mode .founder__inner,
html.ss-mode .kontakt__inner {
  height: 900px !important;
  min-height: 900px !important;
  max-height: 900px !important;
  padding-top: calc(var(--nav-h) + 24px) !important;
  padding-bottom: 24px !important;
}
html.ss-mode .pakete__head {
  height: 900px !important;
  min-height: 900px !important;
}
html.ss-mode .pakete__track-wrap {
  height: 900px !important;
  min-height: 900px !important;
}
html.ss-mode .hero__scroll-cue {
  display: none !important;
}

/* =========================================================
   UPPERCASE — alle Display/Title/Label/CTA Elemente
   Body-Paragraphs bleiben sentence case (Lesbarkeit)
   ========================================================= */
.nav__brand,
.nav__cta,
.hero__display,
.statement__display,
.statement__eyebrow,
.roi__display,
.roi__eyebrow,
.roi__slider-head label,
.roi__output-label,
.pakete__display,
.pakete__eyebrow,
.pakete__cue,
.tier__name,
.tier__price,
.tier__flag,
.tier__cta,
.founder__quote,
.founder__eyebrow,
.founder__author,
.workflow__caption,
.kontakt__display,
.kontakt__eyebrow,
.kontakt__sub,
.kontakt__cta-primary,
.kontakt__channels a,
.footer__definition,
.footer__col-label,
.footer__logo,
.hero__scroll-cue,
.btn {
  text-transform: uppercase;
}

/* =========================================================
   TOKENS
   ========================================================= */
:root {
  /* Foundation */
  --black:        #0A0A0F;
  --black-deep:   #000000;
  --black-soft:   #14141A;
  --black-text:   #14110D;

  /* Brand Accents */
  --orange:       #FF6B35;
  --orange-deep:  #E04E1F;
  --orange-soft:  rgba(255, 107, 53, 0.12);
  --yellow:       #FFD15C;
  --coral:        #FF6B5A;

  /* Editorial */
  --cream:        #F5F0E8;
  --cream-warm:   #EBE5D5;
  --cream-deep:   #DDD4BD;

  /* Text on dark */
  --ink:          #F8F9FC;
  --ink-mute:     rgba(248, 249, 252, 0.62);
  --ink-soft:     rgba(248, 249, 252, 0.36);
  --ink-faint:    rgba(248, 249, 252, 0.14);

  /* Text on cream */
  --dark-mute:    rgba(20, 17, 13, 0.62);
  --dark-soft:    rgba(20, 17, 13, 0.36);
  --dark-line:    rgba(20, 17, 13, 0.10);

  /* Type */
  --font-display: 'Switzer', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container:    1440px;
  --pad-x:        56px;
  --nav-h:        72px;

  /* Easings */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

@media (max-width: 1024px) {
  :root { --pad-x: 32px; }
}
@media (max-width: 640px) {
  :root { --pad-x: 20px; }
}

body {
  background: var(--black);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}

html[data-loading="true"] { overflow: hidden; }
html[data-loading="true"] body { overflow: hidden; }

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  display: inline-flex;
  vertical-align: middle;
}

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

/* Hide native cursor on devices with mouse */
@media (hover: hover) and (pointer: fine) {
  body, a, button, [role="button"] {
    cursor: none;
  }
  input[type="range"] {
    cursor: none;
  }
}

/* =========================================================
   PAGE LOADER
   ========================================================= */
.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--black);
  display: grid;
  place-items: center;
  pointer-events: none;
  transition: opacity 0.8s var(--ease-out);
}

.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.loader__logo {
  width: min(28vw, 140px);
  height: auto;
  animation: logo-spin 3.6s linear infinite;
  transform-origin: center;
  transform-style: preserve-3d;
}

@keyframes logo-spin {
  0%   { transform: perspective(600px) rotateY(0deg); }
  100% { transform: perspective(600px) rotateY(360deg); }
}

.loader__bar-wrap {
  width: min(50vw, 280px);
  height: 2px;
  background: rgba(255, 107, 53, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.loader__bar {
  height: 100%;
  width: 0%;
  background: var(--orange);
  border-radius: 2px;
  transition: width 0.12s ease;
}

.loader.is-gone {
  opacity: 0;
  pointer-events: none;
}

/* =========================================================
   CUSTOM CURSOR
   ========================================================= */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  pointer-events: none;
  mix-blend-mode: difference;
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .cursor { display: block; }
}

.cursor__dot {
  position: absolute;
  top: -3px;
  left: -3px;
  width: 6px;
  height: 6px;
  background: var(--cream);
  border-radius: 50%;
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.cursor__ring {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--cream);
  border-radius: 50%;
  opacity: 0.4;
  transition: width 0.35s var(--ease-out),
              height 0.35s var(--ease-out),
              top 0.35s var(--ease-out),
              left 0.35s var(--ease-out),
              border-color 0.25s var(--ease-out),
              background 0.25s var(--ease-out),
              opacity 0.25s var(--ease-out);
}

.cursor__label {
  position: absolute;
  top: -10px;
  left: -50px;
  width: 100px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  transition: opacity 0.25s var(--ease-out);
  pointer-events: none;
  white-space: nowrap;
}

.cursor.is-hover .cursor__ring {
  top: -28px;
  left: -28px;
  width: 56px;
  height: 56px;
  opacity: 0.9;
  background: var(--orange-soft);
  border-color: var(--orange);
}

.cursor.is-hover .cursor__dot {
  opacity: 0;
}

.cursor.has-label .cursor__label {
  opacity: 1;
}

.cursor.is-drag .cursor__ring {
  top: -10px;
  left: -22px;
  width: 44px;
  height: 20px;
  border-radius: 999px;
  background: var(--orange);
  border-color: var(--orange);
  opacity: 1;
}
.cursor.is-drag .cursor__dot { opacity: 0; }

.cursor.is-hidden .cursor__dot,
.cursor.is-hidden .cursor__ring {
  opacity: 0;
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  z-index: 100;
  pointer-events: none;
}
.nav > * { pointer-events: auto; }

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--ink);
  mix-blend-mode: difference;
}

.nav__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.18);
  animation: pulse 2.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.18); }
  50%      { box-shadow: 0 0 0 12px rgba(255, 107, 53, 0.04); }
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--orange);
  color: var(--black);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: background 0.25s var(--ease-out);
}
.nav__cta:hover { background: var(--orange-deep); }
.nav__cta .material-symbols-outlined { font-size: 18px; }

/* =========================================================
   SECTION WORDMARK — repeating "FYNAXA" als 3D-BG-Pattern
   ========================================================= */
.scene__wordmark {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  pointer-events: none;
  overflow: hidden;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.scene__wordmark {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  /* Fixed gap statt space-around → gleichmäßige Abstände zwischen
     allen FYNAXA-Zeilen, unabhängig von Section-Höhe */
  justify-content: flex-start;
  align-items: stretch;
  gap: 28px;
  padding: 20px 0;
  /* Fade-Mask an den Rändern: links und rechts verschwindet das Pattern weich */
  mask-image: linear-gradient(to right,
              transparent 0%,
              black 8%,
              black 92%,
              transparent 100%);
  -webkit-mask-image: linear-gradient(to right,
              transparent 0%,
              black 8%,
              black 92%,
              transparent 100%);
}

.wordmark-row {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(60px, 8.5vw, 130px);
  line-height: 1;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
  overflow: hidden;
  display: block;
  width: 100%;
  /* WICHTIG: flex-shrink:0 verhindert dass Flex die Row-Höhe unter die
     natürliche Texthöhe quetscht — sonst werden FYNAXA-Letter vertikal halb
     abgeschnitten (User-Feedback: "halbes F, Y, N, A, X, A"). */
  flex-shrink: 0;
  flex-grow: 0;
}

/* Inner span trägt das doppelt-repeatete FYNAXA und animiert horizontal.
   translateX(-50%) loopt nahtlos weil Content × 40 = gerade Wiederholung. */
.wordmark-row__inner {
  display: inline-block;
  will-change: transform;
  animation: wordmark-marquee 80s linear infinite;
}

@keyframes wordmark-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* Variation pro Row: unterschiedliche Speeds + Richtungen → lebendigeres Pattern */
.wordmark-row:nth-child(1) .wordmark-row__inner { animation-duration: 90s; }
.wordmark-row:nth-child(2) .wordmark-row__inner { animation-duration: 70s; animation-direction: reverse; }
.wordmark-row:nth-child(3) .wordmark-row__inner { animation-duration: 110s; }
.wordmark-row:nth-child(4) .wordmark-row__inner { animation-duration: 60s; animation-direction: reverse; }
.wordmark-row:nth-child(5) .wordmark-row__inner { animation-duration: 100s; }
.wordmark-row:nth-child(6) .wordmark-row__inner { animation-duration: 80s; animation-direction: reverse; }

.wordmark-row { opacity: 0.07; }
.wordmark-row:nth-child(odd) { opacity: 0.05; font-weight: 700; }
.wordmark-row:nth-child(3n) { opacity: 0.085; }

/* Per-section colors — wordmark uses contrasting color to section BG */
.scene[data-bg="black"]  .wordmark-row { color: var(--orange); }
.scene[data-bg="orange"] .wordmark-row { color: var(--black); }
.scene[data-bg="cream"]  .wordmark-row { color: var(--orange); }

/* High-contrast sections (orange-bg, cream-bg): jetzt deutlich präsenter,
   damit das Marquee-Pattern auf der ganzen Seite sichtbar ist (User-Wunsch:
   "der sollte auf der ganzen Seite sein, so wie im oberen Teil von Sektion 3") */
.scene[data-bg="orange"] .wordmark-row { opacity: 0.055; }
.scene[data-bg="orange"] .wordmark-row:nth-child(odd) { opacity: 0.042; }
.scene[data-bg="orange"] .wordmark-row:nth-child(3n) { opacity: 0.07; }

.scene[data-bg="cream"] .wordmark-row { opacity: 0.075; }
.scene[data-bg="cream"] .wordmark-row:nth-child(odd) { opacity: 0.06; }
.scene[data-bg="cream"] .wordmark-row:nth-child(3n) { opacity: 0.09; }

/* Hero: orange auf schwarz, kann etwas mehr Opacity vertragen */
.scene--hero .wordmark-row { opacity: 0.06; }
.scene--hero .wordmark-row:nth-child(odd) { opacity: 0.045; }
.scene--hero .wordmark-row:nth-child(3n) { opacity: 0.08; }

/* Reduced-motion: keine Marquee */
@media (prefers-reduced-motion: reduce) {
  .wordmark-row__inner { animation: none !important; }
}

/* Pakete is 200vh — wordmark spans entire section */
.scene--pakete .scene__wordmark {
  justify-content: flex-start;
  padding-top: 8vh;
  gap: 20px;
}

/* =========================================================
   SCENE BASE
   ========================================================= */
.scene {
  position: relative;
  min-height: 100vh;
  /* height NICHT mehr fix 100vh → Content kann bei Bedarf wachsen,
     wird nicht mehr von der nächsten Section überlagert */
  width: 100%;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.scene__inner {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 40px) var(--pad-x) 56px;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

/* =========================================================
   SECTION-WIPE-IN: per-section reveal animation
   Each section's inner content slides in from a defined direction
   ========================================================= */
.scene__inner {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
}
.scene.is-in .scene__inner {
  opacity: 1;
  transform: none;
}

.scene[data-anim="slide-right"] .scene__inner {
  transform: translateX(-100px);
}
.scene[data-anim="slide-right"].is-in .scene__inner {
  transform: none;
}

.scene[data-anim="slide-left"] .scene__inner {
  transform: translateX(100px);
}
.scene[data-anim="slide-left"].is-in .scene__inner {
  transform: none;
}

.scene[data-anim="zoom"] .scene__inner {
  transform: scale(0.94);
}
.scene[data-anim="zoom"].is-in .scene__inner {
  transform: none;
}

.scene[data-anim="none"] .scene__inner,
.scene--hero .scene__inner {
  opacity: 1;
  transform: none;
}

/* BG variants */
.scene[data-bg="black"]  { background: var(--black); color: var(--ink); }
.scene[data-bg="orange"] { background: var(--orange); color: var(--black-text); }
.scene[data-bg="cream"]  { background: var(--cream); color: var(--black-text); }

/* =========================================================
   SECTION 1 — HERO
   ========================================================= */
.scene--hero {
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(255, 107, 53, 0.18), transparent 65%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(255, 209, 92, 0.08), transparent 60%),
    var(--black);
}

.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero__inner {
  padding-top: calc(var(--nav-h) + 24px);
  padding-bottom: 24px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  padding: 10px 18px;
  border: 1px solid var(--ink-faint);
  border-radius: 999px;
  background: rgba(10, 10, 15, 0.4);
  backdrop-filter: blur(8px);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-mute);
  margin-bottom: auto;
}

.hero__eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
  animation: pulse 2.5s ease-in-out infinite;
}

.hero__display {
  font-family: var(--font-display);
  font-weight: 600;
  /* Etwas kleiner als vorher (war 13vw, 200px) damit Hero-Content
     (4 Zeilen + Lede + CTA + Scroll-Cue) in 100vh passt */
  font-size: clamp(64px, 10vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--ink);
  text-align: left;
}

.hero__display .line {
  display: block;
  overflow: hidden;
}

.hero__display .word {
  display: inline-block;
  font-style: normal;
  font-weight: 400;
}

.hero__display .word--accent {
  color: var(--orange);
}

.hero__bottom {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: end;
  width: 100%;
}

@media (max-width: 900px) {
  .hero__bottom { grid-template-columns: 1fr; gap: 24px; }
}

.hero__lede {
  font-family: var(--font-body);
  font-size: clamp(13px, 1vw, 16px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--ink-mute);
  max-width: 60ch;
}

.hero__actions {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .hero__actions { justify-content: flex-start; }
}

.hero__scroll-cue {
  position: absolute;
  bottom: 20px;
  right: var(--pad-x);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.hero__scroll-cue .material-symbols-outlined {
  font-size: 18px;
  animation: bob 2.2s ease-in-out infinite;
}

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

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 22px 36px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: background 0.25s var(--ease-out);
  will-change: transform;
}

.btn--primary {
  background: var(--orange);
  color: var(--black);
  font-weight: 600;
}
.btn--primary:hover { background: var(--orange-deep); }
.btn--primary .material-symbols-outlined { font-size: 22px; }

/* =========================================================
   SECTION 2 — STATEMENT
   ========================================================= */
.scene--statement {
  background: var(--orange);
  color: var(--black-text);
}

.statement__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: calc(var(--nav-h) + 24px) var(--pad-x) 32px;
  min-height: 100vh;
}

.statement__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(20, 17, 13, 0.6);
  align-self: flex-start;
}

.statement__display {
  font-family: var(--font-display);
  font-weight: 600;
  /* War 19vw/320px — zu groß, überdeckt Viewport-Breite und kollidiert mit Wordmark */
  font-size: clamp(96px, 14vw, 220px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--black-text);
  margin: auto 0;
  text-align: left;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.statement__display .line {
  display: block;
  overflow: hidden;
}

.statement__display .word { display: inline-block; font-weight: 600; }

.statement__sub {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black-text);
  max-width: 50ch;
}

/* =========================================================
   SECTION 3 — ROI-CALCULATOR (cream BG)
   ========================================================= */
.scene--roi {
  /* background dictated by data-bg="cream" */
}

.scene--roi .roi__sub,
.scene--roi .roi__slider-head label,
.scene--roi .roi__slider-scale,
.scene--roi .roi__output-label {
  color: var(--dark-mute);
}

.scene--roi .roi__range {
  background: rgba(20, 17, 13, 0.18);
  height: 6px;
}

.scene--roi .roi__range::-webkit-slider-thumb {
  box-shadow: 0 0 0 6px rgba(255, 107, 53, 0.22), 0 2px 8px rgba(20, 17, 13, 0.18);
}

.scene--roi .roi__outputs {
  border-top: 1px solid var(--dark-line);
}

.scene--roi .roi__output-num {
  color: var(--black-text);
}

.roi__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  padding: calc(var(--nav-h) + 24px) var(--pad-x) 32px;
  min-height: 100vh;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .roi__inner { grid-template-columns: 1fr; gap: 40px; }
}

.roi__head {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.roi__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}

.roi__display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(64px, 9vw, 150px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: auto 0 24px;
  text-align: left;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.roi__display .line {
  display: block;
  overflow: hidden;
}

.roi__display em {
  font-weight: 600;
  color: var(--orange);
  font-style: normal;
}

.roi__sub {
  font-family: var(--font-body);
  font-size: clamp(13px, 1vw, 16px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  max-width: 42ch;
}

.roi__tool {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
}

.roi__sliders {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.roi__slider-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}

.roi__slider-head label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.roi__slider-value {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 36px;
  color: var(--orange);
  letter-spacing: -0.02em;
  }

.roi__range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--ink-faint);
  border-radius: 999px;
  outline: none;
}

.roi__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: var(--orange);
  border-radius: 50%;
  cursor: none;
  box-shadow: 0 0 0 6px rgba(255, 107, 53, 0.18);
  transition: box-shadow 0.2s var(--ease-out);
}
.roi__range::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 10px rgba(255, 107, 53, 0.24);
}
.roi__range::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: var(--orange);
  border: 0;
  border-radius: 50%;
  cursor: none;
}

.roi__slider-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}

.roi__outputs {
  display: grid;
  gap: 20px;
  padding-top: 40px;
  border-top: 1px solid var(--ink-faint);
}

.roi__output {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.roi__output-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(48px, 5.4vw, 88px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  font-feature-settings: 'tnum' 1;
}

.roi__currency {
  color: var(--orange);
  margin-right: 4px;
}

.roi__output-label {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  margin-top: 6px;
}

/* =========================================================
   SECTION 4 — PAKETE (2-Viewport: Head + Pinned Horizontal-Scroll)
   ========================================================= */
.scene--pakete {
  background: var(--black);
  /* Kein 200vh mehr. Head 100vh + Grid auto-height → ~160vh total */
  min-height: 100vh;
  height: auto;
  overflow: hidden;
  display: block;
  align-items: stretch;
}

.pakete__inner {
  position: relative;
  padding: 0;
  width: 100%;
  max-width: none;
  display: block;
}

.pakete__head {
  /* min-height statt fix height: Headline rendert sauber, danach kommen direkt Cards */
  min-height: 100vh;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 24px) var(--pad-x) 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.pakete__track-wrap {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  /* Mehr Padding oben/unten = mehr FYNAXA-Wordmark sichtbar um die Cards herum */
  padding: 80px var(--pad-x) 120px;
}

/* Cards bleiben oben in der Stacking-Order, scene__wordmark rendert darunter */
.pakete__track { position: relative; z-index: 1; }

.pakete__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}

.pakete__display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(72px, 10.5vw, 170px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: auto 0;
  text-align: left;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.pakete__display .line {
  display: block;
  overflow: hidden;
}

.pakete__display em {
  font-weight: 600;
  color: var(--orange);
  font-style: normal;
}

.pakete__cue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 16px;
}

.pakete__cue .material-symbols-outlined {
  font-size: 18px;
}

.pakete__track {
  /* 3-Spalten-Grid, all cards always sichtbar */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Gaps von 32 auf 56px — mehr FYNAXA-Wordmark zwischen den Cards sichtbar */
  gap: 56px;
  width: 100%;
  align-items: stretch;
  perspective: 1400px;
}

.tier {
  position: relative;
  width: 100%;
  /* min-height statt fixed height → Content kann atmen, kein 75vh-Zwang */
  min-height: 560px;
  padding: 36px 32px 36px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.tier--cream {
  background: var(--cream);
  color: var(--black-text);
}

.tier--orange {
  background: var(--orange);
  color: var(--black-text);
}

.tier--coral {
  background: var(--coral);
  color: var(--black-text);
}

.tier__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}

.tier__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 24px;
  color: rgba(20, 17, 13, 0.5);
  }

.tier__flag {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid rgba(20, 17, 13, 0.2);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tier__flag--bright {
  background: var(--black-text);
  color: var(--orange);
  border-color: var(--black-text);
}

.tier__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.tier__price {
  font-family: var(--font-display);
  font-weight: 400;
  /* Reduziert weil Cards jetzt nur ~410px breit (3-Spalten-Grid statt 580px solo).
     "15.000 €" auf Custom-Card passt sonst nicht. */
  font-size: clamp(40px, 4.5vw, 60px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  word-break: keep-all;
  overflow-wrap: normal;
}

.tier__price-prefix {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 10px;
  line-height: 1;
}

.tier__price em {
  font-weight: 300;
}

.tier--cream .tier__price em { color: var(--orange); }
.tier--orange .tier__price em { color: var(--cream); }
.tier--coral .tier__price em { color: var(--cream); }

.tier__period {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(20, 17, 13, 0.65);
  margin-bottom: 32px;
}

.tier__features {
  flex: 1;
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

.tier__features li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.5;
}

.tier__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
}

.tier__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 26px;
  border-radius: 999px;
  border: 1.5px solid currentColor;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out);
}

.tier__cta:hover {
  /* Explizit schwarz statt currentColor — currentColor resolvte zur neuen color (cream),
     wodurch BG und Text gleich hell wurden und der Button-Text unsichtbar */
  background: var(--black-text);
  color: var(--cream);
  border-color: var(--black-text);
}

.tier__cta--bright {
  background: var(--black-text);
  color: var(--cream);
  border-color: var(--black-text);
}

.tier__cta--bright:hover {
  background: var(--cream);
  color: var(--black-text);
}

.tier__cta .material-symbols-outlined { font-size: 18px; }

/* =========================================================
   SECTION 5 — FOUNDER + WORKFLOW (orange BG)
   ========================================================= */
.scene--founder {
  /* background dictated by data-bg="orange" */
}

/* Workflow SVG on orange — change KI-node fill to cream for contrast */
.scene--founder .workflow__node--ki circle {
  fill: var(--black-text);
}
.scene--founder .workflow__node--ki text {
  fill: var(--cream);
}
.scene--founder .workflow__line {
  stroke: var(--black-text);
}

.founder__inner {
  /* STACK statt side-by-side: Quote oben, Workflow voll breite unten.
     min-height auf 120vh damit Workflow echt groß werden kann. */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 40px;
  padding: calc(var(--nav-h) + 24px) var(--pad-x) 60px;
  min-height: 120vh;
}

.founder__left {
  /* Quote + Author kompakter damit Workflow Platz bekommt */
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.founder__right {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}

.founder__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.founder__right {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .founder__inner { grid-template-columns: 1fr; gap: 40px; }
}

.founder__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black-text);
  opacity: 0.55;
}

.founder__quote {
  font-family: var(--font-display);
  font-weight: 600;
  /* Etwas kleiner (war 11vw/200px) damit Workflow visuell dominanter werden kann */
  font-size: clamp(56px, 8vw, 130px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--black-text);
  margin: 0 0 20px;
  text-align: left;
  max-width: 100%;
}

.founder__quote .line {
  display: block;
  overflow: hidden;
}

.founder__quote .word { display: inline-block; font-weight: 600; }

.founder__quote em.word {
  font-weight: 600;
  color: var(--cream);
  font-style: normal;
}

.founder__author {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black-text);
  margin-bottom: 16px;
}

.founder__body {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.5;
  color: var(--black-text);
  opacity: 0.75;
  max-width: 56ch;
}

.workflow {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}

.workflow__svg {
  width: 100%;
  /* Horizontal layout: SVG kann jetzt ~1300px breit werden, da Section gestackt ist */
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Nodes-Schrift deutlich größer */
.workflow__node--in text:first-of-type,
.workflow__node--out text:first-of-type {
  font-size: 22px !important;
  font-weight: 700 !important;
}
.workflow__node--in text:nth-of-type(2),
.workflow__node--out text:nth-of-type(2) {
  font-size: 14px !important;
}
.workflow__node--ki text:first-of-type {
  font-size: 34px !important;
  font-weight: 500 !important;
}
.workflow__node--ki text:nth-of-type(2) {
  font-size: 15px !important;
}

/* Circles vergrößern (via SVG attribute override) */
.workflow__node--in circle,
.workflow__node--out circle {
  r: 64;
  stroke-width: 2.5;
}
.workflow__node--ki circle {
  r: 88;
}

.workflow__line {
  stroke-dasharray: 8 6;
  animation: dash 1.5s linear infinite;
}

@keyframes dash {
  to { stroke-dashoffset: -28; }
}

.workflow__node--ki circle {
  animation: ki-pulse 3s ease-in-out infinite;
  /* Transform-Origin auf neue Circle-Position (cx=500, cy=170 in horizontalem viewBox).
     Vorher: 200,300 → das war die alte Position, dadurch shiftete der Scale nach oben links */
  transform-origin: 500px 170px;
  transform-box: fill-box;
  transform-origin: center;
}

@keyframes ki-pulse {
  /* Scale reduziert auf 1.04 (war 1.06) damit Circle nicht über viewBox-Edges greift */
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}

.workflow__caption {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--dark-mute);
  text-align: center;
  margin-top: 8px;
}

/* =========================================================
   SECTION 6 — KONTAKT (cream BG)
   ========================================================= */
.scene--kontakt {
  /* background dictated by data-bg="cream" */
}

.kontakt__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  text-align: left;
  padding: calc(var(--nav-h) + 24px) var(--pad-x) 32px;
  min-height: 100vh;
}

.kontakt__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(20, 17, 13, 0.6);
}

.kontakt__display {
  font-family: var(--font-display);
  font-weight: 600;
  /* War 19vw/320px — "GESPRÄCH." wurde rechts abgeschnitten weil das Display
     zu breit für den Viewport war. Reduziert auf ~16vw/260px. */
  font-size: clamp(96px, 15vw, 240px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--black-text);
  margin: auto 0 0;
  text-align: left;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.kontakt__display .line {
  display: block;
  overflow: hidden;
}

.kontakt__display .word {
  display: inline-block;
  font-weight: 600;
}

.kontakt__display em.word {
  font-weight: 600;
  color: var(--orange);
  font-style: normal;
}

.kontakt__sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black-text);
  opacity: 0.7;
  max-width: 60ch;
  margin-top: 20px;
  margin-bottom: 16px;
}

.kontakt__cta-wrap {
  margin-bottom: 20px;
  align-self: flex-start;
}

.kontakt__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 28px 56px;
  background: var(--black);
  color: var(--cream);
  border-radius: 999px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background 0.25s var(--ease-out);
  will-change: transform;
}

.kontakt__cta-primary:hover {
  background: var(--orange);
  color: var(--black);
}

.kontakt__cta-primary .material-symbols-outlined { font-size: 28px; }

.kontakt__channels {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.kontakt__channels a {
  position: relative;
  color: var(--black-text);
  opacity: 0.72;
  transition: opacity 0.2s var(--ease-out);
}

.kontakt__channels a:hover {
  opacity: 1;
}

.kontakt__channels a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}

.kontakt__channels a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--black);
  color: var(--ink);
  padding: 80px var(--pad-x) 40px;
  border-top: 1px solid var(--ink-faint);
}

.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.footer__definition {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(24px, 2.8vw, 44px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 80px;
  max-width: 60ch;
}

.footer__word {
  color: var(--ink);
  font-weight: 400;
}

.footer__pos {
  color: var(--orange);
  margin-left: 6px;
}

.footer__meaning {
  color: var(--ink-mute);
  margin-left: 6px;
}

.footer__meaning em {
  color: var(--orange);
}

.footer__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--ink-faint);
}

@media (max-width: 768px) {
  .footer__row { grid-template-columns: 1fr; gap: 32px; }
}

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

.footer__col-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.footer__col-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-mute);
}

.footer__col a {
  font-size: 14px;
  color: var(--ink-mute);
  transition: color 0.2s var(--ease-out);
}

.footer__col a:hover {
  color: var(--orange);
}

.footer__col--end {
  align-items: flex-end;
  font-size: 13px;
  color: var(--ink-soft);
}

@media (max-width: 768px) {
  .footer__col--end { align-items: flex-start; }
}

/* =========================================================
   REVEAL / WORD ANIMATIONS (JS toggles state)
   ========================================================= */
.scene .line {
  padding-bottom: 0.18em;
}

.scene .word {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.1s var(--ease-out);
  will-change: transform;
}

.scene.is-in .word {
  transform: translateY(0);
}

.scene.is-in .line:nth-child(1) .word { transition-delay: 0.05s; }
.scene.is-in .line:nth-child(2) .word { transition-delay: 0.18s; }
.scene.is-in .line:nth-child(3) .word { transition-delay: 0.31s; }
.scene.is-in .line:nth-child(4) .word { transition-delay: 0.44s; }

/* Fade-in for non-word elements inside scene */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Pakete cards entrance — NUR opacity-fade, KEIN transform-transition
   (transform-transition blockiert sonst GSAP's 3D-Tilt-Animation auf den Cards) */
.tier {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out);
}
.scene--pakete.is-in .tier { opacity: 1; }
.scene--pakete.is-in .tier:nth-of-type(1) { transition-delay: 0.0s; }
.scene--pakete.is-in .tier:nth-of-type(2) { transition-delay: 0.12s; }
.scene--pakete.is-in .tier:nth-of-type(3) { transition-delay: 0.24s; }

/* =========================================================
   MOBILE TYPOGRAPHY SAFETY
   ========================================================= */
@media (max-width: 900px) {
  .hero__display       { font-size: clamp(56px, 14vw, 110px); }
  .statement__display  { font-size: clamp(64px, 18vw, 140px); }
  .roi__display        { font-size: clamp(56px, 13vw, 110px); }
  .pakete__display     { font-size: clamp(56px, 13vw, 110px); }
  .founder__quote      { font-size: clamp(48px, 12vw, 100px); }
  .kontakt__display    { font-size: clamp(64px, 18vw, 140px); }
  .tier__price         { font-size: clamp(48px, 10vw, 80px); }
}

/* Extra-small viewports (≤640px): aggressivere Reduktion + Hyphen-Fallback,
   damit "BUCHHALTUNG" und "ÜBERNOMMEN" nicht rechts abgeschnitten werden */
@media (max-width: 640px) {
  .hero__display       { font-size: clamp(38px, 11.5vw, 56px); line-height: 0.92; letter-spacing: -0.03em; }
  .statement__display  { font-size: clamp(40px, 12vw, 60px); line-height: 0.94; letter-spacing: -0.035em; }
  .roi__display        { font-size: clamp(38px, 11vw, 58px); line-height: 0.94; letter-spacing: -0.035em; }
  .pakete__display     { font-size: clamp(36px, 10.5vw, 56px); line-height: 0.96; letter-spacing: -0.04em; }
  .founder__quote      { font-size: clamp(30px, 9vw, 44px); line-height: 1.05; }
  .kontakt__display    { font-size: clamp(40px, 12vw, 60px); line-height: 0.94; letter-spacing: -0.035em; }
  .tier__price         { font-size: clamp(44px, 11vw, 64px); }

  /* Safety-Net: wenn ein Wort trotzdem zu lang ist, brich es um statt zu cutten */
  .hero__display,
  .statement__display,
  .roi__display,
  .pakete__display,
  .founder__quote,
  .kontakt__display {
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  /* Body-Text auf Mobile: max-width nicht größer als Viewport */
  .hero__lede,
  .statement__lede,
  .statement__intro,
  .roi__sub,
  .founder__lede {
    max-width: 100%;
  }
}

/* Tablet: 2-Spalten Grid, Custom Card kann darunter rutschen */
@media (max-width: 1024px) {
  .pakete__track { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* Mobile: 1 Spalte, Cards untereinander */
@media (max-width: 768px) {
  .pakete__track { grid-template-columns: 1fr; gap: 20px; }
  .tier { width: 100%; min-height: auto; }
}
