/* ===================================================================
   kiwebsite.de — Stylesheet
   Stack: pures CSS · Mobile First · Design Tokens
   Konzept: Cream + Lime — modern editorial premium
   =================================================================== */

/* ── Fonts (lokal) ──────────────────────────────────────────────── */
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-extrabold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── Design Tokens ──────────────────────────────────────────────── */
:root {
  /* Farben — Deep Space Dark */
  --bg: #070b1a;
  --bg-soft: #0b1024;
  --bg-card: #11172e;
  --bg-elevated: #161d36;
  --ink: #f4f4f0;
  --ink-2: #e6e6e0;
  --ink-muted: rgba(244, 244, 240, 0.65);
  --ink-faint: rgba(244, 244, 240, 0.4);
  --accent: #22d3ee;
  --accent-2: #0891b2;
  --accent-soft: rgba(34, 211, 238, 0.12);
  --dark: #050818;
  --dark-2: #0a0f22;
  --border: rgba(244, 244, 240, 0.1);
  --border-soft: rgba(244, 244, 240, 0.05);
  --border-strong: rgba(244, 244, 240, 0.2);

  /* Typografie */
  --font-serif: "Fraunces", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;

  /* Größen — fluid */
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  --fs-xl: clamp(1.375rem, 1.2rem + 0.7vw, 1.625rem);
  --fs-2xl: clamp(1.75rem, 1.5rem + 1vw, 2.25rem);
  --fs-3xl: clamp(2.25rem, 1.8rem + 1.8vw, 3rem);
  --fs-4xl: clamp(3rem, 2.2rem + 3vw, 4.5rem);
  --fs-5xl: clamp(3.5rem, 2.5rem + 4.5vw, 6rem);
  --fs-display: clamp(4rem, 2rem + 9vw, 11rem);
  --fs-mega: clamp(5rem, 3rem + 13vw, 16rem);

  /* Spacing */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;
  --s-11: 12rem;

  /* Layout */
  --container: min(1400px, calc(100% - 2.5rem));
  --pad-x: clamp(1.25rem, 4vw, 2.5rem);

  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast: 200ms;
  --t-med: 400ms;
  --t-slow: 700ms;
  --t-xslow: 1100ms;

  --header-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: rgba(34, 211, 238, 0.5) var(--dark);
}

/* Scrollbar — Cyan im Theme (WebKit / Chrome / Safari / Edge) */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(34, 211, 238, 0.4);
  border-radius: 999px;
  border: 3px solid var(--dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}

img, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul, ol { list-style: none; }

::selection {
  background: var(--accent);
  color: var(--ink);
}

/* ── Typo ───────────────────────────────────────────────────────── */
h1, h2 {
  font-family: var(--font-sans);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--ink);
  text-transform: uppercase;
}
h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--ink);
}

h1 { font-size: var(--fs-display); }
h2 { font-size: var(--fs-5xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }
h2 em { font-style: normal; color: var(--accent); font-weight: 900; }

p {
  color: var(--ink-muted);
  max-width: 60ch;
  line-height: 1.6;
}

.italic { font-style: italic; }

/* ── Accessibility ──────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--pad-x);
  background: var(--ink);
  color: var(--bg);
  padding: var(--s-3) var(--s-5);
  border-radius: var(--r-sm);
  font-weight: 600;
  z-index: 999;
  transition: top var(--t-fast) var(--ease);
}
.skip-link:focus { top: var(--s-3); }

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
  border-radius: 2px;
}

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

/* ── Layout ─────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 0;
}

.section {
  padding-block: clamp(4rem, 10vw, 9rem);
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}
.eyebrow--center {
  display: inline-flex;
}

/* Custom Cursor — entfernt */
.cursor { display: none !important; }

/* ── Page Loader ────────────────────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: clip-path var(--t-xslow) var(--ease) 0.4s;
  clip-path: inset(0 0 0 0);
}
.loader.is-done {
  clip-path: inset(0 0 100% 0);
  pointer-events: none;
}
.loader__brand {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--ink);
  letter-spacing: -0.03em;
  font-weight: 400;
  opacity: 0;
  transform: translateY(20px);
  animation: loader-in 600ms var(--ease) 200ms forwards,
    loader-out 500ms var(--ease) 900ms forwards;
}
.loader__brand em {
  color: var(--accent);
  font-style: italic;
}
@keyframes loader-in {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes loader-out {
  to { opacity: 0; transform: translateY(-20px); }
}

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1.15rem 1.85rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color var(--t-med) var(--ease),
    background var(--t-med) var(--ease),
    border-color var(--t-med) var(--ease),
    transform var(--t-med) var(--ease);
  white-space: nowrap;
  isolation: isolate;
  will-change: transform;
}

.btn__label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn__fill {
  position: absolute;
  inset: 0;
  background: var(--accent);
  border-radius: inherit;
  transform: translateY(110%);
  transition: transform var(--t-slow) var(--ease);
  z-index: 0;
}
.btn:hover .btn__fill {
  transform: translateY(0);
}

.btn--dark {
  background: rgba(15, 19, 38, 0.5);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(0, 0, 0, 0.25),
    0 6px 24px rgba(0, 0, 0, 0.45),
    0 2px 8px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn--dark::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0) 55%);
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
}
.btn--dark .btn__fill { display: none; }
.btn--dark .btn__label {
  position: relative;
  z-index: 1;
}
.btn--dark:hover {
  transform: translateY(-2px);
  background: rgba(28, 36, 64, 0.7);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -1px 0 rgba(0, 0, 0, 0.25),
    0 14px 36px rgba(0, 0, 0, 0.55),
    0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn--outline .btn__fill { background: var(--accent); }
.btn--outline:hover {
  color: var(--dark);
  border-color: var(--accent);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn--ghost .btn__fill { background: var(--accent); }
.btn--ghost:hover {
  color: var(--dark);
  border-color: var(--accent);
}

/* Glass / Apple-Style Button — mit rotierender Border-Animation */
.btn--glass {
  position: relative;
  display: inline-flex;
  padding: 1.5px;
  border: none;
  background: rgba(244, 244, 240, 0.18);
  border-radius: var(--r-pill);
  overflow: hidden;
  isolation: isolate;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  transition: transform var(--t-med) var(--ease),
    box-shadow var(--t-med) var(--ease);
}

.btn__beam {
  position: absolute;
  inset: -150%;
  z-index: 0;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 300deg,
    rgba(34, 211, 238, 0.9) 340deg,
    rgba(244, 244, 240, 1) 355deg,
    rgba(34, 211, 238, 0.9) 5deg,
    transparent 35deg,
    transparent 360deg
  );
  animation: beam-spin 3.5s linear infinite;
  pointer-events: none;
}
@keyframes beam-spin {
  to { transform: rotate(360deg); }
}

.btn__face {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.25rem;
  border-radius: inherit;
  background: rgba(15, 19, 38, 0.85);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  width: 100%;
  height: 100%;
  box-shadow: inset 0 1px 0 rgba(244, 244, 240, 0.08);
  overflow: hidden;
}
.btn__face::before { display: none; }
.btn--glass .btn__label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn--glass .btn__fill { display: none; }
.btn--glass:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(34, 211, 238, 0.25),
    0 4px 18px rgba(0, 0, 0, 0.3);
}
.btn--glass:hover .btn__face {
  background: rgba(20, 26, 50, 0.85);
}
@keyframes glass-shimmer {
  0% { left: -100%; }
  35%, 100% { left: 200%; }
}

.btn__arrow {
  display: inline-flex;
  width: 14px;
  height: 14px;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-med) var(--ease);
}
.btn:hover .btn__arrow {
  transform: translateX(4px);
}

.btn--lg { padding: 1.35rem 2.25rem; font-size: 1rem; }

/* ── Header ─────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  pointer-events: none;
  background: rgba(7, 11, 26, 0.7);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--s-5);
  pointer-events: none;
}
.site-header__inner > * { pointer-events: auto; }
/* Explizite Spaltenzuweisung — auch wenn .nav display:none ist,
   bleibt der Burger rechts und rutscht nicht in die Mitte */
.site-header__inner > .brand { grid-column: 1; justify-self: start; }
.site-header__inner > .nav { grid-column: 2; }
.site-header__inner > .site-header__cta { grid-column: 3; justify-self: end; }

.brand {
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
}
.brand__ki {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
  font-size: 1.05em;
}
.brand__site {
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-left: 0.05em;
}

.nav {
  display: none;
  justify-content: center;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 1px;
  padding: 6px;
  background: rgba(17, 23, 46, 0.6);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
}
.nav__link {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: var(--r-pill);
  transition: background var(--t-fast) var(--ease),
    color var(--t-fast) var(--ease);
}
.nav__link:hover {
  background: var(--accent);
  color: var(--dark);
}

.site-header__cta {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  justify-content: flex-end;
}
.site-header__cta .btn { display: none; }

/* Burger */
.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  align-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--dark);
  transition: background var(--t-fast) var(--ease),
    color var(--t-fast) var(--ease);
}
.burger:hover {
  background: var(--ink);
  color: var(--dark);
}
.burger span {
  width: 18px;
  height: 1.6px;
  background: currentColor;
  transition: transform var(--t-med) var(--ease),
    opacity var(--t-fast) var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(3.3px) rotate(45deg);
}
.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-3.3px) rotate(-45deg);
}

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--dark);
  color: var(--ink);
  padding: calc(var(--header-h) + 2rem) var(--pad-x) var(--s-7);
  transform: translateY(-100%);
  transition: transform var(--t-slow) var(--ease),
    visibility 0s linear var(--t-slow);
  z-index: 95;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  visibility: hidden;
}
.mobile-nav.is-open {
  transform: translateY(0);
  visibility: visible;
  transition: transform var(--t-slow) var(--ease);
}
.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--s-5);
  border-top: 1px solid var(--border);
}
.mobile-nav__link {
  display: block;
  padding: 1.25rem 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.03em;
  border-bottom: 1px solid var(--border);
  transition: color var(--t-fast) var(--ease);
}
.mobile-nav__link:hover,
.mobile-nav__link:focus-visible {
  color: var(--accent);
}
.mobile-nav__foot {
  margin-top: auto;
  padding-top: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  font-size: 0.85rem;
  color: var(--ink-muted);
}
.mobile-nav__foot a { color: var(--ink); }
.mobile-nav__foot a:hover { color: var(--accent); }

@media (min-width: 1024px) {
  .nav { display: flex; }
  .site-header__cta .btn { display: inline-flex; }
  .burger { display: none; }
}

/* ── Hero — Deep Space ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-h) + 2rem) 0 calc(var(--header-h) + 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, #1a2350 0%, #0a0f24 50%, #050818 100%);
}

/* Sterne — animiertes Twinkle via box-shadow Trick */
.hero__stars,
.hero__stars-2,
.hero__stars-3 {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__stars::after,
.hero__stars-2::after,
.hero__stars-3::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 1px;
  background: transparent;
  border-radius: 50%;
}
.hero__stars::after {
  box-shadow:
    
    13.4vw -45.6vh #fff,
    -26.6vw 22.7vh #fff,
    37.6vw -39.7vh #fff,
    -45.1vw -27.0vh #fff,
    -45.5vw -28.9vh #fff,
    4.3vw -26.8vh #fff,
    29.7vw -47.4vh #fff,
    19.0vw -15.3vh #fff,
    43.9vw -15.7vh #fff,
    -38.7vw 33.4vh #fff,
    29.5vw 22.1vh #fff,
    45.4vw -11.7vh #fff,
    31.6vw 11.4vh #fff,
    7.4vw 19.6vh #fff,
    -26.1vw -20.2vh #fff,
    -25.7vw -38.3vh #fff,
    13.0vw -13.0vh #fff,
    -27.9vw -22.4vh #fff,
    14.2vw 10.5vh #fff,
    22.0vw -32.3vh #fff,
    47.0vw 13.4vh #fff,
    17.7vw 32.9vh #fff,
    -26.0vw -44.9vh #fff,
    -22.3vw -27.7vh #fff,
    36.1vw -17.8vh #fff,
    -10.0vw 39.8vh #fff,
    -22.6vw -24.3vh #fff,
    -22.8vw 8.1vh #fff,
    -9.7vw -26.9vh #fff,
    0.9vw -39.3vh #fff,
    -37.5vw 12.2vh #fff,
    -7.5vw -41.9vh #fff,
    47.6vw 2.8vh #fff,
    34.6vw -46.9vh #fff,
    17.4vw 3.5vh #fff,
    13.5vw -37.3vh #fff,
    -4.4vw 43.6vh #fff,
    -22.7vw 0.1vh #fff,
    39.6vw 35.6vh #fff,
    13.3vw 10.5vh #fff,
    25.2vw 3.8vh #fff,
    2.9vw -47.9vh #fff,
    -46.1vw 41.2vh #fff,
    31.8vw -18.5vh #fff,
    36.3vw 42.9vh #fff,
    -1.3vw -41.4vh #fff,
    25.5vw -35.7vh #fff,
    4.8vw -22.6vh #fff,
    -7.4vw -27.7vh #fff,
    22.1vw -28.7vh #fff,
    47.5vw 14.4vh #fff,
    1.7vw -36.4vh #fff,
    -15.5vw 8.5vh #fff,
    -26.9vw -41.2vh #fff,
    -26.0vw 38.9vh #fff,
    -41.2vw -25.2vh #fff,
    -27.4vw -35.3vh #fff,
    6.8vw -2.6vh #fff,
    29.5vw -29.7vh #fff,
    -6.6vw -7.3vh #fff;
  animation: twinkle 4s ease-in-out infinite;
}
.hero__stars-2::after {
  box-shadow:
    
    22.0vw 16.6vh #fff,
    -38.6vw -9.3vh #fff,
    34.7vw -24.1vh #22d3ee,
    -4.9vw -7.5vh #fff,
    -24.0vw 40.6vh #fff,
    34.7vw 4.8vh #22d3ee,
    47.9vw 32.3vh #fff,
    40.9vw 33.5vh #22d3ee,
    -1.4vw -27.5vh #fff,
    -42.4vw -11.6vh #fff,
    -22.5vw 27.3vh #fff,
    -7.4vw 43.9vh #fff,
    5.4vw 21.0vh #22d3ee,
    -19.5vw 45.0vh #fff,
    4.1vw 23.8vh #22d3ee,
    8.1vw 0.3vh #fff,
    -32.9vw 44.2vh #22d3ee,
    -30.2vw 9.1vh #fff,
    -25.4vw -36.5vh #fff,
    -24.4vw 9.1vh #fff,
    -7.8vw 8.0vh #fff,
    41.7vw -28.4vh #fff,
    -25.1vw -10.0vh #fff,
    -19.2vw -17.6vh #fff,
    -41.0vw -4.0vh #fff,
    47.6vw -41.0vh #fff,
    -22.5vw 41.6vh #fff,
    36.4vw -12.5vh #22d3ee,
    32.0vw 19.5vh #fff,
    46.8vw 14.8vh #22d3ee,
    30.4vw -19.3vh #fff,
    42.1vw -35.1vh #22d3ee,
    -37.7vw 5.1vh #fff,
    10.1vw 20.9vh #fff,
    12.9vw -22.7vh #fff;
  animation: twinkle 6s ease-in-out infinite 0.8s;
  width: 2px;
  height: 2px;
}
.hero__stars-3::after {
  box-shadow:
    
    38.9vw 33.2vh #22d3ee,
    -7.3vw -21.4vh #22d3ee,
    26.0vw 13.2vh #fff,
    23.2vw 5.0vh #fff,
    -47.1vw -40.8vh #fff,
    38.8vw 4.4vh #fff,
    7.9vw -33.8vh #22d3ee,
    -18.4vw 38.3vh #fff,
    34.6vw 38.3vh #fff,
    -24.0vw -38.1vh #fff,
    36.9vw -9.0vh #fff,
    -33.2vw 41.3vh #fff,
    45.7vw 29.8vh #fff,
    -45.6vw 22.7vh #fff,
    41.4vw 29.0vh #fff,
    29.8vw -22.4vh #fff,
    -37.6vw 35.7vh #fff,
    -26.6vw 30.4vh #fff;
  animation: twinkle 8s ease-in-out infinite 1.6s;
  width: 3px;
  height: 3px;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Sich langsam drehender Sternenhimmel */
.hero__stars-rotate {
  position: absolute;
  inset: -50%;
  z-index: 0;
  animation: rotate-stars 220s linear infinite;
  pointer-events: none;
}
@keyframes rotate-stars {
  to { transform: rotate(360deg); }
}

/* ── Holographic Ring-System (rechts am Hero) ─────────────────── */
.hero__rings {
  position: absolute;
  top: 50%;
  right: clamp(6rem, 12vw, 14rem);
  transform: translateY(-50%);
  width: clamp(120px, 12vw, 200px);
  aspect-ratio: 1;
  z-index: 4;
  pointer-events: none;
  filter: drop-shadow(0 0 30px rgba(34, 211, 238, 0.35));
  perspective: 900px;
  opacity: 0;
  animation: rings-fade-in 1.4s var(--ease) 1.5s forwards;
}
.hero__rings-tilt {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero__rings-rotor {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: rings-orbit 38s linear infinite,
    rings-float 12s ease-in-out infinite;
}

.ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(34, 211, 238, 0.55);
  box-shadow:
    inset 0 0 14px rgba(34, 211, 238, 0.18),
    0 0 10px rgba(34, 211, 238, 0.28);
}
.ring--1 {
  transform: rotateX(72deg);
}
.ring--2 {
  inset: 10%;
  transform: rotateX(50deg) rotateZ(35deg);
  border-color: rgba(34, 211, 238, 0.45);
}
.ring--3 {
  inset: 22%;
  transform: rotateX(80deg) rotateZ(-25deg);
  border-color: rgba(34, 211, 238, 0.32);
}
.ring--4 {
  inset: 34%;
  border: 1px dashed rgba(244, 244, 240, 0.28);
  transform: rotateY(65deg);
}

.ring__core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16%;
  height: 16%;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, var(--accent) 55%, rgba(8, 145, 178, 0.8) 100%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 22px var(--accent),
    0 0 8px var(--accent),
    inset 0 0 6px rgba(255, 255, 255, 0.5);
  animation: ring-core-pulse 3.5s ease-in-out infinite;
}
@keyframes ring-core-pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow:
      0 0 22px var(--accent),
      0 0 8px var(--accent),
      inset 0 0 6px rgba(255, 255, 255, 0.5);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    box-shadow:
      0 0 36px var(--accent),
      0 0 14px var(--accent),
      inset 0 0 8px rgba(255, 255, 255, 0.7);
  }
}

.ring__node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent), 0 0 4px #fff;
  margin-top: -3.5px;
  margin-left: -3.5px;
}
.ring__node--1 { animation: node-orbit-r1 14s linear infinite; }
.ring__node--2 {
  background: #fff;
  box-shadow: 0 0 8px #fff;
  width: 5px; height: 5px;
  margin-top: -2.5px; margin-left: -2.5px;
  animation: node-orbit-r2 20s linear infinite reverse;
}
.ring__node--3 {
  width: 5px; height: 5px;
  margin-top: -2.5px; margin-left: -2.5px;
  animation: node-orbit-r3 24s linear infinite;
}

@keyframes node-orbit-r1 {
  from { transform: translate(-50%, -50%) rotate(0deg) translateX(48%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg) translateX(48%) rotate(-360deg); }
}
@keyframes node-orbit-r2 {
  from { transform: translate(-50%, -50%) rotate(120deg) translateX(38%) rotate(-120deg); }
  to   { transform: translate(-50%, -50%) rotate(480deg) translateX(38%) rotate(-480deg); }
}
@keyframes node-orbit-r3 {
  from { transform: translate(-50%, -50%) rotate(240deg) translateX(28%) rotate(-240deg); }
  to   { transform: translate(-50%, -50%) rotate(600deg) translateX(28%) rotate(-600deg); }
}

@keyframes rings-orbit {
  to { transform: rotateY(360deg); }
}
@keyframes rings-float {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -16px; }
}
@keyframes rings-fade-in {
  to { opacity: 1; }
}

@media (max-width: 1100px) {
  .hero__rings { display: none; }
}

/* Shooting Star */
.hero__shoot {
  position: absolute;
  top: 18%;
  left: -10%;
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  z-index: 1;
  opacity: 0;
  animation: shoot 7s ease-out infinite;
}
.hero__shoot--2 {
  top: 55%;
  left: 30%;
  animation: shoot 11s ease-out infinite 3s;
}
@keyframes shoot {
  0% { transform: translateX(0) translateY(0); opacity: 0; }
  10% { opacity: 1; }
  20% { transform: translateX(120vw) translateY(20vh); opacity: 0; }
  100% { transform: translateX(120vw) translateY(20vh); opacity: 0; }
}

/* Wolken/Mist am unteren Rand */
.hero__mist {
  position: absolute;
  bottom: -40%;
  left: -10%;
  right: -10%;
  height: 80%;
  background:
    radial-gradient(ellipse 60% 40% at 30% 60%, rgba(80, 100, 180, 0.5), transparent 60%),
    radial-gradient(ellipse 70% 45% at 70% 70%, rgba(120, 80, 200, 0.4), transparent 60%),
    radial-gradient(ellipse 50% 35% at 50% 90%, rgba(34, 211, 238, 0.18), transparent 60%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.hero__container {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-6);
  text-align: center;
}

/* ── Editorial Manifesto Variante (zentriert) ──────────────────── */
.hero__container--editorial {
  max-width: 1400px;
}
.hero__content--editorial {
  align-items: center;
  text-align: center;
  gap: var(--s-6);
}

.hero__manifest-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--s-4);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero__manifest-tag::before,
.hero__manifest-tag::after {
  content: "";
  width: 36px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(244, 244, 240, 0.35));
  flex-shrink: 0;
}
.hero__manifest-tag::after {
  background: linear-gradient(to left, transparent, rgba(244, 244, 240, 0.35));
}

.hero__manifest {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 0;
  color: var(--ink);
  text-transform: none;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.hero__manifest-line {
  display: block;
  line-height: 0.92;
  white-space: nowrap;
}
.hero__manifest-line--intro {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.75rem, 0.8rem + 3vw, 3.25rem);
  color: var(--ink-2);
  letter-spacing: -0.025em;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 1.2em;
}
.hero__manifest-line--intro::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(to right,
    rgba(244, 244, 240, 0.3) 0%,
    rgba(244, 244, 240, 0.05) 100%);
  border-radius: 2px;
  margin-top: 0.2em;
}
.hero__manifest-line--mega {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(3.5rem, 1rem + 10vw, 9rem);
  letter-spacing: -0.05em;
  text-transform: uppercase;
  line-height: 0.86;
  margin: 0.05em 0;
  text-align: center;
  background: linear-gradient(
    100deg,
    #f4f4f0 0%,
    #f4f4f0 44%,
    #fbfbf3 50%,
    #f4f4f0 56%,
    #f4f4f0 100%
  );
  background-size: 300% 100%;
  background-position: 150% 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: diamond-shimmer 12s linear infinite;
}
@keyframes diamond-shimmer {
  0% { background-position: 150% 0; }
  100% { background-position: -50% 0; }
}
.hero__manifest-line--outro {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.25rem, 0.8rem + 4.5vw, 5rem);
  letter-spacing: -0.03em;
  color: var(--accent);
  text-align: right;
  display: flex;
  align-items: center;
  gap: 0.4em;
}
.hero__manifest-line--outro::before {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(to left,
    rgba(34, 211, 238, 0.35) 0%,
    rgba(34, 211, 238, 0.05) 100%);
  border-radius: 2px;
}
.hero__manifest-line--outro em { font-style: italic; }

.hero__manifest-sub {
  font-family: var(--font-sans);
  font-size: var(--fs-lg);
  color: var(--ink-2);
  max-width: 70ch;
  line-height: 1.5;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  column-gap: var(--s-3);
  row-gap: var(--s-2);
}
.hero__manifest-sub-lead {
  display: block;
}
.hero__manifest-sub-accent {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55em;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 0.5rem + 1.4vw, 1.6rem);
  color: var(--accent);
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.hero__manifest-sub-accent em {
  font-style: italic;
}
.hero__manifest-sub-dash {
  font-family: var(--font-sans);
  font-style: normal;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9em;
}
@media (max-width: 760px) {
  .hero__manifest-sub-dash { display: none; }
}

.hero__content--editorial .hero__cta-wrap {
  justify-content: center;
  align-items: center;
  margin-top: var(--s-3);
  gap: var(--s-5);
}
.hero__cta-divider {
  display: inline-block;
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom,
    transparent,
    rgba(255, 255, 255, 0.22) 50%,
    transparent);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .hero__cta-divider { display: none; }
}

/* Text-Link (zweiter CTA) */
.hero__text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--t-fast) var(--ease);
}
.hero__text-link::after {
  content: "";
  position: absolute;
  bottom: 0.25rem;
  left: 0;
  right: 1.5rem;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform var(--t-med) var(--ease);
}
.hero__text-link:hover {
  color: var(--accent);
}
.hero__text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}
.hero__text-link-arrow {
  display: inline-block;
  transition: transform var(--t-fast) var(--ease);
}
.hero__text-link:hover .hero__text-link-arrow {
  transform: translateX(4px);
}

.hero__meta {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  align-items: center;
}
@media (min-width: 600px) {
  .hero__meta { flex-direction: row; justify-content: center; gap: var(--s-6); }
}
.hero__meta-block {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.hero__meta-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--ink);
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 0.8rem + 4vw, 4.5rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: var(--ink);
  margin: 0;
  text-transform: uppercase;
  text-align: center;
}
.hero__title-line {
  white-space: nowrap;
  display: block;
}
.hero__title em {
  font-style: normal;
  font-weight: 900;
  color: var(--accent);
  display: inline-block;
}
.hero__title-line {
  display: block;
  overflow: hidden;
}
.hero__title-line > span {
  display: inline-block;
  transform: translateY(110%) scaleX(var(--line-scale, 1));
  transform-origin: center center;
  animation: line-in 1100ms var(--ease) forwards;
}
.hero__title-line:nth-child(1) > span { animation-delay: 1300ms; }
.hero__title-line:nth-child(2) > span { animation-delay: 1500ms; }
.hero__title-accent {
  display: inline-block;
  position: relative;
}
.hero__title-accent::after { display: none; }
@keyframes line-in {
  to { transform: translateY(0) scaleX(var(--line-scale, 1)); }
}
@keyframes highlight-in {
  to { transform: scaleX(1); }
}

.hero__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-5);
  margin-top: var(--s-5);
  width: 100%;
}
.hero__lede {
  font-size: var(--fs-lg);
  color: var(--ink-2);
  max-width: 56ch;
  font-weight: 400;
  margin-inline: auto;
  text-align: center;
  opacity: 0;
  animation: fade-in 800ms var(--ease) 1800ms forwards;
}
.hero__cta-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-3);
  opacity: 0;
  animation: fade-in 800ms var(--ease) 2000ms forwards;
}

@keyframes fade-in {
  to { opacity: 1; }
}

.hero__scroll {
  position: absolute;
  top: 50%;
  left: var(--pad-x);
  transform: translateY(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  opacity: 0;
  animation: hero-scroll-in 800ms var(--ease) 2400ms forwards;
}

.hero__scroll > span:not(.hero__scroll-line) {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero__scroll-line {
  position: absolute;
  top: calc(100% + var(--s-4));
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 70px;
  background: rgba(244, 244, 240, 0.18);
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateY(-100%);
  animation: scroll-line 4s var(--ease-in-out) infinite;
}
@keyframes scroll-line {
  0% { transform: translateY(-100%); }
  50% { transform: translateY(0%); }
  100% { transform: translateY(100%); }
}
@keyframes hero-scroll-in {
  to { opacity: 1; }
}

@media (max-width: 900px) {
  .hero__scroll { display: none; }
}

/* ── Website Builder Visual — Wireframe baut sich auf ───────────── */
.builder {
  position: relative;
  width: 100%;
  max-width: 700px;
  aspect-ratio: 1.15 / 1;
  margin-inline: auto;
  animation: cube-float 6s var(--ease-in-out) infinite;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
  perspective: 1100px;
}

/* Browser Frame */
.browser {
  position: absolute;
  inset: 8% 4% 18% 4%;
  border-radius: 10px;
  background: rgba(15, 19, 38, 0.75);
  border: 1.5px solid rgba(34, 211, 238, 0.45);
  box-shadow:
    0 0 30px rgba(34, 211, 238, 0.18),
    inset 0 0 30px rgba(34, 211, 238, 0.05);
  overflow: hidden;
  transform: rotateY(-16deg);
  transform-origin: center center;
}

.browser__bar {
  height: 26px;
  background: rgba(34, 211, 238, 0.08);
  border-bottom: 1px solid rgba(34, 211, 238, 0.3);
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.browser__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(244, 244, 240, 0.25);
}
.browser__dot {
  background: rgba(34, 211, 238, 0.4);
}
.browser__dot:nth-child(1) { background: rgba(244, 244, 240, 0.25); }
.browser__dot:nth-child(2) { background: rgba(244, 244, 240, 0.35); }
.browser__dot:nth-child(3) { background: rgba(34, 211, 238, 0.7); box-shadow: 0 0 6px rgba(34, 211, 238, 0.5); }
.browser__url {
  flex: 1;
  height: 12px;
  background: rgba(34, 211, 238, 0.15);
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 6px;
  margin-left: 10px;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  color: rgba(34, 211, 238, 0.7);
  display: flex;
  align-items: center;
  padding: 0 8px;
  letter-spacing: 0.05em;
}

.browser__viewport {
  position: relative;
  padding: 14px;
  height: calc(100% - 26px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Aufbauende Elemente */
.el {
  position: relative;
  opacity: 0;
  border-radius: 4px;
  animation: el-build 7s var(--ease) infinite;
}

@keyframes el-build {
  0%, 2% { opacity: 0; transform: translateY(8px) scaleX(0.85); }
  10%, 88% { opacity: 1; transform: translateY(0) scaleX(1); }
  96%, 100% { opacity: 0; transform: translateY(-4px); }
}

@keyframes el-build-fade {
  0%, 2% { opacity: 0; }
  10%, 88% { opacity: 1; }
  96%, 100% { opacity: 0; }
}

.el--nav {
  height: 14px;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.3);
  animation-delay: 0.2s;
  display: flex;
  align-items: center;
  padding: 0 6px;
  gap: 6px;
  position: relative;
}
.el--nav::before {
  content: "";
  width: 16px;
  height: 5px;
  background: rgba(34, 211, 238, 0.6);
  border-radius: 1px;
}
.el--nav::after {
  content: "";
  margin-left: auto;
  width: 30px;
  height: 5px;
  background: var(--accent);
  border-radius: 1px;
  box-shadow: 0 0 4px rgba(34, 211, 238, 0.6);
}

.el--hero {
  flex: 1.2;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(34, 211, 238, 0.04));
  border: 1px solid rgba(34, 211, 238, 0.25);
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  animation-delay: 0.6s;
  overflow: hidden;
}
.el--hero::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -10%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.4), transparent);
  transform: translateY(-50%);
  filter: blur(8px);
}
.el__title,
.el__sub,
.el__btn {
  opacity: 0;
  animation: el-typing 7s var(--ease) infinite;
  transform-origin: left center;
}
.el__title {
  height: 10px;
  width: 70%;
  background: rgba(244, 244, 240, 0.9);
  border-radius: 2px;
  animation-delay: 1.2s;
}
.el__sub {
  height: 7px;
  width: 55%;
  background: rgba(244, 244, 240, 0.4);
  border-radius: 2px;
  animation-delay: 1.5s;
}
.el__btn {
  margin-top: 4px;
  height: 14px;
  width: 70px;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 8px rgba(34, 211, 238, 0.5);
  animation-delay: 2s;
}
@keyframes el-typing {
  0%, 5% { opacity: 0; transform: scaleX(0); }
  10%, 88% { opacity: 1; transform: scaleX(1); }
  96%, 100% { opacity: 0; }
}

.el--row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  flex: 0.7;
}
.el__col {
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 4px;
  opacity: 0;
  animation: el-build-fade 7s var(--ease) infinite;
  position: relative;
}
.el__col::before {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 6px;
  right: 30%;
  height: 4px;
  background: rgba(244, 244, 240, 0.45);
  border-radius: 1px;
}
.el__col::after {
  content: "";
  position: absolute;
  bottom: 14px;
  left: 6px;
  right: 60%;
  height: 4px;
  background: rgba(34, 211, 238, 0.7);
  border-radius: 1px;
}
.el__col:nth-child(1) { animation-delay: 2.4s; }
.el__col:nth-child(2) { animation-delay: 2.7s; }
.el__col:nth-child(3) { animation-delay: 3s; }

/* Scanning-Line die durch den Browser läuft */
.browser__scan {
  position: absolute;
  top: 26px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(34, 211, 238, 0.15) 50%,
    transparent 100%);
  animation: scan 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 5;
}
@keyframes scan {
  0%, 100% { transform: translateY(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}

/* Floating KI-Knoten außerhalb */
.builder__node {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
}
.builder__node--1 {
  top: 12%;
  right: 0;
  animation: node-pulse 2s ease-in-out infinite;
}
.builder__node--2 {
  bottom: 22%;
  left: -2%;
  width: 6px;
  height: 6px;
  background: #fff;
  box-shadow: 0 0 10px #fff;
  animation: node-pulse 2.5s ease-in-out infinite 0.7s;
}
.builder__node--3 {
  top: 50%;
  right: -3%;
  width: 5px;
  height: 5px;
  animation: node-pulse 3s ease-in-out infinite 1.4s;
}
.builder__node--4 {
  bottom: 5%;
  right: 15%;
  width: 4px;
  height: 4px;
  background: #fff;
  box-shadow: 0 0 8px #fff;
  animation: node-pulse 2.2s ease-in-out infinite 0.3s;
}
@keyframes node-pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.5); opacity: 1; }
}

/* Connecting Lines die zum Browser pulsen */
.builder__link {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
  transform-origin: left center;
  pointer-events: none;
}
.builder__link--1 {
  top: 14%;
  left: 70%;
  width: 28%;
  animation: link-flow 3s ease-in-out infinite;
}
.builder__link--2 {
  bottom: 25%;
  left: 0;
  width: 12%;
  animation: link-flow 4s ease-in-out infinite 0.5s;
}
@keyframes link-flow {
  0%, 100% { opacity: 0.1; }
  50% { opacity: 0.7; }
}

/* Code-Snippets die fliegen */
.builder__code {
  position: absolute;
  font-family: ui-monospace, "SF Mono", monospace;
  font-size: 9px;
  color: rgba(34, 211, 238, 0.5);
  letter-spacing: -0.02em;
  white-space: nowrap;
  pointer-events: none;
}
.builder__code--1 {
  top: 4%;
  left: 14%;
  animation: code-fade 5s ease-in-out infinite;
}
.builder__code--2 {
  bottom: 6%;
  right: 4%;
  animation: code-fade 6s ease-in-out infinite 1.5s;
}
@keyframes code-fade {
  0%, 100% { opacity: 0; transform: translateY(4px); }
  30%, 70% { opacity: 0.7; transform: translateY(0); }
}

/* KI-Sparkles — 4-Punkt-Sterne die hier und da auftauchen */
.ki-sparkle {
  position: absolute;
  color: var(--accent);
  filter: drop-shadow(0 0 6px rgba(34, 211, 238, 0.8));
  opacity: 0;
  pointer-events: none;
  animation: sparkle-twinkle 5s ease-in-out infinite;
  z-index: 4;
}
.ki-sparkle svg {
  width: 100%;
  height: 100%;
  display: block;
}
.ki-sparkle--1 { top: 8%; left: 6%; width: 22px; height: 22px; animation-delay: 0.4s; }
.ki-sparkle--2 { top: 68%; right: 4%; width: 16px; height: 16px; animation-delay: 2.1s; }
.ki-sparkle--3 { bottom: 18%; left: 2%; width: 14px; height: 14px; animation-delay: 3.6s; }
.ki-sparkle--4 { top: 28%; right: 10%; width: 12px; height: 12px; color: #fff; filter: drop-shadow(0 0 6px #fff); animation-delay: 1.3s; }
.ki-sparkle--5 { bottom: 6%; left: 35%; width: 18px; height: 18px; animation-delay: 4.2s; }
.ki-sparkle--6 { top: 45%; left: 4%; width: 10px; height: 10px; color: #fff; filter: drop-shadow(0 0 5px #fff); animation-delay: 2.8s; }
@keyframes sparkle-twinkle {
  0% { opacity: 0; transform: scale(0.3) rotate(0deg); }
  20% { opacity: 1; transform: scale(1) rotate(45deg); }
  60% { opacity: 1; transform: scale(1) rotate(90deg); }
  80% { opacity: 0; transform: scale(0.7) rotate(180deg); }
  100% { opacity: 0; transform: scale(0.3) rotate(180deg); }
}

/* ── AI Cube — 3D Wireframe (legacy) ────────────────────────────── */
.ai-cube {
  position: relative;
  width: clamp(280px, 36vw, 460px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  animation: cube-float 6s var(--ease-in-out) infinite;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 80px rgba(34, 211, 238, 0.25));
}
@keyframes cube-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

.ai-cube__shell {
  position: relative;
  width: 50%;
  height: 50%;
  transform-style: preserve-3d;
  animation: cube-spin 18s linear infinite;
}
@keyframes cube-spin {
  0% { transform: rotateX(-15deg) rotateY(0deg) rotateZ(0deg); }
  100% { transform: rotateX(-15deg) rotateY(360deg) rotateZ(0deg); }
}

.ai-cube__face {
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(34, 211, 238, 0.55);
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.04) 0%, rgba(34, 211, 238, 0.12) 100%);
  box-shadow:
    inset 0 0 24px rgba(34, 211, 238, 0.12),
    0 0 12px rgba(34, 211, 238, 0.18);
}
/* Wireframe-Linien (decorative) */
.ai-cube__face::before,
.ai-cube__face::after {
  content: "";
  position: absolute;
  background: rgba(34, 211, 238, 0.18);
}
.ai-cube__face::before {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
}
.ai-cube__face::after {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
}

.ai-cube__face--front { transform: translateZ(var(--cube-half)); }
.ai-cube__face--back { transform: rotateY(180deg) translateZ(var(--cube-half)); }
.ai-cube__face--right { transform: rotateY(90deg) translateZ(var(--cube-half)); }
.ai-cube__face--left { transform: rotateY(-90deg) translateZ(var(--cube-half)); }
.ai-cube__face--top { transform: rotateX(90deg) translateZ(var(--cube-half)); }
.ai-cube__face--bottom { transform: rotateX(-90deg) translateZ(var(--cube-half)); }

/* Ecken-Marker für noch mehr Wireframe-Look */
.ai-cube__corners::before,
.ai-cube__corners::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--accent);
  top: 50%;
  left: 50%;
  transform-style: preserve-3d;
}

/* Pulsierender Core im Inneren */
.ai-cube__core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(40px, 7vw, 70px);
  height: clamp(40px, 7vw, 70px);
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, var(--accent) 40%, #0891b2 100%);
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 24px var(--accent),
    0 0 60px rgba(34, 211, 238, 0.7),
    0 0 120px rgba(34, 211, 238, 0.4);
  animation: core-pulse 2.4s ease-in-out infinite;
  z-index: 2;
}
@keyframes core-pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 24px var(--accent),
      0 0 60px rgba(34, 211, 238, 0.7),
      0 0 120px rgba(34, 211, 238, 0.4);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.18);
    box-shadow: 0 0 36px var(--accent),
      0 0 100px rgba(34, 211, 238, 0.9),
      0 0 180px rgba(34, 211, 238, 0.55);
  }
}

/* Orbiting Particles */
.ai-cube__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.ai-cube__particle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  margin-top: -4px;
  margin-left: -4px;
}
.ai-cube__particle--1 { animation: orbit-1 8s linear infinite; }
.ai-cube__particle--2 {
  background: #fff;
  box-shadow: 0 0 8px #fff;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  margin-left: -3px;
  animation: orbit-2 12s linear infinite reverse;
}
.ai-cube__particle--3 {
  width: 5px;
  height: 5px;
  margin-top: -2.5px;
  margin-left: -2.5px;
  animation: orbit-3 15s linear infinite;
}
@keyframes orbit-1 {
  from { transform: rotate(0deg) translateX(140%) rotate(0deg); }
  to { transform: rotate(360deg) translateX(140%) rotate(-360deg); }
}
@keyframes orbit-2 {
  from { transform: rotate(120deg) translateX(170%) rotate(-120deg); }
  to { transform: rotate(480deg) translateX(170%) rotate(-480deg); }
}
@keyframes orbit-3 {
  from { transform: rotate(240deg) translateX(110%) rotate(-240deg); }
  to { transform: rotate(600deg) translateX(110%) rotate(-600deg); }
}

/* Data-Streams (kleine vertikale Linien rund um den Würfel) */
.ai-cube__data {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ai-cube__data span {
  position: absolute;
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  opacity: 0.6;
}
.ai-cube__data span:nth-child(1) { top: 10%; left: 8%; animation: data-flow 3s linear infinite; }
.ai-cube__data span:nth-child(2) { top: 60%; right: 12%; animation: data-flow 4s linear infinite 0.8s; }
.ai-cube__data span:nth-child(3) { top: 80%; left: 18%; animation: data-flow 3.5s linear infinite 1.5s; }
.ai-cube__data span:nth-child(4) { top: 25%; right: 20%; animation: data-flow 4.2s linear infinite 2s; }
@keyframes data-flow {
  0%, 100% { transform: translateY(-20px); opacity: 0; }
  50% { opacity: 0.8; }
}

/* Container-internal variable (set via inline style) */
.ai-cube { --cube-half: 50%; }
.ai-cube__shell { --cube-half: 100px; }

/* ── Astronaut (legacy, ungenutzt) ──────────────────────────────── */
.astronaut {
  position: relative;
  width: clamp(260px, 38vw, 480px);
  aspect-ratio: 3 / 4;
  animation: astronaut-float 5s var(--ease-in-out) infinite;
  filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.6))
    drop-shadow(0 0 60px rgba(34, 211, 238, 0.2));
}
@keyframes astronaut-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}
.astronaut svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.astronaut__visor-shine {
  animation: visor-shine 4s ease-in-out infinite;
  transform-origin: center;
}
@keyframes visor-shine {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.9; }
}
.astronaut__tag {
  animation: tag-blink 1.4s steps(2, end) infinite;
}
@keyframes tag-blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.3; }
}

/* ── Orb Visual ─────────────────────────────────────────────────── */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  opacity: 0;
  animation: fade-in 1200ms var(--ease) 800ms forwards;
}
.orb {
  position: relative;
  width: clamp(280px, 36vw, 480px);
  aspect-ratio: 1;
  animation: orb-float 6s var(--ease-in-out) infinite;
  filter: drop-shadow(0 0 60px rgba(34, 211, 238, 0.25));
}
@keyframes orb-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

.orb__glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.25) 0%, transparent 60%);
  filter: blur(40px);
  z-index: 0;
  animation: orb-pulse 4s ease-in-out infinite;
}
@keyframes orb-pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 1; }
}

.orb__core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14%;
  height: 14%;
  background: radial-gradient(circle, #fff 0%, #22d3ee 50%, #0891b2 100%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.8),
    0 0 60px rgba(34, 211, 238, 0.4);
  z-index: 5;
  animation: orb-core 2.5s ease-in-out infinite;
}
@keyframes orb-core {
  0%, 100% { box-shadow: 0 0 30px rgba(34, 211, 238, 0.8), 0 0 60px rgba(34, 211, 238, 0.4); }
  50% { box-shadow: 0 0 50px rgba(34, 211, 238, 1), 0 0 100px rgba(34, 211, 238, 0.6); }
}

.orb__ring {
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(244, 244, 240, 0.4);
  border-radius: 50%;
  transform-style: preserve-3d;
}
.orb__ring--1 {
  animation: ring-rotate-1 12s linear infinite;
}
.orb__ring--2 {
  border-color: rgba(34, 211, 238, 0.5);
  inset: 8%;
  animation: ring-rotate-2 16s linear infinite reverse;
}
.orb__ring--3 {
  inset: 18%;
  border-color: rgba(244, 244, 240, 0.25);
  animation: ring-rotate-3 20s linear infinite;
}
.orb__ring--4 {
  inset: 28%;
  border-color: rgba(34, 211, 238, 0.3);
  animation: ring-rotate-4 24s linear infinite reverse;
}
@keyframes ring-rotate-1 {
  to { transform: rotateX(65deg) rotateZ(360deg); }
}
@keyframes ring-rotate-2 {
  to { transform: rotateY(70deg) rotateZ(360deg); }
}
@keyframes ring-rotate-3 {
  to { transform: rotateX(45deg) rotateY(45deg) rotateZ(360deg); }
}
@keyframes ring-rotate-4 {
  to { transform: rotateX(75deg) rotateZ(360deg); }
}

/* Knoten (Punkte) auf den Ringen */
.orb__node {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  top: 50%;
  left: 50%;
}
.orb__node--1 {
  transform: translate(-50%, -50%) translateY(-50%) translateY(-200%);
  animation: node-orbit-1 12s linear infinite;
}
.orb__node--2 {
  background: #fff;
  box-shadow: 0 0 8px #fff;
  width: 6px;
  height: 6px;
  animation: node-orbit-2 16s linear infinite reverse;
}
.orb__node--3 {
  width: 5px;
  height: 5px;
  animation: node-orbit-3 20s linear infinite;
}
.orb__node--4 {
  background: #fff;
  width: 4px;
  height: 4px;
  box-shadow: 0 0 6px #fff;
  animation: node-orbit-4 9s linear infinite;
}
@keyframes node-orbit-1 {
  from { transform: translate(-50%, -50%) rotate(0deg) translateX(46%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg) translateX(46%) rotate(-360deg); }
}
@keyframes node-orbit-2 {
  from { transform: translate(-50%, -50%) rotate(120deg) translateX(38%) rotate(-120deg); }
  to { transform: translate(-50%, -50%) rotate(480deg) translateX(38%) rotate(-480deg); }
}
@keyframes node-orbit-3 {
  from { transform: translate(-50%, -50%) rotate(240deg) translateX(30%) rotate(-240deg); }
  to { transform: translate(-50%, -50%) rotate(600deg) translateX(30%) rotate(-600deg); }
}
@keyframes node-orbit-4 {
  from { transform: translate(-50%, -50%) rotate(60deg) translateX(22%) rotate(-60deg); }
  to { transform: translate(-50%, -50%) rotate(420deg) translateX(22%) rotate(-420deg); }
}

/* Center 3D Sphere mit Wireframe-Look */
.orb__sphere {
  position: absolute;
  inset: 32%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #2a3358 0%, #11172e 70%);
  border: 1px solid rgba(34, 211, 238, 0.3);
  box-shadow: inset 0 0 30px rgba(34, 211, 238, 0.15),
    0 0 40px rgba(34, 211, 238, 0.2);
  z-index: 2;
}
.orb__sphere::before,
.orb__sphere::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(244, 244, 240, 0.15);
}
.orb__sphere::before {
  transform: rotateX(70deg);
  animation: ring-rotate-1 14s linear infinite;
}
.orb__sphere::after {
  transform: rotateY(70deg);
  animation: ring-rotate-2 18s linear infinite reverse;
}

@media (max-width: 900px) {
  .hero__visual {
    min-height: 280px;
    order: -1;
  }
  .orb {
    width: clamp(220px, 60vw, 320px);
  }
}

/* ── Wiederverwendbarer Section-Head (zentriert, Editorial) ────── */
.sec-head {
  max-width: var(--container);
  margin: 0 auto var(--s-8);
  padding-inline: var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s-4);
}
.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-4);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.sec-eyebrow::before,
.sec-eyebrow::after {
  content: "";
  width: 36px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(244, 244, 240, 0.35));
}
.sec-eyebrow::after {
  background: linear-gradient(to left, transparent, rgba(244, 244, 240, 0.35));
}
.sec-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-transform: none;
  color: var(--ink);
}
.sec-title em {
  font-style: italic;
  color: var(--accent);
}
.sec-lead {
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 56ch;
  margin: var(--s-2) auto 0;
}
.sec-lead__hl {
  color: var(--ink);
  font-weight: 600;
}
.sec-lead__hl em,
.sec-lead em {
  font-style: normal;
  color: var(--accent);
}

/* ── Leistungen ────────────────────────────────────────────────── */
.leistungen__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.leistungen__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 760px) {
  .leistungen__grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
}
.lcard {
  position: relative;
  background: rgba(244, 244, 240, 0.025);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: var(--s-4);
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color var(--t-med) var(--ease),
    transform var(--t-med) var(--ease),
    background var(--t-med) var(--ease);
}
.lcard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 240px at var(--mx, 50%) var(--my, 0%),
    rgba(34, 211, 238, 0.12), transparent 70%);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
  z-index: -1;
  pointer-events: none;
}
.lcard:hover {
  border-color: rgba(34, 211, 238, 0.4);
  transform: translateY(-4px);
}
.lcard:hover::before { opacity: 1; }

.lcard__top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lcard__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-lg);
  color: var(--ink-faint);
  letter-spacing: -0.02em;
}
.lcard__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.25);
  color: var(--accent);
  transition: background var(--t-med) var(--ease);
}
.lcard:hover .lcard__icon {
  background: rgba(34, 211, 238, 0.18);
}
.lcard__icon svg { width: 24px; height: 24px; }
.lcard__title {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: var(--s-2);
}
.lcard__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-muted);
}

/* ── Prozess (Timeline) ────────────────────────────────────────── */
.prozess {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.prozess__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.prozess__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: var(--r-pill);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(34, 211, 238, 0.06);
}
.prozess__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: badge-dot 1.6s ease-in-out infinite;
}
@keyframes badge-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.ptimeline {
  margin-top: var(--s-8);
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
.prozess__cta,
.warum__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-4);
  margin-top: var(--s-8);
}
.prozess__cta-note {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
/* Knoten + Linie */
.pstep {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.pstep__marker {
  position: relative;
  display: flex;
  align-items: center;
  height: 16px;
}
.pstep__dot {
  position: relative;
  z-index: 1;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow:
    0 0 0 4px rgba(34, 211, 238, 0.12),
    0 0 14px var(--accent);
  flex-shrink: 0;
}

.pstep__card {
  position: relative;
  background: rgba(244, 244, 240, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-5) var(--s-6);
  overflow: hidden;
  isolation: isolate;
  flex: 1;
  transition: border-color var(--t-med) var(--ease),
    transform var(--t-med) var(--ease);
}
.pstep__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 220px at var(--mx, 50%) var(--my, 0%),
    rgba(34, 211, 238, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
  z-index: -1;
  pointer-events: none;
}
.pstep__card:hover {
  border-color: rgba(34, 211, 238, 0.4);
  transform: translateY(-4px);
}
.pstep__card:hover::before { opacity: 1; }
.pstep__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-md);
  color: var(--accent);
  letter-spacing: -0.02em;
}
.pstep__title {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: var(--s-1) 0 var(--s-2);
}
.pstep__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-muted);
}

/* Horizontal ab Tablet: 4 Phasen nebeneinander, verbunden durch Linie */
@media (min-width: 860px) {
  .ptimeline {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-5);
  }
  .pstep { gap: var(--s-5); }
  /* Dot mittig über der Card */
  .pstep__marker {
    justify-content: center;
  }
  /* Linie von Card-Mitte zur Card-Mitte des nächsten Steps */
  .pstep__marker::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 50%;
    right: calc(-50% - var(--s-5));
    height: 2px;
    background: rgba(34, 211, 238, 0.4);
    z-index: 0;
  }
  .pstep:last-child .pstep__marker::after { display: none; }
}

/* ── Warum KI (Vergleich) ──────────────────────────────────────── */
.warum__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.warum .sec-lead {
  max-width: 76ch;
}
.warum__benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  margin: 0 auto var(--s-7);
}
@media (min-width: 760px) {
  .warum__benefits { grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
}
.wcard {
  position: relative;
  background: rgba(244, 244, 240, 0.025);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-3);
  overflow: hidden;
  isolation: isolate;
  transition: border-color var(--t-med) var(--ease),
    transform var(--t-med) var(--ease);
}
.wcard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 220px at var(--mx, 50%) var(--my, 0%),
    rgba(34, 211, 238, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
  z-index: -1;
  pointer-events: none;
}
.wcard:hover {
  border-color: rgba(34, 211, 238, 0.4);
  transform: translateY(-4px);
}
.wcard:hover::before { opacity: 1; }
.wcard__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.25);
  color: var(--accent);
}
.wcard__icon svg { width: 24px; height: 24px; }
.wcard__title {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.wcard__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-muted);
}
.vs {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  margin-inline: auto;
}
@media (min-width: 820px) {
  .vs { grid-template-columns: 1fr 1fr; gap: var(--s-5); }
}
.vs-card {
  position: relative;
  border-radius: var(--r-lg);
  padding: var(--s-7) var(--s-6);
  border: 1px solid var(--border);
  overflow: hidden;
  isolation: isolate;
}
.vs-card--classic {
  background: rgba(244, 244, 240, 0.02);
}
.vs-card--ours {
  background:
    radial-gradient(circle at 80% 0%, rgba(34, 211, 238, 0.12), transparent 55%),
    rgba(34, 211, 238, 0.04);
  border-color: rgba(34, 211, 238, 0.35);
}
.vs-card--ours::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 280px at var(--mx, 50%) var(--my, 0%),
    rgba(34, 211, 238, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
  z-index: -1;
  pointer-events: none;
}
.vs-card--ours:hover::before { opacity: 1; }
.vs-card__label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: var(--s-5);
}
.vs-card--ours .vs-card__label { color: var(--accent); }
.vs-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.vs-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--ink-muted);
}
.vs-card--ours .vs-list li { color: var(--ink-2); }
.vs-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
}
.vs-icon--x { color: var(--ink-faint); }
.vs-icon--check { color: var(--accent); }

/* ── Über uns (Stats + Team) ───────────────────────────────────── */
.ueber {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ueber__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
  max-width: 880px;
  margin: 0 auto var(--s-8);
  padding: var(--s-6) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 760px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  text-align: center;
}
.stat__num {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 1.6rem + 2.4vw, 3.25rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.stat__num em {
  font-style: italic;
  color: var(--accent);
}
.stat__label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.team {
  display: flex;
  flex-direction: column;
  gap: var(--s-7);
}
/* Zwei Lead-Cards (Marvin, Marcel) — horizontal: Foto + Bio */
.team__leads {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  width: 100%;
}
@media (min-width: 720px) {
  .team__leads { grid-template-columns: repeat(2, 1fr); }
}

.tcard {
  position: relative;
  background: linear-gradient(155deg, rgba(34, 211, 238, 0.07), rgba(244, 244, 240, 0.02) 55%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: var(--s-5);
  overflow: hidden;
  isolation: isolate;
  transition: border-color var(--t-med) var(--ease),
    transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.tcard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 240px at var(--mx, 50%) var(--my, 0%),
    rgba(34, 211, 238, 0.14), transparent 70%);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
  z-index: -1;
  pointer-events: none;
}
.tcard:hover {
  border-color: rgba(34, 211, 238, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 18px 50px -20px rgba(34, 211, 238, 0.35);
}
.tcard:hover::before { opacity: 1; }
@media (max-width: 480px) {
  .tcard { flex-direction: column; align-items: center; text-align: center; gap: var(--s-4); }
}

.tcard__avatar {
  flex-shrink: 0;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: none;
  border: 2px solid rgba(34, 211, 238, 0.4);
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.25);
}
.tcard__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  /* Weiter rausgezoomt + stärker nach unten — Bildende verschwindet unter dem Kreis */
  transform: scale(0.88) translateY(7%);
  display: block;
}
/* Marcels Foto zusätzlich etwas nach rechts */
.tcard__avatar img[src*="marcel"] {
  transform: scale(0.88) translate(3%, 7%);
}
.tcard__body {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  min-width: 0;
}
.tcard__role {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.tcard__name {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.tcard__bio {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-muted);
  margin-top: var(--s-1);
}

/* Trenner "Weitere Teammitglieder" */
.team__divider {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  color: var(--ink-faint);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.team__divider::before,
.team__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Crew — Mini-Card-Grid; auf Desktop 9 Spalten => 2 gleich lange Reihen */
.team__crew {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 640px) { .team__crew { grid-template-columns: repeat(6, 1fr); } }
.crew {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s-3);
  padding: var(--s-5) var(--s-2);
  background: rgba(244, 244, 240, 0.02);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  transition: border-color var(--t-med) var(--ease),
    transform var(--t-med) var(--ease), background var(--t-med) var(--ease);
}
/* Mitglieder ohne Foto: Initial-Avatar */
.crew__avatar--initial {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--accent);
  background: radial-gradient(circle at 30% 30%, rgba(34, 211, 238, 0.2), rgba(34, 211, 238, 0.05));
  border: 1.5px solid rgba(34, 211, 238, 0.3);
}
.crew:hover {
  border-color: rgba(34, 211, 238, 0.35);
  background: rgba(34, 211, 238, 0.04);
  transform: translateY(-4px);
}
.crew__avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid rgba(34, 211, 238, 0.25);
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.12);
  transition: border-color var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.crew:hover .crew__avatar {
  border-color: rgba(34, 211, 238, 0.6);
  box-shadow: 0 0 22px rgba(34, 211, 238, 0.25);
}
.crew__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  /* Cover-Baseline — füllt den Kreis ohne sichtbaren Rand */
  transform: scale(1.0);
  display: block;
}
/* Feinjustierung pro Person — leichte vertikale Verschiebungen, Bild deckt voll ab */
.crew__avatar img[src$="niklas.webp"]  { transform: scale(1.08) translateY(-3%); }
.crew__avatar img[src$="bjoern.webp"]  { transform: scale(1.08) translateY(3%); }
.crew__avatar img[src$="kourosh.webp"] { transform: scale(1.08) translateY(3%); }
.crew__avatar img[src$="max.webp"]     { transform: scale(1.08) translateY(3%); }
.crew__avatar img[src$="van.webp"]     { transform: scale(1.08) translateY(3%); }
.crew__avatar img[src$="petr.webp"]    { transform: scale(1.08) translateY(3%); }
.crew__avatar img[src$="natalia.webp"] { transform: scale(1.15) translateY(12%); }
.crew__avatar img[src$="virgil.webp"]  { transform: scale(1.15) translateY(12%); }
.crew__name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--ink);
}
.crew__role {
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  display: none; /* Test: nur Name + Bild — bei Bedarf einfach wieder entfernen */
}

/* ── Kundenstimmen ─────────────────────────────────────────────── */
.stimmen {
  background: var(--bg-soft); /* heller -> wechselt sich mit dunklen Sektionen ab */
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stimmen__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.stimmen__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 820px) {
  .stimmen__grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
}
.quote {
  position: relative;
  background: rgba(244, 244, 240, 0.025);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  overflow: hidden;
  isolation: isolate;
  transition: border-color var(--t-med) var(--ease),
    transform var(--t-med) var(--ease);
}
.quote::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 220px at var(--mx, 50%) var(--my, 0%),
    rgba(34, 211, 238, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
  z-index: -1;
  pointer-events: none;
}
.quote:hover {
  border-color: rgba(34, 211, 238, 0.4);
  transform: translateY(-4px);
}
.quote:hover::before { opacity: 1; }
.quote__mark {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 0.6;
  color: var(--accent);
  height: 1.4rem;
}
.quote__text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.quote__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
  padding-top: var(--s-3);
  border-top: 1px solid var(--border);
}
.quote__name {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}
.quote__role {
  font-size: 0.8rem;
  color: var(--ink-faint);
}

/* ── Portfolio ─────────────────────────────────────────────────── */
.portfolio__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.portfolio__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 760px) {
  .portfolio__grid { grid-template-columns: 1fr 1fr; }
}

.pcard {
  position: relative;
  display: block;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: rgba(244, 244, 240, 0.025);
  overflow: hidden;
  isolation: isolate;
  color: var(--ink);
  transition: border-color var(--t-med) var(--ease),
    transform var(--t-med) var(--ease);
}
.pcard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 320px at var(--mx, 50%) var(--my, 0%),
    rgba(34, 211, 238, 0.12), transparent 70%);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
  z-index: 2;
  pointer-events: none;
}
.pcard:hover {
  border-color: rgba(34, 211, 238, 0.4);
  transform: translateY(-6px);
}
.pcard:hover::before { opacity: 1; }

/* Bild-Visual */
.pcard__visual {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-soft);
}
.pcard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform var(--t-slow) var(--ease);
}
.pcard:hover .pcard__img { transform: scale(1.05); }
.pcard__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 11, 26, 0.5));
  pointer-events: none;
}

.pcard__meta {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--s-4);
  padding: var(--s-5) var(--s-6);
}
.pcard__cat {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-2);
}
.pcard__title {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.pcard__arrow {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background var(--t-fast) var(--ease),
    color var(--t-fast) var(--ease),
    transform var(--t-fast) var(--ease),
    border-color var(--t-fast) var(--ease);
}
.pcard:hover .pcard__arrow {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
  transform: rotate(-45deg);
}

.portfolio__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  margin-top: var(--s-8);
}
.portfolio__cta-note {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.portfolio__cta-note em {
  font-style: normal;
  font-weight: 700;
  color: var(--accent);
}

/* ── Kontakt ───────────────────────────────────────────────────── */
.kontakt {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 50% 30%, #141d40 0%, #0a0f24 55%, var(--dark) 100%);
  isolation: isolate;
}
.kontakt__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 20%, rgba(34, 211, 238, 0.14), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(80, 100, 200, 0.16), transparent 50%);
  filter: blur(50px);
  pointer-events: none;
}
.kontakt__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.kontakt__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 920px) {
  .kontakt__grid { grid-template-columns: 1fr 1fr; }
}
.kontakt__panel {
  background: rgba(15, 19, 38, 0.55);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-7) var(--s-6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.kontakt__panel-title {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--s-5);
}

/* Formular */
.kform {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.kform__hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.kform__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 480px) {
  .kform__row { grid-template-columns: 1fr 1fr; }
}
.kform__field {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.kform__field label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.kform__opt {
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.7;
}
.kform__field input,
.kform__field textarea {
  width: 100%;
  background: rgba(244, 244, 240, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.85rem 1rem;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color var(--t-fast) var(--ease),
    background var(--t-fast) var(--ease);
  resize: vertical;
}
.kform__field input::placeholder,
.kform__field textarea::placeholder { color: var(--ink-faint); }
.kform__field input:focus,
.kform__field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(34, 211, 238, 0.05);
}
.kform__check {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--ink-muted);
  cursor: pointer;
}
.kform__check input {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.kform__check a {
  color: var(--accent);
  border-bottom: 1px solid rgba(34, 211, 238, 0.4);
}
.kform__submit {
  align-self: flex-start;
  margin-top: var(--s-2);
}
.kform__status {
  font-size: 0.9rem;
  margin: 0;
}
.kform__status.is-ok { color: var(--accent); }
.kform__status.is-error { color: #ff7a7a; }

/* Calendly */
.kontakt__calendly {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(244, 244, 240, 0.02);
  /* Isoliert Calendly-Reflow auf eigene Render-Schicht, verhindert Page-weite Hacker */
  contain: layout paint;
  transform: translateZ(0);
  will-change: transform;
}

/* Standort + Karte */
.kontakt__location {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  margin-top: var(--s-5);
  background: rgba(15, 19, 38, 0.55);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
@media (min-width: 760px) {
  .kontakt__location { grid-template-columns: 1fr 1.2fr; }
}
.kontakt__details {
  padding: var(--s-7) var(--s-6);
}
.kontakt__list {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.kontakt__list li {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
  font-size: 0.98rem;
  color: var(--ink-2);
  line-height: 1.5;
}
.kontakt__list-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.kontakt__list a:hover { color: var(--accent); }
.kontakt__map {
  min-height: 300px;
  position: relative;
}
.kontakt__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(0.3) invert(0.92) hue-rotate(180deg) brightness(0.9) contrast(0.9);
}

/* ── Platzhalter-Sektionen (temporär, Sektionen im Aufbau) ─────── */
.sec-placeholder {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.sec-placeholder--alt {
  background: var(--bg-soft);
}
.sec-placeholder--cta {
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, #1a2350 0%, #0a0f24 50%, var(--dark) 100%);
}
.sec-placeholder__label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding: 0.6rem 1.4rem;
  border: 1px dashed var(--border-strong);
  border-radius: var(--r-pill);
}

/* ── Marquee ────────────────────────────────────────────────────── */
.marquee {
  background: var(--bg);
  color: var(--ink);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 0.85rem 0;
}
.hero .marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: rgba(7, 11, 26, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: none;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 60s linear infinite;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: var(--s-6);
  padding-right: var(--s-6);
  font-family: var(--font-sans);
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink-muted);
}
.marquee__item em {
  font-style: normal;
  color: var(--accent);
  font-weight: 600;
}
.marquee__dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ── Statement / About ─────────────────────────────────────────── */
.statement {
  padding-block: clamp(5rem, 12vw, 10rem);
}
.statement__inner {
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
}
.statement__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-lg);
  color: var(--ink-faint);
  font-weight: 400;
}
.statement__text {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 1.2rem + 2.4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 400;
  color: var(--ink);
  max-width: 22ch;
}
.statement__text em {
  font-style: italic;
  position: relative;
  display: inline-block;
}
.statement__text em::after {
  content: "";
  position: absolute;
  bottom: 0.08em;
  left: 0;
  right: 0;
  height: 0.4em;
  background: var(--accent);
  z-index: -1;
  mix-blend-mode: screen;
  opacity: 0.85;
}

@media (min-width: 900px) {
  .statement__inner {
    grid-template-columns: 1fr 3fr;
    gap: var(--s-9);
  }
}

/* ── Services / Bento ──────────────────────────────────────────── */
.services__head {
  max-width: var(--container);
  margin: 0 auto var(--s-8);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
.services__head h2 {
  font-size: var(--fs-5xl);
  max-width: 18ch;
  line-height: 1;
}
.services__head h2 em {
  font-style: italic;
}
.services__head-meta {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  align-self: end;
  max-width: 38ch;
}
.services__head-meta p {
  font-size: var(--fs-md);
  color: var(--ink);
}

@media (min-width: 900px) {
  .services__head {
    grid-template-columns: 1.6fr 1fr;
  }
}

.bento {
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
}
@media (min-width: 720px) {
  .bento { grid-template-columns: repeat(6, 1fr); }
  .bento__cell--lg { grid-column: span 4; }
  .bento__cell--md { grid-column: span 3; }
  .bento__cell--sm { grid-column: span 3; }
  .bento__cell--full { grid-column: span 6; }
}
@media (min-width: 1100px) {
  .bento__cell--lg { grid-column: span 4; }
  .bento__cell--md { grid-column: span 2; }
  .bento__cell--sm { grid-column: span 2; }
  .bento__cell--full { grid-column: span 6; }
}

.bento__cell {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--s-5);
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-med) var(--ease),
    border-color var(--t-med) var(--ease),
    background var(--t-med) var(--ease);
  will-change: transform;
  color: var(--ink);
}
.bento__cell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(34, 211, 238, 0.35), transparent 50%);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
  z-index: -1;
  pointer-events: none;
}
.bento__cell:hover {
  border-color: var(--border-strong);
}
.bento__cell:hover::before {
  opacity: 1;
}

.bento__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-md);
  color: var(--ink-faint);
}
.bento__title {
  font-family: var(--font-serif);
  font-size: var(--fs-2xl);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
}
.bento__title em { font-style: italic; }
.bento__desc {
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.55;
  max-width: 40ch;
}

.bento__cell--accent {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}
.bento__cell--accent .bento__title { color: var(--dark); }
.bento__cell--accent .bento__num { color: rgba(7, 11, 26, 0.5); }
.bento__cell--accent .bento__desc { color: rgba(7, 11, 26, 0.7); }
.bento__cell--accent::before { display: none; }
.bento__cell--accent .bento__icon {
  border-color: rgba(7, 11, 26, 0.3);
  color: var(--dark);
}

.bento__cell--lime {
  background: var(--accent);
  border-color: var(--accent);
}
.bento__cell--lime::before { display: none; }

.bento__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  color: var(--ink);
}
.bento__cell--accent .bento__icon {
  border-color: rgba(236, 232, 222, 0.2);
  color: var(--bg);
}
.bento__icon svg { width: 22px; height: 22px; }

.bento__cell-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: var(--s-2);
  align-self: flex-start;
}
.bento__cell-cta::after {
  content: "→";
  transition: transform var(--t-fast) var(--ease);
}
.bento__cell:hover .bento__cell-cta::after { transform: translateX(4px); }

/* Big-Type cell */
.bento__cell--type {
  justify-content: center;
  align-items: flex-start;
  min-height: 320px;
}
.bento__big-num {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.85;
  letter-spacing: -0.06em;
  font-weight: 400;
  display: flex;
  align-items: baseline;
  gap: 0.05em;
}
.bento__big-num em {
  font-style: italic;
  color: var(--ink-faint);
}
.bento__big-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: var(--s-4);
}

/* ── Process (sticky) ───────────────────────────────────────────── */
.process {
  background: var(--bg-soft);
  color: var(--ink);
  padding-block: clamp(5rem, 10vw, 9rem);
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process__container {
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
}

.process__head h2 {
  color: var(--ink);
  font-size: var(--fs-5xl);
  line-height: 1;
  letter-spacing: -0.035em;
}
.process__head h2 em {
  font-style: italic;
  color: var(--accent);
}
.process__head .eyebrow {
  color: var(--ink-muted);
}
.process__head p {
  color: var(--ink-muted);
  font-size: var(--fs-md);
  margin-top: var(--s-5);
}

.process__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--s-5);
  align-items: baseline;
  padding: var(--s-6) 0;
  border-top: 1px solid var(--border);
  transition: padding-left var(--t-med) var(--ease);
}
.step:last-child {
  border-bottom: 1px solid var(--border);
}
.step:hover {
  padding-left: var(--s-4);
}
.step__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-lg);
  color: var(--ink-faint);
  font-weight: 400;
}
.step__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  transition: color var(--t-med) var(--ease);
}
.step:hover .step__title {
  color: var(--accent);
}
.step__meta {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
}
.step__desc {
  grid-column: 2 / 4;
  margin-top: var(--s-3);
  font-size: 0.95rem;
  color: var(--ink-muted);
  max-width: 60ch;
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .process__container {
    grid-template-columns: 1fr 2fr;
    gap: var(--s-9);
    align-items: start;
  }
  .process__head {
    position: sticky;
    top: calc(var(--header-h) + 2rem);
  }
}

/* ── Compare / Why AI ──────────────────────────────────────────── */
.compare {
  padding-block: clamp(5rem, 10vw, 9rem);
}
.compare__head {
  max-width: var(--container);
  margin: 0 auto var(--s-8);
}
.compare__head h2 {
  font-size: var(--fs-5xl);
  line-height: 1;
  max-width: 18ch;
}
.compare__head h2 em { font-style: italic; }
.compare__head p {
  font-size: var(--fs-md);
  color: var(--ink);
  margin-top: var(--s-5);
  max-width: 50ch;
}

.compare__grid {
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 900px) {
  .compare__grid { grid-template-columns: 1fr 1fr; gap: var(--s-5); }
}

.compare-card {
  padding: var(--s-6);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  position: relative;
  overflow: hidden;
}
.compare-card--ours {
  background:
    radial-gradient(circle at 80% 0%, rgba(34, 211, 238, 0.18), transparent 50%),
    var(--bg-elevated);
  border-color: rgba(34, 211, 238, 0.3);
  position: relative;
}

.compare-card__label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.compare-card--ours .compare-card__label {
  color: var(--accent);
}
.compare-card__title {
  font-family: var(--font-serif);
  font-size: var(--fs-2xl);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.compare-card__title em { font-style: italic; }

.compare-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-top: var(--s-3);
}
.compare-list li {
  display: flex;
  gap: var(--s-3);
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-muted);
  padding: var(--s-3) 0;
  border-top: 1px solid var(--border);
}
.compare-list li:first-child { border-top: none; padding-top: 0; }
.compare-card--ours .compare-list li {
  color: var(--ink);
}
.compare-list__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}
.compare-card--ours .compare-list__icon { color: var(--accent); }
.compare-card:not(.compare-card--ours) .compare-list__icon { color: var(--ink-faint); }

/* ── Showcase ───────────────────────────────────────────────────── */
.showcase {
  padding-block: clamp(5rem, 10vw, 9rem);
}
.showcase__head {
  max-width: var(--container);
  margin: 0 auto var(--s-8);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
.showcase__head h2 {
  font-size: var(--fs-5xl);
  line-height: 1;
}
.showcase__head h2 em { font-style: italic; }
.showcase__head p { font-size: var(--fs-md); color: var(--ink); max-width: 36ch; }

@media (min-width: 900px) {
  .showcase__head { grid-template-columns: 1fr 1fr; align-items: end; }
}

.showcase__grid {
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 720px) { .showcase__grid { grid-template-columns: 1fr 1fr; } }

.work {
  position: relative;
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--ink);
  transition: transform var(--t-med) var(--ease),
    border-color var(--t-med) var(--ease);
  will-change: transform;
}
.work:hover { border-color: var(--border-strong); }
.work__visual {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-soft) 100%);
}
.work__mock {
  position: absolute;
  inset: 12% 12% 0 12%;
  border-radius: var(--r-md) var(--r-md) 0 0;
  border: 1px solid var(--border-strong);
  border-bottom: none;
  background: var(--bg-soft);
  padding: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  transition: transform var(--t-slow) var(--ease);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}
.work:hover .work__mock { transform: translateY(-12px); }
.work__mock-bar {
  display: flex;
  gap: 5px;
}
.work__mock-bar span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border-strong);
}
.work__mock-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: var(--s-3);
}
.work__mock-content span {
  height: 6px;
  border-radius: 3px;
  background: var(--border);
}
.work__mock-content span:nth-child(1) {
  width: 50%;
  background: var(--accent);
}
.work__mock-content span:nth-child(2) { width: 90%; }
.work__mock-content span:nth-child(3) { width: 70%; }
.work__mock-content span:nth-child(4) { width: 40%; }

.work__info {
  padding: var(--s-5);
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: var(--s-4);
}
.work__info-meta {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
}
.work__cat {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.work__title {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.work__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-elevated);
  color: var(--ink);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--t-fast) var(--ease),
    color var(--t-fast) var(--ease),
    transform var(--t-fast) var(--ease),
    border-color var(--t-fast) var(--ease);
}
.work:hover .work__arrow {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
  transform: rotate(-45deg);
}

/* ── FAQ ───────────────────────────────────────────────────────── */
.faq {
  padding-block: clamp(5rem, 10vw, 9rem);
}
.faq__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.faq__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  align-items: start;
}
@media (min-width: 860px) {
  .faq__list {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-8);
  }
}
.faq__col {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  transition: border-color var(--t-fast) var(--ease);
}
.faq-item:hover {
  border-color: rgba(34, 211, 238, 0.3);
}
.faq-item__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-5) 0;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color var(--t-fast) var(--ease);
}
.faq-item__btn:hover,
.faq-item.is-open .faq-item__btn {
  color: var(--accent);
}
.faq-item__plus {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--accent);
  transition: transform var(--t-med) var(--ease);
}
.faq-item__plus::before,
.faq-item__plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: currentColor;
}
.faq-item__plus::before { width: 12px; height: 1.5px; }
.faq-item__plus::after { width: 1.5px; height: 12px; transition: transform var(--t-med) var(--ease); }
.faq-item.is-open .faq-item__plus {
  transform: rotate(90deg);
}
.faq-item.is-open .faq-item__plus::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) var(--ease-in-out);
}
.faq-item__answer-inner {
  padding: 0 0 var(--s-5);
  color: var(--ink-muted);
  line-height: 1.65;
  max-width: 52ch;
  font-size: 0.92rem;
}
.faq-item__answer-inner a {
  color: var(--accent);
  border-bottom: 1px solid rgba(34, 211, 238, 0.4);
}

/* ── CTA Final ──────────────────────────────────────────────────── */
.cta-final {
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, #1a2350 0%, #0a0f24 50%, var(--dark) 100%);
  color: var(--ink);
  padding-block: clamp(6rem, 14vw, 12rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(34, 211, 238, 0.2), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(80, 100, 200, 0.25), transparent 50%);
  filter: blur(60px);
  pointer-events: none;
}
.cta-final__container {
  max-width: var(--container);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.cta-final .eyebrow { color: var(--ink-muted); }
.cta-final h2 {
  font-size: var(--fs-mega);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--ink);
  margin: var(--s-5) 0;
  font-weight: 400;
}
.cta-final h2 em {
  font-style: italic;
  color: var(--accent);
}
.cta-final__lede {
  font-size: var(--fs-md);
  color: var(--ink-muted);
  max-width: 50ch;
  margin: var(--s-6) auto var(--s-7);
}
.cta-final__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-3);
  margin-bottom: var(--s-7);
}

.cta-final__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-3) var(--s-6);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.cta-final__meta span {
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.cta-final__meta svg { width: 12px; height: 12px; color: var(--accent); }

/* ── Footer ─────────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: var(--ink);
  border-top: 1px solid var(--border);
  padding-top: var(--s-8);
  padding-bottom: var(--s-5);
}
.site-footer__inner {
  max-width: var(--container);
  margin-inline: auto;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  padding-bottom: var(--s-8);
}
.footer-col__brand p {
  font-size: 0.95rem;
  max-width: 36ch;
  margin: var(--s-4) 0 var(--s-5);
  color: var(--ink-muted);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  font-size: 0.9rem;
  color: var(--ink-2);
}
.footer-contact a:hover { color: var(--accent); }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: var(--s-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--s-2); }
.footer-col a {
  font-size: 0.95rem;
  color: var(--ink-2);
}
.footer-col a:hover { color: var(--accent); }

@media (min-width: 720px) {
  .site-footer__top {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--s-6);
  }
}

.footer-giant {
  border-top: 1px solid var(--border);
  padding-top: var(--s-6);
  font-family: var(--font-serif);
  font-size: clamp(4rem, 18vw, 16rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.06em;
  color: var(--ink);
  overflow: hidden;
  text-align: center;
}
.footer-giant em {
  font-style: italic;
  color: var(--accent);
}

.site-footer__bottom {
  border-top: 1px solid var(--border);
  margin-top: var(--s-4);
  padding-top: var(--s-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-6);
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--ink-muted);
}
.site-footer__bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-5);
}

/* ── To-Top ────────────────────────────────────────────────────── */
.to-top {
  position: fixed;
  right: var(--pad-x);
  bottom: var(--pad-x);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--t-med) var(--ease),
    transform var(--t-med) var(--ease),
    background var(--t-fast) var(--ease);
  z-index: 50;
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.4);
}
.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.to-top:hover {
  background: var(--ink);
  color: var(--dark);
}
.to-top svg { width: 18px; height: 18px; }

/* ── Reveal Animation ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow) var(--ease),
    transform var(--t-slow) var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="100"] { transition-delay: 100ms; }
.reveal[data-delay="200"] { transition-delay: 200ms; }
.reveal[data-delay="300"] { transition-delay: 300ms; }
.reveal[data-delay="400"] { transition-delay: 400ms; }

.reveal-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.14em;
  margin-bottom: -0.14em;
}
.reveal-line > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform var(--t-slow) var(--ease);
}
.reveal-line.is-visible > span {
  transform: translateY(0);
}
.reveal-line[data-delay="100"] > span { transition-delay: 100ms; }
.reveal-line[data-delay="200"] > span { transition-delay: 200ms; }
.reveal-line[data-delay="300"] > span { transition-delay: 300ms; }
.reveal-line[data-delay="400"] > span { transition-delay: 400ms; }

/* ── Error Pages ────────────────────────────────────────────────── */
.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 2rem) var(--pad-x) var(--s-7);
  position: relative;
  overflow: hidden;
}
.error-page__bg {
  position: absolute;
  inset: -10%;
  z-index: -1;
  filter: blur(80px);
  opacity: 0.7;
}
.error-page__bg::before,
.error-page__bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.error-page__bg::before {
  width: 50vmin; height: 50vmin;
  top: 10%; left: 10%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.4) 0%, transparent 70%);
}
.error-page__bg::after {
  width: 60vmin; height: 60vmin;
  bottom: 5%; right: 10%;
  background: radial-gradient(circle, rgba(80, 100, 200, 0.4) 0%, transparent 70%);
}
.error-page__code {
  font-family: var(--font-serif);
  font-size: clamp(6rem, 22vw, 16rem);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.06em;
}
.error-page__code em {
  font-style: italic;
  color: var(--ink-muted);
}
.error-page__title {
  font-size: var(--fs-3xl);
  margin-top: var(--s-5);
  margin-bottom: var(--s-3);
}
.error-page__desc {
  max-width: 48ch;
  margin: 0 auto var(--s-6);
  color: var(--ink-muted);
}
.error-page__actions {
  display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: center;
}

/* ── Reduced Motion ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal,
  .reveal-line > span {
    opacity: 1;
    transform: none;
  }
  .hero__title-line > span {
    transform: none;
  }
}

/* ── Padding-Wrap für Container ──────────────────────────────────── */
.section .container,
.cta-final .container,
.process .container {
  padding-inline: var(--pad-x);
}
.hero__container,
.statement__inner,
.services__head,
.bento,
.compare__head,
.compare__grid,
.showcase__head,
.showcase__grid,
.faq__inner,
.process__container,
.cta-final__container,
.site-footer__inner {
  padding-inline: var(--pad-x);
}
.site-header__inner {
  padding-inline: var(--pad-x);
}

/* ===================================================================
   Rechtsseiten (Impressum / Datenschutz)
   =================================================================== */
.legal {
  padding-block: clamp(7rem, 14vw, 11rem) clamp(4rem, 10vw, 8rem);
  position: relative;
}
.legal__inner {
  max-width: 820px;
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.legal__head {
  margin-bottom: var(--s-8);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid var(--border);
}
.legal__title {
  font-family: var(--font-serif);
  font-size: var(--fs-3xl);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
  margin-top: var(--s-4);
}
.legal__title em { font-style: italic; color: var(--accent); }
.legal__intro {
  margin-top: var(--s-4);
  color: var(--ink-muted);
  font-size: var(--fs-md);
  line-height: 1.6;
  max-width: 60ch;
}
.legal__body { color: var(--ink-muted); }
.legal__body h2 {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: var(--s-8) 0 var(--s-4);
}
.legal__body h3 {
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--ink-2);
  margin: var(--s-6) 0 var(--s-3);
}
.legal__body p,
.legal__body li {
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--ink-muted);
}
.legal__body p { margin-bottom: var(--s-4); }
.legal__body ul {
  margin: 0 0 var(--s-4);
  padding-left: 1.25rem;
}
.legal__body li { margin-bottom: var(--s-2); }
.legal__body a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(34, 211, 238, 0.3);
  transition: border-color var(--t-fast) var(--ease);
}
.legal__body a:hover { border-color: var(--accent); }
.legal__body strong { color: var(--ink-2); font-weight: 600; }
/* Daten-Karte (Anschrift, Register etc.) */
.legal__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--s-6);
  margin: var(--s-5) 0 var(--s-6);
  line-height: 1.75;
  color: var(--ink-2);
}
.legal__card strong { color: var(--ink); }

/* ===================================================================
   Consent-Banner + Click-to-Load (DSGVO)
   =================================================================== */
.consent {
  position: fixed;
  left: 50%;
  bottom: clamp(1rem, 3vw, 2rem);
  transform: translateX(-50%) translateY(140%);
  z-index: 1000;
  width: min(680px, calc(100% - 2rem));
  background: rgba(11, 16, 36, 0.92);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(34, 211, 238, 0.06);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  opacity: 0;
  visibility: hidden;
  transition: transform var(--t-slow) var(--ease), opacity var(--t-med) var(--ease),
    visibility 0s linear var(--t-slow);
}
.consent.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
  transition: transform var(--t-slow) var(--ease), opacity var(--t-med) var(--ease);
}
.consent__title {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--s-2);
}
.consent__text {
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: var(--ink-muted);
  margin-bottom: var(--s-5);
}
.consent__text a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(34, 211, 238, 0.3);
}
.consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}
/* hidden-Attribut respektieren (sonst überschreibt display:flex es) */
.consent__actions[hidden],
.consent__categories[hidden] { display: none; }
.consent__btn {
  flex: 1 1 auto;
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: 0.85em 1.4em;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease),
    border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.consent__btn:hover { transform: translateY(-2px); }
.consent__btn--accept {
  background: var(--accent);
  color: var(--dark);
  border: 1px solid var(--accent);
}
.consent__btn--accept:hover { background: #4fe0f5; }
.consent__btn--decline {
  background: transparent;
  color: var(--ink-2);
  border: 1px solid var(--border-strong);
}
.consent__btn--decline:hover { border-color: var(--ink-faint); color: var(--ink); }
.consent__btn--ghost {
  background: transparent;
  color: var(--ink-muted);
  border: 1px solid var(--border);
  flex: 0 1 auto;
}
.consent__btn--ghost:hover { color: var(--ink); border-color: var(--ink-faint); }

/* Bei geöffneten Einstellungen scrollbar machen, falls Inhalt zu hoch */
.consent {
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
}
.consent__inner { display: block; }

/* Kategorien-Block (Einstellungs-Ansicht) */
.consent__categories {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  margin: var(--s-5) 0;
  padding: var(--s-5);
  background: rgba(244, 244, 240, 0.025);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.consent__cat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-4);
  align-items: start;
  cursor: pointer;
}
.consent__cat--locked { cursor: default; }
.consent__cat input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border: 1.5px solid var(--border-strong);
  border-radius: 4px;
  background: rgba(244, 244, 240, 0.03);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.consent__cat input[type="checkbox"]:hover {
  border-color: var(--accent);
}
.consent__cat input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.consent__cat input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid var(--dark);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.consent__cat input[type="checkbox"]:disabled {
  background: rgba(34, 211, 238, 0.18);
  border-color: rgba(34, 211, 238, 0.4);
  cursor: not-allowed;
  opacity: 0.85;
}
.consent__cat input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.consent__cat-body {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  min-width: 0;
}
.consent__cat-name {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.consent__cat-badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.3);
  padding: 0.2em 0.6em;
  border-radius: var(--r-pill);
}
.consent__cat-desc {
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--ink-muted);
}

/* Click-to-Load Platzhalter für Calendly + Maps */
.embed-consent {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--s-4);
  min-height: 340px;
  height: 100%;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--bg-card);
  border: 1px dashed var(--border-strong);
  border-radius: inherit;
}
.embed-consent__icon {
  width: 44px;
  height: 44px;
  color: var(--accent);
  opacity: 0.8;
}
.embed-consent__title {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--ink);
}
.embed-consent__text {
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 42ch;
}
.embed-consent__text a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(34, 211, 238, 0.3);
}
.embed-consent__btn {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: 0.8em 1.5em;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: var(--dark);
  border: none;
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.embed-consent__btn:hover { transform: translateY(-2px); background: #4fe0f5; }
.embed-consent__note {
  font-size: var(--fs-xs);
  color: var(--ink-faint);
}


.pv3-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
}
@media (min-width: 760px) { .pv3-grid { grid-template-columns: repeat(2, 1fr); } }
.pv3-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-7) var(--s-6) var(--s-5);
  overflow: hidden;
  isolation: isolate;
  transition: border-color var(--t-med) var(--ease);
}
.pv3-card:hover { border-color: rgba(34, 211, 238, 0.4); }
.pv3-card::before {
  content: "";
  position: absolute;
  inset: -20% -20% auto auto;
  width: 70%; height: 70%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.18), transparent 70%);
  filter: blur(30px);
  z-index: 0;
  pointer-events: none;
}
.pv3-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: var(--s-5);
  z-index: 1;
  animation: pv3-float 6s ease-in-out infinite;
}
@keyframes pv3-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.pv3-laptop {
  position: absolute;
  inset: 0 15% 0 0;
  display: flex;
  flex-direction: column;
}
.pv3-laptop__bezel {
  background: #050818;
  border: 1px solid rgba(244, 244, 240, 0.15);
  border-radius: 10px 10px 0 0;
  padding: 8px 8px 4px;
  box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.7);
  flex: 1;
  overflow: hidden;
}
.pv3-laptop__bezel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.pv3-laptop__base {
  width: 115%;
  height: 6px;
  margin-left: -7.5%;
  background: linear-gradient(to bottom,
    rgba(244, 244, 240, 0.2),
    rgba(244, 244, 240, 0.08));
  border-radius: 0 0 6px 6px;
  position: relative;
}
.pv3-laptop__base::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20%;
  height: 2px;
  background: rgba(244, 244, 240, 0.2);
  border-radius: 0 0 4px 4px;
}
.pv3-phone {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 22%;
  aspect-ratio: 9/19;
  background: #050818;
  border: 1px solid rgba(244, 244, 240, 0.18);
  border-radius: 14px;
  padding: 4px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  animation: pv3-float-phone 5s ease-in-out infinite;
}
.pv3-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  display: block;
}
@keyframes pv3-float-phone {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.pv3-card__caption {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--s-4);
}
.pv3-card__cat {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.pv3-card__title {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: var(--s-1) 0 0;
  text-transform: none;
}

.pscroll {
  position: relative;
}

.pscroll__sticky {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--header-h) + var(--s-5));
}

/* Pfeil-Navigation für Portfolio-Slides */
.pscroll__nav {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  gap: var(--s-3);
  margin: var(--s-4) clamp(2rem, 4vw, 4rem) 0;
}
.pscroll__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(244, 244, 240, 0.06);
  border: 1px solid rgba(244, 244, 240, 0.18);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              opacity var(--t-fast) var(--ease);
}
.pscroll__arrow:hover {
  background: rgba(244, 244, 240, 0.12);
  border-color: var(--accent);
  color: var(--accent);
}
.pscroll__arrow:disabled {
  opacity: 0.25;
  cursor: not-allowed;
  pointer-events: none;
}
.pscroll__arrow svg { width: 20px; height: 20px; }
/* Section-Head sitzt im Sticky-Container, behält Standard-Padding */
.pscroll__sticky > .sec-head {
  flex: 0 0 auto;
  margin-bottom: var(--s-5);
}
.pscroll__sticky > .pscroll__track {
  flex: 1 1 auto;
  min-height: 0;
}
.pscroll__track {
  display: flex;
  height: 100%;
  will-change: transform;
}
.pslide {
  flex: 0 0 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  padding: clamp(1.5rem, 3vh, 2.5rem) clamp(2rem, 4vw, 4rem) clamp(4rem, 6vh, 5rem);
  align-content: start;
}
@media (min-width: 760px) {
  .pslide { grid-template-columns: 1.2fr 1fr; gap: var(--s-8); }
}
.pslide__index {
  position: absolute;
  top: var(--s-5);
  left: var(--s-5);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--accent);
  letter-spacing: 0.06em;
}
.pslide__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pslide__visual .pv3-stage {
  width: 100%;
  max-width: 560px;
}
.pslide__body { align-self: center; }
.pslide__cat {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.pslide__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 1.3rem + 1.5vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
  margin: var(--s-3) 0 var(--s-4);
  text-transform: none;
}
.pslide__text {
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.1rem);
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 0 0 var(--s-5);
  max-width: 50ch;
}
.pslide__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.pslide__link span { transition: transform var(--t-fast) var(--ease); }
.pslide__link:hover span { transform: translateX(5px); }
/* Progress und CTA im normalen Flex-Flow am Sticky-Boden */
.pscroll__progress {
  flex: 0 0 auto;
  margin: var(--s-4) clamp(2rem, 4vw, 4rem) 0;
  height: 2px;
  background: rgba(244, 244, 240, 0.08);
  border-radius: 1px;
  overflow: hidden;
}
.pscroll__sticky .portfolio__cta {
  flex: 0 0 auto;
  margin: var(--s-4) clamp(2rem, 4vw, 4rem) var(--s-6);
}
/* Auf Mobile beides ausblenden — würde mitten im Slide auftauchen */
@media (max-width: 760px) {
  .pscroll__progress,
  .pscroll__sticky .portfolio__cta { display: none; }
}
.pscroll__progress span {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--accent);
  border-radius: 1px;
  transform-origin: left center;
  transition: transform 100ms linear;
}

/* ===================================================================
   Passwortschutz-Overlay (optische Vorschau-Sperre, JS-basiert)
   =================================================================== */
.site-gate {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-5);
  background:
    radial-gradient(60% 60% at 50% 35%, rgba(34, 211, 238, 0.1), transparent 70%),
    var(--bg);
}
/* Wenn freigeschaltet: Overlay weg */
.gate-off .site-gate { display: none; }
.site-gate__inner {
  width: min(420px, 100%);
  text-align: center;
  background: rgba(17, 23, 46, 0.7);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  padding: clamp(2rem, 5vw, 3rem);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(34, 211, 238, 0.06);
}
.site-gate__brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  display: inline-block;
  margin-bottom: var(--s-6);
}
.site-gate__title {
  font-family: var(--font-serif);
  font-size: var(--fs-2xl);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--s-3);
}
.site-gate__text {
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: var(--ink-muted);
  margin-bottom: var(--s-6);
}
.site-gate__form {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.site-gate__input {
  width: 100%;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  color: var(--ink);
  background: rgba(244, 244, 240, 0.04);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  padding: 0.95em 1.4em;
  text-align: center;
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.site-gate__input::placeholder { color: var(--ink-faint); }
.site-gate__input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(34, 211, 238, 0.06);
}
.site-gate__btn {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--dark);
  background: var(--accent);
  border: none;
  border-radius: var(--r-pill);
  padding: 0.95em 1.4em;
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.site-gate__btn:hover { transform: translateY(-2px); background: #4fe0f5; }
.site-gate__error {
  font-size: var(--fs-sm);
  color: #ff6b6b;
  margin-top: var(--s-4);
}
.site-gate--shake { animation: gate-shake 0.4s var(--ease); }
@keyframes gate-shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-8px); }
  40%, 80% { transform: translateX(8px); }
}

/* ===================================================================
   Wissens-Subpage: KI-Webentwicklung (editorial, premium)
   =================================================================== */
.kiwissen { position: relative; isolation: isolate; }

/* ── Hero ───────────────────────────────────────────────────────── */
.kiwissen__hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh; /* Mobile-Adressleiste berücksichtigen */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(5rem, 10vh, 8rem) 0 clamp(3rem, 6vh, 5rem);
  background:
    radial-gradient(70% 55% at 50% 30%, rgba(34, 211, 238, 0.09), transparent 70%),
    var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  text-align: center;
}
/* dezente Sternchen-Textur */
.kiwissen__hero-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 18% 25%, rgba(34, 211, 238, 0.55), transparent 50%),
    radial-gradient(1.5px 1.5px at 72% 38%, rgba(244, 244, 240, 0.4), transparent 50%),
    radial-gradient(1px 1px at 38% 72%, rgba(34, 211, 238, 0.45), transparent 50%),
    radial-gradient(1.5px 1.5px at 86% 18%, rgba(244, 244, 240, 0.35), transparent 50%),
    radial-gradient(1px 1px at 12% 80%, rgba(34, 211, 238, 0.3), transparent 50%),
    radial-gradient(2px 2px at 60% 90%, rgba(244, 244, 240, 0.25), transparent 50%);
  background-size: 700px 500px;
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}
.kiwissen__hero-inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.kiwissen__hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-5);
}
.kiwissen__hero-eyebrow-line {
  width: 28px;
  height: 1px;
  background: var(--accent);
  opacity: 0.55;
}
.kiwissen__hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 1.5rem + 2.6vw, 3.75rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--ink);
  text-transform: none; /* überschreibt globale h1-Caps */
  margin: 0 0 var(--s-4);
  hyphens: manual;
}
.kiwissen__hero-title em { font-style: italic; color: var(--accent); }
.kiwissen__hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 0.95rem + 0.8vw, 1.6rem);
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 var(--s-6);
  color: var(--ink-2);
}
.kiwissen__hero-subtitle em {
  font-style: italic;
  color: var(--accent);
}
.kiwissen__hero-lead {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 0.95rem + 0.45vw, 1.22rem);
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 640px;
  margin: 0 auto var(--s-7);
}
.kiwissen__hero-meta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  background: rgba(34, 211, 238, 0.04);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--ink-2);
  flex-wrap: wrap;
  justify-content: center;
}
.kiwissen__hero-meta strong {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.1em;
}
.kiwissen__hero-meta-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--ink-faint);
}

/* ── Illustration im Artikel (über dem Text) ────────────────────── */
.kiwissen__article-figure {
  max-width: 720px;
  margin: 0 auto var(--s-7);
  opacity: 0.95;
}
.kiwissen__article-figure svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.35));
}

/* ── Scroll-Indikator (Hero-Boden, zentriert) ──────────────────── */
.kiwissen__hero-scroll {
  position: absolute;
  bottom: clamp(1.5rem, 4vh, 3rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  z-index: 3;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-decoration: none;
  opacity: 0;
  animation: kw-scroll-in 800ms var(--ease) 1400ms forwards;
  transition: color var(--t-fast) var(--ease);
}
.kiwissen__hero-scroll:hover { color: var(--accent); }
.kiwissen__hero-scroll-line {
  display: block;
  width: 1px;
  height: 56px;
  background: rgba(244, 244, 240, 0.18);
  position: relative;
  overflow: hidden;
}
.kiwissen__hero-scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateY(-100%);
  animation: scroll-line 4s var(--ease-in-out) infinite;
}
@keyframes kw-scroll-in { to { opacity: 1; } }
@media (max-width: 760px) {
  .kiwissen__hero-scroll { display: none; }
}

/* Tag-Pille im Wissen-Hero (etwas Luft nach unten) */
.kiwissen__hero-inner .hero__manifest-tag {
  margin-bottom: var(--s-5);
  justify-content: center;
}

/* Bessere Zeilenumbrüche (keine Witwen/Waisen) */
.kiwissen__hero-title,
.kiwissen__hero-subtitle,
.kiwissen__article-subhead,
.kiwissen__cta-title { text-wrap: balance; }

.kiwissen__hero-lead,
.kiwissen__article-text,
.kiwissen__article-quote p,
.kiwissen__cta-text { text-wrap: pretty; }

/* ── Artikel (Fließtext) ───────────────────────────────────────── */
.kiwissen__body {
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
}
.kiwissen__article {
  font-family: var(--font-sans);
}
.kiwissen__article-text {
  font-family: var(--font-sans);
  font-size: clamp(1.02rem, 0.95rem + 0.25vw, 1.13rem);
  line-height: 1.72;
  color: var(--ink-muted);
  margin: 0 0 var(--s-5);
}
.kiwissen__article-text:last-child { margin-bottom: 0; }
.kiwissen__article-text strong { color: var(--ink-2); font-weight: 600; }
/* Lead-Paragraph etwas größer und heller */
.kiwissen__article-text--lead {
  font-size: clamp(1.1rem, 0.98rem + 0.5vw, 1.25rem);
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: var(--s-7);
}

/* Subheadings im Artikel */
.kiwissen__article-subhead {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 1.15rem + 0.95vw, 1.9rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.22;
  color: var(--ink);
  text-transform: none; /* überschreibt globale h2-Caps */
  margin: var(--s-8) 0 var(--s-4);
}
.kiwissen__article-subhead::before {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: var(--accent);
  margin-bottom: var(--s-3);
  border-radius: 1px;
}

/* Zitat / Pull-Quote */
.kiwissen__article-quote {
  margin: var(--s-7) 0;
  padding: var(--s-3) 0 var(--s-3) var(--s-5);
  border-left: 3px solid var(--accent);
}
.kiwissen__article-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.25rem, 1.1rem + 0.8vw, 1.7rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
}

/* ── Abschluss-CTA ──────────────────────────────────────────────── */
.kiwissen__cta {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) var(--pad-x);
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  text-align: center;
  overflow: hidden;
}
.kiwissen__cta-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(45% 65% at 50% 50%, rgba(34, 211, 238, 0.16), transparent 70%);
  pointer-events: none;
}
.kiwissen__cta-inner {
  position: relative;
  max-width: 720px;
  margin-inline: auto;
}
.kiwissen__cta-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-5);
}
.kiwissen__cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 1.5rem + 2vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  text-transform: none; /* überschreibt globale h2-Caps */
  margin: 0 0 var(--s-5);
}
.kiwissen__cta-title em { font-style: italic; color: var(--accent); }
.kiwissen__cta-text {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.12rem);
  line-height: 1.65;
  color: var(--ink-muted);
  max-width: 560px;
  margin: 0 auto var(--s-7);
}
.kiwissen__cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--s-5);
}
.kiwissen__cta-link {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  transition: color var(--t-fast) var(--ease);
}
.kiwissen__cta-link:hover { color: var(--accent); }
.kiwissen__cta-link-arrow {
  display: inline-block;
  transition: transform var(--t-fast) var(--ease);
}
.kiwissen__cta-link:hover .kiwissen__cta-link-arrow { transform: translateX(5px); }

/* ── Bildschutz (casual deterrent) ───────────────────────────── */
img {
  -webkit-user-drag: none;          /* Chrome/Safari: kein Drag */
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;      /* iOS: kein Long-Press-Menü */
  user-select: none;
  pointer-events: auto;             /* Klicks im umschließenden <a> bleiben aktiv */
}

/* ===================================================================
   Blog — Übersicht & Detail
   =================================================================== */

/* Header der Blog-Übersichtsseite */
.blog {
  padding: calc(var(--header-h) + var(--s-7)) 0 var(--s-8);
  background: var(--bg);
}
.blog__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}
.blog__head {
  text-align: center;
  margin-bottom: var(--s-7);
}
.blog__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.5rem, 1.5rem + 4vw, 5rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
  margin: var(--s-2) 0 var(--s-4);
}
.blog__title em { font-style: italic; color: var(--accent); }
.blog__intro {
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.25rem);
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 60ch;
  margin: 0 auto;
}

/* Card-Liste */
.blog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 720px) { .blog-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .blog-list { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.4);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}
.blog-card__cover {
  display: block;
  aspect-ratio: 16 / 10;
  width: 100%;
  background: var(--bg-soft);
  overflow: hidden;
}
.blog-card__cover img,
.blog-card__cover svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: var(--s-5) var(--s-5) var(--s-6);
}
.blog-card__cat {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-3);
}
.blog-card__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 var(--s-3);
}
.blog-card__excerpt {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-muted);
  margin: 0 0 var(--s-4);
}
.blog-card__meta {
  display: flex;
  gap: var(--s-3);
  margin-top: auto;
  font-size: 0.8rem;
  color: var(--ink-faint);
  font-family: var(--font-sans);
}
.blog-card__meta span:not(:last-child)::after {
  content: "·";
  margin-left: var(--s-3);
}

/* Detail-Layout: Artikel */
.post {
  padding: calc(var(--header-h) + var(--s-6)) 0 var(--s-8);
  background: var(--bg);
}
.post__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}
.post__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--ink-muted);
  text-decoration: none;
  margin-bottom: var(--s-5);
  transition: color var(--t-fast) var(--ease);
}
.post__back:hover { color: var(--accent); }
.post__meta-top {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--ink-faint);
  margin-bottom: var(--s-3);
  flex-wrap: wrap;
}
.post__cat {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.post__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 1.4rem + 2.5vw, 3.4rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 var(--s-4);
}
.post__lead {
  font-size: clamp(1.05rem, 0.95rem + 0.3vw, 1.2rem);
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 var(--s-6);
}
.post__cover {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  margin-bottom: var(--s-7);
}
.post__cover img,
.post__cover svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Body-Typografie */
.post__body { color: var(--ink-2); }
.post__body h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin: var(--s-7) 0 var(--s-3);
}
.post__body h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  margin: var(--s-5) 0 var(--s-3);
}
.post__body p,
.post__body ul,
.post__body ol {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-muted);
  margin: 0 0 var(--s-4);
}
.post__body ul,
.post__body ol { padding-left: var(--s-5); }
.post__body li { margin-bottom: var(--s-2); }
.post__body strong { color: var(--ink); font-weight: 600; }
.post__body a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.post__body blockquote {
  border-left: 2px solid var(--accent);
  padding: var(--s-3) 0 var(--s-3) var(--s-4);
  margin: var(--s-5) 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
}
.post__body table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--s-5) 0;
  font-size: 0.95rem;
}
.post__body th,
.post__body td {
  border-bottom: 1px solid var(--border);
  padding: var(--s-3);
  text-align: left;
  vertical-align: top;
}
.post__body th {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

/* CTA-Box im Artikel */
.post__cta {
  margin: var(--s-7) 0 var(--s-6);
  padding: var(--s-6);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  text-align: center;
}
.post__cta-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.post__cta-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem);
  color: var(--ink);
  margin: var(--s-2) 0 var(--s-3);
}
.post__cta-text {
  color: var(--ink-muted);
  margin: 0 0 var(--s-5);
}

/* Verwandte Artikel am Ende */
.post__related {
  margin-top: var(--s-8);
  padding-top: var(--s-7);
  border-top: 1px solid var(--border);
}
.post__related-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--ink);
  margin: 0 0 var(--s-5);
}
.post__related-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 720px) { .post__related-list { grid-template-columns: repeat(2, 1fr); } }

/* Blog-Teaser auf der Startseite */
.blog-teaser__head {
  text-align: center;
  margin-bottom: var(--s-6);
}
.blog-teaser__head .sec-head { margin: 0 auto var(--s-4); }
.blog-teaser__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
}
.blog-teaser__cta span { transition: transform var(--t-fast) var(--ease); }
.blog-teaser__cta:hover span { transform: translateX(5px); }
.blog-teaser__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 720px) { .blog-teaser__grid { grid-template-columns: repeat(3, 1fr); } }
