/* ====================================================================
   websitepolitur.de — „Blackout"
   Komplett dunkel, ein Akzent: Lime. Display: Anton (Druk-artig,
   condensed heavy), Body: Inter, Labels: JetBrains Mono.
   Struktur: Manifest-Scrub, Horizontal-Scroll, Sticky-Split, Inversion.
   ==================================================================== */

/* ---------- Tokens ---------- */
:root {
  --black: #0B0B0B;
  --panel: #141414;
  --panel-2: #1B1B1B;
  --white: #EFEFEA;
  --grey: #8F8F87;
  --lime: #D4FF3F;
  --lime-dim: rgba(212, 255, 63, 0.14);
  --hair: rgba(239, 239, 234, 0.14);
  --hair-strong: rgba(239, 239, 234, 0.28);
  --hair-black: rgba(11, 11, 11, 0.2);
  --error: #FF6B57;

  --font-disp: "Anton", Impact, system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --pad-x: clamp(20px, 4vw, 64px);
  --sec-y: clamp(72px, 9vw, 128px);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--white);
  background: var(--black);
}
body.no-scroll { overflow: hidden; }
h1, h2, h3 { margin: 0; font-weight: 400; }
p { margin: 0 0 1em; }
a { color: var(--white); }
::selection { background: var(--lime); color: var(--black); }
:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }

.mono {
  font-family: var(--font-mono);
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.disp {
  font-family: var(--font-disp);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.005em;
}
.acc { color: var(--lime); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--lime); color: var(--black); padding: 10px 18px; z-index: 300;
  font-family: var(--font-mono); text-transform: uppercase; font-size: 0.7rem;
}
.skip-link:focus { left: 12px; top: 12px; }

.wrap { max-width: 1560px; margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.section { padding-top: var(--sec-y); padding-bottom: var(--sec-y); }

/* Sektions-Kopfzeile */
.sec-tag {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  color: var(--grey);
  border-top: 1px solid var(--hair);
  padding-top: 16px;
  margin-bottom: clamp(28px, 4.5vw, 52px);
}
.sec-tag .idx { color: var(--lime); }

/* ---------- Preloader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 400;
  background: var(--black); color: var(--white);
  transition: transform 0.75s var(--ease);
}
.loader.done { transform: translateY(-101%); }
.loader-num {
  position: absolute; right: var(--pad-x); bottom: 12px;
  font-family: var(--font-disp); font-size: clamp(6rem, 22vw, 16rem);
  line-height: 0.85; color: var(--lime);
}
.loader-label {
  position: absolute; left: var(--pad-x); bottom: 32px;
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey);
}

/* ---------- Cursor ---------- */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 350;
  width: 12px; height: 12px; border-radius: 50%;
  background: #fff; mix-blend-mode: difference;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, opacity 0.25s ease;
  opacity: 0;
}
.cursor.active { opacity: 1; }
.cursor.grow { width: 56px; height: 56px; }
@media (pointer: coarse) { .cursor { display: none; } }

/* ---------- Header ---------- */
.site-head {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-head.scrolled {
  background: rgba(11, 11, 11, 0.82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom-color: var(--hair);
}
.site-head-inner {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px;
  max-width: 1560px; margin: 0 auto;
  padding: 16px var(--pad-x);
}
.brand {
  font-family: var(--font-disp); font-size: 1.1rem; text-transform: uppercase;
  color: var(--white); text-decoration: none; letter-spacing: 0.03em;
  justify-self: start;
}
.brand sup { color: var(--lime); font-family: var(--font-mono); font-size: 0.55em; }
.head-nav { display: flex; gap: 26px; justify-self: center; }
.head-nav a { color: var(--grey); text-decoration: none; transition: color 0.2s ease; }
.head-nav a:hover { color: var(--lime); }
.head-right { display: flex; align-items: center; gap: 22px; justify-self: end; }
.head-pct { color: var(--grey); min-width: 7ch; text-align: right; }
.head-cta {
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--lime); color: var(--black); text-decoration: none;
  padding: 11px 20px; border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease;
}
.head-cta:hover { background: var(--white); }
@media (max-width: 960px) { .head-nav, .head-pct { display: none; } .site-head-inner { grid-template-columns: 1fr auto; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--lime); color: var(--black);
  border: 1px solid var(--lime); border-radius: 999px;
  padding: 19px 34px; cursor: pointer; text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  will-change: transform;
}
.btn .arr { transition: transform 0.3s var(--ease); }
.btn:hover { background: var(--white); border-color: var(--white); }
.btn:hover .arr { transform: translateX(5px); }
.btn:disabled { opacity: 0.55; cursor: wait; }
.btn-ghost { background: transparent; border-color: var(--hair-strong); color: var(--white); }
.btn-ghost:hover { background: var(--white); border-color: var(--white); color: var(--black); }
.btn-black { background: var(--black); border-color: var(--black); color: var(--lime); }
.btn-black:hover { background: transparent; color: var(--black); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: space-between;
  padding-top: 108px;
}
.hero-top-row {
  display: flex; justify-content: space-between; gap: 16px;
  color: var(--grey);
}
.hero-mid { padding: clamp(20px, 4vh, 56px) 0; }
.hero-h1 {
  font-size: clamp(3.4rem, 14.5vw, 15rem);
}
.hero-h1 .line-mask { display: block; overflow: hidden; }
.hero-h1 .line-inner { display: block; }
.hero-rot { display: inline-block; overflow: hidden; vertical-align: bottom; }
.hero-rot-inner { display: inline-block; color: var(--lime); }
@media (prefers-reduced-motion: no-preference) {
  .hero-rot-inner { transform: translateY(115%); }
  .hero-rot-inner.in { transform: translateY(0); transition: transform 0.55s var(--ease); }
}
.hero-bottom {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px;
  padding-bottom: clamp(20px, 4vh, 44px);
}
.hero-sub {
  max-width: 30em; color: var(--grey); font-size: clamp(1rem, 1.4vw, 1.15rem); margin: 0;
}
.hero-sub strong { color: var(--white); font-weight: 600; }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
.hero-meta {
  display: flex; gap: clamp(16px, 3vw, 48px); flex-wrap: wrap;
  color: var(--grey);
  border-top: 1px solid var(--hair);
  padding: 16px 0 22px;
}
.hero-meta .k { color: var(--lime); margin-right: 8px; }

/* Hero-Einstieg */
@media (prefers-reduced-motion: no-preference) {
  .hero-h1 .line-inner { transform: translateY(112%); transition: transform 1s var(--ease); }
  body.ready .hero-h1 .line-mask:nth-child(1) .line-inner { transform: none; transition-delay: 0.1s; }
  body.ready .hero-h1 .line-mask:nth-child(2) .line-inner { transform: none; transition-delay: 0.22s; }
  body.ready .hero-h1 .line-mask:nth-child(3) .line-inner { transform: none; transition-delay: 0.34s; }
  .hero-top-row, .hero-bottom, .hero-meta {
    opacity: 0; transform: translateY(16px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  }
  body.ready .hero-top-row { opacity: 1; transform: none; transition-delay: 0.15s; }
  body.ready .hero-bottom { opacity: 1; transform: none; transition-delay: 0.6s; }
  body.ready .hero-meta { opacity: 1; transform: none; transition-delay: 0.75s; }
}
@media (max-width: 900px) {
  .hero-bottom { flex-direction: column; align-items: flex-start; }
  .hero-cta-row { justify-content: flex-start; }
}

/* ---------- Marquee (Lime-Band) ---------- */
.marquee-band {
  background: var(--lime); color: var(--black);
  overflow: hidden; padding: 14px 0;
}
.marquee-track {
  display: flex; gap: 44px; width: max-content;
  font-family: var(--font-disp); font-size: clamp(1.1rem, 2.4vw, 1.8rem);
  text-transform: uppercase; white-space: nowrap; line-height: 1;
}
.marquee-track .sep { opacity: 0.35; }
@media (prefers-reduced-motion: no-preference) {
  .marquee-track { animation: marquee 28s linear infinite; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Manifest (Wort-Scrub) ---------- */
.manifesto-sec { padding-top: var(--sec-y); padding-bottom: var(--sec-y); }
.manifesto {
  font-size: clamp(1.5rem, 3.8vw, 3.2rem);
  line-height: 1.35; font-weight: 500; letter-spacing: -0.01em;
  max-width: 24em; margin: 0;
}
.manifesto .w { color: rgba(239, 239, 234, 0.16); transition: color 0.25s linear; }
.manifesto .w.lit { color: var(--white); }
.manifesto .w.acc-w.lit { color: var(--lime); }

/* ---------- Beweis: Vorher/Nachher ---------- */
.proof-head {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px;
  margin-bottom: clamp(28px, 4vw, 52px);
}
.proof-title { font-size: clamp(2.6rem, 8vw, 7rem); }
.proof-note { color: var(--grey); max-width: 22em; padding-bottom: 10px; }
@media (max-width: 900px) { .proof-head { flex-direction: column; align-items: flex-start; } }

.compare { --pos: 55%; position: relative; }
.compare-frame {
  position: relative; overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--hair-strong);
  height: clamp(420px, 52vw, 660px);
  background: #fff;
}
@media (prefers-reduced-motion: no-preference) {
  [data-scale] { transform: scale(0.965); opacity: 0.6; transition: transform 1.1s var(--ease), opacity 1.1s var(--ease); }
  [data-scale].is-in { transform: scale(1); opacity: 1; }
}
.pane { position: absolute; inset: 0; display: flex; flex-direction: column; }
.pane-old { clip-path: inset(0 calc(100% - var(--pos)) 0 0); z-index: 2; }
.chrome {
  flex: 0 0 auto; display: flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-bottom: 1px solid #E2E2DC; background: #F4F4EF;
}
.chrome .dot { width: 9px; height: 9px; border-radius: 50%; background: #D6D6CE; }
.chrome .addr {
  flex: 1; margin-left: 8px; background: #fff; border: 1px solid #E2E2DC;
  border-radius: 6px; padding: 3px 10px;
  font-family: var(--font-mono); font-size: 0.66rem; color: #8A8A80;
  white-space: nowrap; overflow: hidden;
}
/* Alte Website */
.pane-old .old-body {
  flex: 1; background: #F1E9D2;
  font-family: "Times New Roman", Times, serif;
  padding: 14px 18px; overflow: hidden; filter: saturate(0.85);
  color: #33302A;
  display: flex; flex-direction: column;
}
.old-title { font-size: 1.45rem; font-weight: 700; text-align: center; color: #7B2D26; }
.old-sub { text-align: center; font-size: 0.82rem; font-style: italic; color: #6E6650; margin: 2px 0 6px; }
.old-nav {
  text-align: center; font-size: 0.82rem; color: #0000CC; margin: 0 0 10px;
  border-top: 1px solid #B9AE8C; border-bottom: 1px solid #B9AE8C;
  padding: 5px 0;
}
.old-nav u { margin: 0 3px; }
.old-box {
  background: #FBF7EA; border: 2px inset #B9AE8C;
  padding: 9px 12px; font-size: 0.84rem; line-height: 1.45;
  margin-bottom: 10px;
}
.old-box p { margin: 0 0 6px; }
.old-box p:last-child { margin-bottom: 0; }
.old-welcome { font-weight: 700; font-style: italic; }
.old-new { color: #C00000; font-weight: 700; }
@media (prefers-reduced-motion: no-preference) {
  .old-new { animation: oldBlink 1.1s steps(2, start) infinite; }
}
@keyframes oldBlink { to { visibility: hidden; } }
.old-list-title { font-weight: 700; font-size: 0.88rem; margin: 0 0 4px; text-decoration: underline; }
.old-list { margin: 0; padding-left: 20px; font-size: 0.82rem; line-height: 1.5; }
.old-gallery { display: flex; gap: 8px; margin: 10px 0; }
.old-gallery span {
  flex: 1; height: 44px; background: #DDD3B8; border: 1px solid #B9AE8C;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; color: #8A8066;
}
.old-counter {
  text-align: center; font-size: 0.78rem; color: #33302A; margin-top: auto;
}
.old-counter b {
  font-family: var(--font-mono); background: #111; color: #3F3;
  padding: 1px 6px; letter-spacing: 2px; font-weight: 400;
}
.old-foot {
  text-align: center; font-size: 0.72rem; color: #6E6650;
  border-top: 1px solid #B9AE8C; margin-top: 6px; padding-top: 6px;
}
/* Neue Website: Live-Preview der Demo-Landingpage (beispiel.html) */
.pane-new { background: #F7F9FB; color: var(--white); }
.pane-new .chrome { background: #181818; border-bottom-color: #262626; }
.pane-new .chrome .dot { background: #333; }
.pane-new .chrome .addr { background: #101010; border-color: #2A2A2A; color: #999; }
.preview-clip { flex: 1; position: relative; overflow: hidden; }
.preview-frame {
  border: 0; display: block;
  transform-origin: top left;
  pointer-events: none;
  background: #F7F9FB;
}
.pane-new .new-body {
  flex: 1; padding: 14px 20px 12px;
  display: flex; flex-direction: column; gap: 10px;
}
.new-nav {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  font-size: 0.85rem;
  border-bottom: 1px solid #232323; padding-bottom: 10px;
}
.new-nav strong { font-family: var(--font-disp); font-size: 1rem; text-transform: uppercase; letter-spacing: 0.03em; }
.new-links {
  display: flex; gap: 14px;
  font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: #999;
}
.new-tel {
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.06em;
  border: 1px solid #2E2E2E; border-radius: 999px;
  padding: 5px 11px; white-space: nowrap; color: #BBB;
}
.new-h {
  font-family: var(--font-disp); text-transform: uppercase;
  font-size: clamp(1.15rem, 2.4vw, 1.9rem); line-height: 1.02; margin: 4px 0 0;
}
.new-h em { font-style: normal; color: var(--lime); }
.new-sub { font-size: 0.78rem; color: #999; margin: 0; max-width: 34em; }
.new-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.new-cta {
  background: var(--lime); color: var(--black);
  font-family: var(--font-mono); font-size: 0.64rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 999px; padding: 9px 16px;
}
.new-cta-ghost {
  border: 1px solid #2E2E2E; color: #CCC;
  font-family: var(--font-mono); font-size: 0.64rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 999px; padding: 9px 16px;
}
.new-stars { font-size: 0.8rem; color: var(--lime); font-weight: 700; }
.new-stars span { color: #999; font-weight: 400; }
.new-services { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-top: 2px; }
.new-service {
  background: #161616; border: 1px solid #232323; border-radius: 8px;
  padding: 10px 12px;
}
.new-service b {
  display: block; font-family: var(--font-disp); font-weight: 400;
  text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.03em;
  margin-bottom: 3px;
}
.new-service span { font-size: 0.68rem; color: #999; line-height: 1.4; display: block; }
.new-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; }
.new-chips span {
  font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.06em;
  color: #CCC; border: 1px solid #2E2E2E;
  border-radius: 999px; padding: 5px 10px; white-space: nowrap;
}
.new-foot {
  display: flex; justify-content: space-between; gap: 10px;
  border-top: 1px solid #232323; padding-top: 8px;
  font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: #666;
}
/* Auf kleinen Screens: Mockups entschlacken, damit nichts überläuft */
@media (max-width: 700px) {
  .new-services, .new-foot, .new-sub, .new-links,
  .old-gallery, .old-list-title, .old-list, .old-foot { display: none; }
}
/* Griff */
.compare-divider {
  position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px;
  background: var(--lime);
  transform: translateX(-50%); z-index: 3; pointer-events: none;
}
.compare-handle {
  position: absolute; top: 50%; left: var(--pos); transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--lime); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; z-index: 4; pointer-events: none;
}
.compare-range {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; z-index: 5; margin: 0;
  -webkit-appearance: none; appearance: none;
}
.compare:has(.compare-range:focus-visible) .compare-frame {
  outline: 2px solid var(--lime); outline-offset: 4px;
}
.compare-tag {
  position: absolute; top: 54px; z-index: 4; pointer-events: none;
  font-family: var(--font-mono); font-size: 0.64rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 999px; padding: 6px 14px;
}
.tag-old { left: 14px; background: rgba(11, 11, 11, 0.8); color: var(--white); }
.tag-new { right: 14px; background: var(--lime); color: var(--black); }
.compare-hint { text-align: center; margin-top: 16px; color: var(--grey); }

/* „Was die Politur geändert hat" — Vorher→Nachher-Zeilen unter dem Slider */
.swap-wrap { margin-top: clamp(48px, 7vw, 96px); }
.swap-head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 20px;
  margin-bottom: clamp(20px, 3vw, 36px);
}
.swap-title {
  font-family: var(--font-disp); text-transform: uppercase; line-height: 0.95;
  font-size: clamp(1.6rem, 4vw, 3rem);
}
.swap-note { color: var(--grey); font-size: 0.85rem; padding-bottom: 6px; }
.swap-row {
  display: grid;
  grid-template-columns: minmax(110px, 0.5fr) 1.2fr auto 1.2fr;
  gap: clamp(14px, 2.5vw, 36px); align-items: baseline;
  border-top: 1px solid var(--hair);
  padding: clamp(16px, 2.4vw, 24px) 0;
}
.swap-row:last-child { border-bottom: 1px solid var(--hair); }
.swap-k { color: var(--lime); }
.swap-old { color: var(--grey); font-size: 0.95rem; }
.swap-arr { color: var(--lime); font-size: 1rem; }
.swap-new { color: var(--white); font-size: 0.95rem; font-weight: 500; }
@media (max-width: 760px) {
  .swap-row { grid-template-columns: 1fr; gap: 6px; padding: 16px 0; }
  .swap-arr { display: none; }
  .swap-old::before { content: "✕ "; color: #8A5B52; }
  .swap-new::before { content: "✓ "; color: var(--lime); }
}
.proof-cta {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  margin-top: clamp(32px, 5vw, 56px); text-align: center;
}
.proof-cta-note { color: var(--grey); }

/* ---------- Horizontal-Scroll: Leistungen ---------- */
.hscroll { position: relative; }
.hscroll-sticky {
  /* Kompakter Block, per JS vertikal mittig gepinnt — kein 100vh-Aufblasen */
  position: sticky; top: 90px;
  overflow: hidden;
  padding: 4px 0;
}
.hscroll-head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 20px;
  padding: 0 var(--pad-x); margin-bottom: 12px;
  color: var(--grey);
}
.hscroll-title { font-size: clamp(2rem, 5vw, 3.8rem); color: var(--white); }
.hscroll-track {
  display: flex; align-items: stretch; gap: clamp(16px, 2vw, 28px);
  padding: 0 var(--pad-x);
  margin-top: 8px;
  will-change: transform;
}
.hcard {
  flex: 0 0 auto;
  width: min(76vw, 420px);
  min-height: clamp(300px, 40vh, 400px);
  background: var(--panel);
  border: 1px solid var(--hair);
  border-radius: 12px;
  padding: clamp(22px, 2.6vw, 34px);
  display: flex; flex-direction: column;
}
.hcard-idx {
  font-family: var(--font-disp); font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--lime); line-height: 1;
}
.hcard-mid { margin: auto 0; padding: 16px 0; }
.hcard-mid h3 {
  font-family: var(--font-disp); text-transform: uppercase;
  font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 0.95;
  margin: 0 0 14px;
}
.hcard p { color: var(--grey); font-size: 0.98rem; margin: 0; }
.hcard-meta {
  display: flex; justify-content: space-between; gap: 10px;
  font-family: var(--font-mono); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: #777;
  border-top: 1px solid #232323; padding-top: 12px;
}
.hcard-final { background: var(--lime); border-color: var(--lime); color: var(--black); }
.hcard-final .hcard-idx { color: var(--black); }
.hcard-final p { color: rgba(11, 11, 11, 0.7); }
.hcard-final .hcard-meta { border-top-color: rgba(11, 11, 11, 0.25); color: rgba(11, 11, 11, 0.6); }
.hscroll-hint { padding: 12px var(--pad-x) 0; color: var(--grey); }
/* Fallback: mobil / reduced motion → vertikale Liste */
.hscroll.no-h .hscroll-sticky { position: static; top: auto !important; height: auto; padding: 0; overflow: visible; }
.hscroll.no-h .hscroll-track { flex-direction: column; flex: none; transform: none !important; margin-top: 0; }
.hscroll.no-h .hcard { width: 100%; min-height: 0; }
.hscroll.no-h .hcard p { max-width: 40em; }
.hscroll.no-h .hscroll-hint { display: none; }

/* ---------- Ablauf: Sticky-Split ---------- */
.process-grid {
  display: grid; grid-template-columns: 1fr 1.35fr; gap: clamp(32px, 5vw, 96px);
  align-items: start;
}
.process-left { position: sticky; top: 120px; }
.process-title { font-size: clamp(2.6rem, 7vw, 6rem); }
.process-left .lead { color: var(--grey); margin-top: 22px; max-width: 24em; }
.process-item {
  border-top: 1px solid var(--hair);
  padding: clamp(28px, 4vw, 48px) 0;
  display: grid; grid-template-columns: auto 1fr; gap: clamp(18px, 3vw, 40px);
}
.process-item:last-child { border-bottom: 1px solid var(--hair); }
.process-num {
  font-family: var(--font-disp); font-size: clamp(2.4rem, 5vw, 4.4rem); line-height: 0.9;
  color: transparent; -webkit-text-stroke: 1px var(--lime);
}
.process-body h3 {
  font-family: var(--font-disp); text-transform: uppercase;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem); line-height: 0.95; margin-bottom: 12px;
}
.process-body p { color: var(--grey); margin: 0 0 12px; max-width: 34em; }
.process-meta { color: var(--lime); }
@media (max-width: 900px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-left { position: static; }
}

/* ---------- Preis: Lime-Inversion ---------- */
.price-sec {
  background: var(--lime); color: var(--black);
  padding-top: clamp(72px, 9vw, 140px); padding-bottom: clamp(72px, 9vw, 140px);
}
.price-sec .sec-tag { border-top-color: var(--hair-black); color: rgba(11, 11, 11, 0.55); }
.price-sec .sec-tag .idx { color: var(--black); }
.price-giant {
  font-size: clamp(6rem, 26vw, 24rem);
  line-height: 0.85; text-align: center;
  margin: clamp(8px, 2vw, 24px) 0 clamp(24px, 3vw, 40px);
}
.price-rows {
  max-width: 720px; margin: 0 auto clamp(28px, 4vw, 44px);
  list-style: none; padding: 0;
}
.price-rows li {
  display: flex; justify-content: space-between; gap: 16px;
  border-top: 1px solid var(--hair-black);
  padding: 13px 2px;
  font-size: 0.95rem;
}
.price-rows li:last-child { border-bottom: 1px solid var(--hair-black); }
.price-rows .k { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(11, 11, 11, 0.55); align-self: center; }
.price-rows .v { font-weight: 600; text-align: right; }
.price-cta-row { text-align: center; }
.price-foot { text-align: center; color: rgba(11, 11, 11, 0.6); font-size: 0.9rem; margin: 22px 0 0; }

/* ---------- Zitat ---------- */
.quote-sec { text-align: center; }
.quote-big {
  font-size: clamp(1.5rem, 3.6vw, 3rem);
  line-height: 1.3; font-weight: 500; letter-spacing: -0.01em;
  max-width: 24em; margin: 0 auto;
}
.quote-big .q-mark { color: var(--lime); }
.quote-src { margin-top: 28px; color: var(--grey); }

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(32px, 5vw, 96px);
  align-items: start;
}
.faq-left { position: sticky; top: 120px; }
.faq-title { font-size: clamp(2.6rem, 7vw, 6rem); }
.faq-list { border-top: 1px solid var(--hair); }
.faq-item { border-bottom: 1px solid var(--hair); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: baseline; gap: 20px;
  padding: 22px 0;
  font-weight: 600; font-size: 1.05rem;
  transition: color 0.25s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--lime); }
.faq-item summary .faq-plus {
  font-family: var(--font-mono); font-size: 1.1rem; color: var(--lime);
  transition: transform 0.3s var(--ease);
}
.faq-item[open] summary { color: var(--lime); }
.faq-item[open] summary .faq-plus { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 0 24px; color: var(--grey); max-width: 40em; }
.faq-item .faq-body p { margin: 0; }
@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-left { position: static; }
}

/* ---------- Anfrage ---------- */
.contact-sec { border-top: 1px solid var(--hair); }
.contact-head { margin-bottom: clamp(36px, 5vw, 64px); }
.contact-title { font-size: clamp(2.8rem, 10vw, 9rem); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(32px, 5vw, 96px);
  align-items: start;
}
.contact-side { position: sticky; top: 120px; color: var(--grey); }
.contact-side p { max-width: 26em; }
.contact-points { list-style: none; margin: 28px 0 0; padding: 0; }
.contact-points li {
  border-top: 1px solid var(--hair);
  padding: 14px 0;
  display: flex; gap: 12px; font-size: 0.95rem;
}
.contact-points .tick { color: var(--lime); }
.contact-points strong { color: var(--white); font-weight: 600; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-side { position: static; }
}

/* Kauf-Karte (Stripe Payment Link, ohne eigenes Backend) */
.buy-card {
  background: var(--panel); border: 1px solid var(--hair);
  border-radius: 14px;
  padding: clamp(26px, 3.4vw, 44px);
}
.buy-head {
  display: flex; justify-content: space-between; gap: 12px;
  color: var(--grey);
  padding-bottom: 16px; border-bottom: 1px solid var(--hair);
}
.buy-rows { list-style: none; margin: 0; padding: 0; }
.buy-rows li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 13px 0; border-bottom: 1px solid var(--hair);
  font-size: 0.95rem;
}
.buy-rows .k { color: var(--grey); }
.buy-rows .v { font-weight: 500; text-align: right; }
.buy-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 18px 0 24px;
}
.buy-total .mono { color: var(--grey); }
.buy-total .amount {
  font-family: var(--font-disp); font-size: 2.2rem; line-height: 1;
  color: var(--lime);
}
.buy-total .amount small { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); }
.buy-cta { width: 100%; justify-content: center; padding: 20px 30px; }
.buy-note { font-size: 0.85rem; color: var(--grey); text-align: center; margin: 16px 0 0; }
.buy-note a { color: var(--white); }

.field { margin-bottom: clamp(24px, 3vw, 36px); }
.field label {
  display: block; margin-bottom: 10px;
  font-family: var(--font-mono); font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey);
}
.field label .req { color: var(--lime); }
.field input, .field textarea {
  width: 100%; font: inherit; color: var(--white);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem); font-weight: 500;
  background: transparent;
  border: 0; border-bottom: 1px solid var(--hair-strong);
  border-radius: 0;
  padding: 6px 0 16px;
  transition: border-color 0.25s ease;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(239, 239, 234, 0.22); }
.field input:focus, .field textarea:focus {
  outline: none; border-bottom-color: var(--lime);
}
.field input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px var(--black) inset;
  -webkit-text-fill-color: var(--white);
}
.field textarea { resize: vertical; min-height: 90px; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-bottom-color: var(--error); }
.field .error { display: none; color: var(--error); font-size: 0.85rem; margin-top: 8px; }
.field.has-error .error { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 40px); }
.hp-field { position: absolute; left: -9999px; top: -9999px; }
.form-alert {
  display: none; border: 1px solid rgba(255, 107, 87, 0.5); color: var(--error);
  border-radius: 10px; padding: 14px 18px; margin-bottom: 24px; font-size: 0.95rem;
}
.form-alert.visible { display: block; }
.form-foot { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 8px; }
.order-note { font-size: 0.85rem; color: var(--grey); margin: 0; max-width: 30em; }
.order-note a { color: var(--white); }
.form-success { padding: clamp(20px, 4vw, 40px) 0; }
.form-success .success-ico {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--lime); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 24px;
}
.form-success h3 {
  font-family: var(--font-disp); text-transform: uppercase;
  font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 0.95; margin-bottom: 14px;
}
.form-success p { color: var(--grey); max-width: 32em; }

/* ---------- Footer ---------- */
.site-foot { padding-top: clamp(64px, 9vw, 140px); }
.foot-links-row {
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  color: var(--grey);
  border-top: 1px solid var(--hair);
  padding: 22px 0;
}
.foot-links-row a { color: var(--grey); text-decoration: none; transition: color 0.2s ease; }
.foot-links-row a:hover { color: var(--lime); }
.foot-links-group { display: flex; gap: 24px; flex-wrap: wrap; }
.foot-wordmark-wrap { overflow: hidden; padding: 0 0 8px; }
.foot-wordmark {
  display: block; text-align: center; text-decoration: none;
  font-family: var(--font-disp); text-transform: uppercase;
  font-size: clamp(3rem, 11.5vw, 12.5rem);
  line-height: 0.9; letter-spacing: 0.01em;
  color: var(--white);
  transition: color 0.3s ease;
}
.foot-wordmark:hover { color: var(--lime); }
.foot-legal {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 18px 0 26px;
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(239, 239, 234, 0.35);
}
.foot-legal a { color: inherit; }

/* ---------- Mobile Sticky-CTA ---------- */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
  display: none; align-items: center; justify-content: space-between; gap: 12px;
  background: rgba(11, 11, 11, 0.92);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-top: 1px solid var(--hair);
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
  transform: translateY(110%); transition: transform 0.35s var(--ease);
}
.mobile-cta.visible { transform: translateY(0); }
.mobile-cta .mc-price {
  font-family: var(--font-disp); text-transform: uppercase;
  font-size: 1rem; color: var(--white); line-height: 1.1;
}
.mobile-cta .mc-price small {
  display: block; font-family: var(--font-mono); font-size: 0.58rem;
  letter-spacing: 0.1em; color: var(--grey);
}
.mobile-cta .btn { padding: 13px 22px; font-size: 0.66rem; }
@media (max-width: 720px) { .mobile-cta { display: flex; } }

/* ---------- Reveal-System ---------- */
[data-reveal] { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0; transform: translateY(26px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
    transition-delay: var(--d, 0s);
  }
  [data-reveal="fade"] { transform: none; }
  [data-reveal].is-in { opacity: 1; transform: none; }
  [data-lines] .line-mask { display: block; overflow: hidden; }
  [data-lines] .line-inner { display: block; transform: translateY(115%); transition: transform 1s var(--ease); }
  [data-lines].is-in .line-inner { transform: none; }
  [data-lines].is-in .line-mask:nth-child(2) .line-inner { transition-delay: 0.1s; }
  [data-lines].is-in .line-mask:nth-child(3) .line-inner { transition-delay: 0.2s; }
}
[data-lines] .line-mask { display: block; overflow: hidden; }
[data-lines] .line-inner { display: block; }

/* ---------- Unterseiten (Impressum, Datenschutz, Anleitung) ---------- */
.sub-main { padding-top: clamp(140px, 18vh, 200px); padding-bottom: clamp(64px, 9vw, 120px); }
.sub-title { font-size: clamp(2.6rem, 9vw, 7rem); margin-bottom: clamp(32px, 5vw, 64px); }
.prose { max-width: 46em; color: var(--grey); }
.prose h2 {
  font-family: var(--font-disp); text-transform: uppercase; line-height: 0.95;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: var(--white);
  border-top: 1px solid var(--hair);
  padding-top: 28px; margin: 48px 0 16px;
}
.prose h3 { color: var(--white); font-size: 1.05rem; font-weight: 600; margin: 28px 0 10px; }
.prose strong { color: var(--white); font-weight: 600; }
.prose a { color: var(--white); text-decoration-color: var(--lime); }
.prose a:hover { color: var(--lime); }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: 6px; }
.prose .addr { font-style: normal; color: var(--white); line-height: 1.8; }
.prose-note {
  border: 1px solid var(--hair); border-radius: 10px;
  padding: 16px 20px; margin: 24px 0;
  font-size: 0.92rem;
}

/* Anleitung */
.guide-intro { max-width: 40em; color: var(--grey); font-size: 1.1rem; margin-bottom: clamp(40px, 6vw, 64px); }
.guide-intro strong { color: var(--white); }
.guide-list { max-width: 860px; }
.guide-step {
  border-top: 1px solid var(--hair);
  padding: clamp(28px, 4vw, 44px) 0;
  display: grid; grid-template-columns: auto 1fr; gap: clamp(18px, 3vw, 40px);
}
.guide-step:last-of-type { border-bottom: 1px solid var(--hair); }
.guide-num {
  font-family: var(--font-disp); font-size: clamp(2.2rem, 4.6vw, 3.8rem); line-height: 0.9;
  color: transparent; -webkit-text-stroke: 1px var(--lime);
}
.guide-body h2 {
  font-family: var(--font-disp); text-transform: uppercase; line-height: 0.95;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  margin-bottom: 14px;
}
.guide-body p, .guide-body li { color: var(--grey); }
.guide-body p { margin: 0 0 12px; max-width: 40em; }
.guide-body ul { margin: 0 0 12px; padding-left: 1.2em; }
.guide-body strong, .guide-body code { color: var(--white); }
.guide-body code {
  font-family: var(--font-mono); font-size: 0.85em;
  background: var(--panel); border: 1px solid var(--hair);
  border-radius: 6px; padding: 2px 7px;
}
.guide-body a { color: var(--white); text-decoration-color: var(--lime); }
.guide-body a:hover { color: var(--lime); }
.guide-tip {
  border: 1px solid var(--hair); border-left: 3px solid var(--lime);
  border-radius: 8px;
  padding: 14px 18px; margin-top: 16px;
  font-size: 0.92rem; color: var(--grey); max-width: 40em;
}
.guide-tip .tip-label { color: var(--lime); margin-right: 8px; }
.guide-help {
  margin-top: clamp(40px, 6vw, 64px);
  border: 1px solid var(--hair); border-radius: 12px;
  padding: clamp(24px, 3vw, 40px);
  max-width: 860px;
}
.guide-help h2 {
  font-family: var(--font-disp); text-transform: uppercase;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem); margin-bottom: 10px;
}
.guide-help p { color: var(--grey); margin: 0 0 18px; max-width: 40em; }
@media (max-width: 640px) {
  .guide-step { grid-template-columns: 1fr; gap: 12px; }
}

/* Tabs (Anleitung) */
.tabs { display: flex; gap: 10px; flex-wrap: wrap; margin: 0 0 clamp(28px, 4vw, 44px); }
.tab-btn {
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: transparent; color: var(--grey);
  border: 1px solid var(--hair-strong); border-radius: 999px;
  padding: 13px 24px; cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.tab-btn:hover { color: var(--white); border-color: var(--white); }
.tab-btn.active { background: var(--lime); border-color: var(--lime); color: var(--black); }
.subtabs-label { display: block; color: var(--grey); margin-bottom: 12px; }
.subtabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: clamp(24px, 3vw, 40px); }
.subtab-btn {
  font-family: var(--font-mono); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: transparent; color: var(--grey);
  border: 1px solid var(--hair); border-radius: 999px;
  padding: 9px 16px; cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.subtab-btn:hover { color: var(--white); border-color: var(--white); }
.subtab-btn.active { background: var(--white); border-color: var(--white); color: var(--black); }
.tab-panel[hidden] { display: none; }
.prov-hint { display: none; }
.prov-hint.active { display: block; }

/* ---------- Kleinkram ---------- */
@media (max-width: 720px) {
  .field-row { grid-template-columns: 1fr; }
  .hero { min-height: 94svh; }
}
