

:root {
  
  --accent: #d21f58;          
  --accent-2: #e8467a;        
  --accent-tint: #fce8ef;     
  --slate: #355168;           
  --slate-deep: #26404f;      
  --slate-ink: #1c3140;
  --dark-bg: #355168;         
  --dark-solid: #355168;      

  --ink: #1a1a1a;
  --ink-2: #444444;
  --ink-3: #6a6a6a;   
  --line: #e8e8e8;
  --line-2: #f0f0f0;

  --paper: #ffffff;
  --paper-2: #faf9f8;
  --paper-3: #f4f2f0;

  
  --fd: 'Inter Tight', system-ui, -apple-system, sans-serif;
  --fb: 'Inter', system-ui, -apple-system, sans-serif;

  
  --wrap: 1160px;
  --wrap-narrow: 820px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-sm: 12px;

  
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.6s;

  --sh-1: 0 1px 2px rgba(26,26,26,.04), 0 8px 24px rgba(26,26,26,.06);
  --sh-2: 0 2px 6px rgba(26,26,26,.05), 0 24px 60px rgba(26,26,26,.10);
  --sh-accent: 0 18px 50px -18px rgba(210,31,88,.55);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scrollbar-color: var(--slate) transparent;
}

body {
  font-family: var(--fb);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
em { font-style: normal; }
strong { font-weight: 600; }
::selection { background: var(--accent); color: #fff; }

.tabular { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.chapter {
  position: relative;
  padding-block: clamp(80px, 12vw, 168px);
}
.chapter--light { background: var(--paper); color: var(--ink); }
.chapter--paper { background: var(--paper-2); color: var(--ink); }
.chapter--dark  { background: var(--dark-bg); color: #fff; }

.chapter--paper::before,
.chapter--paper:has(+ .chapter--light)::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(210,31,88,.6), transparent);
}
.chapter--paper::before { top: 0; }
.chapter--paper:has(+ .chapter--light)::after { bottom: 0; }

.sec-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 60px); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .sec-kicker { justify-content: center; }

.sec-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--fb);
  font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.sec-kicker i { width: 26px; height: 1.5px; background: var(--accent); display: inline-block; }
.sec-kicker--light { color: var(--accent-2); }
.sec-kicker--light i { background: var(--accent-2); }

.sec-title {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.sec-title em { color: var(--accent); font-style: normal; font-weight: 600; }
.chapter--dark .sec-title em { color: var(--accent-2); }

.sec-sub {
  margin-top: 20px;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 620px;
}
.chapter--dark .sec-sub { color: rgba(255,255,255,.93); }

.sec-title, .resonance__title, .probe__title, .subpage__title, .err__title,
.prose h1, .prose h2, .prose h3, .fb-step > h2, .voices__feature-q,
.plan__name, .post__title, .diagnose__lead { text-wrap: balance; }
.sec-sub, .hero__lead, .problem__intro, .resonance__pre, .resonance__out,
.prose p, .prose li, .fb-step__desc, .deliver__card p, .plan__for,
.legal-cta p, .diagnose__note, .insight p { text-wrap: pretty; }

.sec-cta { margin-top: clamp(40px, 6vw, 64px); }
.sec-cta--left { text-align: left; }

.btn {
  --bpx: 26px;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px var(--bpx);
  font-family: var(--fb); font-weight: 600; font-size: 15px; letter-spacing: .01em;
  border-radius: 100px;
  will-change: transform;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), background .35s var(--ease), color .35s var(--ease);
  white-space: nowrap;
}
.btn__arrow { font-style: normal; transition: transform .45s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(5px); }

.btn--accent { background: var(--accent); color: #fff; box-shadow: var(--sh-accent); }
.btn--accent:hover { background: #b81a4d; box-shadow: 0 22px 60px -16px rgba(210,31,88,.7); }
.btn--accent::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28); pointer-events: none;
}

.btn--ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--accent); color: var(--accent); }

.btn--nav {
  padding: 11px 22px; font-size: 14px;
  background: var(--accent); color: #fff; box-shadow: 0 10px 30px -12px rgba(210,31,88,.6);
}
.btn--nav:hover { background: #b81a4d; }

.btn--lg { --bpx: 34px; padding-block: 18px; font-size: 16px; }
.btn--xl { --bpx: 40px; padding-block: 21px; font-size: 17px; }
.btn--block { display: flex; width: 100%; }

.preloader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--slate);
  display: grid; place-items: center;
  color: var(--accent-2);
}
.preloader.is-done { opacity: 0; visibility: hidden; transition: opacity .7s var(--ease), visibility .7s; }
.preloader__inner { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.preloader__wave { width: 200px; height: 66px; filter: drop-shadow(0 0 16px rgba(232,70,122,.6)); }
.preloader__word {
  font-family: var(--fd); font-weight: 500; letter-spacing: .5em; text-transform: uppercase;
  font-size: 13px; color: rgba(255,255,255,.9); padding-left: .5em;
}

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  transition: transform .5s var(--ease);
}
.nav__wrap {
  max-width: var(--wrap); margin-inline: auto;
  margin-top: 16px;
  padding: 10px 12px 10px 20px;
  display: flex; align-items: center; gap: 24px;
  border-radius: 100px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 10px 40px -20px rgba(26,26,26,.4);
  transition: background .4s var(--ease), box-shadow .4s var(--ease), transform .4s var(--ease);
  width: calc(100% - 2 * var(--gutter));
  margin-inline: auto;
  will-change: transform;
}

.nav--scrolled .nav__wrap { transform: translateY(-7px); }

.nav__brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.nav__mark { color: var(--accent); width: 30px; display: block; }
.nav__mark svg { width: 100%; height: auto; }
.nav__brand-text { font-family: var(--fd); font-weight: 600; font-size: 15px; letter-spacing: -.01em; }

.nav__links { display: flex; gap: 30px; margin-left: auto; }
.nav__links a {
  position: relative; font-size: 14.5px; font-weight: 500; color: var(--ink-2);
  transition: color .3s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 100%;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.nav__links a:hover { color: var(--accent); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav .btn--nav { margin-left: 4px; }

.nav__burger { display: none; width: 40px; height: 40px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; margin-left: auto; }
.nav__burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .4s var(--ease), opacity .3s; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 85;
  background: var(--slate);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .45s var(--ease), transform .45s var(--ease), visibility .45s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu__links { display: flex; flex-direction: column; gap: 8px; text-align: center; width: min(360px, 82vw); }
.mobile-menu__links a { font-family: var(--fd); font-size: 26px; font-weight: 600; color: #fff; padding: 12px; }
.mobile-menu__links a.btn { margin-top: 20px; font-family: var(--fb); font-size: 17px; }

.hero {
  min-height: 100svh;
  display: flex; align-items: center;
  padding-block: 128px 168px;
  overflow: hidden;
  background: var(--dark-bg);
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.hero__grain {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.hero__vignette {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(120% 80% at 50% 30%, transparent 40%, rgba(20,34,44,.55) 100%);
}
.hero__inner { position: relative; z-index: 5; max-width: 1000px; }

.hero__eyebrow {
  font-size: 12.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.85); margin-bottom: 26px;
}
.hero__title {
  font-family: var(--fd); font-weight: 600;
  font-size: clamp(52px, 10vw, 122px);
  line-height: 0.96; letter-spacing: -0.028em;
  color: #fff;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: 0.14em; margin-bottom: -0.14em; }
.hero__title--landing { font-size: clamp(38px, 6.4vw, 84px); line-height: 1.0; }
.hero__title .line > * , .hero__title .line { will-change: transform; }
.resonate { position: relative; color: var(--accent-2); font-style: normal; display: inline-block; padding-right: .06em; }

.hero__lead {
  margin-top: 30px; max-width: 640px;
  font-size: clamp(18px, 2.2vw, 23px); line-height: 1.5;
  color: #fff;
}
.hero__lead strong { color: #fff; font-weight: 600; }

.hero__values {
  margin-top: 46px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  max-width: 900px;
}
.hero__value { display: flex; flex-direction: column; gap: 8px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.16); }
.hero__value-k { font-family: var(--fd); font-weight: 600; font-size: 16px; color: var(--accent-2); }
.hero__value-t { font-size: 14.5px; line-height: 1.5; color: rgba(255,255,255,.9); }

.hero__cta { margin-top: 50px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.hero__cta-note { font-size: 13.5px; color: rgba(255,255,255,.9); letter-spacing: .01em; line-height: 1.5; text-align: center; margin: 0; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 68px; transform: translateX(-50%); z-index: 6;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,.78); font-size: 10.5px; letter-spacing: .3em; text-transform: uppercase;
}
.hero__scroll-line { width: 1px; height: 42px; background: linear-gradient(rgba(255,255,255,.5), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content:""; position:absolute; top:-40%; left:0; width:100%; height:40%; background:var(--accent-2); animation: scrolldot 2.2s var(--ease) infinite; }
@keyframes scrolldot { 0%{ transform: translateY(0);} 100%{ transform: translateY(240%);} }

.problem__intro {
  font-family: var(--fd); font-weight: 500;
  font-size: clamp(20px, 2.6vw, 27px); line-height: 1.45; letter-spacing: -.01em;
  max-width: 780px; color: var(--ink);
}
.problem__list { list-style: none; margin: clamp(40px,6vw,64px) 0; max-width: 820px; }
.problem__list li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px 0; border-bottom: 1px solid var(--line);
  font-size: clamp(17px, 2vw, 21px); line-height: 1.4; font-weight: 500; color: var(--ink);
}
.problem__dot { flex-shrink: 0; width: 9px; height: 9px; margin-top: 12px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px var(--accent-tint); }

.problem__loss {
  position: relative; overflow: hidden;
  margin: clamp(40px,6vw,72px) 0; padding: clamp(44px,6vw,72px) clamp(30px,5vw,56px);
  border-radius: var(--radius);
  background: var(--dark-bg); color: #fff;
  box-shadow: var(--sh-2); text-align: center;
}
.problem__loss::before {
  content: ""; position: absolute; left: 50%; top: 54%; transform: translate(-50%, -50%);
  width: 62%; height: 130%; pointer-events: none;
  background: radial-gradient(closest-side, rgba(232,70,122,.30), transparent 72%);
}
.problem__loss-label { position: relative; font-size: 15px; color: rgba(255,255,255,.85); letter-spacing: .01em; }
.problem__loss-num {
  position: relative;
  font-family: var(--fd); font-weight: 700;
  font-size: clamp(44px, 9vw, 94px); line-height: 1; letter-spacing: -.03em;
  color: var(--accent-2); margin: 14px 0 8px;
  display: flex; align-items: baseline; justify-content: center; gap: 8px; flex-wrap: wrap;
  text-shadow: 0 0 46px rgba(232,70,122,.45);
}
.problem__loss-cur { font-size: .4em; font-weight: 600; letter-spacing: 0; color: rgba(255,255,255,.82); }
.problem__loss-sub { position: relative; font-family: var(--fd); font-size: 20px; font-weight: 500; color: #fff; }

.diagnose { margin: clamp(48px,7vw,88px) 0; }
.diagnose__lead { font-family: var(--fd); font-weight: 600; font-size: 22px; margin-bottom: 26px; }
.diagnose__grid { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.qcard {
  position: relative; display: flex; align-items: baseline; gap: 22px;
  padding: 30px 32px 32px; border-radius: 18px; overflow: hidden;
  background: var(--paper); border: 1px solid var(--line);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s var(--ease);
}
.qcard::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(130% 130% at 100% 0%, rgba(210,31,88,.07), transparent 46%);
  opacity: 0; transition: opacity .5s var(--ease);
}
.qcard::after {   
  content: ""; position: absolute; left: 32px; right: 32px; bottom: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(210,31,88,.12));
  transform: scaleX(0); transform-origin: left; transition: transform 1s var(--ease);
}
.qcard.is-in::after { transform: scaleX(1); }
.qcard:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: rgba(210,31,88,.22); }
.qcard:hover::before { opacity: 1; }
.qcard__n { flex-shrink: 0; font-family: var(--fd); font-weight: 700; font-size: 21px; line-height: 1; letter-spacing: .02em; color: var(--accent); font-variant-numeric: tabular-nums; }
.qcard__q { font-family: var(--fd); font-weight: 600; font-size: 18px; line-height: 1.32; letter-spacing: -.01em; color: var(--ink); }
.diagnose__note { margin-top: 26px; font-size: 16px; color: var(--ink-2); max-width: 620px; }

.diag2 { display: grid; grid-template-columns: minmax(0, 380px) 1fr; gap: clamp(28px,4vw,52px); align-items: center; max-width: 960px; margin: clamp(28px,4vw,44px) auto 0; text-align: left; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--sh-1); padding: clamp(22px,3.4vw,40px); }
.diag2__side { display: flex; flex-direction: column; gap: clamp(15px,2vw,21px); }
.diag2__lead { font-family: var(--fd); font-weight: 700; font-size: clamp(19px,2.3vw,24px); letter-spacing: -.02em; color: var(--ink); margin: 0; }
.diag2__note { margin: 3px 0 0; font-size: 15px; line-height: 1.6; color: var(--ink-2); }
.diag2__mock { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: var(--sh-2); }
.diag2__chrome { display: flex; align-items: center; gap: 7px; padding: 11px 15px; background: var(--paper-2); border-bottom: 1px solid var(--line); }
.diag2__chrome i { width: 10px; height: 10px; border-radius: 50%; background: #cdc9c4; flex-shrink: 0; }
.diag2__chrome i:first-child { background: var(--accent); }
.diag2__url { margin-left: 8px; height: 15px; flex: 1; max-width: 190px; border-radius: 8px; background: #fff; border: 1px solid var(--line); }
.diag2__nav { display: flex; align-items: center; gap: 10px; padding: 11px 18px; border-bottom: 1px solid var(--line); background: #fff; }
.diag2__logo { width: 22px; height: 22px; border-radius: 6px; background: var(--accent); }
.diag2__navln { height: 7px; width: 32px; border-radius: 4px; background: #d3cfca; }
.diag2__navln:last-child { margin-left: auto; width: 44px; height: 17px; border-radius: 20px; background: var(--slate); }
.diag2__screen { padding: 20px; display: flex; flex-direction: column; gap: 18px; }
.diag2__zone { position: relative; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; padding: 16px; border-radius: 11px; background: var(--paper-2); border: 1px solid #eae7e3; }
.diag2__pin { position: absolute; top: -11px; left: -11px; width: 27px; height: 27px; border-radius: 50%; background: var(--accent); color: #fff; font-family: var(--fd); font-weight: 700; font-size: 13px; display: grid; place-items: center; box-shadow: 0 5px 14px rgba(210,31,88,.4), 0 0 0 4px #fff; z-index: 2; }
.diag2__zone--hero { flex-direction: column; align-items: flex-start; gap: 11px; padding-block: 22px; }
.diag2__ln { display: block; border-radius: 7px; }
.diag2__ln--t { width: 78%; height: 15px; background: var(--slate); }
.diag2__ln--s { width: 52%; height: 9px; background: #c7c2bc; }
.diag2__btn { width: 132px; height: 34px; border-radius: 40px; background: var(--accent); box-shadow: 0 6px 14px -4px rgba(210,31,88,.5); }
.diag2__zone--feats { justify-content: space-between; gap: 12px; }
.diag2__card { flex: 1; display: flex; flex-direction: column; gap: 7px; padding: 12px 11px; background: #fff; border: 1px solid var(--line); border-radius: 8px; }
.diag2__ic { width: 20px; height: 20px; border-radius: 6px; background: var(--accent-tint); border: 1.5px solid rgba(210,31,88,.45); }
.diag2__cl { height: 6px; width: 100%; border-radius: 3px; background: #d7d3ce; }
.diag2__cl--short { width: 62%; }
.diag2__avas { display: flex; }
.diag2__ava { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg,#c9c4be,#ded9d3); border: 2px solid #fff; }
.diag2__ava:not(:first-child) { margin-left: -11px; }
.diag2__stars { margin-left: auto; color: var(--accent); font-size: 15px; letter-spacing: 2px; }
.diag2__list { list-style: none; display: flex; flex-direction: column; gap: 17px; }
.diag2__list li { display: flex; align-items: center; gap: 15px; font-family: var(--fd); font-weight: 600; font-size: clamp(16px,1.9vw,19px); line-height: 1.3; color: var(--slate); letter-spacing: -.01em; }
.diag2__n { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--accent-tint); color: var(--accent); font-weight: 700; font-size: 14px; display: grid; place-items: center; }

.insight {
  margin: clamp(40px,6vw,72px) 0 0; padding: clamp(20px,3vw,32px) 0;
}
.insight p { font-family: var(--fd); font-weight: 600; font-size: clamp(22px, 3.2vw, 36px); line-height: 1.24; letter-spacing: -.02em; }
.insight p + p { margin-top: 12px; }
.insight em { color: var(--accent); font-style: normal; }

.resonance {
  overflow: hidden; text-align: center;
  background: var(--dark-bg);
}
.resonance__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; opacity: .95; }
.resonance__inner { position: relative; z-index: 5; max-width: 900px; }
.resonance__pre { font-size: clamp(15px,1.9vw,18px); line-height: 1.62; color: rgba(255,255,255,.85); max-width: 680px; margin-inline: auto; }
.resonance__title {
  font-family: var(--fd); font-weight: 700;
  font-size: clamp(34px, 6.2vw, 74px); line-height: 1.04; letter-spacing: -.03em;
  margin: clamp(34px,5vw,54px) 0; color: #fff;
}
.resonance__title .klingt { color: rgba(255,255,255,.68); }
.resonance__title .schwingt { color: var(--accent-2); font-style: normal; text-shadow: 0 0 44px rgba(232,70,122,.45); }
.resonance__out { font-size: clamp(17px, 2.3vw, 23px); line-height: 1.5; color: #fff; max-width: 640px; margin-inline: auto; }
.resonance__out em { color: #fff; font-style: normal; }

.team__intro { font-family: var(--fd); font-weight: 500; font-size: clamp(18px,2.3vw,23px); line-height: 1.5; max-width: 760px; margin-bottom: clamp(40px,6vw,64px); color: var(--ink); }
.team__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); }
.person { display: flex; flex-direction: column; gap: 26px; }
.person__media { position: relative; width: 132px; height: 132px; flex-shrink: 0; }
.person__media img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; position: relative; z-index: 2; }
.person__ring { position: absolute; inset: -8px; border-radius: 50%; border: 1.5px solid var(--accent); opacity: .5; z-index: 1; animation: ringpulse 4s var(--ease) infinite; }
@keyframes ringpulse { 0%,100%{ transform: scale(1); opacity:.5;} 50%{ transform: scale(1.06); opacity:.18;} }
.person__name { font-family: var(--fd); font-weight: 700; font-size: clamp(26px,3vw,34px); letter-spacing: -.02em; }
.person__role { color: var(--accent); font-weight: 600; font-size: 15px; margin: 4px 0 18px; }
.person__body p { color: var(--ink-2); font-size: 16px; line-height: 1.62; }
.person__body p + p { margin-top: 13px; }

.team__tagline { margin-top: clamp(48px,7vw,84px); display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center; }
.team__merge { width: min(420px, 80vw); height: 70px; display: block; }
.team__merge canvas { width: 100%; height: 100%; }
.team__tagline p { font-family: var(--fd); font-weight: 600; font-size: clamp(22px,3vw,32px); letter-spacing: -.02em; }
.team__tagline em { color: var(--accent); font-style: normal; }

.steps { list-style: none; counter-reset: s; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px,2.2vw,28px); position: relative; align-items: stretch; }
.step { display: flex; position: relative; z-index: 1; padding: 0; border: 0; }
.step__body {
  width: 100%; max-width: none; position: relative; overflow: hidden;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(30px,3.2vw,46px) clamp(26px,2.8vw,38px);
  box-shadow: 0 1px 2px rgba(20,30,40,.03);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s var(--ease);
}
.step__body::before {  
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(130% 130% at 100% 0%, rgba(210,31,88,.07), transparent 46%);
  opacity: 0; transition: opacity .5s var(--ease);
}
.step:hover .step__body { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: rgba(210,31,88,.22); }
.step:hover .step__body::before { opacity: 1; }
.step__num {
  position: relative; display: block; text-align: center;
  font-family: var(--fd); font-weight: 700; font-size: clamp(42px,4.6vw,56px);
  line-height: 1; letter-spacing: -.02em; color: var(--accent); margin-bottom: 14px;
}
.step__title { position: relative; text-align: center; font-family: var(--fd); font-weight: 700; font-size: clamp(20px,2.2vw,26px); letter-spacing: -.02em; margin-bottom: 20px; color: var(--ink); }
.step__body p { position: relative; text-align: left; color: var(--ink-2); font-size: 15.5px; line-height: 1.62; max-width: none; margin: 0; }
.step__body p + p { margin-top: 14px; }

.process__timeline { margin-top: clamp(40px,5vw,60px); display: flex; align-items: center; gap: 20px; }
.process__timeline-line { flex: 1; height: 2px; background: repeating-linear-gradient(90deg, var(--accent) 0 14px, transparent 14px 24px); border-radius: 2px; max-width: 180px; }
.process__timeline p { font-family: var(--fd); font-size: clamp(18px,2.4vw,24px); font-weight: 500; }
.process__timeline strong { color: var(--accent); font-weight: 700; }

.deliver__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2.4vw, 26px); }
.deliver__card {
  position: relative; padding: clamp(30px,3.4vw,44px); border-radius: var(--radius);
  background: var(--paper-2); border: 1px solid var(--line); overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.deliver__card::after {
  content:""; position:absolute; inset:0; border-radius:inherit; pointer-events:none;
  box-shadow: inset 0 0 0 1px rgba(210,31,88,0); transition: box-shadow .5s var(--ease);
}
.deliver__card:hover { transform: translateY(-6px); box-shadow: var(--sh-2); border-color: transparent; }
.deliver__card:hover::after { box-shadow: inset 0 0 0 1.5px rgba(210,31,88,.32); }
.deliver__num { font-family: var(--fd); font-weight: 700; font-size: 15px; color: var(--accent); letter-spacing: .1em; }
.deliver__card h3 { font-family: var(--fd); font-weight: 700; font-size: clamp(21px,2.6vw,27px); letter-spacing: -.02em; margin: 14px 0 12px; }
.deliver__card p { color: var(--ink-2); font-size: 15.5px; line-height: 1.6; }
.deliver__close { margin-top: clamp(40px,6vw,64px); font-family: var(--fd); font-weight: 500; font-size: clamp(19px,2.6vw,26px); line-height: 1.45; letter-spacing: -.01em; max-width: 860px; }
.deliver__close strong { color: var(--accent); }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 1.8vw, 24px); align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column;
  padding: clamp(28px,2.6vw,38px); border-radius: var(--radius);
  background: var(--paper); border: 1px solid var(--line);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.plan:hover { transform: translateY(-5px); box-shadow: var(--sh-2); }
.plan--featured {
  background: linear-gradient(180deg, #fff, #fff);
  border: 1.5px solid var(--accent);
  box-shadow: var(--sh-accent);
  transform: translateY(-10px);
}
.plan--featured:hover { transform: translateY(-16px); }

.plan__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: 12px; font-weight: 600; letter-spacing: .04em;
  padding: 6px 16px; border-radius: 100px; white-space: nowrap; box-shadow: 0 8px 20px -8px rgba(210,31,88,.6);
}
.plan__badge--soft { background: var(--slate); color: #fff; box-shadow: none; }
.plan__name { font-family: var(--fd); font-weight: 700; font-size: 24px; letter-spacing: -.02em; }
.plan__tag { color: var(--ink-3); font-size: 14px; margin-top: 8px; line-height: 1.4; min-height: 40px; }
.plan__for { margin: 20px 0; font-size: 14.5px; line-height: 1.55; color: var(--ink-2); padding: 16px; background: var(--paper-2); border-radius: var(--radius-sm); }
.plan__for strong { color: var(--ink); }
.plan__list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; flex: 1; }
.plan__list li { position: relative; padding-left: 28px; font-size: 14.5px; line-height: 1.45; color: var(--ink-2); }
.plan__list li::before {
  content:""; position:absolute; left:0; top:2px; width:18px; height:18px; border-radius:50%;
  background: var(--accent-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d21f58' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat;
}
.plan__price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 22px; }
.plan__cur { font-family: var(--fd); font-weight: 600; font-size: 16px; color: var(--ink-3); }
.plan__amt { font-family: var(--fd); font-weight: 800; font-size: clamp(38px,4vw,48px); letter-spacing: -.03em; line-height: 1; color: var(--ink); }
.plan--featured .plan__amt { color: var(--accent); }
.plan__guarantee { font-size: 13px; line-height: 1.5; color: var(--ink-3); margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.plan__guarantee strong { color: var(--ink-2); }
.plan__support { font-size: 12.5px; line-height: 1.5; color: var(--ink-3); margin-top: 16px; padding: 14px; background: var(--paper-2); border-radius: var(--radius-sm); }
.plan__support strong { color: var(--accent); }

.voices { background: var(--dark-bg); overflow: hidden; }
.voices__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; opacity: .55; }
.voices > .wrap { position: relative; z-index: 5; }
.voices__feature { text-align: center; max-width: 880px; margin: 0 auto clamp(44px,6vw,72px); }
.voices__feature-q { font-family: var(--fd); font-weight: 600; font-size: clamp(24px,3.6vw,40px); line-height: 1.25; letter-spacing: -.02em; color: #fff; }
.voices__big { color: var(--accent-2); font-size: 1.19em; font-weight: 800; display: inline-block; margin-top: 6px; text-shadow: 0 0 40px rgba(232,70,122,.4); }
.voices__feature-a { margin-top: 22px; font-size: 15px; color: rgba(255,255,255,.85); letter-spacing: .02em; }

.voices__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; grid-auto-rows: 1fr; }
.vcard {
  display: flex; flex-direction: column;
  padding: 30px 28px; border-radius: var(--radius);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(4px);
  transition: transform .5s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
}
.vcard:hover { transform: translateY(-4px); background: rgba(255,255,255,.08); border-color: rgba(232,70,122,.4); }
.vcard blockquote { font-size: 15px; line-height: 1.6; color: #fff; }
.vcard blockquote::before { content: "\201C"; color: var(--accent-2); font-family: var(--fd); font-size: 40px; line-height: 0; vertical-align: -12px; margin-right: 4px; }
.vcard figcaption { margin-top: auto; padding-top: 20px; font-family: var(--fd); font-weight: 600; font-size: 15px; color: #fff; display: flex; flex-direction: column; }
.vcard figcaption span { font-family: var(--fb); font-weight: 400; font-size: 13px; color: rgba(255,255,255,.78); margin-top: 2px; }

.compare__rows { display: grid; gap: clamp(24px,3.4vw,34px); max-width: 900px; margin-left: auto; margin-right: auto; }
.crow { display: block; }
.crow__role { display: block; text-align: center; font-family: var(--fb); font-weight: 600; font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; }
.crow__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.crow__box { padding: 24px 26px; border-radius: 14px; text-align: left; }
.crow__klingt { background: #f5f5f5; color: var(--ink-3); }
.crow__schwingt { background: #fff; border: 1px solid var(--accent); border-left-width: 4px; color: var(--ink); box-shadow: var(--sh-1); }
.crow__kind { font-family: var(--fb); font-size: 10.5px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 10px; }
.crow__klingt .crow__kind { color: var(--ink-3); }
.crow__schwingt .crow__kind { color: var(--accent); }
.crow__txt { font-family: var(--fd); font-weight: 500; font-size: clamp(15px,1.6vw,18px); line-height: 1.42; }

.problem__list li, .crow__box { transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s var(--ease); }
.problem__list li:hover, .crow__box:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: rgba(210,31,88,.22); }
.crow__klingt { border: 1px solid transparent; }

.ba { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(16px,3vw,40px); align-items: stretch; }
.ba__col { padding: clamp(28px,3.4vw,44px); border-radius: var(--radius); }
.ba__col--before { background: var(--paper); border: 1px solid var(--line); }
.ba__col--after { background: var(--slate); color: #fff; box-shadow: var(--sh-2); }
.ba__h { font-family: var(--fd); font-weight: 700; font-size: 22px; margin-bottom: 22px; letter-spacing: -.01em; }
.ba__col--before .ba__h { color: var(--ink-3); }
.ba__col--after .ba__h { color: var(--accent-2); }
.ba__col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.ba__col li { position: relative; padding-left: 26px; font-size: 15.5px; line-height: 1.45; }
.ba__col--before li { color: var(--ink-2); }
.ba__col--before li::before { content:"–"; position:absolute; left:4px; color: var(--ink-3); }
.ba__col--after li { color: #fff; }
.ba__col--after li::before { content:""; position:absolute; left:0; top:6px; width:14px; height:14px; border-radius:50%; background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/9px no-repeat; }
.ba__arrow { display: grid; place-items: center; color: var(--accent); }
.ba__arrow span { width: 44px; height: 44px; border-radius: 50%; background: var(--accent-tint); display: grid; place-items: center; position: relative; }
.ba__arrow span::after { content:"→"; font-size: 20px; color: var(--accent); }

.probe { text-align: center; overflow: hidden; background: var(--dark-bg); }
.probe__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; opacity: .8; }
.probe__inner { position: relative; z-index: 5; max-width: 780px; }
.probe .sec-kicker { justify-content: center; }
.probe__title { font-family: var(--fd); font-weight: 700; font-size: clamp(32px,5.2vw,60px); line-height: 1.06; letter-spacing: -.03em; color: #fff; margin-bottom: 24px; }
.probe__lead { font-size: clamp(17px,2.2vw,21px); line-height: 1.55; color: #fff; max-width: 620px; margin-inline: auto; }
.probe__value { margin-top: 30px; display: inline-flex; gap: 14px; align-items: center; font-family: var(--fd); font-weight: 600; font-size: clamp(18px,2.4vw,24px); }
.probe__value span:first-child { color: rgba(255,255,255,.78); text-decoration: line-through; text-decoration-color: rgba(255,255,255,.65); }
.probe__value span:last-child { color: var(--accent-2); }
.probe__value i { color: rgba(255,255,255,.68); font-style: normal; }
.probe__note { margin-top: 16px; font-size: 15px; color: rgba(255,255,255,.85); }

.acc { display: flex; flex-direction: column; }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 20px;
  padding: 26px 0; font-family: var(--fd); font-weight: 600; font-size: clamp(17px,2.2vw,21px);
  letter-spacing: -.01em; line-height: 1.32; transition: color .3s var(--ease);
}
.acc__item summary::-webkit-details-marker { display: none; }
.acc__item summary:hover { color: var(--accent); }
.acc__ico { margin-left: auto; flex-shrink: 0; position: relative; width: 20px; height: 20px; }
.acc__ico::before, .acc__ico::after { content:""; position:absolute; top:50%; left:50%; transform: translate(-50%,-50%); background: var(--accent); border-radius: 2px; }
.acc__ico::before { width: 15px; height: 2px; }
.acc__ico::after { width: 2px; height: 15px; transition: transform .4s var(--ease); }
.acc__item[open] .acc__ico::after { transform: translate(-50%,-50%) scaleY(0); }
.acc__body { overflow: hidden; }
.acc__body p { color: var(--ink-2); font-size: 16px; line-height: 1.66; padding-bottom: 6px; }
.acc__body p:last-child { padding-bottom: 26px; }
.acc__body p + p { padding-top: 12px; }
.acc__item[open] summary { color: var(--accent); }

.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px,2.4vw,28px); }
.post {
  display: flex; flex-direction: column; padding: clamp(26px,2.8vw,34px); overflow: hidden;
  border-radius: var(--radius); background: var(--paper-2); border: 1px solid var(--line);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s var(--ease);
}
.post:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: rgba(210,31,88,.22); }
.post__media {
  display: block; overflow: hidden; aspect-ratio: 16 / 10; background: var(--paper-3);
  margin: calc(-1 * clamp(26px,2.8vw,34px)) calc(-1 * clamp(26px,2.8vw,34px)) clamp(22px,2.4vw,28px);
}
.post__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s var(--ease); }
.post:hover .post__media img { transform: scale(1.05); }
.post__cat { align-self: flex-start; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); padding: 5px 12px; border-radius: 100px; background: var(--accent-tint); margin-bottom: 20px; }
.post__title { font-family: var(--fd); font-weight: 700; font-size: clamp(19px,2.2vw,23px); line-height: 1.24; letter-spacing: -.02em; margin-bottom: 12px; }
.post__desc { color: var(--ink-2); font-size: 15px; line-height: 1.55; flex: 1; }
.post__meta { margin-top: 22px; font-size: 13px; color: var(--ink-3); }
.link-arrow { font-family: var(--fd); font-weight: 600; font-size: 18px; color: var(--accent); display: inline-flex; gap: 8px; align-items: center; }
.link-arrow em { font-style: normal; transition: transform .4s var(--ease); }
.link-arrow:hover em { transform: translateX(5px); }

.footer { background: var(--dark-solid); color: #fff; padding-block: clamp(56px,7vw,88px) 40px; position: relative; }
.footer__inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer__brand { display: flex; flex-direction: column; gap: 10px; }
.footer__brand .nav__mark { color: var(--accent-2); width: 40px; }
.footer__name { font-family: var(--fd); font-weight: 700; font-size: 20px; }
.footer__tag { color: rgba(255,255,255,.82); font-size: 15px; }
.footer__tag em { color: var(--accent-2); font-style: normal; }
.footer__links { display: flex; flex-wrap: wrap; gap: 8px 26px; }
.footer__links a { font-size: 14.5px; color: rgba(255,255,255,.93); transition: color .3s var(--ease); }
.footer__links a:hover { color: var(--accent-2); }
.footer__base { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 26px; flex-wrap: wrap; }
.footer__base p { font-size: 13px; color: rgba(255,255,255,.75); }
.footer__top { font-size: 13px; color: rgba(255,255,255,.85); }
.footer__top:hover { color: var(--accent-2); }

.modal { position: fixed; inset: 0; z-index: 150; display: grid; place-items: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s; }
.modal.is-open { opacity: 1; visibility: visible; }
.modal__overlay { position: absolute; inset: 0; background: rgba(20,34,44,.6); backdrop-filter: blur(6px); }
.modal__card {
  position: relative; z-index: 2; width: min(560px, 100%); max-height: 90vh; overflow-y: auto;
  background: var(--paper); border-radius: 24px; padding: clamp(28px,4vw,44px);
  box-shadow: 0 40px 100px -30px rgba(0,0,0,.5);
  transform: translateY(20px) scale(.98); transition: transform .5s var(--ease);
}
.modal.is-open .modal__card { transform: none; }
.modal__x { position: absolute; top: 18px; right: 20px; width: 36px; height: 36px; border-radius: 50%; font-size: 24px; color: var(--ink-3); background: var(--paper-2); display: grid; place-items: center; transition: background .3s, color .3s; }
.modal__x:hover { background: var(--accent-tint); color: var(--accent); }
.modal__title { font-family: var(--fd); font-weight: 700; font-size: clamp(24px,3.4vw,32px); letter-spacing: -.02em; }
.modal__intro { margin-top: 14px; color: var(--ink-2); font-size: 15px; line-height: 1.55; }
.modal__value { margin: 16px 0 26px; font-size: 13px; color: var(--accent); font-weight: 600; padding: 12px 14px; background: var(--accent-tint); border-radius: var(--radius-sm); }

.form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field__label { font-family: var(--fd); font-weight: 600; font-size: 14px; }
.field__label i { color: var(--accent); font-style: normal; }
.field input, .field textarea, .field__url {
  font: inherit; font-size: 15px; padding: 13px 15px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line); background: var(--paper-2); color: var(--ink);
  transition: border-color .3s var(--ease), background .3s var(--ease); width: 100%;
}
.field input:focus, .field textarea:focus, .field__url:focus { outline: none; border-color: var(--accent); background: #fff; }
.field textarea { resize: vertical; }
.field--radio { border: none; display: flex; flex-direction: column; gap: 10px; }
.radio { display: flex; align-items: center; gap: 10px; font-size: 14.5px; cursor: pointer; color: var(--ink-2); }
.radio input { width: auto; accent-color: var(--accent); }
.field__url { margin-top: 6px; }
.form__foot { font-size: 12.5px; color: var(--ink-3); text-align: center; }

.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 100; pointer-events: none; }
.scroll-progress span { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); box-shadow: 0 0 12px rgba(210,31,88,.6); transform-origin: left; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .85s var(--ease), transform .85s var(--ease); will-change: opacity, transform; }

html.js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
html.js #hero [data-reveal] { opacity: 1; transform: none; transition: none; }
.reveal--in { opacity: 1; transform: none; }

html.js [data-reveal].reveal--in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, html.js [data-reveal] { opacity: 1; transform: none; transition: none; }
}

.subnav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.82); backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}
.subnav__wrap { max-width: var(--wrap); margin-inline: auto; padding: 15px var(--gutter); display: flex; align-items: center; gap: 20px; }
.subnav__wrap .nav__brand-text { color: var(--ink); }
.subnav__wrap .nav__mark { color: var(--accent); }
.subnav__back { margin-left: auto; font-size: 14px; font-weight: 500; color: var(--ink-2); display: inline-flex; align-items: center; gap: 7px; transition: color .3s var(--ease); }
.subnav__back:hover { color: var(--accent); }
.subnav .btn--nav { margin-left: 0; }

.subpage { padding-block: clamp(56px, 8vw, 104px); background: var(--paper); }
.subpage__head { max-width: 780px; margin-bottom: clamp(36px, 5vw, 56px); }
.subpage__kicker { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.subpage__kicker i { width: 26px; height: 1.5px; background: var(--accent); }
.subpage__title { font-family: var(--fd); font-weight: 700; font-size: clamp(32px, 5.5vw, 60px); line-height: 1.04; letter-spacing: -.03em; }
.subpage__lead { margin-top: 18px; font-size: clamp(17px, 2vw, 20px); line-height: 1.55; color: var(--ink-2); }

.prose { max-width: 760px; }
.prose h2 { font-family: var(--fd); font-weight: 700; font-size: clamp(22px, 3vw, 30px); letter-spacing: -.02em; margin: 46px 0 14px; }
.prose h3 { font-family: var(--fd); font-weight: 600; font-size: 19px; margin: 30px 0 10px; }
.prose p { color: var(--ink-2); font-size: 16.5px; line-height: 1.75; margin-bottom: 18px; }
.prose ul, .prose ol { margin: 0 0 18px 1.2em; color: var(--ink-2); }
.prose li { margin-bottom: 9px; line-height: 1.65; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose strong { color: var(--ink); }
.prose blockquote { margin: 26px 0; padding: 4px 0 4px 24px; border-left: 3px solid var(--accent); font-family: var(--fd); font-weight: 500; font-size: clamp(19px, 2.4vw, 24px); line-height: 1.4; color: var(--ink); }
.prose hr { border: none; border-top: 1px solid var(--line); margin: 40px 0; }
.prose__meta { display: flex; gap: 14px; align-items: center; color: var(--ink-3); font-size: 14px; margin-bottom: 34px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.prose__meta .post__cat { margin: 0; }

.legal-note { padding: 16px 18px; background: var(--accent-tint); border: 1px solid rgba(210,31,88,.15); border-radius: var(--radius-sm); color: var(--ink-2); font-size: 14px; line-height: 1.55; margin-bottom: 36px; }
.legal-note strong { color: var(--accent); }
.ph { background: var(--paper-3); border: 1px dashed #d8d3cd; border-radius: 5px; padding: 1px 7px; color: var(--ink-3); font-size: .95em; }

.blogpage__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 28px); }
.subfooter-cta { margin-top: clamp(48px, 7vw, 80px); padding: clamp(34px, 5vw, 56px); border-radius: var(--radius); background: var(--slate); color: #fff; text-align: center; }
.subfooter-cta h2 { font-family: var(--fd); font-weight: 700; font-size: clamp(24px, 3.4vw, 34px); letter-spacing: -.02em; margin-bottom: 12px; }
.subfooter-cta p { color: rgba(255,255,255,.93); margin-bottom: 26px; }

.brand__logo { height: 42px; width: auto; display: block; }        
.subnav .brand__logo { height: 36px; }
.footer__brand .brand__logo { height: 44px; filter: brightness(0) invert(1); }  
.mobile-menu__logo { height: 38px; filter: brightness(0) invert(1); margin: 0 auto 6px; }

.faq__layout { display: grid; grid-template-columns: 340px 1fr; gap: clamp(30px, 5vw, 76px); align-items: start; }
.faq__aside { position: sticky; top: 100px; }
.faq__aside .sec-head { margin-bottom: 0; }
.faq__cta-card { margin-top: 30px; padding: 30px 28px; border-radius: var(--radius); background: var(--slate); color: #fff; position: relative; overflow: hidden; }
.faq__cta-card::after { content:""; position:absolute; right:-30px; bottom:-30px; width:140px; height:140px; border-radius:50%; background: radial-gradient(circle, rgba(232,70,122,.35), transparent 70%); }
.faq__cta-card h3 { font-family: var(--fd); font-weight: 700; font-size: 21px; letter-spacing: -.02em; margin-bottom: 8px; position: relative; }
.faq__cta-card p { font-size: 14.5px; color: rgba(255,255,255,.93); line-height: 1.5; margin-bottom: 22px; position: relative; }
.faq__cta-card .btn { position: relative; }

.hero__title--probe { font-size: clamp(32px, 5vw, 66px); line-height: 1.07; letter-spacing: -.02em; }
.pform { position: relative; overflow: hidden; }
.pform__card { position: relative; z-index: 2; background: var(--paper); color: var(--ink); border-radius: 24px; padding: clamp(28px, 4vw, 46px); max-width: 600px; margin: 0 auto; box-shadow: 0 40px 100px -30px rgba(0,0,0,.5); }
.pform__value { text-align: center; font-size: 13px; font-weight: 600; color: var(--accent); background: var(--accent-tint); padding: 12px 14px; border-radius: var(--radius-sm); margin-bottom: 24px; }
.pform__foot { margin-top: 14px; font-size: 12.5px; color: var(--ink-3); text-align: center; }

.sec-head { text-align: center; margin-left: auto; margin-right: auto; }
.sec-head .sec-kicker { justify-content: center; }
.sec-sub { margin-left: auto; margin-right: auto; }
.sec-cta, .sec-cta--left { text-align: center; }

.hero__inner { text-align: center; margin-left: auto; margin-right: auto; }
.hero__eyebrow, .hero__lead { margin-left: auto; margin-right: auto; }
.hero__values { justify-items: center; }
.hero__value { text-align: center; align-items: center; }
.hero__cta { justify-content: center; }

.problem__intro { text-align: center; margin-left: auto; margin-right: auto; }
.problem__list { margin-left: auto; margin-right: auto; max-width: 700px; }
.problem__list li { justify-content: center; text-align: center; }
.problem__dot { margin-top: 10px; }
.diagnose { text-align: center; }
.diagnose__lead, .diagnose__note { text-align: center; margin-left: auto; margin-right: auto; }
.qcard { flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 10px; }
.insight { text-align: center; }

.problem__loss { max-width: 700px; margin-left: auto; margin-right: auto; padding: clamp(26px,3.4vw,40px) clamp(24px,4vw,44px); }
.problem__loss-label { font-size: 14px; }
.problem__loss-num { font-size: clamp(26px, 4.4vw, 44px); margin: 8px 0 0; }
.problem__loss-cur { font-size: .34em; }
.problem__loss-sub { font-size: .42em; margin: 0; }

.deliver__card { text-align: center; }
.deliver__close { text-align: center; margin-left: auto; margin-right: auto; }

.team__intro { text-align: center; margin-left: auto; margin-right: auto; }
.person { align-items: center; text-align: center; }
.person__body { max-width: 480px; }

.step__body p { margin-left: auto; margin-right: auto; }
.process__timeline { justify-content: center; text-align: center; }
.process__timeline-line { display: none; }

.ba__col { text-align: center; }
.ba__col ul { display: inline-block; text-align: left; }

.crow__role { text-align: center; }

.faq__layout { grid-template-columns: 1fr; max-width: 840px; margin-left: auto; margin-right: auto; }
.faq__aside { position: static; text-align: center; margin-bottom: 22px; }
.faq__aside .sec-kicker { justify-content: center; }
.faq__cta-card { max-width: 480px; margin-left: auto; margin-right: auto; }

.subpage__head { text-align: center; margin-left: auto; margin-right: auto; }
.subpage__head .subpage__kicker { justify-content: center; }
.subpage__lead { margin-left: auto; margin-right: auto; }
.prose__meta { justify-content: center; }

.vcard blockquote { text-align: center; }
.vcard figcaption { align-items: center; text-align: center; }
.voices__group { text-align: center; font-family: var(--fd); font-weight: 700; font-size: clamp(19px,2.4vw,24px); letter-spacing: -.01em; color: #fff; margin: clamp(38px,5vw,56px) 0 26px; display: flex; align-items: center; justify-content: center; gap: 16px; }
.voices__group::before, .voices__group::after { content: ""; height: 1px; width: 44px; background: rgba(255,255,255,.24); }
.vcard--marthe { max-width: 860px; margin: 8px auto clamp(28px,4vw,40px); text-align: center; background: rgba(255,255,255,.07); border-color: rgba(232,70,122,.42); padding: clamp(30px,4vw,46px); box-shadow: 0 24px 60px -30px rgba(232,70,122,.4); }
.vcard--marthe blockquote { font-size: clamp(16px,2vw,19.5px); line-height: 1.62; color: #fff; }
.vcard--marthe figcaption { font-size: 16px; }
.vcard--marthe figcaption span { color: var(--accent-2); }

.problem__list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 860px; }
.problem__list li { position: relative; overflow: hidden; padding: 22px 26px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); font-weight: 500; font-size: 16.5px; line-height: 1.4; }

.problem__list li::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(130% 130% at 100% 0%, rgba(210,31,88,.07), transparent 46%);
  opacity: 0; transition: opacity .5s var(--ease);
}
.problem__list li:hover::before { opacity: 1; }
.problem__dot { display: none; }

.deliver__card { background: var(--paper); border: 1px solid var(--line); position: relative; }
.deliver__card::after { display: none; }
.deliver__card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(130% 130% at 100% 0%, rgba(210,31,88,.07), transparent 46%);
  opacity: 0; transition: opacity .5s var(--ease);
}
.deliver__card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: rgba(210,31,88,.22); }
.deliver__card:hover::before { opacity: 1; }

.chapter--light { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.03'/%3E%3C/svg%3E"); }
.chapter--paper { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.03'/%3E%3C/svg%3E"); }

.chapter--dark { position: relative; --cap-t: var(--paper); --cap-b: var(--paper); }
.voices { --cap-t: var(--paper); --cap-b: var(--paper-2); }   
.probe  { --cap-t: var(--paper-2); --cap-b: var(--paper-2); } 

.chapter--dark + .chapter--paper::before { content: none; }
.chapter:not(.chapter--dark) + .chapter--dark::before,
.chapter--dark:has(+ .chapter:not(.chapter--dark))::after {
  content: ""; position: absolute; left: -1px; right: -1px;
  height: clamp(26px, 4.4vw, 56px); z-index: 3; pointer-events: none;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H1440 V27 C1140 56 1015 56 720 33 C425 10 300 10 0 33 Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H1440 V27 C1140 56 1015 56 720 33 C425 10 300 10 0 33 Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}
.chapter:not(.chapter--dark) + .chapter--dark::before { top: -1px; background: var(--cap-t); }
.chapter--dark:has(+ .chapter:not(.chapter--dark))::after { bottom: -1px; background: var(--cap-b); transform: scaleY(-1); }

.footer.chapter--dark::before {
  content: ""; position: absolute; left: -1px; right: -1px; top: -1px;
  height: clamp(26px, 4.4vw, 56px); z-index: 3; pointer-events: none; background: var(--paper);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H1440 V27 C1140 56 1015 56 720 33 C425 10 300 10 0 33 Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H1440 V27 C1140 56 1015 56 720 33 C425 10 300 10 0 33 Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}

main:has(> .chapter--dark:last-child) + .footer.chapter--dark::before {
  content: ""; height: 1px; top: 0; background: linear-gradient(90deg, transparent, rgba(210,31,88,.6), transparent);
  -webkit-mask: none; mask: none;
}
.footer > .wrap { position: relative; z-index: 5; }

.legal-cta { background: var(--accent-tint); border: 1px solid #f6d4e0; border-radius: 18px; padding: clamp(24px,4vw,34px); margin: 0 0 44px; text-align: center; }
.legal-cta h2 { font-family: var(--fd); font-size: clamp(19px,2.6vw,24px); font-weight: 600; color: var(--slate); margin: 0 0 12px; border: 0; padding: 0; }
.legal-cta p { color: var(--ink-2); margin: 0 auto 20px; font-size: 15.5px; max-width: 60ch; }
.legal-cta .btn { margin: 0 auto; }
.prose a.btn, .prose a.btn:hover, .prose a.btn span, .prose a.btn .btn__arrow { color: #fff; text-decoration: none; }
.prose .legal-updated { color: var(--ink-3); font-size: 14px; margin: -6px 0 30px; }
.prose address { font-style: normal; color: var(--ink-2); }

@media (max-width: 1024px) {
  .voices__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__values { gap: 22px; }
}

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav .btn--nav { display: none; }
  .nav__burger { display: flex; }
  .nav__wrap { padding: 8px 8px 8px 18px; }

  .hero__values { grid-template-columns: 1fr; gap: 4px; }
  .hero__value { padding-top: 14px; }

  
  .hero { min-height: auto; padding-block: 124px 84px; }
  .hero__scroll { display: none; }
  .hero__cta { justify-content: center; }

  .team__grid { grid-template-columns: 1fr; gap: 44px; }
  .deliver__grid { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; gap: 40px; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-5px); }
  .plan__badge { top: -12px; }
  .voices__grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .blog__grid, .blogpage__grid { grid-template-columns: 1fr; }
  .subnav__wrap { flex-wrap: nowrap; gap: 12px; }
  .subnav__back { display: none; }
  .subnav .btn--nav { margin-left: auto; }
  .diagnose__grid { grid-template-columns: 1fr; }
  .faq__layout { grid-template-columns: 1fr; gap: 8px; }
  .faq__aside { position: static; }
  .faq__cta-card { margin-top: 20px; margin-bottom: 20px; }

  .crow__pair { grid-template-columns: 1fr; }
  .problem__list { grid-template-columns: 1fr; }

  .ba { grid-template-columns: 1fr; }
  .ba__arrow { transform: rotate(90deg); padding: 6px 0; }

  .steps { grid-template-columns: 1fr; gap: 30px; }
  .steps::before { display: none; }   
  .step { gap: 12px; }
  .diag2 { grid-template-columns: 1fr; gap: 30px; max-width: 460px; }
  .diag2__list { max-width: 420px; margin-inline: auto; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .chapter { padding-block: clamp(64px, 16vw, 96px); }
  .hero { padding-block: 108px 72px; }
  .hero__cta { flex-direction: column; align-items: center; gap: 16px; }
  .hero__cta .btn { width: 100%; max-width: 360px; justify-content: center; }
  .btn { width: auto; }
  
  .btn--xl { --bpx: 24px; padding-block: 18px; font-size: 15.5px; }
  .btn--lg { --bpx: 26px; }
  .btn--xl, .btn--lg { max-width: 100%; }
  .btn--xl span, .btn--lg span { white-space: normal; }
  .footer__inner { flex-direction: column; gap: 26px; }
}

:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px;
}
.chapter--dark :focus-visible, .footer :focus-visible, .subnav :focus-visible,
.hero :focus-visible, .voices :focus-visible, .probe :focus-visible { outline-color: var(--accent-2); }

.skip-link {
  position: absolute; left: 12px; top: 12px; z-index: 200; transform: translateY(-150%);
  background: var(--accent); color: #fff; font-family: var(--fd); font-weight: 600; font-size: 15px;
  padding: 12px 20px; border-radius: 10px; box-shadow: var(--sh-2, 0 18px 50px rgba(53,81,104,.22));
  transition: transform .22s var(--ease);
}
.skip-link:focus { transform: translateY(0); outline: 2px solid #fff; outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .hero__scroll-line::after, .person__ring { animation: none; }
}
.reduce-motion .hero__canvas,
.reduce-motion .resonance__canvas,
.reduce-motion .probe__canvas { opacity: .4; }

.hero__eyebrow--intro {
  text-transform: none; letter-spacing: .005em; font-weight: 500;
  font-size: clamp(14px, 1.5vw, 16.5px); line-height: 1.5;
  color: rgba(255,255,255,.93); max-width: 640px; margin-bottom: 24px;
}
.hero__cta-value { margin: 0; font-family: var(--fd); font-weight: 600; font-size: 14.5px; letter-spacing: .01em; color: var(--accent-2); text-align: center; }
.hero__cta-scarcity { margin: 3px 0 0; font-size: 12px; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.78); text-align: center; }

.problem__loss-approx { font-family: var(--fd); font-weight: 600; font-size: .34em; letter-spacing: 0; color: rgba(255,255,255,.85); align-self: center; }
.problem__loss-after { position: relative; margin: 8px 0 0; font-size: 15px; color: rgba(255,255,255,.93); }
.problem__loss-src { position: relative; margin: 18px 0 0; font-size: 12px; color: rgba(255,255,255,.72); letter-spacing: .01em; }

.sec-cta__value { margin: 16px 0 0; font-family: var(--fd); font-weight: 600; font-size: 14.5px; color: var(--accent); }
.sec-cta__note { margin: 5px 0 0; font-size: 13.5px; color: var(--ink-3); line-height: 1.5; }
.chapter--dark .sec-cta__value { color: var(--accent-2); }
.chapter--dark .sec-cta__note { color: rgba(255,255,255,.85); }

.resonance__out--last { margin-top: clamp(22px,3vw,34px); font-size: clamp(16px,2vw,19px); color: rgba(255,255,255,.93); }

.step__share { position: relative; margin: 16px 0 0; padding-top: 14px; border-top: 1px solid var(--line); font-size: 13px; line-height: 1.55; color: var(--ink-3); }
.step__share strong { display: block; margin-bottom: 4px; color: var(--accent); font-weight: 600; font-size: 11px; letter-spacing: .09em; text-transform: uppercase; }
.process__more { max-width: 720px; margin: clamp(30px,4vw,44px) auto 0; text-align: center; font-size: clamp(15px,1.8vw,17px); line-height: 1.62; color: var(--ink-2); }

.voices__feature-head { font-family: var(--fd); font-weight: 700; font-size: clamp(15px,1.8vw,18px); letter-spacing: .04em; text-transform: uppercase; color: var(--accent-2); margin: 0 0 18px; }
.vcard__head { font-family: var(--fd); font-weight: 600; font-size: 16px; line-height: 1.35; color: #fff; margin: 0 0 14px; }

.pricing__close { max-width: 760px; margin: clamp(34px,5vw,52px) auto 0; text-align: center; font-size: clamp(15px,1.8vw,17px); line-height: 1.7; color: var(--ink-2); }

.probe__why { max-width: 640px; margin: clamp(30px,4vw,42px) auto 0; text-align: left; display: grid; gap: 14px; }
.probe__why p { font-size: 15px; line-height: 1.65; color: rgba(255,255,255,.93); margin: 0; }
.probe__why strong { color: #fff; font-weight: 600; }

.chapter--tint { background: var(--accent-tint); color: var(--ink); }
.wanalyse .sec-sub { color: var(--ink-2); }
.wform { position: relative; z-index: 1; margin: 0; display: grid; gap: 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(30px,3.4vw,42px); box-shadow: 0 34px 80px -38px rgba(53,81,104,.45), 0 2px 10px -5px rgba(0,0,0,.06); overflow: hidden; }
.wform::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); z-index: 1; }

.wanalyse__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px,5vw,76px); align-items: center; }
.wanalyse__intro { text-align: left; }
.wanalyse__intro .sec-kicker { margin-bottom: 20px; }
.wanalyse__title { font-family: var(--fd); font-weight: 700; font-size: clamp(30px,4.1vw,50px); line-height: 1.05; letter-spacing: -.03em; color: var(--ink); margin: 0 0 20px; text-wrap: balance; }
.wanalyse__lead { font-size: clamp(16px,1.9vw,18.5px); line-height: 1.6; color: var(--ink-2); max-width: 520px; margin: 0; }
.wanalyse__checks { list-style: none; display: grid; gap: 14px; margin: 28px 0 30px; }
.wanalyse__checks li { position: relative; padding-left: 38px; font-size: 15.5px; line-height: 1.5; color: var(--ink); font-weight: 500; }
.wanalyse__checks li::before { content: ""; position: absolute; left: 0; top: 0; width: 25px; height: 25px; border-radius: 50%; background: var(--accent-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d21f58' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/13px no-repeat; }
.wanalyse__trust { display: flex; align-items: center; gap: 11px; font-size: 14px; color: var(--ink-3); margin: 0; }
.wanalyse__pulse { flex-shrink: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(210,31,88,.5); animation: aPulse 2.4s var(--ease) infinite; }
@keyframes aPulse { 0% { box-shadow: 0 0 0 0 rgba(210,31,88,.45); } 70% { box-shadow: 0 0 0 10px rgba(210,31,88,0); } 100% { box-shadow: 0 0 0 0 rgba(210,31,88,0); } }
.reduce-motion .wanalyse__pulse { animation: none; }

.wanalyse__formwrap { position: relative; }
.doc-preview { position: absolute; top: -30px; right: -20px; width: 244px; transform: rotate(4.5deg); z-index: 0; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 34px 60px -30px rgba(53,81,104,.42); overflow: hidden; pointer-events: none; }
.doc-preview__bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: var(--paper-2); border-bottom: 1px solid var(--line); }
.doc-preview__bar span { width: 8px; height: 8px; border-radius: 50%; background: #d9dde1; }
.doc-preview__bar em { margin-left: 8px; font-style: normal; font-size: 10px; color: var(--ink-3); letter-spacing: .02em; }
.doc-preview__in { padding: 18px 16px; display: flex; flex-direction: column; gap: 9px; }
.dl { height: 8px; border-radius: 4px; background: #edeff2; width: 100%; }
.dl--h { height: 11px; width: 52%; background: #cfd4d9; }
.dl--h2 { height: 10px; width: 44%; background: #cfd4d9; margin-top: 8px; }
.dl--w85 { width: 85%; } .dl--w70 { width: 70%; } .dl--w60 { width: 60%; }
.dl--mark { width: 74%; background: var(--accent-tint); box-shadow: inset 3px 0 0 var(--accent); }
@media (max-width: 900px) {
  .wanalyse__grid { grid-template-columns: 1fr; gap: 40px; }
  .doc-preview { display: none; }
  .wform { max-width: 560px; margin: 0 auto; }
}
.wform__field { display: grid; gap: 7px; }
.wform__field label { font-size: 14px; font-weight: 500; color: var(--ink); }
.wform__req { color: var(--accent); }
.wform__field input { width: 100%; padding: 13px 16px; font: inherit; font-size: 15px; color: var(--ink); background: var(--paper-2); border: 1px solid #e2e4e7; border-radius: var(--radius-sm); transition: border-color .2s, box-shadow .2s; }
.wform__field input::placeholder { color: #b3b8bd; }
.wform__field input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint); }
.wform__foot { display: grid; justify-items: center; gap: 12px; margin-top: 4px; }
.wform__note { margin: 0; font-size: 12.5px; color: var(--ink-3); text-align: center; line-height: 1.5; }

.checklist { list-style: none; display: grid; gap: 13px; max-width: 640px; margin: 30px auto 0; text-align: left; }
.checklist li { position: relative; padding-left: 40px; font-size: clamp(15px,1.9vw,17px); line-height: 1.5; color: #fff; }
.checklist li::before { content: ""; position: absolute; left: 0; top: 1px; width: 25px; height: 25px; border-radius: 50%; background: var(--accent-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d21f58' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/13px no-repeat; }

.field__hint { display:block; font-family: var(--fb); font-weight:400; font-size: 12.5px; color: var(--ink-3); margin-top: 6px; line-height: 1.5; }
.deliver__card p strong { color: var(--ink); }

.hero__lead--tight { margin-top: 18px; font-size: clamp(15px,1.9vw,17px); color: rgba(255,255,255,.93); }

.afterflow__list { list-style: none; display: grid; gap: 16px; margin-top: 8px; }
.afterflow__list li { display: flex; gap: 16px; align-items: flex-start; }
.afterflow__n { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; background: var(--accent-tint); color: var(--accent); font-family: var(--fd); font-weight: 700; display: grid; place-items: center; font-size: 15px; }
.afterflow__list p { margin: 4px 0 0; color: var(--ink-2); font-size: 15px; line-height: 1.6; }
.afterflow__note { max-width: 720px; margin: 28px 0 0; padding: 18px 20px; background: var(--accent-tint); border: 1px solid rgba(210,31,88,.14); border-radius: var(--radius-sm); font-size: 14px; line-height: 1.6; color: var(--ink-2); }

.danke__steps { list-style: none; max-width: 560px; margin: 36px auto 0; display: grid; gap: 16px; text-align: left; }
.danke__steps li { display: flex; gap: 16px; align-items: flex-start; padding: 16px 18px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-sm); }
.danke__tag { flex-shrink: 0; font-family: var(--fd); font-weight: 600; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--accent-2); background: rgba(232,70,122,.14); padding: 6px 11px; border-radius: 100px; white-space: nowrap; }
.danke__steps p { margin: 3px 0 0; color: #fff; font-size: 14.5px; line-height: 1.55; }
.danke__offer { max-width: 600px; margin: 42px auto 0; padding-top: 34px; border-top: 1px solid rgba(255,255,255,.14); }
.danke__offer-h { font-family: var(--fd); font-weight: 600; font-size: clamp(21px,3vw,29px); color: #fff; margin-bottom: 14px; }
.danke__offer p { color: #fff; font-size: 15.5px; line-height: 1.62; max-width: 560px; margin-inline: auto; }

.ba { align-items: center; }
.ba__col { transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.ba__col--before li { color: var(--ink-2); }
.ba__col--before li::before { content: "✕"; left: 3px; top: 0; font-size: 12.5px; font-weight: 700; color: rgba(210,31,88,.62); }
.ba__col--after { position: relative; overflow: hidden; background: var(--dark-bg); transform: translateY(-10px); box-shadow: 0 42px 84px -34px rgba(53,81,104,.8); }
.ba__col--after::after { content: ""; position: absolute; z-index: 0; top: -12%; right: -12%; width: 62%; height: 78%; background: radial-gradient(closest-side, rgba(232,70,122,.24), transparent 72%); pointer-events: none; }
.ba__col--after > * { position: relative; z-index: 1; }
.ba__col--after .ba__h { color: #fff; display: inline-flex; align-items: center; gap: 9px; }
.ba__col--after .ba__h::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 12px rgba(232,70,122,.85); }
.ba__arrow span { width: 52px; height: 52px; background: linear-gradient(145deg, var(--accent-2), var(--accent)); box-shadow: 0 14px 28px -8px rgba(210,31,88,.6); }
.ba__arrow span::after { color: #fff; font-size: 22px; }
@media (max-width: 760px) { .ba__col--after { transform: none; } }

.loss-calc-btn {
  margin-top: 26px; display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 24px; border-radius: 100px; cursor: pointer;
  font-family: var(--fd); font-weight: 600; font-size: 14.5px; letter-spacing: .01em;
  color: #fff; background: rgba(232,70,122,.16); border: 1px solid rgba(232,70,122,.5);
  transition: background .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.loss-calc-btn em { font-style: normal; transition: transform .35s var(--ease); }
.loss-calc-btn:hover { background: rgba(232,70,122,.3); border-color: var(--accent-2); transform: translateY(-2px); }
.loss-calc-btn:hover em { transform: translateX(4px); }

.lmodal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s var(--ease); }
.lmodal.is-open { opacity: 1; visibility: visible; }
.lmodal__overlay { position: absolute; inset: 0; background: rgba(18,28,38,.62); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.lmodal__card { position: relative; z-index: 1; width: min(680px, 100%); max-height: 92vh; overflow-y: auto; background: #fff; border-radius: var(--radius); padding: clamp(26px,3.4vw,44px); box-shadow: 0 50px 120px -40px rgba(0,0,0,.6); transform: translateY(18px) scale(.98); transition: transform .45s var(--ease); }
.lmodal.is-open .lmodal__card { transform: none; }
.lmodal .modal__x { position: absolute; top: 16px; right: 16px; }
.lmodal__head { text-align: center; margin-bottom: 26px; }
.lmodal__head .sec-kicker { justify-content: center; margin-bottom: 14px; }
.lmodal__title { font-family: var(--fd); font-weight: 700; font-size: clamp(22px,3vw,32px); line-height: 1.1; letter-spacing: -.02em; color: var(--ink); text-wrap: balance; }
.lmodal__sub { margin-top: 10px; font-size: 15px; color: var(--ink-2); }
.lmodal__sub strong { color: var(--accent); font-weight: 600; }

.lmodal__inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 22px; }
.lfield { display: grid; gap: 7px; }
.lfield__lab { font-size: 13.5px; font-weight: 500; color: var(--ink-2); }
.lfield__lab em { font-style: normal; color: var(--ink-3); }
.lfield input { width: 100%; padding: 13px 16px; font-family: var(--fd); font-weight: 600; font-size: 18px; color: var(--ink); background: var(--paper-2); border: 1px solid #e2e4e7; border-radius: var(--radius-sm); transition: border-color .2s, box-shadow .2s; }
.lfield input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint); background: #fff; }

.lscn { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 22px; }
.lscn__card { border-radius: 16px; padding: 20px 22px; }
.lscn__card--cur { background: var(--paper-2); border: 1px solid var(--line); }
.lscn__card--opt { background: var(--dark-bg); color: #fff; box-shadow: var(--sh-2); }
.lscn__tag { font-family: var(--fd); font-weight: 600; font-size: 13px; margin-bottom: 14px; }
.lscn__card--cur .lscn__tag { color: var(--ink-3); }
.lscn__card--opt .lscn__tag { color: var(--accent-2); }
.lscn__rows { list-style: none; display: grid; gap: 9px; }
.lscn__rows li { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-size: 13.5px; }
.lscn__card--cur li span { color: var(--ink-3); }
.lscn__card--cur li b { color: var(--ink); font-family: var(--fd); }
.lscn__card--opt li span { color: rgba(255,255,255,.85); }
.lscn__card--opt li b { color: #fff; font-family: var(--fd); }
.lscn__key { margin-top: 4px; padding-top: 11px; border-top: 1px solid; }
.lscn__card--cur .lscn__key { border-color: var(--line); }
.lscn__card--opt .lscn__key { border-color: rgba(255,255,255,.16); }
.lscn__key span { font-weight: 600; }
.lscn__key b { font-size: 18px; }
.lscn__card--opt .lscn__key b { color: var(--accent-2); }

.lresult { text-align: center; padding: 22px; border-radius: 16px; background: var(--accent-tint); margin-bottom: 22px; }
.lresult__label { font-family: var(--fd); font-weight: 600; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.lresult__num { font-family: var(--fd); font-weight: 700; font-size: clamp(38px,6.4vw,60px); line-height: 1.03; letter-spacing: -.03em; color: var(--accent); margin: 6px 0 4px; display: flex; align-items: baseline; justify-content: center; gap: 8px; flex-wrap: wrap; }
.lresult__approx { font-size: .3em; font-weight: 600; color: var(--ink-3); }
.lresult__cur { font-size: .32em; font-weight: 600; color: var(--ink-2); }
.lresult__note { font-size: 14px; color: var(--ink-2); }

.lmodal__foot { display: grid; gap: 14px; justify-items: center; }
.lmodal__foot .btn { width: 100%; justify-content: center; }
.lmodal__cta { background: none; border: 0; cursor: pointer; font-family: var(--fd); font-weight: 600; font-size: 14.5px; color: var(--slate); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(53,81,104,.3); transition: color .3s; }
.lmodal__cta:hover { color: var(--accent); }
.lmodal__src { margin: 18px 0 0; text-align: center; font-size: 11.5px; color: var(--ink-3); }
@media (max-width: 560px) { .lmodal__inputs, .lscn { grid-template-columns: 1fr; } }
.reduce-motion .lmodal, .reduce-motion .lmodal__card { transition: opacity .2s; }

.mag { color: var(--accent); }

.problem__loss-line { position: relative; margin: 12px 0; font-family: var(--fd); font-weight: 500; font-size: clamp(20px,2.9vw,32px); line-height: 1.28; letter-spacing: -.02em; color: #fff; }
.problem__loss-big { color: var(--accent-2); font-weight: 700; font-size: 1.5em; letter-spacing: -.03em; text-shadow: 0 0 40px rgba(232,70,122,.45); }

.probe__voice { max-width: 640px; margin: clamp(30px,4vw,46px) auto 0; text-align: center; }
.probe__voice blockquote { font-size: clamp(15px,1.9vw,17px); line-height: 1.6; color: #fff; font-style: normal; }
.probe__voice blockquote::before { content: "\201C"; color: var(--accent-2); font-family: var(--fd); font-size: 34px; line-height: 0; vertical-align: -10px; margin-right: 3px; }
.probe__voice figcaption { margin-top: 14px; font-family: var(--fd); font-weight: 600; font-size: 14px; color: var(--accent-2); }

.team__voice { max-width: 680px; margin: clamp(30px,4vw,46px) auto 0; text-align: center; padding: clamp(24px,3vw,32px) clamp(26px,3.4vw,40px); background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); }
.team__voice blockquote { font-size: 15.5px; line-height: 1.64; color: var(--ink-2); }
.team__voice figcaption { margin-top: 12px; font-family: var(--fd); font-weight: 600; font-size: 14px; color: var(--accent); }

.pricing__capacity { max-width: 740px; margin: clamp(30px,4vw,44px) auto 0; text-align: center; font-family: var(--fd); font-weight: 500; font-size: clamp(15px,2vw,19px); line-height: 1.5; letter-spacing: -.01em; color: var(--ink); }

.voices__grid--single { max-width: 620px; margin-inline: auto; grid-template-columns: 1fr; }

.checklist__lead { font-family: var(--fd); font-weight: 600; font-size: 15px; color: rgba(255,255,255,.93); margin: 26px 0 6px; }
.checklist--open li { padding-left: 0; color: #fff; }
.checklist--open li::before { display: none; }
.asocial { padding-block: clamp(34px,5vw,56px); }
.asocial__quote { max-width: 840px; margin: 0 auto; text-align: center; }
.asocial__quote blockquote { font-family: var(--fd); font-weight: 500; font-size: clamp(17px,2.2vw,23px); line-height: 1.4; letter-spacing: -.015em; color: var(--ink); font-style: normal; }
.asocial__quote blockquote::before { content: "\201C"; color: var(--accent); font-family: var(--fd); vertical-align: -.1em; }
.asocial__quote figcaption { margin-top: 14px; font-size: 14px; font-weight: 600; color: var(--accent); font-style: normal; }
.deliver__get { margin-top: 12px; font-size: 14.5px; line-height: 1.55; color: var(--ink-2); }
.deliver__get em { font-style: normal; font-weight: 600; color: var(--accent); }

.dk-logo { display: flex; justify-content: center; padding: 18px var(--gutter); background: var(--paper); }
.dk-logo .brand__logo { height: 34px; }

.dk-center { text-align: center; max-width: 860px; margin-inline: auto; }
.dk-kicker { justify-content: center; }

.dk-check { width: 74px; height: 74px; border-radius: 50%; background: rgba(232,70,122,.16); display: grid; place-items: center; margin: 0 auto 26px; font-size: 33px; color: var(--accent-2); box-shadow: 0 0 44px rgba(232,70,122,.35); }
.dk-hint { margin: 20px auto 0; max-width: 520px; font-size: 14px; line-height: 1.55; color: rgba(255,255,255,.82); }
.dk-hint strong { color: #fff; font-weight: 600; }

.dk-prose { max-width: 660px; margin-inline: auto; }
.dk-prose p { color: var(--ink-2); font-size: clamp(16px,2vw,18px); line-height: 1.66; margin: 0 0 18px; }
.dk-prose p:last-child { margin-bottom: 0; }
.dk-prose--dark p { color: #fff; }
.dk-punch { font-family: var(--fd); font-weight: 700; font-size: clamp(20px,2.7vw,27px); line-height: 1.3; letter-spacing: -.02em; color: var(--accent); margin-top: 6px; }

.checklist--light { margin-top: 4px; }
.checklist--light li { color: var(--ink-2); }

.dk-value { display: inline-flex; align-items: baseline; gap: 12px; margin: 16px auto 0; padding: 13px 26px; border: 1px solid rgba(255,255,255,.16); border-radius: 100px; background: rgba(255,255,255,.05); font-family: var(--fd); }
.dk-value span { font-weight: 700; font-size: clamp(16px,2vw,19px); color: #fff; }
.dk-value em { font-style: normal; color: rgba(255,255,255,.72); }
.dk-value .dk-value__free { color: var(--accent-2); }

.dk-quote { max-width: 760px; margin-inline: auto; text-align: center; }
.dk-quote blockquote { font-family: var(--fd); font-weight: 500; font-size: clamp(19px,2.7vw,27px); line-height: 1.44; letter-spacing: -.015em; color: var(--ink); margin: 0; }
.dk-quote blockquote::before { content: "\201C"; color: var(--accent); font-family: var(--fd); font-size: 46px; line-height: 0; vertical-align: -14px; margin-right: 4px; }
.dk-quote figcaption { margin-top: 22px; font-family: var(--fd); font-weight: 600; font-size: 15px; color: var(--accent); }

.dk-cta { margin-top: 4px; }
.dk-cta .btn { margin: 0 auto; }
.dk-urgency { max-width: 520px; margin: 18px auto 0; font-size: 14.5px; line-height: 1.55; color: #fff; }
.dk-cap { max-width: 540px; margin: 12px auto 0; font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,.82); }

.hero__value { padding: clamp(15px,1.9vw,19px) clamp(16px,2vw,20px); border-top: 0; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.13); border-radius: 15px; gap: 7px; transition: border-color .3s var(--ease), background .3s var(--ease); }
.hero__value:hover { border-color: rgba(232,70,122,.42); background: rgba(255,255,255,.08); }
.hero__value-k { font-size: 16.5px; font-weight: 700; letter-spacing: -.01em; }
.hero__value-t { color: rgba(255,255,255,.93); }

@media (max-width: 860px) {
  .hero__inner { display: flex; flex-direction: column; }
  .hero__cta { order: 1; margin-top: 34px; }
  .hero__values { order: 2; margin-top: 26px; gap: 12px; }
}

.problem__loss-big { font-size: 1em; font-weight: 700; color: var(--accent); letter-spacing: -.01em; text-shadow: none; }

@media (min-width: 861px) { .problem { padding-top: calc(clamp(80px,12vw,168px) - 20px); } }

.team__voices { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px,2.2vw,24px); max-width: 940px; margin: clamp(30px,4vw,46px) auto 0; }
.team__voices .team__voice { margin: 0; max-width: none; height: 100%; }
.team__voice-label { font-family: var(--fd); font-weight: 700; font-size: 12px; letter-spacing: .09em; text-transform: uppercase; color: var(--accent); margin: 0 0 12px; }
@media (max-width: 720px) { .team__voices { grid-template-columns: 1fr; } }

.voices__list { display: flex; flex-direction: column; gap: clamp(18px,2.6vw,26px); max-width: 860px; margin: 0 auto; }
.voices__list .vcard--marthe { max-width: none; margin: 0; }
.voices__list .vcard--marthe .voices__big { font-size: 1.15em; }

.plan__name { line-height: 1.12; }
.plan--featured { transform: none; }
.plan--featured:hover { transform: translateY(-5px); }
.plan .btn--block { margin-bottom: 8px; }

.guarantee__card { max-width: 820px; margin-inline: auto; background: #fff; border: 1px solid #f2d9e2; border-radius: var(--radius); box-shadow: 0 30px 74px -42px rgba(210,31,88,.3); padding: clamp(30px,5vw,58px); }
.guarantee__card .sec-head { margin-bottom: clamp(26px,3.2vw,36px); }
.guarantee__card .sec-title { font-size: clamp(21px,2.9vw,29px); }
.guarantee__steps { list-style: none; display: flex; flex-direction: column; gap: 15px; max-width: 560px; margin: 0 auto; text-align: left; }
.guarantee__steps li { display: flex; gap: 15px; align-items: flex-start; }
.guarantee__n { flex-shrink: 0; width: 31px; height: 31px; border-radius: 50%; background: var(--accent-tint); color: var(--accent); font-family: var(--fd); font-weight: 700; font-size: 14px; display: grid; place-items: center; }
.guarantee__steps p { margin: 3px 0 0; font-size: 15.5px; line-height: 1.5; color: var(--ink-2); }
.guarantee__punch { margin: clamp(26px,3.2vw,34px) 0 0; text-align: center; font-family: var(--fd); font-weight: 700; font-size: clamp(18px,2.3vw,23px); letter-spacing: -.02em; color: var(--accent); }
.guarantee__support { margin: 12px auto 0; max-width: 580px; text-align: center; font-size: 14.5px; line-height: 1.55; color: var(--ink-3); }

.ba { align-items: stretch; }

.compare + .team::before, .faq + .blog::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; z-index: 2; background: linear-gradient(90deg, transparent, rgba(210,31,88,.6), transparent); }

.plan__eyebrow { display: block; font-family: var(--fd); font-weight: 700; font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.plan__head--eb { min-height: 104px; }
@media (max-width: 860px) { .plan__head--eb { min-height: 0; } }

@media (max-width: 860px) {

  
  .sec-kicker, .hero__eyebrow, .plan__eyebrow, .danke__tag,
  .crow__kind, .deliver__num, .diag2__n, .team__voice-label,
  .post__cat, .lscn__tag, .vcard figcaption span {
    font-size: 11.5px; letter-spacing: .085em;
  }
  .hero__eyebrow--intro { font-size: 14.5px; letter-spacing: 0; text-transform: none; }

  
  .sec-title, .probe__title, .wanalyse__title, .resonance__title,
  .lmodal__title, .modal__title, .subpage__title {
    font-size: clamp(25px, 6.6vw, 31px); line-height: 1.16; letter-spacing: -.022em;
  }
  .hero__title { font-size: clamp(38px, 11vw, 52px); line-height: 1.06; }
  .hero__title--probe, .hero__title--landing { font-size: clamp(28px, 7.6vw, 37px); line-height: 1.14; }

  
  .sec-sub, .hero__lead, .probe__lead, .problem__intro, .team__intro,
  .wanalyse__lead, .deliver__close, .pricing__close, .resonance__pre,
  .resonance__out, .diagnose__lead, .diag2__lead, .checklist__lead,
  .guarantee__punch, .dk-punch {
    font-size: 16px; line-height: 1.6;
  }
  .guarantee__punch, .dk-punch { font-size: 17.5px; line-height: 1.4; }

  
  .prose p, .prose li, .person__body p, .step__body p, .acc__body p,
  .guarantee__steps p, .dk-prose p, .wanalyse__checks li, .checklist li,
  .problem__list li, .ba__col li, .plan__list li, .plan__for,
  .diag2__list li, .faq__aside p, .post__desc, .team__voice blockquote,
  .vcard blockquote, .dk-quote blockquote, .asocial__quote blockquote,
  .probe__voice blockquote, .voices__feature-q {
    font-size: 15.5px; line-height: 1.62;
  }

  
  .deliver__card h3, .step__title, .plan__name, .ba__h, .person__name,
  .acc__item summary, .post__title, .hero__value-k, .crow__role {
    font-size: 17.5px; line-height: 1.25; letter-spacing: -.015em;
  }
  .deliver__card p, .hero__value-t, .crow__txt, .deliver__get,
  .lscn__rows li, .field__hint {
    font-size: 15px; line-height: 1.55;
  }

  
  .sec-cta__note, .hero__cta-note, .problem__loss-src, .pricing__capacity,
  .wform__note, .pform__foot, .form__foot, .dk-hint, .dk-cap, .dk-urgency,
  .guarantee__support, .post__meta, .lmodal__src, .plan__support,
  .wanalyse__trust, .probe__note, .process__more {
    font-size: 13.5px; line-height: 1.55;
  }

  
  .sec-title em, .resonance__title em { font-size: inherit; }
}

.subnav--lock .nav__brand { cursor: default; }
.subnav--lock .subnav__wrap { justify-content: center; }
.subnav--lock .brand__logo { height: 36px; }

.dk-sec { padding-block: clamp(52px, 6.4vw, 88px); }
.dk-hero { padding-block: clamp(58px, 7vw, 104px); }
.dk-sec .sec-head { margin-bottom: clamp(22px, 2.6vw, 30px); }

.dk-congrats { margin: 0 auto 14px; font-family: var(--fd); font-weight: 600; font-size: clamp(16px,2vw,19px); color: var(--accent-2); }

.dk-offer { max-width: 720px; margin-inline: auto; background: #fff; border: 1px solid #f2d9e2; border-radius: var(--radius); box-shadow: 0 30px 74px -44px rgba(210,31,88,.32); padding: clamp(26px,4vw,48px); text-align: center; }
.dk-offer__lead { margin: 0 0 14px; font-family: var(--fd); font-weight: 600; font-size: 16px; color: var(--ink); }

.dk-arrows { list-style: none; display: flex; flex-direction: column; gap: 11px; max-width: 520px; margin: 0 auto; text-align: left; }
.dk-arrows li { position: relative; padding-left: 30px; font-size: 15.5px; line-height: 1.55; color: var(--ink-2); }
.dk-arrows li::before { content: "→"; position: absolute; left: 0; top: -1px; color: var(--accent); font-weight: 700; }
.dk-arrows--dark { max-width: 560px; }
.dk-arrows--dark li { color: #fff; }
.dk-arrows--dark li::before { color: var(--accent-2); }

.dk-offer .dk-cta { margin-top: clamp(24px,3vw,32px); }
.dk-value--light { border-color: #f2d9e2; background: var(--accent-tint); }
.dk-value--light span { color: var(--slate); }
.dk-value--light .dk-value__free { color: var(--accent); }
.dk-urgency--light { color: var(--ink-2); }

.dk-next { margin-top: clamp(26px,3.2vw,34px); padding-top: clamp(22px,2.6vw,28px); border-top: 1px solid var(--line); }
.dk-next__h { margin: 0 0 14px; font-family: var(--fd); font-weight: 700; font-size: 15.5px; color: var(--ink); }
.dk-next__list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; max-width: 560px; margin: 0 auto; text-align: left; }
.dk-next__list li { display: flex; gap: 11px; align-items: flex-start; }
.dk-next__n { flex-shrink: 0; width: 25px; height: 25px; border-radius: 50%; background: var(--accent-tint); color: var(--accent); font-family: var(--fd); font-weight: 700; font-size: 12.5px; display: grid; place-items: center; }
.dk-next__list p { margin: 2px 0 0; font-size: 14.5px; line-height: 1.45; color: var(--ink-2); }
.dk-next__punch { margin: 18px 0 0; font-family: var(--fd); font-weight: 700; font-size: 15.5px; color: var(--accent); }
@media (max-width: 620px) { .dk-next__list { grid-template-columns: 1fr; } }

.dk-gain { max-width: 620px; margin: clamp(22px,2.8vw,30px) auto 0; padding: clamp(20px,2.6vw,28px) clamp(22px,3vw,32px); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.dk-gain__h { margin: 0 0 14px; font-family: var(--fd); font-weight: 700; font-size: 15.5px; color: var(--ink); text-align: center; }
.dk-gain .checklist { margin-top: 0; }
.dk-sec .dk-punch { text-align: center; margin-top: clamp(22px,2.6vw,28px); }

@media (max-width: 620px) {
  .danke__steps li { flex-direction: column; gap: 9px; }
  .danke__tag { white-space: normal; align-self: flex-start; }
  .danke__steps p { margin-top: 0; }
}

@media (max-width: 620px) {
  .dk-value { flex-direction: column; gap: 3px; padding: 11px 22px; text-align: center; }
  .dk-value em { display: none; }
}

.chapter--dark:has(+ .chapter--paper)  { --cap-b: var(--paper-2); }
.chapter--dark:has(+ .chapter--light)  { --cap-b: var(--paper); }
.chapter--paper + .chapter--dark       { --cap-t: var(--paper-2); }
.chapter--light + .chapter--dark       { --cap-t: var(--paper); }

main:has(> .chapter--paper:last-child) + .footer.chapter--dark::before { background: var(--paper-2); }

.fahero { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(30px,4.4vw,64px); align-items: center; text-align: left; }
.fahero .hero__eyebrow, .fahero .hero__lead { margin-inline: 0; }
.fahero .hero__title { text-align: left; }
.fahero .hero__cta { align-items: flex-start; }
.fahero__close { margin-top: 18px; font-size: clamp(15px,1.9vw,17px); line-height: 1.55; color: rgba(255,255,255,.93); }

.fapoints { list-style: none; display: flex; flex-direction: column; gap: 0; margin: 26px 0 0; }
.fapoints li { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.14); font-size: clamp(15.5px,1.95vw,17.5px); line-height: 1.5; color: #fff; }
.fapoints li:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.fapoints strong { color: #fff; font-weight: 700; }
.fapoints__n { flex-shrink: 0; font-family: var(--fd); font-weight: 700; font-size: 12.5px; color: var(--accent-2); padding-top: 3px; letter-spacing: .04em; }

.fahero__mock { position: relative; }
.doc-preview--hero { transform: rotate(2.2deg); box-shadow: 0 50px 100px -40px rgba(0,0,0,.6); }

@media (max-width: 900px) {
  .fahero { grid-template-columns: 1fr; text-align: center; }
  .fahero .hero__title { text-align: center; }
  .fahero .hero__eyebrow, .fahero .hero__lead, .fahero__close { margin-inline: auto; }
  .fahero .hero__cta { align-items: center; }
  .fapoints { text-align: left; max-width: 460px; margin-inline: auto; }
  .fahero__mock { display: none; }   
}

.voices--light .sec-title { color: var(--ink); }
.faref { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px,3vw,34px); box-shadow: var(--sh-1); margin: 0; display: flex; flex-direction: column; }
.faref blockquote { font-size: 15.5px; line-height: 1.62; color: var(--ink-2); }
.faref blockquote::before { content: "\201C"; color: var(--accent); font-family: var(--fd); font-size: 34px; line-height: 0; vertical-align: -10px; margin-right: 3px; }
.faref figcaption { margin-top: auto; padding-top: 18px; font-family: var(--fd); font-weight: 700; font-size: 15px; color: var(--ink); display: flex; flex-direction: column; }
.faref figcaption span { font-family: var(--fb); font-weight: 400; font-size: 13px; color: var(--accent); margin-top: 2px; }
.faref--hero { max-width: 760px; margin: 0 auto clamp(18px,2.4vw,24px); text-align: center; align-items: center; border-color: rgba(210,31,88,.3); box-shadow: 0 30px 70px -40px rgba(210,31,88,.4); }
.faref--hero blockquote { font-size: clamp(16px,2vw,18.5px); color: var(--ink); }
.faref__stat { margin: 0 0 10px; font-family: var(--fd); font-weight: 800; font-size: clamp(34px,5.4vw,52px); letter-spacing: -.03em; line-height: 1; color: var(--accent); }
.faref--hero figcaption { align-items: center; }
.faref__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px,2.2vw,24px); max-width: 960px; margin-inline: auto; }
@media (max-width: 800px) { .faref__grid { grid-template-columns: 1fr; } }
.doc-preview--hero { position: relative; top: auto; right: auto; width: min(100%, 350px); margin-inline: auto; }

.voices--light { background: var(--paper-2); }
.voices--light .sec-kicker { color: var(--accent); }
.voices--light .sec-kicker i { background: var(--accent); }

.fphero__mock { display: flex; flex-direction: column; gap: 20px; }
.fpmock .diag2__mock { box-shadow: 0 44px 90px -40px rgba(0,0,0,.6); }
.fpmock__lead { margin: 0 0 12px; font-family: var(--fd); font-weight: 700; font-size: 15px; letter-spacing: .02em; color: #fff; }
.fpmock__list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin: 0; }
.fpmock__list li { display: flex; gap: 11px; align-items: baseline; font-size: 14.5px; line-height: 1.45; color: #fff; text-align: left; }
.fpmock__list li span { flex-shrink: 0; font-family: var(--fd); font-weight: 700; font-size: 11.5px; color: var(--accent-2); letter-spacing: .04em; }
@media (max-width: 900px) {
  .fphero__mock { display: block; }
  .fpmock { display: none; }               
  .fpmock__side { max-width: 460px; margin: 26px auto 0; }
  .fpmock__lead { text-align: center; }
}

@media (min-width: 861px) {

  
  .sec-kicker, .hero__eyebrow, .plan__eyebrow, .danke__tag, .crow__kind,
  .team__voice-label, .post__cat, .lscn__tag, .fpmock__list li span,
  .fapoints__n, .diag2__n, .vcard figcaption span, .faref figcaption span {
    font-size: 12px; letter-spacing: .085em;
  }
  .hero__eyebrow--intro { font-size: 16px; letter-spacing: 0; text-transform: none; }

  
  .sec-sub, .problem__intro, .team__intro, .wanalyse__lead, .deliver__close,
  .pricing__close, .resonance__out, .diagnose__lead, .diag2__lead,
  .checklist__lead, .dk-prose p, .dk-offer__lead, .dk-gain__h, .dk-next__h,
  .fahero__close, .resonance__pre {
    font-size: 18px; line-height: 1.6;
  }

  
  .prose p, .prose li, .person__body p, .step__body p, .acc__body p,
  .guarantee__steps p, .wanalyse__checks li, .checklist li, .problem__list li,
  .ba__col li, .plan__list li, .plan__for, .diag2__list li, .post__desc,
  .team__voice blockquote, .vcard blockquote, .faref blockquote,
  .dk-quote blockquote, .probe__voice blockquote, .dk-arrows li,
  .dk-next__list p, .fapoints li, .fpmock__list li, .deliver__card p,
  .crow__txt, .deliver__get, .lscn__rows li {
    font-size: 16px; line-height: 1.6;
  }

  
  .deliver__card h3, .step__title, .plan__name, .ba__h, .person__name,
  .acc__item summary, .post__title, .hero__value-k, .crow__role, .vcard__head {
    font-size: 20px; line-height: 1.25; letter-spacing: -.015em;
  }
  .hero__value-t { font-size: 15.5px; line-height: 1.55; }

  
  .sec-cta__note, .hero__cta-note, .problem__loss-src, .pricing__capacity,
  .wform__note, .pform__foot, .form__foot, .dk-hint, .dk-cap, .dk-urgency,
  .guarantee__support, .post__meta, .lmodal__src, .plan__support,
  .wanalyse__trust, .probe__note, .process__more, .field__hint {
    font-size: 14px; line-height: 1.55;
  }
}

.nav--lock .nav__wrap { gap: 0; }
.nav--lock .nav__brand { cursor: default; }

.nav--lock + main > .chapter:first-child { padding-top: clamp(120px, 14vw, 180px); }

.guarantee__card { position: relative; padding-top: clamp(56px, 7vw, 72px); }
.guarantee__seal { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); width: clamp(86px, 10vw, 104px); height: clamp(86px, 10vw, 104px); color: var(--accent); filter: drop-shadow(0 14px 28px rgba(210,31,88,.35)); display: grid; place-items: center; }
.guarantee__seal svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.guarantee__seal span { position: relative; z-index: 1; margin-top: 34%; font-family: var(--fd); font-weight: 800; font-size: 12.5px; letter-spacing: .04em; color: #fff; }
.guarantee { padding-top: clamp(70px, 9vw, 110px); }

@media

@media (max-width: 900px) {
  .wanalyse__intro { text-align: center; }
  .wanalyse__intro .sec-kicker { justify-content: center; }
  .wanalyse__checks { max-width: 440px; margin-inline: auto; text-align: left; }
  .wanalyse__trust { justify-content: center; }
}

.hero--full { min-height: 100svh; display: flex; align-items: center; }
.hero--full .hero__inner { width: 100%; }
@supports not (min-height: 100svh) { .hero--full { min-height: 100vh; } }

@media (min-width: 901px) { .fahero { grid-template-columns: 1.02fr .98fr; } }
.faphoto { display: block; width: min(100%, 460px); margin-inline: auto; border-radius: 14px; transform: rotate(2.2deg); box-shadow: 0 60px 120px -40px rgba(0,0,0,.65), 0 0 0 1px rgba(255,255,255,.08); }

.fasteps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); align-items: stretch; }
.fasteps li { display: flex; }
.fasteps .step__body { display: flex; flex-direction: column; width: 100%; }
.fasteps .deliver__get { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
@media (max-width: 860px) { .fasteps { grid-template-columns: 1fr; } }

.dk-scroll { position: absolute; left: 50%; bottom: -27px; transform: translateX(-50%); z-index: 6; width: 54px; height: 54px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; box-shadow: 0 18px 40px -10px rgba(210,31,88,.7); animation: dkBounce 2s var(--ease) infinite; }
.dk-scroll svg { width: 22px; height: 22px; }
.dk-scroll:hover { background: #b81a4d; }
@keyframes dkBounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(7px); } }
@media (prefers-reduced-motion: reduce) { .dk-scroll { animation: none; } }
.dk-hero { overflow: visible; }
.dk-next__punch { font-size: 16px; }

.team__voice { display: flex; flex-direction: column; }
.team__voice figcaption { margin-top: auto; padding-top: 12px; }

@media (min-width: 861px) {
  .plans { grid-template-rows: auto auto auto 1fr auto auto auto; }
  .plan { display: grid; grid-template-rows: subgrid; grid-row: span 7; }
  
  .plan__for { align-self: start; }
}

@media (min-width: 861px) {
  .fasteps { grid-template-rows: auto auto 1fr auto; }
  .fasteps li { display: contents; }
  .fasteps .step__body { display: grid; grid-template-rows: subgrid; grid-row: span 4; align-content: start; }
  .fasteps .deliver__get { margin-top: 0; align-self: start; }
}

.guarantee__seal { position: absolute; top: 0; left: 50%; transform: translate(-50%, -52%); width: clamp(92px, 11vw, 116px); height: clamp(92px, 11vw, 116px); filter: drop-shadow(0 16px 30px rgba(210,31,88,.38)); z-index: 2; }
.guarantee__seal-txt { font-family: var(--fd); font-weight: 800; font-size: 15px; letter-spacing: .06em; fill: #fff; }

.fahero--stack { display: block; }
.fahero__top { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.fahero--stack .hero__title--probe { font-size: clamp(34px, 4.6vw, 62px); }
.fapoints--row { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 3vw, 44px); margin-top: clamp(30px, 4.4vw, 54px); padding: clamp(18px, 2.4vw, 26px) 0; border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.fapoints--row li { border: 0; padding: 6px 0; }
.fapoints--row li:last-child { border: 0; }
.fahero--stack .fahero__close { text-align: center; max-width: 640px; margin: clamp(22px, 3vw, 30px) auto 0; }
.fahero--stack .hero__cta { margin-top: clamp(24px, 3vw, 34px); align-items: center; }
@media (max-width: 900px) {
  .fahero__top { display: block; }
  .fapoints--row { grid-template-columns: 1fr; padding: 6px 0; }
  .fapoints--row li { padding: 12px 0; }
  .fapoints--row li + li { border-top: 1px solid rgba(255,255,255,.14); }
}

.faform { position: relative; z-index: 5; display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.faform__intro .sec-head { text-align: left; margin: 0 0 18px; }
.faform__intro .sec-head .sec-kicker { justify-content: flex-start; }
.faform__intro .sec-sub { margin-inline: 0; }
.faform .pform__card { margin: 0; max-width: none; }
.faform__photo { width: min(72%, 300px); margin-top: clamp(22px, 3vw, 32px); border-radius: 12px; transform: rotate(-2.4deg); box-shadow: 0 40px 90px -36px rgba(0,0,0,.6); }
.fpnext { margin-top: clamp(20px, 2.6vw, 28px); }
.fpnext__h { font-family: var(--fd); font-weight: 700; font-size: 15.5px; color: #fff; margin: 0 0 12px; }
.fpnext ol { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fpnext li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; line-height: 1.55; color: #fff; }
.fpnext__n { flex-shrink: 0; width: 25px; height: 25px; border-radius: 50%; background: rgba(232,70,122,.16); color: var(--accent-2); font-family: var(--fd); font-weight: 700; font-size: 12.5px; display: grid; place-items: center; margin-top: 1px; }
@media (max-width: 900px) {
  .faform { grid-template-columns: 1fr; }
  .faform__intro .sec-head { text-align: center; margin-inline: auto; }
  .faform__intro .sec-head .sec-kicker { justify-content: center; }
  .faform__intro .sec-sub { margin-inline: auto; }
  .faform__photo { display: none; }
  .fpnext { max-width: 440px; margin-inline: auto; }
}

@media (min-width: 861px) {
  .afterflow .wrap--narrow { max-width: var(--wrap); }
  .afterflow__list { grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 32px); position: relative; }
  .afterflow__list::before { content: ""; position: absolute; top: 17px; left: 16.66%; right: 16.66%; height: 2px; background: linear-gradient(90deg, rgba(210,31,88,.12), rgba(210,31,88,.38), rgba(210,31,88,.12)); }
  .afterflow__list li { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
  .afterflow__n { position: relative; z-index: 1; box-shadow: 0 0 0 6px var(--paper); }
  .afterflow__note { margin-inline: auto; text-align: center; max-width: 760px; }
}

@media (min-width: 901px) {
  .fahero--probe { align-items: start; }
  .fahero--probe .fphero__mock { margin-top: 44px; }  
  .fahero--probe .checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 26px; max-width: none; }
}

.dk-scroll { top: -66px; bottom: auto; z-index: 10; }
#weiter { position: relative; }

.dk-offer .dk-arrows { max-width: none; }
.dk-offer .dk-arrows li { padding-left: 0; display: flex; gap: 10px; justify-content: center; }
.dk-offer .dk-arrows li::before { content: "→"; position: static; }
.dk-prose { text-align: center; }
.dk-gain .checklist { max-width: 560px; }
.dk-gain .checklist li { padding-left: 0; display: flex; gap: 10px; justify-content: center; text-align: left; }
.dk-gain .checklist li::before { content: ""; position: static; flex-shrink: 0; margin-top: 1px; }

.footer--grau::before { background: var(--paper-2) !important; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H1440 V27 C1140 56 1015 56 720 33 C425 10 300 10 0 33 Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center / 100% 100% !important; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H1440 V27 C1140 56 1015 56 720 33 C425 10 300 10 0 33 Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center / 100% 100% !important; }

.nav--float .btn--nav { margin-left: auto; }
.nav--float + main.subpage { padding-top: clamp(88px, 9vw, 116px); }

.checklist__lead--center { text-align: center; margin: clamp(30px, 4.4vw, 54px) 0 16px; }
.fpchecks { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2.6vw, 36px); max-width: none; margin: 0; padding: clamp(18px, 2.4vw, 26px) 0; border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); text-align: left; }
.fpchecks li { font-size: 15px; line-height: 1.55; }
.fahero--stack .fphero__mock { display: flex; flex-direction: column; gap: 20px; }
@media (max-width: 900px) {
  .fpchecks { grid-template-columns: 1fr; padding: 6px 0; }
  .fpchecks li { padding-block: 10px; }
  .fpchecks li + li { border-top: 1px solid rgba(255,255,255,.12); }
  .checklist__lead--center { margin-top: 24px; }
}

.nav__links--stay { display: flex !important; }
@media (max-width: 520px) { .nav__links--stay a { font-size: 14px; } }

.resonate--em { font-style: italic; }

i { font-style: normal; }

.hero--fold { align-items: flex-start; padding-block: clamp(90px, 10.5vh, 110px) clamp(24px, 4vh, 44px); }
.hero--fold .hero__inner { padding-block: 0; }
.hero--fold .hero__title--probe { font-size: clamp(31px, 3.3vw, 50px); line-height: 1.08; }
.hero--fold .hero__eyebrow { margin-bottom: 6px; }
.hero--fold .hero__lead { margin-top: 12px; font-size: clamp(15px, 1.5vw, 17px); }
.hero--fold .hero__cta { margin-top: clamp(16px, 2.1vw, 24px); }
.hero--fold .faphoto { width: min(100%, 352px); }
.hero--fold .fphero__mock { gap: 10px; }
.hero--fold .fpmock .diag2__mock { max-width: 360px; margin-inline: auto; }

.nav--lock + main > .hero--fold:first-child { padding-top: clamp(80px, 9.5vh, 100px); }

.hero--fold .diag2__screen { gap: 12px; padding: 16px; }
.hero--fold .diag2__zone { padding: 12px 14px; }
.hero--fold .diag2__zone--hero { padding-block: 15px; }

@media (min-width: 901px) {
  .hero--fold .fpmock__side { display: none; }
}
@media (max-width: 900px) {
  .hero--fold { align-items: center; padding-block: clamp(92px, 20vw, 118px) clamp(40px, 11vw, 68px); }
  .hero--fold .hero__title--probe { font-size: clamp(28px, 7.6vw, 37px); }
  
  .hero--fold .fahero--stack { display: flex; flex-direction: column; }
  
  .hero--fold .fahero--stack > * { order: 4; }
  .hero--fold .fahero__top { display: contents; }
  .hero--fold .fahero__copy { order: 1; }
  .hero--fold .hero__cta { order: 2; }
  .hero--fold .fahero__mock, .hero--fold .fphero__mock { order: 3; margin-top: clamp(26px, 6vw, 34px); }
  .hero--fold .fapoints__lead, .hero--fold .fapoints--row, .hero--fold .fahero__close,
  .hero--fold .checklist__lead, .hero--fold .fpchecks { order: 4; }
}

.dk-hero { padding-block: clamp(76px, 9vh, 92px) clamp(74px, 9vh, 94px); }
.nav--lock + main > .dk-hero:first-child { padding-top: clamp(76px, 9vh, 92px); }
.dk-hero .dk-check { width: 54px; height: 54px; margin-bottom: 14px; font-size: 24px; }
.dk-hero .probe__title { margin-bottom: 12px; }
.dk-hero .dk-congrats { margin-bottom: 8px; }
.dk-hero .probe__lead { margin-top: 0; }
.dk-hero .dk-hint { margin-top: 14px; }
.dk-hero .danke__steps { margin-top: 20px; gap: 10px; }
.dk-hero .danke__steps li { padding: 12px 16px; }

.doi-hint { max-width: 520px; margin: clamp(26px,3.4vw,34px) auto 0; padding: 16px 22px; border: 1px solid rgba(255,255,255,.16); border-radius: 100px; background: rgba(255,255,255,.05); font-size: 14.5px; line-height: 1.55; color: rgba(255,255,255,.93); }
.doi-hint strong { color: #fff; font-weight: 600; }
@media (max-width: 560px) { .doi-hint { border-radius: var(--radius); } }

.seele-a { position: relative; overflow: hidden;
  
  --seele-h: max(clamp(600px, 100vh, 1040px), calc(100vw / 1.7)); }
.seele-a::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: url("../assets/bg/bg-reveal.webp") center center no-repeat;
  opacity: var(--seele-op, .28);
  
  background-size: auto var(--seele-h);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.5) 16%, #000 34%, #000 66%, rgba(0,0,0,.5) 84%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.5) 16%, #000 34%, #000 66%, rgba(0,0,0,.5) 84%, transparent 100%);
  -webkit-mask-size: auto var(--seele-h); mask-size: auto var(--seele-h);
  -webkit-mask-position: center center; mask-position: center center;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}
.seele-a::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  
  background: linear-gradient(180deg,
    #fff 0%,
    rgba(255,255,255,.88) 10%,
    rgba(255,255,255,.52) 22%,
    rgba(255,255,255,var(--seele-veil, .15)) 38%,
    rgba(255,255,255,var(--seele-veil, .15)) 62%,
    rgba(255,255,255,.52) 78%,
    rgba(255,255,255,.88) 90%,
    #fff 100%);
}
.seele-a > .wrap { position: relative; z-index: 2; }
.seele-a--alt::before { background-image: url("../assets/bg/bg-closing.webp"); background-position: center center; transform: scaleX(-1) translateZ(0); }

.staerke-1 { --seele-op: .22; --seele-veil: .34; }   
.staerke-2 { --seele-op: .28; --seele-veil: .15; }   
.staerke-3 { --seele-op: .62; --seele-veil: .04; }   

.seele-c { position: relative; overflow: hidden; }
.seele-c__img { position: absolute; inset: 0; z-index: 0; background: url("../assets/bg/bg-hero.webp") center center / cover no-repeat;
  transform: translateZ(0); will-change: transform; backface-visibility: hidden; }
.seele-c__img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(53,81,104,var(--seele-c-veil, .88)) 0%, rgba(53,81,104,calc(var(--seele-c-veil, .88) + .04)) 100%);
}
.staerke-1 .seele-c__img::after { --seele-c-veil: .93; }
.staerke-3 .seele-c__img::after { --seele-c-veil: .80; }
.seele-c > .wrap { position: relative; z-index: 5; }
.seele-c .voices__canvas { opacity: .38; }

.seele-switch { position: fixed; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 200;
  display: flex; align-items: center; gap: 6px; padding: 8px 10px; border-radius: 100px;
  background: rgba(26,26,26,.88); backdrop-filter: blur(14px); box-shadow: 0 18px 44px -14px rgba(0,0,0,.6); }
.seele-switch b { color:#fff; font-family: var(--fd); font-weight:700; font-size:11.5px; letter-spacing:.08em; text-transform:uppercase; padding: 0 8px; }
.seele-switch button { font-family: var(--fd); font-weight:600; font-size:13px; color:#fff; background:rgba(255,255,255,.12); border:0; padding:8px 15px; border-radius:100px; cursor:pointer; }
.seele-switch button:hover { background: rgba(255,255,255,.24); }
.seele-switch button[aria-pressed="true"] { background: var(--accent); }
@media (max-width:560px){ .seele-switch b { display:none } }

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

@media (min-width: 1200px) {
  .hero--full .hero__inner.fahero { max-width: min(1320px, 92vw); }
  .fahero__top { grid-template-columns: 1.35fr .65fr; gap: clamp(30px, 2.8vw, 46px); }
  .fahero--stack .hero__title--probe { font-size: clamp(34px, 3.3vw, 50px); }
  .fahero__copy .hero__lead { max-width: 46ch; }
}
@media (min-width: 1600px) {
  .hero--full .hero__inner.fahero { max-width: 1400px; }
  .fahero--stack .hero__title--probe { font-size: 52px; }
}

@media (min-width: 901px) {
  .hero--full { padding-top: clamp(112px, 13vh, 150px); padding-bottom: clamp(84px, 9vh, 104px); }
  .fahero__mock .faphoto { max-height: 54vh; max-width: min(100%, 480px); width: auto; margin-inline: auto; }
  .fphero__mock .diag2__mock { max-height: none; max-width: min(100%, 410px); }
  .fpmock { transform-origin: top center; }
  
  .hero--full { flex-direction: column; justify-content: center; }
  .hero--full .hero__inner { width: 100%; }
  .hero--full .hero__scroll {
    display: flex; position: static; transform: none;
    margin: clamp(22px, 3.2vh, 36px) auto 0; left: auto; bottom: auto;
  }
}

@media (min-width: 901px) and (max-height: 900px) {
  .hero--full { min-height: 0; padding-top: clamp(100px, 12vh, 124px); padding-bottom: clamp(78px, 8.5vh, 96px); }
  .fahero--stack .hero__lead { margin-top: 12px; }
  .fahero--stack .hero__cta { margin-top: clamp(14px, 2.2vh, 22px); }
  .fapoints--row { margin-top: clamp(16px, 2.4vh, 26px); padding-block: clamp(10px, 1.6vh, 16px); }
  .fahero--stack .fahero__close { margin-top: clamp(12px, 1.8vh, 18px); }
  .fahero--probe .checklist__lead--center { margin-top: clamp(14px, 2.2vh, 22px); }
  .fahero__mock .faphoto { max-height: 44vh; }
  .fpmock { transform: scale(.82); margin-bottom: -10%; }
}

@media (min-width: 901px) and (max-height: 780px) {
  .fpmock { transform: scale(.72); margin-bottom: -15%; }
  .fahero__mock .faphoto { max-height: 38vh; }
}

.sec-kicker--light { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: .1em; }
.sec-kicker--light i { background: var(--accent-2); }
@media (min-width: 861px) { .sec-kicker--light { font-size: 13.5px; } }

.chapter--dark .hero__value-k,
.chapter--dark .probe__value span:last-child,
.chapter--dark .hero__cta-value,
.dk-congrats, .danke__tag,
.fpmock__list li span, .fapoints__n,
.footer .footer__tag em { font-weight: 700; }

.chapter--dark p, .chapter--dark li, .chapter--dark blockquote,
.footer p, .footer li, .dk-prose--dark p { color: #fff; }

.chapter--dark .sec-cta__note, .chapter--dark .hero__cta-note,
.chapter--dark .problem__loss-src, .chapter--dark .pform__foot,
.dk-cap, .dk-hint, .footer__base p, .footer__base a { color: rgba(255,255,255,.82); }

.footer__links a { color: rgba(255,255,255,.9); }
.footer__links a:hover { color: #fff; }

.err__line { position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%); width: 100%; height: clamp(180px, 26vw, 300px); z-index: 1; pointer-events: none; }
.err__line circle:first-of-type { filter: drop-shadow(0 0 14px rgba(232,70,122,.8)); }

.chapter--dark .vcard figcaption span,
.chapter--dark .faref figcaption span { color: rgba(255,255,255,.85); }
.seele-c__img::after { background: linear-gradient(180deg, rgba(53,81,104,.93) 0%, rgba(53,81,104,.96) 100%); }
.seele-c .voices__big { color: var(--accent-2); font-weight: 800; text-shadow: 0 0 26px rgba(53,81,104,.9); }

.fapoints__lead { margin: clamp(20px, 3vh, 30px) 0 -6px; text-align: center; font-family: var(--fd); font-weight: 600; font-size: 16px; color: rgba(255,255,255,.9); }

html.reveal-fallback [data-reveal] { opacity: 1 !important; transform: none !important; }

html.js:not(.hero-ready) #hero .hero__eyebrow,
html.js:not(.hero-ready) #hero .hero__title,
html.js:not(.hero-ready) #hero .hero__lead,
html.js:not(.hero-ready) #hero .hero__value,
html.js:not(.hero-ready) #hero .hero__cta,
html.js:not(.hero-ready) .hero__scroll { opacity: 0; }

html.reveal-fallback #hero .hero__eyebrow, html.reveal-fallback #hero .hero__title,
html.reveal-fallback #hero .hero__lead, html.reveal-fallback #hero .hero__value,
html.reveal-fallback #hero .hero__cta, html.reveal-fallback .hero__scroll { opacity: 1 !important; }

.modal__title { padding-right: 56px; }

@media (max-width: 900px) {
  .blog__grid { grid-template-columns: 1fr; }
  .post__cat { align-self: flex-start; max-width: 100%; white-space: normal; overflow-wrap: anywhere; margin-bottom: 14px; }
  .post__title { font-size: 19px; }
  .post { display: flex; flex-direction: column; }
  .post__desc { flex: 1; }
  .post__meta { margin-top: 16px; white-space: nowrap; }
}

@media (min-width: 861px) { .blogpage__grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); } }

.fapoints__lead { margin-bottom: 0; }
.fapoints__lead + .fapoints--row { margin-top: 10px; }
@media (max-width: 900px) {
  .hero--fold .fapoints__lead { margin-bottom: 0; }
  .hero--fold .fapoints__lead + .fapoints--row { margin-top: 8px; }
}

@media (min-width: 901px) {
  .hero--full,
  .nav--lock + main > .hero--fold:first-child { padding-top: clamp(112px, 13.5vh, 148px); }
}
@media (max-width: 900px) {
  
  .hero--fold,
  .nav--lock + main > .hero--fold:first-child { padding-top: clamp(118px, 29vw, 146px); }
  
  .hero--fold .fahero--stack { row-gap: 0; }
  .hero--fold .hero__cta { margin-top: clamp(22px, 5.5vw, 30px); }
  
  .hero--fold .fapoints__lead { margin-top: clamp(24px, 6.5vw, 32px); margin-bottom: 0; }
  .hero--fold .fapoints__lead + .fapoints--row { margin-top: 5px; }
}

@media (min-width: 901px) and (max-height: 880px) {
  .hero--full,
  .nav--lock + main > .hero--fold:first-child { padding-top: clamp(92px, 11.5vh, 108px); }
  .hero--full { padding-bottom: clamp(20px, 2.6vh, 32px); }
  .hero--full .hero__scroll { margin-top: clamp(12px, 1.8vh, 18px); }
  .fahero--stack .hero__cta { margin-top: clamp(12px, 1.8vh, 18px); }
  .fapoints__lead { margin-top: clamp(12px, 1.8vh, 18px); }
  .fapoints--row { margin-top: 8px; padding-block: clamp(8px, 1.2vh, 12px); }
  .hero--fold .hero__lead { margin-top: 10px; }
}

.checklist__lead { margin-bottom: 0; }
.checklist__lead + .fpchecks { margin-top: 5px; }
@media (max-width: 900px) {
  .hero--fold .checklist__lead { margin-top: clamp(24px, 6.5vw, 32px); margin-bottom: 0; }
  .hero--fold .checklist__lead + .fpchecks { margin-top: 5px; }
}
@media (min-width: 901px) and (max-height: 880px) {
  .checklist__lead { margin-top: clamp(12px, 1.8vh, 18px); }
}

.nav--float .nav__links--stay + .btn--nav { margin-left: 0; }

.prose--center { text-align: center; }
.prose--center p,
.prose--center h2,
.prose--center h3 { margin-inline: auto; }
.prose--center ul.plain,
.prose--center > ul,
.prose--center > ol { list-style: none; padding-left: 0; margin-inline: auto; max-width: 62ch; }
.prose--center > ul > li,
.prose--center > ol > li { padding-left: 0; }
.prose--center > ul > li::before,
.prose--center > ol > li::before { content: none; }
.prose--center .acc,
.prose--center .scroll,
.prose--center table { text-align: left; }
.prose--center blockquote {
  text-align: center; border-left: 0; padding: 4px 0;
  border-top: 2px solid var(--accent); padding-top: 20px; max-width: 62ch; margin-inline: auto;
}
.prose--center blockquote cite { display: block; margin-top: 10px; }

.subfooter-cta .btn--accent { box-shadow: 0 14px 32px -14px rgba(0,0,0,.6); }
.subfooter-cta .btn--accent:hover { box-shadow: 0 18px 40px -14px rgba(0,0,0,.72); }

.footer__links--legal { margin-top: 14px; gap: 6px 20px; }
.footer__links--legal a { font-size: 13px; color: rgba(255,255,255,.62); }
.footer__links--legal a:hover { color: var(--accent-2); }
.footer__nav { display: flex; flex-direction: column; align-items: flex-start; }
@media (min-width: 861px) { .footer__nav { align-items: flex-end; } }

.vcard blockquote.q--multi::before { content: none; }
.vcard blockquote.q--multi p { margin: 0 0 .9em; }
.vcard blockquote.q--multi p:last-child { margin-bottom: 0; }
.vcard blockquote.q--multi p:first-child::before {
  content: "\201C"; color: var(--accent-2); font-family: var(--fd);
  font-size: 40px; line-height: 0; vertical-align: -12px; margin-right: 4px;
}

@media (min-width: 861px) {
  .hero:not(.hero--fold) {
    padding-block: clamp(94px, 11vh, 128px) clamp(50px, 7.6vh, 168px);
  }
  .hero:not(.hero--fold) .hero__eyebrow { margin-bottom: clamp(6px, 1.2vh, 26px);
    font-size: clamp(14px, min(1.3vw, 2.3vh), 16px); }
  .hero:not(.hero--fold) .hero__title {
    font-size: clamp(40px, min(10vw, 8.6vh), 122px);
  }
  
  .hero:not(.hero--fold) .hero__title--landing {
    font-size: clamp(34px, min(6.4vw, 6.35vh), 84px);
  }
  .hero:not(.hero--fold) .hero__lead {
    margin-top: clamp(10px, 2vh, 30px);
    font-size: clamp(16px, min(2.2vw, 2.3vh), 23px);
  }
  .hero:not(.hero--fold) .hero__values {
    margin-top: clamp(12px, 2.2vh, 46px);
    gap: clamp(14px, 2vw, 30px);
  }
  .hero:not(.hero--fold) .hero__value { padding-top: clamp(8px, 1.3vh, 18px); gap: clamp(4px, .7vh, 8px); }
  .hero:not(.hero--fold) .hero__value-k { font-size: clamp(14px, 1.7vh, 16px); }
  .hero:not(.hero--fold) .hero__value-t { font-size: clamp(12.5px, 1.45vh, 14.5px); line-height: 1.45; }
  .hero:not(.hero--fold) .hero__cta { margin-top: clamp(14px, 2.3vh, 50px); gap: clamp(6px, 1.1vh, 16px); }
  .hero:not(.hero--fold) .hero__scroll { bottom: clamp(14px, 3vh, 68px); }
}

@media (min-width: 861px) and (max-height: 880px) {
  .hero:not(.hero--fold) {
    align-items: flex-start;
    padding-block: clamp(98px, 13vh, 128px) clamp(56px, 8vh, 168px);
  }
  .hero:not(.hero--fold) .hero__eyebrow { margin-bottom: clamp(14px, 2.6vh, 26px); }
  .hero:not(.hero--fold) .hero__title { font-size: clamp(48px, min(10vw, 12.6vh), 122px); }
  .hero:not(.hero--fold) .hero__title--landing { font-size: clamp(38px, min(6.4vw, 8.4vh), 84px); }
  .hero:not(.hero--fold) .hero__lead {
    margin-top: clamp(18px, 3.2vh, 30px);
    font-size: clamp(17px, min(2.2vw, 2.7vh), 23px);
  }
  .hero:not(.hero--fold) .hero__values { margin-top: clamp(26px, 4.6vh, 46px); }
  .hero:not(.hero--fold) .hero__value { padding-top: clamp(14px, 2vh, 18px); gap: clamp(6px, 1.1vh, 8px); }
  .hero:not(.hero--fold) .hero__value-t { font-size: clamp(13.5px, 1.7vh, 14.5px); line-height: 1.5; }
  .hero:not(.hero--fold) .hero__cta { margin-top: clamp(28px, 4.6vh, 50px); gap: clamp(10px, 1.6vh, 16px); }
  
  .hero:not(.hero--fold) .hero__inner { display: flex; flex-direction: column; }
  .hero:not(.hero--fold) .hero__eyebrow { order: 1; }
  .hero:not(.hero--fold) .hero__title   { order: 2; }
  .hero:not(.hero--fold) .hero__lead    { order: 3; }
  .hero:not(.hero--fold) .hero__cta     { order: 4; }
  .hero:not(.hero--fold) .hero__values  { order: 5; margin-top: clamp(30px, 5vh, 46px); }
  
  .hero:not(.hero--fold) .hero__scroll { display: none; }
}

.hero__ref {
  margin: clamp(26px,4vh,40px) auto 0; max-width: 760px;
  font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.85); text-align: center;
}
.hero__ref-stars { color: var(--accent-2); letter-spacing: .18em; margin-right: 6px; white-space: nowrap; }
.hero__ref cite { font-style: normal; color: rgba(255,255,255,.6); display: inline-block; margin-left: 6px; }

.problem__intro--typisch { margin-top: 14px; }

.plan__half { font-size: 12.5px; line-height: 1.5; color: var(--ink-3); margin: -14px 0 18px; }

.plan__sublist { list-style: none; margin-top: 8px; display: flex; flex-direction: column; gap: 6px; }
.plan__sublist li { position: relative; padding-left: 15px; font-size: 13px; line-height: 1.5; color: var(--ink-3); }
.plan__sublist li::before { content: "–"; position: absolute; left: 1px; top: 0; width: auto; height: auto; border-radius: 0; background: none; color: var(--accent); }

.ba--single { grid-template-columns: 1fr; max-width: 680px; margin-inline: auto; }

section[hidden] { display: none !important; }
.gallery { padding-block: clamp(80px,12vw,150px) clamp(60px,8vw,110px); }

.gstack { max-width: 980px; margin: clamp(30px,5vw,54px) auto clamp(24px,4vw,44px); }
.gcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--sh-1); display: flex; flex-direction: column; }
.gcard--stack { margin-bottom: clamp(20px,3vw,32px); }
.gcard__shot { display: block; aspect-ratio: 16 / 10; background: var(--paper-2); position: relative; }
.gcard__shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.gcard__ph { position: absolute; inset: 14px; display: flex; flex-direction: column; gap: 8px; }
.gcard__ph-bar { height: 10px; border-radius: 4px; background: var(--line); width: 58%; }
.gcard__ph-hero { flex: 1; border-radius: 6px; background: linear-gradient(135deg, var(--accent-tint), var(--paper-2)); }
.gcard__ph-line { height: 8px; border-radius: 4px; background: var(--line); }
.gcard__ph-line--short { width: 55%; }
.gcard__body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.gcard__name { font-family: var(--fd); font-weight: 600; font-size: 17px; color: var(--ink); }
.gcard__role { font-weight: 500; color: var(--ink-3); font-size: 14px; }
.gcard__before, .gcard__after { font-size: 13.5px; line-height: 1.55; color: var(--ink-2); }
.gcard__link { margin-top: auto; font-size: 14px; }
@media (min-width: 861px) {
  
  .gcard--stack { position: sticky; top: clamp(78px, 10vh, 112px); margin-bottom: clamp(30px, 4.5vh, 48px); }
  .gcard--stack .gcard__shot { aspect-ratio: 16 / 9; max-height: 46vh; }
  .gcard--stack .gcard__body { padding: clamp(16px, 2vh, 24px) clamp(18px, 1.8vw, 26px); gap: 10px; justify-content: flex-start; }
  .gcard--stack .gcard__name { font-size: clamp(16px, 2vh, 19px); }
  .gcard--stack .gcard__before, .gcard--stack .gcard__after { font-size: 13.5px; }
}

@media (min-width: 861px) and (max-height: 880px) {
  .hero:not(.hero--fold) .hero__ref { order: 6; }
}

.hero--mesh { background: var(--paper); }
.hero--mesh .hero__inner { max-width: 1240px; }
.hero--mesh .hero__lead { max-width: 62ch; }
.hero--mesh .hero__values { max-width: 1120px; gap: clamp(26px,3vw,44px); }
.hero__mesh {
  position: absolute; inset: 0; width: 100%; height: 100%;
  filter: blur(52px) saturate(1.15); opacity: .85; pointer-events: none;
}
.hero--mesh .hero__grain, .hero--mesh .hero__vignette { display: none; }
.hero--mesh .resonate { color: var(--accent); }
.hero--mesh .hero__canvas { opacity: .28; mix-blend-mode: multiply; }

.hero--mesh::after {
  content: ""; position: absolute; left: -1px; right: -1px; bottom: -1px;
  height: clamp(26px, 4.4vw, 56px); z-index: 3; pointer-events: none;
  background: var(--paper); transform: scaleY(-1);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H1440 V27 C1140 56 1015 56 720 33 C425 10 300 10 0 33 Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H1440 V27 C1140 56 1015 56 720 33 C425 10 300 10 0 33 Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}

@media (min-width: 861px) {
  .hero.hero--mesh {
    align-items: flex-start;
    height: 100svh; min-height: 0; max-height: none;
    padding-block: clamp(104px, 12vh, 128px) clamp(26px, 4.5vh, 56px);
  }
  .hero.hero--mesh .hero__inner { display: flex; flex-direction: column; width: 100%; }
  .hero.hero--mesh .hero__eyebrow { order: 1; margin-bottom: clamp(10px, 2vh, 22px); }
  .hero.hero--mesh .hero__title   { order: 2; font-size: clamp(42px, min(8.6vw, 12.4vh), 118px); }
  .hero.hero--mesh .hero__lead    { order: 3; margin-top: clamp(14px, 2.6vh, 28px); font-size: clamp(16px, min(2vw, 2.5vh), 22px); }
  .hero.hero--mesh .hero__cta     { order: 4; margin-top: clamp(18px, 3.2vh, 40px); gap: clamp(8px, 1.4vh, 14px); }
  .hero.hero--mesh .hero__cta-note { font-size: clamp(12px, 1.5vh, 13.5px); }
  .hero.hero--mesh .hero__values  { order: 5; margin-top: clamp(16px, 3vh, 38px); }
  .hero.hero--mesh .hero__value   { padding-top: clamp(10px, 1.6vh, 16px); gap: clamp(4px, 0.9vh, 8px); }
  .hero.hero--mesh .hero__value-t { font-size: clamp(12.5px, 1.55vh, 14.5px); line-height: 1.45; }
  .hero.hero--mesh .hero__ref     { order: 6; margin-top: clamp(14px, 2.6vh, 34px); font-size: clamp(13px, 1.7vh, 16.5px); gap: clamp(3px, 0.7vh, 7px); }
  .hero.hero--mesh .hero__ref-stars { font-size: clamp(10px, 1.3vh, 13px); }
}
.hero--mesh .hero__eyebrow { color: var(--ink-2); }
.hero--mesh .hero__title { color: var(--ink); }
.hero--mesh .hero__lead { color: var(--ink-2); }
.hero--mesh .hero__lead strong { color: var(--ink); }
.hero--mesh .hero__value {
  background: rgba(255,255,255,.72); border: 1px solid var(--line);
  box-shadow: var(--sh-1); backdrop-filter: none;
}
.hero--mesh .hero__value-k { color: var(--accent); }
.hero--mesh .hero__value-t { color: var(--ink-2); }
.hero--mesh .hero__cta-note { color: var(--ink-3); }
.hero--mesh .hero__ref {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  margin-top: clamp(36px,6.5vh,64px); max-width: 640px;
  font-size: clamp(15px,1.7vw,17.5px); line-height: 1.6; color: var(--ink);
}
.hero--mesh .hero__ref-stars { color: var(--accent); font-size: 13px; letter-spacing: .3em; margin: 0; }
.hero--mesh .hero__ref cite { color: var(--ink-3); font-size: 13.5px; margin: 0; letter-spacing: .02em; }

.compare__rows--off { display: none; }
.cpin-pin { display: flex; flex-direction: column; gap: clamp(20px,3.5vh,34px); }
.cpin-pin .sec-head { margin-bottom: 0; }
.cpin { position: relative; min-height: 300px; }

.compare .problem__loss { margin-top: clamp(56px,8vw,110px); }
.cpin__slide {
  position: absolute; inset: 0; opacity: 0; transform: translateY(16px);
  transition: opacity .5s ease, transform .6s ease; pointer-events: none;
  display: grid; align-content: start; gap: 18px;
}
.cpin__slide.on { opacity: 1; transform: none; pointer-events: auto; position: relative; }
.cpin__slide .crow__role { margin: 0; }
.cpin__dots { display: flex; gap: 10px; justify-content: center; margin-top: 28px; }
.cpin__dots span { width: 9px; height: 9px; border-radius: 50%; background: var(--line); transition: background .3s ease, transform .3s ease; }
.cpin__dots span.on { background: var(--accent); transform: scale(1.25); }
@media (max-width: 860px) { .cpin { display: none; } .compare__rows--off { display: block; } }

.pin-spacer { position: relative; }
.pin-spacer--chapter > .chapter::before,
.pin-spacer--chapter > .chapter::after { content: none !important; }

.blog--rail { overflow: hidden; padding-block: 0; }
.blog--rail .wrap {
  display: flex; flex-direction: column; justify-content: center;
  height: 100vh; padding-block: clamp(48px,7vh,80px) 20px;
}
.blog--rail .blog__grid { display: flex; gap: clamp(20px,2.6vw,40px); will-change: transform; margin-bottom: 20px; min-height: 0; }
.blog--rail .post { flex: 0 0 min(30vw, 400px); }
.blog--rail .post__media { overflow: hidden; }
.blog--rail .post__media img { will-change: transform; }

.voices--rail { overflow: hidden; }
.voices--rail .wrap {
  display: flex; flex-direction: column; justify-content: center;
  min-height: 100vh; padding-block: clamp(56px,8vh,90px) clamp(64px,10vh,110px);
}
.voices--rail .voices__list {
  flex-direction: row; align-items: center;
  width: 100%; max-width: 100%; min-width: 0; 
  gap: clamp(20px,2.6vw,40px); will-change: transform; margin-bottom: clamp(20px,3.5vh,40px);
}
.voices--rail .vcard { flex: 0 0 min(46vw, 680px); align-self: center; padding: clamp(20px,2.6vh,32px) clamp(24px,2.6vw,40px); }
.voices--rail .vcard blockquote { font-size: clamp(13px, 1.65vh, 15px); line-height: 1.52; }
.voices--rail .voices__list { margin-bottom: 20px; }
.voices--rail .sec-head { margin-bottom: clamp(14px,2.2vh,24px); }
.blog--rail .sec-head { margin-bottom: clamp(18px,3vh,32px); }

.person .team__voice { margin: clamp(18px,2.4vh,26px) 0 0; max-width: none; text-align: left; }
.person .team__voice blockquote { font-size: 14.5px; }

@media (min-width: 861px) and (max-height: 940px) {
  .hero.hero--mesh { padding-block: clamp(118px, 13vh, 128px) clamp(12px, 2vh, 22px); }
  .hero.hero--mesh .hero__eyebrow { margin-bottom: clamp(6px, 1.3vh, 14px); font-size: clamp(12px, 1.7vh, 14px); }
  .hero.hero--mesh .hero__title { font-size: clamp(38px, min(8vw, 10.6vh), 96px); }
  .hero.hero--mesh .hero__lead { margin-top: clamp(10px, 1.8vh, 18px); font-size: clamp(15px, 2.15vh, 19px); }
  .hero.hero--mesh .hero__cta { margin-top: clamp(12px, 2.2vh, 24px); gap: clamp(6px, 1vh, 10px); }
  .hero.hero--mesh .hero__cta .btn { padding-block: clamp(12px, 1.9vh, 16px); }
  .hero.hero--mesh .hero__cta-note { font-size: clamp(11px, 1.45vh, 12.5px); }
  .hero.hero--mesh .hero__values { margin-top: clamp(8px, 1.6vh, 18px); }
  .hero.hero--mesh .hero__value-t { font-size: clamp(11.5px, 1.5vh, 13px); }
  .hero.hero--mesh .hero__ref { margin-top: clamp(8px, 1.5vh, 16px); font-size: clamp(12px, 1.65vh, 14.5px); }
}

.nav { transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.nav--hide { transform: translateY(-130%); }

@media (min-width: 861px) {
  .team__grid { grid-template-rows: auto 1fr auto; }
  .team__grid .person { display: grid; grid-template-rows: subgrid; grid-row: span 3; justify-items: center; }
  .team__grid .person__body, .team__grid .person .team__voice { width: 100%; }
  .team__grid .person__media { width: clamp(104px, 13vh, 150px); height: clamp(104px, 13vh, 150px); }
  .team__grid .person__media img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
  .person .team__voice { height: 100%; }

  
  .team { padding-block: clamp(56px, 8vh, 96px) clamp(40px, 6vh, 72px); }
  .team .sec-head { margin-bottom: clamp(10px, 1.6vh, 20px); }
  .team .sec-title { font-size: clamp(26px, 3.6vh, 40px); }
  .team__intro { margin-bottom: clamp(10px, 1.6vh, 20px); font-size: clamp(14px, 1.7vh, 16.5px); }
  .team__grid { gap: clamp(24px, 3vw, 56px); }
  .person__body h3 { font-size: clamp(18px, 2.2vh, 22px); }
  .person__role { font-size: clamp(13px, 1.6vh, 15px); }
  .person__body p { font-size: clamp(13px, 1.6vh, 15px); line-height: 1.5; margin-top: clamp(6px, 1vh, 10px); }
  .person .team__voice { margin-top: clamp(12px, 1.8vh, 20px); padding: clamp(14px, 1.9vh, 22px) clamp(18px, 2vw, 28px); }
  .person .team__voice blockquote { font-size: clamp(12.5px, 1.55vh, 14px); line-height: 1.5; }
  .team__tagline { margin-top: clamp(12px, 1.8vh, 22px); }
}

@media (min-width: 861px) {
  .dstory { display: grid; grid-template-columns: minmax(0,0.9fr) minmax(0,1fr); gap: clamp(32px,5vw,80px); align-items: start; }
  .dstory__stickycol { position: sticky; top: 0; height: 100vh; display: grid; place-items: center; }
  .dstory__visual { position: relative; width: 100%; max-width: 470px; aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; box-shadow: var(--sh-2); background: var(--paper-2); }
  .dstory__visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.06); transition: opacity .6s ease, transform 1.2s ease; }
  .dstory__visual img.on { opacity: 1; transform: scale(1); }
  .dstory__steps { display: grid; }
  .dstory__step { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; opacity: .3; transition: opacity .45s ease; }
  .dstory__step.active { opacity: 1; }
  .dstory__step .deliver__num { transition: color .3s ease; }
  .dstory__step.active .deliver__num { color: var(--accent); }
  .deliver--story .deliver__grid { display: none; }
}

.cxf-arrow { display: none; }
@media (min-width: 861px) {
  .compare--fold { padding-block: 0; }
  .compare--fold .wrap {
    min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
    padding-top: clamp(70px, 9vh, 96px); padding-bottom: clamp(14px, 2.2vh, 26px);
  }
  .compare--fold .sec-head { margin-bottom: clamp(10px, 1.6vh, 18px); }
  .compare--fold .sec-title { font-size: clamp(28px, 4vh, 46px); }
  .compare--fold .cpin { min-height: 0; }
  .compare--fold .cpin__slide { gap: clamp(8px, 1.4vh, 14px); position: absolute; }
  .compare--fold .cpin__slide.on { position: relative; }
  .compare--fold .cpin__slide .crow__role { font-size: clamp(15px, 1.9vh, 19px); }
  .compare--fold .cpin__dots { margin-top: clamp(10px, 1.6vh, 16px); }
  .cxf-arrow {
    display: grid; place-items: center;
    width: clamp(38px, 5vh, 48px); height: clamp(38px, 5vh, 48px);
    margin: clamp(8px, 1.4vh, 16px) auto; border-radius: 50%;
    background: var(--accent-tint); color: var(--accent);
    font-size: clamp(17px, 2.4vh, 22px); font-weight: 700;
  }
  .compare--fold .problem__loss {
    margin: 0; width: 100%; max-width: none;
    padding: clamp(20px, 3vh, 36px) clamp(24px, 3vw, 56px);
  }
  .compare--fold .problem__loss-big { font-size: clamp(30px, 5vh, 58px); }
  .compare--fold .problem__loss-label, .compare--fold .problem__loss-src { font-size: clamp(11.5px, 1.5vh, 14px); }
  .compare--fold .loss-calc-btn { margin-top: clamp(8px, 1.4vh, 14px); }
  .compare--fold .sec-cta { margin-top: clamp(24px, 3.6vh, 44px); }
  .compare--fold .sec-cta .sec-cta__note { display: none; } 
}

@media (min-width: 861px) {
  .team--fold .team__grid, .team--fold .team__tagline { display: none; }
  .tsel { display: flex; justify-content: center; gap: clamp(40px, 6vw, 110px); margin-bottom: clamp(10px, 1.6vh, 20px); }
  .tsel__btn {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    background: none; border: 0; cursor: pointer; padding: 0;
    opacity: .55; transition: opacity .35s ease, transform .35s ease;
  }
  .tsel__btn .person__media { width: clamp(90px, 10.5vh, 132px); height: clamp(90px, 10.5vh, 132px); margin: 0 0 6px; }
  .tsel__btn .person__media img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
  .tsel__btn.act { opacity: 1; transform: translateY(-4px); }
  .tsel__btn.act .person__media { box-shadow: 0 0 0 3px var(--accent-tint), 0 0 0 5px var(--accent); border-radius: 50%; }
  .tsel__name { font-family: var(--fd); font-weight: 600; font-size: clamp(16px, 2vh, 19px); color: var(--ink); }
  .tsel__role { font-size: clamp(12.5px, 1.55vh, 14.5px); color: var(--ink-2); max-width: 320px; }
  .tpanels { position: relative; max-width: 1020px; margin: 0 auto; }
  .tpanel {
    position: absolute; inset: 0; opacity: 0; transform: translateY(10px);
    transition: opacity .45s ease, transform .55s ease; pointer-events: none;
    display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,0.95fr);
    column-gap: clamp(28px,3vw,52px); align-items: start; text-align: left;
  }
  .tpanel.on { position: relative; opacity: 1; transform: none; pointer-events: auto; }
  .tpanel__bio { grid-column: 1; }
  .tpanel .team__voice { grid-column: 2; grid-row: 1; margin-top: 0; height: auto; }
  .tpanel__bio > p { font-size: clamp(13px, 1.62vh, 15px); line-height: 1.5; margin-top: clamp(5px, 0.9vh, 9px); color: var(--ink-2); }
  .tpanel .team__voice { margin-top: clamp(14px, 2vh, 22px); text-align: left; }
  .tpanel .team__voice blockquote { font-size: clamp(12.5px, 1.6vh, 14px); }
  .team--fold { padding-block: clamp(46px, 6.6vh, 88px) clamp(20px, 3vh, 46px); }
  .team--fold .sec-cta { margin-top: clamp(24px, 3.6vh, 44px); }
  .team--fold .sec-cta .sec-cta__note { display: none; }
}

@media (min-width: 861px) {
  .problem, .compare, .team, .process, .deliver, .pricing, .guarantee,
  .beforeafter, .wanalyse, .faq, .gallery, .blog {
    padding-block: clamp(56px, 8vh, 100px) clamp(48px, 7vh, 88px);
  }
  
  .resonance, .probe {
    padding-block: calc(clamp(56px, 8vh, 100px) + clamp(26px, 4.4vw, 56px)) calc(clamp(48px, 7vh, 88px) + clamp(26px, 4.4vw, 56px));
  }
  .sec-head { margin-bottom: clamp(18px, 2.8vh, 32px); }
  .team--fold .sec-head, .guarantee .sec-head, .problem .sec-head { margin-bottom: clamp(18px, 2.8vh, 32px); }
  .sec-kicker { margin-bottom: 12px; }
  .sec-sub { margin-top: 12px; }
  
  .process .step__body { padding: clamp(18px, 2.4vh, 28px); }
  .process .step__body p { font-size: clamp(13px, 1.65vh, 15px); line-height: 1.5; }
  .process .step__title { font-size: clamp(18px, 2.4vh, 24px); }
  .process__more { margin-top: clamp(14px, 2.2vh, 26px); font-size: clamp(13.5px, 1.7vh, 16px); }
  .process .sec-cta { margin-top: clamp(24px, 3.6vh, 44px); }
  .guarantee .guarantee__card { padding-block: clamp(28px, 4vh, 48px); }
  .guarantee__steps li p { font-size: clamp(13px, 1.65vh, 15px); }
  .wanalyse .wform__field input { padding-block: clamp(9px, 1.3vh, 13px); }
}

@media (min-width: 861px) {
  .tsel { position: relative; }
  .tsel__caret {
    position: absolute; bottom: -14px; width: 18px; height: 18px;
    transform: translateX(-50%) rotate(45deg);
    background: #fff; border-left: 1px solid var(--line); border-top: 1px solid var(--line);
    transition: left .4s var(--ease);
  }
  .tpanels {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--sh-1); padding: clamp(20px, 2.8vh, 32px) clamp(24px, 2.6vw, 40px);
  }
  .tpanel { align-items: center; }
  .tpanel .team__voice { background: var(--paper-2); }
}

.gcard { background: #fff; }
.gcard__ph { inset: 0; gap: 0; }
.gcard__ph::before {
  content: ""; display: block; height: 26px;
  background:
    radial-gradient(circle 4px at 16px 13px, #e0475f 4px, transparent 5px),
    radial-gradient(circle 4px at 32px 13px, #f2b23e 4px, transparent 5px),
    radial-gradient(circle 4px at 48px 13px, #4fbf67 4px, transparent 5px),
    var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.gcard__ph-bar { display: none; }
.gcard__ph-hero { border-radius: 0; margin: 0; background: linear-gradient(160deg, var(--accent-tint), var(--paper-2) 55%, #e8eef4); }
.gcard__ph-line { margin: 10px 18px 0; }
.gcard__ph-line--short { margin-bottom: 14px; }
.gcard__name { font-size: clamp(17px, 2.1vh, 20px); }
.gcard__before, .gcard__after { font-size: 14px; line-height: 1.55; color: var(--ink-2); }

.voices--carousel .voices__list { display: block; max-width: min(92vw, 880px); }
.vcar__vp { overflow: hidden; touch-action: pan-y; }
.vcar__track { display: flex; will-change: transform; cursor: grab; }
.vcar__track.drag { cursor: grabbing; }
.vcar__slide { flex: 0 0 100%; display: grid; align-items: center; padding: 4px 6px; }
.voices--carousel .vcard { margin: 0; height: auto; }
.voices--carousel .vcard blockquote { font-size: clamp(14px, 1.8vh, 16.5px); line-height: 1.6; }
.vcar__dots { display: flex; gap: 8px; justify-content: center; margin-top: clamp(16px, 2.4vh, 26px); }
.vcar__dots button {
  width: 30px; height: 4px; border-radius: 99px; border: 0; padding: 0;
  background: rgba(255,255,255,.25); cursor: pointer; overflow: hidden; position: relative;
}
.vcar__dots button.on { background: rgba(255,255,255,.4); }
.vcar__dots button i {
  position: absolute; inset: 0; background: var(--accent);
  transform-origin: left; transform: scaleX(0); display: block;
}
@keyframes vcarfill { to { transform: scaleX(1); } }
@media (min-width: 861px) {
  .voices--carousel .wrap {
    min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
    padding-block: clamp(70px, 9vh, 100px) clamp(40px, 6vh, 70px);
  }
  .voices--carousel { padding-block: 0; }
}

.snapdots {
  position: fixed; right: clamp(10px, 1.2vw, 22px); top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 10px; z-index: 40;
}
.snapdots button {
  width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; cursor: pointer;
  background: rgba(53, 81, 104, .28);
  transition: transform .3s ease, background .3s ease;
}
.snapdots button:hover { transform: scale(1.4); }
.snapdots button.on { background: var(--accent); transform: scale(1.35); }
@media (max-width: 1180px) { .snapdots { display: none; } }

@media (min-width: 861px) {
  html:has(main.fp-home) .problem .wrap {
    display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    column-gap: clamp(36px, 4.5vw, 84px); align-items: center; align-content: center;
  }
  html:has(main.fp-home) .problem .sec-head,
  html:has(main.fp-home) .problem__intro,
  html:has(main.fp-home) .problem .insight,
  html:has(main.fp-home) .problem .sec-cta {
    grid-column: 1; text-align: left; margin-inline: 0; max-width: none;
  }
  html:has(main.fp-home) .problem .sec-head { margin-bottom: 0; }
  html:has(main.fp-home) .problem .sec-title { font-size: clamp(30px, 4.8vh, 54px); letter-spacing: -.02em; }
  html:has(main.fp-home) .problem__intro { font-size: clamp(14.5px, 1.85vh, 17px); margin-top: clamp(10px, 1.6vh, 18px); }
  html:has(main.fp-home) .problem__intro--typisch { margin-top: clamp(8px, 1.3vh, 14px); }
  html:has(main.fp-home) .problem .insight { text-align: left; margin-top: clamp(18px, 2.8vh, 34px); }
  html:has(main.fp-home) .problem .insight p { font-size: clamp(17px, 2.4vh, 24px); }
  html:has(main.fp-home) .problem .sec-cta { text-align: left; margin-top: clamp(24px, 3.6vh, 44px); }
  
  html:has(main.fp-home) .problem { --seele-op: .12; --seele-veil: .55; }
  
  html:has(main.fp-home) .problem__list {
    grid-column: 2; grid-row: 1 / span 5;
    display: grid; grid-template-columns: 1fr; gap: clamp(12px, 1.8vh, 18px);
    margin: 0; max-width: none; align-content: center;
  }
  html:has(main.fp-home) .problem__list li {
    display: flex; align-items: center; justify-content: flex-start; gap: 16px; text-align: left;
    padding: clamp(16px, 2.3vh, 26px) clamp(20px, 2vw, 28px);
    background: #fff; border: 1px solid var(--accent); border-left-width: 4px;
    border-radius: 14px; box-shadow: var(--sh-1);
    color: var(--ink);
    font-weight: 500; font-size: clamp(14.5px, 1.85vh, 17px); line-height: 1.5;
  }
  html:has(main.fp-home) .problem__list li::before { content: none; }
  html:has(main.fp-home) .problem__list .problem__dot {
    display: block; margin-top: 0; flex-shrink: 0;
  }
}

@media (min-width: 861px) {
  
  html:has(main.fp-home) { scroll-snap-type: y mandatory; }
  html:has(main.fp-home) main > section.chapter, html:has(main.fp-home) .footer { scroll-snap-align: start; }
  
  html:has(main.fp-home) main > section.chapter, html:has(main.fp-home) .footer { scroll-snap-stop: always; }
  html:has(main.fp-home) main > section.chapter {
    min-height: 100svh;
    display: flex; flex-direction: column;
  }
  html:has(main.fp-home) main > section.chapter > .wrap { margin-block: auto; width: 100%; }
  
  .voices--carousel .wrap { margin-block: 0; }
  .hero--mesh .hero__inner { margin-block: auto; }
}

@media (min-width: 861px) {
  .deliver--step .deliver__grid { display: none; }
  .dstep { position: relative; max-width: 1080px; margin: 0 auto; width: 100%; }
  .dstep__slide {
    position: absolute; inset: 0; opacity: 0; transform: translateY(12px);
    transition: opacity .55s ease, transform .65s ease; pointer-events: none;
    display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(30px, 4vw, 70px); align-items: center;
  }
  .dstep__slide.on { position: relative; opacity: 1; transform: none; pointer-events: auto; }
  .dstep__media {
    aspect-ratio: 4 / 3; max-height: 52vh; border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--sh-2); background: var(--paper-2);
  }
  .dstep__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .dstep__body .deliver__num { color: var(--accent); font-size: clamp(15px, 2vh, 18px); }
  .dstep__body h3 { font-size: clamp(22px, 3.2vh, 30px); margin: 6px 0 10px; }
  .dstep__body p { font-size: clamp(14.5px, 1.9vh, 17px); line-height: 1.6; color: var(--ink-2); max-width: 52ch; }
  .dstep__dots { display: flex; gap: 8px; justify-content: center; margin-top: clamp(16px, 2.6vh, 28px); }
  .dstep__dots button {
    width: 30px; height: 4px; border-radius: 99px; border: 0; padding: 0; cursor: pointer;
    background: var(--line); transition: background .3s ease;
  }
  .dstep__dots button.on { background: var(--accent); }
}

@media (min-width: 861px) {
  
  .problem__list li { padding: clamp(14px, 1.9vh, 20px) clamp(18px, 1.6vw, 24px); font-size: clamp(14.5px, 1.85vh, 17px); }
  .problem .insight p { font-size: clamp(17px, 2.4vh, 25px); }
  .problem .insight { margin-top: clamp(16px, 2.4vh, 30px); }
  
  .compare--fold .sec-title { font-size: clamp(26px, 3.4vh, 40px); }
  .compare--fold .cpin { min-height: 0; }
  .compare--fold .cpin__slide { min-height: clamp(150px, 22vh, 210px); }
  .compare--fold .problem__loss { padding: clamp(16px, 2.2vh, 28px) clamp(24px, 3vw, 56px); }
  .compare--fold .problem__loss-big { font-size: clamp(26px, 4.2vh, 48px); }
  .compare--fold .problem__loss-line { font-size: clamp(16px, 2.4vh, 26px); }
  .cxf-arrow { margin: clamp(6px, 1vh, 12px) auto; }
  .compare--fold .sec-cta { margin-top: clamp(24px, 3.6vh, 44px); }
  .compare--fold .loss-calc-btn { margin-top: clamp(6px, 1vh, 12px); }
  
  .team--fold .sec-title { font-size: clamp(24px, 3.2vh, 36px); }
  .tsel__btn .person__media { width: clamp(76px, 8.4vh, 106px); height: clamp(76px, 8.4vh, 106px); }
  .tpanels { padding: clamp(14px, 2vh, 24px) clamp(20px, 2.2vw, 34px); }
  .person .team__voice { padding: clamp(12px, 1.6vh, 18px) clamp(16px, 1.8vw, 24px); }
  
  .gallery .sec-head { margin-bottom: clamp(14px, 2vh, 24px); }
  .gallery .sec-cta { margin-top: clamp(24px, 3.6vh, 44px); }
  .gstack { margin-block: clamp(10px, 1.6vh, 20px) 0; }
  
  html:has(main.fp-home) .faq .acc__item summary { padding-block: clamp(12px, 1.7vh, 18px); font-size: clamp(14.5px, 1.9vh, 17px); }
  html:has(main.fp-home) .faq .sec-title { font-size: clamp(24px, 3.2vh, 36px); }
  
  .blog .sec-title { font-size: clamp(24px, 3.2vh, 38px); }
  .blog .sec-head { margin-bottom: clamp(14px, 2vh, 24px); }
  .blog .post__desc { font-size: clamp(12.5px, 1.6vh, 14.5px); }
  .blog .post__title { font-size: clamp(16px, 2.1vh, 19px); }
  .blog .sec-cta { margin-top: clamp(24px, 3.6vh, 44px); }
}

@media (min-width: 861px) {
  .compare--fold, .team--fold { padding-block: 0; }
  .compare--fold .wrap { min-height: 0; padding-block: 24px; margin-block: auto; }
  .team--fold .sec-title { font-size: clamp(22px, 3vh, 34px); }
  .team--fold .sec-head { margin-bottom: clamp(16px, 2.4vh, 30px); }
  .tpanels { padding: clamp(12px, 1.7vh, 20px) clamp(20px, 2.2vw, 34px); }
  .tpanel__bio > p { font-size: clamp(12.5px, 1.55vh, 14.5px); }
  .person .team__voice blockquote { font-size: clamp(12px, 1.5vh, 13.5px); }
}

@media (min-width: 861px) {
  
  html:has(main.fp-home) main > section.sec--scrolly {
    display: block; min-height: 0; padding-block: 0;
    
    overflow: visible;
  }
  .deliver--step.sec--scrolly { height: 325svh; }  
  .compare--fold.sec--scrolly { height: 250svh; }  
  html:has(main.fp-home) main > section.sec--scrolly > .wrap {
    position: sticky; top: 0; margin-block: 0;
    min-height: 100svh;
    display: flex; flex-direction: column; justify-content: center;
    padding-block: clamp(64px, 8vh, 92px) clamp(18px, 2.6vh, 30px);
  }
  .deliver--step .sec-cta { margin-top: clamp(24px, 3.6vh, 44px); }
  
  .tsel { margin-bottom: clamp(16px, 2.4vh, 28px); }
}

.voices--carousel .voices__list { position: relative; }
.vcar__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: clamp(42px, 5.4vh, 52px); height: clamp(42px, 5.4vh, 52px); border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .38); background: rgba(255, 255, 255, .08);
  color: #fff; font-size: 19px; line-height: 1; cursor: pointer; padding: 0;
  display: grid; place-items: center;
  transition: background .3s ease, border-color .3s ease;
}
.vcar__arrow:hover { background: var(--accent); border-color: var(--accent); }
.vcar__arrow--prev { left: calc(-1 * clamp(20px, 4.6vw, 78px)); }
.vcar__arrow--next { right: calc(-1 * clamp(20px, 4.6vw, 78px)); }
@media (max-width: 1100px) {
  .vcar__arrow--prev { left: 4px; }
  .vcar__arrow--next { right: 4px; }
}
.vcar__count {
  text-align: center; margin-top: 10px;
  font-size: 12.5px; letter-spacing: .08em; font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, .55);
}
.vcar__count b { color: #fff; font-weight: 600; }

@media (max-width: 860px) {
  .voices--carousel .voices__list { text-align: center; }
  .vcar__arrow { position: static; transform: none; display: inline-grid; width: 40px; height: 40px; margin: 12px 8px 0; }
}

@media (min-width: 861px) {
  .compare--fold .sec-head { margin-bottom: clamp(20px, 3.2vh, 36px); }
  .compare--fold .cpin__slide .crow__role { margin-bottom: clamp(10px, 1.6vh, 18px); }
}

.tsel__hint { display: none; }
@media (min-width: 861px) {
  .team--fold .tsel { gap: clamp(20px, 2.6vw, 48px); }
  .team--fold .tsel__hint {
    display: flex; align-items: center; gap: 12px;
    align-self: center; margin: 0;
    font-size: 13px; font-weight: 400; letter-spacing: .04em; line-height: 1.5;
    color: var(--accent); text-align: center; white-space: nowrap;
  }
  .team--fold .tsel__hint::before,
  .team--fold .tsel__hint::after {
    content: ""; width: clamp(22px, 2.6vw, 44px); height: 1px;
    background: var(--accent); opacity: .45;
  }
}

.vcar__vp { transition: height .4s ease; }

@media (max-width: 860px) {
  
  .chapter { padding-block: 56px; }
  .resonance, .probe {
    padding-block: calc(56px + clamp(26px, 4.4vw, 56px));
  }
  .sec-head { margin-bottom: 22px; }
  .sec-title { font-size: 27px; line-height: 1.2; }
  .sec-sub { font-size: 15px; margin-top: 10px; }
  .sec-kicker { margin-bottom: 10px; }
  .sec-cta { margin-top: 30px; }
  .sec-cta__value { margin-top: 14px; }

  
  .step__num { font-size: 30px; }
  .step__title { font-size: 19px; }
  .insight p { font-size: 19px; }
  .problem__loss-big { font-size: 34px; }
  .problem__loss-line { font-size: 17px; }
  .resonance__title { font-size: 27px; }
  .beforeafter .sec-title, .faq .sec-title, .blog .sec-title { font-size: 27px; }
  .person__name { font-size: 19px; }
  .gcard__name, .post__title { font-size: 17px; }

  
  .btn--lg { --bpx: 18px; padding-block: 15px; font-size: 14px; }
  .sec-cta__note, .hero__cta-note { font-size: 11px; letter-spacing: -.01em; line-height: 1.45; max-width: none; }
  .sec-cta__note br, .hero__cta-note br { display: none; }

  
  .hero.hero--mesh { padding-block: 98px 56px; }
  .hero--mesh .hero__inner { display: flex; flex-direction: column; }
  .hero--mesh .hero__eyebrow { order: 1; font-size: 13px; margin-bottom: 14px; }
  .hero--mesh .hero__title { order: 2; font-size: 38px; }
  .hero--mesh .hero__lead { order: 3; font-size: 15.5px; margin-top: 14px; }
  .hero--mesh .hero__cta { order: 4; margin-top: 22px; }
  .hero--mesh .hero__values { order: 5; margin-top: 24px; gap: 10px; }
  .hero--mesh .hero__ref { order: 6; margin-top: 26px; font-size: 13.5px; max-width: none; }
  .hero--mesh .hero__value { padding: 14px 16px 12px; border-radius: 12px; }

  
  html:has(main.fp-home) .problem__list { gap: 12px; }
  html:has(main.fp-home) .problem__list li {
    display: flex; align-items: center; gap: 12px; text-align: left; justify-content: flex-start;
    background: #fff; border: 1px solid var(--accent); border-left-width: 4px;
    border-radius: 14px; box-shadow: var(--sh-1);
    padding: 16px 18px; font-size: 15px; line-height: 1.5;
  }
  html:has(main.fp-home) .problem__list li::before { content: none; }
  html:has(main.fp-home) .problem__list .problem__dot { display: block; margin-top: 0; flex-shrink: 0; }
  html:has(main.fp-home) .problem { --seele-op: .12; --seele-veil: .55; }

  
  .deliver--stack .deliver__grid { display: none; }
  .deliver--stack .dstep { display: grid; gap: 30px; }
  .deliver--stack .dstep__slide { display: grid; gap: 14px; }
  .deliver--stack .dstep__media { aspect-ratio: 16 / 10; border-radius: 14px; overflow: hidden; box-shadow: var(--sh-1); background: var(--paper-2); }
  .deliver--stack .dstep__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .deliver--stack .dstep__body { text-align: left; }
  .deliver--stack .dstep__body .deliver__num { color: var(--accent); font-weight: 600; font-size: 14px; letter-spacing: .08em; }
  .deliver--stack .dstep__body h3 { font-size: 19px; margin: 4px 0 8px; }
  .deliver--stack .dstep__body p { font-size: 15px; line-height: 1.55; color: var(--ink-2); }

  
  .person__body { text-align: left; }
  .person__body p { font-size: 15px; line-height: 1.55; }
  .person .team__voice { margin-top: 18px; }
  .team__intro { font-size: 15px; }

  
  .compare__rows { display: grid; gap: 28px; margin-top: 4px; }
  .crow__role { margin-bottom: 10px; }
  .crow__pair { gap: 12px; }

  
  .voices--carousel .vcard { padding: 20px 18px; }
  .voices--carousel .vcard blockquote { font-size: 14.5px; line-height: 1.55; }
  .vcar__dots { margin-top: 16px; }

  
  .gstack { margin-block: 4px 0; }
  .gcard--stack { margin-bottom: 20px; }
}

@media (min-width: 861px) {
  .pricing > .wrap { max-width: min(1520px, 94vw); }
  .plans { gap: clamp(20px, 2vw, 32px); }
  .plan { padding: clamp(22px, 2.4vh, 32px) clamp(24px, 1.8vw, 36px); }
  .plan__name { font-size: clamp(20px, 2.6vh, 24px); }
  .plan__tag { margin-top: 6px; min-height: 0; font-size: clamp(13px, 1.65vh, 14px); }
  .plan__for { margin: 14px 0; padding: 12px 16px; font-size: clamp(13.5px, 1.7vh, 14.5px); line-height: 1.5; }
  .plan__list { gap: clamp(7px, 1.1vh, 11px); margin-bottom: clamp(14px, 2vh, 22px); }
  .plan__list li { font-size: clamp(13.5px, 1.7vh, 14.5px); line-height: 1.45; }
  .plan__sublist { gap: 4px; margin-top: 6px; }
  .plan__sublist li { font-size: clamp(12px, 1.5vh, 13px); }
  .plan__price { margin-bottom: clamp(12px, 1.8vh, 20px); }
  .plan__half { margin: -8px 0 12px; }
  .plan__head--eb { min-height: 0; }
  .pricing .sec-head { margin-bottom: clamp(16px, 2.4vh, 28px); }
}

.gcard__shot--live { display: flex; flex-direction: column; }
.gcard__shot--live::before {
  content: ""; flex: 0 0 26px;
  background:
    radial-gradient(circle 4px at 16px 13px, #e0475f 4px, transparent 5px),
    radial-gradient(circle 4px at 32px 13px, #f2b23e 4px, transparent 5px),
    radial-gradient(circle 4px at 48px 13px, #4fbf67 4px, transparent 5px),
    var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.gcard__shot--live img { flex: 1; min-height: 0; width: 100%; height: auto; object-fit: cover; object-position: top; }

.hs { position: relative; min-width: 0; }
.hs__track {
  display: flex !important; gap: 16px; margin: 0;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.hs__track::-webkit-scrollbar { display: none; }
.hs__slide { flex: 0 0 var(--hs-w, 86%); min-width: 0; scroll-snap-align: start; scroll-snap-stop: always; }
.hs__ui { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 16px; }
.hs__arrow {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; color: var(--ink-2); font-size: 16px; cursor: pointer;
  display: grid; place-items: center; padding: 0;
  transition: border-color .3s ease, color .3s ease;
}
.hs__arrow:hover { border-color: var(--accent); color: var(--accent); }
.hs__dots { display: flex; gap: 8px; }
.hs__dots button { width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0; background: var(--line); cursor: pointer; transition: background .3s ease, transform .3s ease; }
.hs__dots button.on { background: var(--accent); transform: scale(1.3); }

.blog--slide .blog__grid { margin-bottom: 0; }
.blog--slide .post { display: flex; flex-direction: column; }
@media (min-width: 861px) {
  .blog--slide .post__media { aspect-ratio: 2 / 1; }
  .blog--slide .hs__ui { margin-top: 10px; }
}

@media (max-width: 860px) {
  .gallery--swipe .gcard--stack { margin-bottom: 0; }
}

@media (max-width: 860px) {
  .hero__values { justify-items: stretch; }
  .hero__value { width: 100%; }
}

@media (max-width: 860px) {
  .team--fold .team__grid, .team--fold .team__tagline { display: none; }
  .tsel { display: flex; justify-content: center; align-items: flex-start; gap: 30px; flex-wrap: wrap; position: relative; margin-bottom: 14px; }
  .tsel__btn { display: flex; flex-direction: column; align-items: center; gap: 4px; background: none; border: 0; padding: 0; cursor: pointer; opacity: .55; transition: opacity .35s ease; }
  .tsel__btn.act { opacity: 1; }
  .tsel__btn .person__media { width: 92px; height: 92px; margin: 0 0 4px; }
  .tsel__btn .person__media img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
  .tsel__btn.act .person__media { box-shadow: 0 0 0 3px var(--accent-tint), 0 0 0 5px var(--accent); border-radius: 50%; }
  .tsel__name { font-family: var(--fd); font-weight: 600; font-size: 16px; color: var(--ink); }
  .tsel__role { font-size: 12px; line-height: 1.4; color: var(--ink-2); max-width: 150px; }
  .tsel__hint { display: flex; order: 5; width: 100%; justify-content: center; align-items: center; gap: 10px; margin: 2px 0 0; color: var(--accent); font-size: 12px; letter-spacing: .03em; }
  .tsel__hint::before, .tsel__hint::after { content: ""; width: 22px; height: 1px; background: var(--accent); opacity: .45; }
  .tsel__caret { display: none; }
  .tpanels { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--sh-1); padding: 18px 16px; }
  .tpanel { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity .4s ease; }
  .tpanel.on { position: relative; opacity: 1; pointer-events: auto; }
  .tpanel__bio > p { font-size: 14.5px; line-height: 1.55; margin-top: 8px; text-align: left; color: var(--ink-2); }
  .tpanel .team__voice { margin-top: 14px; text-align: left; background: var(--paper-2); }
  .team--fold .sec-cta { margin-top: 24px; }
}

@media (max-width: 860px) {
  .voices--carousel { padding-block: calc(38px + clamp(26px, 4.4vw, 56px)); }
  .voices--carousel .sec-head { margin-bottom: 16px; }
  .voices--carousel .vcard blockquote { font-size: 12.5px; line-height: 1.5; }
  .voices--carousel .vcard { padding: 16px 14px; }
  .vcar__slide { max-height: calc(100svh - 330px); overflow-y: auto; align-items: start; }
}

.btn--slate { background: var(--slate); color: #fff; }
.btn--slate:hover { background: var(--slate-deep); }
.wanalyse__cta { margin-top: clamp(20px, 3vh, 34px); }
.wanalyse__mock { display: block; width: 100%; max-width: 430px; margin-inline: auto; border: 0; padding: 0; background: none; cursor: pointer; }
.wanalyse__mock img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius); box-shadow: var(--sh-2);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.wanalyse__mock:hover img { transform: translateY(-4px); }
#analyseModal .wform { margin-top: 6px; }
@media (min-width: 861px) {
  .wanalyse .wanalyse__mock img { max-height: 56vh; width: auto; margin-inline: auto; }
}

.masonry { columns: 2; column-gap: clamp(16px, 2vw, 24px); max-width: 1080px; margin-inline: auto; }
.mas { break-inside: avoid; margin: 0 0 clamp(16px, 2vw, 24px); }
.mas a { display: block; text-decoration: none; }
.mas img {
  width: 100%; height: auto; display: block;
  border-radius: 14px; border: 1px solid var(--line); box-shadow: var(--sh-1);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.mas a:hover img { transform: translateY(-4px); box-shadow: var(--sh-2); }
.mas figcaption { margin-top: 8px; font-size: 12.5px; color: var(--ink-3); text-align: left; }
.mas figcaption em { font-style: normal; }
@media (max-width: 640px) { .masonry { columns: 1; } }

.dstep__media { position: relative; }
.dstep__media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  background: linear-gradient(160deg, rgba(210, 31, 88, .22), rgba(252, 232, 239, .10) 45%, rgba(53, 81, 104, .30));
  mix-blend-mode: multiply;
}

.ghero { margin: 0; }
.ghero a { display: block; text-decoration: none; }
.ghero img {
  width: 100%; height: auto; display: block; aspect-ratio: 16 / 9; object-fit: cover; object-position: top;
  border-radius: 14px; border: 1px solid var(--line); box-shadow: var(--sh-1);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.ghero a:hover img { transform: translateY(-4px); box-shadow: var(--sh-2); }
.ghero figcaption { margin-top: 8px; font-size: 12.5px; color: var(--ink-3); text-align: left; }
.ghero figcaption em { font-style: normal; }

.compare--fold .problem__loss-big, .problem__loss-big { font-size: 1em; }

.hs__track { touch-action: pan-x pan-y; overscroll-behavior-x: contain; }

@media (min-width: 861px) {
  .dstep__slide { transition: opacity .8s cubic-bezier(.4, 0, .2, 1), transform .9s cubic-bezier(.4, 0, .2, 1); transform: translateY(8px); will-change: opacity, transform; }
  .dstep__slide.on { transform: none; }
}

@media (min-width: 861px) {
  .blog--rail2 { overflow-x: clip; }
  .blog--rail2 .blog__grid {
    display: flex; gap: clamp(20px, 2.6vw, 40px); will-change: transform;
    margin-bottom: 20px; padding-bottom: 20px; 
    min-height: 0;
  }
  .blog--rail2 .post { flex: 0 0 min(30vw, 400px); }
  .blog--rail2 .post__media { aspect-ratio: 16 / 10; }
}

@media (max-width: 860px) {
  .wanalyse__formwrap { order: -1; }
  .wanalyse__mock { max-width: 320px; }
}

@media (max-width: 860px) {
  .gallery3 .hs__track { gap: 12px; }
}

@media (min-width: 861px) {
  
  .sec-title,
  .compare--fold .sec-title, .team--fold .sec-title, .blog .sec-title,
  html:has(main.fp-home) .faq .sec-title,
  html:has(main.fp-home) .problem .sec-title,
  .wanalyse__title, .guarantee__card .sec-title {
    font-size: clamp(28px, 3.8vh, 44px);
  }
  
  .dstep__body h3, .process .step__title, .tsel__name, .post__title, .plan__name, .person__body h3, .gcard__name {
    font-size: clamp(19px, 2.4vh, 22px);
  }
  
  .sec-sub, html:has(main.fp-home) .problem__intro, .team__intro, .process__more, .wanalyse__lead, .resonance__out, .resonance__pre {
    font-size: clamp(15px, 1.8vh, 17px);
  }
  
  html:has(main.fp-home) .problem__list li, .dstep__body p, .tpanel__bio > p,
  .process .step__body p, .crow__txt, .post__desc, .guarantee__steps li p, .wanalyse__checks li,
  .tpanel .team__voice blockquote, .person .team__voice blockquote, .tsel__role,
  .compare--fold .problem__loss-label { font-size: clamp(14px, 1.65vh, 15.5px); }
  html:has(main.fp-home) .problem__list li { color: var(--ink); } 
  
  .plan__tag, .plan__for, .plan__list li, .plan__sublist li { font-size: 15.5px; color: var(--ink-2); line-height: 1.5; }
  .plan__for strong { color: var(--ink); }
  
  .sec-cta__note, .problem__loss-src, .plan__half, .vcar__count, .tsel__hint, .ghero figcaption, .post__meta, .wform__note, .hero__cta-note {
    font-size: 12.5px;
  }
}

@media (min-width: 861px) { .gallery3 { padding-block: clamp(56px, 8vh, 100px) clamp(48px, 7vh, 88px); } }

.beforeafter .ba__col li { color: #fff; }

@media (min-width: 861px) { .wanalyse .wanalyse__cta { text-align: left; } }

@media (max-width: 860px) {
  .dstep, .dstep__dots, .cpin, .cpin__dots { display: none !important; }
  .deliver__grid { display: grid !important; }
}

@media (min-width: 861px) {
  .team--fold .sec-head { margin-bottom: clamp(10px, 1.6vh, 18px); }
  .team__intro { margin-bottom: clamp(8px, 1.2vh, 14px); }
  .tsel__btn .person__media { width: clamp(68px, 7.6vh, 92px); height: clamp(68px, 7.6vh, 92px); }
  .tsel__role { max-width: 440px; }
  .team--fold .tsel { margin-bottom: clamp(12px, 1.8vh, 20px); }
  .tpanels { max-width: 1120px; padding: clamp(10px, 1.4vh, 16px) clamp(18px, 2vw, 30px); }
  .tpanel .team__voice { padding: clamp(10px, 1.4vh, 16px) clamp(14px, 1.6vw, 22px); }
  .tpanel__bio > p { margin-top: clamp(4px, 0.7vh, 8px); }
  .team--fold .sec-cta { margin-top: clamp(16px, 2.4vh, 28px); }
}

@media (min-width: 861px) {
  .pricing > .wrap { max-width: min(1840px, 97vw); padding-inline: clamp(16px, 1.5vw, 28px); }
  .pricing { padding-block: clamp(64px, 8vh, 84px) clamp(20px, 3vh, 32px); }
  .pricing .sec-head { margin-bottom: clamp(10px, 1.6vh, 18px); }
  .pricing .sec-sub { margin-top: 8px; }
  .plans { gap: clamp(16px, 1.6vw, 28px); }
  .plan { padding: clamp(18px, 2vh, 26px) clamp(22px, 1.6vw, 32px); }
  .plan__tag { margin-top: 4px; }
  .plan__for { margin: 10px 0; padding: 10px 14px; }
  .plan__list { gap: clamp(5px, 0.8vh, 8px); margin-bottom: clamp(10px, 1.4vh, 16px); }
  .plan__sublist { margin-top: 4px; gap: 3px; }
  .plan__price { margin-bottom: clamp(8px, 1.2vh, 14px); }
  .plan__half { margin: -6px 0 10px; }
  .plan .btn--block { margin-bottom: 0; }
  .pricing__capacity { margin-top: clamp(10px, 1.4vh, 16px); }
}

@media (min-width: 861px) and (max-height: 840px) {
  .tsel__btn .person__media { width: 60px; height: 60px; margin-bottom: 2px; }
  .tsel__name { font-size: 16px; }
  .team--fold .sec-head { margin-bottom: 8px; }
  .team__intro { margin-bottom: 6px; }
  .team--fold .tsel { margin-bottom: 10px; }
  .tpanels { padding: 8px 18px; }
  .tpanel .team__voice { padding: 8px 12px; }
  .tpanel__bio > p, .tpanel .team__voice blockquote { font-size: 13.5px; line-height: 1.45; }
  .team--fold .sec-cta { margin-top: 14px; }
}

@media (min-width: 861px) { .sec-cta__note--einzeilig { white-space: nowrap; } }

@media (min-width: 861px) {
  .dstep__dots--zahlen { gap: 0; align-items: center; }
  .dstep__dots--zahlen button {
    width: 30px; height: 30px; border-radius: 50%; position: relative;
    background: #fff; border: 1.5px solid var(--line); color: var(--ink-3);
    font-family: var(--fd); font-weight: 600; font-size: 13px;
    transition: background .35s ease, color .35s ease, border-color .35s ease;
  }
  .dstep__dots--zahlen button + button { margin-left: 44px; }
  .dstep__dots--zahlen button + button::before {
    content: ""; position: absolute; right: 100%; top: 50%; width: 44px; height: 1px;
    background: var(--line); margin-right: 1.5px;
  }
  .dstep__dots--zahlen button.on { background: var(--accent); border-color: var(--accent); color: #fff; }
  
  .dstep__media::after { mix-blend-mode: normal; background: linear-gradient(160deg, rgba(210, 31, 88, .26), rgba(252, 232, 239, .12) 45%, rgba(53, 81, 104, .34)); }
  .dstep__slide { transition: opacity .5s cubic-bezier(.4, 0, .2, 1), transform .6s cubic-bezier(.4, 0, .2, 1); contain: paint; }
}

@media (min-width: 861px) {
  .pricing--b .plan__tag, .pricing--b .plan__for, .pricing--b .plan__list li, .pricing--b .plan__sublist li { font-size: 12.5px; line-height: 1.45; }
  .pricing--b .plan__list { gap: 5px; }
  .pricing--b .plan__for { padding: 8px 12px; }
}

@media (min-width: 861px) {
  .pricing--c .plans { grid-template-rows: auto auto auto 1fr auto auto auto auto; }
  .pricing--c .plan { grid-row: span 8; }
}
.plan--klapp:not(.is-open) .plan__list > li:nth-child(n+4) { display: none; }
.plan__mehr {
  display: inline-flex; align-items: center; gap: 6px; align-self: start;
  background: none; border: 0; padding: 0; margin: -6px 0 16px; cursor: pointer;
  font-family: var(--fb); font-weight: 600; font-size: 13.5px; color: var(--accent);
}
.plan__mehr em { font-style: normal; }

.showcase { position: relative; }
.showcase__pin { position: relative; }
.showcase__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.showcase__bg > div {
  position: absolute; inset: -6%; background-size: cover; background-position: top center;
  filter: blur(26px) saturate(.9); opacity: 0; transform: scale(1.04);
  transition: opacity .9s ease;
}
.showcase__bg > div.is-active { opacity: .5; }
.showcase__bg-tint { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(38, 64, 79, .86), rgba(38, 64, 79, .94)); }
.showcase .wrap { position: relative; z-index: 2; }
.showcase__grid { display: grid; grid-template-columns: minmax(0, .42fr) minmax(0, .58fr); gap: clamp(28px, 4vw, 64px); align-items: center; }
.showcase__copy .sec-title { color: #fff; }
.showcase__count { display: block; margin: 4px 0 14px; font-family: var(--fd); font-size: 13px; letter-spacing: .14em; color: rgba(255,255,255,.6); }
.showcase__count b { color: #fff; }
.showcase__caption { position: relative; min-height: 96px; }
.showcase__caption h3 { color: #fff; font-family: var(--fd); font-size: clamp(19px, 2.4vh, 22px); margin: 0 0 6px; }
.showcase__caption p { color: rgba(255,255,255,.82); font-size: clamp(14px, 1.65vh, 15.5px); line-height: 1.5; margin: 0; }
.showcase__dots { display: flex; gap: 8px; margin-top: 16px; }
.showcase__dots i { width: 22px; height: 3px; border-radius: 2px; background: rgba(255,255,255,.25); transition: background .3s ease; }
.showcase__dots i.on { background: var(--accent-2); }
.showcase__sub { margin: 20px 0 0; max-width: none; color: rgba(255,255,255,.8); font-size: clamp(14px, 1.65vh, 15.5px); }
.showcase__cta { text-align: left; margin-top: 22px; }
.showcase__stage { position: relative; aspect-ratio: 16 / 10; }
.showcase__shot { position: absolute; inset: 0; opacity: 0; transform: translateY(14px) scale(.985); transition: opacity .7s ease, transform .8s ease; pointer-events: none; }
.showcase__shot.is-active { opacity: 1; transform: none; pointer-events: auto; }
.frame { position: absolute; left: 0; top: 0; width: 86%; border-radius: 12px; overflow: hidden; background: #fff; box-shadow: 0 30px 70px rgba(0,0,0,.45); text-decoration: none; display: block; }
.frame__bar { height: 26px; background: var(--paper-2); display: flex; align-items: center; gap: 6px; padding: 0 12px; border-bottom: 1px solid var(--line); }
.frame__bar i { width: 8px; height: 8px; border-radius: 50%; background: #e0475f; }
.frame__bar i:nth-child(2) { background: #f2b23e; }
.frame__bar i:nth-child(3) { background: #4fbf67; }
.frame__url { margin-left: 10px; font-size: 11px; color: var(--ink-3); font-family: var(--fb); }
.frame img { display: block; width: 100%; height: auto; }
.frame--phone { position: absolute; right: 0; bottom: 0; left: auto; top: auto; width: 24%; border-radius: 22px; border: 6px solid #1c2229; background: #1c2229; box-shadow: 0 24px 50px rgba(0,0,0,.5); }
.frame--phone img { border-radius: 16px; }
@media (min-width: 861px) {
  html:has(main.fp-home) main > section.showcase--pin { display: block; height: 400svh; min-height: 0; padding-block: 0; overflow: visible; }
  .showcase--pin .showcase__pin { position: sticky; top: 0; height: 100svh; display: flex; align-items: center; overflow: clip; }
  .showcase--pin .wrap { width: 100%; }
}
@media (max-width: 860px) {
  .showcase__pin { padding-block: 56px 48px; }
  .showcase__grid { grid-template-columns: 1fr; gap: 24px; }
  .showcase__stage { aspect-ratio: auto; }
  .showcase--mobil .showcase__shot { position: static; opacity: 1; transform: none; pointer-events: auto; }
  .showcase--mobil .frame { position: static; width: 100%; }
  .showcase--mobil .frame--phone { display: none; }
  .showcase--mobil .hs__arrow { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.35); }
  .showcase--mobil .hs__dots button { background: rgba(255,255,255,.3); }
  .showcase--mobil .hs__dots button.on { background: var(--accent-2); }
}

@media (min-width: 861px) { .plans { row-gap: 0; } }

.problem__loss .problem__loss-label { color: rgba(255,255,255,.88); }
.problem__loss .problem__loss-src { color: rgba(255,255,255,.72); }
.problem__loss .problem__loss-line { color: #fff; }

.showcase__count { color: var(--accent-2); font-size: 15px; letter-spacing: .12em; }
.showcase__count b { color: var(--accent-2); font-size: 22px; }
.showcase__hint { margin: 18px 0 10px; font-size: 12.5px; letter-spacing: .04em; color: rgba(255,255,255,.7); }
.showcase__hint em { display: inline-block; font-style: normal; color: var(--accent-2); animation: hintdown 1.6s ease-in-out infinite; }
@keyframes hintdown { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }
.showcase__dots { counter-reset: s; gap: 0; align-items: center; }
.showcase__dots i {
  counter-increment: s; width: 30px; height: 30px; border-radius: 50%; position: relative;
  border: 1.5px solid rgba(255,255,255,.35); background: transparent;
  display: grid; place-items: center; font-family: var(--fd); font-style: normal; font-weight: 600; font-size: 12px; color: rgba(255,255,255,.7);
}
.showcase__dots i::before { content: "0" counter(s); }
.showcase__dots i + i { margin-left: 34px; }
.showcase__dots i + i::after { content: ""; position: absolute; right: 100%; top: 50%; width: 34px; height: 1px; background: rgba(255,255,255,.3); margin-right: 1.5px; }
.showcase__dots i.on { background: var(--accent-2); border-color: var(--accent-2); color: #fff; }
@media (min-width: 861px) {
  .showcase__grid { grid-template-columns: minmax(0, .34fr) minmax(0, .66fr); }
  .showcase--pin .wrap { max-width: min(1500px, 94vw); }
  .frame { width: 90%; }
  .frame--phone { width: 25%; bottom: -3%; }
  .showcase__stage { aspect-ratio: 16 / 10.4; }
}

.plan--klapp:not(.is-open) .plan__list > li:nth-child(n+4) { display: list-item; }
.plan--klapp:not(.is-open) .plan__sublist { display: none; }

@media (min-width: 861px) {
  .ba--single { max-width: 880px; }
  .beforeafter .ba__col { padding: clamp(30px, 4.4vh, 48px) clamp(34px, 3.4vw, 60px); }
  .beforeafter .ba__col li { font-size: clamp(17px, 2.3vh, 21px); line-height: 1.5; padding-left: 34px; }
  .beforeafter .ba__col ul { display: grid; gap: clamp(10px, 1.6vh, 16px); }
}

@media (min-width: 861px) {
  .plan__tag, .plan__for, .plan__list li, .plan__sublist li { font-size: 15.3px; }
  .plan__mehr { margin: -4px 0 10px; }
  .pricing { padding-block: clamp(60px, 7vh, 76px) clamp(16px, 2.4vh, 26px); }
}

@media (min-width: 861px) {
  .pricing { padding-block: clamp(50px, 6vh, 64px) clamp(12px, 1.8vh, 20px); }
  .pricing .sec-head { margin-bottom: clamp(6px, 1vh, 12px); }
  .pricing .sec-sub { margin-top: 4px; }
  .plan { padding-block: clamp(14px, 1.8vh, 22px); }
  .plan__for { padding: 8px 14px; margin: 8px 0; }
  .plan__list { gap: clamp(4px, 0.7vh, 7px); margin-bottom: clamp(8px, 1.2vh, 14px); }
  .plan__price { margin-bottom: clamp(6px, 1vh, 12px); }
  .plan .btn--block { padding-block: 13px; }
  .pricing__capacity { margin-top: clamp(6px, 1vh, 12px); }
}

@media (min-width: 861px) {
  .pricing > .wrap { max-width: min(1700px, 92vw); padding-inline: clamp(20px, 2vw, 40px); }
  .pricing { padding-block: clamp(72px, 9vh, 104px) clamp(48px, 6vh, 80px); }
  .pricing .sec-head { margin-bottom: clamp(20px, 3vh, 34px); }
  .pricing .sec-sub { margin-top: 12px; }
  .plans { gap: clamp(22px, 2.2vw, 34px); row-gap: 0; }
  .plan { padding: clamp(26px, 3vh, 36px) clamp(26px, 2vw, 36px); }
  .plan__tag { margin-top: 8px; }
  .plan__for { margin: 16px 0; padding: 14px 18px; }
  .plan__list { gap: clamp(9px, 1.3vh, 12px); margin-bottom: clamp(18px, 2.4vh, 26px); }
  .plan__sublist { margin-top: 6px; gap: 4px; }
  .plan__price { margin-bottom: clamp(14px, 2vh, 20px); }
  .plan__half { margin: -8px 0 14px; }
  .plan .btn--block { padding-block: 15px; }
  .plan__mehr { margin: 0 0 16px; }
  .pricing__capacity { margin-top: clamp(18px, 2.6vh, 28px); }
}

.showcase__copy .sec-head, .showcase__copy .sec-title { text-align: left; }
.showcase__copy .sec-kicker { justify-content: flex-start; }
.showcase { background: var(--slate); }
.showcase__bg-tint { background: linear-gradient(180deg, rgba(53, 81, 104, .86), rgba(53, 81, 104, .94)); }
@media (max-width: 860px) {
  .showcase__copy .sec-head { margin-inline: 0; }
}

@media (max-width: 860px) {
  .problem__list li, .deliver__card p, .plan__list li, .plan__for, .plan__tag, .plan__sublist li,
  .crow__txt, .step__body p, .tpanel__bio > p, .tpanel .team__voice blockquote, .person__body p,
  .post__desc, .ba__col li, .guarantee__steps li p, .wanalyse__checks li, .showcase__caption p,
  .showcase__sub, .gcard__before, .gcard__after {
    font-size: 14.5px; line-height: 1.5;
  }
  .problem__intro, .team__intro, .process__more, .wanalyse__lead, .hero__lead, .sec-sub { font-size: 15px; }
  .acc__item summary { font-size: 16px; }
  .problem__loss-line { font-size: 16px; }
  .deliver__card h3, .step__title, .person__name { font-size: 17px; }
}
@media (max-width: 860px) { html:has(main.fp-home) .problem__list li { font-size: 14.5px; } }

@media (min-width: 861px) { .sec-cta__note--einzeilig { white-space: normal; max-width: 440px; } }

@media (min-width: 861px) {
  .pricing > .wrap { max-width: min(1580px, 90vw); }
  .pricing { padding-block: clamp(96px, 12vh, 136px) clamp(72px, 9vh, 112px); }
  .pricing .sec-head { margin-bottom: clamp(28px, 4vh, 44px); }
  .plans { gap: clamp(26px, 2.4vw, 40px); row-gap: 0; }
  .plan { padding: clamp(32px, 3.6vh, 44px) clamp(28px, 2.2vw, 40px); }
  .plan__tag { margin-top: 10px; }
  .plan__for { margin: 22px 0; padding: 16px 20px; }
  .plan__list { gap: clamp(12px, 1.6vh, 15px); margin-bottom: clamp(24px, 3vh, 32px); }
  .plan__sublist { margin-top: 8px; gap: 6px; }
  .plan__price { margin-bottom: clamp(18px, 2.4vh, 24px); }
  .plan__half { margin: -8px 0 18px; }
  .plan__mehr { margin: 0 0 22px; }
  .pricing__capacity { margin-top: clamp(28px, 3.6vh, 40px); }
}

.guarantee__card { padding-top: clamp(84px, 10vw, 108px); }

.guarantee .guarantee__card { padding-top: clamp(84px, 10vw, 108px); }

@media (min-width: 861px) {
  html:has(main.fp-lp) .problem .wrap { display: block; }
  html:has(main.fp-lp) .problem .sec-head, html:has(main.fp-lp) .problem .sec-title,
  html:has(main.fp-lp) .problem__intro, html:has(main.fp-lp) .problem .insight, html:has(main.fp-lp) .problem .sec-cta { text-align: center; margin-inline: auto; }
  html:has(main.fp-lp) .problem__intro { max-width: 780px; }
  html:has(main.fp-lp) .problem__list { grid-template-columns: 1fr 1fr; max-width: 900px; margin: clamp(20px, 3vh, 34px) auto 0; }
  html:has(main.fp-lp) .problem .sec-cta__note--einzeilig { margin-inline: auto; }
  html:has(main.fp-lp) .problem .problem__loss { margin: clamp(28px, 4vh, 48px) auto 0; }
  html:has(main.fp-lp) .problem .diagnose { margin-top: clamp(28px, 4vh, 48px); }
}

@media (min-width: 861px) {
  .plans { grid-template-rows: auto auto 1fr auto auto auto auto; }
  .plan { grid-row: span 7; }
  .plan > .plan__head, .plan > .plan__head--eb { grid-row: 1; }
  .plan > .plan__for { grid-row: 2; }
  .plan > .plan__list { grid-row: 3; }
  .plan > .plan__mehr { grid-row: 4; }
  .plan > .plan__price { grid-row: 5; }
  .plan > .plan__half { grid-row: 6; }
  .plan > .btn--block { grid-row: 7; }
}

.team--karte-on .team__grid { display: none; }
.team--karte-on .team__tagline { display: block; margin-top: clamp(16px, 2.4vh, 26px); }
.tkarte__chips { display: flex; justify-content: center; gap: 12px; margin-bottom: 10px; }
.tkarte__chip {
  display: inline-flex; align-items: center; gap: 10px; padding: 6px 18px 6px 6px;
  border-radius: 100px; border: 1px solid var(--line); background: #fff; cursor: pointer;
  font-family: var(--fd); font-weight: 600; font-size: 15px; color: var(--ink-2);
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s ease;
}
.tkarte__chip img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; display: block; }
.tkarte__chip:hover { transform: translateY(-2px); border-color: var(--accent); }
.tkarte__chip.act { background: var(--accent); border-color: var(--accent); color: #fff; }
.tkarte__hint { display: flex; justify-content: center; align-items: center; gap: 12px; margin: 0 0 clamp(14px, 2vh, 22px); font-size: 13px; letter-spacing: .04em; color: var(--accent); }
.tkarte__hint::before, .tkarte__hint::after { content: ""; width: 34px; height: 1px; background: var(--accent); opacity: .45; }
.tkarte { position: relative; max-width: 1180px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--sh-1); padding: clamp(22px, 3vh, 34px) clamp(24px, 2.6vw, 40px); }
.tkarte__panel {
  position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity .45s ease;
  display: grid; grid-template-columns: 220px minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(22px, 2.6vw, 44px); align-items: start;
}
.tkarte__panel.on { position: relative; opacity: 1; pointer-events: auto; }
.tkarte__portrait { text-align: center; }
.tkarte__portrait img { width: 200px; height: 200px; border-radius: 50%; object-fit: cover; display: block; margin: 0 auto 14px; box-shadow: 0 0 0 4px var(--accent-tint), 0 0 0 6px var(--accent); }
.tkarte__name { font-family: var(--fd); font-weight: 600; font-size: clamp(19px, 2.4vh, 22px); color: var(--ink); margin: 0 0 4px; }
.tkarte__role { font-size: 13.5px; line-height: 1.4; color: var(--ink-2); margin: 0; }
.tkarte__bio { text-align: left; }
.tkarte__bio p { font-size: clamp(14px, 1.65vh, 15.5px); line-height: 1.5; color: var(--ink-2); margin: 0 0 clamp(6px, 1vh, 10px); }
.tkarte__panel .team__voice { margin: 0; height: auto; text-align: left; background: var(--paper-2); }
@media (min-width: 861px) { .team--karte .sec-cta { margin-top: clamp(24px, 3.6vh, 44px); } }
@media (max-width: 860px) {
  .tkarte { padding: 18px 16px; }
  .tkarte__panel { grid-template-columns: 1fr; gap: 16px; }
  .tkarte__portrait img { width: 130px; height: 130px; }
  .tkarte__chip { font-size: 14px; }
}

@media (min-width: 861px) {
  .tkarte { max-width: 1320px; }
  .tkarte__panel { grid-template-columns: 200px minmax(0, 1fr) minmax(0, 1.1fr); }
  .tkarte__panel .team__voice blockquote { font-size: clamp(13.5px, 1.6vh, 15px); }
  .tkarte__portrait img { width: 180px; height: 180px; }
}

@media (min-width: 861px) {
  .tkarte__panel { grid-template-columns: 200px minmax(0, 1fr); row-gap: clamp(14px, 2vh, 22px); }
  .tkarte__portrait { grid-row: 1 / span 2; }
  .tkarte__panel .team__voice { grid-column: 2; }
  .tkarte__panel .team__voice blockquote { font-size: clamp(13.5px, 1.6vh, 14.5px); }
}

@media (min-width: 861px) {
  .team--karte { padding-block: 0; }
  .team--karte .sec-head { margin-bottom: clamp(10px, 1.6px, 18px); }
  .team--karte .team__intro { margin-bottom: clamp(8px, 1.2vh, 14px); }
  .tkarte__chips { margin-bottom: 6px; }
  .tkarte__hint { margin-bottom: clamp(10px, 1.4vh, 16px); }
  .tkarte { padding: clamp(16px, 2.2vh, 24px) clamp(22px, 2.4vw, 36px); }
  .tkarte__panel { grid-template-columns: 170px minmax(0, 1fr); row-gap: clamp(10px, 1.4vh, 16px); }
  .tkarte__portrait img { width: 150px; height: 150px; margin-bottom: 10px; }
  .tkarte__bio p { font-size: clamp(13.5px, 1.6vh, 15px); margin-bottom: clamp(4px, 0.8vh, 8px); }
  .tkarte__panel .team__voice { padding: clamp(10px, 1.4vh, 16px) clamp(14px, 1.6vw, 22px); }
  .team--karte .team__tagline { margin-top: clamp(12px, 1.8vh, 20px); }
  .team--karte .sec-cta { margin-top: clamp(16px, 2.4vh, 28px); }
}

@media (max-width: 860px) {
  .showcase { padding-block: 0; }
  .showcase__pin { padding-block: calc(40px + clamp(26px, 4.4vw, 56px)) 56px; }
  .showcase__bg > div { inset: -8%; }
}

:root { --grad-a: #d21f58; --grad-b: #ff7a45; }
.hero.hero--bold {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--paper); color: var(--ink);
  min-height: 100svh; height: auto; max-height: none;
  display: grid; place-content: center; text-align: center;
  padding: clamp(96px, 12vh, 140px) 0 clamp(40px, 6vh, 72px);
}
.hero--bold .hero__blob {
  position: absolute; z-index: 0; left: 50%; top: 46%;
  width: min(70vw, 720px); aspect-ratio: 1; border-radius: 50%;
  filter: blur(70px); opacity: .42; pointer-events: none;
  background:
    radial-gradient(circle at 30% 30%, var(--grad-a), transparent 60%),
    radial-gradient(circle at 70% 70%, var(--grad-b), transparent 60%);
  transform: translate(-50%, -50%);
  animation: herodrift 14s ease-in-out infinite;
  will-change: transform;
}
@keyframes herodrift {
  0%, 100% { transform: translate(-52%, -50%) scale(1); }
  50% { transform: translate(-48%, -44%) scale(1.12); }
}
.hero--bold .hero__inner {
  position: relative; z-index: 2; max-width: 1080px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
}
.hero--bold .hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px; margin: 0;
  font-family: var(--fb); font-size: 12.5px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
  color: var(--ink-3); max-width: none; line-height: 1.4;
}
.hero--bold .hero__eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--ink-3); opacity: .6; }
.hero--bold .hero__title {
  margin: clamp(18px, 2.6vh, 28px) 0 0;
  font-family: var(--fd); font-weight: 700; letter-spacing: -.045em; line-height: .94;
  font-size: clamp(48px, min(9.6vw, 13.5vh), 128px); color: var(--ink);
}
.hero--bold .hero__title .line { display: block; }
.hero--bold .hero__title .grad {
  background: linear-gradient(120deg, var(--grad-a), var(--grad-b));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-bottom: .06em; 
}
.hero--bold .hero__lead {
  margin: clamp(20px, 3vh, 30px) auto 0; max-width: 60ch;
  font-size: clamp(17px, min(2vw, 2.5vh), 22px); line-height: 1.55; color: var(--ink-2);
}
.hero--bold .hero__cta { margin-top: clamp(26px, 4vh, 40px); display: flex; flex-direction: column; align-items: center; gap: 12px; }
.btn--grad {
  background: linear-gradient(120deg, var(--grad-a), var(--grad-b)); color: #fff;
  box-shadow: 0 20px 50px -18px var(--grad-a);
}
.btn--grad:hover { transform: translateY(-3px); box-shadow: 0 28px 60px -20px var(--grad-a); color: #fff; }
.hero--bold .hero__cta-note { max-width: 62ch; margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--ink-3); }
.hero--bold .hero__proof {
  margin: clamp(22px, 3.4vh, 36px) auto 0; max-width: 72ch;
  font-size: clamp(14.5px, 1.7vh, 16.5px); line-height: 1.55; color: var(--ink);
}
.hero--bold .hero__proof cite { display: block; margin-top: 6px; font-style: normal; font-size: 13px; letter-spacing: .02em; color: var(--ink-3); }
.hero__variante {
  position: absolute; z-index: 3; left: 16px; bottom: 14px;
  font-family: var(--fb); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3); border: 1px solid var(--line); border-radius: 100px; padding: 4px 10px; background: rgba(255,255,255,.7);
}
.hero--bold .hero__scroll, .hero--bold .hero__grain, .hero--bold .hero__vignette { display: none; }

.hero--bold::after {
  content: ""; position: absolute; left: -1px; right: -1px; bottom: -1px;
  height: clamp(26px, 4.4vw, 56px); z-index: 3; pointer-events: none;
  background: var(--paper); transform: scaleY(-1);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H1440 V27 C1140 56 1015 56 720 33 C425 10 300 10 0 33 Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H1440 V27 C1140 56 1015 56 720 33 C425 10 300 10 0 33 Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}
@media (max-width: 860px) {
  .hero.hero--bold { padding: 104px 0 56px; min-height: auto; }
  .hero--bold .hero__eyebrow { font-size: 11px; letter-spacing: .18em; text-align: left; }
  .hero--bold .hero__title { font-size: clamp(40px, 12.5vw, 56px); letter-spacing: -.035em; }
  .hero--bold .hero__lead { font-size: 16px; }
  .hero--bold .hero__cta-note { font-size: 12px; }
  .hero--bold .hero__proof { font-size: 14px; }
  .hero--bold .hero__blob { width: 120vw; opacity: .36; filter: blur(60px); }
}
@media (prefers-reduced-motion: reduce) { .hero--bold .hero__blob { animation: none; } }

.hero.hero--bold .hero__inner .hero__title { font-size: clamp(48px, min(9.6vw, 13.5vh), 128px); line-height: .94; letter-spacing: -.045em; }
#hero-b.hero--bold .hero__inner .hero__title { font-size: clamp(42px, min(6.9vw, 9.6vh), 86px); }
#hero-b.hero--bold .hero__inner { max-width: 1240px; }
.hero.hero--bold .hero__inner .hero__eyebrow { order: 1; margin-bottom: 0; }
.hero.hero--bold .hero__inner .hero__title { order: 2; margin-top: clamp(18px, 2.6vh, 28px); }
.hero.hero--bold .hero__inner .hero__lead { order: 3; margin-top: clamp(20px, 3vh, 30px); }
.hero.hero--bold .hero__inner .hero__cta { order: 4; margin-top: clamp(26px, 4vh, 40px); }
.hero.hero--bold .hero__inner .hero__proof { order: 5; }
.hero.hero--bold .hero__inner .hero__values, .hero.hero--bold .hero__inner .hero__ref { display: none; }
.hero__variante { bottom: auto; top: 86px; }
@media (max-width: 860px) {
  .hero.hero--bold .hero__inner .hero__title { font-size: clamp(40px, 12.5vw, 56px); letter-spacing: -.035em; line-height: 1; }
  #hero-b.hero--bold .hero__inner .hero__title { font-size: clamp(34px, 10.2vw, 46px); }
  .hero.hero--bold .hero__eyebrow { text-align: center; justify-content: center; }
  .hero.hero--bold .hero__eyebrow::before { display: none; }
  .hero__variante { top: 74px; }
}

#hero-b.hero--bold .hero__inner { max-width: 1320px; }
#hero-b.hero--bold .hero__inner .hero__title { font-size: clamp(40px, min(6.2vw, 8.8vh), 80px); }

:root { --grad-a: #d21f58; --grad-b: #e8467a; }
.hero--bold .hero__blob {
  background:
    radial-gradient(circle at 30% 30%, var(--accent), transparent 60%),
    radial-gradient(circle at 70% 70%, #f4a6bd, transparent 60%);
  opacity: .38;
}
.hero.hero--bold .hero__inner .hero__eyebrow {
  font-family: var(--fb); font-weight: 500; text-transform: none; letter-spacing: 0;
  font-size: clamp(17px, min(2vw, 2.5vh), 22px); color: var(--ink-2);
}
.hero.hero--bold .hero__eyebrow::before { background: var(--ink-2); opacity: 1; width: 26px; }
.hero.hero--bold .hero__inner .hero__cta-note,
.hero.hero--bold .hero__inner .hero__proof cite {
  font-size: clamp(17px, min(2vw, 2.5vh), 22px); color: var(--ink-2); line-height: 1.55; letter-spacing: 0;
}
.hero.hero--bold .hero__inner .hero__cta-note { max-width: 60ch; }
.hero.hero--bold .hero__inner .hero__proof { font-size: clamp(17px, min(2vw, 2.5vh), 22px); color: var(--ink); max-width: 60ch; }
.hero.hero--bold .hero__proof cite { margin-top: 6px; }
.hero__stars { display: block; color: var(--accent); letter-spacing: .12em; font-size: 15px; margin-bottom: 8px; }
.hero__variante { color: var(--ink-2); border-color: var(--ink-2); }
@media (max-width: 860px) {
  .hero.hero--bold .hero__inner .hero__eyebrow,
  .hero.hero--bold .hero__inner .hero__cta-note,
  .hero.hero--bold .hero__inner .hero__proof,
  .hero.hero--bold .hero__inner .hero__proof cite { font-size: 16px; }
}

.nav .nav__wrap {
  margin-top: 12px; padding: 5px 8px 5px 18px; gap: 18px;
  background: rgba(255,255,255,.52);
  backdrop-filter: blur(14px) saturate(1.25); -webkit-backdrop-filter: blur(14px) saturate(1.25);
  box-shadow: 0 1px 0 rgba(255,255,255,.5) inset, 0 8px 30px -22px rgba(26,26,26,.35);
  border: 1px solid rgba(255,255,255,.55);
}
.nav--scrolled .nav__wrap { background: rgba(255,255,255,.62); }
.nav .nav__links a { font-size: 14px; }
.nav .btn--nav { padding: 9px 18px; font-size: 13.5px; box-shadow: none; }

.hero.hero--bold .hero__inner .hero__lead { font-size: clamp(17px, min(2vw, 2.5vh), 22px); color: var(--ink-2); }
@media (min-width: 861px) and (max-height: 840px) { .hero.hero--bold { padding-top: clamp(84px, 10vh, 108px); padding-bottom: 32px; } }

.hero.hero--bold { --grad-a: #d21f58; --grad-b: #ff7a45; }
.hero.hero--bold .hero__blob {
  background:
    radial-gradient(circle at 30% 30%, #d21f58, transparent 60%),
    radial-gradient(circle at 70% 70%, #ff9d2f, transparent 60%);
  opacity: .42;
}
.hero.hero--bold .hero__inner .hero__eyebrow,
.hero.hero--bold .hero__inner .hero__lead,
.hero.hero--bold .hero__inner .hero__cta-note,
.hero.hero--bold .hero__inner .hero__proof,
.hero.hero--bold .hero__inner .hero__proof cite { color: var(--ink-2); font-weight: 400; font-family: var(--fb); }
.hero.hero--bold .hero__inner .hero__eyebrow,
.hero.hero--bold .hero__inner .hero__lead { font-size: clamp(17px, min(2vw, 2.5vh), 22px); }
.hero.hero--bold .hero__inner .hero__cta-note,
.hero.hero--bold .hero__inner .hero__proof cite { font-size: 13.5px; line-height: 1.5; }
.hero.hero--bold .hero__inner .hero__proof { font-size: clamp(14.5px, 1.7vh, 16.5px); line-height: 1.55; max-width: 72ch; }
@media (max-width: 860px) {
  .hero.hero--bold .hero__inner .hero__eyebrow, .hero.hero--bold .hero__inner .hero__lead { font-size: 16px; }
  .hero.hero--bold .hero__inner .hero__cta-note, .hero.hero--bold .hero__inner .hero__proof cite { font-size: 12px; }
  .hero.hero--bold .hero__inner .hero__proof { font-size: 14px; }
}

.hero__title .schwing {
  display: inline-block; transform-origin: 50% 60%;
  background: linear-gradient(120deg, #e8467a, #ff7a45);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: schwingen 3.6s ease-in-out infinite;
  will-change: transform;
}
@keyframes schwingen {
  0%, 100% { transform: rotate(-1.4deg) translateY(0); }
  50% { transform: rotate(1.4deg) translateY(-4px); }
}
@media (prefers-reduced-motion: reduce) { .hero__title .schwing { animation: none; } }
.hero__title .grad.schwing { background: linear-gradient(120deg, #e8467a 0%, #ff7a45 100%); }
.hero__title .grad, .hero__title .grad.schwing {
  -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
}

:root {
  --t-hero:  clamp(48px, 9vw, 104px);
  --t-num:   clamp(38px, 6vw, 64px);
  --t-title: clamp(30px, 4.2vw, 52px);
  --t-punch: clamp(21px, 2.8vw, 30px);
  --t-h3:    22px;
  --t-lead:  19px;
  --t-body:  17px;
  --t-small: 15px;
  --t-meta:  13px;
  --t-label: 13px;
  --surface: #faf9f8;
  --surface-line: #ececec;
}

html:has(main.fp-home) main > section.valueband { min-height: 0; display: block; padding: 36px 0 4px; }
.valueband { background: var(--paper); }
.vband { display: grid; gap: 14px; }
.vpcard { background: var(--surface); border: 1px solid var(--surface-line); border-radius: 20px; padding: 24px 22px; }
.vpcard h3 { font-family: var(--fd); font-size: var(--t-h3); font-weight: 600; letter-spacing: -.02em; line-height: 1.2; color: var(--ink-2); margin: 0 0 8px; }
.vpcard p { font-size: var(--t-small); line-height: 1.6; color: var(--ink-2); margin: 0; }
@media (min-width: 861px) {
  html:has(main.fp-home) main > section.valueband { padding: 44px 0 8px; }
  .vband { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .vpcard { padding: 28px 28px; }
}

.problem2 { position: relative; overflow: hidden; background: var(--paper); }
html:has(main.fp-home) main > section.problem2 { padding: 64px 0 56px; }
.p2blob {
  position: absolute; z-index: 0; left: 80%; top: 6%; width: min(70vw, 620px); aspect-ratio: 1; border-radius: 50%;
  filter: blur(80px); opacity: .32; pointer-events: none; transform: translate(-50%, -50%);
  background: radial-gradient(circle at 30% 30%, var(--accent), transparent 60%), radial-gradient(circle at 70% 70%, #f4a6bd, transparent 60%);
  animation: herodrift 16s ease-in-out infinite;
}
.problem2 .wrap { position: relative; z-index: 2; max-width: 1080px; }
.p2head { text-align: center; max-width: 900px; margin: 0 auto; }
.p2title { font-family: var(--fd); font-size: var(--t-title); font-weight: 600; letter-spacing: -.03em; line-height: 1.06; color: var(--ink); margin: 0; }
.p2title .mask { display: block; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.p2title .mask > span { display: block; transform: translateY(105%); transition: transform 1s var(--ease); }
.p2title.vis .mask > span { transform: none; }
.p2title .mask:nth-child(2) > span { transition-delay: .09s; }
.p2sub { font-size: var(--t-lead); line-height: 1.6; color: var(--ink-2); max-width: 50ch; margin: 20px auto 0; }
.pains { list-style: none; margin: 40px 0 0; padding: 0; border-top: 1px solid var(--line); }
.pain {
  display: grid; grid-template-columns: auto 1fr; gap: 8px 14px; align-items: start;
  padding: 22px 0; border-bottom: 1px solid var(--line);
  opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.pains.vis .pain { opacity: 1; transform: none; }
.pains.vis .pain:nth-child(2) { transition-delay: .12s; }
.pains.vis .pain:nth-child(3) { transition-delay: .24s; }
.pain .n { font-family: var(--fb); font-size: var(--t-label); font-weight: 600; letter-spacing: .14em; color: var(--ink-2); padding-top: .35em; }
.pain h3 { font-family: var(--fd); font-size: var(--t-h3); font-weight: 600; letter-spacing: -.02em; line-height: 1.25; color: var(--ink-2); margin: 0; display: inline; }
.strike {
  display: inline; background-image: linear-gradient(var(--ink-2), var(--ink-2)); background-repeat: no-repeat;
  background-position: 0 60%; background-size: 0% 2px; transition: background-size 1.05s .35s var(--ease);
}
.pains.vis .pain .strike { background-size: 100% 2px; }
.pains.vis .pain:nth-child(2) .strike { transition-delay: .47s; }
.pains.vis .pain:nth-child(3) .strike { transition-delay: .59s; }
.pain p { font-size: var(--t-body); line-height: 1.6; color: var(--ink-2); margin: 8px 0 0; max-width: 56ch; }
.chip {
  grid-column: 2; justify-self: start; margin-top: 4px; white-space: nowrap;
  font-family: var(--fb); font-size: var(--t-small); font-weight: 600; color: var(--ink-2);
  background: var(--surface); border: 1px solid var(--surface-line); border-radius: 999px; padding: 8px 14px;
}
.p2turn { font-family: var(--fd); font-size: var(--t-punch); font-weight: 600; letter-spacing: -.02em; line-height: 1.3; color: var(--ink); text-align: center; max-width: 34ch; margin: 40px auto 0; }
.p2lead { font-size: var(--t-lead); color: var(--ink-2); text-align: center; margin: 18px auto 0; }
.p2cta { margin-top: 20px; text-align: center; }
.p2cta .sec-cta__note { font-size: var(--t-meta); color: var(--ink-2); max-width: 60ch; margin: 10px auto 0; }
@media (min-width: 861px) {
  html:has(main.fp-home) main > section.problem2 { padding: clamp(72px, 9vh, 104px) 0 clamp(56px, 7vh, 88px); }
  .pains { margin-top: clamp(40px, 6vh, 60px); }
  .pain { grid-template-columns: auto 1fr auto; gap: 0 clamp(20px, 3vw, 40px); align-items: baseline; padding: clamp(22px, 3.2vh, 32px) 0; }
  .chip { grid-column: auto; justify-self: end; margin-top: 0; }
  .p2turn { margin-top: clamp(36px, 5.5vh, 56px); }
}
@media (prefers-reduced-motion: reduce) {
  .p2blob { animation: none; }
  .pain { opacity: 1; transform: none; transition: none; }
  .p2title .mask > span { transform: none; }
  .strike { background-size: 100% 2px; }
}
@media (min-width: 861px) { .p2head { max-width: 1040px; } .p2title { line-height: 1.04; } }

html:has(main.fp-home) { scroll-snap-type: none; }
html:has(main.fp-home) main > section.chapter, html:has(main.fp-home) .footer { scroll-snap-align: none; scroll-snap-stop: normal; }
html:has(main.fp-home) main > section.chapter { min-height: 0; display: block; }
html:has(main.fp-home) main > section.chapter > .wrap { margin-block: 0; }
.snapdots { display: none !important; }

:root { --surface: #ffffff; --surface-line: rgba(210, 31, 88, .16); }

.hero.hero--bold { display: grid; grid-template-rows: 1fr auto 1fr; place-content: stretch; align-items: center; padding-bottom: 0; }
.hero.hero--bold .hero__inner { grid-row: 2; }
.hero__proofwrap { grid-row: 3; position: relative; z-index: 2; display: grid; place-items: center; padding: 16px 0; }
.hero.hero--bold .hero__proof { margin: 0; text-align: center; }
.hero--bold::after { content: none; }

html:has(main.fp-home) main > section.valueband { padding: clamp(36px, 5.5vh, 64px) 0; }
.valueband > .wrap { max-width: min(1500px, 94vw); }
.vband { gap: 16px; }
.vpcard {
  background: #fff; border: 1px solid rgba(210, 31, 88, .16); border-radius: 18px;
  box-shadow: 0 10px 34px -22px rgba(26, 26, 26, .25); padding: 22px 24px;
}
.vpcard h3 { min-height: calc(2 * 1.2em); display: flex; align-items: flex-end; margin-bottom: 10px; }
@media (min-width: 861px) {
  html:has(main.fp-home) main > section.valueband { padding: clamp(40px, 6vh, 72px) 0; }
  .vband { gap: clamp(18px, 2vw, 28px); }
  .vpcard { padding: 22px 30px 24px; }
  .vpcard h3 { font-size: var(--t-h3); }
}

.p2eyebrow {
  display: inline-flex; align-items: center; gap: 12px; margin: 0 0 14px;
  font-family: var(--fb); font-size: var(--t-label); font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-2);
}
.p2eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--accent); }
.p2sub { max-width: 60ch; }
.pain .n { color: var(--accent); }
.chip { background: var(--accent-tint); border: 1px solid rgba(210, 31, 88, .28); color: var(--accent); }
.pains { border-top-color: rgba(210, 31, 88, .16); }
.pain { border-bottom-color: rgba(210, 31, 88, .16); }
html:has(main.fp-home) main > section.problem2 { padding-top: clamp(24px, 4vh, 48px); }

html:has(main.fp-home) main > section.hero--bold { min-height: 100svh; display: grid; }

.hero.hero--bold { grid-template-rows: 1fr auto 1fr auto; }
.hero__proofwrap { grid-row: 4; padding: 0 0 clamp(28px, 4.5vh, 48px); }
.hero.hero--bold .hero__inner { grid-row: 2; }
.strike { background-image: linear-gradient(var(--accent), var(--accent)); background-size: 0% 1px; background-position: 0 58%; }
.pains.vis .pain .strike { background-size: 100% 1px; }
.p2turn { font-family: var(--fb); font-size: var(--t-lead); font-weight: 400; letter-spacing: 0; line-height: 1.6; color: var(--ink-2); max-width: 60ch; margin: 36px auto 0; }
.p2turn--last { margin-top: 14px; }
.p2lead { display: none; }

.hero__title .schwing { animation: none; transform: none; display: inline-block; }
.hero__title .schwing__b {
  display: inline-block; will-change: transform;
  background-image: linear-gradient(120deg, #e8467a 0%, #ff7a45 100%); background-repeat: no-repeat;
  -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
  animation: sinus 2.6s ease-in-out infinite;
}
@keyframes sinus { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-.07em); } }
@media (prefers-reduced-motion: reduce) { .hero__title .schwing__b { animation: none; } }

.hero.hero--bold { grid-template-rows: .45fr auto 1.55fr auto; padding-top: clamp(72px, 9vh, 96px); }

.hero__title .grad.schwing { background: none; -webkit-background-clip: border-box; background-clip: border-box; -webkit-text-fill-color: currentColor; color: var(--ink); }

.chapter--paper { background: var(--paper); }
.chapter--paper::before, .chapter--paper::after { content: none !important; }
html:has(main.fp-home) main > section.teaser,
html:has(main.fp-home) main > section.weg,
html:has(main.fp-home) main > section.verlust { padding: 64px 0; }

.teaser__grid { display: grid; gap: 34px; }
.teaser__title { margin: 0 0 18px; }
.teaser__lead { font-size: var(--t-lead); line-height: 1.6; color: var(--ink-2); margin: 0 0 14px; }
.teaser__text { font-size: var(--t-body); line-height: 1.65; color: var(--ink-2); margin: 0 0 16px; }
.teaser__link { font-size: var(--t-body); }
.teaser__cta { margin-top: 24px; text-align: left; }
.teaser__cta .sec-cta__note { font-size: var(--t-meta); color: var(--ink-2); }
.teaser__faces { display: flex; justify-content: center; align-items: flex-end; gap: 18px; }
.teaser__face { margin: 0; text-align: center; }
.teaser__face img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; display: block; box-shadow: 0 0 0 4px #fff, 0 0 0 6px var(--accent-tint), 0 24px 50px -30px rgba(26,26,26,.35); }
.teaser__face figcaption { margin-top: 10px; font-family: var(--fd); font-weight: 600; font-size: var(--t-small); color: var(--ink-2); }
.teaser__face--karin { transform: translateY(-22px); }
@media (min-width: 861px) {
  html:has(main.fp-home) main > section.teaser { padding: clamp(80px, 10vh, 120px) 0; }
  .teaser__grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(40px, 5vw, 80px); align-items: center; }
  .teaser__faces { gap: 32px; }
  .teaser__face img { width: clamp(180px, 16vw, 230px); height: clamp(180px, 16vw, 230px); }
  .teaser__face--karin { transform: translateY(-44px); }
}

.weg__head { text-align: center; }
.weg__steps { list-style: none; margin: 8px 0 0; padding: 0; display: grid; gap: 28px; }
.weg__step { display: grid; grid-template-columns: auto 1fr; gap: 14px 18px; align-items: start; }
.weg__num { font-family: var(--fd); font-size: var(--t-num); font-weight: 700; line-height: 1; letter-spacing: -.04em; color: var(--accent); }
.weg__body h3 { font-family: var(--fd); font-size: var(--t-h3); font-weight: 600; color: var(--ink); margin: 4px 0 8px; letter-spacing: -.02em; }
.weg__body p { font-size: var(--t-body); line-height: 1.65; color: var(--ink-2); margin: 0; max-width: 58ch; }
.weg__schluss { font-size: var(--t-lead); color: var(--ink-2); text-align: center; margin: 36px auto 0; max-width: 60ch; }
.weg .sec-cta { margin-top: 20px; text-align: center; }
.weg .sec-cta .sec-cta__note { font-size: var(--t-meta); color: var(--ink-2); }
@media (min-width: 861px) {
  .weg--kulisse.sec--scrolly { height: 250svh; }
  .weg--kulisse .weg__steps { position: relative; max-width: 1080px; margin: 0 auto; min-height: 42vh; display: block; }
  .weg--kulisse .weg__step {
    position: absolute; inset: 0; opacity: 0; transform: translateY(10px); pointer-events: none;
    transition: opacity .55s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
    grid-template-columns: 300px minmax(0, 1fr); gap: 0 clamp(32px, 5vw, 80px); align-items: center;
  }
  .weg--kulisse .weg__step.on { position: relative; opacity: 1; transform: none; pointer-events: auto; }
  .weg--kulisse .weg__num { font-size: clamp(120px, 20vh, 200px); text-align: center; }
  .weg--kulisse .weg__body h3 { font-size: var(--t-punch); margin-bottom: 12px; }
  .weg--kulisse .weg__body p { font-size: var(--t-lead); line-height: 1.6; }
  .weg__dots { margin-top: clamp(16px, 2.6vh, 28px); }
  .weg--kulisse .weg__schluss { margin-top: clamp(20px, 3vh, 32px); }
}

.plan__wert { font-size: var(--t-small) !important; color: var(--ink-2) !important; margin-top: 0 !important; }
.garantie {
  max-width: 900px; margin: 32px auto 0; padding: 26px 24px 28px; text-align: center;
  background: #fff; border: 1px solid rgba(210, 31, 88, .16); border-top: 3px solid var(--accent); border-radius: 18px;
  box-shadow: 0 16px 40px -30px rgba(26, 26, 26, .35);
}
.garantie__label { font-family: var(--fb); font-size: var(--t-label); font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-2); margin: 0 0 10px; }
.garantie__titel { font-family: var(--fd); font-size: var(--t-punch); font-weight: 600; letter-spacing: -.02em; line-height: 1.25; color: var(--ink); margin: 0 0 12px; }
.garantie__text { font-size: var(--t-body); line-height: 1.6; color: var(--ink-2); margin: 0 auto; max-width: 60ch; }
@media (min-width: 861px) { .garantie { margin-top: clamp(36px, 5vh, 56px); padding: 32px 40px 36px; } }

.verlust__head { text-align: center; }
.verlust__sub { margin-inline: auto; }
.verlust .problem__loss { margin: 28px auto 0; max-width: 860px; width: 100%; }
@media (min-width: 861px) { .verlust .problem__loss { margin-top: clamp(32px, 4.5vh, 48px); } }

.teaser__face { flex: 1 1 0; max-width: 240px; }
.teaser__face img { width: 100%; height: auto; aspect-ratio: 1 / 1; }

@media (min-width: 861px) {
  .plans { grid-template-rows: auto auto auto 1fr auto auto auto auto; }
  .plan { grid-row: span 8; }
  .plan > .plan__wert { grid-row: 7; }
  .plan > .btn--block { grid-row: 8; }
  .weg--kulisse .weg__steps { min-height: 34vh; }
}

.sec-title, .wanalyse__title, .probe__title, .p2title {
  font-family: var(--fd); font-weight: 600; font-size: var(--t-title); line-height: 1.06; letter-spacing: -.03em; color: var(--ink);
}
.chapter--dark .sec-title, .chapter--dark .probe__title { color: #fff; }
.sec-title em { font-weight: 600; }

.vpcard h3, .weg__body h3, .pain h3, .plan__name, .garantie__titel, .showcase__caption h3, .acc__item summary, .post__title, .gcard__name, .teaser__face figcaption {
  font-family: var(--fd); font-weight: 600; font-size: var(--t-h3); line-height: 1.25; letter-spacing: -.02em; color: var(--ink-2);
}
.showcase__caption h3 { color: #fff; }
.acc__item summary { padding-block: 18px; }

.p2eyebrow, .sec-kicker, .sec-kicker--light, .garantie__label, .showcase__count {
  font-family: var(--fb); font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--accent);
}
.p2eyebrow::before, .sec-kicker i { background: var(--accent); }
.sec-kicker i { height: 1px; width: 26px; }
.showcase__count b { font-size: 22px; }

.sec-sub, .p2sub, .p2turn, .teaser__text, .weg__body p, .weg__schluss, .verlust__sub, .probe__lead, .wanalyse__lead, .wanalyse__checks li, .acc__body p, .pain p, .garantie__text, .showcase__sub, .probe__note, .probe__value, .teaser__link {
  font-family: var(--fb); font-weight: 400; font-size: var(--t-body); line-height: 1.65; letter-spacing: 0; color: var(--ink-2);
}
.chapter--dark .sec-sub, .chapter--dark .probe__lead, .chapter--dark .probe__note, .chapter--dark .probe__value, .showcase__sub { color: #fff; }
.probe__value { font-weight: 600; }

.vpcard p, .plan__list li, .plan__for, .plan__tag, .plan__sublist li, .showcase__caption p, .voices--carousel .vcard blockquote, .post__desc, .weg--swipe .weg__body p {
  font-family: var(--fb); font-weight: 400; font-size: 16px; line-height: 1.55; color: var(--ink-2);
}
.showcase__caption p, .voices--carousel .vcard blockquote { color: #fff; }

.sec-cta__note, .hero__proof cite, .problem__loss-src, .wform__note, .vcard figcaption, .vcard figcaption span, .hs__ui, .vcar__count {
  font-family: var(--fb); font-weight: 400; font-size: var(--t-meta); line-height: 1.5; letter-spacing: 0; color: var(--ink-2);
}
.hero.hero--bold .hero__inner .hero__proof cite { font-size: var(--t-meta); }
.chapter--dark .sec-cta__note, .problem__loss .problem__loss-src, .chapter--dark .vcard figcaption, .chapter--dark .vcard figcaption span, .chapter--dark .vcar__count { color: rgba(255,255,255,.85); }

.sec-cta { display: flex; flex-direction: column; align-items: center; text-align: center; }
.sec-cta--left { display: inline-flex; align-items: center; }
.sec-cta .sec-cta__note { max-width: 430px; margin: 12px auto 0; text-align: center; }
.teaser__link { font-weight: 400; }

.garantie { text-align: left; border: 1.5px solid var(--accent); border-top-width: 1.5px; box-shadow: var(--sh-accent); border-radius: var(--radius); }
.garantie__text { margin-inline: 0; }

@media (min-width: 861px) { .plan__for { align-self: stretch; } }

.probe--hell { background: var(--paper); }
.probe--hell .probe__canvas, .probe--hell .hero__grain { display: none; }
.probe--hell .probe__title { color: var(--ink); }
.probe--hell .probe__lead, .probe--hell .probe__note, .probe--hell .probe__value { color: var(--ink-2); }
.probe--hell .sec-cta__note { color: var(--ink-2); }
.probe--hell .probe__inner { text-align: center; }

.chapter--light + .chapter--light:not(.valueband):not(.problem2) { position: relative; }
.chapter--light + .chapter--light:not(.valueband):not(.problem2)::before {
  
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; z-index: 2; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(210, 31, 88, .6), transparent);
}

.nav--hide { transform: none !important; }
.nav .nav__wrap { background: rgba(255,255,255,.42); backdrop-filter: blur(18px) saturate(1.2); -webkit-backdrop-filter: blur(18px) saturate(1.2); }
.nav--scrolled .nav__wrap { background: rgba(255,255,255,.5); }

@media (max-width: 860px) {
  .p2eyebrow, .sec-kicker, .sec-kicker--light, .garantie__label { font-size: 10px; letter-spacing: .16em; }
  .hero.hero--bold .hero__inner .hero__title { font-size: clamp(36px, 11vw, 48px); }
  .btn--lg, .btn--xl { white-space: normal; max-width: 100%; text-align: center; }
  .sec-cta .sec-cta__note { max-width: 100%; }
  .weg--swipe .weg__step { background: #fff; border: 1px solid rgba(210, 31, 88, .16); border-radius: 18px; padding: 20px 18px; grid-template-columns: auto 1fr; gap: 6px 14px; }
  .weg--swipe .weg__num { font-size: 34px; }
}
@media (max-width: 380px) { .wrap { padding-inline: 16px; } .hero.hero--bold .hero__inner .hero__title { font-size: 34px; } }

html:has(main.fp-home) .faq .sec-title { font-size: var(--t-title); }
html:has(main.fp-home) .faq .acc__item summary { font-size: var(--t-h3); padding-block: 18px; }
.weg--kulisse .weg__body h3 { font-size: var(--t-h3); }
.weg--kulisse .weg__body p { font-size: var(--t-body); }
.hero.hero--bold .hero__inner .hero__proof cite, .hero.hero--bold .hero__proofwrap cite { color: var(--ink-2); }

.ueber-hero { position: relative; overflow: hidden; text-align: center; padding: clamp(104px, 14vh, 150px) 0 clamp(36px, 6vh, 64px); background: var(--paper); }
.ueber-hero .hero__blob { opacity: .3; top: 30%; }
.ueber-hero .wrap { position: relative; z-index: 2; max-width: 900px; }
.ueber-hero h1 { font-family: var(--fd); font-weight: 600; font-size: var(--t-title); line-height: 1.06; letter-spacing: -.03em; color: var(--ink); margin: 14px 0 20px; }
.ueber-hero p { font-family: var(--fb); font-size: var(--t-body); line-height: 1.65; color: var(--ink-2); margin: 0 auto 14px; max-width: 64ch; }
.ueber-hero .sec-cta { margin-top: 26px; }
.ueber-block { padding: 56px 0; }
.ueber-block .sec-head { text-align: center; margin-bottom: 24px; }
.ueber-block .ueber-text { font-family: var(--fb); font-size: var(--t-body); line-height: 1.65; color: var(--ink-2); max-width: 64ch; margin: 0 auto 14px; text-align: center; }
.ueber-block .ueber-text a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.personen { display: grid; gap: 24px; }
.person-card { background: #fff; border: 1px solid rgba(210, 31, 88, .16); border-radius: var(--radius); padding: 26px 22px; box-shadow: 0 16px 40px -30px rgba(26, 26, 26, .3); }
.person-card__kopf { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; }
.person-card__kopf img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; flex: 0 0 auto; box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--accent-tint); }
.person-card__name { font-family: var(--fd); font-weight: 600; font-size: var(--t-h3); line-height: 1.25; letter-spacing: -.02em; color: var(--ink-2); margin: 0 0 4px; }
.person-card__rolle { font-family: var(--fb); font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin: 0; }
.person-card p, .person-card blockquote { font-family: var(--fb); font-size: 16px; line-height: 1.55; color: var(--ink-2); margin: 0 0 12px; }
.person-card blockquote { border-left: 2px solid var(--accent); padding-left: 14px; }
.stimme { margin: 18px 0 0; padding: 16px 18px; border: 1px solid rgba(210, 31, 88, .16); border-radius: 14px; background: #fff; }
.stimme p { margin: 0 0 8px; }
.stimme cite { font-family: var(--fb); font-style: normal; font-size: var(--t-meta); color: var(--ink-2); }
.stimme__label { font-family: var(--fb); font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin: 0 0 8px; }
.ueber-faq .acc { max-width: 860px; margin: 0 auto; }
@media (min-width: 861px) {
  .ueber-block { padding: clamp(64px, 8vh, 96px) 0; }
  .personen { grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 40px); align-items: start; }
  .person-card { padding: 32px 30px; }
  .person-card__kopf img { width: 120px; height: 120px; }
}

.footer.chapter--dark { overflow-x: clip; }
.personen > *, .person-card, .person-card__kopf > div { min-width: 0; }
@media (max-width: 420px) {
  .person-card { padding: 22px 16px; }
  .person-card__kopf { flex-direction: column; align-items: flex-start; gap: 14px; }
  .person-card__kopf img { width: 84px; height: 84px; }
}

main.fp-home .blog--rail2.sec--scrolly, main.fp-home .showcase { overflow-x: clip; }
@media (min-width: 861px) { html:has(main.fp-home) main > section.showcase--pin { overflow-x: clip; } }

.hero__title .schwing__b { padding-bottom: .22em; margin-bottom: -.22em; }

.hero--bold .hero__title .grad:not(.schwing) { background-image: linear-gradient(120deg, var(--accent), var(--accent-2)); padding-bottom: .22em; margin-bottom: -.22em; display: inline-block; }
.hero__title .schwing__b { background-image: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 30%, #ff7a45 100%); }

.hero.hero--bold { grid-template-rows: 1fr auto auto 1fr; padding-top: 54px; padding-bottom: 0; }
.hero.hero--bold .hero__inner { grid-row: 2; }
.hero__proofwrap { grid-row: 3; padding: clamp(26px, 4vh, 40px) 0 0; }
.hero.hero--bold .hero__proofwrap .hero__proof { margin: 0; }

@media (min-width: 861px) {
  .weg--kulisse .weg__head { margin-bottom: 0; }
  .weg--kulisse .weg__head .sec-title { margin-bottom: 0; }
  .weg--kulisse .weg__steps { margin: 0; min-height: 0; display: grid; align-items: center; padding: clamp(28px, 5vh, 56px) 0; }
  .weg--kulisse .weg__dots { margin-top: 0; }
}

.has-blob { position: relative; overflow: clip; }
.has-blob > .wrap { position: relative; z-index: 1; }
.sec-blob {
  position: absolute; z-index: 0; pointer-events: none; border-radius: 50%;
  width: min(60vw, 640px); aspect-ratio: 1; filter: blur(80px); opacity: .22;
  background: radial-gradient(circle at 35% 35%, var(--accent), transparent 62%), radial-gradient(circle at 70% 70%, #f4a6bd, transparent 62%);
}
.sec-blob--rechts { right: -12%; top: 10%; }
.sec-blob--mitte { left: 50%; top: 50%; transform: translate(-50%, -50%); }
.sec-blob--links { left: -14%; bottom: -10%; }
@media (max-width: 860px) { .sec-blob { width: 110vw; opacity: .18; } }

.subpage__title { font-weight: 600; font-size: var(--t-title); line-height: 1.06; letter-spacing: -.03em; color: var(--ink); }
.subpage__kicker { font-size: 11px; letter-spacing: .18em; color: var(--accent); }
.subpage__kicker i { background: var(--accent); height: 1px; }
.prose h2 { font-weight: 600; font-size: clamp(24px, 2.6vw, 30px); line-height: 1.2; letter-spacing: -.02em; color: var(--ink); margin: 44px 0 12px; }
.prose h3 { font-weight: 600; font-size: var(--t-h3); line-height: 1.25; color: var(--ink-2); margin: 30px 0 10px; }
.prose p, .prose li { font-size: var(--t-body); line-height: 1.65; color: var(--ink-2); }
.prose__meta { color: var(--ink-2); font-size: var(--t-meta); border-bottom-color: rgba(210, 31, 88, .16); margin-bottom: 26px; padding-bottom: 20px; }
.prose__hero { margin: 0 0 34px; }
.prose__hero img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 18px; border: 1px solid rgba(210, 31, 88, .16); box-shadow: 0 24px 60px -36px rgba(26, 26, 26, .35); }
.prose__autor { display: flex; gap: 18px; align-items: center; margin: clamp(40px, 6vw, 64px) 0 0; padding: 20px 22px; background: #fff; border: 1px solid rgba(210, 31, 88, .16); border-radius: 18px; }
.prose__autor-faces { display: flex; flex: 0 0 auto; }
.prose__autor-faces img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 3px #fff; }
.prose__autor-faces img + img { margin-left: -14px; }
.prose__autor p { margin: 0; font-size: var(--t-small); line-height: 1.55; }
.prose__autor-label { font-family: var(--fb); font-size: 11px !important; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin: 0 0 6px !important; }
.prose__autor a { color: var(--accent); }
.subfooter-cta h2 { font-weight: 600; font-size: var(--t-title); line-height: 1.06; letter-spacing: -.03em; color: #fff; margin-bottom: 12px; }
.subfooter-cta p { font-size: var(--t-body); line-height: 1.65; color: #fff; }
.subfooter-cta .subfooter-cta__note { font-size: var(--t-meta); line-height: 1.5; color: #fff; max-width: 430px; margin: 12px auto 0; }
@media (max-width: 860px) {
  .prose h2 { font-size: 24px; }
  .prose__autor { flex-direction: column; align-items: flex-start; }
}

.footer__inner--cols { display: grid; grid-template-columns: 1fr; gap: 36px; }
.footer .footer__claim { font-size: 14px; line-height: 1.55; color: rgba(255, 255, 255, .78); max-width: 34ch; margin: 2px 0 0; }
.footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 24px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer .footer__h { font-family: var(--fb); font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--accent-2); margin: 0 0 4px; }
.footer__col a { font-size: 15px; line-height: 1.4; color: rgba(255, 255, 255, .92); }
.footer__col a:hover { color: var(--accent-2); }
@media (min-width: 861px) {
  .footer__inner--cols { grid-template-columns: minmax(240px, 1fr) auto; align-items: start; }
  .footer__cols { grid-template-columns: repeat(3, auto); gap: 24px clamp(40px, 5vw, 80px); }
}

.pain .chip { display: inline-block; min-width: 14.5em; text-align: center; box-sizing: border-box; }

.teaser__link, .teaser__link em { color: var(--accent); }
.teaser__link:hover { color: var(--accent-2); }

main.fp-lp .hero--bold .hero__title { font-size: clamp(44px, min(8.4vw, 12vh), 112px); }
@media (max-width: 860px) { main.fp-lp .hero--bold .hero__title { font-size: clamp(38px, 11.5vw, 52px); } }

.ueber-hero h1 { max-width: 20ch; margin-inline: auto; }
.ueber-block .sec-head { margin-bottom: clamp(28px, 4vh, 40px); }
.ueber-vband { gap: 16px; }
.ueber-nutzen .vpcard h3 { min-height: 0; display: block; margin-bottom: 10px; }
.person-card__lead { font-family: var(--fd) !important; font-size: var(--t-h3) !important; font-weight: 600 !important; line-height: 1.3 !important; letter-spacing: -.02em; color: var(--ink) !important; }
.ueber-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.ueber-step { background: #fff; border: 1px solid rgba(210, 31, 88, .16); border-radius: 20px; padding: 24px 22px; }
.ueber-step__n { display: block; font-family: var(--fd); font-size: var(--t-num); font-weight: 700; line-height: 1; letter-spacing: -.04em; color: var(--accent); margin-bottom: 12px; }
.ueber-step h3 { font-family: var(--fd); font-size: var(--t-h3); font-weight: 600; line-height: 1.25; letter-spacing: -.02em; color: var(--ink-2); margin: 0 0 8px; }
.ueber-step p { font-family: var(--fb); font-size: 16px; line-height: 1.55; color: var(--ink-2); margin: 0; }
.ueber-zitat { margin: 0 auto; max-width: 720px; text-align: center; }
.ueber-zitat blockquote { font-family: var(--fb); font-size: var(--t-body); line-height: 1.65; color: var(--ink-2); margin: 0 0 10px; }
.ueber-zitat cite { font-family: var(--fb); font-style: normal; font-size: var(--t-meta); color: var(--ink-2); }
.ueber-stimme .sec-cta { margin-top: 28px; }
@media (min-width: 861px) {
  .ueber-vband { grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); }
  .ueber-steps { grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); }
  .ueber-block .sec-head { max-width: 760px; }
}

.person-card__rolle { font-size: 16px; font-weight: 600; letter-spacing: 0; text-transform: none; line-height: 1.4; color: var(--accent); }

.hero--bold .hero__title .grad:not(.schwing), .hero__title .grad.schwing { background: none; -webkit-background-clip: border-box; background-clip: border-box; -webkit-text-fill-color: currentColor; color: var(--ink); display: inline; padding: 0; margin: 0; }
.hero__title .grad__b {
  display: inline-block; padding: 0 .08em .22em; margin: 0 -.08em -.22em;
  background-image: linear-gradient(90deg, #d21f58 0%, #d21f58 24%, #e8467a 50%, #ff7a45 100%); background-repeat: no-repeat;
  -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
}
.hero__title .schwing__b { padding: 0 .08em .22em; margin: 0 -.08em -.22em; background-image: linear-gradient(90deg, #d21f58 0%, #d21f58 24%, #e8467a 50%, #ff7a45 100%); }
.hero__title .grad__sp { display: inline; }

:root { --grad-a: #d21f58; --grad-b: #ff7a45; }
.btn--accent, .btn--nav { background: linear-gradient(120deg, var(--grad-a), var(--grad-b)); color: #fff; box-shadow: 0 20px 50px -18px var(--grad-a); }
.btn--accent:hover, .btn--nav:hover { background: linear-gradient(120deg, #b81a4d, #f26a34); transform: translateY(-3px); box-shadow: 0 28px 60px -20px var(--grad-a); color: #fff; }
.btn--nav { box-shadow: 0 10px 30px -12px rgba(210, 31, 88, .6); }

main .chapter--dark .sec-kicker, main .chapter--dark .p2eyebrow, main .chapter--dark .sec-kicker--light { color: #fff; }
main .chapter--dark .sec-kicker i, main .chapter--dark .p2eyebrow::before { background: #fff; }

.strike, .pains.vis .pain .strike { background-image: none !important; background-size: 0 0 !important; }
.pain .n--icon { padding-top: .1em; line-height: 0; }
.pain .n--icon svg { width: 28px; height: 28px; fill: none; stroke: var(--accent); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; display: block; }
@media (min-width: 861px) { .pain { align-items: start; } .pain .n--icon { padding-top: .15em; } .pain .chip { margin-top: .1em; } }

@media (min-width: 861px) {
  .voices__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 28px); max-width: 1180px; align-items: stretch; }
  .voices__list .vcard { margin: 0; padding: 28px 26px; }
  .voices__list .vcard blockquote { font-size: 16px; line-height: 1.6; }
  .voices__list .vcard:nth-child(2) { justify-content: center; text-align: center; }
  .voices__list .vcard:nth-child(2) blockquote { font-size: 19px; line-height: 1.5; }
  .voices__list .vcard:nth-child(2) .voices__big { display: block; font-family: var(--fd); font-size: 40px; font-weight: 700; letter-spacing: -.03em; color: var(--accent-2); margin-top: 10px; }
  .voices__list .vcard:nth-child(2) figcaption { margin-top: 22px; align-items: center; }
  .voices__list .vcard--marthe .q--multi p { font-size: 16px; line-height: 1.6; }
}

.plan li > .plan__mehr { display: inline-flex; margin: 6px 0 2px; }

.probe--hell .sec-cta { margin-top: 36px; }
.probe--hell .probe__value { margin-top: 24px; font-size: var(--t-h3); }
.probe--hell .sec-cta .sec-cta__note { margin-top: 10px; }
.probe--hell .probe__note { margin-top: 24px; font-size: var(--t-body); line-height: 1.65; }

.showcase__shot { transition: opacity .45s ease, transform .55s ease; }
.showcase__bg > div { transition: opacity .6s ease; }
.showcase__dots i { cursor: pointer; }
.showcase__dots i:hover { color: #fff; }

.weg .wrap { position: relative; }
.weg__bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url("../assets/story/essenz-kraft.webp") left center / cover no-repeat;
  opacity: .55;
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.4) 32%, rgba(0,0,0,0) 68%);
          mask-image: linear-gradient(90deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.4) 32%, rgba(0,0,0,0) 68%);
}
.weg .wrap > :not(.weg__bg) { position: relative; z-index: 1; }
@media (max-width: 860px) { .weg__bg { opacity: .35; -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.7), rgba(0,0,0,0) 70%); mask-image: linear-gradient(180deg, rgba(0,0,0,.7), rgba(0,0,0,0) 70%); } }

.footer__brand { align-items: flex-start; }
.footer__brand .brand__logo { margin: 0; }

.wanalyse__mock img { border-radius: 0; box-shadow: none; }

.prose ol.prose__punkte { list-style: none; padding: 0; margin: 0 0 22px; counter-reset: pkt; }
.prose ol.prose__punkte > li { position: relative; padding-left: 40px; margin-bottom: 18px; counter-increment: pkt; }
.prose ol.prose__punkte > li::before { content: counter(pkt); position: absolute; left: 0; top: .1em; width: 28px; height: 28px; border-radius: 50%; background: var(--accent-tint); color: var(--accent); font-weight: 600; font-size: 14px; display: grid; place-items: center; }
.prose ol.prose__punkte > li p { margin: 0 0 10px; }
.prose .prose__beleg { font-size: var(--t-small); line-height: 1.6; color: var(--ink-2); border-left: 2px solid var(--accent); padding: 4px 0 4px 16px; margin: 0 0 18px; }

main.ueber .hero--bold .hero__title { font-size: clamp(38px, min(6.6vw, 10vh), 88px); }
@media (max-width: 860px) { main.ueber .hero--bold .hero__title { font-size: clamp(34px, 9.6vw, 44px); } }
.ueber-personen__head { max-width: 820px; margin-inline: auto; text-align: center; }
.ueber-personen__head .sec-sub { margin-inline: auto; max-width: 66ch; }
.personen--gross { display: grid; gap: 24px; }
.person-card--gross { padding: 0 0 26px; overflow: hidden; }
.person-card__bild { margin: 0 0 22px; }
.person-card__bild img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 20%; display: block; }
.person-card--gross .person-card__kopf, .person-card--gross .person-card__lead, .person-card--gross .person-card__text, .person-card--gross .stimme { margin-left: 22px; margin-right: 22px; }
.person-card--gross .person-card__kopf { display: block; margin-bottom: 14px; }
.person-card--gross .person-card__lead { margin-bottom: 14px; }
.person-card--gross .person-card__text p { margin: 0 0 12px; }
.stimme--frei { margin-top: 18px; box-shadow: 0 18px 44px -26px rgba(26, 26, 26, .35); border-color: rgba(210, 31, 88, .22); }
@media (min-width: 861px) {
  .personen--gross { grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 40px); align-items: stretch; }
  .person-card--gross { display: grid; grid-template-rows: subgrid; grid-row: span 5; padding-bottom: 32px; }
  .person-card--gross .person-card__kopf, .person-card--gross .person-card__lead, .person-card--gross .person-card__text, .person-card--gross .stimme { margin-left: 32px; margin-right: 32px; }
  .person-card--gross .stimme { align-self: start; }
}
.ueber-warum { background: var(--slate); color: #fff; }
.ueber-warum .sec-head { margin-inline: auto; max-width: 820px; text-align: center; }
.ueber-warum .sec-title { color: #fff; }
.ueber-warum__text { font-family: var(--fb); font-size: var(--t-body); line-height: 1.65; color: #fff; max-width: 66ch; margin: 0 auto; text-align: center; }
.ueber-links { display: flex; flex-wrap: wrap; gap: 14px 36px; justify-content: center; margin-top: 28px; }
.ueber-links .link-arrow { font-size: var(--t-body); font-weight: 600; }
.ueber-warum { overflow-x: clip; }
.hero__title .grad__w { white-space: nowrap; display: inline-block; }
main.ueber .hero--bold .hero__title { font-size: clamp(34px, min(5.2vw, 8vh), 72px); }
@media (max-width: 860px) { main.ueber .hero--bold .hero__title { font-size: clamp(28px, 8.2vw, 40px); } }

main.ueber .hero.hero--bold .hero__inner .hero__title { font-size: clamp(34px, min(5.2vw, 8vh), 72px); }
main.fp-lp .hero.hero--bold .hero__inner .hero__title { font-size: clamp(44px, min(8.4vw, 12vh), 112px); }
@media (max-width: 860px) {
  main.ueber .hero.hero--bold .hero__inner .hero__title { font-size: clamp(28px, 8.2vw, 40px); }
  main.fp-lp .hero.hero--bold .hero__inner .hero__title { font-size: clamp(38px, 11.5vw, 52px); }
}

.btn--slate { background: linear-gradient(120deg, var(--grad-a), var(--grad-b)); color: #fff; box-shadow: 0 20px 50px -18px var(--grad-a); }
.btn--slate:hover { background: linear-gradient(120deg, #b81a4d, #f26a34); color: #fff; }

.weg { overflow-x: clip; }
.weg__bg { inset: 0 calc(50% - 50vw); width: auto; background-position: left 20% center; }

.voices--neu { background: var(--paper); overflow: visible; }
.voices--neu .sec-head { text-align: left; margin-left: 0; margin-bottom: clamp(28px, 4vh, 44px); }
.vneu { display: grid; gap: 28px; }
.vneu__liste { list-style: none; margin: 0; padding: 0; display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.vneu__liste::-webkit-scrollbar { display: none; }
.vneu__tab { display: flex; align-items: center; gap: 12px; border: 0; background: none; padding: 6px 8px; cursor: pointer; text-align: left; font-family: var(--fb); color: var(--ink-2); border-radius: 14px; transition: background .3s var(--ease); flex: 0 0 auto; }
.vneu__avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; flex: 0 0 auto; box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px rgba(210, 31, 88, .18); transition: width .35s var(--ease), height .35s var(--ease), box-shadow .35s var(--ease); }
.vneu__avatar img, .vneu__avatar-svg { width: 100%; height: 100%; object-fit: cover; display: block; }
.vneu__wer { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.vneu__name { font-family: var(--fd); font-size: 16px; font-weight: 600; letter-spacing: -.01em; color: var(--ink-2); transition: font-size .35s var(--ease), color .35s var(--ease); white-space: nowrap; }
.vneu__sterne { font-size: 12px; letter-spacing: .1em; color: var(--accent); line-height: 1; }
.vneu__rolle { font-size: var(--t-meta); color: var(--ink-2); white-space: nowrap; }
.vneu__tab.on .vneu__name { color: var(--ink); font-size: var(--t-h3); }
.vneu__tab.on .vneu__avatar { width: 72px; height: 72px; box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--accent); }
.vneu__buehne { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; gap: 0; }
.vneu__buehne::-webkit-scrollbar { display: none; }
.vneu__zitat { flex: 0 0 100%; scroll-snap-align: start; margin: 0; position: relative; padding: 0; }
.vneu__zitat blockquote { margin: 0; font-family: var(--fd); font-weight: 500; color: var(--ink); letter-spacing: -.015em; }
.vneu__zitat blockquote::before { content: "\201C"; display: block; font-family: var(--fd); font-size: 64px; line-height: .6; color: var(--accent); margin-bottom: 14px; }
.vneu__zitat--kurz blockquote { font-size: clamp(22px, 2.4vw, 30px); line-height: 1.35; }
.vneu__zitat--mittel blockquote { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.55; font-weight: 500; }
.vneu__zitat--lang blockquote { font-family: var(--fb); font-weight: 400; font-size: var(--t-body); line-height: 1.65; color: var(--ink-2); letter-spacing: 0; }
.vneu__zitat--lang blockquote p { margin: 0 0 12px; }
.vneu__zitat .voices__big { display: block; margin-top: 12px; font-family: var(--fd); font-size: clamp(40px, 4.6vw, 64px); font-weight: 700; letter-spacing: -.03em; color: var(--accent); text-shadow: none; }
.vneu__zitat figcaption { margin-top: 18px; font-family: var(--fb); font-size: var(--t-meta); color: var(--ink-2); display: flex; flex-direction: column; gap: 2px; }
.vneu__zitat figcaption span { color: var(--ink-2); }
@media (min-width: 861px) {
  .vneu { grid-template-columns: minmax(300px, 380px) minmax(0, 1fr); gap: clamp(48px, 6vw, 96px); align-items: center; }
  .vneu__liste { flex-direction: column; gap: 6px; overflow: visible; position: relative; padding-left: 16px; }
  
  .vneu__liste::before { content: ""; position: absolute; left: 6px; top: 8px; bottom: 8px; width: 120px; border: 1.5px solid rgba(210, 31, 88, .22); border-right: 0; border-radius: 100% 0 0 100% / 50% 0 0 50%; pointer-events: none; }
  .vneu__liste li { position: relative; }
  .vneu__liste li:nth-child(1), .vneu__liste li:nth-child(3) { margin-left: 34px; }
  .vneu__tab:hover { background: rgba(210, 31, 88, .05); }
  .vneu__buehne { display: block; overflow: visible; scroll-snap-type: none; }
  .vneu__zitat { display: none; }
  .vneu__zitat.on { display: block; animation: vneuIn .55s var(--ease) both; }
  .vneu__zitat--lang blockquote { column-count: 1; }
  html:has(main.fp-home) main > section.voices--neu { padding-block: clamp(64px, 8vh, 96px); min-height: 0; }
}
@keyframes vneuIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .vneu__zitat.on { animation: none; } }
@media (max-width: 860px) {
  .vneu__liste { margin-inline: -20px; padding-inline: 20px; }
  .vneu__tab .vneu__rolle { display: none; }
  .vneu__tab.on .vneu__name { font-size: 17px; }
  .vneu__tab.on .vneu__avatar { width: 56px; height: 56px; }
  .vneu__buehne { margin-inline: -20px; padding-inline: 20px; scroll-padding-inline: 20px; }
  .vneu__zitat { padding-right: 8px; }
  .vneu__zitat--kurz blockquote { font-size: 24px; }
}

.ueber-warum { position: relative; overflow: hidden; }
.ueber-warum > .wrap { position: relative; z-index: 5; }
.ueber-warum .voices__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; opacity: .38; }

html:has(main.fp-home) main > section.weg.chapter { padding-block: 0; }
@media (max-width: 860px) { .weg > .wrap { padding-top: 64px; padding-bottom: 56px; } }

.vneu__wrap { max-width: min(1500px, 94vw); }
.voices--neu .sec-head { max-width: none; }

.vneu__zitat blockquote, .vneu__zitat blockquote p, .vneu__zitat--kurz blockquote, .vneu__zitat--mittel blockquote, .vneu__zitat--lang blockquote {
  font-family: var(--fb); font-weight: 400; font-size: var(--t-body); line-height: 1.65; color: var(--ink-2); letter-spacing: 0;
}
.vneu__zitat blockquote p { margin: 0 0 12px; }
.vneu__zitat blockquote::before { font-size: 56px; line-height: .6; margin-bottom: 12px; }
.vneu__zitat .voices__big { display: inline; font-family: var(--fb); font-size: 1em; font-weight: 700; color: var(--accent); margin: 0; letter-spacing: 0; }

.vneu__kopf { display: none; align-items: center; gap: 12px; margin-bottom: 16px; }
.vneu__kopf .vneu__avatar { width: 56px; height: 56px; box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--accent); }
.vneu__kopf .vneu__name { font-size: 17px; color: var(--ink); white-space: normal; }

.vneu--wischer .vneu__rad { display: none; }
.vneu--wischer .vneu { display: block; }
.vneu--wischer .vneu__buehne { display: flex; overflow-x: auto; }
.vneu--wischer .vneu__zitat { background: #fff; border: 1px solid rgba(210, 31, 88, .16); border-radius: 18px; padding: 22px 20px; margin: 0; }
.vneu--wischer .vneu__zitat blockquote::before { display: none; }
.vneu--wischer .vneu__kopf { display: flex; }
.vneu--wischer .vneu__zitat figcaption { display: none; }
.vneu--wischer .hs__ui { margin-top: 18px; }
@media (max-width: 1024px) {
  .vneu__wrap { max-width: var(--wrap); }
  .vneu__liste { display: none; }
}

@media (min-width: 1025px) {
  html:has(main.fp-home) main > section.voices--neu { min-height: 100svh; display: flex; align-items: center; padding-block: clamp(72px, 8vh, 100px); }
  .voices--neu .sec-head { margin-bottom: clamp(24px, 3.5vh, 40px); }
  .vneu { display: grid; grid-template-columns: 380px minmax(0, 1fr); gap: clamp(64px, 8vw, 140px); align-items: center; }
  .vneu__rad {
    position: relative; height: 400px; overflow: hidden;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 78%, transparent 100%);
            mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 78%, transparent 100%);
  }
  .vneu__rad::before { content: ""; position: absolute; left: 0; top: 50%; width: 150px; height: 320px; transform: translateY(-50%); border: 1.5px solid rgba(210, 31, 88, .22); border-right: 0; border-radius: 100% 0 0 100% / 50% 0 0 50%; pointer-events: none; }
  .vneu__liste { position: absolute; left: 0; right: 0; top: 50%; display: flex; flex-direction: column; gap: 10px; padding: 0 0 0 8px; margin: 0; overflow: visible; transform: translateY(calc(-1 * var(--off, 0px))); transition: transform .6s var(--ease); }
  .vneu__liste li { transition: opacity .5s var(--ease), margin .5s var(--ease); margin-left: 44px; }
  .vneu__liste li.on { opacity: 1; margin-left: 0; }
  .vneu__liste li[data-dist="1"] { opacity: .55; margin-left: 30px; }
  .vneu__liste li[data-dist="2"] { opacity: .28; margin-left: 52px; }
  .vneu__liste li[data-dist="3"] { opacity: .14; margin-left: 60px; }
  .vneu__liste li:nth-child(1), .vneu__liste li:nth-child(3) { margin-left: 44px; }
  .vneu__liste li.on:nth-child(n) { margin-left: 0; }
  .vneu__liste li[data-dist="1"]:nth-child(n) { margin-left: 30px; }
  .vneu__tab { padding: 8px 10px; }
  .vneu__tab.on .vneu__avatar { width: 80px; height: 80px; }
  .vneu__avatar { width: 52px; height: 52px; }
  .vneu__buehne { display: grid; overflow: visible; scroll-snap-type: none; }
  .vneu__zitat { grid-area: 1 / 1; max-width: 62ch; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .55s var(--ease), transform .55s var(--ease), visibility 0s .55s; display: block; }
  .vneu__zitat.on { opacity: 1; visibility: visible; transform: none; transition: opacity .55s var(--ease), transform .55s var(--ease), visibility 0s; animation: none; }
}

@media (min-width: 1025px) {
  html:has(main.fp-home) main > section.voices--neu { display: flex; flex-direction: column; justify-content: center; align-items: stretch; }
  .voices--neu > .wrap { margin-block: auto; }
  .vneu__buehne { align-items: center; min-height: 400px; }
  .vneu__zitat { align-self: center; }
}
.vneu--wischer .hs__track { align-items: flex-start; }

.chapter--dark:has(+ .weg)::after { content: none; }
.chapter--dark + .weg::before {
  content: ""; position: absolute; left: 0; right: 0; top: -1px; height: clamp(26px, 4.4vw, 56px); z-index: 3; pointer-events: none;
  background: var(--slate);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H1440 V27 C1140 56 1015 56 720 33 C425 10 300 10 0 33 Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H1440 V27 C1140 56 1015 56 720 33 C425 10 300 10 0 33 Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}

.hero__lead-b { font-weight: 600; color: var(--ink-2); }

.person-card__lead { color: var(--accent) !important; }
.stimme, .stimme--frei { background: rgba(210, 31, 88, .05); }

.vneu__zitat figcaption { display: none; }

.sec-blob { background: radial-gradient(circle at 30% 30%, #d21f58, transparent 60%), radial-gradient(circle at 70% 70%, #ff9d2f, transparent 60%); }

.chapter.chapter--dark:has(+ .weg.chapter.chapter--light)::after { content: none; }

.hero.hero--bold .hero__inner .hero__lead .hero__lead-b { font-weight: 600; color: var(--ink-2); -webkit-text-fill-color: currentColor; }

@media (max-width: 860px) { .vneu__buehne, .vneu__liste { margin-inline: 0; padding-inline: 0; scroll-padding-inline: 0; } }

.btn__br { display: none; }
@media (max-width: 1024px) {
  .btn__br { display: inline; }
  .btn--lg, .btn--xl, .btn--block { white-space: normal; text-align: center; }
}

@media (max-width: 1024px) {
  .vneu--wischer .vneu__buehne { gap: 16px; overflow-y: hidden; transition: height .35s var(--ease); }
  .vneu--wischer .vneu__zitat { flex: 0 0 var(--hs-w, 86%); }
  .vneu--wischer .hs__ui { margin-top: 16px; }
}
@media (prefers-reduced-motion: reduce) { .vneu--wischer .vneu__buehne { transition: none; } }

@media (min-width: 1025px) and (max-width: 1439px) and (max-height: 900px) {
  html:has(main.fp-home) main > section.valueband { padding: 64px 0; }
  .vpcard { padding: 26px 30px 28px; }
}

.wanalyse__mock { max-width: 540px; }
@media (min-width: 861px) { .wanalyse .wanalyse__mock img { max-height: 66vh; } }
@media (max-width: 860px) { .wanalyse__mock { max-width: 360px; } }

.problem__loss .problem__loss-big { color: #fff; text-shadow: none; }

@media (max-width: 1024px) { .btn span:has(> .btn__br) { line-height: 1.25; } }

@media (min-width: 1180px) {
  .showcase__grid { grid-template-columns: minmax(540px, 34fr) minmax(0, 66fr); }
  .showcase__cta .btn { white-space: nowrap; }
}
@media (min-width: 861px) and (max-width: 1179px) {
  .showcase__grid { grid-template-columns: minmax(380px, 42fr) minmax(0, 58fr); }
  .showcase__cta .btn__br { display: inline; }
  .showcase__cta .btn { white-space: nowrap; }
  .showcase__cta .btn span { line-height: 1.25; }
}

@media (min-width: 861px) {
  .showcase--pin .showcase__stage { width: min(100%, calc((100svh - 190px) * 1.538)); justify-self: end; }
}

@media (min-width: 861px) and (max-height: 880px) {
  .showcase--pin .showcase__pin { padding-block: 72px 64px; box-sizing: border-box; }
  .showcase__copy .sec-head { margin-bottom: 0; }
  .showcase__copy .sec-kicker { margin-bottom: 10px; }
  .showcase__copy .sec-title { font-size: clamp(30px, 5.4vh, 48px); }
  .showcase__count { margin: 6px 0 8px; }
  .showcase__caption { min-height: 0; }
  .showcase__hint { margin: 12px 0 8px; }
  .showcase__sub { margin-top: 14px; line-height: 1.55; }
  .showcase__cta { margin-top: 18px; }
  .showcase__cta .sec-cta__note { margin-top: 8px; }

  html:has(main.fp-home) main > section.blog--rail2.sec--scrolly > .wrap { padding-top: 76px; padding-bottom: 16px; }
  .blog--rail2 .sec-head { margin-bottom: clamp(18px, 3vh, 36px); }
  .blog--rail2 .post__media { aspect-ratio: 16 / 8; }
  .blog--rail2 .sec-cta { margin-top: 12px; }

  html:has(main.fp-home) main > section.voices--neu { padding-block: 76px 40px; }
  .voices--neu .sec-head { margin-bottom: 18px; }
}

@media (min-width: 861px) and (max-height: 760px) {
  .showcase__copy .sec-title { font-size: clamp(28px, 5vh, 40px); }
  .showcase__caption h3 { font-size: 19px; }
  .showcase__caption p { font-size: 15px; }
  .showcase__sub { font-size: 15px; }
  .showcase__dots i { width: 26px; height: 26px; font-size: 11px; }

  .blog--rail2 .post__media { aspect-ratio: 16 / 6.5; }
  .blog--rail2 .post__desc { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

  .vneu__rad { height: min(400px, calc(100svh - 250px)); }
}

@media (min-width: 861px) and (max-height: 660px) {
  .showcase__hint, .showcase__sub { display: none; }
  .showcase__copy .sec-title { font-size: 28px; }
  .showcase__cta { margin-top: 14px; }

  .blog--rail2 .post__media { aspect-ratio: 16 / 5; }
  .blog--rail2 .post__desc { -webkit-line-clamp: 2; }
  .blog--rail2 .sec-cta { margin-top: 6px; }

  .hero.hero--bold { padding-top: 76px; }
}

@media (min-width: 1180px) { .showcase__copy > :not(.showcase__cta) { max-width: 445px; } }

@media (min-width: 1025px) and (max-height: 760px) {
  .vneu__zitat blockquote, .vneu__zitat blockquote p { font-size: 16px; line-height: 1.55; }
  .vneu__zitat blockquote p { margin-bottom: 8px; }
  .vneu__zitat blockquote::before { font-size: 44px; margin-bottom: 8px; }
}
@media (min-width: 1025px) and (max-width: 1279px) and (max-height: 760px) {
  .vneu { grid-template-columns: 320px minmax(0, 1fr); gap: 48px; }
  .vneu__zitat { max-width: none; }
}
@media (min-width: 861px) and (max-height: 660px) {
  .blog--rail2 .sec-title { font-size: 28px; }
  .blog--rail2 .post__cat { display: none; }
}

@media (min-width: 861px) { .showcase__copy .sec-head { margin-inline: 0; } }

@media (min-width: 861px) and (max-height: 660px) { html:has(main.fp-home) .blog--rail2 .sec-head .sec-title { font-size: 28px; } }

@media (min-width: 861px) and (max-height: 660px) {
  .hero.hero--bold .hero__inner .hero__title { font-size: min(9.6vw, 11vh); }
  main.fp-lp .hero.hero--bold .hero__inner .hero__title { font-size: min(8.4vw, 8.4vh); }
  main.ueber .hero.hero--bold .hero__inner .hero__title { font-size: min(5.2vw, 6.4vh); }
  .hero--bold .hero__lead { margin-top: 14px; }
  .hero--bold .hero__cta { margin-top: 20px; }
  .hero__proofwrap { padding-top: 18px; }
}
@media (min-width: 861px) and (max-height: 600px) { main.fp-lp .hero.hero--bold .hero__inner .hero__title { font-size: min(8.4vw, 7vh); } }

.hero.hero--bold { overflow: visible; overflow-x: clip; }

.hero--bold + .valueband { position: relative; isolation: isolate; background: transparent; overflow: visible; overflow-x: clip; }
.hero--bold + .valueband::before {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  left: 50%; top: 8%; bottom: 12%; width: min(78vw, 920px);
  border-radius: 50%; filter: blur(70px); opacity: .42;
  background:
    radial-gradient(ellipse at 30% 35%, #d21f58, transparent 62%),
    radial-gradient(ellipse at 70% 65%, #ff9d2f, transparent 62%);
  transform: translateX(-50%);
}
@media (max-width: 860px) {
  .hero--bold + .valueband::before { width: 120vw; top: 4%; bottom: 8%; opacity: .36; filter: blur(60px); }
}

.valueband + .problem2::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; z-index: 3; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(210, 31, 88, .6), transparent);
}

:root { --fl-o: clamp(106px, 12.07vh, 150px); --fl-u: clamp(72px, 9.66vh, 120px); --fl-welle: clamp(26px, 4.4vw, 56px); }
@media (max-width: 860px) { :root { --fl-o: 65px; --fl-u: 55px; } }

html body main.fp-home:not(.ueber) > section:is(#problem, #team, #pakete, #probe, #analyse, #verlust, #fragen) {
  padding-top: calc(var(--fl-o) - 10px); padding-bottom: var(--fl-u);
}
@media (min-width: 861px) and (max-width: 1024px) {
  html body main.fp-home:not(.ueber) > section#stimmen { padding-top: calc(var(--fl-o) - 10px); padding-bottom: var(--fl-u); }
}
@media (max-width: 860px) {
  html body main.fp-home:not(.ueber) > section:is(#stimmen, #blog) { padding-top: calc(var(--fl-o) - 10px); padding-bottom: var(--fl-u); }
  html body main.fp-home:not(.ueber) > section#analyse { padding-top: var(--fl-o); }
  html body main.fp-home:not(.ueber) > section#prozess > .wrap { padding-top: calc(var(--fl-o) - 10px); padding-bottom: var(--fl-u); }
  html body main.fp-home:not(.ueber) > section#galerie .showcase__pin { padding-top: calc(var(--fl-welle) + var(--fl-o) - 10px); padding-bottom: calc(var(--fl-welle) + var(--fl-u)); }
}

.ebook-cta { display: grid; grid-template-columns: 148px minmax(0, 1fr); gap: clamp(20px, 3vw, 34px); align-items: center; margin: 28px 0 32px; padding: clamp(22px, 3vw, 32px); background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); }
.ebook-cta__cover { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: pointer; }
.ebook-cta__cover img { display: block; width: 100%; height: auto; border-radius: 6px; transform: rotate(-2.2deg); box-shadow: 0 26px 50px -24px rgba(26,26,26,.5), 0 0 0 1px rgba(0,0,0,.06); transition: transform .4s var(--ease); }
.ebook-cta__cover:hover img { transform: rotate(0deg) translateY(-3px); }
.prose .ebook-cta__kicker { margin: 0 0 6px; font-size: 12px; line-height: 1.3; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.prose .ebook-cta__title { margin: 0 0 8px; font-family: var(--fd); font-weight: 700; font-size: clamp(21px, 2.6vw, 26px); line-height: 1.2; letter-spacing: -.02em; color: var(--ink); }
.prose .ebook-cta__text { margin: 0 0 18px; font-size: 15.5px; line-height: 1.6; }
@media (max-width: 600px) {
  .ebook-cta { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .ebook-cta__cover { width: 128px; }
  .ebook-cta .btn { width: 100%; }
}
.ebook-modal .modal__intro { margin-bottom: 20px; }
.ebook-modal .wform { margin-top: 6px; }
@media (max-width: 600px) { .ebook-modal .wform { padding: 24px 20px; } }
.nobr { white-space: nowrap; }

.fahero__mock .faphoto--cover { width: auto; height: auto; max-width: min(100%, 300px); border-radius: 6px; }
.faform__photo--cover { width: min(58%, 230px); border-radius: 6px; }

.dk-hero .ebook-dl { margin-top: clamp(22px, 3vw, 30px); }

.chapter--dark .pform__card .pform__value { color: var(--accent); font-weight: 700; }
.chapter--dark .pform__card .pform__foot { color: var(--ink-2); }

.pform__value--zeile { white-space: nowrap; font-size: clamp(10.5px, 3.05vw, 13px); padding-inline: 8px; }

#analyseModal .modal__card { width: min(600px, 100%); }
#analyseModal .wform { grid-template-columns: minmax(0, 1fr); padding: clamp(24px, 3vw, 30px); }

.vband__kicker { margin: 0; text-align: center; }
.vband__kicker .sec-kicker { justify-content: center; white-space: nowrap; margin-bottom: clamp(16px, 2.4vh, 26px); }
@media (max-width: 439px) { .vband__mituns { display: none; } }
@media (max-width: 359px) { .vband__kicker .sec-kicker { letter-spacing: .08em; } }

.footer .footer__claim--tp { margin-top: 10px; }
.footer .footer__claim--tp a { color: rgba(255, 255, 255, .92); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(255, 255, 255, .45); }
.footer .footer__claim--tp a:hover { color: var(--accent-2); text-decoration-color: currentColor; }
