/* ============================================================
   KIRAKI — Landing „Werkdruck"
   Papier · Tinte · Kobalt · Mona Sans / Fragment Mono
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Mona Sans";
  src: url("../fonts/Mona-Sans.woff2") format("woff2");
  font-weight: 200 900;
  font-stretch: 75% 125%;
  font-display: swap;
}
@font-face {
  font-family: "Fragment Mono";
  src: url("../fonts/FragmentMono-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --paper: #F1EEE4;
  --paper-2: #E8E4D6;
  --panel: #FBFAF3;
  --ink: #12151C;
  --ink-2: #555A66;
  --line: rgba(18, 21, 28, 0.16);
  --cobalt: #1233EE;
  --cobalt-deep: #0A1EB8;
  --night: #0B0E1B;
  --night-text: #EDEBE0;
  --night-text-2: rgba(237, 235, 224, 0.66);
  --night-line: rgba(237, 235, 224, 0.16);

  --font-sans: "Mona Sans", "Segoe UI", system-ui, sans-serif;
  --font-mono: "Fragment Mono", "Consolas", monospace;

  --wrap: 1440px;
  --pad: clamp(1.25rem, 4vw, 4.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gap-explode: 106px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  /* Papier mit Lichtführung statt flacher Fläche: heller Einfall oben links,
     leichte Abdunklung zum Fuß — monochrome Materialmodulation, kein Farbverlauf */
  background:
    radial-gradient(120% 60% at 18% 0%, rgba(255, 255, 252, 0.55) 0%, rgba(255, 255, 252, 0) 55%),
    radial-gradient(140% 50% at 85% 115%, rgba(18, 21, 28, 0.05) 0%, rgba(18, 21, 28, 0) 55%),
    var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
::selection { background: var(--cobalt); color: var(--paper); }
:focus-visible { outline: 2px solid var(--cobalt); outline-offset: 3px; }
.contact :focus-visible, .case :focus-visible { outline-color: var(--paper); }

.wrap { width: min(100% - 2 * var(--pad), var(--wrap)); margin-inline: auto; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--paper); padding: 0.6rem 1rem;
  font-size: 0.9rem;
}
.skip-link:focus-visible { left: 0.5rem; top: 0.5rem; }

/* ---------- Typo-Werkzeuge ---------- */
.mlabel {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.mlabel-note { color: var(--ink-2); opacity: 0.75; }
.h2 {
  font-size: clamp(2.1rem, 4.4vw, 4.05rem);
  font-weight: 830;
  font-stretch: 110%;
  letter-spacing: -0.025em;
  line-height: 1.02;
  text-wrap: balance;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.98rem; font-weight: 560; font-stretch: 105%;
  padding: 0.78rem 1.35rem; border-radius: 6px;
  border: 1px solid transparent;
  transition: background-color 200ms var(--ease), color 200ms var(--ease),
              border-color 200ms var(--ease);
}
.btn--lg { padding: 0.95rem 1.6rem; font-size: 1.05rem; }
.btn--solid { background: var(--cobalt); color: #fff; }
.btn--solid:hover { background: var(--cobalt-deep); }
.btn--line { border-color: var(--ink); color: var(--ink); }
.btn--line:hover { background: var(--ink); color: var(--paper); }
.btn--paper { background: var(--paper); color: var(--ink); }
.btn--paper:hover { background: #fff; }
.btn-arrow { display: inline-block; transition: translate 200ms var(--ease); }
.btn:hover .btn-arrow { translate: 4px 0; }

/* ---------- Topbar ---------- */
.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background-color 240ms var(--ease), box-shadow 240ms var(--ease);
}
.topbar.is-scrolled {
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}
.topbar-in {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 0.9rem;
}
.brand { display: flex; flex-direction: column; line-height: 1; gap: 0.28rem; }
.brand-name {
  font-weight: 780; font-stretch: 122%;
  font-size: 1.06rem; letter-spacing: 0.34em;
}
.brand-sub {
  font-family: var(--font-mono); font-size: 0.5rem;
  letter-spacing: 0.56em; color: var(--ink-2);
}
.nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.4vw, 2.4rem); }
.nav-link {
  font-size: 0.98rem; font-weight: 540;
  position: relative; padding-block: 0.3rem;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1.5px; background: var(--ink);
  transform: scaleX(0); transform-origin: right;
  transition: transform 260ms var(--ease);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-burger { display: none; }
.mobilenav { display: none; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column;
  padding-top: clamp(5.8rem, 10vh, 7.6rem);
}
.hero-kicker { margin-bottom: clamp(1.1rem, 2.2vh, 1.6rem); color: var(--cobalt); }
.hero-h1 {
  font-size: clamp(2.65rem, 7.2vw, 7.4rem);
  font-weight: 850;
  font-stretch: 112%;
  letter-spacing: -0.031em;
  line-height: 0.98;
}
.mask { display: block; overflow: hidden; padding-block: 0.04em 0.12em; margin-block: -0.04em -0.12em; }
.mask-in { display: block; }
.hero-row {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  margin-top: clamp(1.2rem, 3vh, 2rem);
  padding-bottom: clamp(1rem, 2.4vh, 1.8rem);
}
.hero-copy { padding-bottom: clamp(0.4rem, 2vh, 1.4rem); }
.hero-lead {
  max-width: 54ch;
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.62;
  color: var(--ink);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: clamp(1.5rem, 3.2vh, 2.4rem); }
.hero-fig { justify-self: end; align-self: end; width: min(100%, 470px); }
.hero-obj img, .hero-obj video { max-height: 46vh; width: auto; max-width: 100%; margin-left: auto; }
.hero-foot {
  display: flex; justify-content: space-between; gap: 1rem;
  border-top: 1px solid var(--line);
  padding-block: 1rem 1.2rem;
}

/* Ladechoreografie */
.js [data-load] { opacity: 0; }
.js .mask-in[data-load] { opacity: 1; transform: translateY(112%); }
.js.is-loaded [data-load] {
  animation: rise 640ms var(--ease) forwards;
  animation-delay: calc(var(--d, 0) * 85ms);
}
.js.is-loaded .mask-in[data-load] {
  animation: maskup 760ms var(--ease) forwards;
  animation-delay: calc(var(--d, 0) * 85ms);
}
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes maskup { from { transform: translateY(112%); } to { transform: none; } }

/* ============================================================
   Axonometrie — gemeinsame Zeichnungsregeln
   ============================================================ */
.axo { display: block; }
.axo path, .axo line, .axo ellipse, .axo circle, .axo rect {
  vector-effect: non-scaling-stroke;
}
.axo-face { stroke: var(--ink); stroke-width: 1; stroke-linejoin: round; }
.axo-hatch { opacity: 0.8; }
.axo-axis {
  stroke: var(--ink); stroke-width: 1; stroke-dasharray: 2 6;
  opacity: 0.5; stroke-linecap: round;
}
.axo-corner { stroke: var(--ink); stroke-width: 1; opacity: 0.4; }
.axo-detail { stroke-linecap: round; stroke-linejoin: round; }
.axo-wire { stroke: var(--ink); stroke-width: 1; opacity: 0.62; }
.axo-wire--main { opacity: 0.95; }
.axo-wire--dim { opacity: 0.32; }
.axo-wire--accent { stroke: var(--cobalt); stroke-width: 1.6; opacity: 1; }
.axo-grid { stroke: var(--ink); stroke-width: 1; opacity: 0.14; }
.axo-trace { stroke: var(--ink); stroke-width: 1; opacity: 0.55; }
.axo-port { fill: var(--cobalt); }
.axo-node { fill: var(--paper); stroke: var(--cobalt); stroke-width: 1.4; }
.axo-node-start { fill: var(--ink); }
.axo-target { stroke: var(--cobalt); stroke-width: 1.5; }
.axo-cross { stroke: var(--cobalt); stroke-width: 1; opacity: 0.85; }
.axo-route { stroke: var(--cobalt); stroke-width: 1.8; }
.axo-route-alt { stroke: var(--ink); stroke-width: 1; stroke-dasharray: 3 5; opacity: 0.38; }
.axo-stream {
  stroke: var(--cobalt); stroke-width: 1.7;
  stroke-dasharray: 7 6;
  animation: flow 1.5s linear infinite;
}
@keyframes flow { to { stroke-dashoffset: -13; } }
.axo-paused .axo-stream { animation-play-state: paused; }

.axo-leader { stroke: var(--ink-2); stroke-width: 1; opacity: 0.7; }
.axo-leader-dot { fill: var(--ink-2); }
.axo-posnr {
  font-family: var(--font-mono); font-size: 12px;
  fill: var(--ink-2); letter-spacing: 0.08em;
}
.axo-dim line { stroke: var(--ink); stroke-width: 1; opacity: 0.6; }
.axo-dim-text {
  font-family: var(--font-mono); font-size: 10px;
  fill: var(--ink-2); letter-spacing: 0.14em;
}
.axo-tblock-frame { stroke: var(--ink); stroke-width: 1; opacity: 0.55; }
.axo-tblock-line { stroke: var(--ink); stroke-width: 1; opacity: 0.25; }
.axo-tblock-text {
  font-family: var(--font-mono); font-size: 9.5px;
  fill: var(--ink-2); letter-spacing: 0.1em;
}

/* ============================================================
   2 · System / Leistungen
   ============================================================ */
.system { padding-block: clamp(5rem, 11vh, 9rem) 0; }
/* Übergangszone Punkte/Kreuze: liegt als .system::after in hero.css,
   weil hero.css .system::before bereits fürs Iso-Raster nutzt. */
/* Glasformen an den Rändern — Fortsetzung des Hero-Motivs, bewusst leise */
.system-deco { position: absolute; inset: 0; pointer-events: none; }
.system-deco::before,
.system-deco::after {
  content: ""; position: absolute;
  background-image: url("../img/hero-bg-desktop.webp");
  background-size: cover;
  opacity: 0.45;
}
.system-deco::before {
  left: 0; bottom: 3%; height: 58vh; width: min(22vw, 340px);
  background-position: 0% 78%;
  -webkit-mask-image: radial-gradient(130% 100% at 0% 50%, #000 28%, transparent 74%);
  mask-image: radial-gradient(130% 100% at 0% 50%, #000 28%, transparent 74%);
}
.system-deco::after {
  right: 0; top: 18%; height: 66vh; width: min(24vw, 380px);
  background-position: 100% 30%;
  -webkit-mask-image: radial-gradient(130% 100% at 100% 50%, #000 28%, transparent 74%);
  mask-image: radial-gradient(130% 100% at 100% 50%, #000 28%, transparent 74%);
}
.system-head { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: clamp(2.5rem, 6vh, 4.5rem); }
.system-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.system-grid > .system-stage {
  position: sticky;
  top: clamp(3.5rem, 8vh, 6rem);
}
.axo--stage { width: 100%; height: auto; max-height: calc(100svh - 8rem); }

/* Explosion: --p wird per Scroll gesetzt */
.axo--stage .axo-lift {
  transform: translateY(calc(var(--p, 0.12) * var(--lift) * -1 * var(--gap-explode)));
  will-change: transform;
}
/* Idle-Atmen: jede Ebene schwebt minimal, desynchron (±5 Einheiten, 7–13 s) */
.axo--stage .axo-lift > .axo-layer { animation: layer-breathe 9s ease-in-out infinite alternate; }
.axo--stage .axo-lift[data-n="1"] > .axo-layer { animation-duration: 7s; }
.axo--stage .axo-lift[data-n="2"] > .axo-layer { animation-duration: 9s; animation-delay: -2.6s; }
.axo--stage .axo-lift[data-n="3"] > .axo-layer { animation-duration: 11s; animation-delay: -5.2s; }
.axo--stage .axo-lift[data-n="4"] > .axo-layer { animation-duration: 13s; animation-delay: -7.8s; }
@keyframes layer-breathe {
  from { transform: translateY(2.5px); }
  to { transform: translateY(-2.5px); }
}
.axo-paused .axo-lift > .axo-layer { animation-play-state: paused; }
.axo--stage .axo-lift > .axo-layer,
.axo--stage .axo-posnr,
.axo--stage .axo-leader,
.axo--stage .axo-leader-dot {
  transition: opacity 260ms var(--ease);
}
.axo--stage.has-focus .axo-lift:not(.is-active) .axo-layer { opacity: 0.42; }
.axo--stage.has-focus .axo-lift:not(.is-active) .axo-posnr,
.axo--stage.has-focus .axo-lift:not(.is-active) .axo-leader,
.axo--stage.has-focus .axo-lift:not(.is-active) .axo-leader-dot { opacity: 0.3; }
.axo--stage .axo-lift.is-active .axo-posnr { fill: var(--cobalt); }
.axo--stage .axo-lift.is-active .axo-leader { stroke: var(--cobalt); opacity: 1; }
.axo--stage .axo-lift.is-active .axo-leader-dot { fill: var(--cobalt); }

.system-stations { display: flex; flex-direction: column; position: relative; }
/* Verbindungsschiene, auf der die Bereichsnummern sitzen */
.system-stations::before {
  content: ""; position: absolute;
  left: 3.5rem; top: 1.2rem; bottom: 8.5rem;
  width: 1px; background: var(--line);
}
.station {
  min-height: 56vh;
  display: grid;
  grid-template-columns: 4.6rem minmax(0, 1fr);
  align-content: center; align-items: start;
  padding-block: 1.4rem;
}
.station-nr {
  font-family: var(--font-mono); font-size: 0.78rem;
  color: var(--ink-2); letter-spacing: 0.14em;
  margin-top: 1.85rem;
  transition: color 240ms var(--ease);
}
.station.is-active .station-nr { color: var(--cobalt); }
/* Inhaltsblock: Geometrie konstant, nur die Glas-Anmutung blendet ein */
.station-body {
  position: relative;
  display: flex; flex-direction: column; gap: 0.55rem;
  padding: 1.7rem 1.9rem 1.8rem;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: background 380ms var(--ease), border-color 380ms var(--ease),
              box-shadow 380ms var(--ease);
}
.station.is-active .station-body {
  background: rgba(252, 251, 247, 0.62);
  border-color: rgba(18, 21, 28, 0.1);
  box-shadow: 0 22px 48px rgba(11, 14, 27, 0.07), 0 2px 8px rgba(11, 14, 27, 0.04);
  backdrop-filter: blur(9px);
}
/* Knoten auf der Schiene + aktives Kobalt-Segment */
.station-body::before,
.station-body::after { content: ""; position: absolute; pointer-events: none; }
.station-body::before {
  left: calc(-1.1rem - 4px); top: 2.15rem;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--line);
  transition: background 240ms var(--ease), border-color 240ms var(--ease);
}
.station-body::after {
  left: calc(-1.1rem - 1px); top: 0.5rem; bottom: 0.5rem;
  width: 2px; background: var(--cobalt);
  transform: scaleY(0); transform-origin: top;
  transition: transform 420ms var(--ease);
}
.station.is-active .station-body::before { background: var(--cobalt); border-color: var(--cobalt); }
.station.is-active .station-body::after { transform: scaleY(1); }
.station-title {
  font-family: var(--font-mono); font-size: 0.8rem;
  font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-2);
}
.station-verb {
  font-size: clamp(1.9rem, 2.9vw, 2.85rem);
  font-weight: 820; font-stretch: 110%;
  letter-spacing: -0.024em; line-height: 1.04;
  color: var(--ink);
}
.station-text { max-width: 44ch; color: var(--ink-2); margin-top: 0.5rem; }
.station-kit {
  display: flex; flex-wrap: wrap; gap: 0.5rem 0;
  margin-top: 1.1rem;
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-2);
}
.station-kit li { display: flex; align-items: center; }
.station-kit li::before {
  content: ""; width: 6px; height: 6px;
  border: 1.5px solid var(--cobalt);
  margin-right: 0.55rem;
}
.station-kit li:not(:last-child) { margin-right: 1.4rem; }
.station-more {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.1rem;
  font-size: 0.94rem; font-weight: 560;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  width: fit-content;
  transition: color 200ms var(--ease), border-color 200ms var(--ease);
}
.station-more span { transition: translate 200ms var(--ease); }
.station-more:hover { color: var(--cobalt); border-color: var(--cobalt); }
.station-more:hover span { translate: 4px 0; }

/* Live-Ablesung unter der Zeichnung (Instrumenten-Unterschrift) */
.stage-readout {
  display: flex; align-items: center; gap: 0.5rem;
  margin-top: 0.5rem;
}
.stage-readout-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cobalt);
  animation: readout-pulse 2.4s ease-in-out infinite;
}
@keyframes readout-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.js .station { opacity: 0.55; transition: opacity 300ms var(--ease); }
.js .station.is-active { opacity: 1; }
.system-more { padding-block: 1rem 4rem; margin-left: 6.5rem; }

/* ============================================================
   3 · Ausgangslagen
   ============================================================ */
.cases-index { padding-block: clamp(5rem, 11vh, 9rem); }
.cases-index .mlabel { margin-bottom: 2.2rem; }
.lagen { border-top: 1px solid var(--line); }
.lage {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) minmax(0, 38ch);
  gap: 1.5rem; align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding-block: clamp(1.4rem, 3vh, 2.1rem);
}
.lage::before {
  content: ""; width: 11px; height: 11px;
  border: 1.5px solid var(--ink);
  align-self: center;
  justify-self: start;
}
.lage-line {
  font-size: clamp(1.35rem, 2.6vw, 2.3rem);
  font-weight: 780; font-stretch: 108%;
  letter-spacing: -0.02em; line-height: 1.08;
}
.lage-sub { color: var(--ink-2); font-size: 0.98rem; }

/* ============================================================
   4 · Founder Case — Nachtsektion
   ============================================================ */
.case {
  background: var(--night); color: var(--night-text);
  padding-block: clamp(5rem, 12vh, 9.5rem);
}
.mlabel--night { color: var(--night-text-2); }
.case-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.case-h2 { margin-top: 1.1rem; overflow-wrap: break-word; }
.case-lead { margin-top: 1.4rem; font-size: 1.12rem; max-width: 52ch; }
.case-role { margin-top: 0.9rem; color: var(--night-text-2); max-width: 52ch; }
.case-data { margin-top: 2.2rem; border-top: 1px solid var(--night-line); }
.case-datum {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  border-bottom: 1px solid var(--night-line);
  padding-block: 0.72rem;
}
.case-datum dt {
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--night-text-2);
}
.case-datum dd {
  font-weight: 820; font-stretch: 112%;
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  letter-spacing: -0.02em;
}
.case .btn--paper { margin-top: 2.2rem; }
.case-fig { position: relative; }
.case-fig > img:first-child { width: 100%; }
.case-fig-inset {
  position: absolute; left: -6%; bottom: -8%;
  width: 34%;
  border: 1px solid var(--night-line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
/* Bildunterschrift der Nachtszene */
.case-fig-cap { margin-top: 0.7rem; }
.draht-note { margin-top: 1rem; }

/* Blick ins Produkt: Screens + Faktenkachel in der Nachtsektion */
.case-shots {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 3.2fr) minmax(0, 3fr);
  gap: clamp(1.2rem, 2.6vw, 2.4rem);
  margin-top: clamp(2.5rem, 6vh, 4rem);
  align-items: stretch;
}
.case-shot { display: flex; flex-direction: column; gap: 0.7rem; }
.case-shot img {
  width: 100%; height: 100%; object-fit: cover;
  border: 1px solid var(--night-line);
  flex: 1; min-height: 0;
}
.case-shot figcaption { color: var(--night-text-2); }
.case-facttile {
  border: 1px solid var(--night-line);
  display: flex; flex-direction: column; justify-content: center; gap: 0.6rem;
  padding: clamp(1.2rem, 2.5vw, 2rem);
}
.case-facttile-big {
  font-size: clamp(3.2rem, 5.5vw, 5.4rem);
  font-weight: 850; font-stretch: 115%;
  letter-spacing: -0.03em; line-height: 0.9;
  color: var(--night-text);
}
.casebuild { padding-block: clamp(4rem, 9vh, 7rem) clamp(3rem, 7vh, 5rem); }
.casebuild .method-head { margin-bottom: clamp(2.2rem, 5vh, 3.4rem); }
.casebuild .method-steps { position: relative; }
.casebuild .method-steps::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0.62rem;
  height: 1px; background: var(--line);
}

.case-note {
  margin-top: clamp(3rem, 7vh, 5rem);
  max-width: 76ch;
  font-size: 0.85rem; line-height: 1.65;
  color: var(--night-text-2);
  border-left: 2px solid var(--cobalt);
  padding-left: 1.1rem;
}

/* ============================================================
   5 · Arbeitsweise
   ============================================================ */
.method { background: var(--paper-2); padding-block: clamp(4.5rem, 10vh, 8rem); }
.method-head { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: clamp(2.6rem, 6vh, 4.2rem); }
.method-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.4rem, 3vw, 3rem);
  position: relative;
}
.method-steps::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0.62rem;
  height: 1px; background: var(--line);
}
.step { position: relative; padding-top: 2rem; }
.step::before {
  content: ""; position: absolute; top: 0.28rem; left: 0;
  width: 11px; height: 11px; background: var(--paper-2);
  border: 1.5px solid var(--ink);
}
.step-nr { font-family: var(--font-mono); font-size: 0.75rem; color: var(--cobalt); letter-spacing: 0.14em; }
.step-title {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 800; font-stretch: 110%; letter-spacing: -0.02em;
  margin-top: 0.4rem;
}
.step-terms { font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-2); margin-top: 0.6rem; line-height: 1.7; }

/* ============================================================
   6 · Gründer
   ============================================================ */
.founder { padding-block: clamp(5rem, 11vh, 9rem); }
.founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.founder-fig img { filter: grayscale(1) contrast(1.04); width: 100%; }
.founder-fig figcaption { margin-top: 0.9rem; }
.founder-copy .h2 { font-size: clamp(1.8rem, 3.2vw, 2.9rem); }
.founder-text { margin-top: 1.4rem; max-width: 58ch; }
.founder-facts { margin-block: 1.4rem 2rem; line-height: 2; }
.founder-facts.mlabel { text-transform: none; letter-spacing: 0.08em; font-size: 0.78rem; }

/* ============================================================
   7 · Kontakt-Band
   ============================================================ */
.contact { background: var(--cobalt); color: var(--paper); padding-block: clamp(5rem, 12vh, 9rem); }
.mlabel--cobalt { color: rgba(241, 238, 228, 0.72); }
.contact-h2 {
  margin-top: 1.2rem;
  font-size: clamp(2rem, 4.5vw, 4.1rem);
  font-weight: 830; font-stretch: 110%;
  letter-spacing: -0.026em; line-height: 1.04;
  max-width: 24ch;
  text-wrap: balance;
}
.contact-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 1.6rem; margin-top: 2.6rem; }
.contact-mail {
  font-family: var(--font-mono); font-size: 0.95rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(241, 238, 228, 0.5);
  padding-bottom: 2px;
  transition: border-color 200ms var(--ease);
}
.contact-mail:hover { border-color: var(--paper); }

/* ============================================================
   Footer — Schriftfeld (Titelblock der Zeichnung)
   ============================================================ */
.footer { padding-block: clamp(3.5rem, 7vh, 5.5rem) clamp(2rem, 4vh, 3rem); }
.tblock { border: 1px solid var(--ink); }
.tblock-row { display: grid; }
.tblock-row--head { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
.tblock-row--nav { grid-template-columns: 1.6fr 1fr 1fr 1fr; border-top: 1px solid var(--line); }
.tblock-row--base { border-top: 1px solid var(--line); }
.tblock-cell {
  padding: 1.1rem 1.3rem 1.2rem;
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 0.45rem;
  min-width: 0;
}
.tblock-cell:first-child { border-left: 0; }
.tblock-cell--brand { justify-content: center; gap: 0.4rem; }
.tblock-brand {
  font-weight: 800; font-stretch: 122%;
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  letter-spacing: 0.3em; line-height: 1;
}
.tblock-brandsub {
  font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 0.62em; color: var(--ink-2);
}
.tblock-label {
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-2);
}
.tblock-value { font-size: 0.98rem; font-weight: 540; line-height: 1.5; }
.tblock-mail { font-family: var(--font-mono); font-size: 0.88rem; font-weight: 400; letter-spacing: 0.02em; width: fit-content; border-bottom: 1px solid var(--line); }
.tblock-mail:hover { color: var(--cobalt); border-color: var(--cobalt); }
.tblock-links { display: flex; flex-direction: column; gap: 0.35rem; }
.tblock-links a { font-size: 0.98rem; font-weight: 540; width: fit-content; }
.tblock-links a:hover { color: var(--cobalt); }
.tblock-copy {
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.1em; color: var(--ink-2);
  padding: 0.8rem 1.3rem;
}

/* ============================================================
   Atmosphäre: Korn, Blattmarken, Maß-Leiste
   ============================================================ */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 90;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: multiply;
}
.sheet-marks { position: fixed; inset: 0; z-index: 88; pointer-events: none; mix-blend-mode: difference; }
.sheet-marks .sm { position: absolute; }
.sm-c { width: 18px; height: 18px; border: 0 solid rgba(150, 154, 168, 0.9); }
.sm-tl { top: 10px; left: 10px; border-top-width: 1px; border-left-width: 1px; }
.sm-tr { top: 10px; right: 10px; border-top-width: 1px; border-right-width: 1px; }
.sm-bl { bottom: 10px; left: 10px; border-bottom-width: 1px; border-left-width: 1px; }
.sm-br { bottom: 10px; right: 10px; border-bottom-width: 1px; border-right-width: 1px; }
.sm-e { top: 50%; width: 12px; height: 1px; background: rgba(150, 154, 168, 0.9); }
.sm-l { left: 10px; } .sm-r { right: 10px; }
.scale-rail {
  position: fixed; left: 26px; top: 50%;
  translate: 0 -50%;
  z-index: 88; pointer-events: none;
  mix-blend-mode: difference;
  display: none;
}
.scale-rail-track {
  display: block; width: 1px; height: 38vh;
  background: rgba(150, 154, 168, 0.55);
  position: relative;
}
.scale-rail-fill {
  position: absolute; left: -0.5px; top: 0; width: 2px; height: 0%;
  background: rgba(235, 238, 248, 0.95);
}
.scale-rail-tick {
  position: absolute; left: -3px; width: 7px; height: 1px;
  background: rgba(150, 154, 168, 0.9);
}

/* CAD-Cursor auf der Zeichnung */
.stage-cross { position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity 180ms var(--ease); }
.stage-cross.is-on { opacity: 1; }
.stage-cross i { position: absolute; background: var(--cobalt); opacity: 0.4; }
.stage-cross .cx { top: 0; bottom: 0; width: 1px; }
.stage-cross .cy { left: 0; right: 0; height: 1px; }
.stage-cross .cread {
  position: absolute; translate: 12px 12px;
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.12em; color: var(--cobalt);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  padding: 2px 6px;
  white-space: nowrap;
}

/* Kontakt-Band: feine Schraffur */
.contact { position: relative; }
.contact-in { position: relative; z-index: 1; }
.contact::after {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(241, 238, 228, 0.04) 0 1px, transparent 1px 10px);
  pointer-events: none;
}

/* Iso-Rasterzone: feines technisches Raster, radial maskiert — nur hinter Arbeitsflächen */
.grid-zone { position: relative; }
.grid-zone::before {
  content: ""; position: absolute; inset: -9% -14%;
  background-image:
    linear-gradient(rgba(18, 21, 28, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 21, 28, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(58% 58% at 50% 50%, #000 0%, transparent 78%);
  mask-image: radial-gradient(58% 58% at 50% 50%, #000 0%, transparent 78%);
  pointer-events: none;
}
.grid-zone > * { position: relative; }

/* Objektstudien: Video (multiply verschmilzt Weiß mit Papier), Bild als Rückfall */
.hero-obj { position: relative; }
.hero-obj img, .hero-obj video { display: block; }
.hero-obj-motion, .study-motion { mix-blend-mode: multiply; }
.study-motion { width: 100%; height: auto; display: block; }
.js .hero-obj-still { display: none; }
.js .hero-obj:not(.video-ok) .hero-obj-still { display: block; }
.js .hero-obj:not(.video-ok) .hero-obj-motion { display: none; }
.js .study .study-motion { display: none; }
.js .study.video-ok .study-motion { display: block; }
.js .study.video-ok > img { display: none; }
@media (prefers-reduced-motion: reduce) {
  .hero-obj-motion, .study-motion { display: none !important; }
  .js .hero-obj-still, .js .study > img { display: block !important; }
}
.hero-obj-frame { position: absolute; inset: 0; pointer-events: none; }
.hero-obj-frame i { position: absolute; width: 22px; height: 22px; border: 0 solid rgba(18, 21, 28, 0.4); }
.hero-obj-frame .f-tl { top: 0; left: 0; border-top-width: 1px; border-left-width: 1px; }
.hero-obj-frame .f-tr { top: 0; right: 0; border-top-width: 1px; border-right-width: 1px; }
.hero-obj-frame .f-bl { bottom: 0; left: 0; border-bottom-width: 1px; border-left-width: 1px; }
.hero-obj-frame .f-br { bottom: 0; right: 0; border-bottom-width: 1px; border-right-width: 1px; }
.hero-obj-caption {
  display: flex; align-items: center; gap: 0.8rem;
  margin-top: 0.75rem;
}
.hero-obj-caption::before, .hero-obj-caption::after {
  content: ""; height: 1px; background: var(--ink); opacity: 0.35; flex: 1;
}
.hero-obj-caption span {
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.14em; color: var(--ink-2);
  text-align: center;
  max-width: 100%;
}

/* ============================================================
   Vierklang-Laufband
   ============================================================ */
.band {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding-block: 0.72rem;
}
.band-track {
  display: flex; white-space: nowrap; width: max-content;
  animation: band-move 46s linear infinite;
}
.band-track span {
  font-family: var(--font-mono); font-size: 0.76rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-2);
}
@keyframes band-move { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .band-track { animation: none; } }

/* Scroll-Hinweis im Hero-Fuß */
.hero-scrollhint { display: flex; align-items: center; gap: 0.6rem; }
.hero-scrollhint i {
  width: 1px; height: 22px; background: var(--ink-2);
  transform-origin: top;
  animation: hint-drop 2.2s var(--ease) infinite;
}
@keyframes hint-drop {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@media (prefers-reduced-motion: reduce) { .hero-scrollhint i { animation: none; } }

/* Scroll-Reveal (einmalig, produktgradig dezent) */
.js .rv { opacity: 0; translate: 0 18px; transition: opacity 550ms var(--ease), translate 550ms var(--ease); transition-delay: calc(var(--rvd, 0) * 70ms); }
.js .rv.rv-in { opacity: 1; translate: 0 0; }
@media (prefers-reduced-motion: reduce) {
  .js .rv { opacity: 1; translate: 0 0; transition: none; }
}

/* Inline-Link-System: Unterstrich zeichnet von links ein, läuft rechts aus */
.u-link {
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-position: 100% 100%;
  background-repeat: no-repeat;
  transition: background-size 300ms var(--ease);
  border-bottom: 0 !important;
}
.u-link:hover { background-size: 100% 1px; background-position: 0% 100%; }

/* ============================================================
   Blatt-Eyebrow (Sektions-Metadaten aller Seiten)
   ============================================================ */
.blatt { display: flex; align-items: center; gap: 0.6rem; }
.blatt::before {
  content: ""; width: 8px; height: 8px;
  border: 1.5px solid var(--ink); flex: none;
}
.mlabel--night.blatt::before { border-color: var(--night-text-2); }
.mlabel--cobalt.blatt::before { border-color: rgba(241, 238, 228, 0.72); }

/* Das Blatt hebt sich am Ende vom Schriftfeld (Footer-Reveal) */
.sheet {
  position: relative; z-index: 1;
  overflow-x: clip;
  background:
    radial-gradient(120% 60% at 18% 0%, rgba(255, 255, 252, 0.55) 0%, rgba(255, 255, 252, 0) 55%),
    radial-gradient(140% 50% at 85% 115%, rgba(18, 21, 28, 0.05) 0%, rgba(18, 21, 28, 0) 55%),
    var(--paper);
}
.reveal-ready .sheet {
  margin-bottom: var(--footer-h, 0px);
  box-shadow: 0 26px 60px rgba(18, 21, 28, 0.16);
}
.reveal-ready .footer {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 0;
}

/* ============================================================
   Unterseiten: Seitenkopf
   ============================================================ */
.phead { padding-top: clamp(7rem, 13vh, 9.5rem); }
.phead-h1 {
  font-size: clamp(2.4rem, 5.6vw, 5.6rem);
  font-weight: 850; font-stretch: 112%;
  letter-spacing: -0.03em; line-height: 1.0;
  margin-top: clamp(1.1rem, 2.2vh, 1.6rem);
  max-width: 22ch;
}
.phead-lead {
  margin-top: clamp(1.2rem, 2.6vh, 1.8rem);
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  color: var(--ink-2);
  max-width: 54ch;
}

/* ============================================================
   Leistungen: Index, Subnav, Blöcke
   ============================================================ */

.lsubnav {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: blur(10px);
  border-block: 1px solid var(--line);
}
.lsubnav-in { display: flex; gap: clamp(1.2rem, 3vw, 2.6rem); overflow-x: auto; }
.lsubnav a {
  font-family: var(--font-mono); font-size: 0.74rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-2);
  padding-block: 0.8rem;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 200ms var(--ease), border-color 200ms var(--ease);
}
.lsubnav a span { color: var(--cobalt); }
.lsubnav a:hover { color: var(--ink); }
.lsubnav a.is-active { color: var(--ink); border-bottom-color: var(--cobalt); }

.lblock { padding-block: clamp(4.5rem, 10vh, 8rem); scroll-margin-top: 5.5rem; }
.lblock-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.lblock--flip .lblock-grid { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); }
.lblock--flip .lblock-fig { order: 2; }
.study { position: relative; }
.study img { width: 100%; height: auto; display: block; }
.lblock-h2 {
  font-size: clamp(2.3rem, 4.6vw, 4.3rem);
  font-weight: 840; font-stretch: 112%;
  letter-spacing: -0.028em; line-height: 1.0;
  margin-top: 0.9rem;
}
.lblock-text { margin-top: 1.3rem; max-width: 52ch; color: var(--ink); }
.lblock-deliver { margin-top: 1.8rem; }
.lblock-deliver dd ul { margin-top: 0.7rem; border-top: 1px solid var(--line); }
.lblock-deliver li {
  position: relative;
  border-bottom: 1px solid var(--line);
  padding: 0.62rem 0 0.62rem 1.5rem;
  color: var(--ink);
  font-size: 0.99rem;
}
.lblock-deliver li::before {
  content: ""; position: absolute; left: 2px; top: 1.05rem;
  width: 7px; height: 7px; border: 1.5px solid var(--cobalt);
}
.lblock-proof { margin-top: 1.5rem; }
.lblock-proof a { color: var(--cobalt); border-bottom: 1px solid currentColor; }
.lblock-proof a:hover { color: var(--cobalt-deep); }

.lfit { padding-block: clamp(3.5rem, 8vh, 6rem); }
.lfit .mlabel { margin-bottom: 2rem; }
.lwork { background: var(--paper-2); padding-block: clamp(4rem, 9vh, 7rem); }
.lwork-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.lwork .h2 { margin-top: 0.9rem; }
.lwork-list { border-top: 1px solid var(--line); margin-top: 0.4rem; }
.lwork-list li {
  position: relative;
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0 0.85rem 1.6rem;
}
.lwork-list li::before {
  content: ""; position: absolute; left: 2px; top: 1.32rem;
  width: 7px; height: 7px; border: 1.5px solid var(--ink);
}

/* ============================================================
   Arbeit: Annotationen + Stückliste
   ============================================================ */
.case--work { padding-top: clamp(4rem, 9vh, 7rem); }
.case--work .case-h2 { font-size: clamp(1.85rem, 3.3vw, 3.05rem); }
.case-fig--anno { position: relative; }
.case-anno { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.case-anno line { stroke: var(--night-text); stroke-width: 1; opacity: 0.65; }
.case-anno circle { fill: none; stroke: var(--cobalt); stroke-width: 1.6; }
.case-anno text {
  font-family: var(--font-mono); font-size: 24px;
  fill: var(--night-text); letter-spacing: 0.08em;
}
.anno { transition: opacity 600ms var(--ease); }
.anno.is-pending { opacity: 0; }
.anno-2 { transition-delay: 250ms; }
.anno-3 { transition-delay: 500ms; }

.exp { padding-block: clamp(4.5rem, 10vh, 8rem); }
.exp-head.exp-head--split {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.exp-fig { max-width: 420px; justify-self: end; width: 100%; }
.phead-split {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.phead-fig { max-width: 430px; justify-self: end; width: 100%; }
.exp--quiet { padding-top: 0; }
.exp-head { margin-bottom: clamp(2rem, 5vh, 3.4rem); display: flex; flex-direction: column; gap: 1rem; }
.exp-lead { color: var(--ink-2); max-width: 54ch; }
.exp-list { border-top: 1px solid var(--line); margin-top: 1.6rem; }
.exp-row {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 5fr) minmax(0, 5fr);
  gap: 1.4rem; align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding-block: clamp(1.2rem, 2.8vh, 1.8rem);
  transition: opacity 240ms var(--ease);
}
.exp-list:has(.exp-row:hover) .exp-row:not(:hover) { opacity: 0.5; }
.exp-title {
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 780; font-stretch: 108%;
  letter-spacing: -0.015em; line-height: 1.2;
}
.exp-body { color: var(--ink-2); font-size: 0.97rem; }
.exp-body a { color: var(--cobalt); border-bottom: 1px solid currentColor; }

/* ============================================================
   Über: Gründer, Prinzipien, Standort
   ============================================================ */
.founder--page { padding-top: clamp(3.5rem, 8vh, 6rem); }
.founder-cap { margin-top: 0.9rem; }
.founder-quote {
  border-left: 2px solid var(--cobalt);
  padding-left: 1.2rem;
  margin-top: 1.6rem;
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  line-height: 1.5;
  font-weight: 560;
  max-width: 50ch;
}
.founder--page .founder-text { margin-top: 1.5rem; }
.founder-grid--dossier { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); align-items: start; }
.founder-quote--display {
  border-left: 3px solid var(--cobalt);
  font-size: clamp(1.5rem, 2.6vw, 2.5rem);
  font-weight: 780; font-stretch: 108%;
  letter-spacing: -0.02em; line-height: 1.22;
  max-width: 24ch;
  text-wrap: balance;
}
.dossier { margin-top: 1.1rem; border-top: 1px solid var(--line); }
.dossier-row {
  display: grid; grid-template-columns: 7.5rem minmax(0, 1fr);
  gap: 1rem; align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding-block: 0.62rem;
}
.dossier-row dt {
  font-family: var(--font-mono); font-size: 0.66rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-2);
}
.dossier-row dd { font-size: 0.94rem; font-weight: 560; }
.founder-chips {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-top: 1.6rem;
}
.founder-chips li {
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 0.42rem 0.7rem;
  transition: border-color 200ms var(--ease), color 200ms var(--ease);
}
.founder-chips li:hover { border-color: var(--cobalt); color: var(--cobalt); }

.prinzipien { background: var(--paper-2); padding-block: clamp(4rem, 9vh, 7rem); }
.prinzipien-head { display: flex; flex-direction: column; gap: 1rem; margin-bottom: clamp(2.2rem, 5vh, 3.4rem); }
.prinzip-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 3rem);
  border-top: 1px solid var(--line);
  padding-top: clamp(1.6rem, 3.5vh, 2.4rem);
}
.prinzip {
  position: relative;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 1.5rem 1.5rem 1.6rem;
  transition: translate 240ms var(--ease), border-color 240ms var(--ease), box-shadow 240ms var(--ease);
}
.prinzip:hover {
  translate: 0 -5px;
  border-color: var(--ink);
  box-shadow: 0 14px 34px rgba(18, 21, 28, 0.09);
}
.prinzip::before {
  content: ""; position: absolute; right: 1.3rem; top: 1.5rem;
  width: 9px; height: 9px; border: 1.5px solid var(--cobalt);
  transition: background-color 240ms var(--ease);
}
.prinzip:hover::before { background: var(--cobalt); }
.prinzip-nr { margin-bottom: 0.9rem; }
.prinzip-title {
  font-size: clamp(1.25rem, 1.9vw, 1.6rem);
  font-weight: 800; font-stretch: 110%;
  letter-spacing: -0.018em;
}
.prinzip-text { margin-top: 0.6rem; color: var(--ink-2); font-size: 0.98rem; }
.prinzip-note { margin-top: clamp(2rem, 4.5vh, 3rem); }

.ort { padding-block: clamp(3.5rem, 8vh, 6rem); }
.ort-in { border-block: 1px solid var(--line); padding-block: clamp(1.6rem, 4vh, 2.4rem); }
.ort-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.ort-text { margin-top: 1.2rem; color: var(--ink-2); max-width: 46ch; }
.ort-line {
  font-size: clamp(1.7rem, 3.4vw, 2.9rem);
  font-weight: 810; font-stretch: 110%;
  letter-spacing: -0.02em;
  margin-top: 0.8rem;
}
.ort-meta { margin-top: 0.5rem; }

/* ============================================================
   Kontakt: Anfragebogen
   ============================================================ */
.anfrage { padding-block: clamp(3rem, 7vh, 5rem) clamp(4rem, 9vh, 7rem); }
.anfrage-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.bogen { border: 1px solid var(--ink); padding: clamp(1.4rem, 3.4vw, 2.6rem); background: var(--panel); }
.bogen-head { margin-bottom: 1.6rem; }
.form-note { padding: 0.9rem 1.1rem; margin-bottom: 1.4rem; font-size: 0.95rem; border: 1px solid; }
.form-note--ok { border-color: var(--cobalt); color: var(--ink); background: color-mix(in srgb, var(--cobalt) 6%, transparent); }
.form-note--err { border-color: #B4231A; color: var(--ink); background: rgba(180, 35, 26, 0.06); }
.form-note a { color: var(--cobalt); border-bottom: 1px solid currentColor; }
.field { margin-bottom: 1.25rem; }
.field label {
  display: block;
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 0.45rem;
}
.field-opt { text-transform: none; letter-spacing: 0.06em; opacity: 0.75; }
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit; color: var(--ink);
  background: transparent;
  border: 1px solid rgba(18, 21, 28, 0.35);
  border-radius: 6px;
  padding: 0.7rem 0.85rem;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}
.field textarea { resize: vertical; min-height: 9rem; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: none;
  border-color: var(--cobalt);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--cobalt) 25%, transparent);
}
.field-hint { font-size: 0.85rem; color: var(--ink-2); margin-top: 0.45rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.consent {
  display: flex; gap: 0.7rem; align-items: flex-start;
  font-size: 0.9rem; color: var(--ink-2);
  margin-block: 0.4rem 1.5rem;
  cursor: pointer;
}
.consent input { margin-top: 0.28rem; accent-color: var(--cobalt); width: 1rem; height: 1rem; flex: none; }
.consent a { color: var(--cobalt); border-bottom: 1px solid currentColor; }
.bogen-submit { width: 100%; justify-content: center; }

.draht-card { border: 1px solid var(--line); padding: 1.4rem; background: var(--panel); }
.draht-foto { width: 92px; height: 115px; object-fit: cover; filter: grayscale(1) contrast(1.04); margin-bottom: 0.9rem; }
.draht-name { font-weight: 800; font-stretch: 110%; font-size: 1.25rem; letter-spacing: -0.015em; margin-bottom: 0.2rem; }
.draht-text { margin-top: 0.9rem; font-size: 0.95rem; color: var(--ink-2); }
.draht-mail {
  display: inline-block; margin-top: 0.5rem;
  font-family: var(--font-mono); font-size: 0.9rem;
  color: var(--cobalt);
  border-bottom: 1px solid currentColor;
  overflow-wrap: anywhere;
}
.draht-list { margin-top: 1.4rem; border-top: 1px solid var(--line); }
.draht-list li {
  position: relative;
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 0 0.75rem 1.5rem;
  font-size: 0.94rem; color: var(--ink);
}
.draht-list li::before {
  content: ""; position: absolute; left: 2px; top: 1.18rem;
  width: 7px; height: 7px; border: 1.5px solid var(--cobalt);
}
.ablauf { padding-bottom: clamp(4.5rem, 10vh, 8rem); }
.ablauf .blatt { margin-bottom: 2.2rem; }

/* Still-Studien ohne Video atmen minimal */
.study--breathe img { animation: study-breathe 9s ease-in-out infinite alternate; }
@keyframes study-breathe { from { transform: translateY(3px); } to { transform: translateY(-3px); } }
@media (prefers-reduced-motion: reduce) { .study--breathe img { animation: none; } }

/* Projekte: Laptop groß */
.case-grid--wide { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
.case-grid--wide .case-fig img { width: 100%; }

/* Case-Hero: zweispaltig, Produkt im Browserfenster */
.cs-head { padding-block: clamp(6.5rem, 12vh, 9rem) clamp(3rem, 7vh, 5rem); }
.cs-hero {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 4.5vw, 4.5rem);
  align-items: center;
}
.cs-hero-copy .cs-h1logo { margin-top: 1.1rem; }
.cs-hero-copy .cs-h1logo img { width: min(100%, 480px); }
.cs-hero-copy .cs-claim {
  margin-top: 1.6rem;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 830; font-stretch: 110%;
  letter-spacing: -0.025em; line-height: 1.08;
  color: var(--night-text);
  max-width: none;
}
.cs-hero-copy .cs-lead { margin-top: 1.1rem; max-width: 42ch; }
.cs-chip-live { display: flex; align-items: center; gap: 0.5rem; }
.cs-chip-live::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--cobalt);
  animation: readout-pulse 2.4s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) { .cs-chip-live::before { animation: none; } }

.cs-browser {
  border: 1px solid var(--night-line);
  border-radius: 10px;
  overflow: hidden;
  background: #161a28;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
}
.cs-browser-bar {
  display: flex; align-items: center; gap: 0.45rem;
  padding: 0.6rem 0.9rem;
  background: #1c2132;
  border-bottom: 1px solid var(--night-line);
}
.cs-dot { width: 10px; height: 10px; border-radius: 50%; flex: none; }
.cs-dot--r { background: #ED6A5E; }
.cs-dot--y { background: #F4BF4F; }
.cs-dot--g { background: #61C554; }
.cs-url {
  flex: 1; text-align: center;
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.06em; color: var(--night-text-2);
}
.cs-browser img { display: block; width: 100%; height: auto; }

.cs-kpis {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--night-line);
  border-bottom: 1px solid var(--night-line);
  margin-top: clamp(2.5rem, 6vh, 4rem);
}
.cs-kpi { padding: clamp(1.4rem, 3vh, 2.2rem) 0; text-align: center; }
.cs-kpi + .cs-kpi { border-left: 1px solid var(--night-line); }
.cs-kpi-num {
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 850; font-stretch: 112%;
  letter-spacing: -0.03em; line-height: 1;
  color: #6E8CFF;
  margin-bottom: 0.6rem;
}
.cs-head .case-note { margin-top: clamp(2rem, 4.5vh, 3rem); }

/* Case: Report groß + echte Screens (Nachtsektion) */
.cs-big { background: var(--night); padding-block: 0 clamp(4rem, 9vh, 7rem); margin-top: calc(-1 * clamp(4rem, 9vh, 7rem)); }
.cs-big-fig img { width: 100%; height: auto; }
.cs-big-fig .case-fig-cap { margin-top: 0.4rem; }
.cs-screens {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.6vw, 2.4rem);
  margin-top: clamp(2rem, 5vh, 3.5rem);
  align-items: start;
}
.cs-screen img { width: 100%; height: auto; border: 1px solid var(--night-line); }
.cs-screen figcaption { margin-top: 0.6rem; color: var(--night-text-2); }

/* Hero V8: großes Visual neben der Headline */
.hero-grid2 {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 6.4fr) minmax(0, 5.6fr);
  gap: clamp(2rem, 4.5vw, 4.5rem);
  align-items: center;
  padding-block: clamp(1rem, 3vh, 2rem);
}
.hero-copy2 .hero-h1 { font-size: clamp(2.4rem, 5vw, 5.2rem); }
.hero-copy2 .hero-lead { margin-top: clamp(1.3rem, 2.8vh, 2rem); }
.hero-copy2 .hero-ctas { margin-top: clamp(1.5rem, 3vh, 2.2rem); }
.hero-fig--big { max-width: none; width: 100%; justify-self: stretch; }
.hero-fig--big .hero-obj img, .hero-fig--big .hero-obj video {
  max-height: 76vh; width: 100%; height: auto; object-fit: contain; margin: 0;
}
.js.is-loaded .hero-fig--big .hero-obj { animation: hero-obj-in 1.2s var(--ease) both; animation-delay: 200ms; }
@keyframes hero-obj-in { from { opacity: 0; transform: scale(0.955); } to { opacity: 1; transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .js.is-loaded .hero-fig--big .hero-obj { animation: none; } }

/* Logos der Case-Marke */
.case-h2logo { margin-top: 1.2rem; }
.case-h2logo img { width: min(100%, 420px); height: auto; }
.cs-h1logo { margin-top: clamp(1.4rem, 3vh, 2rem); }
.cs-h1logo img { width: min(100%, 720px); height: auto; }
.case-teaserline {
  margin-top: 1rem;
  font-size: clamp(1.25rem, 1.9vw, 1.7rem);
  font-weight: 780; font-stretch: 108%;
  letter-spacing: -0.018em; line-height: 1.25;
  color: var(--night-text);
  max-width: 30ch;
}

/* Landschaftsmotiv als Abschluss der Ausgangslagen */
.lagen-fig { margin-top: clamp(1.6rem, 4vh, 2.6rem); }

/* Case-Study-Seite: helle Navigation über der Nachtsektion */
.page-case .topbar:not(.is-scrolled) .nav-link,
.page-case .topbar:not(.is-scrolled) .brand-name { color: var(--night-text); }
.page-case .topbar:not(.is-scrolled) .brand-sub { color: var(--night-text-2); }
.page-case .topbar:not(.is-scrolled) .nav-link::after { background: var(--night-text); }
.page-case .topbar:not(.is-scrolled) .nav-burger span { background: var(--night-text); }

/* ============================================================
   Case Study bewertedeineimmobilie
   ============================================================ */
.cs-head { padding-top: clamp(7rem, 13vh, 9.5rem); }
.cs-h1 { color: var(--night-text); max-width: 16ch; overflow-wrap: break-word; }
.cs-lead { margin-top: 1.4rem; max-width: 62ch; color: var(--night-text-2); font-size: clamp(1.05rem, 1.35vw, 1.2rem); }
.cs-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.6rem; }
.cs-chips li {
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--night-text);
  border: 1px solid var(--night-line);
  padding: 0.42rem 0.7rem;
}
.cs-headgrid { margin-top: clamp(2.5rem, 6vh, 4rem); align-items: center; }
.cs-claim {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 800; font-stretch: 108%;
  letter-spacing: -0.02em; line-height: 1.2;
  color: var(--night-text);
  max-width: 20ch;
}
.cs-claimtext { margin-top: 1rem; color: var(--night-text-2); max-width: 46ch; }
.cs-headcopy .case-data { margin-top: 1.8rem; }

.cs-produkt { padding-block: clamp(4.5rem, 10vh, 8rem) clamp(3rem, 7vh, 5rem); }
.cs-produkt .method-head { margin-bottom: clamp(2rem, 4.5vh, 3rem); }
.spec-scroll { overflow-x: auto; }
.spec-table { width: 100%; min-width: 640px; border-collapse: collapse; border: 1px solid var(--ink); }
.spec-table th {
  font-family: var(--font-mono); font-size: 0.66rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-2); font-weight: 400;
  text-align: left;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--ink);
}
.spec-table td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
  vertical-align: top;
}
.spec-table td:first-child { font-weight: 700; font-stretch: 108%; white-space: nowrap; }
.spec-table td:nth-child(2) { font-variant-numeric: tabular-nums; font-weight: 700; white-space: nowrap; }
.spec-table td:nth-child(3) { white-space: nowrap; }
.spec-table tr:last-child td { border-bottom: 0; }
.spec-table-hl { background: color-mix(in srgb, var(--cobalt) 5%, transparent); }
.spec-table-hl td:first-child { color: var(--cobalt); }
.spec-table tbody tr { transition: opacity 240ms var(--ease); }
.spec-table tbody:has(tr:hover) tr:not(:hover) { opacity: 0.55; }
.spec-note { margin-top: 0.9rem; }

.cs-report { padding-block: clamp(4rem, 9vh, 7rem); }
.cs-report-grid {
  display: grid;
  grid-template-columns: minmax(0, 4.2fr) minmax(0, 7.8fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.cs-report-side { position: sticky; top: 5.5rem; }
.cs-report-side .h2 { margin-top: 0.9rem; }
.cs-report-lead { margin-top: 1.2rem; color: var(--ink-2); max-width: 40ch; margin-bottom: 2rem; }
.cs-chapters { border-top: 1px solid var(--line); counter-reset: none; }
.cs-chapters li {
  display: flex; align-items: baseline; gap: 1.1rem;
  border-bottom: 1px solid var(--line);
  padding-block: 0.85rem;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 600; font-stretch: 105%;
  transition: opacity 240ms var(--ease), translate 240ms var(--ease);
}
.cs-chapters li span { font-family: var(--font-mono); font-size: 0.74rem; color: var(--cobalt); flex: none; }
.cs-chapters:has(li:hover) li:not(:hover) { opacity: 0.45; }
.cs-chapters li:hover { translate: 6px 0; }

.cs-flow { background: var(--paper-2); padding-block: clamp(4rem, 9vh, 7rem); }
.cs-flow-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.cs-steps { margin-top: 2rem; grid-template-columns: 1fr; gap: 1.4rem; }
.cs-steps::before { display: none; }
.cs-steps .step { padding-top: 0; padding-left: 2rem; }
.cs-steps .step::before { top: 0.35rem; background: var(--paper-2); }
.cs-flow-note { margin-top: 1.8rem; }
.cs-grenzen { background: var(--paper); }

/* ============================================================
   Responsive
   ============================================================ */
@media (min-width: 1101px) {
  .scale-rail { display: block; }
}
@media (max-width: 1020px) {
  .hero-grid2 { grid-template-columns: minmax(0, 1fr); }
  .hero-fig--big { max-width: 460px; }
  .hero-fig--big .hero-obj img, .hero-fig--big .hero-obj video { max-height: none; }
  .hero-row { grid-template-columns: minmax(0, 1fr); align-items: start; }
  .hero-fig { max-width: 420px; width: 100%; justify-self: end; margin-top: 1rem; }
  .hero-obj img, .hero-obj video { max-height: none; width: 100%; margin-left: 0; }
  .founder-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); align-items: start; }
}
@media (max-width: 880px) {
  .nav { display: none; }
  .nav-burger {
    display: grid; gap: 6px; padding: 0.7rem 0.2rem;
    background: none; border: 0; cursor: pointer;
  }
  .nav-burger span { display: block; width: 26px; height: 2px; background: var(--ink); transition: transform 240ms var(--ease), opacity 240ms var(--ease); }
  .nav-burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobilenav {
    display: flex; flex-direction: column;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 0.8rem var(--pad) 1.6rem;
  }
  .mobilenav[hidden] { display: none; }
  .mobilenav-link {
    font-size: 1.5rem; font-weight: 780; font-stretch: 110%;
    letter-spacing: -0.02em; padding-block: 0.65rem;
  }
  .mobilenav-link--cta { color: var(--cobalt); }
  .topbar.is-open { background: var(--paper); }

  .hero-foot { flex-direction: column; gap: 0.35rem; }
  .system-grid { grid-template-columns: minmax(0, 1fr); }
  .system-grid > .system-stage {
    position: sticky; top: 3.6rem; z-index: 5;
    background: color-mix(in srgb, var(--paper) 92%, transparent);
    backdrop-filter: blur(6px);
  }
  .axo--stage { max-height: 42vh; margin-inline: auto; }
  .station { min-height: 46vh; grid-template-columns: 3.4rem minmax(0, 1fr); }
  .system-stations::before { left: 2.5rem; }
  .station-body { padding: 1.3rem 1.35rem 1.4rem; }
  .station-body::before { left: calc(-0.9rem - 4px); }
  .station-body::after { left: calc(-0.9rem - 1px); }
  .system-more { margin-left: calc(3.4rem + 1.35rem); }
  .system-deco { display: none; }

  .case-grid { grid-template-columns: minmax(0, 1fr); }
  .case-fig { order: -1; margin-bottom: 0.5rem; }
  .method-steps { grid-template-columns: repeat(2, 1fr); row-gap: 2.4rem; }
  .method-steps::before { display: none; }
  .lage { grid-template-columns: 2rem minmax(0, 1fr); }
  .lage-sub { grid-column: 2; }
  .founder-grid { grid-template-columns: minmax(0, 1fr); }
  .founder-fig { max-width: 380px; }
  .sheet-marks { display: none; }
  .lblock-grid, .lblock--flip .lblock-grid { grid-template-columns: minmax(0, 1fr); }
  .lblock--flip .lblock-fig { order: 0; }
  .lblock-fig { max-width: 440px; }
  .lwork-grid { grid-template-columns: minmax(0, 1fr); }
  .exp-row { grid-template-columns: minmax(0, 1fr); gap: 0.4rem; }
  .exp-head--split, .phead-split { grid-template-columns: minmax(0, 1fr); }
  .cs-report-grid, .cs-flow-grid { grid-template-columns: minmax(0, 1fr); }
  .cs-hero { grid-template-columns: minmax(0, 1fr); }
  .cs-kpis { grid-template-columns: minmax(0, 1fr); }
  .cs-kpi + .cs-kpi { border-left: 0; border-top: 1px solid var(--night-line); }
  .cs-report-side { position: static; }
  .spec-table td:nth-child(3) { white-space: normal; }
  .exp-fig, .phead-fig { justify-self: start; max-width: 380px; }
  .ort-grid { grid-template-columns: minmax(0, 1fr); }
  .ort-fig { max-width: 380px; }
  .case-shots { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .cs-screens { grid-template-columns: minmax(0, 1fr); }
  .case-grid--wide { grid-template-columns: minmax(0, 1fr); }
  .case-facttile { grid-column: 1 / -1; }
  .founder-grid--dossier { grid-template-columns: minmax(0, 1fr); }
  .prinzip-grid { grid-template-columns: minmax(0, 1fr); row-gap: 1.8rem; }
  .anfrage-grid { grid-template-columns: minmax(0, 1fr); }
  .field-row { grid-template-columns: minmax(0, 1fr); }
  .case-anno text { font-size: 22px; }
  .tblock-row--head, .tblock-row--nav { grid-template-columns: 1fr 1fr; }
  .tblock-cell { border-left: 0; border-top: 1px solid var(--line); }
  .tblock-row--head .tblock-cell:nth-child(-n+2) { border-top: 0; }
  .tblock-cell--brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .tblock-row--head, .tblock-row--nav { grid-template-columns: 1fr; }
  .tblock-row--head .tblock-cell:nth-child(2) { border-top: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .station { min-height: 38vh; }
  .case-shots { grid-template-columns: minmax(0, 1fr); }
  .cs-chips li { font-size: 0.64rem; }
  .band-track span { font-size: 0.68rem; }
  .bogen { padding: 1.2rem; }
  .tblock-brand { font-size: 1.5rem; letter-spacing: 0.24em; }
  .founder-quote--display { font-size: 1.35rem; }
  .contact-h2 { font-size: 1.75rem; }
}
@media (max-width: 480px) {
  .hero { padding-top: 5.6rem; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .contact-ctas { gap: 1.2rem; }
  .method-steps { grid-template-columns: 1fr; }
  .case-fig-inset { left: 0; }
  .phead-h1 { font-size: clamp(1.9rem, 8.4vw, 2.4rem); }
  .lblock { padding-block: 3rem; }
  .exp-fig, .phead-fig { max-width: 100%; }
}

/* Diagnose-Schalter (?nofx=grain.marks.rail.blur.sheet.reveal) */
.nofx-grain body::after { display: none !important; }
.nofx-marks .sheet-marks { display: none !important; }
.nofx-rail .scale-rail { display: none !important; }
.nofx-blur .topbar { backdrop-filter: none !important; }
.nofx-sheet .sheet { overflow-x: visible !important; box-shadow: none !important; }
.nofx-reveal .sheet { margin-bottom: 0 !important; }
.nofx-reveal .footer { position: static !important; }

/* ============================================================
   Shot-Modus: kompakte Ganzseiten-Prüfung ohne Viewport-Höhen
   ============================================================ */
.shot .hero { min-height: auto; }
.shot .study-motion, .shot .hero-obj-motion { display: none !important; }
.shot .hero-obj-still, .shot .study > img { display: block !important; }
.shot .axo--hero { max-height: none; }
.shot .axo--stage { max-height: none; }
.shot .station { min-height: 440px; }
.shot .system-stage { position: static; }

/* ============================================================
   Reduced Motion — vollständige Endzustände
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .stage-cross { display: none; }
  .js [data-load], .js .mask-in[data-load] { opacity: 1; transform: none; animation: none; }
  .axo-stream { animation: none; }
  .axo--stage .axo-lift > .axo-layer { animation: none; }
  .axo--stage .axo-lift { transform: translateY(calc(var(--lift) * -1 * var(--gap-explode))); }
  .js .station { opacity: 1; }
  .btn-arrow, .nav-link::after { transition: none; }
}
