/* ============================================================
   Dabejo — Webdesign aus Emsdetten
   Editorial. Dunkel. Subtiler Aurora-Shader.
   ============================================================ */

/* Lokal gehostete Fonts — DSGVO-konform, kein Google-Fonts-Request */

/* Fraunces — variable, Latin */
@font-face{
  font-family:'Fraunces';
  font-style:normal;
  font-weight:300 700;
  font-display:swap;
  src:url('fonts/Fraunces-Roman-Latin.woff2') format('woff2');
  unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face{
  font-family:'Fraunces';
  font-style:normal;
  font-weight:300 700;
  font-display:swap;
  src:url('fonts/Fraunces-Roman-LatinExt.woff2') format('woff2');
  unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Inter — variable, Latin */
@font-face{
  font-family:'Inter';
  font-style:normal;
  font-weight:300 700;
  font-display:swap;
  src:url('fonts/Inter-Latin.woff2') format('woff2');
  unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face{
  font-family:'Inter';
  font-style:normal;
  font-weight:300 700;
  font-display:swap;
  src:url('fonts/Inter-LatinExt.woff2') format('woff2');
  unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* JetBrains Mono — 400 + 500 share file */
@font-face{
  font-family:'JetBrains Mono';
  font-style:normal;
  font-weight:400 500;
  font-display:swap;
  src:url('fonts/JetBrainsMono-Latin.woff2') format('woff2');
  unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face{
  font-family:'JetBrains Mono';
  font-style:normal;
  font-weight:400 500;
  font-display:swap;
  src:url('fonts/JetBrainsMono-LatinExt.woff2') format('woff2');
  unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  /* Palette — dunkler, dramatischer */
  --ink: #0a1024;          /* deep midnight, fast schwarz mit Blaustich */
  --ink-2: #0f1731;
  --ink-3: #182245;
  --navy: #1b2a4a;
  --navy-soft: #2a3a60;

  --cream: #f4ede0;
  --cream-2: #ebe2d1;
  --paper: #fbf7ee;

  --accent: #e07a4a;       /* warmes Terrakotta-Orange */
  --accent-hot: #ff8a4d;
  --accent-glow: rgba(224, 122, 74, 0.35);

  --line: rgba(244, 237, 224, 0.10);
  --line-strong: rgba(244, 237, 224, 0.20);
  --line-dark: rgba(10, 16, 36, 0.10);
  --line-dark-strong: rgba(10, 16, 36, 0.18);

  --serif: 'Fraunces', ui-serif, Georgia, serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --radius: 18px;
  --radius-sm: 10px;
  --radius-lg: 28px;

  --ease-out: cubic-bezier(.2, .8, .2, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
}

/* ============================================================
   Reset & base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
button { font-family: inherit; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

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

.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--accent); color: var(--ink);
  padding: 12px 18px; border-radius: 999px;
  font-weight: 600; z-index: 999;
  transition: top .2s;
}
.skip-link:focus { top: 16px; }

.container {
  max-width: 1240px; margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================
   Custom cursor
   ============================================================ */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  will-change: transform;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--cream);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--cream);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease-out), height .25s var(--ease-out), border-color .2s;
}
.cursor-ring.is-hot {
  width: 64px; height: 64px;
  border-color: var(--accent-hot);
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: padding .3s var(--ease-out), background .3s var(--ease-out), border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding: 10px 0;
  background: rgba(10, 16, 36, 0.72);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--serif);
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.nav-logo-mark {
  width: 32px; height: 32px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.4));
}
.nav-logo-text em { color: var(--accent); font-style: italic; font-weight: 600; }

.nav-links {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 4px;
  align-items: center;
}
.nav-links li a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 14px;
  color: rgba(244, 237, 224, 0.7);
  font-weight: 500;
  border-radius: 999px;
  transition: color .2s, background .2s;
  position: relative;
}
.nav-links li a:hover { color: var(--cream); }
.nav-launch {
  color: var(--accent) !important;
  position: relative;
}
.nav-launch::before {
  content: ''; position: absolute;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  left: 4px; top: 50%; transform: translateY(-50%);
  box-shadow: 0 0 12px var(--accent-glow);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
  50% { opacity: 0.5; transform: translateY(-50%) scale(0.7); }
}
.nav-launch { padding-left: 18px !important; }
.nav-cta {
  background: var(--cream);
  color: var(--ink) !important;
  padding: 10px 20px !important;
}
.nav-cta:hover { background: var(--accent) !important; color: var(--ink) !important; }

.nav-burger {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--line-strong);
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
}
.nav-burger span {
  width: 18px; height: 1.5px;
  background: var(--cream);
  transition: transform .25s, opacity .2s;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 64px 0 0 0;
  background: var(--ink);
  z-index: 99;
  display: flex; flex-direction: column;
  padding: 40px 32px;
  gap: 4px;
  transform: translateX(100%);
  transition: transform .35s var(--ease-out);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-link {
  font-family: var(--serif);
  font-size: 32px; font-weight: 400;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--cream);
}
.mobile-link.nav-launch { color: var(--accent); padding-left: 0 !important; }
.mobile-link.nav-launch::before { display: none; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: transform .25s var(--ease-out), background .25s, color .25s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 10px 30px -8px var(--accent-glow);
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.4) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .6s var(--ease-out);
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-primary:hover {
  box-shadow: 0 16px 40px -8px var(--accent-glow);
}
.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line-strong);
}
.btn-secondary:hover {
  background: rgba(244, 237, 224, 0.06);
  border-color: var(--cream);
}
.arrow {
  display: inline-block;
  transition: transform .3s var(--ease-out);
}
.btn-primary:hover .arrow, .btn-secondary:hover .arrow { transform: translateX(4px); }

/* ============================================================
   Section primitives
   ============================================================ */
section { position: relative; padding: 140px 0; }
.section-soft { background: var(--ink-2); }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.section-label::before {
  content: ''; width: 24px; height: 1px; background: var(--accent);
}

.section-heading {
  font-family: var(--serif);
  font-size: clamp(40px, 5.6vw, 76px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 32px;
  color: var(--cream);
  text-wrap: balance;
}
.section-heading em {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}

.section-sub {
  font-size: 19px;
  line-height: 1.55;
  max-width: 620px;
  color: rgba(244, 237, 224, 0.7);
  margin: 0 0 64px;
  text-wrap: pretty;
}

/* ============================================================
   Reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  padding: 140px 0 100px;
  position: relative;
  width: 100%;
  align-items: center;
  z-index: 1;
  display: block;
  overflow: hidden;
}
.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-shader {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  width: 100%;
}
.hero-shader canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.hero-shader::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, var(--ink) 0%, transparent 60%),
    linear-gradient(180deg, rgba(10, 16, 36, 0.0) 0%, rgba(10, 16, 36, 0.6) 100%);
  pointer-events: none;
}

.hero-overline {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.6);
  margin-bottom: 32px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(244, 237, 224, 0.03);
  backdrop-filter: blur(12px);
}
.hero-overline::before {
  content: ''; width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 32px;
  color: var(--cream);
}
.hero h1 em {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
  position: relative;
  display: inline-block;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  inset: auto -4% -8%;
  height: 30%;
  background: radial-gradient(ellipse at center, var(--accent-glow), transparent 70%);
  filter: blur(20px);
  z-index: -1;
}

.hero-desc {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(244, 237, 224, 0.75);
  margin: 0 0 40px;
  max-width: 520px;
  text-wrap: pretty;
}

.hero-actions {
  display: flex; gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-launch-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 20px 12px 16px;
  background: rgba(224, 122, 74, 0.08);
  border: 1px solid rgba(224, 122, 74, 0.25);
  border-radius: 999px;
  font-size: 14px;
  color: var(--cream);
  margin-bottom: 40px;
  transition: background .25s, border-color .25s, transform .25s var(--ease-out);
}
.hero-launch-badge:hover {
  background: rgba(224, 122, 74, 0.14);
  border-color: rgba(224, 122, 74, 0.45);
  transform: translateY(-2px);
}
.hlb-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
.hlb-accent { color: var(--accent); font-weight: 600; }
.hlb-arrow { color: var(--accent); }

.hero-trust {
  display: flex; gap: 24px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-trust-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: rgba(244, 237, 224, 0.6);
}
.hero-trust-item svg {
  width: 16px; height: 16px;
  fill: none; stroke: var(--accent);
  stroke-width: 1.5;
}

/* HERO VISUAL — der Karten-Stack */
.hero-visual {
  position: relative;
  perspective: 1400px;
}
.hero-card-main {
  position: relative;
  background: linear-gradient(155deg, var(--cream) 0%, var(--cream-2) 100%);
  color: var(--ink);
  padding: 36px;
  border-radius: 24px;
  box-shadow:
    0 60px 120px -30px rgba(0, 0, 0, .6),
    0 30px 60px -20px rgba(0, 0, 0, .4),
    inset 0 1px 0 rgba(255,255,255,.6);
  transform: rotate(-2.2deg);
  transition: transform .6s var(--ease-out);
}
.hero-card-main:hover { transform: rotate(-1deg) translateY(-6px); }
.hero-card-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(10, 16, 36, 0.5);
  margin-bottom: 16px;
}
.hero-card-domain {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 8px;
}
.hero-card-domain em {
  color: var(--accent);
  font-style: italic;
}
.hero-card-sub {
  font-size: 14px;
  color: rgba(10, 16, 36, 0.6);
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: 28px;
}
.hero-card-rows { display: flex; flex-direction: column; gap: 16px; }
.hero-card-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px; align-items: center;
}
.hero-card-icon {
  width: 40px; height: 40px;
  background: rgba(27, 42, 74, 0.08);
  border-radius: 10px;
  display: grid; place-items: center;
}
.hero-card-icon svg {
  width: 20px; height: 20px;
  fill: none; stroke: var(--navy);
  stroke-width: 1.5;
}
.hero-card-rowtitle {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.2;
}
.hero-card-rowmeta {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(10, 16, 36, 0.55);
  margin-top: 2px;
  letter-spacing: 0.04em;
}
.hero-card-rowmeta a { color: inherit; }
.hero-card-check {
  width: 28px; height: 28px;
  background: var(--accent);
  border-radius: 50%;
  display: grid; place-items: center;
}
.hero-card-check svg {
  width: 14px; height: 14px;
  fill: none; stroke: var(--ink);
  stroke-width: 2.5;
}

.hero-card-stamp {
  position: absolute;
  bottom: -32px; right: -32px;
  width: 130px; height: 130px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 11px;
  text-align: center;
  line-height: 1.3;
  border: 1px dashed var(--line-strong);
  animation: spin 22s linear infinite;
  transform: rotate(8deg);
  z-index: 2;
}
.hero-card-stamp strong {
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
  display: block;
  margin-bottom: 2px;
}
@keyframes spin {
  from { transform: rotate(8deg); }
  to { transform: rotate(368deg); }
}

.hero-card-sticky {
  position: absolute;
  top: -28px; left: -28px;
  background: var(--accent);
  color: var(--ink);
  padding: 16px 20px;
  border-radius: 12px;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.3;
  max-width: 220px;
  transform: rotate(-4deg);
  box-shadow: 0 14px 30px -8px rgba(224, 122, 74, .4);
  z-index: 3;
}
.hero-card-sticky-name {
  font-family: var(--mono);
  font-size: 11px;
  margin-top: 6px;
  letter-spacing: 0.04em;
  opacity: 0.75;
}

@media (max-width: 960px) {
  .hero { min-height: auto; padding-top: 120px; }
  .hero-inner { grid-template-columns: 1fr; gap: 80px; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
}

/* ============================================================
   IN-PAGE SHADER SWITCHER
   ============================================================ */
.shader-switcher {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 16px;
  background: rgba(10, 16, 36, 0.55);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.6);
  max-width: calc(100% - 48px);
}
.ss-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.55);
  padding-right: 10px;
  border-right: 1px solid var(--line);
  flex-shrink: 0;
}
.ss-label svg { color: var(--accent); }
.ss-buttons {
  display: inline-flex;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
}
.ss-buttons::-webkit-scrollbar { display: none; }
.ss-buttons button {
  background: transparent;
  border: none;
  color: rgba(244, 237, 224, 0.65);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background .25s, color .25s;
  white-space: nowrap;
}
.ss-buttons button:hover { color: var(--cream); background: rgba(244, 237, 224, 0.06); }
.ss-buttons button.is-active {
  background: var(--accent);
  color: var(--ink);
}
@media (max-width: 720px) {
  .shader-switcher {
    bottom: 16px;
    padding: 6px 6px 6px 12px;
    gap: 8px;
  }
  .ss-label { padding-right: 8px; }
  .ss-label span { display: none; }
  .ss-buttons button { padding: 6px 10px; font-size: 10px; }
}

/* ============================================================
   LEISTUNGEN
   ============================================================ */
.leistungen-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}
.leistungen-head .section-sub { margin-bottom: 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  padding: 40px 32px;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .4s var(--ease-out), border-color .3s, background .3s;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 0%, var(--accent-glow), transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 122, 74, 0.3);
}
.service-number {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: rgba(244, 237, 224, 0.4);
  margin-bottom: 60px;
}
.service-icon {
  width: 56px; height: 56px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 24px;
  background: rgba(244, 237, 224, 0.02);
}
.service-icon svg {
  width: 26px; height: 26px;
  fill: none; stroke: var(--accent);
  stroke-width: 1.5;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--cream);
}
.service-card p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(244, 237, 224, 0.65);
  margin: 0 0 24px;
}
.service-features {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.service-features li {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(244, 237, 224, 0.7);
  position: relative;
  padding-left: 18px;
}
.service-features li::before {
  content: ''; position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 1px;
  background: var(--accent);
}

@media (max-width: 880px) {
  .leistungen-head { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ABLAUF
   ============================================================ */
.process-wrap { margin-top: 60px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 10%, var(--line-strong) 90%, transparent);
}
.process-step {
  position: relative;
  padding: 0 24px 0 0;
  border-right: 1px dashed var(--line);
}
.process-step:last-child { border-right: none; }
.process-step-num {
  width: 64px; height: 64px;
  border: 1px solid var(--line-strong);
  background: var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.process-step h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--cream);
}
.process-step p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(244, 237, 224, 0.6);
  margin: 0;
  padding-right: 16px;
}
@media (max-width: 880px) {
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .process-step { border-right: none; padding-right: 0; padding-bottom: 32px; border-bottom: 1px dashed var(--line); }
  .process-step:last-child { border-bottom: none; padding-bottom: 0; }
}

/* ============================================================
   DEMOS — Premium / Signature / Essential
   ============================================================ */
.demos-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}
.demos-head .section-sub { margin-bottom: 0; }

.demo-tier {
  margin-bottom: 80px;
}
.demo-tier:last-child { margin-bottom: 0; }
.demo-tier-head {
  display: flex; align-items: baseline;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.demo-tier-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--accent);
}
.demo-tier-name {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0;
}
.demo-tier-name em { color: var(--accent); font-style: italic; }
.demo-tier-desc {
  font-size: 14px;
  color: rgba(244, 237, 224, 0.55);
  margin: 0;
  margin-left: auto;
  max-width: 380px;
  text-align: right;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.demo-card {
  display: block;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 16px 24px;
  transition: transform .5s var(--ease-out), border-color .3s, background .3s;
  position: relative;
  overflow: hidden;
}
.demo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), var(--accent-glow), transparent 50%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.demo-card:hover::after { opacity: 0.5; }
.demo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 122, 74, 0.3);
}

/* Browser-Mockup */
.demo-browser {
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.5);
  margin-bottom: 20px;
  position: relative;
}
.demo-browser-bar {
  display: flex; align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(10, 16, 36, 0.04);
  border-bottom: 1px solid rgba(10, 16, 36, 0.06);
}
.demo-browser-dots {
  display: flex; gap: 6px;
}
.demo-browser-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(10, 16, 36, 0.18);
}
.demo-browser-dots span:first-child { background: #e07a4a; }
.demo-browser-url {
  flex: 1;
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(10, 16, 36, 0.5);
  background: rgba(10, 16, 36, 0.06);
  padding: 4px 10px;
  border-radius: 5px;
  text-align: center;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.demo-screen {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
}
.demo-screen svg {
  width: 100%; height: 100%;
  display: block;
}

.demo-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 0 8px;
}
.demo-info { flex: 1; }
.demo-tier-badge {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}
.demo-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 4px;
  color: var(--cream);
}
.demo-name em { color: var(--accent); font-style: italic; }
.demo-genre {
  font-size: 13px;
  color: rgba(244, 237, 224, 0.5);
}
.demo-go {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background .3s, border-color .3s, transform .3s;
}
.demo-go svg {
  width: 14px; height: 14px;
  fill: none; stroke: var(--cream);
  stroke-width: 1.5;
  transition: transform .3s var(--ease-out);
}
.demo-card:hover .demo-go {
  background: var(--accent);
  border-color: var(--accent);
}
.demo-card:hover .demo-go svg {
  stroke: var(--ink);
  transform: translate(2px, -2px);
}

/* Tier-spezifische Akzente */
.demo-tier[data-tier="premium"] .demo-card {
  background: linear-gradient(155deg, var(--ink-3), var(--ink-2));
  border-color: rgba(224, 122, 74, 0.18);
}
.demo-tier[data-tier="premium"] .demo-tier-num,
.demo-tier[data-tier="premium"] .demo-tier-badge {
  color: var(--accent);
}

@media (max-width: 880px) {
  .demos-head { grid-template-columns: 1fr; }
  .demo-grid { grid-template-columns: 1fr; }
  .demo-tier-desc { text-align: left; margin-left: 0; }
}

/* ============================================================
   WARUM
   ============================================================ */
.usp-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: start;
  margin-top: 40px;
}
.usp-portrait-frame {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: linear-gradient(155deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line);
  margin-bottom: 24px;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.5);
}
.usp-portrait-frame::before {
  content: 'Daniel Winter';
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 24px;
  color: rgba(244, 237, 224, 0.25);
  letter-spacing: 0.05em;
  font-style: italic;
}
.usp-portrait-frame img { width: 100%; height: 100%; object-fit: cover; position: relative; }
.usp-portrait-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 4px;
}
.usp-portrait-role {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.usp-portrait-quote {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.5;
  color: rgba(244, 237, 224, 0.7);
  padding-left: 16px;
  border-left: 2px solid var(--accent);
}

.usp-list { display: flex; flex-direction: column; gap: 32px; }
.usp-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.usp-item:last-child { border-bottom: none; padding-bottom: 0; }
.usp-item-icon {
  width: 56px; height: 56px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(244, 237, 224, 0.02);
}
.usp-item-icon svg {
  width: 22px; height: 22px;
  fill: none; stroke: var(--accent);
  stroke-width: 1.5;
}
.usp-item h4 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
  color: var(--cream);
}
.usp-item p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(244, 237, 224, 0.6);
  margin: 0;
}

@media (max-width: 880px) {
  .usp-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================================
   LAUNCH
   ============================================================ */
.launch-invitation {
  position: relative;
  background: linear-gradient(155deg, var(--cream) 0%, var(--cream-2) 100%);
  color: var(--ink);
  padding: 64px;
  border-radius: var(--radius-lg);
  margin: 60px 0 40px;
  overflow: hidden;
  box-shadow: 0 60px 120px -30px rgba(224, 122, 74, .25);
}
.launch-invitation::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 0%, rgba(224, 122, 74, 0.12), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(27, 42, 74, 0.08), transparent 50%);
  pointer-events: none;
}
.launch-inv-stamp {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 8px 16px;
  border: 1px solid rgba(224, 122, 74, 0.3);
  border-radius: 999px;
  margin-bottom: 32px;
  background: rgba(224, 122, 74, 0.06);
  position: relative;
}
.launch-inv-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 48px;
  color: var(--ink);
  text-wrap: balance;
}
.launch-inv-title em { color: var(--accent); font-style: italic; }

.launch-prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
  padding: 32px 0;
  border-top: 1px solid var(--line-dark-strong);
  border-bottom: 1px solid var(--line-dark-strong);
  position: relative;
}
.launch-prices::after {
  content: '';
  position: absolute;
  left: 50%; top: 32px; bottom: 32px;
  width: 1px;
  background: var(--line-dark-strong);
}
.launch-price-block { padding: 0 16px; }
.launch-price-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(10, 16, 36, 0.5);
  margin-bottom: 8px;
}
.launch-price-amount {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 8px;
}
.launch-price-amount .period {
  font-size: 0.4em;
  color: rgba(10, 16, 36, 0.5);
  font-style: italic;
}
.launch-price-note {
  font-size: 14px;
  color: rgba(10, 16, 36, 0.65);
  line-height: 1.45;
}
.launch-price-note .forever {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  font-weight: 600;
}

.launch-guarantee {
  background: rgba(27, 42, 74, 0.05);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  border-radius: 4px;
  margin-bottom: 40px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(10, 16, 36, 0.75);
}
.launch-guarantee strong {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 4px;
}

.launch-features-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(10, 16, 36, 0.5);
  margin-bottom: 16px;
}
.launch-features {
  list-style: none; padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
  margin: 0 0 48px;
}
.launch-features li {
  font-size: 15px;
  color: rgba(10, 16, 36, 0.85);
  position: relative;
  padding-left: 24px;
}
.launch-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.launch-cta {
  background: var(--ink) !important;
  color: var(--cream) !important;
  padding: 18px 36px !important;
  font-size: 16px !important;
}
.launch-cta:hover {
  background: var(--accent) !important;
  color: var(--ink) !important;
}
.launch-cta-note {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(10, 16, 36, 0.5);
  margin: 12px 0 0;
}

.launch-slots {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  padding: 32px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
}
.slots-header {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.5);
  margin-bottom: 24px;
}
.slots-row {
  display: flex; gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.slot {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 18px;
  position: relative;
  transition: border-color .3s, background .3s;
}
.slot-free {
  border-color: rgba(224, 122, 74, 0.5);
  color: var(--accent);
}
.slot-free::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(224, 122, 74, 0.2);
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
.slot-taken {
  background: var(--line);
  color: rgba(244, 237, 224, 0.3);
  text-decoration: line-through;
}
.slots-label {
  font-family: var(--mono);
  font-size: 13px;
  color: rgba(244, 237, 224, 0.6);
}
.slots-num {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 720px) {
  .launch-invitation { padding: 40px 24px; }
  .launch-prices { grid-template-columns: 1fr; gap: 32px; }
  .launch-prices::after { display: none; }
  .launch-features { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap {
  margin-top: 60px;
  max-width: 920px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-question {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  padding: 28px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--cream);
  transition: color .2s;
}
.faq-question:hover { color: var(--accent); }
.faq-toggle {
  width: 36px; height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--sans);
  font-size: 18px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform .3s var(--ease-out), background .2s;
}
.faq-item.is-open .faq-toggle {
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--ink);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease-out);
}
.faq-item.is-open .faq-answer { max-height: 400px; }
.faq-answer p {
  margin: 0;
  padding: 0 60px 28px 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(244, 237, 224, 0.7);
}

/* ============================================================
   KONTAKT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
  margin-top: 40px;
}
.contact-info h3 {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--cream);
}
.contact-info p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(244, 237, 224, 0.7);
  margin-bottom: 32px;
}
.contact-detail {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: rgba(244, 237, 224, 0.85);
}
.contact-detail-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(244, 237, 224, 0.04);
  border: 1px solid var(--line);
  display: grid; place-items: center;
}
.contact-detail-icon svg {
  width: 14px; height: 14px;
  fill: none; stroke: var(--accent);
  stroke-width: 1.5;
}
.contact-detail a:hover { color: var(--accent); }

.contact-form {
  background: var(--ink);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.55);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  color-scheme: dark;
  background: rgba(244, 237, 224, 0.03);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
  transition: border-color .2s, background .2s;
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
  font-family: var(--sans);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(244, 237, 224, 0.05);
}
.form-group select {
  appearance: none;
  color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23e07a4a' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-consent {
  display: flex; gap: 12px;
  align-items: flex-start;
  margin-bottom: 24px;
  font-size: 13px;
  color: rgba(244, 237, 224, 0.6);
  line-height: 1.5;
}
.form-consent input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--accent);
}
.form-consent a { color: var(--accent); text-decoration: underline; }

.form-status {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(244, 237, 224, 0.7);
  min-height: 22px;
}
.form-status.is-success { color: #6dd49b; }
.form-status.is-error { color: #ff8a4d; }

.form-hint {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(244, 237, 224, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.form-hint::before {
  content: '';
  width: 14px;
  height: 1px;
  background: rgba(244, 237, 224, 0.3);
}

.form-group select option {
  background: #0f1731;
  color: var(--cream);
  padding: 8px;
}

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   MOBILE OPTIMIZATION — comprehensive
   ============================================================ */
@media (max-width: 720px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }

  /* HERO — kompakt, Shader sofort sichtbar ohne Scrollen */
  .hero {
    min-height: auto;
    padding: 96px 0 48px;
  }
  .hero-inner {
    padding: 0 20px;
    gap: 48px;
  }
  .hero-overline {
    font-size: 10px;
    padding: 6px 12px;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-size: clamp(38px, 11vw, 56px) !important;
    line-height: 1.05;
  }
  .hero-desc {
    font-size: 16px;
    margin: 0 0 28px;
  }
  .hero-actions {
    gap: 10px;
    margin-bottom: 28px;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    flex: 1 1 auto;
    justify-content: center;
    text-align: center;
    padding: 14px 18px;
    font-size: 14px;
  }
  .hero-launch-badge {
    font-size: 12px;
    padding: 10px 14px;
    margin-bottom: 28px;
  }
  .hero-trust {
    gap: 14px;
    padding-top: 20px;
  }
  .hero-trust-item { font-size: 12px; }

  /* Hero Visual — kleiner, weniger dramatische Rotation */
  .hero-visual { max-width: 360px; margin: 0 auto; }
  .hero-card-main {
    padding: 28px 24px;
    transform: rotate(-1deg);
  }
  .hero-card-domain { font-size: 32px; }
  .hero-card-rowtitle { font-size: 16px; }
  .hero-card-stamp {
    bottom: -20px; right: -12px;
    width: 96px; height: 96px;
    padding: 14px;
  }
  .hero-card-stamp strong { font-size: 16px; }
  .hero-card-stamp span { font-size: 8px; }
  .hero-card-sticky {
    top: -16px; left: -12px;
    padding: 14px 16px;
    font-size: 13px;
    max-width: 180px;
  }

  /* Shader-Switcher — als horizontal scrollende Pille im Hero unten */
  .shader-switcher {
    bottom: 12px;
    padding: 6px;
    max-width: calc(100% - 24px);
  }
  .ss-label {
    padding: 0 8px;
    font-size: 9px;
  }
  .ss-label span { display: none; }
  .ss-buttons button {
    padding: 6px 10px;
    font-size: 10px;
  }

  /* Section-Spacing global enger */
  section { padding: 64px 0 !important; }
  .section-eyebrow {
    font-size: 10px;
    margin-bottom: 16px;
  }
  h2, .section-title {
    font-size: clamp(30px, 7vw, 42px) !important;
    line-height: 1.1;
  }
  .section-lede, .section-intro {
    font-size: 16px !important;
    margin-bottom: 40px !important;
  }

  /* Cards & Grids — kompakter */
  .service-card,
  .demo-card,
  .usp-item,
  .process-step {
    padding: 24px !important;
  }
  .service-card { padding: 28px 24px !important; }

  .demos-head, .leistungen-head {
    gap: 24px !important;
    margin-bottom: 40px !important;
  }
  .demo-grid, .services-grid, .usp-grid {
    gap: 16px !important;
  }

  /* Process */
  .process-steps { gap: 28px !important; }
  .process-num {
    font-size: 28px !important;
  }

  /* Launch */
  .launch-invitation { padding: 32px 20px !important; }
  .launch-prices { gap: 20px !important; }
  .price-card { padding: 24px !important; }
  .price-amount { font-size: 36px !important; }

  /* FAQ */
  .faq-wrap { margin-top: 40px !important; }
  .faq-question {
    font-size: 16px !important;
    padding: 18px 16px !important;
  }
  .faq-answer { padding: 0 16px 16px !important; font-size: 14px; }
  .faq-toggle { width: 28px; height: 28px; }

  /* Kontakt */
  .contact-info h3 { font-size: 28px !important; }
  .contact-form { padding: 24px !important; }
  .form-group { margin-bottom: 16px; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 16px; /* prevent iOS zoom on focus */
  }
  .form-group label {
    font-size: 10px;
    margin-bottom: 6px;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    gap: 20px;
    padding: 0 20px !important;
    text-align: center;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px !important;
  }

  /* Tweaks Panel — schmaler, etwas niedriger */
  .tweaks-panel {
    width: calc(100vw - 32px);
    right: 16px;
    bottom: 16px;
    padding: 16px;
  }

  /* Custom Cursor aus auf Mobile (war schon, aber sicher ist sicher) */
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* Sehr kleine Geräte */
@media (max-width: 380px) {
  .hero h1 { font-size: 36px !important; }
  .hero-card-domain { font-size: 26px; }
  .hero-card-sticky {
    top: -10px; left: -8px;
    padding: 10px 12px;
    font-size: 11px;
    max-width: 150px;
  }
  .hero-card-stamp {
    width: 78px; height: 78px;
    bottom: -14px; right: -8px;
  }
  .hero-card-stamp strong { font-size: 13px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  background: var(--ink);
}
.footer-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--serif);
  font-size: 18px;
}
.footer-brand-mark { width: 28px; height: 28px; }
.footer-brand-text em { color: var(--accent); font-style: italic; }
.footer-copy {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(244, 237, 224, 0.5);
}
.footer-links {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 24px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(244, 237, 224, 0.6);
  transition: color .2s;
}
.footer-links a:hover { color: var(--accent); }

/* ============================================================
   TWEAKS PANEL
   ============================================================ */
.tweaks-panel {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 200;
  width: 280px;
  background: rgba(15, 23, 49, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 20px;
  font-size: 13px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.6);
  transform: translateY(120%);
  transition: transform .4s var(--ease-out);
}
.tweaks-panel.is-open { transform: translateY(0); }
.tweaks-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.tweaks-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.tweaks-close {
  background: none; border: none; cursor: pointer;
  color: rgba(244, 237, 224, 0.6);
  font-size: 18px; line-height: 1;
}
.tweaks-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
}
.tweaks-row label {
  color: rgba(244, 237, 224, 0.85);
  font-size: 13px;
}
.tweak-segments {
  display: flex; gap: 4px;
  background: rgba(0,0,0,.3);
  padding: 3px;
  border-radius: 999px;
}
.tweak-segments button {
  background: transparent; border: none;
  color: rgba(244, 237, 224, 0.6);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  text-transform: uppercase;
}
.tweak-segments button.is-active {
  background: var(--accent);
  color: var(--ink);
}
.tweaks-row-stack {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}
.tweaks-row-stack > label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.55);
}
.tweak-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.tweak-grid button {
  background: rgba(0,0,0,.3);
  border: 1px solid var(--line);
  color: rgba(244, 237, 224, 0.7);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  padding: 8px 6px;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background .2s, color .2s, border-color .2s;
}
.tweak-grid button:hover { border-color: var(--line-strong); color: var(--cream); }
.tweak-grid button.is-active {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}
.tweak-swatches { display: flex; gap: 8px; }
.tweak-swatch {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s, border-color .2s;
}
.tweak-swatch.is-active { border-color: var(--cream); }
.tweak-swatch:hover { transform: scale(1.1); }
.tweak-toggle {
  position: relative;
  width: 36px; height: 20px;
  background: rgba(0,0,0,.4);
  border-radius: 999px;
  cursor: pointer;
  border: none;
}
.tweak-toggle::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 14px; height: 14px;
  background: rgba(244, 237, 224, 0.6);
  border-radius: 50%;
  transition: transform .2s, background .2s;
}
.tweak-toggle.is-on { background: var(--accent); }
.tweak-toggle.is-on::after { transform: translateX(16px); background: var(--ink); }

/* ============================================================
   Magnetic / hover-zone enhancement
   ============================================================ */
.magnetic { display: inline-block; will-change: transform; transition: transform .15s var(--ease-out); }
.hover-zone:hover ~ .cursor-ring { width: 64px; height: 64px; }

/* utility */
.no-select { user-select: none; }


/* ============================================================
   ECHTE PROJEKTE
   ============================================================ */
.projekte-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  margin-top: 56px;
}
.projekt-card {
  background: var(--cream);
  color: var(--ink);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease;
}
.projekt-card-main { padding: 0; display: flex; flex-direction: column; }
.projekt-card-main:hover { transform: translateY(-4px); box-shadow: 0 30px 80px -20px rgba(0,0,0,.5); }

.projekt-card-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(10,16,36,.7);
  padding: 22px 28px 0;
}
.projekt-card-sep { opacity: .35; }
.projekt-live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2bb673;
  box-shadow: 0 0 0 4px rgba(43,182,115,.18);
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(43,182,115,.18); }
  50%      { box-shadow: 0 0 0 7px rgba(43,182,115,.05); }
}
.projekt-card-image {
  margin: 18px 28px 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #1b2a4a 0%, #0a1024 100%);
  position: relative;
}
.projekt-card-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.projekt-card-image-fallback {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  color: var(--cream);
  font-family: var(--mono);
}
.projekt-card-image-fallback-domain {
  font-size: 18px; letter-spacing: .02em;
  color: var(--accent);
}
.projekt-card-image-fallback-tag {
  font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(244,237,224,.55);
}
.projekt-card-body { padding: 24px 28px 28px; }
.projekt-card-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--ink);
}
.projekt-card-desc {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(10,16,36,.75);
  margin: 0 0 22px;
  max-width: 56ch;
}
.projekt-card-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
  border-top: 1px solid rgba(10,16,36,.12);
  padding-top: 20px;
}
.projekt-card-meta li { display: flex; flex-direction: column; gap: 3px; }
.projekt-card-meta span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(10,16,36,.5);
}
.projekt-card-meta strong {
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
}
.projekt-card-cta { margin-top: 6px; align-self: flex-start; display: inline-flex; }

/* Teaser card */
.projekt-card-teaser {
  background: rgba(244,237,224,.04);
  border: 1px dashed rgba(244,237,224,.22);
  color: var(--cream);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
}
.projekt-card-eyebrow-muted { padding: 0; color: rgba(244,237,224,.6); }
.projekt-soon-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(244,237,224,.4);
  animation: soonPulse 2.4s ease-in-out infinite;
}
@keyframes soonPulse {
  0%, 100% { opacity: .3; transform: scale(1); }
  50%      { opacity: .8; transform: scale(1.2); }
}
.projekt-teaser-num {
  font-family: var(--serif);
  font-size: clamp(60px, 8vw, 110px);
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  color: rgba(244,237,224,.18);
  margin: 24px 0;
}
.projekt-teaser-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 400;
  margin: 0 0 6px;
  color: var(--cream);
}
.projekt-teaser-desc {
  font-size: 14px;
  color: rgba(244,237,224,.6);
  margin: 0;
}

@media (max-width: 880px) {
  .projekte-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 36px; }
  .projekt-card-teaser { min-height: auto; padding: 24px; }
  .projekt-teaser-num { font-size: 64px; margin: 16px 0; }
  .projekt-card-meta { grid-template-columns: 1fr; gap: 12px; }
  .projekt-card-image { margin: 16px 16px 0; }
  .projekt-card-eyebrow { padding: 18px 16px 0; }
  .projekt-card-body { padding: 20px 16px 22px; }
}

/* USP portrait — photo */
.usp-portrait-frame {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1b2a4a, #0a1024);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
}
.usp-portrait-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.usp-portrait-sign {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--accent);
  margin-top: 20px;
  opacity: .9;
}


/* Demo card screenshots — overlay onto SVG placeholder */
.demo-screen { position: relative; }
.demo-screen-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #15140f;
  display: block;
  z-index: 1;
}
.demo-screen:has(.demo-screen-img) > svg { display: none; }

/* ============================================================
   Legal pages — Impressum & Datenschutz
   ============================================================ */
.legal-page {
  padding: 160px 0 100px;
  position: relative;
  background: radial-gradient(120% 70% at 50% 0%, var(--ink-2) 0%, var(--ink) 60%);
  min-height: 100vh;
}
.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
}
.legal-head {
  padding-bottom: 48px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.legal-meta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.45);
  margin-top: 18px;
}
.legal-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.55);
  margin-bottom: 28px;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s, transform .25s var(--ease-out);
}
.legal-back:hover,
.legal-back:focus-visible {
  color: var(--accent);
  border-color: rgba(224, 122, 74, .5);
  outline: none;
  transform: translateX(-3px);
}
.legal-back .legal-back-arrow {
  display: inline-block;
  transition: transform .25s var(--ease-out);
}
.legal-back:hover .legal-back-arrow {
  transform: translateX(-2px);
}

.legal-prose {
  display: flex; flex-direction: column;
  gap: 56px;
}
.legal-section {
  display: flex; flex-direction: column;
  gap: 16px;
}
.legal-section-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 10px;
}
.legal-section-num::before {
  content: ''; width: 18px; height: 1px; background: var(--accent);
}
.legal-section h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--cream);
  margin: 0;
}
.legal-section h2 em { color: var(--accent); font-style: italic; }
.legal-section h3 {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cream);
  margin: 14px 0 -4px;
}
.legal-section p,
.legal-section li {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(244, 237, 224, 0.72);
  margin: 0;
}
.legal-section p strong { color: var(--cream); font-weight: 600; }
.legal-section a {
  color: var(--cream);
  border-bottom: 1px solid rgba(224, 122, 74, .45);
  transition: color .2s, border-color .2s;
}
.legal-section a:hover,
.legal-section a:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
  outline: none;
}

.legal-card {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 24px 28px;
  background: rgba(244, 237, 224, 0.025);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin-top: 8px;
}
.legal-card-label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.4);
  margin-bottom: 12px;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex; flex-direction: column;
  gap: 10px;
}
.legal-list li {
  position: relative;
  padding-left: 24px;
}
.legal-list li::before {
  content: ''; position: absolute;
  left: 0; top: 0.85em;
  width: 12px; height: 1px;
  background: var(--accent);
  opacity: 0.6;
}

@media (max-width: 720px) {
  .legal-page { padding: 120px 0 80px; }
  .legal-prose { gap: 44px; }
  .legal-section p, .legal-section li { font-size: 15px; }
}
