/* =========================================================================
   Nuvario Glasklar · Design-System (Startseite und Unterseiten)
   Grundlage ui-ux-pro-max: Liquid Glass (Navigation, Dock),
   Glassmorphism (Karten), Soft UI Evolution (Schatten), Kinetic Typography
   (nur Hero-Headline), Motion mittel, Density niedrig bis mittel.
   Markenzeichen: der Nuvario-Punkt.
   ========================================================================= */

:root {
  color-scheme: light;
  --bg: #F6F8FC;
  --ink: #0E1320;
  --ink2: #4A5366;
  --ink3: #586174;
  --brand: #2a4bd7;
  --brand-hover: #2340be;
  --brand-deep: #1d359f;
  --brand-light: #4a68e6;
  --brand-soft: #8ea3f7;
  --brand-tint: #b3c2ff;
  --ice: #dfe7ff;
  --ink-rgb: 14,19,32;
  --bg-rgb: 246,248,252;
  --brand-rgb: 42,75,215;
  --brand-deep-rgb: 29,53,159;
  --brand-light-rgb: 74,104,230;
  --brand-soft-rgb: 142,163,247;
  --ice-rgb: 223,231,255;
  --shimmer: #9db0ff;
  --final-grad: linear-gradient(135deg, #1d359f 0%, #2a4bd7 55%, #4a68e6 100%);
  --on-brand: #fff;
  --glass: rgba(255,255,255,.55);
  --glass-strong: rgba(255,255,255,.74);
  --glass-line: rgba(255,255,255,.72);
  --shadow-glass: inset 0 1px 0 rgba(255,255,255,.9), 0 1px 2px rgba(var(--ink-rgb),.04), 0 18px 48px rgba(var(--brand-deep-rgb),.08);
  --shadow-lift: inset 0 1px 0 rgba(255,255,255,.95), 0 2px 4px rgba(var(--ink-rgb),.05), 0 28px 64px rgba(var(--brand-deep-rgb),.15);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --ease: cubic-bezier(0.2, 0, 0, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --font: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --mono: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --gutter: 24px;
  --pv: 36px;            /* Hoehe Vorschau-Hinweis, 0 wenn geschlossen */
  --safe-b: env(safe-area-inset-bottom, 0px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 104px; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html.is-locked, html.is-locked body { overflow: hidden; }
img { max-width: 100%; display: block; }
:where(img[width][height]) { height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; }
:where(a, button, input, textarea, [tabindex]):focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 12px; }
.btn:focus-visible, .dock-dot:focus-visible { border-radius: 999px; }

.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -120px; z-index: 1000;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 12px;
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: 12px; }

/* ---------- Vorschau-Hinweis (vor Freigabe entfernen) ---------- */
.preview-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 120; height: var(--pv);
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .06em; color: var(--ink2);
  background: rgba(255,255,255,.72);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(var(--ink-rgb),.06);
}
.preview-bar .pdot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
.preview-close {
  position: relative; width: 28px; height: 28px; border-radius: 50%; border: 0; cursor: pointer;
  background: transparent; color: var(--ink2); display: grid; place-items: center;
}
.preview-close::before { content: ''; position: absolute; inset: -8px; }
.preview-close:hover { background: rgba(var(--ink-rgb),.06); color: var(--ink); }
.preview-close svg { width: 14px; height: 14px; }
html:not(.js) .preview-close { display: none; }

/* ---------- Leuchtender Hintergrund (nur Blautoene) ---------- */
.bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; will-change: transform; }
.b1 { width: 900px; height: 900px; left: -260px; top: -320px;
      background: radial-gradient(circle, rgba(var(--brand-soft-rgb),.55) 0%, rgba(var(--brand-soft-rgb),0) 65%);
      animation: drift1 26s ease-in-out infinite alternate; }
.b2 { width: 820px; height: 820px; right: -240px; top: 10vh;
      background: radial-gradient(circle, rgba(var(--brand-rgb),.22) 0%, rgba(var(--brand-rgb),0) 65%);
      animation: drift2 30s ease-in-out infinite alternate; }
.b3 { width: 760px; height: 760px; left: 30vw; bottom: -380px;
      background: radial-gradient(circle, rgba(var(--ice-rgb),.95) 0%, rgba(var(--ice-rgb),0) 65%);
      animation: drift3 24s ease-in-out infinite alternate; }
.b4 { width: 520px; height: 520px; left: 8vw; top: 55vh;
      background: radial-gradient(circle, rgba(var(--brand-light-rgb),.16) 0%, rgba(var(--brand-light-rgb),0) 65%);
      animation: drift2 28s ease-in-out infinite alternate-reverse; }
@keyframes drift1 { to { transform: translate(120px, 80px) scale(1.08); } }
@keyframes drift2 { to { transform: translate(-140px, 60px) scale(.94); } }
@keyframes drift3 { to { transform: translate(-90px, -70px) scale(1.06); } }

/* ---------- Glasmaterial ---------- */
.glass {
  position: relative;
  background: var(--glass);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid var(--glass-line);
  box-shadow: var(--shadow-glass);
  border-radius: var(--radius-lg);
  isolation: isolate;
}
.glass::before {  /* Lichtkante */
  content: ''; position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.15) 38%, rgba(var(--brand-rgb),.16) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none; z-index: 1;
}
.glass::after {   /* Lichtfleck folgt dem Zeiger */
  content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: -1;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(255,255,255,.8), rgba(var(--ice-rgb),.28) 40%, transparent 70%);
  opacity: 0; transition: opacity .35s var(--ease);
}
.glass.is-lit::after { opacity: 1; }

@media (prefers-reduced-transparency: reduce) {
  .glass, .preview-bar, .dock-shell, .modal-box { background: rgba(255,255,255,.94) !important; -webkit-backdrop-filter: none !important; backdrop-filter: none !important; }
}

/* ---------- Layout ---------- */
.container { max-width: 1200px; margin: 0 auto; padding-inline: var(--gutter); }
section { padding-block: 140px; position: relative; }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink2);
}
/* Der Nuvario-Punkt: Signet, Aufzaehlung, Status, Abschnittsmarker */
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(var(--brand-rgb),.12); flex-shrink: 0; display: inline-block; }
.kicker .dot { animation: dotPulse 3.2s var(--ease) infinite; }
@keyframes dotPulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(var(--brand-rgb),.12); } 50% { box-shadow: 0 0 0 7px rgba(var(--brand-rgb),.05); } }
.kicker-pill { padding: 8px 16px 8px 14px; border-radius: 999px; }
h2 {
  font-weight: 600; letter-spacing: -0.04em; line-height: 1.02;
  font-size: clamp(36px, 5.2vw, 68px);
  margin: 20px 0 22px; text-wrap: balance;
}
h2 .soft { color: var(--brand); }
.lead { font-size: clamp(17px, 1.4vw, 19px); color: var(--ink2); max-width: 640px; text-wrap: pretty; }
.sec-head { display: grid; margin-bottom: 64px; }
.sec-head h2 { max-width: 1000px; }
.sec-head .lead { justify-self: end; max-width: 540px; }
.sec-head.center { text-align: center; justify-items: center; }
.sec-head.center .lead { justify-self: center; }
.sec-head.center h2 .soft { display: block; }
.prod h3.logo-h { margin-bottom: 26px; }

/* ---------- Buttons ---------- */
.btn {
  --tx: 0px; --ty: 0px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 24px; border-radius: 999px;
  font: 500 15.5px/1 var(--font); text-decoration: none; cursor: pointer; border: 0;
  transform: translate(var(--tx), var(--ty));
  transition: transform .35s var(--ease-out), box-shadow .2s var(--ease), background-color .2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-primary {
  background: var(--brand); color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 8px 24px rgba(var(--brand-rgb),.28);
}
.btn-primary:hover { background: var(--brand-hover); box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 14px 32px rgba(var(--brand-rgb),.34); }
.btn-glass { color: var(--ink); background: var(--glass-strong); }
.btn-glass:hover { box-shadow: var(--shadow-lift); }
.btn-sm { min-height: 44px; padding: 0 20px; font-size: 14.5px; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px;
  color: var(--brand); font-weight: 500; text-decoration: none;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.link-arrow:hover svg { transform: translateX(3px); }

/* ---------- Navigation ---------- */
.nav-wrap { position: fixed; top: calc(var(--pv) + 12px); left: 0; right: 0; z-index: 100; padding-inline: 16px; transition: top .35s var(--ease); }
nav.nav {
  max-width: 1080px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 8px 8px 8px 22px; border-radius: 999px;
  background: rgba(255,255,255,.62);
  transition: padding .35s var(--ease), background-color .35s var(--ease), box-shadow .35s var(--ease);
}
.nav-wrap.is-compact { top: calc(var(--pv) + 8px); }
.nav-wrap.is-compact nav.nav { padding-block: 4px; background: rgba(255,255,255,.8); box-shadow: var(--shadow-lift); }
.nav-progress { position: absolute; left: 28px; right: 28px; bottom: 0; height: 2px; border-radius: 2px; overflow: hidden; pointer-events: none; z-index: 2; }
.nav-progress i { display: block; height: 100%; background: linear-gradient(90deg, var(--brand-deep), var(--brand-light)); transform-origin: 0 50%; transform: scaleX(var(--sp, 0)); }
.wordmark {
  font-family: var(--serif); font-size: 25px; letter-spacing: -0.02em; text-decoration: none; color: var(--ink);
  line-height: 1; display: inline-flex; align-items: center; min-height: 44px; position: relative; z-index: 3;
}
.wordmark i { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); display: inline-block; margin-left: 3px; margin-top: 11px; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 4px; }
.nav-links a:not(.btn) {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 14px; border-radius: 999px;
  color: var(--ink2); text-decoration: none; font-size: 14.5px; font-weight: 500;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.nav-links a:not(.btn):hover, .nav-links a[aria-current="true"] { color: var(--ink); background: rgba(255,255,255,.75); }
.nav-links .btn { margin-left: 6px; }
.menu-btn {
  display: none; position: relative; z-index: 3; width: 44px; height: 44px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.85); color: var(--ink); align-items: center; justify-content: center;
}
.menu-btn span { position: absolute; left: 13px; right: 13px; height: 1.8px; border-radius: 2px; background: currentColor; transition: transform .35s var(--ease); }
.menu-btn span:first-child { transform: translateY(-4px); }
.menu-btn span:last-child { transform: translateY(4px); }
.menu-btn[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.menu-btn[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }
.nav-menu-foot { display: none; }
/* ---------- Hero ---------- */
.hero { padding-top: calc(var(--pv) + 150px); padding-bottom: 150px; text-align: center; overflow-x: clip; }
.hero h1 {
  font-weight: 600; letter-spacing: -0.045em; line-height: .98;
  font-size: clamp(44px, 6.2vw, 90px);
  margin: 28px auto; max-width: 1180px; text-wrap: balance;
}
.hero h1 .line { display: block; }
.hero h1 .w { display: inline-block; }
.hero h1 .grad {
  background: linear-gradient(100deg, var(--brand-deep) 0%, var(--brand) 38%, var(--shimmer) 50%, var(--brand) 62%, var(--brand-light) 100%);
  background-size: 260% 100%; background-position: 100% 0;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--brand);
  padding-bottom: .08em;
}
html.js .hero h1.ready .grad { animation: shimmer 1.8s var(--ease) 1.05s 1 both; }
@keyframes shimmer { from { background-position: 100% 0; } to { background-position: 0% 0; } }
.hero .lead { margin: 0 auto 40px; text-align: center; max-width: 660px; }
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Produktbuehne */
.stage { --p: 0; position: relative; max-width: 1120px; margin: 88px auto 0; padding-inline: 40px; }
.stage-inner {
  position: relative;
}
.plate {
  border-radius: var(--radius-xl); padding: 14px;
  background: rgba(255,255,255,.45);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 2px 6px rgba(var(--ink-rgb),.04), 0 40px 100px rgba(var(--brand-deep-rgb),.18);
  transform: translateY(calc(var(--p) * -28px));
}
.plate-bar { display: flex; align-items: center; gap: 7px; padding: 6px 10px 12px; }
.plate-bar i { width: 10px; height: 10px; border-radius: 50%; background: rgba(var(--ink-rgb),.14); display: block; }
.plate-bar span { margin-inline: auto; font-family: var(--mono); font-size: 12px; color: var(--ink3); padding: 4px 14px; border-radius: 999px; background: rgba(255,255,255,.75); }
.plate-screen { border-radius: 20px; overflow: hidden; border: 1px solid rgba(var(--ink-rgb),.06); background: #fff; }
.plate-screen img { width: 100%; }

.phone {
  border-radius: 44px; padding: 5px;
  background: linear-gradient(145deg, #eef0f4 0%, #b6bcc7 30%, #dde1e7 55%, #969eab 80%, #cfd4db 100%);
  box-shadow: 0 1px 0 rgba(255,255,255,.8) inset, 0 30px 70px rgba(var(--ink-rgb),.22), 0 8px 18px rgba(var(--ink-rgb),.10);
}
.phone .scr { border-radius: 39px; overflow: hidden; background: #0E1320; padding: 3px; }
.phone img { border-radius: 36px; width: 100%; }
.fl { animation: float 7s ease-in-out infinite alternate; will-change: transform; }
.fl.alt { animation-duration: 8s; animation-delay: -3s; }
@keyframes float { from { transform: translateY(0); } to { transform: translateY(-6px); } }
.is-offscreen .fl, .is-offscreen .blob { animation-play-state: paused; }
.stage .ph { position: absolute; width: clamp(110px, 19%, 222px); bottom: -48px; z-index: 3; }
.stage .ph-left { left: 0; transform: translateX(calc(var(--p) * -22px)) translateY(calc(var(--p) * -10px)); }
.stage .ph-right { right: 0; transform: translateX(calc(var(--p) * 22px)) translateY(calc(var(--p) * -10px)); }
/* Farbpunkte der Produkte (Tags) */
.c-sports { background: #176347; } .c-club { background: #E8591A; } .c-camp { background: #D8912A; } .c-hvs { background: var(--brand); }
/* ---------- Drei Welten ---------- */
.worlds { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tilt {
  --rx: 0deg; --ry: 0deg; --lift: 0px;
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(var(--lift));
  transition: transform .5s var(--ease-out), box-shadow .25s var(--ease);
}
.tilt:hover { --lift: -4px; box-shadow: var(--shadow-lift); }
.tilt.is-tilting { transition: transform .12s linear, box-shadow .25s var(--ease); }
.world { padding: 36px 32px 28px; display: flex; flex-direction: column; min-height: 330px; }
.world .num { font-family: var(--mono); font-size: 13px; color: var(--brand); letter-spacing: .08em; display: inline-flex; align-items: center; gap: 10px; }
.world h3 { font-size: 28px; font-weight: 600; letter-spacing: -0.03em; line-height: 1.1; margin: 44px 0 12px; text-wrap: balance; }
.world p { color: var(--ink2); font-size: 16px; }
.world .tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 8px; }
.tag { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; padding: 5px 12px; border-radius: 999px; background: rgba(255,255,255,.78); color: var(--ink); }
.tag i { width: 7px; height: 7px; border-radius: 50%; display: block; }
.world .link-arrow { margin-top: auto; }

/* Bewegte Zahlen */
.stats { margin-top: 20px; padding: 10px; border-radius: 32px; display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 26px 26px 24px; position: relative; }
.stat + .stat::before { content: ''; position: absolute; left: 0; top: 22px; bottom: 22px; width: 1px; background: linear-gradient(180deg, transparent, rgba(var(--ink-rgb),.1), transparent); }
.stat .stat-num { margin: 0; display: flex; align-items: baseline; gap: 6px; font-weight: 600; letter-spacing: -0.05em; line-height: 1; font-size: clamp(46px, 5vw, 64px); color: var(--ink); font-variant-numeric: tabular-nums; }
.stat-num .unit { font-size: 17px; letter-spacing: -0.01em; color: var(--brand); font-weight: 500; }
.stat p:not(.stat-num) { margin-top: 10px; font-size: 15px; color: var(--ink2); line-height: 1.45; }

/* ---------- Leistungen ---------- */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service { padding: 32px; }
.icon {
  width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(160deg, #fff, var(--ice)); color: var(--brand);
  box-shadow: inset 0 1px 0 #fff, 0 6px 16px rgba(var(--brand-rgb),.14);
}
.icon svg { width: 24px; height: 24px; }
.service h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin: 28px 0 10px; }
.service p { color: var(--ink2); font-size: 16px; }
.cta-bar { margin-top: 20px; padding: 14px 14px 14px 32px; border-radius: 999px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cta-bar strong { font-weight: 600; font-size: 18px; letter-spacing: -0.01em; }
.cta-bar .note { font-family: var(--mono); font-size: 12.5px; color: var(--ink2); letter-spacing: .02em; }
.cta-bar .txt { display: flex; flex-direction: column; gap: 2px; }

/* ---------- Referenz ---------- */
.ref-panel { --fp: 1; padding: 64px 56px 48px; border-radius: 40px; }
.flow { list-style: none; display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; position: relative; }
.flow-track { --tw: 0px; position: absolute; left: 8.33%; right: 8.33%; top: 35px; height: 2px; border-radius: 2px; background: rgba(var(--brand-rgb),.14); }
.flow-fill { position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(90deg, var(--brand-deep), var(--brand) 50%, var(--brand-light)); box-shadow: 0 0 18px rgba(var(--brand-rgb),.45); transform-origin: 0 50%; transform: scaleX(var(--fp)); }
.flow-spark { position: absolute; left: -7px; top: -6px; width: 14px; height: 14px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 3px var(--brand), 0 0 22px 6px rgba(var(--brand-rgb),.55); transform: translateX(calc(var(--fp) * var(--tw))); opacity: var(--spark-o, 0); transition: opacity .3s var(--ease); }
.station { text-align: center; position: relative; }
.node {
  width: 72px; height: 72px; margin: 0 auto 18px; border-radius: 50%;
  display: grid; place-items: center; position: relative; z-index: 2;
  font-family: var(--mono); font-weight: 500; font-size: 16px; color: var(--ink3);
  background: rgba(255,255,255,.82); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: inset 0 1px 0 #fff, 0 0 0 6px rgba(var(--brand-rgb),.04), 0 10px 24px rgba(var(--brand-rgb),.1);
  transition: color .5s var(--ease), box-shadow .5s var(--ease), transform .5s var(--ease-out), background-color .5s var(--ease);
}
.station.is-lit .node { color: var(--brand); transform: scale(1.04); box-shadow: inset 0 1px 0 #fff, 0 0 0 6px rgba(var(--brand-rgb),.1), 0 0 0 1.5px rgba(var(--brand-rgb),.5), 0 14px 32px rgba(var(--brand-rgb),.26); }
.station b { display: block; font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.station .st-tool { display: block; font-size: 14px; color: var(--ink2); line-height: 1.45; margin-top: 4px; }
.loop { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 40px; color: var(--ink2); font-size: 15.5px; text-align: center; }
.loop svg { width: 20px; height: 20px; color: var(--brand); flex-shrink: 0; }
.loop b { color: var(--ink); font-weight: 600; }
.ref-high { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; list-style: none; }
.ref-high li { padding: 24px; border-radius: 20px; background: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.85); }
.ref-high b { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.ref-high span { font-size: 15px; color: var(--ink2); }
.ref-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.ref-foot .note { font-family: var(--mono); font-size: 12.5px; color: var(--ink2); }

/* ---------- Produkte ---------- */
.stack { list-style: none; display: grid; gap: 24px; }
.saas-head { margin: 116px 0 64px; }
.prod { padding: 64px; border-radius: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.prod.rev .prod-media { order: -1; }
.status {
  display: inline-flex; align-items: center; gap: 10px; min-height: 34px; padding: 0 14px 0 12px; border-radius: 999px;
  background: rgba(255,255,255,.82); font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink2);
}
.status i { width: 8px; height: 8px; border-radius: 50%; display: block; }
.status .live { background: #14633a; animation: livePulse 2.4s ease-in-out infinite; }
.status .soon { background: #C47F1F; box-shadow: 0 0 0 4px rgba(216,145,42,.18); }
.status .saas { background: #176347; box-shadow: 0 0 0 4px rgba(23,99,71,.14); }
@keyframes livePulse { 0%, 100% { box-shadow: 0 0 0 3px rgba(20,99,58,.16); } 50% { box-shadow: 0 0 0 7px rgba(20,99,58,.04); } }
.prod h3 { font-size: clamp(34px, 4vw, 54px); font-weight: 600; letter-spacing: -0.04em; line-height: 1; margin: 22px 0 10px; }
.prod h3 img { height: clamp(34px, 3.4vw, 46px); width: auto; }
.prod .sub { font-size: 18px; color: var(--ink2); margin-bottom: 28px; }
.prod .sub.m-only { display: none; }
.feats { list-style: none; display: grid; gap: 12px; margin-bottom: 36px; }
.feats li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; color: var(--ink); line-height: 1.5; }
.feats li::before { content: ''; width: 7px; height: 7px; margin-top: 9px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(var(--brand-rgb),.1); flex-shrink: 0; }
.prod-ctas { display: flex; gap: 10px; flex-wrap: wrap; }
.pair { display: flex; justify-content: center; align-items: flex-end; padding: 12px 0; }
.pair .phone-slot { width: min(250px, 50%); }
.pair .phone-slot:first-child { transform: translateY(24px) rotate(-3deg); z-index: 1; margin-right: -36px; }
.pair .phone-slot:last-child { transform: translateY(-16px) rotate(2deg); z-index: 2; }
.browser { border-radius: 22px; padding: 10px; background: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.85); box-shadow: 0 30px 70px rgba(var(--ink-rgb),.14); }
.browser .bar { display: flex; gap: 6px; padding: 4px 6px 10px; }
.browser .bar i { width: 9px; height: 9px; border-radius: 50%; background: rgba(var(--ink-rgb),.14); display: block; }
.browser .inner { border-radius: 14px; overflow: hidden; border: 1px solid rgba(var(--ink-rgb),.06); }
.caption { font-family: var(--mono); font-size: 12px; color: var(--ink3); margin-top: 14px; text-align: center; letter-spacing: .02em; }
.stack-dots { display: none; }
.stack-shade { display: none; }

/* ---------- Warum / Ueber uns ---------- */
.whys { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why { padding: 30px 28px; }
.why h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; margin: 26px 0 8px; line-height: 1.2; }
.why p { font-size: 15.5px; color: var(--ink2); }
.person { margin-top: 20px; padding: 16px; border-radius: 36px; display: grid; grid-template-columns: 320px 1fr; gap: 48px; align-items: center; }
.person picture, .person img { border-radius: 24px; }
.person img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; }
.person .txt { padding: 24px 32px 24px 0; }
.person h3 { font-size: clamp(30px, 3.4vw, 44px); font-weight: 600; letter-spacing: -0.035em; line-height: 1.05; margin: 16px 0 6px; }
.person .role { color: var(--brand); font-weight: 500; margin-bottom: 18px; }
.person p { color: var(--ink2); max-width: 520px; margin-bottom: 24px; }

/* ---------- Abschluss ---------- */
.final {
  position: relative; overflow: hidden; border-radius: 44px; padding: 104px 56px; text-align: center; color: #fff;
  background: var(--final-grad);
  box-shadow: 0 40px 100px rgba(var(--brand-deep-rgb),.30); isolation: isolate;
}
.final::before {
  content: ''; position: absolute; inset: -20%; z-index: -1;
  background:
    radial-gradient(40% 36% at 50% 0%, rgba(255,255,255,.3), transparent 70%),
    radial-gradient(34% 40% at 8% 100%, rgba(var(--brand-deep-rgb),.6), transparent 70%),
    radial-gradient(30% 34% at 92% 70%, rgba(var(--brand-soft-rgb),.45), transparent 70%);
  animation: finalGlow 18s ease-in-out infinite alternate;
}
@keyframes finalGlow { to { transform: translate3d(4%, 3%, 0) rotate(4deg); } }
.final::after { content: ''; position: absolute; inset: 0; border-radius: inherit; border: 1px solid rgba(255,255,255,.22); pointer-events: none; }
.final .kicker { color: rgba(255,255,255,.9); }
.final .kicker .dot { background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.2); animation: none; }
.final h2 { color: #fff; max-width: 820px; margin-inline: auto; }
.final p { color: rgba(255,255,255,.94); font-size: 19px; max-width: 540px; margin: 0 auto 40px; }
.btn-white { background: #fff; color: var(--brand-deep); box-shadow: 0 10px 30px rgba(var(--ink-rgb),.2); }
.btn-white:hover { box-shadow: 0 16px 40px rgba(var(--ink-rgb),.26); }
.btn-outline-w { color: #fff; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.45); }
.btn-outline-w:hover { background: rgba(255,255,255,.2); }
.final .orbit { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: #fff; box-shadow: 0 0 20px 6px rgba(255,255,255,.45); left: 50%; top: 50%; z-index: -1; opacity: .75; animation: orbit 22s linear infinite; }
.final .orbit.o2 { width: 6px; height: 6px; opacity: .5; animation-duration: 30s; animation-direction: reverse; }
@keyframes orbit { from { transform: rotate(0deg) translateX(min(42vw, 520px)) rotate(0deg); } to { transform: rotate(360deg) translateX(min(42vw, 520px)) rotate(-360deg); } }

/* ---------- Footer ---------- */
footer { padding: 56px 0 72px; }
.foot { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 14px 14px 14px 28px; border-radius: 999px; }
.foot p { color: var(--ink2); font-size: 14px; }
.foot ul { list-style: none; display: flex; gap: 4px; flex-wrap: wrap; }
.foot ul a { display: inline-flex; align-items: center; min-height: 44px; padding: 0 14px; border-radius: 999px; color: var(--ink2); text-decoration: none; font-size: 14px; }
.foot ul a:hover { color: var(--ink); background: rgba(255,255,255,.75); }

/* ---------- Kontakt-Dialog ---------- */
.modal { position: fixed; inset: 0; z-index: 400; display: flex; align-items: center; justify-content: center; padding: 20px; background: rgba(var(--ink-rgb),.38); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility 0s linear .3s; }
.modal.open { opacity: 1; visibility: visible; transition: opacity .3s var(--ease); }
.modal-box {
  position: relative; width: 100%; max-width: 560px; max-height: calc(100dvh - 40px);
  overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; scrollbar-width: thin;
  padding: 38px 40px 34px; border-radius: 32px;
  background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.9);
  box-shadow: inset 0 1px 0 #fff, 0 40px 100px rgba(var(--ink-rgb),.28);
  -webkit-backdrop-filter: blur(28px) saturate(160%); backdrop-filter: blur(28px) saturate(160%);
  transform: translateY(16px) scale(.98); transition: transform .45s var(--ease-out);
}
.modal.open .modal-box { transform: none; }
.modal-close { position: absolute; top: 16px; right: 16px; width: 44px; height: 44px; border-radius: 50%; border: 0; cursor: pointer; background: rgba(var(--ink-rgb),.06); display: grid; place-items: center; z-index: 2; }
.modal-close:hover { background: rgba(var(--ink-rgb),.1); }
.modal-close svg { width: 16px; height: 16px; }
.modal h2 { font-size: 30px; margin: 0 0 8px; padding-right: 48px; }
.modal-box > p { color: var(--ink2); font-size: 15.5px; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.form-group { margin-bottom: 14px; min-width: 0; }
.form-group label { display: block; font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink2); margin-bottom: 6px; }
.form-group input, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid rgba(var(--ink-rgb),.12); border-radius: 16px; font: 16px/1.4 var(--font); color: var(--ink); background: rgba(255,255,255,.85); transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(var(--brand-rgb),.14); }
.form-group textarea { resize: vertical; min-height: 104px; max-height: 40dvh; }
.hp-field { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0; }
.form-hint-privacy { font-size: 13px; line-height: 1.5; color: var(--ink2); margin: 4px 0 20px; }
.form-hint-privacy a { color: var(--brand); }
.submit-btn { width: 100%; }
.form-msg { margin-top: 14px; padding: 12px 16px; border-radius: 14px; font-size: 14.5px; display: none; }
.form-msg.is-info { display: block; background: rgba(var(--brand-rgb),.08); color: var(--brand-deep); }

/* ---------- Markenzeichen Mobil: Punkt-Dock ---------- */
.dock { display: none; }
/* ---------- Einblenden ---------- */
html.js .rv { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease), transform .65s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); }
html.js .rv.in { opacity: 1; transform: none; }
html.js .rv.tilt.in { transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(var(--lift)); transition: opacity .65s var(--ease) calc(var(--i, 0) * 80ms), transform .5s var(--ease-out), box-shadow .25s var(--ease); }
html.js .rv.tilt.in.is-tilting { transition: opacity .65s var(--ease), transform .12s linear, box-shadow .25s var(--ease); }
html.js .hero h1 .w { opacity: 0; transform: translateY(.34em); filter: blur(10px); transition: opacity .65s var(--ease), transform .65s var(--ease-out), filter .65s var(--ease); transition-delay: calc(var(--i, 0) * 65ms + 80ms); }
html.js .hero h1.ready .w { opacity: 1; transform: none; filter: blur(0); }
html.js .hero .fade { opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease) .6s, transform .6s var(--ease) .6s; }
html.js .hero.ready .fade { opacity: 1; transform: none; }
html.js .stage { opacity: 0; transform: translateY(44px); transition: opacity .9s var(--ease) .75s, transform .9s var(--ease-out) .75s; }
html.js .hero.ready .stage { opacity: 1; transform: none; }

/* ---------- Reduzierte Bewegung: Endzustaende, keine Dauer-Animation ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .blob, .fl, .kicker .dot, .status .live, .final::before, .final .orbit { animation: none !important; }
  .final .orbit { display: none; }
  html.js .rv, html.js .hero h1 .w, html.js .hero .fade, html.js .stage { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
  .plate, .stage .ph, .stage-inner { transform: none !important; }
  .hero h1 .grad { animation: none !important; background-position: 0% 0 !important; }  /* = Endzustand des Schimmers, ohne hellen Glanzpunkt */
  .glass::after { display: none; }
  .tilt, .btn { transform: none !important; }
  .flow-spark { display: none; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* ---------- Responsiv ---------- */
@media (max-width: 1080px) {
  .whys { grid-template-columns: repeat(2, 1fr); }
  .prod { padding: 48px; gap: 40px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3)::before { display: none; }
}

@media (max-width: 899px) {
  :root { --pv: 36px; }
  html { scroll-padding-top: 92px; }
  /* Mobil-Menue als Vollbild-Glaspanel */
  .menu-btn { display: inline-flex; }
  .nav-links {
    position: fixed; inset: 0; z-index: 1; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
    padding: calc(var(--pv) + 112px) 28px calc(32px + var(--safe-b));
    background: rgba(var(--bg-rgb),.86);
    -webkit-backdrop-filter: blur(30px) saturate(170%); backdrop-filter: blur(30px) saturate(170%);
    opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility 0s linear .35s;
  }
  .nav-links.open { opacity: 1; visibility: visible; transition: opacity .35s var(--ease); }
  .nav-links li { opacity: 0; transform: translateY(18px); transition: opacity .5s var(--ease), transform .5s var(--ease-out); }
  .nav-links.open li { opacity: 1; transform: none; transition-delay: calc(var(--i, 0) * 60ms + 80ms); }
  .nav-links a:not(.btn) { display: flex; width: 100%; min-height: 64px; padding: 0 4px; font-size: 32px; font-weight: 600; letter-spacing: -0.03em; color: var(--ink); border-radius: 16px; border-bottom: 1px solid rgba(var(--ink-rgb),.07); }
  .nav-links a:not(.btn)::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--brand); margin-right: 16px; opacity: 0; transform: scale(.4); transition: opacity .3s var(--ease), transform .3s var(--ease); }
  .nav-links a:not(.btn):hover::before, .nav-links a:not(.btn):focus-visible::before { opacity: 1; transform: none; }
  .nav-links a:not(.btn):hover { background: transparent; }
  .nav-links .btn { display: flex; width: 100%; margin: 28px 0 0; min-height: 56px; font-size: 17px; }
  .nav-menu-foot { display: block; margin-top: auto; font-family: var(--mono); font-size: 12px; letter-spacing: .08em; color: var(--ink3); text-transform: uppercase; }
  nav.nav { position: relative; }
  .nav-wrap.menu-open nav.nav { background: transparent; box-shadow: none; border-color: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; }
  .nav-wrap.menu-open nav.nav::before { opacity: 0; }
  .nav-wrap.menu-open .nav-progress { opacity: 0; }

  section { padding-block: 104px; }
  .sec-head { margin-bottom: 44px; }
  .sec-head .lead { justify-self: start; }
  .worlds, .services { grid-template-columns: 1fr; }
  .world { min-height: 0; }
  .world h3 { margin-top: 28px; }
  .ref-panel { padding: 44px 28px 32px; }
  .flow { grid-template-columns: 1fr; gap: 0; }
  .flow-track { left: 35px; right: auto; top: 36px; bottom: 36px; width: 2px; height: auto; }
  .flow-fill { transform-origin: 50% 0; transform: scaleY(var(--fp)); background: linear-gradient(180deg, var(--brand-deep), var(--brand-light)); }
  .flow-spark { left: -6px; top: -7px; transform: translateY(calc(var(--fp) * var(--tw))); }
  .station { display: grid; grid-template-columns: 72px 1fr; gap: 18px; align-items: center; text-align: left; padding-bottom: 18px; }
  .station:last-child { padding-bottom: 0; }
  .node { margin: 0; }
  .loop { justify-content: flex-start; text-align: left; }
  .ref-high { grid-template-columns: 1fr; }
  .person { grid-template-columns: 1fr; gap: 8px; }
  .person img { aspect-ratio: 4 / 3; object-position: 50% 28%; }
  .person .txt { padding: 16px 16px 20px; }

  /* Glas-Stapel: Produkte als wischbare Karten */
  .saas-head { display: none; }
  .stack-wrap { margin-inline: calc(var(--gutter) * -1); }
  .stack {
    display: flex; gap: 12px; overflow-x: auto; overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter);
    padding: 12px var(--gutter) 28px; scrollbar-width: none;
  }
  .stack::-webkit-scrollbar { display: none; }
  .stack:focus-visible { outline-offset: -4px; border-radius: 24px; }
  .stack-item { flex: 0 0 min(86%, 560px); scroll-snap-align: center; display: flex; }
  /* Gleich hohe Karten: Knoepfe sitzen immer unten, kein leerer Rest */
  .stack-item > .prod { grid-template-rows: auto 1fr; }
  .stack-item > .prod > div:not(.prod-media) { display: flex; flex-direction: column; }
  .stack-item .prod-ctas { margin-top: auto; }
  .stack-item > .prod {
    --d: 0; width: 100%;
    transform: scale(calc(1 - var(--d) * .07)) translateY(calc(var(--d) * 16px));
    transform-origin: 50% 0;
  }
  .stack-item > .prod::after { opacity: 0; }
  .stack-shade { display: block; position: absolute; inset: 0; border-radius: inherit; background: rgba(var(--bg-rgb),.9); opacity: calc(var(--d) * .55); pointer-events: none; z-index: 5; }
  .prod, .prod.rev { grid-template-columns: 1fr; padding: 22px 22px 26px; gap: 20px; border-radius: 30px; align-content: start; align-items: start; }
  .prod-media, .prod.rev .prod-media { order: -1; }
  .prod h3 { font-size: 34px; margin: 16px 0 6px; }
  .prod .sub { font-size: 16px; margin-bottom: 18px; }
  .prod .sub.m-only { display: block; }
  .feats { gap: 10px; margin-bottom: 24px; }
  .feats li { font-size: 15.5px; }
  .pair { padding: 10px 0 18px; border-radius: 22px; background: linear-gradient(180deg, rgba(var(--ice-rgb),.6), rgba(255,255,255,0)); }
  .pair .phone-slot { width: 44%; }
  .pair .phone-slot:first-child { margin-right: -24px; }
  .stack-dots { display: flex; justify-content: center; gap: 4px; margin-top: 4px; }
  .stack-dots button { width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; display: grid; place-items: center; border-radius: 999px; }
  .stack-dots button span { width: 8px; height: 8px; border-radius: 999px; background: rgba(var(--ink-rgb),.2); transition: width .4s var(--ease-out), background-color .3s var(--ease); }
  .stack-dots button[aria-current="true"] span { width: 26px; background: var(--brand); }

  /* Punkt-Dock */
  .dock {
    display: block; position: fixed; left: 50%; bottom: calc(12px + var(--safe-b)); z-index: 90;
    width: min(calc(100% - 24px), 440px);
    transform: translate(-50%, calc(100% + 40px)); opacity: 0;
    transition: transform .55s var(--ease-out), opacity .35s var(--ease);
    pointer-events: none;
  }
  .dock.is-visible { transform: translate(-50%, 0); opacity: 1; pointer-events: auto; }
  .dock-shell {
    position: relative; border-radius: 30px; overflow: hidden;
    background: rgba(255,255,255,.66);
    -webkit-backdrop-filter: blur(26px) saturate(180%); backdrop-filter: blur(26px) saturate(180%);
    border: 1px solid rgba(255,255,255,.85);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 16px 40px rgba(var(--brand-deep-rgb),.2), 0 2px 8px rgba(var(--ink-rgb),.08);
  }
  .dock-shell::before { content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; background: linear-gradient(180deg, rgba(255,255,255,.6), rgba(255,255,255,0) 40%); }
  .dock-panel {
    display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s var(--ease-out);
  }
  .dock-panel > div { overflow: hidden; }
  .dock.is-open .dock-panel { grid-template-rows: 1fr; }
  .dock-panel ul { list-style: none; padding: 14px 10px 6px; display: grid; gap: 2px; }
  .dock-panel li { opacity: 0; transform: translateY(10px); transition: opacity .35s var(--ease), transform .45s var(--ease-out); }
  .dock.is-open .dock-panel li { opacity: 1; transform: none; transition-delay: calc(var(--i, 0) * 40ms + 60ms); }
  .dock-panel a { display: flex; align-items: center; gap: 14px; min-height: 48px; padding: 0 14px; border-radius: 16px; text-decoration: none; font-size: 17px; font-weight: 500; color: var(--ink); }
  .dock-panel a::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: rgba(var(--ink-rgb),.18); transition: background-color .3s var(--ease), box-shadow .3s var(--ease); }
  .dock-panel a[aria-current="true"] { background: rgba(255,255,255,.75); }
  .dock-panel a[aria-current="true"]::before { background: var(--brand); box-shadow: 0 0 0 4px rgba(var(--brand-rgb),.14); }
  .dock-bar { display: flex; align-items: center; gap: 8px; padding: 6px; position: relative; }
  .dock-dot { position: relative; width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer; background: rgba(255,255,255,.85); display: grid; place-items: center; flex-shrink: 0; box-shadow: inset 0 1px 0 #fff, 0 4px 12px rgba(var(--brand-rgb),.12); }
  .dock-dot svg.ring { position: absolute; inset: 4px; width: 40px; height: 40px; transform: rotate(-90deg); }
  .dock-dot .ring-bg { stroke: rgba(var(--brand-rgb),.14); }
  .dock-dot .ring-fg { stroke: var(--brand); stroke-dasharray: 113.1; stroke-dashoffset: calc(113.1px * (1 - var(--sp, 0))); }
  .dock-dot .core { width: 10px; height: 10px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(var(--brand-rgb),.14); transition: transform .45s var(--ease-out), border-radius .45s var(--ease-out), width .45s var(--ease-out); }
  .dock.is-open .dock-dot .core { width: 16px; height: 2px; border-radius: 2px; transform: rotate(0deg); box-shadow: none; }
  .dock-label { flex: 1; min-width: 0; position: relative; height: 24px; overflow: hidden; }
  .dock-label span { position: absolute; left: 4px; right: 0; top: 0; font-size: 15px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: opacity .35s var(--ease), transform .45s var(--ease-out); }
  .dock-label small { display: block; }
  .dock-label span.out { opacity: 0; transform: translateY(-12px); }
  .dock-label span.pre { opacity: 0; transform: translateY(12px); transition: none; }
  .dock .btn { min-height: 48px; padding: 0 18px; font-size: 14.5px; }
  html.menu-is-open .dock, html.modal-is-open .dock { transform: translate(-50%, calc(100% + 40px)) !important; opacity: 0 !important; pointer-events: none !important; }
  footer { padding-bottom: calc(104px + var(--safe-b)); }
}

@media (max-width: 899px) and (prefers-reduced-motion: reduce) {
  .stack-item > .prod { transform: none !important; }
  .stack-shade { display: none; }
  .dock { transition: none; }
}

@media (max-width: 600px) {
  :root { --gutter: 20px; }
  body { font-size: 16px; }
  section { padding-block: 88px; }
  h2 { font-size: clamp(34px, 9.4vw, 44px); }
  .hero { padding-top: calc(var(--pv) + 118px); padding-bottom: 96px; }
  .hero h1 { font-size: clamp(40px, 11.6vw, 54px); line-height: 1; margin: 22px auto 22px; }
  .hero h1 .line { display: inline; }
  .hero .lead { margin-bottom: 30px; }
  .hero-ctas { flex-direction: column; align-items: stretch; padding-inline: 4px; }
  .hero-ctas .btn { min-height: 54px; font-size: 16px; }
  .stage { margin-top: 52px; padding-inline: 10px; }
  .plate { padding: 6px; border-radius: 20px; }
  .plate-bar { padding: 4px 6px 7px; }
  .plate-bar i { width: 7px; height: 7px; }
  .plate-bar span { display: none; }
  .plate-screen { border-radius: 14px; }
  .stage .ph { width: 31%; bottom: -40px; }
  .stage .ph-left { left: -2px; }
  .stage .ph-right { right: -2px; }
  .stage .ph-left { transform: translateX(calc(var(--p) * -6px)) translateY(calc(var(--p) * -6px)); }
  .stage .ph-right { transform: translateX(calc(var(--p) * 6px)) translateY(calc(var(--p) * -6px)); }
  .stage .phone { border-radius: 24px; padding: 3px; }
  .stage .phone .scr { border-radius: 21px; padding: 2px; }
  .stage .phone img { border-radius: 19px; }
  .kicker { font-size: 12px; letter-spacing: .1em; }
  .whys { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; padding: 6px; border-radius: 26px; }
  .stat { padding: 20px 16px; }
  .stat-num { font-size: 44px; }
  .stat p { font-size: 14px; }
  .stat:nth-child(odd)::before { display: none; }
  .world, .service, .why { padding: 28px 24px; }
  .pair .phone-slot .phone { border-radius: 28px; padding: 3px; }
  .pair .phone-slot .phone .scr { border-radius: 25px; padding: 2px; }
  .pair .phone-slot .phone img { border-radius: 23px; }
  .cta-bar { border-radius: 28px; padding: 22px; }
  .cta-bar .btn { width: 100%; }
  .final { padding: 72px 22px; border-radius: 32px; }
  .final .hero-ctas { padding-inline: 0; }
  .foot { border-radius: 28px; padding: 22px; flex-direction: column; align-items: flex-start; }
  .ref-foot { flex-direction: column; align-items: flex-start; }
  .modal { align-items: flex-end; padding: 0; }
  .modal-box { border-radius: 28px 28px 0 0; padding: 30px 22px calc(22px + var(--safe-b)); max-height: 92dvh; }
  .modal h2 { font-size: 27px; }
  .form-row { grid-template-columns: 1fr; }
  .form-group textarea { min-height: 92px; }
}

@media (max-width: 370px) {
  :root { --gutter: 16px; }
  .hero h1 { font-size: 38px; }
  .stat-num { font-size: 38px; }
  .dock .btn { padding: 0 14px; font-size: 14px; }
  .nav-links a:not(.btn) { font-size: 28px; }
}


/* =========================================================================
   Hero · Produktfaecher
   Drei Produkte gleichwertig: Clubbase und CampingReport als Handys links und
   rechts, Nuvario Sports als Querformat in der Mitte vorn. Baut auf Tokens
   und Materialien aus glasklar.css auf (.glass, .phone, .plate-bar, --p).
   Die Bildflaechen sind die zugaenglichen Links (aria-label mit Status),
   die Chips darunter sind nur Beschriftung fuer die Maus (aria-hidden).
   ========================================================================= */

.stage--faecher { max-width: 1200px; margin-top: 40px; }
.fan { position: relative; }
.fan-vis { position: relative; aspect-ratio: 1120 / 420; }

/* ---------- Anordnung ---------- */
.fan-item {
  position: absolute; display: block; color: inherit; text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  /* Beim Scrollen schliesst sich der Faecher minimal (--p kommt aus glasklar.js) */
  transform: translate3d(calc(var(--p) * 18px * var(--dir, 0)), calc(var(--p) * -12px), 0);
}
.fan-item:focus-visible { outline: none; }
.fan-sports { left: 24%; width: 52%; top: 3%; z-index: 2; }
.fan-club   { left: 10%; width: 17%; top: 0; z-index: 1; --rot: -7deg; --dir: 1; }
.fan-camp   { right: 10%; width: 17%; top: 0; z-index: 1; --rot: 7deg; --dir: -1; }

/* Ebene 1: Oeffnen aus dem Stapel */
.fan-in { transition: transform .6s var(--ease), opacity .45s var(--ease); transition-delay: var(--d, 0ms); }
.fan-club, .fan-camp { --d: 110ms; }

/* Ebene 2: Drehung, Anheben, Zuruecktreten */
.fan-body {
  --r-now: calc(var(--rot, 0deg) * (1 - var(--p) * .35));
  --lift: 0px; --s: 1;
  transform: rotate(var(--r-now)) translateY(var(--lift)) scale(var(--s));
  transform-origin: 50% 85%;
  transition: transform .6s var(--ease-out);
}

/* Geschlossener Stapel vor dem Oeffnen (nur mit JS, ohne JS sofort offen) */
html.js .stage--faecher:not(.is-open) .fan-in { opacity: 0; }
html.js .stage--faecher:not(.is-open) .fan-sports .fan-in { transform: translateY(24px) scale(.96); }
html.js .stage--faecher:not(.is-open) .fan-club .fan-in { transform: translateX(62%) scale(.9); }
html.js .stage--faecher:not(.is-open) .fan-camp .fan-in { transform: translateX(-62%) scale(.9); }
html.js .stage--faecher:not(.is-open) .fan-body { --r-now: 0deg; }

/* ---------- Materialien ---------- */
.fan-frame.glass {
  border-radius: 30px; padding: 12px;
  background: rgba(255,255,255,.5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 2px 6px rgba(var(--ink-rgb),.04), 0 40px 90px rgba(var(--brand-deep-rgb),.18);
}
.fan-club .phone, .fan-camp .phone {
  box-shadow: 0 1px 0 rgba(255,255,255,.8) inset, 0 26px 60px rgba(var(--ink-rgb),.20), 0 6px 16px rgba(var(--ink-rgb),.10);
}

/* ---------- Beschriftung ---------- */
/* Spalten so, dass jeder Chip unter seinem Produkt steht; leicht ueber die Geraeteunterkanten gezogen */
.fan-chips { list-style: none; display: grid; grid-template-columns: 37% 26% 37%; margin-top: -24px; position: relative; z-index: 5; }
.fan-chips li { display: flex; justify-content: center; }
.fan-chip {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 9px 18px 9px 14px; border-radius: 999px;
  color: var(--ink); text-decoration: none; text-align: left; line-height: 1.2;
  background: rgba(255,255,255,.74); border: 1px solid rgba(255,255,255,.9);
  -webkit-backdrop-filter: blur(16px) saturate(160%); backdrop-filter: blur(16px) saturate(160%);
  box-shadow: inset 0 1px 0 #fff, 0 10px 26px rgba(var(--brand-deep-rgb),.10);
  transition: transform .35s var(--ease-out), box-shadow .25s var(--ease), background-color .25s var(--ease), opacity .45s var(--ease);
}
.fan-chip i { width: 9px; height: 9px; border-radius: 50%; display: block; flex-shrink: 0; }
.fan-chip-t { display: block; }
.fan-chip-n { display: block; font-size: 14.5px; font-weight: 600; letter-spacing: -0.01em; white-space: nowrap; }
.fan-chip-s { display: block; margin-top: 2px; font-size: 12.5px; color: var(--ink2); white-space: nowrap; }
.fan-chip i.pulse { animation: fanPulse 2.6s var(--ease) infinite; }
@keyframes fanPulse { 0% { box-shadow: 0 0 0 0 rgba(232,89,26,.38); } 70%, 100% { box-shadow: 0 0 0 7px rgba(232,89,26,0); } }
.is-offscreen .fan-chip i.pulse { animation-play-state: paused; }

html.js .stage--faecher:not(.is-open) .fan-chip { opacity: 0; transform: translateY(8px); }
.fan-chips li:nth-child(1) .fan-chip { transition-delay: 0s, 0s, 0s, .32s; }
.fan-chips li:nth-child(2) .fan-chip { transition-delay: 0s, 0s, 0s, .24s; }
.fan-chips li:nth-child(3) .fan-chip { transition-delay: 0s, 0s, 0s, .32s; }

/* ---------- Tastatur: Fokus hebt die Karte und markiert den Chip ---------- */
.fan-item:focus-visible { z-index: 4; }
.fan-item:focus-visible .fan-body { --r-now: 0deg; --lift: -14px; }
.fan-item:focus-visible .fan-frame, .fan-item:focus-visible .phone { outline: 2px solid var(--brand); outline-offset: 4px; }
.fan:has(.fan-club:focus-visible) .k-club,
.fan:has(.fan-sports:focus-visible) .k-sports,
.fan:has(.fan-camp:focus-visible) .k-camp { background: #fff; box-shadow: inset 0 1px 0 #fff, 0 16px 34px rgba(var(--brand-deep-rgb),.18); transform: translateY(-3px); }

/* ---------- Maus: Karte hebt sich, die anderen treten zurueck ---------- */
@media (hover: hover) and (pointer: fine) {
  .fan-item, .fan-chip { cursor: pointer; }
  .fan-item:hover { z-index: 4; }
  .fan-item:hover .fan-body { --r-now: 0deg; --lift: -14px; }
  .fan-vis:has(.fan-item:hover) .fan-item:not(:hover) .fan-body { --s: .97; }

  .fan:has(.fan-club:hover) .k-club,
  .fan:has(.fan-sports:hover) .k-sports,
  .fan:has(.fan-camp:hover) .k-camp,
  .fan-chip:hover { background: #fff; box-shadow: inset 0 1px 0 #fff, 0 16px 34px rgba(var(--brand-deep-rgb),.18); transform: translateY(-3px); }

  .fan:has(.k-club:hover) .fan-club,
  .fan:has(.k-sports:hover) .fan-sports,
  .fan:has(.k-camp:hover) .fan-camp { z-index: 4; }
  .fan:has(.k-club:hover) .fan-club .fan-body,
  .fan:has(.k-sports:hover) .fan-sports .fan-body,
  .fan:has(.k-camp:hover) .fan-camp .fan-body { --r-now: 0deg; --lift: -14px; }
}

/* ---------- Reduzierte Bewegung: offener Endzustand, nichts bewegt sich ---------- */
@media (prefers-reduced-motion: reduce) {
  .fan-item, .fan-in, .fan-chip { transform: none !important; }
  html.js .stage--faecher .fan-in, html.js .stage--faecher .fan-chip { opacity: 1 !important; }
  .fan-body { --r-now: var(--rot, 0deg) !important; --lift: 0px !important; --s: 1 !important; }
  .fan-chip i.pulse { animation: none; }
}

/* ---------- Handy: Mittelkarte breit, Handys angeschnitten dahinter ---------- */
@media (max-width: 700px) {
  .stage--faecher { padding-inline: 0; margin-top: 52px; }
  .fan-vis { aspect-ratio: 390 / 300; overflow-x: clip; }
  .fan-sports { left: 8%; width: 84%; top: 25%; }
  .fan-club { left: -5%; width: 30%; top: 0; --rot: -9deg; }
  .fan-camp { right: -5%; width: 30%; top: 0; --rot: 9deg; }
  .fan-item { transform: translate3d(calc(var(--p) * 8px * var(--dir, 0)), calc(var(--p) * -6px), 0); }
  .fan-frame.glass { padding: 6px; border-radius: 20px; }
  .fan-frame .plate-bar { padding: 4px 6px 7px; }
  .fan-frame .plate-bar i { width: 7px; height: 7px; }
  .fan-frame .plate-bar span { display: none; }
  .fan-frame .plate-screen { border-radius: 14px; }
  .fan-club .phone, .fan-camp .phone { border-radius: 24px; padding: 3px; }
  .fan-club .phone .scr, .fan-camp .phone .scr { border-radius: 21px; padding: 2px; }
  .fan-club .phone img, .fan-camp .phone img { border-radius: 19px; }
  .fan-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 24px; padding-inline: 10px; }
  .fan-chip { padding: 8px 14px 8px 11px; gap: 9px; }
  .fan-chip i { width: 8px; height: 8px; }
  .fan-chip-n { font-size: 13.5px; }
  .fan-chip-s { font-size: 12px; }
}


/* =========================================================================
   Theme Nuvario Sports · „Glasklar in Grün“  (<body class="theme-sports">)
   Dieselben Materialien, Gruen statt Blau. Schatten-Tokens werden neu gesetzt,
   weil ihre Farbwerte in :root bereits aufgeloest sind.
   Kontraste (WCAG): ink 16,6:1 · ink2 6,9:1 · ink3 5,7:1 auf --bg;
   Weiss auf --brand 7,2:1, auf --brand-hover 7,3:1; --brand als Text 6,7:1.
   --brand-light (4,0:1) nur fuer Flaechen und Verlaeufe, nie fuer Text.
   ========================================================================= */
.theme-sports {
  --bg: #F4F8F5;
  --bg-rgb: 244,248,245;
  --ink: #0F1A16;
  --ink-rgb: 15,26,22;
  --ink2: #465A51;
  --ink3: #52665D;
  --brand: #176347;
  --brand-rgb: 23,99,71;
  --brand-hover: #14633a;
  --brand-deep: #0F4A34;
  --brand-deep-rgb: 15,74,52;
  --brand-light: #3F8D6C;
  --brand-light-rgb: 63,141,108;
  --brand-soft: #74B498;
  --brand-soft-rgb: 116,180,152;
  --brand-tint: #B7DCC9;
  --ice: #DDF0E5;
  --ice-rgb: 221,240,229;
  --shimmer: #9FD6BC;
  --final-grad: linear-gradient(135deg, #0F4A34 0%, #176347 55%, #2E7A5A 100%);
  --shadow-glass: inset 0 1px 0 rgba(255,255,255,.9), 0 1px 2px rgba(15,26,22,.04), 0 18px 48px rgba(15,74,52,.08);
  --shadow-lift: inset 0 1px 0 rgba(255,255,255,.95), 0 2px 4px rgba(15,26,22,.05), 0 28px 64px rgba(15,74,52,.15);
}

/* =========================================================================
   Unterseiten-Bausteine
   Katalog und Beispiele: _bausteine/LIESMICH-bausteine.md
   ========================================================================= */

/* ---------- Navigation: aktive Seite, Sports-Logo, dichte Variante ---------- */
.nav-links a[aria-current="page"]:not(.btn) { color: var(--ink); background: rgba(255,255,255,.75); }
.nav-logo { display: inline-flex; align-items: center; min-height: 44px; position: relative; z-index: 3; text-decoration: none; }
.nav-logo img { height: 26px; width: auto; }
nav.nav.nav--dense { max-width: 1180px; }
@media (min-width: 900px) {
  .nav--dense .nav-links a:not(.btn) { padding: 0 11px; font-size: 14px; }
}
.nav-aside a:not(.btn) { font-family: var(--mono); font-size: 12.5px !important; letter-spacing: .04em; color: var(--ink3) !important; }
.nav-aside svg { width: 12px; height: 12px; margin-left: 4px; }
@media (min-width: 900px) and (max-width: 1199px) {
  .nav-aside { display: none; }
  .nav--dense .nav-links a:not(.btn) { padding: 0 9px; }
}

/* ---------- Seitenkopf fuer Unterseiten ---------- */
.page-hero { padding-top: calc(var(--pv) + 150px); padding-bottom: 72px; position: relative; }
.page-hero h1 {
  font-weight: 600; letter-spacing: -0.045em; line-height: 1;
  font-size: clamp(40px, 5.4vw, 74px);
  margin: 22px 0 22px; max-width: 980px; text-wrap: balance;
}
h1 .accent, h2 .accent, h3 .accent { color: var(--brand); }
.page-hero .lead { max-width: 680px; }
.page-hero .hero-ctas { justify-content: flex-start; margin-top: 36px; }
.page-hero .meta { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 10px; margin-top: 28px; }
.page-hero .meta-line { margin-top: 22px; font-family: var(--mono); font-size: 12.5px; letter-spacing: .04em; color: var(--ink2); }
.page-hero--center { text-align: center; }
.page-hero--center h1, .page-hero--center .lead { margin-inline: auto; }
.page-hero--center .hero-ctas, .page-hero--center .meta { justify-content: center; }
.page-hero--split .container { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 56px; align-items: center; }
.page-hero--split h1 { font-size: clamp(40px, 4.8vw, 66px); }
.page-hero__visual { position: relative; min-width: 0; }
.back-link {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px; margin-bottom: 6px;
  font-family: var(--mono); font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink2); text-decoration: none;
}
.back-link svg { width: 14px; height: 14px; transition: transform .2s var(--ease); }
.back-link:hover { color: var(--ink); }
.back-link:hover svg { transform: translateX(-3px); }

/* ---------- Abschnitte ---------- */
.section--tight { padding-block: 96px; }
.section--flush-top { padding-top: 0; }
.section--flush-bottom { padding-bottom: 0; }
.sec-head.narrow h2 { max-width: 760px; }

/* ---------- Lesebereich (Rechtstexte, lange Texte) ---------- */
.prose {
  max-width: 820px; margin: 0 auto; padding: 56px 64px; border-radius: 32px;
  font-size: 17px; line-height: 1.7; color: var(--ink);
}
.prose > :first-child { margin-top: 0; }
.prose > :last-child { margin-bottom: 0; }
.prose h2 { font-size: clamp(24px, 2.4vw, 30px); line-height: 1.2; letter-spacing: -0.025em; margin: 52px 0 14px; text-wrap: balance; }
.prose h3 { font-size: 19.5px; font-weight: 600; letter-spacing: -0.015em; line-height: 1.3; margin: 32px 0 10px; }
.prose h4 { font-size: 17px; font-weight: 600; margin: 24px 0 8px; }
.prose p, .prose ul, .prose ol, .prose address, .prose table, .prose .table-wrap, .prose blockquote { margin: 0 0 16px; }
.prose p, .prose li, .prose address, .prose td { color: var(--ink2); }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin: 6px 0; padding-left: 4px; }
.prose li::marker { color: var(--brand); }
.prose a { color: var(--brand); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; overflow-wrap: anywhere; }
.prose a:hover { text-decoration-thickness: 2px; }
.prose strong, .prose b { color: var(--ink); font-weight: 600; }
.prose address { font-style: normal; }
.prose hr { border: 0; height: 1px; background: rgba(var(--ink-rgb),.1); margin: 40px 0; }
.prose blockquote { padding: 4px 0 4px 20px; border-left: 2px solid rgba(var(--brand-rgb),.35); }
.prose table { width: 100%; border-collapse: collapse; font-size: 15.5px; }
.prose th, .prose td { text-align: left; vertical-align: top; padding: 10px 12px; border-bottom: 1px solid rgba(var(--ink-rgb),.08); }
.prose th { font-weight: 600; color: var(--ink); }
.prose small, .prose .small { font-size: 14.5px; }
.prose [id] { scroll-margin-top: calc(var(--pv) + 110px); }
.prose .prose-meta { font-family: var(--mono); font-size: 12.5px; letter-spacing: .04em; color: var(--ink3); }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.prose-layout { display: grid; grid-template-columns: 250px minmax(0, 820px); gap: 32px; justify-content: center; align-items: start; }
.prose-layout .prose { margin: 0; }
.toc { position: sticky; top: calc(var(--pv) + 104px); padding: 22px 16px; border-radius: 24px; }
.toc .kicker { margin: 0 10px 10px; }
.toc ol, .toc ul { list-style: none; display: grid; gap: 2px; }
.toc a { display: flex; align-items: center; gap: 10px; min-height: 44px; padding: 6px 10px; border-radius: 12px; color: var(--ink2); text-decoration: none; font-size: 14.5px; line-height: 1.35; }
.toc a::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: rgba(var(--ink-rgb),.18); flex-shrink: 0; transition: background-color .2s var(--ease); }
.toc a:hover { color: var(--ink); background: rgba(255,255,255,.7); }
.toc a:hover::before { background: var(--brand); }

/* ---------- FAQ: Glas-Akkordeon ---------- */
.faq { list-style: none; display: grid; gap: 12px; max-width: 880px; margin: 0 auto; }
.faq-item { border-radius: 22px; }
.faq-item > summary {
  list-style: none; cursor: pointer; position: relative; display: block;
  padding: 22px 72px 22px 28px; border-radius: inherit;
  font-size: 17.5px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.4; color: var(--ink);
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: ''; position: absolute; right: 22px; top: 50%; width: 32px; height: 32px; margin-top: -16px; border-radius: 50%;
  background:
    linear-gradient(var(--brand), var(--brand)) center / 12px 2px no-repeat,
    linear-gradient(var(--brand), var(--brand)) center / 2px 12px no-repeat,
    rgba(255,255,255,.85);
  box-shadow: inset 0 1px 0 #fff, 0 4px 12px rgba(var(--brand-rgb),.12);
  transition: transform .3s var(--ease-out);
}
.faq-item[open] > summary::after {
  background: linear-gradient(var(--brand), var(--brand)) center / 12px 2px no-repeat, rgba(255,255,255,.85);
  transform: rotate(180deg);
}
.faq-item > summary:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }
.faq-a { padding: 0 28px 24px; color: var(--ink2); }
.faq-a p { margin-bottom: 12px; }
.faq-a > :last-child { margin-bottom: 0; }
.faq-a a { color: var(--brand); }
.faq-foot { text-align: center; margin-top: 28px; color: var(--ink2); }
.faq-foot a { color: var(--brand); }

/* ---------- Kartenraster ---------- */
.cards { list-style: none; display: grid; gap: 20px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card { padding: 32px; display: flex; flex-direction: column; min-width: 0; }
.card .icon { margin-bottom: 26px; }
.card-kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; font-family: var(--mono); font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--brand); }
.card h3 { font-size: 21px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.25; margin: 0 0 10px; text-wrap: balance; }
.card p { color: var(--ink2); font-size: 16px; }
.card p + p { margin-top: 10px; }
.card .link-arrow { margin-top: auto; padding-top: 14px; }

/* ---------- Preiskarten ---------- */
.tiers { list-style: none; display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); align-items: stretch; }
.tier { padding: 32px 28px; display: flex; flex-direction: column; min-width: 0; }
.tier-badge {
  align-self: flex-start; display: inline-flex; align-items: center; min-height: 28px; padding: 0 12px; margin-bottom: 16px;
  border-radius: 999px; background: var(--brand); color: var(--on-brand);
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase;
}
.tier-name { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 6px; }
.tier-desc { color: var(--ink2); font-size: 15px; margin-bottom: 20px; }
.tier-price {
  display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; margin: 6px 0;
  font-size: clamp(36px, 3.4vw, 46px); font-weight: 600; letter-spacing: -0.045em; line-height: 1; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.tier-price small { font-size: 15px; font-weight: 500; letter-spacing: 0; color: var(--ink2); }
.tier-note { font-size: 13.5px; color: var(--ink3); margin-bottom: 22px; }
.tier .checklist { flex: 1; align-content: start; margin-bottom: 26px; }
.tier > .btn { margin-top: auto; width: 100%; }
.tier--featured.glass { background: rgba(255,255,255,.8); box-shadow: var(--shadow-lift), 0 0 0 1.5px rgba(var(--brand-rgb),.45); }

/* ---------- Listen ---------- */
.checklist { list-style: none; display: grid; gap: 10px; }
.checklist li { position: relative; padding-left: 34px; font-size: 16px; line-height: 1.5; color: var(--ink); }
.checklist li::before { content: ''; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 50%; background: rgba(var(--brand-rgb),.12); }
.checklist li::after {
  content: ''; position: absolute; left: 5px; top: 6px; width: 12px; height: 12px; background: var(--brand);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.4 6.3l2.3 2.3 4.9-5' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.4 6.3l2.3 2.3 4.9-5' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.checklist--dots li { padding-left: 26px; }
.checklist--dots li::before { top: 9px; left: 2px; width: 7px; height: 7px; background: var(--brand); box-shadow: 0 0 0 4px rgba(var(--brand-rgb),.1); }
.checklist--dots li::after { display: none; }

/* ---------- Zweispalter, Bildrahmen, Hinweis ---------- */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; align-items: center; }
.split--rev > .split__media { order: -1; }
.split__media { position: relative; min-width: 0; }
.media-frame { border-radius: 22px; padding: 10px; background: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.85); box-shadow: 0 30px 70px rgba(var(--ink-rgb),.14); }
.media-frame .bar { display: flex; align-items: center; gap: 6px; padding: 4px 6px 10px; }
.media-frame .bar i { width: 9px; height: 9px; border-radius: 50%; background: rgba(var(--ink-rgb),.14); display: block; }
.media-frame .bar span { margin-inline: auto; font-family: var(--mono); font-size: 12px; color: var(--ink3); padding: 3px 12px; border-radius: 999px; background: rgba(255,255,255,.75); }
.media-frame .inner { border-radius: 14px; overflow: hidden; border: 1px solid rgba(var(--ink-rgb),.06); background: #fff; }
.media-frame .inner img { width: 100%; }
.phone-solo { width: min(300px, 72%); margin-inline: auto; }
.callout { display: flex; gap: 16px; align-items: flex-start; padding: 22px 26px; border-radius: 22px; }
.callout > .dot { margin-top: 10px; }
.callout p { color: var(--ink2); font-size: 15.5px; }
.callout p + p { margin-top: 8px; }
.callout strong { color: var(--ink); }
.callout a { color: var(--brand); }

/* ---------- Bausteine: Responsiv ---------- */
@media (max-width: 1080px) {
  .prose-layout { grid-template-columns: minmax(0, 820px); }
  .toc { position: static; }
  .cards--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 899px) {
  .page-hero--split .container { grid-template-columns: 1fr; gap: 44px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split--rev > .split__media { order: 0; }
  .cards, .cards--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section--tight { padding-block: 80px; }
  .nav-aside a:not(.btn) { font-size: 14px !important; }
}
@media (max-width: 600px) {
  .page-hero { padding-top: calc(var(--pv) + 118px); padding-bottom: 48px; }
  .page-hero h1, .page-hero--split h1 { font-size: clamp(36px, 10.4vw, 48px); margin: 18px 0 18px; }
  .page-hero .hero-ctas { margin-top: 28px; }
  .cards, .cards--2, .cards--4 { grid-template-columns: 1fr; }
  .card { padding: 26px 22px; }
  .tier { padding: 28px 22px; }
  .prose { padding: 30px 22px; border-radius: 26px; font-size: 16px; }
  .prose h2 { margin-top: 40px; }
  .faq-item > summary { padding: 20px 64px 20px 22px; font-size: 16.5px; }
  .faq-item > summary::after { right: 16px; }
  .faq-a { padding: 0 22px 22px; }
  .callout { padding: 18px 20px; }
  .section--tight { padding-block: 64px; }
}
