/* ============================================================
   ELZN / AUDIO — Site Design System
   Brutalist. Ink on paper. One accent. No apologies.
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face { font-family: "Space Grotesk"; src: url("../fonts/SpaceGrotesk-Regular.ttf") format("truetype");  font-weight: 400; font-display: swap; }
@font-face { font-family: "Space Grotesk"; src: url("../fonts/SpaceGrotesk-Medium.ttf") format("truetype");   font-weight: 500; font-display: swap; }
@font-face { font-family: "Space Grotesk"; src: url("../fonts/SpaceGrotesk-SemiBold.ttf") format("truetype"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Space Grotesk"; src: url("../fonts/SpaceGrotesk-Bold.ttf") format("truetype");     font-weight: 700; font-display: swap; }
@font-face { font-family: "JetBrains Mono"; src: url("../fonts/JetBrainsMono-Regular.ttf") format("truetype");  font-weight: 400; font-display: swap; }
@font-face { font-family: "JetBrains Mono"; src: url("../fonts/JetBrainsMono-Medium.ttf") format("truetype");   font-weight: 500; font-display: swap; }
@font-face { font-family: "JetBrains Mono"; src: url("../fonts/JetBrainsMono-SemiBold.ttf") format("truetype"); font-weight: 600; font-display: swap; }

/* ---------- Tokens ---------- */
:root {
  --bg:        #EBE9E4;
  --bg-deep:   #D8D4CC;
  --ink:       #0A0A0A;
  --ink-soft:  #44423E;
  --paper:     #F5F3ED;
  --accent:    #FF3B1F;
  --good:      #6B8E4E;
  --grid:      rgba(10,10,10,.08);

  --sans: "Space Grotesk", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --gutter: clamp(20px, 4vw, 64px);
  --line:   1.5px;

  --ease-out:  cubic-bezier(.16, 1, .3, 1);
  --ease-soft: cubic-bezier(.25, .1, .25, 1);
  --t-fast: .35s;
  --t-med:  .7s;
  --t-slow: 1.1s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
html, body { height: auto; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }
::selection { background: var(--accent); color: var(--paper); }

body.no-native-cursor, body.no-native-cursor a, body.no-native-cursor button { cursor: none; }

/* ---------- Typography helpers ---------- */
.mono       { font-family: var(--mono); }
.kicker {
  font-family: var(--mono);
  font-size: clamp(10px, .8vw, 12px);
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex; align-items: center; gap: 14px;
}
.kicker::before { content: ""; width: 34px; height: var(--line); background: var(--accent); flex: none; }

.giant {
  font-weight: 700;
  line-height: .88;
  letter-spacing: -.025em;
  text-transform: uppercase;
}
h2.giant { font-size: clamp(44px, 8.5vw, 128px); }

.slash { color: var(--accent); font-style: normal; }

.body-l { font-size: clamp(18px, 1.7vw, 24px); line-height: 1.45; }
.body-m { font-size: clamp(15px, 1.15vw, 17px); line-height: 1.6; color: var(--ink-soft); }
.num-mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* ---------- Layout ---------- */
.container { padding-left: var(--gutter); padding-right: var(--gutter); }
.section { position: relative; padding: clamp(80px, 12vh, 160px) 0; }
.hr { height: var(--line); background: var(--ink); opacity: .9; }
.hr--soft { opacity: .18; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  mix-blend-mode: normal;
  pointer-events: none;
  transition: transform .5s var(--ease-out);
}
.site-header > * { pointer-events: auto; }
.site-header.is-hidden { transform: translateY(-110%); }
.site-header.is-solid {
  background: var(--paper);
  border-bottom: var(--line) solid var(--ink);
}

.logo { display: flex; align-items: center; gap: 12px; }
/* Brand-Kachel = Plugin-Icon: Ink-Quadrat, E, Akzent-Slash */
.logo-tile {
  width: 36px; height: 36px; flex: 0 0 36px;
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--paper);
  font-family: var(--sans); font-weight: 700; font-size: 19px; line-height: 1;
  display: grid; place-items: center;
  padding-right: 11px;
}
.logo-tile::after {
  content: ""; position: absolute; right: 7px; top: -25%;
  width: 5px; height: 150%;
  background: var(--accent);
  transform: rotate(22deg);
  transition: transform .5s var(--ease-out);
}
.logo:hover .logo-tile::after { transform: rotate(22deg) translateY(-14%); }
.logo-word {
  font-family: var(--sans); font-weight: 700; font-size: 16px;
  letter-spacing: .015em; line-height: 1;
  white-space: nowrap;   /* "/" ist sonst eine Umbruchstelle -> zweizeilig */
}
.logo-word b { color: var(--accent); font-weight: 700; }


.nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav-link {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  position: relative; padding: 6px 2px;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: var(--line); background: var(--ink);
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--t-fast) var(--ease-out);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.cart-btn {
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  border: var(--line) solid var(--ink); background: var(--paper);
  padding: 8px 14px;
  display: flex; align-items: center; gap: 8px;
  transition: background var(--t-fast), color var(--t-fast);
}
.cart-btn:hover { background: var(--ink); color: var(--paper); }
.cart-count {
  min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--accent); color: var(--paper);
  display: grid; place-items: center;
  font-size: 10px; font-weight: 600;
}

/* ============================================================
   HERO — Print-Raster statt Canvas (kein "KI-Wellen"-Hintergrund)
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 120px var(--gutter) clamp(36px, 6vh, 72px);
  overflow: hidden;
  background: var(--bg);
  background-image:
    linear-gradient(rgba(10,10,10,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,10,.07) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero-inner { position: relative; z-index: 1; }

.hero-title {
  font-size: clamp(72px, 17.5vw, 270px);
  font-weight: 700; line-height: .84; letter-spacing: -.03em;
  text-transform: uppercase;
}
.hero-title .row { display: block; overflow: hidden; }
.hero-title .char { display: inline-block; transform: translateY(115%); }
.hero-title.is-in .char { transition: transform 1s var(--ease-out); transform: translateY(0); }

/* ---- zentrierter Hero (Index) + Intro-Pop nach dem Preloader ---- */
.hero--center {
  justify-content: center; text-align: center;
  background-image: none;            /* das Raster zeichnet der Warp-Canvas */
}
.hero--center .hero-inner { display: flex; flex-direction: column; align-items: center; width: 100%; }
.hero--center .kicker { justify-content: center; }
.hero--center .hero-title {
  font-size: clamp(44px, 13vw, 220px);
  white-space: nowrap;            /* ELZN/AUDIO in EINER Zeile */
  margin-top: 22px;
  transform: scale(.9);
  transition: transform 1.2s cubic-bezier(.22, 1.35, .32, 1);
}
.hero--center .hero-title.is-in { transform: scale(1); }

/* ---- Hero-Flyout: Mockups rahmen die Wortmarke, fliegen beim
       Scrollen nach außen; nächste Sektion erscheint nahtlos ---- */
/* Hero + Principles teilen sich EINE Pin-Szene:
   ~0-22% Flyout, danach die vier Manifest-Steps */
.hero-scene { position: relative; height: 560vh; }
.hero-scene .hero {
  position: sticky; top: 0;
  height: 100vh; height: 100svh;
  min-height: 0;
}
.hero-mocks {
  position: absolute; inset: 0; z-index: 1;
  perspective: 1500px; perspective-origin: 50% 46%;
  pointer-events: none;
}
.fly-panel {
  position: absolute;
  transform:
    translate(-50%, -50%)
    translate3d(var(--fx, 0px), var(--fy, 0px), 0)
    var(--tilt, rotateY(0deg))
    scale(var(--fs, 1));
  will-change: transform, opacity;
}
.fly-panel .mock {
  border: var(--line) solid var(--ink);
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--ink);
  opacity: 0; transform: translateY(34px) scale(.94);
  transition: opacity .8s var(--ease-out) var(--d, 0s), transform .8s var(--ease-out) var(--d, 0s);
}
body.is-ready .fly-panel .mock { opacity: 1; transform: none; }
.fly-panel img { display: block; width: 100%; height: auto; }

.fp-eq    { left: 11%; top: 32%; width: clamp(220px, 23vw, 380px); --tilt: rotateY(17deg) rotateX(2deg); --d: .15s; }
.fp-comp  { left: 87%; top: 27%; width: clamp(200px, 21vw, 345px); --tilt: rotateY(-15deg) rotateX(2deg); --d: .3s; }
.fp-stage { left: 8%;  top: 76%; width: clamp(230px, 24vw, 395px); --tilt: rotateY(19deg) rotateX(-3deg); --d: .45s; }
.fp-limit { left: 89%; top: 74%; width: clamp(210px, 22vw, 365px); --tilt: rotateY(-19deg) rotateX(-3deg); --d: .6s; }
.fp-sat   { left: 30%; top: 7%;  width: clamp(150px, 16vw, 265px); --tilt: rotateY(7deg) rotateX(6deg); --d: .75s; }
.fp-scan  { left: 70%; top: 92%; width: clamp(170px, 18vw, 300px); --tilt: rotateY(-7deg) rotateX(-6deg); --d: .9s; }

.hero--center .hero-inner { position: relative; z-index: 2; }
@media (max-width: 1000px) {
  .fp-sat, .fp-scan { display: none; }
  .fp-eq    { left: 8%;  top: 24%; }
  .fp-comp  { left: 92%; top: 22%; }
  .fp-stage { left: 6%;  top: 82%; }
  .fp-limit { left: 94%; top: 80%; }
}

/* Hero-Hintergrund-Video (Higgsfield-Loop der echten Plugins) */
.hero-video {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
  opacity: 0; transition: opacity 1.2s var(--ease-out);
  pointer-events: none;
}
.hero-video video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.hero-video::after {
  /* Paper-Veil: hält Wortmarke + Text lesbar, lässt die Bewegung atmen */
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 62% 50% at 50% 52%, rgba(235,233,228,.88) 0%, rgba(235,233,228,.55) 55%, rgba(235,233,228,.18) 100%),
    linear-gradient(to bottom, rgba(235,233,228,.75), rgba(235,233,228,0) 28%, rgba(235,233,228,0) 72%, rgba(235,233,228,.8));
}
.hero--center.has-video .hero-video { opacity: 1; }
.hero--center.has-video .hero-canvas { display: none; }

/* Druckbogen-Rahmen mit Schnittmarken + Eck-Labels */
.hero-frame {
  position: absolute; z-index: 0;
  inset: clamp(88px, 11vh, 130px) var(--gutter) clamp(74px, 9vh, 116px);
  border: 1px solid rgba(10, 10, 10, .2);
  pointer-events: none;
}
.hero-frame .fc { position: absolute; width: 22px; height: 22px; border: 2px solid var(--accent); }
.hero-frame .fc-tl { left: -2px; top: -2px; border-right: 0; border-bottom: 0; }
.hero-frame .fc-tr { right: -2px; top: -2px; border-left: 0; border-bottom: 0; }
.hero-frame .fc-bl { left: -2px; bottom: -2px; border-right: 0; border-top: 0; }
.hero-frame .fc-br { right: -2px; bottom: -2px; border-left: 0; border-top: 0; }
.hero-frame .fl {
  position: absolute;
  font-family: var(--mono); font-size: 9px; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--ink-soft); background: var(--bg);
  padding: 0 10px; white-space: nowrap;
}
.hero-frame .fl-tl { top: -6px; left: 30px; }
.hero-frame .fl-tr { top: -6px; right: 30px; }
.hero-frame .fl-bl { bottom: -6px; left: 30px; }
.hero-frame .fl-br { bottom: -6px; right: 30px; }
@media (max-width: 620px) {
  .hero-frame .fl-tr, .hero-frame .fl-bl { display: none; }
}
.hero--center .hero-meta {
  border-top: 0; padding-top: 0;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 24px;
  margin-top: clamp(20px, 3.5vh, 40px);
}
.hero--center .hero-sub { text-align: center; max-width: 560px; }

.hero-meta {
  display: flex; flex-wrap: wrap; gap: 18px 48px;
  justify-content: space-between; align-items: flex-end;
  margin-top: clamp(24px, 4vh, 48px);
  border-top: var(--line) solid var(--ink);
  padding-top: 22px;
}
.hero-sub { max-width: 520px; }

.scroll-cue {
  position: absolute; right: var(--gutter); bottom: 28px; z-index: 2;
  font-family: var(--mono); font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ink-soft);
  display: flex; align-items: center; gap: 12px;
}
.scroll-cue::after {
  content: ""; width: var(--line); height: 44px; background: var(--ink);
  animation: cue 1.8s var(--ease-soft) infinite;
}
@keyframes cue { 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; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden; white-space: nowrap;
  border-top: var(--line) solid var(--ink);
  border-bottom: var(--line) solid var(--ink);
  background: var(--paper);
  padding: 14px 0;
}
.marquee--ink { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.marquee-track { display: inline-flex; gap: 0; animation: marquee 28s linear infinite; will-change: transform; }
.marquee-track span {
  font-family: var(--mono); font-size: 13px; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  padding: 0 28px; flex: none;
}
.marquee-track span i { font-style: normal; color: var(--accent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  --btn-bg: var(--paper); --btn-fg: var(--ink);
  position: relative; display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  border: var(--line) solid var(--ink);
  background: var(--btn-bg); color: var(--btn-fg);
  padding: 16px 26px;
  overflow: hidden;
  transition: color var(--t-fast) var(--ease-out), border-color var(--t-fast);
  isolation: isolate;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform var(--t-fast) var(--ease-out);
}
.btn:hover { color: var(--paper); }
.btn:hover::before { transform: translateY(0); }
.btn--accent { border-color: var(--accent); background: var(--accent); color: var(--paper); }
.btn--accent::before { background: var(--ink); }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink::before { background: var(--accent); }
.btn--big { padding: 22px 38px; font-size: 13px; }
.btn .arr { font-family: var(--sans); font-weight: 700; transition: transform var(--t-fast) var(--ease-out); }
.btn:hover .arr { transform: translateX(6px); }

/* ============================================================
   SECTION LABELS / STATS
   ============================================================ */
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin-bottom: clamp(36px, 6vh, 72px); }
.section-head .idx { font-family: var(--mono); font-size: 12px; color: var(--ink-soft); letter-spacing: .2em; }

.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: var(--line) solid var(--ink);
  border-bottom: var(--line) solid var(--ink);
}
.stat {
  padding: clamp(20px, 3vw, 40px) clamp(16px, 2vw, 32px);
  border-right: var(--line) solid var(--ink);
}
.stat:last-child { border-right: 0; }
.stat-value {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(28px, 4vw, 60px); line-height: 1; letter-spacing: -.02em;
  display: flex; align-items: baseline; gap: 6px;
}
.stat-value .unit { font-family: var(--mono); font-size: .35em; font-weight: 500; color: var(--ink-soft); letter-spacing: .1em; }
.stat-label {
  margin-top: 12px;
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase; color: var(--ink-soft);
}

/* ============================================================
   INDEX — PRODUCT ROWS
   ============================================================ */
.product-list { border-top: var(--line) solid var(--ink); }
.product-row {
  position: relative; display: grid;
  grid-template-columns: minmax(70px, .8fr) 3.2fr 2.6fr minmax(220px, 1.6fr);
  align-items: center; gap: clamp(16px, 2.5vw, 48px);
  padding: clamp(26px, 4.5vh, 56px) var(--gutter);
  border-bottom: var(--line) solid var(--ink);
  isolation: isolate;
  transition: color .45s var(--ease-out);
}
.product-row::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--ink);
  transform: scaleY(0); transform-origin: top;
  transition: transform .45s var(--ease-out);
}
.product-row:hover { color: var(--paper); }
.product-row:hover::before { transform: scaleY(1); }
.product-num { font-family: var(--mono); font-size: clamp(11px, 1vw, 14px); letter-spacing: .2em; color: var(--ink-soft); transition: color .45s; }
.product-row:hover .product-num { color: var(--accent); }
.product-name {
  font-size: clamp(34px, 5.2vw, 84px); font-weight: 700;
  line-height: .9; letter-spacing: -.02em; text-transform: uppercase;
  white-space: nowrap;
}
.product-desc { font-size: clamp(13px, 1.05vw, 16px); line-height: 1.5; color: var(--ink-soft); max-width: 420px; transition: color .45s; }
.product-row:hover .product-desc { color: rgba(245,243,237,.75); }
.product-cta { display: flex; align-items: center; justify-content: flex-end; gap: 22px; }
.product-price { font-family: var(--mono); font-size: clamp(14px, 1.3vw, 20px); font-weight: 600; }
.product-arrow {
  width: 52px; height: 52px; border: var(--line) solid currentColor;
  display: grid; place-items: center;
  font-weight: 700; font-size: 19px;
  transition: background .35s var(--ease-out), border-color .35s var(--ease-out), color .35s;
}
.product-row:hover .product-arrow { background: var(--accent); border-color: var(--accent); color: var(--paper); }
.product-row .row-canvas {
  position: absolute; right: clamp(180px, 18vw, 340px); top: 50%;
  width: clamp(160px, 16vw, 300px); height: 80%;
  transform: translateY(-50%);
  opacity: 0; transition: opacity .5s var(--ease-out);
  pointer-events: none; z-index: -1;
}
.product-row:hover .row-canvas { opacity: .9; }

.product-gap {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px var(--gutter);
  border-bottom: var(--line) solid var(--ink);
  font-family: var(--mono); font-size: 10px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--ink-soft);
  background: repeating-linear-gradient(-45deg, transparent 0 10px, rgba(10,10,10,.04) 10px 12px);
}

/* ============================================================
   FEATURES (product pages)
   ============================================================ */
.feature {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 110px);
  align-items: center;
  padding: clamp(56px, 9vh, 120px) var(--gutter);
}
.feature + .feature { border-top: var(--line) solid rgba(10,10,10,.15); }
.feature--flip .feature-copy { order: 2; }
.feature--flip .feature-media { order: 1; }
.feature-copy h3 {
  font-size: clamp(30px, 3.6vw, 54px); font-weight: 700;
  line-height: 1; letter-spacing: -.02em; text-transform: uppercase;
  margin: 18px 0 22px;
}
.feature-copy p { max-width: 480px; }
.feature-media {
  position: relative;
  border: var(--line) solid var(--ink);
  background: var(--bg);
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.feature-media canvas { width: 100%; height: 100%; }
.feature-media .media-tag {
  position: absolute; left: 0; top: 0;
  font-family: var(--mono); font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  background: var(--ink); color: var(--paper);
  padding: 6px 10px;
}

/* ============================================================
   PIN STAGE (scroll theatre)
   ============================================================ */
.pin-stage { position: relative; height: 320vh; background: var(--ink); color: var(--paper); }
.pin-sticky {
  position: sticky; top: 0; height: 100vh; height: 100svh;
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.pin-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.pin-captions {
  position: relative; z-index: 2; width: 100%;
  padding: 0 var(--gutter) clamp(36px, 7vh, 80px);
}
.pin-caption {
  position: absolute; bottom: clamp(36px, 7vh, 80px); left: var(--gutter); right: var(--gutter);
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
  pointer-events: none;
}
.pin-caption.is-active { opacity: 1; transform: translateY(0); }
.pin-caption .kicker { color: rgba(245,243,237,.55); }
.pin-caption .kicker::before { background: var(--accent); }
.pin-caption h3 {
  font-size: clamp(34px, 5vw, 76px); font-weight: 700; line-height: .95;
  letter-spacing: -.02em; text-transform: uppercase;
  margin-top: 16px; max-width: 14ch;
}
.pin-caption p { margin-top: 16px; max-width: 460px; color: rgba(245,243,237,.65); font-size: clamp(14px, 1.1vw, 16px); }
.pin-progress {
  position: absolute; top: 50%; right: var(--gutter); z-index: 3;
  display: flex; flex-direction: column; gap: 10px; transform: translateY(-50%);
}
.pin-progress i {
  width: 7px; height: 7px; border: 1px solid rgba(245,243,237,.5);
  transition: background .3s, transform .3s;
}
.pin-progress i.is-on { background: var(--accent); border-color: var(--accent); transform: rotate(45deg); }

/* ============================================================
   SPEC TABLE
   ============================================================ */
.spec-table { width: 100%; border-collapse: collapse; border: var(--line) solid var(--ink); }
.spec-table th, .spec-table td { border: var(--line) solid var(--ink); padding: 16px 20px; text-align: left; vertical-align: top; }
.spec-table th {
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase; color: var(--ink-soft);
  width: 30%; background: var(--bg);
}
.spec-table td { font-size: 15px; }

/* ============================================================
   PRICE CARD / BUY
   ============================================================ */
.buy-section { background: var(--bg); border-top: var(--line) solid var(--ink); }
.price-card {
  border: var(--line) solid var(--ink); background: var(--paper);
  display: grid; grid-template-columns: 1.4fr 1fr;
}
.price-main { padding: clamp(28px, 4vw, 56px); border-right: var(--line) solid var(--ink); }
.price-side { padding: clamp(28px, 4vw, 56px); display: flex; flex-direction: column; justify-content: space-between; gap: 28px; }
.price-tag {
  font-size: clamp(56px, 8vw, 120px); font-weight: 700; line-height: .9; letter-spacing: -.03em;
  display: flex; align-items: baseline; gap: 10px;
}
.price-tag .cur { font-family: var(--mono); font-size: .3em; font-weight: 500; color: var(--ink-soft); }
.price-notes { margin-top: 22px; display: grid; gap: 8px; }
.price-notes li {
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft);
  display: flex; gap: 10px; align-items: center;
}
.price-notes li::before { content: "+"; color: var(--accent); font-weight: 700; }

/* ============================================================
   NEXT SECTION (page-to-page flow)
   ============================================================ */
.next-section {
  position: relative; display: block;
  min-height: 86vh;
  background: var(--ink); color: var(--paper);
  padding: clamp(60px, 10vh, 120px) var(--gutter);
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden; isolation: isolate;
}
.next-section::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--accent);
  transform: translateY(101%);
  transition: transform .6s var(--ease-out);
}
.next-section:hover::before { transform: translateY(0); }
.next-top { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: rgba(245,243,237,.6); }
.next-section:hover .next-top { color: rgba(245,243,237,.85); }
.next-title {
  font-size: clamp(64px, 14vw, 230px); font-weight: 700;
  line-height: .85; letter-spacing: -.03em; text-transform: uppercase;
}
.next-title .slash { transition: color .4s; }
.next-section:hover .next-title .slash { color: var(--paper); }
.next-bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; }
.next-tag { font-family: var(--mono); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: rgba(245,243,237,.6); max-width: 360px; }
.next-arrow { font-size: clamp(40px, 6vw, 90px); font-weight: 700; line-height: 1; transition: transform .5s var(--ease-out); }
.next-section:hover .next-arrow { transform: translateX(24px); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: var(--paper); padding: clamp(56px, 9vh, 110px) var(--gutter) 28px; }
/* riesige einzeilige Wortmarke (aus der alten Site) */
.footer-word {
  font-weight: 700;
  font-size: clamp(44px, 11vw, 190px);
  letter-spacing: -.05em; line-height: .85;
  white-space: nowrap;
  margin-bottom: clamp(36px, 7vh, 70px);
}
.footer-word .slash { color: var(--accent); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding: 36px 0 64px;
  border-top: 1px solid rgba(245,243,237,.18);
}
.footer-brand .giant { font-size: clamp(40px, 6vw, 96px); }
.footer-brand p.manifesto-line { max-width: 38ch; color: rgba(245,243,237,.65); font-size: 14px; line-height: 1.6; }
.footer-col h5 {
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase; color: rgba(245,243,237,.45);
  margin-bottom: 18px;
}
.footer-col a { display: block; padding: 5px 0; font-size: 14px; color: rgba(245,243,237,.8); transition: color .25s, transform .25s var(--ease-out); }
.footer-col a:hover { color: var(--accent); transform: translateX(6px); }
.footer-bottom {
  border-top: 1px solid rgba(245,243,237,.18);
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(245,243,237,.4);
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-veil {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(10,10,10,.45);
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
}
.cart-veil.is-open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 91;
  width: min(440px, 92vw);
  background: var(--paper); border-left: var(--line) solid var(--ink);
  transform: translateX(102%);
  transition: transform .55s var(--ease-out);
  display: flex; flex-direction: column;
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 26px; border-bottom: var(--line) solid var(--ink);
  font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
}
.cart-close { font-size: 20px; font-weight: 700; padding: 4px 8px; }
.cart-items { flex: 1; overflow-y: auto; padding: 10px 26px; }
.cart-item {
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding: 18px 0; border-bottom: 1px solid rgba(10,10,10,.15);
}
.cart-item-name { font-weight: 700; text-transform: uppercase; letter-spacing: -.01em; }
.cart-item-name small { display: block; font-family: var(--mono); font-weight: 500; font-size: 10px; letter-spacing: .2em; color: var(--ink-soft); margin-top: 3px; }
.cart-item-price { font-family: var(--mono); font-weight: 600; }
.cart-remove { font-family: var(--mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); border-bottom: 1px solid currentColor; }
.cart-remove:hover { color: var(--accent); }
.cart-empty { padding: 48px 0; text-align: center; font-family: var(--mono); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft); }
.cart-foot { border-top: var(--line) solid var(--ink); padding: 22px 26px; display: grid; gap: 16px; }
.cart-total { display: flex; justify-content: space-between; font-family: var(--mono); font-weight: 600; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; }
.cart-note { font-family: var(--mono); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); text-align: center; }

/* ============================================================
   PRELOADER / PAGE TRANSITION
   ============================================================ */
.preloader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ink); color: var(--paper);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 28px var(--gutter);
}
.preloader.is-done { pointer-events: none; }
.pre-top { font-family: var(--mono); font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: rgba(245,243,237,.5); display: flex; justify-content: space-between; }
.pre-count {
  font-size: clamp(90px, 22vw, 320px); font-weight: 700; line-height: .85; letter-spacing: -.04em;
  align-self: flex-end;
  font-variant-numeric: tabular-nums;
}
.pre-count i { font-style: normal; color: var(--accent); }
.pre-bar { height: var(--line); background: rgba(245,243,237,.2); position: relative; overflow: hidden; }
.pre-bar i { position: absolute; inset: 0; background: var(--accent); transform: scaleX(0); transform-origin: left; }

.transition-overlay { position: fixed; inset: 0; z-index: 150; pointer-events: none; }
.transition-overlay .panel { position: absolute; inset: 0; transform: translateY(102%); will-change: transform; }
.transition-overlay .panel--accent { background: var(--accent); }
.transition-overlay .panel--ink { background: var(--ink); }
.transition-overlay .panel--ink .t-label {
  position: absolute; left: var(--gutter); bottom: 8vh;
  font-family: var(--mono); color: rgba(245,243,237,.6);
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
}
.transition-overlay.is-out .panel--accent { animation: panelIn .55s var(--ease-out) forwards; }
.transition-overlay.is-out .panel--ink    { animation: panelIn .55s var(--ease-out) .12s forwards; }
.transition-overlay.is-in  .panel--accent { transform: translateY(0); animation: panelOut .65s var(--ease-out) .25s forwards; }
.transition-overlay.is-in  .panel--ink    { transform: translateY(0); animation: panelOut .65s var(--ease-out) .12s forwards; }
@keyframes panelIn  { from { transform: translateY(102%); } to { transform: translateY(0); } }
@keyframes panelOut { from { transform: translateY(0); } to { transform: translateY(-102%); } }

/* ============================================================
   CURSOR
   ============================================================ */
.cursor {
  position: fixed; left: 0; top: 0; z-index: 300; pointer-events: none;
  width: 10px; height: 10px; background: var(--ink);
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease-out), height .25s var(--ease-out), background .25s;
  display: grid; place-items: center;
}
.cursor .cursor-label {
  font-family: var(--mono); font-size: 9px; font-weight: 600; letter-spacing: .2em;
  color: var(--paper); text-transform: uppercase;
  opacity: 0; transition: opacity .2s;
  white-space: nowrap;
}
.cursor.is-hover { width: 58px; height: 58px; background: var(--accent); }
.cursor.is-hover .cursor-label { opacity: 1; }
/* über dunklen Sektionen: Akzent statt Ink (sonst unsichtbar) */
.cursor.is-dark { background: var(--accent); }
@media (pointer: coarse) { .cursor { display: none; } }

/* ============================================================
   REVEALS
   ============================================================ */
[data-reveal] {
  opacity: 0; transform: translateY(44px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 90ms);
}
[data-reveal].is-in { opacity: 1; transform: translateY(0); }

[data-lines] .line { display: block; overflow: hidden; }
[data-lines] .line > span { display: inline-block; transform: translateY(110%); transition: transform 1s var(--ease-out); transition-delay: calc(var(--l, 0) * 110ms); }
[data-lines].is-in .line > span { transform: translateY(0); }

.manifesto-text {
  font-size: clamp(28px, 4.4vw, 64px); font-weight: 600;
  line-height: 1.12; letter-spacing: -.02em;
  max-width: 18ch;
}
.manifesto-text em { font-style: normal; color: var(--accent); }

/* ============================================================
   MISC
   ============================================================ */
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  border: 1px solid var(--ink-soft); color: var(--ink-soft);
  padding: 7px 12px;
}
.platform-note { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); }

.crumbs { display: flex; gap: 12px; align-items: center; font-family: var(--mono); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft); }
.crumbs i { font-style: normal; color: var(--accent); }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: var(--line) solid var(--ink); }
  .feature { grid-template-columns: 1fr; }
  .feature--flip .feature-copy { order: 1; }
  .feature--flip .feature-media { order: 2; }
  .product-row { grid-template-columns: 60px 1fr auto; }
  .product-desc { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .price-card { grid-template-columns: 1fr; }
  .price-main { border-right: 0; border-bottom: var(--line) solid var(--ink); }
}
@media (max-width: 620px) {
  .nav-link { display: none; }
  .product-row .row-canvas { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .next-section { min-height: 70vh; }
}

/* ============================================================
   LIVE PLUGIN EMBEDS (echte Prototypen im iframe)
   ============================================================ */
.embed-frame {
  position: relative;
  border: var(--line) solid var(--ink);
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--ink);
  overflow: hidden;
}
.embed-frame .embed-scaler {
  position: absolute; left: 0; top: 0;
  transform-origin: 0 0;
  will-change: transform;
}
.embed-frame iframe { display: block; border: 0; background: var(--paper); }
.embed-frame.is-locked iframe { pointer-events: none; }
.embed-tag {
  position: absolute; left: 0; top: 0; z-index: 5;
  font-family: var(--mono); font-size: 9px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  background: var(--ink); color: var(--paper);
  padding: 6px 10px;
  display: flex; align-items: center; gap: 8px;
}
.embed-tag i { width: 6px; height: 6px; background: var(--accent); animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .25; } }

.embed-interact {
  position: absolute; right: 12px; bottom: 12px; z-index: 6;
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  border: var(--line) solid var(--ink);
  background: var(--paper); color: var(--ink);
  padding: 9px 14px;
  transition: background var(--t-fast), color var(--t-fast), opacity .4s;
}
.embed-interact:hover { background: var(--ink); color: var(--paper); }
.embed-interact.is-on { background: var(--accent); border-color: var(--accent); color: var(--paper); }
.embed-interact.is-hidden { opacity: 0; pointer-events: none; }

/* Standalone-Embed (Index etc.) */
.embed-fit { position: relative; }

/* ============================================================
   PLUGIN TOUR — Kamerafahrt durchs echte Plugin
   Dunkle Bühne, Plugin schwebt frei, Kamera fliegt zwischen
   den Bereichen, Textkarte wechselt die Seite.
   ============================================================ */
.plugin-tour { position: relative; background: var(--ink); }
.tour-pin {
  position: sticky; top: 0;
  height: 100vh; height: 100svh;
  overflow: hidden;
}
/* altes Boxed-Layout wird vom Cinema-Modus ersetzt */
.tour--cinema .tour-grid { display: none; }

.tour-stage {
  position: absolute; inset: 0;
  background: var(--ink);
  background-image:
    linear-gradient(rgba(245,243,237,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,243,237,.045) 1px, transparent 1px);
  background-size: 40px 40px;
  overflow: hidden;
}
.tour-stage .stage-layer {
  position: absolute; left: 0; top: 0;
  transform-origin: 0 0;
  will-change: transform;
  box-shadow: 18px 18px 0 rgba(0,0,0,.45);
}
.tour-stage iframe { display: block; border: 0; background: var(--paper); pointer-events: none; }
.tour-stage.is-live iframe { pointer-events: auto; }

.tour-stage .embed-tag { z-index: 8; }
.tour-stage .embed-interact { z-index: 9; }

.tour-spot {
  position: absolute; z-index: 6;
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 9999px rgba(5, 5, 5, .55);
  opacity: 0;
  transition: opacity .45s var(--ease-out);
  pointer-events: none;
}
.tour-spot.is-on { opacity: 1; }
.tour-spot::after {
  content: attr(data-label);
  position: absolute; left: -2px; top: -27px;
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  background: var(--accent); color: var(--paper);
  padding: 4px 9px; white-space: nowrap;
}

/* schwebende Erklärkarte, wechselt die Seite */
.tour-card {
  position: absolute; z-index: 10;
  top: 50%;
  width: min(440px, 38vw);
  background: var(--paper);
  border: var(--line) solid var(--ink);
  box-shadow: 10px 10px 0 rgba(255, 59, 31, .9);
  padding: clamp(22px, 2.4vw, 36px);
  opacity: 0; pointer-events: none;
  transition: opacity .5s var(--ease-out), transform .6s var(--ease-out);
}
.tour-card[data-side="left"]  { left: clamp(20px, 4vw, 70px);  transform: translate(-44px, -50%); }
.tour-card[data-side="right"] { right: clamp(20px, 4vw, 70px); transform: translate(44px, -50%); }
.tour-card.is-on { opacity: 1; transform: translate(0, -50%); }
.tour-card h3 {
  font-size: clamp(24px, 2.3vw, 36px); font-weight: 700;
  line-height: 1.02; letter-spacing: -.02em; text-transform: uppercase;
  margin: 14px 0 16px;
}
.tour-card p { color: var(--ink-soft); font-size: clamp(13px, 1vw, 15px); line-height: 1.6; }

/* Schrittleiste unten */
.tour-rail {
  position: absolute; z-index: 10;
  left: 50%; bottom: 26px; transform: translateX(-50%);
  display: flex; align-items: center; gap: 10px;
}
.tour-rail .seg {
  width: clamp(24px, 3.4vw, 54px); height: 4px;
  background: rgba(245,243,237,.18);
  position: relative; overflow: hidden;
}
.tour-rail .seg i {
  position: absolute; inset: 0; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease-out);
}
.tour-rail .seg.is-on i { transform: scaleX(1); }
.tour-rail .rail-label {
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase;
  color: rgba(245,243,237,.7);
  min-width: 150px;
}
.tour-rail .rail-label b { color: var(--accent); font-weight: 600; }

/* Scroll-Hinweis im Overview */
.tour-hint {
  position: absolute; z-index: 10; right: clamp(20px, 4vw, 70px); bottom: 70px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(245,243,237,.55);
  display: flex; align-items: center; gap: 12px;
  opacity: 0; transition: opacity .5s;
}
.tour-hint.is-on { opacity: 1; }
.tour-hint::after { content: ""; width: var(--line); height: 38px; background: var(--accent); animation: cue 1.8s var(--ease-soft) infinite; }

/* Legacy-Stile (Boxed-Variante, ungenutzt im Cinema-Modus) */
.tour-copy { position: relative; min-height: 320px; }
.tour-step { display: none; }

/* ============================================================
   TYPE WALL (Index-Pin: Produktnamen statt Canvas)
   ============================================================ */
.type-wall {
  position: absolute; inset: 0; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center; gap: 1vh;
  background: var(--ink);
}
.type-row {
  white-space: nowrap;
  font-size: clamp(60px, 9vw, 150px); font-weight: 700;
  line-height: .95; letter-spacing: -.02em; text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 243, 237, .22);
  animation: wallslide 60s linear infinite;
}
.type-row:nth-child(even) { animation-direction: reverse; }
.type-row .fill { color: var(--accent); -webkit-text-stroke: 0; }
@keyframes wallslide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (max-width: 1000px) {
  .tour-grid { grid-template-columns: 1fr; align-content: center; gap: 18px; }
  .tour-copy { min-height: 220px; }
  .tour-step h3 { font-size: 22px; }
}

/* ============================================================
   SUITE MERGE — 7 Plugins fliegen in eine Box (€499)
   ============================================================ */
#suite-stage { height: 470vh; }
.suite-merge { position: absolute; inset: 0; z-index: 2; pointer-events: none; }

.merge-cap {
  position: absolute; left: var(--gutter); top: clamp(86px, 11vh, 140px);
  max-width: 560px;
  opacity: 0; transform: translateY(26px);
  transition: opacity .55s var(--ease-out), transform .55s var(--ease-out);
}
.merge-cap.is-active { opacity: 1; transform: none; }
.merge-cap .kicker { color: rgba(245,243,237,.55); }
.merge-cap .kicker::before { background: var(--accent); }
.merge-cap h3 {
  color: var(--paper);
  font-size: clamp(28px, 3.4vw, 52px); font-weight: 700; line-height: .98;
  letter-spacing: -.02em; text-transform: uppercase;
  margin-top: 14px;
}

.merge-card {
  position: absolute; left: 0; top: 0; z-index: 3;
  width: clamp(150px, 12.5vw, 205px);
  background: var(--paper); color: var(--ink);
  border: var(--line) solid var(--ink);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, .42);
  padding: 13px 14px 11px;
  display: flex; flex-direction: column; gap: 5px;
  opacity: 0;
  will-change: transform;
}
.merge-card .mc-num { font-family: var(--mono); font-size: 9px; font-weight: 600; letter-spacing: .22em; color: var(--accent); }
.merge-card .mc-name { font-weight: 700; font-size: clamp(17px, 1.5vw, 24px); letter-spacing: -.01em; line-height: 1; }
.merge-card .mc-name b { color: var(--accent); font-weight: 700; }
.merge-card .mc-role { font-family: var(--mono); font-size: 9.5px; letter-spacing: .05em; color: var(--ink-soft); text-transform: uppercase; }
.merge-card .mc-price { font-family: var(--mono); font-weight: 600; font-size: 13px; border-top: 1px solid rgba(10,10,10,.18); padding-top: 7px; margin-top: 3px; }

.merge-box {
  position: absolute; left: 50%; top: 50%; z-index: 6;
  width: min(460px, 88vw);
  background: var(--ink); color: var(--paper);
  border: var(--line) solid var(--paper);
  box-shadow: 14px 14px 0 var(--accent);
  padding: clamp(26px, 3vw, 42px);
  text-align: center;
  transform: translate(-50%, -44%) scale(.72);
  opacity: 0;
  /* unsichtbar darf NICHT klick-/fokussierbar sein (Buy-Button!) */
  visibility: hidden;
  pointer-events: none;
  transition: transform .85s cubic-bezier(.22, 1.4, .36, 1), opacity .35s, visibility 0s linear .35s;
}
.merge-box.is-on {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
.merge-box .mb-kicker { font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: .28em; color: rgba(245,243,237,.6); }
.merge-box .mb-sum { font-family: var(--mono); font-size: 12px; letter-spacing: .14em; color: rgba(245,243,237,.5); margin-top: 16px; }
.merge-box .mb-sum s { text-decoration-color: var(--accent); text-decoration-thickness: 2px; }
.merge-box .mb-price { font-size: clamp(58px, 6.5vw, 96px); font-weight: 700; line-height: .95; margin: 6px 0 10px; letter-spacing: -.03em; }
.merge-box .mb-price .cur { font-size: .32em; vertical-align: super; color: var(--accent); margin-right: 6px; font-weight: 600; }
.merge-box .mb-save { font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: .22em; color: var(--accent); margin-bottom: 22px; }

/* ============================================================
   PRINCIPLES — gepinnte Vollbild-Steps (aus der alten Site)
   Texte erscheinen und verschwinden mit dem Scroll-Fortschritt.
   ============================================================ */
.steps-pin {
  position: sticky; top: 0;
  height: 100vh; height: 100svh;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.step {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 6vw;
  opacity: 0; transform: translateY(56px);
  transition: opacity .55s var(--ease-out), transform .55s var(--ease-out);
  pointer-events: none;
}
.step.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.step.is-past { opacity: 0; transform: translateY(-56px); }
.step > * { opacity: 0; transform: translateY(26px); transition: opacity .5s var(--ease-out) .05s, transform .5s var(--ease-out) .05s; }
.step.is-active > * { opacity: 1; transform: translateY(0); }
.step.is-active > *:nth-child(2) { transition-delay: .14s; }
.step.is-active > *:nth-child(3) { transition-delay: .24s; }
.step.is-past > * { opacity: 0; transform: translateY(-26px); }

.step-kicker {
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: .4em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.step-kicker .idx { color: var(--accent); font-weight: 600; }
.step-headline {
  font-weight: 700; font-size: clamp(38px, 6.5vw, 96px);
  line-height: .95; letter-spacing: -.03em; text-transform: uppercase;
}
.step-headline .hl { color: var(--accent); }
.step-sub {
  margin-top: 26px;
  font-size: clamp(15px, 1.5vw, 19px); line-height: 1.55;
  color: var(--ink-soft); max-width: 56ch;
}

/* ============================================================
   SIGNAL CHAIN — Zellen erscheinen nacheinander (alte Site)
   ============================================================ */
.chain-stage { flex-direction: column; gap: clamp(28px, 5vh, 48px); padding: 0 var(--gutter); }
.chain-row {
  display: grid; grid-template-columns: repeat(7, 1fr);
  width: 100%; max-width: 1480px;
  border: var(--line) solid var(--ink);
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--ink), 24px 24px 0 var(--bg-deep);
}
.chain-cell {
  padding: 24px 16px 20px;
  border-right: 1px solid var(--ink);
  position: relative;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; transform: translateY(36px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out), background .2s, color .2s;
}
.chain-cell:last-child { border-right: none; }
.chain-cell.is-active { opacity: 1; transform: translateY(0); }
.chain-cell:hover { background: var(--ink); color: var(--paper); }
.chain-step {
  font-family: var(--mono); font-size: 9px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-soft); transition: color .2s;
}
.chain-cell:hover .chain-step { color: rgba(245,243,237,.6); }
.chain-name { font-size: clamp(15px, 1.5vw, 24px); font-weight: 700; letter-spacing: -.01em; }
.chain-role {
  font-family: var(--mono); font-size: 8px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent);
}
.chain-cell::after {
  content: "→"; position: absolute;
  right: -9px; top: 50%; transform: translateY(-50%);
  color: var(--accent); font-weight: 700; z-index: 3;
  opacity: 0; transition: opacity .4s;
}
.chain-cell.is-active::after { opacity: 1; }
.chain-cell:last-child::after { display: none; }
.chain-sub { text-align: center; color: var(--ink-soft); font-size: clamp(14px, 1.2vw, 17px); max-width: 64ch; }

@media (max-width: 1000px) {
  .chain-row { grid-template-columns: 1fr; box-shadow: 8px 8px 0 var(--ink); }
  .chain-cell { border-right: none; border-bottom: 1px solid var(--ink); }
  .chain-cell:last-child { border-bottom: none; }
  .chain-cell::after { content: "↓"; right: 14px; top: auto; bottom: -11px; transform: none; }
  .step-headline { font-size: clamp(32px, 9vw, 54px); }
}

/* ============================================================
   SIGNATURE STACK — Karten stapeln sich beim Scrollen
   (Port der alten Produktseiten)
   ============================================================ */
.stack { display: flex; flex-direction: column; max-width: 1100px; margin: clamp(36px, 6vh, 64px) auto 0; }
.stack-card {
  position: sticky;
  background: var(--paper);
  border: var(--line) solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  padding: clamp(28px, 3.4vw, 52px) clamp(24px, 3.2vw, 48px);
  margin-bottom: 36px;
  display: grid; grid-template-columns: 1fr; gap: 22px;
}
@media (min-width: 880px) {
  .stack-card { grid-template-columns: 110px 1fr 1.2fr; gap: 40px; }
}
.stack-card:nth-child(1) { top: 96px; }
.stack-card:nth-child(2) { top: 114px; }
.stack-card:nth-child(3) { top: 132px; }
.stack-card:nth-child(4) { top: 150px; }
.stack-card:nth-child(5) { top: 168px; }
.stack-card:nth-child(6) { top: 186px; }
.stack-card:nth-child(7) { top: 204px; }
.stack-card:nth-child(8) { top: 222px; }
.stack-num {
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  letter-spacing: .2em; color: var(--accent);
}
.stack-title { font-size: clamp(22px, 2.6vw, 38px); font-weight: 700; letter-spacing: -.02em; line-height: 1.05; text-transform: uppercase; }
.stack-body { font-size: 15px; line-height: 1.6; color: var(--ink-soft); }
.stack-card.inverse { background: var(--ink); color: var(--paper); box-shadow: 10px 10px 0 var(--accent); }
.stack-card.inverse .stack-body { color: rgba(245,243,237,.7); }

/* ============================================================
   USE CASES + GROSSES ZITAT (alte Produktseiten)
   ============================================================ */
.uc-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 28px; max-width: 1280px;
  margin: clamp(36px, 6vh, 64px) auto 0;
}
@media (min-width: 880px) { .uc-grid { grid-template-columns: repeat(3, 1fr); } }
.uc-card {
  background: var(--paper);
  border: var(--line) solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  padding: 30px 26px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.uc-card:hover { transform: translate(-3px, -3px); box-shadow: 11px 11px 0 var(--ink); }
.uc-num { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .2em; color: var(--accent); }
.uc-title { font-size: 22px; font-weight: 700; letter-spacing: -.01em; text-transform: uppercase; }
.uc-body { font-size: 14px; line-height: 1.6; color: var(--ink-soft); }

.bigquote { max-width: 980px; margin: 0 auto; text-align: center; }
.bigquote blockquote {
  font-size: clamp(22px, 3.2vw, 40px); font-weight: 600;
  letter-spacing: -.02em; line-height: 1.25;
}
.bigquote blockquote .hl { color: var(--accent); }
.bigquote cite {
  display: block; margin-top: 28px;
  font-family: var(--mono); font-style: normal;
  font-size: 10px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============================================================
   HOW IT WORKS — nummerierte Schritte mit Akzent-Pfeilen
   ============================================================ */
.howit {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(36px, 6vh, 64px);
}
.how-step {
  position: relative;
  border: var(--line) solid var(--ink);
  background: var(--paper);
  padding: clamp(20px, 2.2vw, 32px);
}
.how-step .how-num {
  font-size: clamp(44px, 4.6vw, 76px); font-weight: 700; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px var(--accent);
}
.how-step .how-kicker {
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase; color: var(--accent);
  margin-top: 14px;
}
.how-step h4 { font-size: clamp(18px, 1.7vw, 26px); font-weight: 700; letter-spacing: -.01em; text-transform: uppercase; margin-top: 8px; }
.how-step p { margin-top: 10px; color: var(--ink-soft); font-size: clamp(13px, 1vw, 15px); line-height: 1.6; }
.how-step:not(:last-child)::after {
  content: "→"; position: absolute; z-index: 2;
  right: calc(-1 * clamp(16px, 2vw, 28px) / 2 - 11px); top: 50%;
  transform: translateY(-50%);
  color: var(--accent); font-size: 22px; font-weight: 700;
}

/* ============================================================
   BLUEPRINT — Signalfluss-Diagramm mit laufenden Strichlinien
   ============================================================ */
.blueprint {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
  padding: clamp(24px, 3vw, 44px);
  border: var(--line) solid var(--ink);
  background:
    linear-gradient(rgba(10,10,10,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,10,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  background-color: var(--bg);
}
.bp-node {
  border: var(--line) solid var(--ink);
  background: var(--paper);
  font-family: var(--mono); font-size: clamp(9px, .8vw, 11px); font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 12px 12px; text-align: center;
  box-shadow: 5px 5px 0 var(--ink);
}
.bp-node--accent { background: var(--ink); color: var(--paper); box-shadow: 5px 5px 0 var(--accent); }
.bp-link {
  flex: 1 1 26px; min-width: 22px; height: 2px; position: relative;
  background-image: repeating-linear-gradient(90deg, var(--accent) 0 7px, transparent 7px 14px);
  animation: bpdash 0.8s linear infinite;
}
@keyframes bpdash { from { background-position: 0 0; } to { background-position: 14px 0; } }

/* ============================================================
   VOICES — Beta-Tester-Zitate
   ============================================================ */
.voices {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(36px, 6vh, 64px);
}
.voice-card {
  border: var(--line) solid var(--ink);
  background: var(--paper);
  padding: clamp(20px, 2.2vw, 32px);
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.voice-card:hover { transform: translate(-5px, -5px); box-shadow: 10px 10px 0 var(--accent); }
.voice-card .voice-slash { color: var(--accent); font-size: 40px; font-weight: 700; line-height: 1; }
.voice-card blockquote {
  margin-top: 14px; flex: 1;
  font-size: clamp(16px, 1.35vw, 21px); font-weight: 500; line-height: 1.45;
  letter-spacing: -.01em;
}
.voice-card .voice-who {
  margin-top: 22px; padding-top: 14px;
  border-top: 1px solid rgba(10,10,10,.16);
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
}
.voice-card .voice-who strong { font-size: 13px; letter-spacing: .01em; }
.voice-card .voice-who span { display: block; font-family: var(--mono); font-size: 9.5px; letter-spacing: .18em; color: var(--ink-soft); margin-top: 4px; text-transform: uppercase; }
.voice-card .voice-tag {
  font-family: var(--mono); font-size: 9px; font-weight: 600; letter-spacing: .2em;
  background: var(--ink); color: var(--paper); padding: 4px 8px; white-space: nowrap;
}

@media (max-width: 1000px) {
  .howit, .voices { grid-template-columns: 1fr; }
  .how-step:not(:last-child)::after { content: "↓"; right: auto; left: 50%; top: auto; bottom: -26px; transform: translateX(-50%); }
  .blueprint { flex-direction: column; align-items: stretch; }
  .bp-link { width: 2px; height: 26px; flex: 0 0 26px; align-self: center;
    background-image: repeating-linear-gradient(180deg, var(--accent) 0 7px, transparent 7px 14px); }
}

/* ============================================================
   FOUNDER QUOTE — Ink-Bühne, Zeilen-Reveal, driftender Slash
   ============================================================ */
.quote-section {
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--paper);
  padding: clamp(90px, 14vh, 170px) var(--gutter);
}
.quote-section .kicker { color: rgba(245,243,237,.55); }
.quote-section .kicker::before { background: var(--accent); }
.founder-quote {
  margin-top: clamp(28px, 5vh, 52px);
  font-size: clamp(28px, 4.3vw, 72px);
  font-weight: 700; line-height: 1.04; letter-spacing: -.02em;
  text-transform: uppercase;
}
.founder-quote em { font-style: normal; color: var(--accent); }
.quote-sig {
  display: flex; align-items: center; gap: 16px;
  margin-top: clamp(32px, 6vh, 60px);
}
.quote-sig .sig-tile {
  width: 44px; height: 44px; flex: 0 0 44px;
  background: var(--paper); color: var(--ink);
  display: grid; place-items: center;
  font-weight: 700; font-size: 22px;
  position: relative; overflow: hidden;
}
.quote-sig .sig-tile::after {
  content: ""; position: absolute; right: 8px; top: -25%;
  width: 5px; height: 150%; background: var(--accent);
  transform: rotate(22deg);
}
.quote-sig strong { display: block; font-size: 15px; letter-spacing: .02em; }
.quote-sig span { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: .22em; color: rgba(245,243,237,.5); margin-top: 5px; text-transform: uppercase; }
/* großes Monogramm "E" treibt rechts (Slash ist dem Wortzeichen vorbehalten) */
.quote-mark {
  position: absolute; right: -1vw; top: 50%;
  font-size: clamp(280px, 42vh, 520px); font-weight: 700; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(245, 243, 237, .14);
  pointer-events: none; user-select: none;
  animation: markdrift 12s var(--ease-soft) infinite alternate;
}
@keyframes markdrift {
  from { transform: translateY(-54%); }
  to   { transform: translateY(-44%); }
}

/* ============================================================
   LAB LOG — Warum wir das gebaut haben (Origin-Story)
   ============================================================ */
.log-list { position: relative; margin-top: clamp(40px, 7vh, 80px); padding-left: clamp(26px, 4vw, 56px); }
.log-rail {
  position: absolute; left: 7px; top: 6px; bottom: 6px;
  width: var(--line); background: rgba(10,10,10,.15);
}
.log-rail i {
  position: absolute; inset: 0; background: var(--accent);
  transform: scaleY(0); transform-origin: top;
}
.log-entry {
  position: relative;
  display: grid; grid-template-columns: minmax(130px, 190px) 1fr;
  gap: 18px clamp(20px, 4vw, 64px);
  padding: clamp(26px, 4vh, 44px) 0;
  border-bottom: 1px solid rgba(10,10,10,.14);
}
.log-entry::before {
  content: ""; position: absolute;
  left: calc(-1 * clamp(26px, 4vw, 56px) + 3px); top: clamp(34px, 5vh, 52px);
  width: 9px; height: 9px;
  background: var(--bg); border: var(--line) solid var(--ink);
  transition: background .4s, transform .4s;
}
.log-entry.is-in::before { background: var(--accent); border-color: var(--accent); transform: rotate(45deg); }
.log-date { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .2em; color: var(--accent); padding-top: 6px; text-transform: uppercase; }
.log-entry h4 { font-size: clamp(20px, 2vw, 30px); font-weight: 700; letter-spacing: -.01em; text-transform: uppercase; }
.log-entry p { margin-top: 10px; color: var(--ink-soft); max-width: 58ch; font-size: clamp(14px, 1.05vw, 16px); line-height: 1.65; }

/* ============================================================
   UNDER THE HOOD — Tech-Karten mit lebenden Mini-Viz
   ============================================================ */
.tech-lede { max-width: 640px; margin-top: clamp(22px, 4vh, 40px); color: var(--ink-soft); }
.tech-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(36px, 6vh, 64px);
}
.tech-card {
  border: var(--line) solid var(--ink);
  background: var(--paper);
  padding: clamp(18px, 2vw, 28px);
  position: relative;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.tech-card:hover { transform: translate(-5px, -5px); box-shadow: 10px 10px 0 var(--ink); }
.tech-card canvas { width: 100%; height: 120px; display: block; border: 1px solid rgba(10,10,10,.14); background: var(--bg); }
.tech-card h4 { margin-top: 18px; font-size: clamp(17px, 1.5vw, 24px); font-weight: 700; letter-spacing: -.01em; text-transform: uppercase; }
.tech-card p { margin-top: 10px; color: var(--ink-soft); font-size: clamp(13px, 1vw, 15px); line-height: 1.6; }
.tech-card .tech-tag {
  position: absolute; top: -1px; right: -1px;
  font-family: var(--mono); font-size: 9px; font-weight: 600; letter-spacing: .22em;
  background: var(--ink); color: var(--paper);
  padding: 6px 10px; text-transform: uppercase;
}

/* Kauf-Abschlussband */
.buy-band {
  margin-top: clamp(48px, 8vh, 90px);
  background: var(--ink); color: var(--paper);
  border: var(--line) solid var(--ink);
  box-shadow: 12px 12px 0 var(--accent);
  padding: clamp(28px, 4vw, 52px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 24px;
}
.buy-band h3 { font-size: clamp(24px, 2.6vw, 42px); font-weight: 700; letter-spacing: -.02em; text-transform: uppercase; }
.buy-band p { margin-top: 8px; color: rgba(245,243,237,.6); font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.band-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

@media (max-width: 1000px) {
  .merge-card { width: clamp(120px, 24vw, 160px); }
  .merge-card .mc-role { display: none; }
  .merge-cap h3 { font-size: 24px; }
  .tech-grid { grid-template-columns: 1fr; }
  .log-entry { grid-template-columns: 1fr; gap: 8px; }
  .quote-slash { display: none; }
}
@media (max-width: 620px) {
  .merge-card { width: clamp(96px, 26vw, 122px); padding: 10px 11px 9px; }
  .merge-card .mc-price { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001s !important; transition-duration: .001s !important;
    animation-delay: 0s !important; transition-delay: 0s !important;
  }
}
