/* =========================================================
   Norvelence – Stylesheet
   Design-Tokens zuerst, danach Komponenten pro Section.
   Mobile-first: Basisstile = Mobile, Erweiterungen per min-width.
   ========================================================= */

/* ---------- Fonts (self-hosted, siehe /fonts) ---------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../../fonts/inter-latin-var.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('../../fonts/fraunces-latin-var.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('../../fonts/fraunces-italic-latin-var.woff2') format('woff2');
}

/* ---------- Design tokens ---------- */
:root {
  /* Farben – Aufbau/Struktur bleibt V1, Farbwelt übernommen aus V2 ("Clean Editorial") */
  --color-bg: #FFFFFF;
  --color-surface: #F6F7F5;
  --color-surface-2: #EEF0EC;
  --color-surface-sage: #EEF2ED;
  --color-ink: #171717;
  --color-ink-2: #262626;
  --color-ink-soft: #5C5D59;
  --color-ink-faint: #8C948B;
  --color-accent: #E8503C;
  --color-accent-deep: #C13A28;
  --color-accent-light: #F0836F;
  --color-accent-wash: rgba(232, 80, 60, 0.08);
  --color-sage: #6F8175;
  --color-sage-deep: #4B5A4E;
  --color-sage-wash: rgba(111, 129, 117, 0.14);
  --color-line: rgba(23, 23, 23, 0.10);
  --color-line-strong: rgba(23, 23, 23, 0.20);
  --color-on-ink: #FFFFFF;
  --color-on-ink-soft: rgba(255, 255, 255, 0.68);
  --color-on-ink-line: rgba(255, 255, 255, 0.16);

  /* Typografie */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --fs-h1: clamp(2.5rem, 1.7rem + 3.6vw, 4.4rem);
  --fs-h2: clamp(1.9rem, 1.5rem + 1.8vw, 2.85rem);
  --fs-h3: clamp(1.3rem, 1.15rem + 0.6vw, 1.6rem);
  --fs-lead: clamp(1.1rem, 1rem + 0.4vw, 1.3rem);
  --fs-body: 1rem;
  --fs-small: 0.9rem;
  --fs-eyebrow: 0.8rem;

  /* Abstände */
  --space-section: clamp(4.5rem, 3.6rem + 4vw, 8.5rem);
  --space-section-sm: clamp(3rem, 2.5rem + 2vw, 5rem);
  /* Asymmetrisch aufgeteilt: oben knapper (nächste Section "zieht" früher ins Bild),
     unten weiterhin großzügig (Raum für die Section-Handoffs). Gleiche Gesamt-Großzügigkeit,
     bewusster verteilt statt überall reduziert. */
  --space-section-top: clamp(2.75rem, 2.2rem + 2.4vw, 5.25rem);
  --space-section-bottom: clamp(5.25rem, 4.2rem + 5vw, 10rem);
  --space-section-sm-top: clamp(2rem, 1.6rem + 1.6vw, 3.5rem);
  --space-section-sm-bottom: clamp(3.5rem, 2.8rem + 3vw, 6rem);
  --space-section-lg-top: clamp(3.75rem, 3rem + 3.6vw, 7rem);
  --space-section-lg-bottom: clamp(7rem, 5.6rem + 7vw, 13.5rem);
  --container-max: 1180px;
  --container-pad: clamp(1.25rem, 4vw, 2.75rem);

  /* Sonstiges */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-card: 0 1px 2px rgba(23, 23, 23, 0.05), 0 18px 40px -24px rgba(23, 23, 23, 0.30);
  --shadow-lift: 0 1px 2px rgba(23, 23, 23, 0.06), 0 24px 48px -20px rgba(23, 23, 23, 0.24);
  --glow-accent: rgba(232, 80, 60, 0.22);
  --glow-sage: rgba(111, 129, 117, 0.16);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--color-ink);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}
img, svg, picture, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; color: var(--color-ink); overflow-wrap: break-word; }
p, li, span, a { overflow-wrap: break-word; }
input, textarea { font: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.section { padding-top: var(--space-section-top); padding-bottom: var(--space-section-bottom); }
.section--sm { padding-top: var(--space-section-sm-top); padding-bottom: var(--space-section-sm-bottom); }
.section--surface { background: var(--color-surface); }
.section--ink { position: relative; overflow: hidden; background: var(--color-ink); color: var(--color-on-ink); }
.section--ink h2, .section--ink h3 { color: var(--color-on-ink); }
.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--color-accent-deep);
  margin-bottom: 1rem;
}
.section--ink .eyebrow { color: var(--color-accent-light); }
.eyebrow--sage { color: var(--color-sage-deep); }

/* Kapitel-Nummer neben dem Eyebrow – dezente Wegmarke für die Scroll-Story */
.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.section-kicker .eyebrow { margin-bottom: 0; }
.section-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-ink-soft);
  border: 1px solid var(--color-line-strong);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  flex-shrink: 0;
}
.section--ink .section-num { color: var(--color-on-ink-soft); border-color: var(--color-on-ink-line); }

h2.section-title { font-size: var(--fs-h2); }
p.lead {
  font-size: var(--fs-lead);
  color: var(--color-ink-soft);
  margin-top: 1.1rem;
  max-width: 42rem;
}
.section--ink p.lead { color: var(--color-on-ink-soft); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 200;
  background: var(--color-ink); color: var(--color-on-ink);
  padding: 0.85rem 1.25rem; border-radius: var(--radius-sm);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

:focus-visible { outline: 2px solid var(--color-accent-deep); outline-offset: 3px; }

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { --reveal-delay: 0.08s; }
.reveal-delay-2 { --reveal-delay: 0.16s; }
.reveal-delay-3 { --reveal-delay: 0.24s; }
.reveal-delay-4 { --reveal-delay: 0.32s; }
.reveal-delay-5 { --reveal-delay: 0.5s; }
.reveal-delay-6 { --reveal-delay: 0.65s; }

/* ---------- Section-Übergänge: Farbtöne verschmelzen statt harter Kante ---------- */
.section--tint-from-bg { background: linear-gradient(var(--color-bg), var(--color-surface) 200px); }
.section--tint-from-surface { background: linear-gradient(var(--color-surface), var(--color-bg) 200px); }
/* Kurz statt 160px: nur ein dezenter Übergang direkt an der Kante, damit der
   Statustext nicht auf einem großflächigen dunklen Verlauf sitzt. */
.section--tint-from-ink { background: linear-gradient(var(--color-ink), var(--color-bg) 56px); }
.section--lg { padding-top: var(--space-section-lg-top); padding-bottom: var(--space-section-lg-bottom); }

/* Dunkler "Vorhang", der beim Scrollen nach oben abzieht und die Section darunter freigibt */
.section-cover.reveal {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 1;
  transform: scaleY(1);
  transform-origin: top;
  transition: transform 1.1s var(--ease-soft);
}
.section-cover.reveal.is-visible { opacity: 1; transform: scaleY(0); }
.section-cover--surface { background: var(--color-surface); }
.section-cover--bg { background: var(--color-bg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--color-accent);
  color: #FFFFFF;
  border-color: var(--color-accent);
}
.btn-primary:hover { background: var(--color-accent-deep); border-color: var(--color-accent-deep); transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-line-strong);
}
.btn-secondary:hover { border-color: var(--color-ink); background: rgba(23,23,23,0.04); transform: translateY(-1px); }

.section--ink .btn-secondary { color: var(--color-on-ink); border-color: var(--color-on-ink-line); }
.section--ink .btn-secondary:hover { border-color: var(--color-on-ink); background: rgba(255,255,255,0.06); }

.btn-block { width: 100%; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), height 0.3s var(--ease);
}
.site-header.is-scrolled {
  height: calc(var(--header-h) - 12px);
  border-bottom-color: var(--color-line);
  box-shadow: 0 12px 30px -22px rgba(23, 23, 23, 0.4);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  color: var(--color-ink);
}
.nav-desktop {
  display: none;
}
.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2vw, 2.25rem);
}
.nav-desktop a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-ink-soft);
  position: relative;
  padding-block: 0.3rem;
  transition: color 0.2s var(--ease);
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 1.5px;
  background: var(--color-accent);
  transition: right 0.28s var(--ease);
}
.nav-desktop a:hover { color: var(--color-ink); }
.nav-desktop a:hover::after { right: 0; }
.nav-desktop a.is-active { color: var(--color-ink); }
.nav-desktop a.is-active::after { right: 0; background: var(--color-accent-deep); }

.header-cta { display: none; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  align-items: center;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--color-bg);
  z-index: 99;
  padding: 2rem var(--container-pad) 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
}
.mobile-nav.is-open { opacity: 1; transform: translateY(0); visibility: visible; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav a {
  display: block;
  padding: 1rem 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  border-bottom: 1px solid var(--color-line);
  transition: color 0.2s var(--ease);
}
.mobile-nav a.is-active { color: var(--color-accent-deep); }
.mobile-nav .btn { margin-top: 2rem; }

@media (min-width: 880px) {
  .nav-desktop { display: block; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero { padding-top: clamp(3rem, 2rem + 4vw, 5.5rem); }
.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2.5rem, 4vw, 3rem);
  align-items: center;
}
.hero__title {
  font-size: var(--fs-h1);
  letter-spacing: -0.01em;
}
.hero__title span { display: block; }
.hero__content > p.lead { margin-bottom: 2rem; }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.25rem;
}
.hero__actions .btn-primary {
  box-shadow: 0 1px 2px rgba(23, 23, 23, 0.08), 0 16px 32px -14px var(--glow-accent);
}
.hero__actions .btn-primary:hover {
  box-shadow: 0 1px 2px rgba(23, 23, 23, 0.1), 0 20px 36px -14px var(--glow-accent);
}
@media (max-width: 639px) {
  .hero__actions { justify-content: center; }
}
.hero__meta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--color-line);
  max-width: 34rem;
}
.hero__meta p { font-size: 0.95rem; color: var(--color-ink-soft); }
.hero__meta strong { color: var(--color-ink); font-weight: 700; }

/* Decorative hero illustration – pure CSS/SVG, no stock imagery */
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  justify-self: center;
  width: 100%;
  max-width: 420px;
}
/* Echtes Produktfoto statt gezeichnetem Mockup: Bild füllt den Bereich
   vollständig, ohne Rahmen/Card-Optik. Die Datei selbst ist am äußeren,
   produktfreien Rand bereits transparent freigestellt (weicher Alpha-Verlauf,
   der ausschließlich den neutralen Hintergrund betrifft – Geräte, Karten und
   ihre Schlagschatten bleiben voll erhalten), daher genügt ein einfaches
   object-fit ohne zusätzliche Card-/Blend-Tricks. */
.hero__visual--filled img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* Höhere Spezifität als .reveal.is-visible, damit der Scroll-Handoff nach dem
   Eintritts-Fade übernehmen kann, ohne diesen zu verhindern. */
.hero__visual.reveal.is-visible {
  transform: translateY(var(--hero-shift, 0px)) scale(var(--hero-scale, 1));
  opacity: var(--hero-opacity, 1);
}
.hero__visual::before {
  content: "";
  position: absolute;
  inset: -12%;
  background:
    radial-gradient(closest-side, var(--glow-accent), transparent 70%) 65% 35% / 65% 65% no-repeat,
    radial-gradient(closest-side, var(--glow-sage), transparent 70%) 30% 75% / 55% 55% no-repeat;
  filter: blur(6px);
  z-index: -1;
}
.hero__book {
  position: absolute;
  left: 6%;
  top: 12%;
  width: 62%;
  height: 72%;
  background: linear-gradient(155deg, var(--color-surface), var(--color-surface-2));
  border-radius: 6px 14px 14px 6px;
  box-shadow: var(--shadow-lift);
  transform: rotate(-7deg);
  border: 1px solid var(--color-line-strong);
  border-left: 6px solid var(--color-ink);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero__book-icon { width: 30px; height: 30px; color: var(--color-sage); opacity: 0.75; }
.hero__book-lines { display: flex; flex-direction: column; gap: 0.5rem; }
.hero__book-lines span { display: block; height: 7px; border-radius: 4px; background: rgba(23,23,23,0.22); }
.hero__book-lines span:last-child { width: 60%; }

.hero__device {
  position: absolute;
  right: 2%;
  bottom: 0;
  width: 58%;
  height: 82%;
  background: var(--color-ink);
  border-radius: 22px;
  box-shadow: var(--shadow-lift);
  padding: 10px;
  transform: rotate(3deg);
}
.hero__device-screen {
  position: relative;
  background: var(--color-bg);
  width: 100%;
  height: 100%;
  border-radius: 14px;
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  overflow: hidden;
}
.hero__ui-cover {
  height: 42%;
  border-radius: 8px;
  background:
    repeating-linear-gradient(135deg, rgba(232,80,60,0.14) 0 8px, rgba(111,129,117,0.12) 8px 16px),
    linear-gradient(160deg, var(--color-surface), var(--color-surface-2));
}
.hero__ui-line { height: 6px; border-radius: 4px; background: var(--color-line-strong); width: 80%; }
.hero__ui-line--short { width: 45%; }
.hero__ui-price {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.hero__ui-price span:first-child { font-size: 0.62rem; font-weight: 700; color: var(--color-ink-soft); }
.hero__ui-btn {
  background: var(--color-accent);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
}
.hero__badge {
  position: absolute;
  left: -4%;
  bottom: 6%;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-card);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}
.hero__badge svg { width: 16px; height: 16px; color: var(--color-accent-deep); flex-shrink: 0; }

@media (min-width: 960px) {
  .hero .container { grid-template-columns: 1.05fr 0.95fr; }
  .hero__visual { justify-self: end; max-width: 100%; }
  /* Nur auf Desktop ca. 13% größer/präsenter – Container-Box (und damit das
     Grid/die linke Seite) bleibt unverändert, nur die sichtbare Bildgröße
     wächst; kein overflow:hidden im Elternbereich, daher kein Anschnitt. */
  .hero__visual--filled img { transform: scale(1.13); }
}

/* =========================================================
   Das Modell (Sticky-Scroll-Story)
   ========================================================= */
.model-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
}
.model-sticky .section-title { margin-top: 0; }
.model-sticky .lead { margin-bottom: 0; }
.model-note {
  margin-top: 3rem;
  background: var(--color-ink);
  color: var(--color-on-ink);
  border-radius: var(--radius-md);
  padding: 1.4rem clamp(1.4rem, 2vw, 1.75rem);
  font-weight: 600;
  font-size: 1.05rem;
}

.model-stream__group + .model-stream__group { margin-top: 3rem; }
.model-stream__tag {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--color-ink-soft);
  margin-bottom: 1.1rem;
}
.model-stream__group[data-group="you"] .model-stream__tag { color: var(--color-sage); }
.model-stream__group[data-group="us"] .model-stream__tag { color: var(--color-accent-deep); }

.model-stream__list { display: flex; flex-direction: column; }
.model-stream__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.15rem 0 1.15rem 1.1rem;
  border-bottom: 1px solid var(--color-line);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-ink-faint);
  opacity: 0.7;
  transition: padding-left 0.3s var(--ease), color 0.4s var(--ease), opacity 0.4s var(--ease);
}
.model-stream__item::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--color-line-strong);
  transform: scaleY(0.3);
  transform-origin: top;
  transition: transform 0.5s var(--ease), background-color 0.4s var(--ease);
}
.model-stream__item:first-child { padding-top: 0; }
.model-stream__item:last-child { border-bottom: none; }
.model-stream__item.is-active,
.model-stream__item.is-passed { color: var(--color-ink); opacity: 1; }
.model-stream__item.is-passed { color: var(--color-ink-soft); opacity: 0.88; }
.model-stream__item.is-active::before,
.model-stream__item.is-passed::before { transform: scaleY(1); }
.model-stream__group[data-group="you"] .model-stream__item.is-active::before,
.model-stream__group[data-group="you"] .model-stream__item.is-passed::before { background: var(--color-sage); }
.model-stream__group[data-group="us"] .model-stream__item.is-active::before,
.model-stream__group[data-group="us"] .model-stream__item.is-passed::before { background: var(--color-accent); }
.model-stream__item:hover { padding-left: 1.5rem; }
.model-stream__icon { width: 20px; height: 20px; flex-shrink: 0; margin-top: 3px; opacity: 0.6; transition: opacity 0.4s var(--ease); }
.model-stream__item.is-active .model-stream__icon,
.model-stream__item.is-passed .model-stream__icon { opacity: 1; }
.model-stream__group[data-group="you"] .model-stream__icon { color: var(--color-sage-deep); }
.model-stream__group[data-group="us"] .model-stream__icon { color: var(--color-accent-deep); }

@media (min-width: 960px) {
  .model-layout { grid-template-columns: 0.85fr 1.15fr; gap: 4.5rem; align-items: start; }
  .model-sticky { position: sticky; top: calc(var(--header-h) + 3rem); }
}

/* =========================================================
   Full-Service (Leistungen) – ein zusammenhängender Prozess
   ========================================================= */
.process-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.25rem;
}
.process-flow__item {
  position: relative;
  padding-left: 1.75rem;
  border-left: 2px solid var(--color-line-strong);
}
.process-flow__item::before {
  content: "";
  position: absolute;
  left: -2px; top: 0; bottom: 0;
  width: 2px;
  background: var(--color-accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s var(--ease);
}
.process-flow__item.is-active::before,
.process-flow__item.is-passed::before { transform: scaleY(1); }
.process-flow__num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--color-ink-faint);
  margin-bottom: 0.6rem;
  transition: color 0.4s var(--ease), transform 0.3s var(--ease);
}
.process-flow__item.is-active .process-flow__num,
.process-flow__item.is-passed .process-flow__num { color: var(--color-accent-deep); }
.process-flow__item:hover .process-flow__num { transform: translateY(-2px); }
.process-flow__item h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.process-flow__item p { color: var(--color-ink-soft); font-size: 0.98rem; max-width: 26rem; }

@media (min-width: 1080px) {
  .process-flow {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    border-top: 1px solid var(--color-line-strong);
    padding-top: 2.75rem;
  }
  .process-flow__item { border-left: none; padding-left: 0; padding-right: 1.25rem; }
  .process-flow__item::before {
    left: 0; right: 0; top: -2.75rem; bottom: auto;
    width: auto; height: 2px;
    transform: scaleX(0);
    transform-origin: left;
  }
  .process-flow__item.is-active::before,
  .process-flow__item.is-passed::before { transform: scaleX(1); }
}

/* Kleiner Hinweis auf Produktvielfalt – bewusst keine eigene Section, sondern dieselbe
   Kasten-Optik wie .integration-note weiter unten (gleiche Tokens, kein neuer Stil). */
.format-note {
  margin-top: clamp(2.5rem, 3vw, 3.5rem);
  background: var(--color-surface-2);
  border-radius: var(--radius-md);
  padding: 1.4rem clamp(1.5rem, 3vw, 2rem);
  border-left: 3px solid var(--color-accent);
}
.format-note strong { display: block; margin-bottom: 0.6rem; font-family: var(--font-display); font-size: 1.05rem; }
.format-note__list {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--color-accent-deep);
  font-weight: 600;
  font-size: 0.92rem;
}
.format-note span:last-child { color: var(--color-ink-soft); font-size: 0.95rem; }

/* =========================================================
   Content-Integration
   ========================================================= */
.integration .container {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2.5rem, 4vw, 3rem);
  align-items: center;
}
.integration__visual {
  position: relative;
  width: 100%;
  height: clamp(260px, 30vw, 340px);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--color-ink), var(--color-ink-2));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Echtes Foto statt Illustration: gleicher Radius wie oben, aber eigenes
   4:3-Seitenverhältnis statt fester Höhe und ohne den dunklen Verlauf –
   das Bild ist selbst der Container (wie bei .proof-shot--filled). */
.integration__visual--filled {
  height: auto;
  aspect-ratio: 4 / 3;
  background: none;
}
.integration__visual--filled img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.integration__phone {
  width: 132px;
  height: 232px;
  background: var(--color-bg);
  border-radius: 20px;
  border: 6px solid #0F0F0F;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.55);
}
.integration__phone .bar { height: 6px; border-radius: 4px; background: var(--color-line-strong); }
.integration__phone .bar:nth-child(1) { width: 70%; }
.integration__phone .bar:nth-child(2) { width: 45%; }
.integration__phone .frame {
  margin-top: 4px;
  flex: 1;
  border-radius: 10px;
  background: repeating-linear-gradient(135deg, rgba(232,80,60,0.16) 0 8px, rgba(111,129,117,0.14) 8px 16px);
  position: relative;
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 0.6s var(--ease) 0.35s, transform 0.6s var(--ease) 0.35s;
}
.integration__visual.is-visible .frame { opacity: 1; transform: scale(1); }
.integration__phone .chip {
  position: absolute; left: 8px; bottom: 8px;
  background: var(--color-accent);
  color: #fff; font-size: 0.55rem; font-weight: 700;
  padding: 0.3rem 0.5rem; border-radius: 999px;
}
.integration__ring {
  position: absolute;
  border: 1px solid var(--color-on-ink-line);
  border-radius: 50%;
}
.integration__ring--1 { width: 240px; height: 240px; }
.integration__ring--2 { width: 320px; height: 320px; }

.integration__body p.lead { margin-bottom: 1.75rem; }
.integration-note {
  background: var(--color-surface-2);
  border-radius: var(--radius-md);
  padding: 1.4rem clamp(1.5rem, 3vw, 2rem);
  border-left: 3px solid var(--color-accent);
}
.integration-note strong { display: block; margin-bottom: 0.4rem; font-family: var(--font-display); font-size: 1.05rem; }
.integration-note span { color: var(--color-ink-soft); font-size: 0.95rem; }

@media (min-width: 960px) {
  .integration .container { grid-template-columns: 0.9fr 1.1fr; }
  .integration .container.is-reversed { direction: rtl; }
  .integration .container.is-reversed > * { direction: ltr; }
}

/* =========================================================
   Proof of Concept
   ========================================================= */
.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  margin-bottom: clamp(2.5rem, 3vw, 3.5rem);
}
.proof-item {
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-line);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.4rem;
}
.proof-item:last-child { border-bottom: 1px solid var(--color-line); }
.proof-item__num { font-family: var(--font-display); color: var(--color-accent); font-weight: 600; }
.proof-item h3 { font-size: 1.05rem; }
.proof-item p { color: var(--color-ink-soft); font-size: 0.95rem; }

.proof-conclusion {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 500;
  font-style: italic;
  max-width: 40rem;
  margin-bottom: clamp(2.5rem, 3vw, 3.5rem);
  color: var(--color-ink);
}

.proof-panel__head { text-align: center; margin-bottom: clamp(2.5rem, 3vw, 3.5rem); }
.proof-panel__head .eyebrow { margin-bottom: 0.6rem; justify-content: center; }
.proof-panel__head h3 { font-size: var(--fs-h2); }
.proof-panel__head-text { margin-top: 0.75rem; color: var(--color-ink-soft); font-size: 0.95rem; }
.proof-shots {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  max-width: 60rem;
  margin-inline: auto;
}
.proof-shot {
  position: relative;
  aspect-ratio: 16 / 10;
  border: 1.5px dashed var(--color-line-strong);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  text-align: center;
  padding: 1.5rem;
  color: var(--color-ink-soft);
  background: var(--color-surface);
  box-shadow: var(--shadow-lift);
  transform: translateY(calc(var(--shot-base, 0px) + var(--shot-shift, 0px)));
  will-change: transform;
}
.proof-shot svg { width: 38px; height: 38px; color: var(--color-ink-soft); opacity: 0.6; }
.proof-shot strong { font-family: var(--font-body); font-size: 0.9rem; font-weight: 700; color: var(--color-ink); }
.proof-shot span { font-size: 0.85rem; }

/* Echter Screenshot statt Platzhalter: kein gestrichelter Rahmen und kein
   Icon/Text mehr nötig – Radius und Shadow bleiben identisch (bestehende
   Designsprache). Eigenes, breiteres Seitenverhältnis passend zum echten
   Dashboard-Screenshot; object-fit:contain, damit garantiert keine
   Shopify-Kennzahl angeschnitten wird. */
.proof-shot--filled {
  aspect-ratio: 12 / 5;
  border: none;
  padding: 0;
  overflow: hidden;
  display: block;
}
.proof-shot--filled img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.proof-panel__caption {
  text-align: center;
  margin-top: clamp(1.5rem, 2vw, 2rem);
  font-size: 0.85rem;
  color: var(--color-ink-faint);
}

/* =========================================================
   Proof-Story: Content-Kanäle -> digitales Produkt/Infrastruktur -> Verkäufe.
   Nutzt dieselben Bausteine wie oben (.proof-shot, .eyebrow, .thread) –
   keine neue Designsprache, nur eine andere Anordnung.
   ========================================================= */
.proof-story__social { margin-bottom: clamp(2.5rem, 4vw, 3rem); }
.proof-story__label { text-align: left; }
.proof-story__label .eyebrow { justify-content: flex-start; margin-bottom: 0.5rem; }
.proof-story__label strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-ink);
}
.proof-story__label span { display: block; color: var(--color-ink-soft); font-size: 0.95rem; max-width: 24rem; }

/* Drei echte Kennzahlen statt Screenshot: Hauptmetrik oben (Trennlinie darunter,
   wie .proof-item weiter oben schon vormacht), zwei kleinere Metriken darunter
   per dünner vertikaler Linie getrennt – keine Dashboard-Kacheln. */
.proof-metrics { margin-top: 1.75rem; }
.proof-metric--main {
  padding-bottom: 1.4rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid var(--color-line);
}
.proof-metric__value {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1;
  color: var(--color-ink);
}
.proof-metric--main .proof-metric__value {
  font-size: clamp(2.25rem, 1.7rem + 2.2vw, 3.25rem);
  color: var(--color-accent-deep);
}
.proof-metric__label {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-ink);
}
.proof-metric__meta {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.8rem;
  color: var(--color-ink-faint);
}
.proof-metrics__minor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.25rem;
}
.proof-metrics__minor .proof-metric--minor + .proof-metric--minor {
  padding-left: 1.25rem;
  border-left: 1px solid var(--color-line);
}
.proof-metrics__minor .proof-metric__value { font-size: clamp(1.4rem, 1.2rem + 0.8vw, 1.7rem); }
.proof-story__meta-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--color-ink-faint);
  max-width: 24rem;
}

/* Sehr kurze Variante des Thread-Motivs: verbindet Content-Proof und Shop-Proof
   als Teile EINER Geschichte, ohne Pfeil oder Flowchart. */
.thread--story {
  display: block;
  position: relative;
  width: 1px;
  height: 3rem;
  margin: 0 auto clamp(2.5rem, 4vw, 3rem);
  background: var(--color-line-strong);
  overflow: visible;
}
.thread--story::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.8s var(--ease-soft);
}
.thread--story::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  transform: translateX(-50%) scale(0);
  transition: transform 0.4s var(--ease-soft) 0.45s;
}
.thread--story.is-visible::after { transform: scaleY(1); }
.thread--story.is-visible::before { transform: translateX(-50%) scale(1); }

@media (min-width: 760px) {
  .proof-shots { grid-template-columns: 1fr 1fr; align-items: start; gap: 2.5rem; }
  .proof-shots .proof-shot:first-child { --shot-base: -1.75rem; }
  .proof-shots .proof-shot:last-child { --shot-base: 3.25rem; }

  /* Die echten Screenshots sind im breiten Dashboard-Format – nebeneinander
     wären sie zu klein zum Lesen. Lesbarkeit > perfekte Symmetrie: beide bleiben
     untereinander in voller Breite, nur mit leichtem horizontalem Versatz statt
     zweier identischer Stapel nebeneinander. */
  .proof-shots.proof-shots--filled {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.75rem;
  }
  .proof-shots--filled .proof-shot:first-child,
  .proof-shots--filled .proof-shot:last-child { --shot-base: 0px; }
  .proof-shots--filled .proof-shot:last-child { margin-left: clamp(1rem, 4vw, 2.5rem); }

  /* Editorial statt Screenshot-Galerie: schmalere Social-/Metrik-Spalte (~37,5%),
     breitere Shop-Spalte (~62,5%) für gut lesbare Screenshots, feine Linie
     dazwischen statt Pfeil. */
  .proof-story {
    display: grid;
    grid-template-columns: 0.75fr auto 1.25fr;
    align-items: start;
    gap: 0 clamp(1.25rem, 2.5vw, 2rem);
  }
  /* Kleiner Offset schon ab Tablet (bei ausreichend Breite), voller Versatz
     erst ab 1080px – siehe Begründung dort. */
  .proof-story__social { margin-bottom: 0; margin-top: 1.5rem; }
  .thread--story { align-self: stretch; height: auto; min-height: 8rem; margin: 0; }
  .thread--story::before { top: auto; bottom: -3px; }

  /* Shop-Kopf ab hier links ausgerichtet statt zentriert – passt zur schmaleren
     Spalte, sobald die Zweispaltigkeit greift (statt erst ab 1080px). */
  .proof-story__shop .proof-panel__head { text-align: left; margin-bottom: clamp(1.75rem, 2vw, 2.25rem); }
  .proof-story__shop .proof-panel__head .eyebrow { justify-content: flex-start; }
  .proof-story__shop .proof-panel__caption { text-align: left; margin-inline: 0; }
}
@media (min-width: 860px) {
  .proof-grid { grid-template-columns: repeat(4, 1fr); }
  .proof-item { border-top: none; border-left: 1px solid var(--color-line); padding: 0 1.5rem; }
  .proof-item:first-child { border-left: none; padding-left: 0; }
  .proof-item:last-child { border-bottom: none; }
}
@media (min-width: 1080px) {
  /* Ab hier die volle editoriale Asymmetrie: Social-Proof beginnt bewusst
     deutlich tiefer als der Shop-Block, statt exakt auf gleicher Höhe zu
     starten. Der Shop-Block ist durch die zwei echten Screenshots spürbar
     höher (gemessener Rest-Abstand vorher ~237px) – der Versatz nutzt einen
     Teil davon, endet aber weiterhin sichtbar oberhalb des Shop-Endes.
     Höhe der Reihe bleibt unverändert, da sie weiterhin vom Shop-Block
     bestimmt wird (kein zusätzlicher Section-Platz). */
  .proof-story { gap: 0 clamp(1.5rem, 3vw, 2.5rem); }
  .proof-story__social { margin-top: clamp(8rem, 6rem + 3vw, 10rem); }
  .thread--story { min-height: 11rem; }
}

/* =========================================================
   Ablauf / Timeline
   ========================================================= */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.25rem;
  margin-bottom: clamp(2.5rem, 3vw, 3.5rem);
}
.timeline__step {
  position: relative;
  padding-left: 3.25rem;
  opacity: 0.42;
  transition: opacity 0.5s var(--ease);
}
.timeline__step.is-passed { opacity: 0.75; }
.timeline__step.is-active { opacity: 1; }
.timeline__dot {
  position: absolute;
  left: 0; top: 0;
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-on-ink);
  background: var(--color-ink);
  z-index: 1;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.timeline__step:nth-child(2) .timeline__dot,
.timeline__step:nth-child(4) .timeline__dot { background: var(--color-sage); }
.timeline__step:last-child .timeline__dot { background: var(--color-accent); }
.timeline__step.is-active .timeline__dot {
  transform: scale(1.1);
  box-shadow: 0 0 0 6px rgba(232, 80, 60, 0.16);
}
.timeline__step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 1.24rem; top: 2.5rem;
  width: 1px; height: calc(100% + 2.25rem - 2.5rem);
  background: var(--color-line-strong);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s var(--ease);
}
.timeline__step.is-active:not(:last-child)::before,
.timeline__step.is-passed:not(:last-child)::before { transform: scaleY(1); }
.timeline__step h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.timeline__step p { color: var(--color-ink-soft); font-size: 0.95rem; }

.timeline-note {
  background: var(--color-ink);
  color: var(--color-on-ink);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 2vw, 2rem) clamp(1.5rem, 3vw, 2.25rem);
}
.timeline-note .eyebrow { color: var(--color-accent-light); margin-bottom: 0.6rem; }
.timeline-note p { font-weight: 600; font-size: 1.02rem; }

@media (min-width: 860px) {
  .timeline { grid-template-columns: repeat(5, 1fr); gap: 1.25rem; }
  .timeline__step { padding-left: 0; padding-top: 3.25rem; }
  .timeline__dot { left: 50%; top: 0; transform: translateX(-50%); }
  .timeline__step h3, .timeline__step p { text-align: center; }
  .timeline__step:not(:last-child)::before {
    left: calc(50% + 1.25rem); top: 1.24rem;
    width: calc(100% - 1.5rem); height: 1px;
    transform: scaleX(0);
    transform-origin: left;
  }
  .timeline__step.is-active:not(:last-child)::before,
  .timeline__step.is-passed:not(:last-child)::before { transform: scaleX(1); }
}

/* =========================================================
   Vergütung
   ========================================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  margin-top: clamp(2rem, 3vw, 3rem);
}
.pricing-stat {
  border: 1px solid var(--color-on-ink-line);
  border-radius: var(--radius-md);
  padding: clamp(1.75rem, 2.5vw, 2.25rem);
}
.pricing-stat .eyebrow { color: var(--color-accent-light); }
.pricing-stat__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.6rem + 1.6vw, 2.75rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.pricing-stat p { color: var(--color-on-ink-soft); font-size: 0.95rem; }

.pricing-stat--major {
  border: none;
  background: rgba(255, 255, 255, 0.05);
  padding: clamp(2.25rem, 3vw, 3rem);
}
.pricing-stat--major .pricing-stat__value {
  font-size: clamp(2.75rem, 2.1rem + 2.6vw, 3.75rem);
  color: var(--color-accent-light);
}
.pricing-stat--major p { color: var(--color-on-ink); font-size: 1.02rem; }

.pricing-note {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--color-on-ink-line);
  color: var(--color-on-ink-soft);
  font-size: 0.95rem;
  max-width: 40rem;
}
.pricing-actions { margin-top: 2.25rem; }
@media (max-width: 639px) {
  .pricing-actions { text-align: center; }
}

@media (min-width: 700px) {
  .pricing-grid { grid-template-columns: 0.8fr 1.2fr; align-items: center; }
}

/* =========================================================
   Aktueller Stand
   ========================================================= */
.status-band {
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  text-align: center;
}
.status-band .container { max-width: 46rem; }
.status-band p { font-size: var(--fs-lead); color: var(--color-ink); }
.status-band p + p { margin-top: 0.85rem; font-size: 0.98rem; color: var(--color-ink-soft); }

/* =========================================================
   Über uns
   ========================================================= */
.team-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  /* Verhindert, dass eine gestapelte Karte auf größeren Phones/kleinen Tablets
     unnötig breit wird, bevor der 700px-Zwei-Spalten-Breakpoint greift. */
  max-width: 26rem;
  /* Der Karten-BLOCK selbst wird zentriert (nicht die Section-Headline darüber –
     die bleibt im section-head unverändert linksbündig). */
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 3vw, 3rem);
}
/* Nur in Über uns: etwas knapperer Abstand zwischen Beschreibung und Karten –
   .section-head bleibt für alle anderen Sections unverändert. */
#ueber-uns .section-head { margin-bottom: clamp(1.75rem, 1.4rem + 1.4vw, 2.75rem); }
.team-card {
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: clamp(1.25rem, 1.6vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.team-card__photo {
  width: 100%;
  /* 4:5 statt 4:3 – passendes Seitenverhältnis für ein Kopf-und-Schultern-Portrait
     (siehe .team-card__photo--filled), bei beiden Karten gleich für Konsistenz. */
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-sm);
  background: linear-gradient(155deg, var(--color-surface-2), var(--color-surface));
  border: 1px dashed var(--color-line-strong);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--color-ink-soft);
  text-align: center;
  padding: 1rem;
}
/* Echtes Foto statt Platzhalter: gleicher Radius, kein Schatten (wie zuvor),
   nur Rahmen/Verlauf/Padding entfernt, damit das Bild randlos sitzt. */
.team-card__photo--filled {
  border: none;
  background: none;
  padding: 0;
  overflow: hidden;
}
.team-card__photo--filled img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card__photo-img--pepe { object-position: center 18%; }
.team-card__photo-img--julian { object-position: center 25%; }
.team-card__initials {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-ink);
  width: 3.6rem; height: 3.6rem;
  border-radius: 50%;
  background: var(--color-bg);
  border: 1px solid var(--color-line-strong);
  display: flex; align-items: center; justify-content: center;
}
.team-card__photo span.placeholder-label { font-size: 0.78rem; font-weight: 600; }
.team-card h3 { font-size: 1.25rem; }
.team-card__role { color: var(--color-accent-deep); font-size: 0.9rem; font-weight: 600; margin-top: 0.2rem; }
.team-card p.bio { color: var(--color-ink-soft); font-size: 0.95rem; margin-top: 0.3rem; }

.team-outro { max-width: 46rem; color: var(--color-ink-soft); font-size: var(--fs-lead); }

@media (min-width: 700px) {
  /* Feste Zielbreite statt 50/50-Streckung über die volle Content-Breite:
     zwei kompakte Karten (~348px je Spalte inkl. Gap) statt zweier riesiger
     Profilkarten. minmax(0,1fr) lässt beide Spalten trotzdem gleichmäßig
     schrumpfen, falls der verfügbare Platz (z.B. auf einem Tablet) knapper ist. */
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 45rem; }
}
@media (max-width: 639px) {
  /* Auf Wunsch beide Karten auch auf dem Handy nebeneinander statt gestapelt –
     dafür Innenabstand/Schrift kompakter, damit es bei ~160px Kartenbreite
     nicht überladen wirkt. */
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 100%; gap: 0.85rem; }
  .team-card { padding: 0.85rem; gap: 0.6rem; }
  .team-card h3 { font-size: 1.05rem; }
  .team-card__role { font-size: 0.82rem; }
  .team-card p.bio { font-size: 0.85rem; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { max-width: 48rem; }
.faq-item {
  border-bottom: 1px solid var(--color-line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__icon {
  position: relative;
  flex-shrink: 0;
  width: 22px; height: 22px;
}
.faq-item__icon::before, .faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--color-ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.faq-item__icon::before { left: 0; top: 50%; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq-item__icon::after { top: 0; left: 50%; height: 100%; width: 1.5px; transform: translateX(-50%); }
.faq-item[open] .faq-item__icon::after { opacity: 0; transform: translateX(-50%) rotate(90deg); }
.faq-item[open] summary { color: var(--color-accent-deep); }
.faq-item__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}
.faq-item[open] .faq-item__content { grid-template-rows: 1fr; }
.faq-item__content-inner { overflow: hidden; }
.faq-item__content-inner p {
  padding-bottom: 1.5rem;
  color: var(--color-ink-soft);
  max-width: 42rem;
}
.faq-legal-note {
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: var(--color-ink-soft);
  max-width: 42rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-line);
}

/* =========================================================
   Final CTA
   ========================================================= */
.final-cta { text-align: center; }
.final-cta .container { max-width: 44rem; display: flex; flex-direction: column; align-items: center; }
.final-cta h2 { font-size: var(--fs-h1); }
.final-cta p.lead { margin-inline: auto; margin-top: 1.25rem; margin-bottom: 2.25rem; }
.final-cta__actions { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.final-cta__email { font-size: 0.98rem; color: var(--color-on-ink-soft); }
.final-cta__email a { text-decoration: underline; text-underline-offset: 3px; color: var(--color-on-ink); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--color-ink);
  color: var(--color-on-ink-soft);
  border-top: 1px solid var(--color-on-ink-line);
  padding-block: clamp(2.5rem, 3vw, 3.5rem);
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-on-ink-line);
}
.footer-brand .brand { color: var(--color-on-ink); display: block; margin-bottom: 0.4rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.5rem 2rem; }
.footer-nav a { font-size: 0.92rem; transition: color 0.2s var(--ease); }
.footer-nav a:hover { color: var(--color-on-ink); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.85rem;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; }
.footer-legal a:hover { color: var(--color-on-ink); }

@media (min-width: 700px) {
  .footer-top { flex-direction: row; align-items: center; justify-content: space-between; }
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* =========================================================
   Rechtsseiten (Impressum / Datenschutz)
   ========================================================= */
.legal-hero { padding-block: clamp(3rem, 3vw, 4.5rem) clamp(2rem, 3vw, 3rem); }
.legal-hero h1 { font-size: clamp(2.1rem, 1.8rem + 1.6vw, 3rem); }
.legal-hero p.lead { margin-top: 1rem; }
.legal-content { padding-bottom: var(--space-section); }
.legal-content .container { max-width: 46rem; }
.legal-content h2 {
  font-size: 1.35rem;
  margin-top: 2.75rem;
  margin-bottom: 0.9rem;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 {
  font-size: 1.05rem;
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
}
.legal-content p, .legal-content li { color: var(--color-ink-soft); margin-bottom: 0.9rem; }
.legal-content li { list-style: disc; margin-left: 1.25rem; }
.legal-content strong { color: var(--color-ink); }
/* =========================================================
   Storyline-Motiv & Section-Handoffs
   Ein wiederkehrendes Element (feine Linie + Punkt) verbindet die
   Sections. Es wechselt seine Funktion: Scroll-Cue im Hero,
   Verbindungslinie zwischen Aufgaben/Prozess-Schritten, und
   Übergangs-Akzent, der durch den Weißraum zwischen Sections führt.
   ========================================================= */
.thread { display: block; position: relative; }

/* Hero: Scroll-Cue */
.thread--cue { display: inline-flex; margin-top: 2.25rem; }
.thread__cue {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-ink-faint);
}
.thread__cue svg { width: 14px; height: 14px; color: var(--color-accent); animation: threadCueBob 2.2s ease-in-out infinite; }
@keyframes threadCueBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* Übergreifende Verbindungslinie: neutral -> Rost, mit Punkt am Ende */
.thread--handoff {
  --reach: calc(var(--space-section-bottom) + 1rem);
  position: absolute;
  width: 1px;
  height: var(--reach);
  background: var(--color-line-strong);
  overflow: visible;
  pointer-events: none;
  z-index: 2;
}
.thread--handoff::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1s var(--ease-soft) 0.25s;
}
.thread--handoff.is-visible::after { transform: scaleY(1); }
.thread--handoff::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  transform: translateX(-50%) scale(0);
  transition: transform 0.4s var(--ease-soft) 1.05s;
}
.thread--handoff.is-visible::before { transform: translateX(-50%) scale(1); }

/* Hero -> Modell: hängt unten am Produkt-Visual und führt bis nah an "01 DAS MODELL" heran.
   --reach ist immer (Section-Bottom-Padding + 1rem), überbrückt also bei jeder Viewport-
   Breite zuverlässig den Übergang, egal wie sich die Abstände per clamp() verändern. */
/* left:6% = exakt die linke Kante von .hero__book (siehe Hero-Styles) – die Linie
   fällt sichtbar von der Buchkante herab, statt an einem beliebigen Punkt zu hängen */
.hero__visual .thread--handoff { left: 6%; bottom: calc(-1 * var(--reach)); }

/* Modell -> Full-Service: die Rail-Linie der Aufgabenliste läuft weiter nach unten */
#modell .model-stream { position: relative; }
.model-stream .thread--from-content { left: 2px; bottom: calc(-1 * var(--reach)); }

/* Full-Service -> Content-Integration: die Linie reicht bis an die Kante heran, der dunkle
   Produkt-Visual selbst wandert zusätzlich leicht nach oben in den Whitespace (Overlap) */
#leistungen .container { position: relative; }
/* Mobil/Tablet: Prozess-Schritte sind volle Breite gestapelt, Mitte passt.
   Ab 1080px steht "04" in der letzten von vier Spalten (75%–100%) – die Linie
   rückt auf deren Mitte, damit sie sichtbar aus dem letzten Prozessschritt kommt. */
.thread--center { --reach: calc(var(--space-section-bottom) - 0.5rem); left: 50%; bottom: calc(-1 * var(--reach)); }
@media (min-width: 1080px) {
  .thread--center { left: 87.5%; }
}
.integration .container { margin-top: -1.5rem; }
@media (min-width: 640px) {
  .integration .container { margin-top: -2.25rem; }
}
@media (min-width: 960px) {
  .integration .container { margin-top: -3rem; }
}

/* Content-Integration -> Proof: hängt unten links am Visual, führt zur nächsten Eyebrow */
.integration .thread--from-left { left: 14%; bottom: calc(-1 * var(--reach)); }

/* Proof -> Ablauf: der zweite Screenshot selbst ragt weiter herunter, die Linie begleitet ihn
   und überbrückt zuverlässig das größere --lg-Bottom-Padding dieser Section */
/* Hängt an .proof-panel (nach der Caption), rechts ausgerichtet auf den überlappenden
   zweiten Screenshot – dadurch kommt die Linie sichtbar aus diesem Visual, statt
   irgendwo in der Section-Mitte zu schweben. */
.proof-panel { position: relative; }
.thread--from-right {
  --reach: calc(var(--space-section-lg-bottom) + 1rem);
  right: 27%;
  bottom: calc(-1 * var(--reach));
}

/* Vergütung: Fortsetzungs-Akzent oben im Content, sobald der Vorhang lüftet */
.thread--continue {
  width: 1px;
  height: 2.5rem;
  background: var(--color-on-ink-line);
  margin-bottom: 1.75rem;
  overflow: hidden;
}
.thread--continue::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-accent-light);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.9s var(--ease-soft);
}
.thread--continue.is-visible::after { transform: scaleY(1); }

/* Vergütung -> Aktueller Stand: ragt von der dunklen Section in den hellen Streifen.
   left:14% statt zentriert, weil der "Kooperation besprechen"-Button (wie der Rest
   der Vergütungs-Inhalte) linksbündig sitzt – der Connector führt so sichtbar von
   diesem Button aus nach unten, statt frei in der Mitte zu schweben. */
.status-band { position: relative; }
.thread--pokeup {
  --reach: calc(var(--space-section-bottom) - 1.75rem);
  position: absolute;
  left: 14%;
  top: calc(-1 * var(--reach));
  width: 1px;
  height: var(--reach);
  background: var(--color-accent);
  z-index: 2;
  pointer-events: none;
}
.thread--pokeup::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -3px;
  width: 6px; height: 6px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--color-accent);
}

/* Aktueller Stand -> Über uns: kleine Interpunktion statt langer Linie (Farbe/Tint
   übernimmt hier den Großteil der Verbindung, der Übergang bleibt bewusst ruhig) */
.thread--dot {
  position: absolute;
  left: 50%;
  bottom: -0.6rem;
  width: 6px; height: 6px;
  transform: translateX(-50%) scale(0);
  border-radius: 50%;
  background: var(--color-accent);
  transition: transform 0.5s var(--ease-soft);
  z-index: 2;
  pointer-events: none;
}
.thread--dot.is-visible { transform: translateX(-50%) scale(1); }

/* FAQ -> Final CTA: sehr zurückhaltender Akzent, der zur dunklen Section hinführt */
.thread--faq-end {
  display: block;
  width: 1px;
  height: 1.75rem;
  margin: 1.5rem auto 0;
  background: var(--color-line-strong);
  overflow: hidden;
}
.thread--faq-end::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.8s var(--ease-soft);
}
.thread--faq-end.is-visible::after { transform: scaleY(1); }

/* Final CTA: kleiner Schlussakzent des roten Fadens */
.thread__mark {
  display: block;
  width: 46px;
  height: 2px;
  background: var(--color-accent);
  margin-bottom: 1.75rem;
}

/* Länge der Handoff-Linien ergibt sich aus --reach (siehe oben), das direkt an
   --space-section(-lg)-bottom gekoppelt ist – dadurch bleibt die Überbrückung bei
   jeder Viewport-Breite automatisch korrekt, ganz ohne feste Breakpoint-Werte. */

@media (prefers-reduced-motion: reduce) {
  .thread__cue svg { animation: none; }
  .thread--handoff::after { transform: scaleY(1); }
  .thread--handoff::before { transform: translateX(-50%) scale(1); }
}

/* =========================================================
   404 (optional, gleiche Basis wie Rechtsseiten)
   ========================================================= */
.error-page { min-height: 60vh; display: flex; align-items: center; }
.mt-lg { margin-top: 2rem; }
