/* ==========================================================
   SPACEHOME with ROVELLC — Premium Modular Living
   ========================================================== */
:root {
  --bg: #10161f;
  --bg2: #141c27;
  --panel: #1a2433;
  --line: rgba(160, 180, 205, .16);
  --gold: #8aabc8;      /* steel blue (primary accent) */
  --gold-2: #c6dbec;    /* ice blue (bright accent) */
  --brandgold: #c89a62;   /* Marken-Gold aus dem Keyvisual (Wortmarke) */
  --brandgold-2: #e9c996;
  --cyan: #2fe0d8;
  --cyan-dim: rgba(47, 224, 216, .32);
  --text: #eaf0f7;
  --muted: #9fadc0;
  --display: 'Michroma', sans-serif;
  --body: 'Manrope', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  position: relative; /* Anker für .page-veins über die volle Dokumenthöhe */
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--gold); color: #0a0a0a; }

/* ---------- Starfield (static layer, GPU-cheap) ---------- */
.stars {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 12% 22%, rgba(255,255,255,.7), transparent 55%),
    radial-gradient(1px 1px at 78% 12%, rgba(255,255,255,.5), transparent 55%),
    radial-gradient(1.5px 1.5px at 42% 68%, rgba(255,255,255,.45), transparent 55%),
    radial-gradient(1px 1px at 88% 52%, rgba(255,255,255,.6), transparent 55%),
    radial-gradient(1px 1px at 28% 88%, rgba(255,255,255,.4), transparent 55%),
    radial-gradient(1.5px 1.5px at 62% 34%, rgba(255,255,255,.5), transparent 55%),
    radial-gradient(1px 1px at 5% 55%, rgba(255,255,255,.45), transparent 55%),
    radial-gradient(1px 1px at 95% 82%, rgba(255,255,255,.5), transparent 55%);
  background-size: 900px 900px;
  opacity: .5;
}

/* ==========================================================
   INTRO: Kapseltüren gleiten auf
   ========================================================== */
.door-intro {
  position: fixed; inset: 0; z-index: 90; pointer-events: none;
  animation: doorGone .01s linear 2.9s forwards;
}
@keyframes doorGone { to { visibility: hidden; } }

.door-half {
  position: absolute; top: 0; bottom: 0; width: 50.5%;
  display: flex; align-items: center;
  background:
    linear-gradient(115deg, rgba(150, 175, 205, .05), transparent 45%),
    linear-gradient(180deg, #070b13, #02040a 70%);
}
.door-half.left {
  left: 0; justify-content: flex-end;
  border-right: 1px solid rgba(47, 224, 216, .3);
  animation: doorL 1.5s cubic-bezier(.78, 0, .16, 1) 1.15s forwards;
}
.door-half.right {
  right: 0; justify-content: flex-start;
  border-left: 1px solid rgba(47, 224, 216, .3);
  animation: doorR 1.5s cubic-bezier(.78, 0, .16, 1) 1.15s forwards;
}
@keyframes doorL { to { transform: translateX(-102%); } }
@keyframes doorR { to { transform: translateX(102%); } }

.door-word {
  font-family: var(--display); color: #fff;
  font-size: clamp(1.7rem, 4.5vw, 2.9rem); letter-spacing: .3em;
  padding: 0 .35em; white-space: nowrap;
  opacity: 0; animation: doorWordIn .9s ease .25s forwards;
}
.door-word em { font-style: normal; color: var(--brandgold); }
@keyframes doorWordIn { to { opacity: 1; } }

.door-seam {
  position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; margin-left: -1px;
  background: linear-gradient(180deg, transparent, var(--cyan) 18%, var(--cyan) 82%, transparent);
  box-shadow: 0 0 20px rgba(47, 224, 216, .95), 0 0 60px rgba(47, 224, 216, .4);
  transform: scaleY(0);
  animation:
    seamGrow .9s cubic-bezier(.6, 0, .3, 1) .2s forwards,
    seamFade .6s ease 1.35s forwards;
}
@keyframes seamGrow { to { transform: scaleY(1); } }
@keyframes seamFade { to { opacity: 0; } }

/* ==========================================================
   NAVIGATION
   ========================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; gap: 2.4rem;
  padding: 1.1rem clamp(1.2rem, 4vw, 3.2rem);
  opacity: 0;
  animation: navIn 1.2s ease 2.6s forwards;
  transition: background .4s ease, box-shadow .4s ease, padding .4s ease;
}
@keyframes navIn { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: none; } }
.nav.scrolled {
  background: rgba(4, 7, 15, .82);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding-top: .75rem; padding-bottom: .75rem;
}
.nav-logo { display: flex; align-items: center; gap: .7rem; }
/* Startseite: das kleine Logo erscheint erst beim Runterscrollen —
   oben übernimmt das große Logo im Hero-Video */
body:not(.subpage) .nav-logo {
  opacity: 0; transform: translateY(-10px); pointer-events: none;
  transition: opacity .5s ease, transform .5s ease;
}
body:not(.subpage) .nav.scrolled .nav-logo {
  opacity: 1; transform: none; pointer-events: auto;
}
.nav-mark { width: 34px; height: 34px; }
.nav-word {
  font-family: var(--display);
  font-size: 1.02rem; letter-spacing: .3em; color: #fff; white-space: nowrap;
}
.nav-word em { font-style: normal; color: var(--brandgold); }
.nav-links { display: flex; gap: 1.9rem; margin-left: auto; align-items: center; }
.nav-links a {
  font-size: .82rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted);
  transition: color .25s ease;
}
.nav-links a:hover { color: var(--cyan); }
.nav-links .nav-current { color: var(--cyan); }

/* dropdown (e.g. Modelle -> Serien) */
.nav-item { position: relative; }
.nav-item.has-sub > a::after {
  content: ''; display: inline-block; margin-left: .45em;
  width: 7px; height: 7px; border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .25s ease;
}
.nav-item.has-sub:hover > a::after { transform: rotate(225deg) translateY(-1px); }
/* invisible hover bridge so the menu doesn't close in the gap */
.nav-item.has-sub::before {
  content: ''; position: absolute; left: -1rem; right: -1rem; top: 100%; height: 20px;
}
.nav-sub {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 215px; padding: .55rem 0;
  display: flex; flex-direction: column;
  background: rgba(10, 16, 26, .96);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line); border-radius: 6px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .55), 0 0 30px rgba(47, 224, 216, .05);
  opacity: 0; visibility: hidden;
  transition: opacity .28s ease, transform .28s ease, visibility .28s;
}
.nav-sub::before {
  content: ''; position: absolute; top: -5px; left: 50%; margin-left: -5px;
  width: 10px; height: 10px; transform: rotate(45deg);
  background: rgba(10, 16, 26, .96);
  border-left: 1px solid var(--line); border-top: 1px solid var(--line);
}
.nav-item.has-sub:hover .nav-sub,
.nav-item.has-sub:focus-within .nav-sub {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-sub a {
  padding: .52rem 1.3rem; font-size: .78rem; letter-spacing: .12em;
  color: var(--muted); white-space: nowrap;
}
.nav-sub a:hover { color: var(--cyan); background: rgba(47, 224, 216, .06); }
.nav-sub a:first-child { color: var(--gold-2); }
.nav-sub a:nth-child(2) { border-bottom: 1px solid var(--line); padding-bottom: .75rem; margin-bottom: .4rem; }

/* ---------- Mobile-Menü (Burger) ---------- */
.nav-burger {
  display: none; position: relative;
  width: 44px; height: 40px; padding: 8px;
  background: transparent; border: 0; cursor: pointer;
}
.nav-burger span {
  display: block; height: 2px; margin: 5px 0; border-radius: 2px;
  background: #fff; box-shadow: 0 1px 6px rgba(0, 0, 0, .6);
  transition: transform .35s ease, opacity .25s ease;
}
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 45;
  display: flex; align-items: center; justify-content: center;
  background: rgba(5, 9, 17, .97);
  backdrop-filter: blur(16px);
  opacity: 0; visibility: hidden;
  transition: opacity .35s ease, visibility .35s;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
body.menu-open { overflow: hidden; }
.mm-links { display: flex; flex-direction: column; gap: 1.05rem; text-align: center; padding: 4.5rem 1rem 2rem; }
.mm-links > a {
  font-family: var(--display); font-size: 1.05rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--text);
}
.mm-links > a:active, .mm-links > a:hover { color: var(--cyan); }
.mm-series {
  display: flex; flex-wrap: wrap; gap: .45rem; justify-content: center;
  max-width: 330px; margin: -.3rem auto .3rem;
}
.mm-series a {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  color: var(--cyan); border: 1px solid var(--cyan-dim);
  border-radius: 999px; padding: .32rem .7rem;
}
.mm-cta { margin-top: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: .85rem 1.9rem;
  font-family: var(--body); font-weight: 700; font-size: .86rem;
  letter-spacing: .12em; text-transform: uppercase;
  border-radius: 3px; transition: all .3s ease; white-space: nowrap;
}
/* Primär-Buttons im Türkis-Glanz der Bodenbeleuchtung */
.btn-gold {
  background: linear-gradient(120deg, #93f5eb, var(--cyan) 55%, #17b3ab);
  color: #04231f;
  box-shadow: 0 0 24px rgba(47, 224, 216, .35);
}
.btn-gold:hover { box-shadow: 0 0 44px rgba(47, 224, 216, .65); transform: translateY(-2px); }
.btn-ghost {
  border: 1px solid rgba(42, 232, 212, .5); color: var(--cyan);
  background: rgba(3, 8, 14, .55);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(42, 232, 212, .14); box-shadow: 0 0 30px rgba(42, 232, 212, .3); transform: translateY(-2px); }
.btn-lg { padding: 1.05rem 2.5rem; font-size: .95rem; }
.nav-cta { padding: .62rem 1.35rem; font-size: .78rem; }

/* ==========================================================
   HERO — deep cinematic glide-in
   ========================================================== */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  overflow: hidden; z-index: 1;
  background: #020409;
}
/* seamless deep-space backdrop beside the pillarboxed footage */
.hero-backdrop {
  position: absolute; inset: 0;
  background: radial-gradient(130% 100% at 50% 0%, #0b1322 0%, #060a12 45%, #020409 100%);
}
.hero-backdrop::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 8% 18%, rgba(255,255,255,.6), transparent 55%),
    radial-gradient(1.5px 1.5px at 15% 62%, rgba(255,255,255,.4), transparent 55%),
    radial-gradient(1px 1px at 5% 84%, rgba(255,255,255,.5), transparent 55%),
    radial-gradient(1px 1px at 22% 38%, rgba(255,255,255,.35), transparent 55%),
    radial-gradient(1px 1px at 92% 24%, rgba(255,255,255,.6), transparent 55%),
    radial-gradient(1.5px 1.5px at 85% 70%, rgba(255,255,255,.4), transparent 55%),
    radial-gradient(1px 1px at 96% 48%, rgba(255,255,255,.45), transparent 55%),
    radial-gradient(1px 1px at 78% 88%, rgba(255,255,255,.35), transparent 55%);
  background-size: 640px 640px;
  opacity: .55;
}
.hero-media {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
/* the footage sits in an exact 4:3 box; its sides melt into the backdrop */
.hero-art {
  height: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  transform-origin: 50% 56%;
  animation: heroGlide 9.5s cubic-bezier(.22, .61, .21, 1) .3s both;
  will-change: transform, filter, opacity;
}
/* the glide: soft-focus far away -> slowly floating INTO the scene */
@keyframes heroGlide {
  0%   { transform: scale(1.0) translateY(1.2%); filter: blur(10px) brightness(.55); opacity: 0; }
  14%  { opacity: 1; }
  38%  { filter: blur(0) brightness(1); }
  100% { transform: scale(1.16) translateY(-1.6%); filter: blur(0) brightness(1); opacity: 1; }
}
/* video hero: the pull-back lives inside the footage — only a soft
   cinematic focus-in here, plus a slight settle that widens the view
   in the same direction as the camera move */
.hero-art.is-video {
  animation: heroGlideVid 4s cubic-bezier(.22, .61, .21, 1) .1s both;
}
/* hinter den Türen schon sichtbar: nur Schärfe + sanftes Setzen, kein Fade */
@keyframes heroGlideVid {
  0%   { transform: scale(1.16); filter: blur(8px) brightness(.7); }
  28%  { filter: blur(0) brightness(1); }
  100% { transform: scale(1); filter: blur(0) brightness(1); }
}

/* no-video fallback (reduced motion / load failure): sharp still image */
.hero-fallback { display: none; }
body.no-video .hero-media video { display: none; }
body.no-video .hero-fallback { display: block; }

/* pulsing teal ground glow — ties into the capsule's floor lights */
.hero-glow {
  position: absolute; left: 0; right: 0; bottom: -6%; height: 42%;
  background: radial-gradient(60% 90% at 50% 100%, rgba(42, 232, 212, .28), rgba(42, 232, 212, .06) 55%, transparent 75%);
  mix-blend-mode: screen; pointer-events: none;
  animation: glowPulse 4.6s ease-in-out 2.4s infinite alternate;
  opacity: 0;
}
@keyframes glowPulse {
  from { opacity: .45; transform: scaleY(.96); }
  to   { opacity: 1;  transform: scaleY(1.06); }
}
/* horizontal light sweep along the neon floor */
.hero-sweep {
  position: absolute; left: -30%; bottom: 6%; width: 26%; height: 26%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(140, 255, 240, .16), transparent 70%);
  mix-blend-mode: screen; pointer-events: none;
  animation: sweep 7s ease-in-out 3s infinite;
}
@keyframes sweep {
  0%   { transform: translateX(0); opacity: 0; }
  12%  { opacity: 1; }
  55%  { opacity: .9; }
  100% { transform: translateX(560%); opacity: 0; }
}

.hero-foot {
  position: absolute; left: 0; right: 0; bottom: clamp(4.2rem, 8vh, 6.5rem);
  display: flex; justify-content: center; gap: 1.1rem; flex-wrap: wrap;
  z-index: 3; opacity: 0;
  animation: navIn 1.4s ease 3.4s forwards;
}
.scroll-cue {
  position: absolute; left: 50%; bottom: 1.2rem; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 14px; z-index: 3; opacity: 0;
  animation: navIn 1.4s ease 4s forwards;
}
.scroll-cue span {
  position: absolute; left: 50%; top: 7px; width: 3px; height: 8px;
  margin-left: -1.5px; border-radius: 2px; background: var(--cyan);
  animation: cueDrop 1.8s ease-in-out infinite;
}
@keyframes cueDrop {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(16px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ==========================================================
   PAGE VEINS — die Neon-Bahnen laufen durch die ganze Seite
   ========================================================== */
.page-veins {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none; overflow: hidden;
}
.vein { position: absolute; top: 0; bottom: 0; width: 2px; }
.vein.left  { left: clamp(14px, 2vw, 36px); }
.vein.right { right: clamp(14px, 2vw, 36px); }
.vein::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    transparent, rgba(47, 224, 216, .15) 4%,
    rgba(47, 224, 216, .15) 96%, transparent);
}
/* wandernde Lichtimpulse */
.vein-pulse {
  position: absolute; left: 0; width: 2px; height: 140px; border-radius: 2px;
  background: linear-gradient(180deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 14px rgba(47, 224, 216, .85);
  top: -12%;
  animation: veinRun 11s linear infinite;
}
.vein-pulse.p2 { animation-delay: 5.5s; }
.vein.right .vein-pulse { animation-duration: 13s; }
.vein.right .vein-pulse.p2 { animation-delay: 6.5s; }
@keyframes veinRun { from { top: -12%; } to { top: 112%; } }
/* Knoten & Abzweigungen auf festen Höhen */
.vein-node {
  position: absolute; left: -3px; width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 10px rgba(47, 224, 216, .9);
  animation: nodeBlink 3.8s ease-in-out infinite;
}
.vein-branch {
  position: absolute; height: 2px; width: clamp(26px, 3.5vw, 48px);
  background: linear-gradient(90deg, rgba(47, 224, 216, .4), transparent);
}
.vein.left  .vein-branch { left: 2px; }
.vein.right .vein-branch { right: 2px; transform: scaleX(-1); }
.vein .n1 { top: 16%; } .vein .b1 { top: 16%; margin-top: 3px; }
.vein .n2 { top: 41%; animation-delay: 1.2s; } .vein .b2 { top: 41%; margin-top: 3px; }
.vein .n3 { top: 66%; animation-delay: 2.1s; } .vein .b3 { top: 66%; margin-top: 3px; }
.vein .n4 { top: 88%; animation-delay: .6s; } .vein .b4 { top: 88%; margin-top: 3px; }

@media (max-width: 900px) { .page-veins { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .vein-pulse { animation: none; opacity: 0; }
  .vein-node { animation: none; }
}

/* ==========================================================
   CIRCUIT CONNECTOR — the blue lights flow out of the hero
   ========================================================== */
.circuit {
  position: relative; z-index: 1; height: 240px;
  margin-top: -1px;
  background: linear-gradient(180deg, #020409, var(--bg) 85%);
}
.circuit svg { width: 100%; height: 100%; display: block; }
.trace-base path {
  fill: none; stroke: rgba(42, 232, 212, .16); stroke-width: 2;
}
.trace-pulse path {
  fill: none; stroke: var(--cyan); stroke-width: 2.4; stroke-linecap: round;
  stroke-dasharray: 70 1400;
  animation: tracePulse 5.2s linear infinite;
}
/* pause all looping FX while their section is off-screen */
.fx-paused .trace-pulse path,
.fx-paused .trace-node circle { animation-play-state: paused; }
.hero.fx-paused .hero-glow,
.hero.fx-paused .hero-sweep { animation-play-state: paused; }
.trace-pulse-glow path { stroke-width: 9; opacity: .28; }
.trace-pulse .p2 { animation-delay: 1.2s; animation-duration: 6s; }
.trace-pulse .p3 { animation-delay: 2.4s; animation-duration: 4.6s; }
.trace-pulse .p4 { animation-delay: .6s;  animation-duration: 5.6s; }
.trace-pulse .p5 { animation-delay: 3.1s; animation-duration: 6.4s; }
@keyframes tracePulse {
  from { stroke-dashoffset: 1470; }
  to   { stroke-dashoffset: 0; }
}
.trace-node circle {
  fill: var(--cyan);
  animation: nodeBlink 3.4s ease-in-out infinite;
}
.trace-node circle:nth-child(2) { animation-delay: .9s; }
.trace-node circle:nth-child(3) { animation-delay: 1.7s; }
.trace-node circle:nth-child(4) { animation-delay: 2.3s; }
.trace-node circle:nth-child(5) { animation-delay: .4s; }
@keyframes nodeBlink { 0%, 100% { opacity: .25; } 50% { opacity: 1; } }

/* ==========================================================
   SECTIONS
   ========================================================== */
.section { position: relative; z-index: 1; padding: clamp(4.5rem, 9vw, 8rem) 0; }
.wrap { width: min(1160px, 92vw); margin: 0 auto; }

.eyebrow {
  font-family: var(--display); font-size: .72rem;
  letter-spacing: .42em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 1.3rem;
}
h1, h2 {
  font-family: var(--display); font-weight: 400;
  line-height: 1.28; letter-spacing: .04em;
  margin-bottom: 1.6rem;
}
h1 { font-size: clamp(1.9rem, 4.6vw, 3.3rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.6rem); }
h3 { font-family: var(--body); font-weight: 800; font-size: 1.28rem; margin-bottom: .8rem; letter-spacing: .01em; }
.grad-gold {
  background: linear-gradient(115deg, var(--gold-2), var(--gold) 60%, #5c7f9f);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.grad-cyan {
  background: linear-gradient(115deg, #a4fff2, var(--cyan) 55%, #0e9d8d);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead { color: var(--muted); font-size: 1.08rem; max-width: 46rem; }
.lead strong { color: var(--gold-2); font-weight: 700; }
.lead em { color: var(--text); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 1s ease, transform 1s cubic-bezier(.16, 1, .3, 1); }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Stats ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; margin-top: 3.4rem;
  background: var(--line); border: 1px solid var(--line);
}
.stat { background: var(--bg2); padding: 1.9rem 1.5rem; }
.stat-num, .stat-suffix {
  font-family: var(--display); font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: #fff;
}
.stat-suffix { color: var(--cyan); }
.stat-label { display: block; margin-top: .55rem; font-size: .85rem; color: var(--muted); line-height: 1.5; }

/* ---------- Modell P911 ---------- */
.model { background: linear-gradient(180deg, var(--bg), var(--bg2) 50%, var(--bg)); }
.model-row {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
}
.model-row.flip .model-img { order: 2; }
.model-img {
  position: relative; overflow: hidden; border-radius: 6px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .55), 0 0 60px rgba(42, 232, 212, .07);
}
.model-img img { transition: transform 1.4s cubic-bezier(.16, 1, .3, 1); }
.model-img:hover img { transform: scale(1.05); }
.model-img figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.2rem 1.4rem .95rem;
  background: linear-gradient(transparent, rgba(2, 5, 10, .88));
  font-size: .86rem; color: var(--muted);
  display: flex; align-items: center; gap: .7rem;
}
.tag {
  font-family: var(--display); font-size: .72rem; color: var(--cyan);
  border: 1px solid var(--cyan-dim); padding: .18rem .55rem; border-radius: 3px;
  text-shadow: 0 0 12px rgba(42, 232, 212, .8);
}
.model-copy p { color: var(--muted); margin-bottom: 1.3rem; }
.feat-list { list-style: none; }
.feat-list li {
  position: relative; padding: .5rem 0 .5rem 1.9rem;
  color: var(--text); font-size: .98rem;
  border-bottom: 1px solid rgba(148, 168, 205, .08);
}
.feat-list li::before {
  content: ''; position: absolute; left: 0; top: 1.05rem;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(42, 232, 212, .9);
}

/* ---------- Einsatzbereiche ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 3rem; }
.card {
  position: relative; background: var(--panel);
  border: 1px solid var(--line); border-radius: 6px;
  padding: 2.2rem 1.8rem; overflow: hidden;
  transition: transform .45s ease, border-color .45s ease, box-shadow .45s ease;
}
.card::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0; transition: opacity .45s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(42, 232, 212, .35);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .5), 0 0 40px rgba(42, 232, 212, .08);
}
.card:hover::after { opacity: 1; }
.card-num {
  font-family: var(--display); font-size: .8rem; color: var(--gold);
  letter-spacing: .3em; margin-bottom: 1.2rem;
}
.card p { color: var(--muted); font-size: .95rem; }

/* ---------- Partner ---------- */
.partner { background: linear-gradient(180deg, var(--bg), #131c29 60%, var(--bg)); }
.partner-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem); align-items: center;
}
.partner-list { list-style: none; margin-top: 1.8rem; }
.partner-list li {
  padding: .85rem 0 .85rem 2rem; position: relative;
  color: var(--muted); border-bottom: 1px solid rgba(148, 168, 205, .08);
}
.partner-list strong { color: var(--gold-2); }
.partner-list li::before {
  content: ''; position: absolute; left: 0; top: 1.35rem;
  width: 12px; height: 2px; background: var(--gold);
}
.partner-panel { perspective: 900px; }
.panel-inner {
  background:
    radial-gradient(120% 140% at 20% 0%, rgba(42, 232, 212, .07), transparent 55%),
    radial-gradient(120% 140% at 90% 110%, rgba(138, 171, 200, .12), transparent 55%),
    var(--panel);
  border: 1px solid var(--line); border-radius: 8px;
  padding: clamp(2.4rem, 5vw, 4rem) 2rem;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: .9rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
  transform: rotateY(-6deg) rotateX(2deg);
  transition: transform .8s cubic-bezier(.16, 1, .3, 1);
}
.partner-panel:hover .panel-inner { transform: rotateY(0) rotateX(0); }
.panel-brand { font-family: var(--display); font-size: clamp(1.2rem, 2.4vw, 1.7rem); letter-spacing: .28em; color: #fff; }
.panel-brand em { font-style: normal; color: var(--brandgold); }
.panel-sub { font-family: var(--display); font-size: .68rem; letter-spacing: .5em; color: var(--gold-2); }
.panel-line { width: 72%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: .4rem 0; }
.panel-tag { font-family: var(--display); font-size: .6rem; letter-spacing: .42em; color: var(--muted); }
.panel-badges { display: flex; gap: .6rem; margin-top: 1.6rem; flex-wrap: wrap; justify-content: center; }
.panel-badges span {
  font-size: .7rem; font-weight: 700; letter-spacing: .16em; color: var(--cyan);
  border: 1px solid var(--cyan-dim); border-radius: 3px; padding: .3rem .7rem;
}

/* ---------- Prozess ---------- */
.steps {
  list-style: none; counter-reset: step;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem;
  margin-top: 3rem;
}
.step {
  position: relative; background: var(--panel);
  border: 1px solid var(--line); border-radius: 6px;
  padding: 2rem 1.6rem;
}
.step::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent 70%);
  opacity: .7;
}
.step-num { font-family: var(--display); font-size: .78rem; letter-spacing: .3em; color: var(--gold); display: block; margin-bottom: 1.1rem; }
.step h3 { font-size: 1.06rem; }
.step p { color: var(--muted); font-size: .9rem; }

/* ---------- Ingenieurskunst (dritter P911-Block) ---------- */
.ing-liste li { padding: .8rem 0 .8rem 1.9rem; }
.ing-liste li strong { display: block; color: var(--text); margin-bottom: .2rem; }
.ing-liste li span { color: var(--muted); font-size: .93rem; }
.ing-liste li::before { top: 1.35rem; }

/* ---------- Produktionsprozess ---------- */
.produktion { background: linear-gradient(180deg, var(--bg), var(--bg2) 55%, var(--bg)); }
.pk-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 3rem; }
.pk-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 6px;
  overflow: hidden; text-align: center;
  transition: transform .45s ease, border-color .45s ease, box-shadow .45s ease;
}
.pk-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 224, 216, .35);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .5), 0 0 40px rgba(47, 224, 216, .08);
}
.pk-card figure { overflow: hidden; aspect-ratio: 4 / 3; }
.pk-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(.16, 1, .3, 1);
}
.pk-card:hover img { transform: scale(1.06); }
.pk-body { padding: 1.4rem 1.5rem 1.7rem; }
.pk-body h3 { margin-bottom: .6rem; }
.pk-body p { color: var(--muted); font-size: .94rem; }
@media (max-width: 980px) { .pk-cards { grid-template-columns: 1fr; } }

/* ---------- Zertifizierungen ---------- */
.certs { background: linear-gradient(180deg, var(--bg), #0d1420 60%, var(--bg)); }
.certs-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.certs-copy h2 { margin-bottom: 1rem; }
.certs-copy .lead { font-size: 1rem; }
.certs-logos {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: clamp(1.2rem, 2.5vw, 2.2rem);
}
.cert-logo {
  display: block;
  width: clamp(72px, 8.5vw, 116px); height: clamp(50px, 5.5vw, 78px);
  background: var(--muted); opacity: .8;
  -webkit-mask-repeat: no-repeat; -webkit-mask-position: center; -webkit-mask-size: contain;
  mask-repeat: no-repeat; mask-position: center; mask-size: contain;
  transition: background .35s ease, opacity .35s ease, filter .35s ease;
}
.cert-logo:hover {
  background: var(--cyan); opacity: 1;
  filter: drop-shadow(0 0 14px rgba(47, 224, 216, .55));
}
@media (max-width: 980px) {
  .certs-grid { grid-template-columns: 1fr; }
  .certs-logos { justify-content: flex-start; }
}

/* ---------- Kontakt ---------- */
.contact {
  background:
    radial-gradient(70% 120% at 50% 115%, rgba(47, 224, 216, .12), transparent 60%),
    linear-gradient(180deg, var(--bg), #131c29);
}
.contact-inner { text-align: center; display: flex; flex-direction: column; align-items: center; }
.contact-actions { display: flex; gap: 1.1rem; margin-top: 2.4rem; flex-wrap: wrap; justify-content: center; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 3rem 0 2rem; position: relative; z-index: 1; background: #0c1119; }
.footer-grid {
  display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap;
  justify-content: space-between;
}
.footer-brand { display: flex; flex-direction: column; gap: .3rem; }
.footer-brand .nav-word { font-size: .92rem; }
.footer-sub { font-size: .78rem; color: var(--muted); letter-spacing: .1em; }
.footer-links, .footer-legal { display: flex; gap: 1.6rem; }
.footer-links a, .footer-legal a { font-size: .84rem; color: var(--muted); transition: color .25s; }
.footer-links a:hover, .footer-legal a:hover { color: var(--cyan); }
.footer-copy { text-align: center; color: rgba(154, 165, 186, .55); font-size: .78rem; margin-top: 2.4rem; }

/* ==========================================================
   SUBPAGE / PRODUKTSEITEN (C-Serie)
   ========================================================== */
body.subpage .nav { animation-delay: .2s; }

.page-hero {
  position: relative; z-index: 1;
  padding: clamp(9rem, 20vh, 13rem) 0 clamp(3.5rem, 8vh, 6rem);
  background:
    radial-gradient(90% 130% at 50% -30%, rgba(47, 224, 216, .10), transparent 60%),
    radial-gradient(130% 100% at 50% 0%, #0b1322 0%, #060a12 45%, var(--bg) 100%);
  overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan-dim), transparent);
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero .lead { max-width: 52rem; }
.page-hero .lead + .lead { margin-top: .9rem; }
.modelle-slogan {
  font-family: var(--display); font-size: .88rem;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-2); margin: .2rem 0 1.3rem;
}
.breadcrumb {
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 2rem; display: block;
}
.breadcrumb a { color: var(--gold); transition: color .25s; }
.breadcrumb a:hover { color: var(--gold-2); }

.product { border-top: 1px solid var(--line); }
.product-head { display: flex; align-items: baseline; gap: 1.2rem; flex-wrap: wrap; margin-bottom: .6rem; }
.product-head .tag { font-size: .82rem; padding: .3rem .8rem; }
.product-sub { color: var(--muted); max-width: 46rem; margin-bottom: 2.4rem; }

.p-layout {
  display: grid; grid-template-columns: 1.25fr 1fr;
  gap: clamp(2rem, 4.5vw, 4rem); align-items: start;
}
.product.flip .p-layout .p-gallery { order: 2; }

/* gallery: one big view + clickable thumbs */
.p-gallery { position: sticky; top: 90px; }
.p-main {
  position: relative; overflow: hidden; border-radius: 6px;
  border: 1px solid var(--line); aspect-ratio: 4 / 3.2; background: #0a0f16;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5), 0 0 50px rgba(47, 224, 216, .05);
}
.p-main img { width: 100%; height: 100%; object-fit: cover; transition: opacity .35s ease; }
.p-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: .6rem; margin-top: .6rem; }
.p-thumbs button {
  padding: 0; border: 1px solid var(--line); border-radius: 4px;
  background: none; cursor: pointer; overflow: hidden; aspect-ratio: 1;
  opacity: .55; transition: opacity .3s ease, border-color .3s ease, transform .3s ease;
}
.p-thumbs img { width: 100%; height: 100%; object-fit: cover; display: block; }
.p-thumbs button:hover { opacity: .9; transform: translateY(-2px); }
.p-thumbs button.active { opacity: 1; border-color: var(--cyan); box-shadow: 0 0 14px rgba(47, 224, 216, .25); }

.spec-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  margin: 1.8rem 0;
}
.spec {
  background: var(--bg2); padding: 1.05rem 1.2rem;
}
.spec dt {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .3rem;
}
.spec dd { font-family: var(--display); font-size: 1.02rem; color: #fff; }

.p-copy h3 { margin-top: 2rem; }
.p-copy > p { color: var(--muted); }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.chips span {
  font-size: .8rem; font-weight: 600; color: var(--gold-2);
  border: 1px solid rgba(138, 171, 200, .35); border-radius: 999px;
  padding: .34rem .85rem; background: rgba(138, 171, 200, .07);
}
.p-cta { margin-top: 2.4rem; display: flex; gap: 1rem; flex-wrap: wrap; }

.model-link { margin-top: clamp(2.5rem, 6vw, 4rem); text-align: center; }
.model-link .btn { margin: 0 .45rem .7rem; }

/* Kontakt-Seite: Klick-Konfigurator */
.k-layout {
  display: grid; grid-template-columns: 1.65fr 1fr;
  gap: clamp(1.8rem, 4vw, 3.5rem); align-items: start;
}
.k-step {
  background: var(--panel); border: 1px solid var(--line); border-radius: 6px;
  padding: clamp(1.3rem, 3vw, 1.9rem); margin-bottom: 1.1rem;
}
.k-step h3 {
  display: flex; align-items: center; gap: .8rem;
  font-size: 1.04rem; margin-bottom: 1.15rem;
}
.k-step h3 small { font-size: .78rem; font-weight: 500; color: var(--muted); }
.k-num {
  font-family: var(--display); font-size: .74rem; color: var(--gold);
  border: 1px solid rgba(138, 171, 200, .45); border-radius: 50%;
  width: 30px; height: 30px; display: grid; place-items: center; flex: none;
}
.k-options { display: flex; flex-wrap: wrap; gap: .55rem; }
.k-options button {
  font-family: var(--body); font-size: .87rem; font-weight: 600;
  color: var(--muted); background: var(--bg2);
  border: 1px solid var(--line); border-radius: 4px;
  padding: .68rem 1.1rem; cursor: pointer;
  transition: color .22s, border-color .22s, background .22s, box-shadow .22s, transform .22s;
}
.k-options button:hover { border-color: var(--cyan-dim); color: var(--text); transform: translateY(-1px); }
.k-options button.selected {
  color: #06231f;
  background: linear-gradient(120deg, #86f2e8, var(--cyan));
  border-color: var(--cyan);
  box-shadow: 0 0 18px rgba(47, 224, 216, .35);
}
.k-group { margin-bottom: .95rem; }
.k-group:last-child { margin-bottom: 0; }
.k-group-label {
  display: block; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-2); font-weight: 700; margin-bottom: .45rem;
}
.k-field { display: flex; flex-direction: column; gap: .4rem; margin-top: 1rem; }
.k-field label { font-size: .8rem; letter-spacing: .06em; color: var(--muted); font-weight: 600; }
.k-input {
  background: var(--bg2); border: 1px solid var(--line); border-radius: 4px;
  color: var(--text); font-family: var(--body); font-size: .95rem;
  padding: .75rem .9rem; outline: none; width: 100%;
  transition: border-color .25s;
}
.k-input:focus { border-color: var(--cyan); }
.k-input.invalid { border-color: #e0655f; box-shadow: 0 0 12px rgba(224, 101, 95, .25); }
.k-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.k-grid2 .k-field { margin-top: 0; }
.k-error { display: none; color: #ff9d97; font-size: .86rem; margin-top: 1rem; }
.k-error.show { display: block; }
.k-status { min-height: 1.3em; color: var(--muted); font-size: .9rem; margin-top: .9rem; }
.k-status.ok { color: #7ff0c9; font-weight: 600; }
.k-note { font-size: .8rem; color: var(--muted); margin-top: .9rem; line-height: 1.6; }
.k-form .p-cta { margin-top: 1.4rem; }

.k-summary {
  position: sticky; top: 96px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 6px;
  padding: 1.5rem 1.6rem;
}
.k-summary h3 { font-family: var(--display); font-size: .95rem; font-weight: 400; letter-spacing: .12em; margin-bottom: 1.1rem; }
.k-summary dl div {
  padding: .6rem 0; border-bottom: 1px solid rgba(160, 180, 205, .1);
}
.k-summary dt { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: .2rem; }
.k-summary dd { font-size: .92rem; color: var(--text); }
.k-summary dd.empty { color: rgba(159, 173, 192, .45); }
.k-copy { width: 100%; margin-top: 1.2rem; text-align: center; padding: .7rem 1rem; font-size: .78rem; }

@media (max-width: 980px) {
  .k-layout { grid-template-columns: 1fr; }
  .k-summary { position: static; order: 2; }
  .k-grid2 { grid-template-columns: 1fr; }
}

/* FAQ-Seite */
.faq-filter { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.2rem; }
.faq-filter button {
  font: inherit; font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; cursor: pointer;
  color: var(--muted); background: transparent;
  border: 1px solid var(--line); border-radius: 999px; padding: .45rem 1.05rem;
  transition: color .25s, border-color .25s, background .25s;
}
.faq-filter button:hover { color: var(--cyan); border-color: var(--cyan-dim); }
.faq-filter button.active {
  color: #04231f; border-color: var(--cyan);
  background: linear-gradient(120deg, #93f5eb, var(--cyan));
  box-shadow: 0 0 16px rgba(47, 224, 216, .3);
}
.faq-list { display: flex; flex-direction: column; gap: .9rem; max-width: 800px; }
details.faq-item {
  background: var(--panel); border: 1px solid var(--line); border-radius: 8px;
  overflow: hidden; transition: border-color .3s ease, box-shadow .3s ease;
}
details.faq-item[open] {
  border-color: var(--cyan-dim);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .35), 0 0 24px rgba(47, 224, 216, .06);
}
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.05rem 1.3rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover .faq-frage { color: var(--cyan); }
.faq-q { flex: 1; }
.faq-kat {
  display: block; font-size: .68rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: .3rem;
}
.faq-frage { font-weight: 700; font-size: 1.02rem; color: var(--text); transition: color .25s; }
.faq-chev {
  flex-shrink: 0; width: 9px; height: 9px; margin-top: 1.15rem;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
  transform: rotate(45deg); transition: transform .3s ease;
}
details[open] .faq-chev { transform: rotate(225deg); margin-top: 1.4rem; }
.faq-antwort { padding: 0 1.3rem 1.25rem; color: var(--muted); max-width: 44rem; }
.faq-item.hidden { display: none; }
.faq-cta {
  margin-top: 3rem; max-width: 800px; text-align: center;
  background:
    radial-gradient(80% 140% at 50% 120%, rgba(47, 224, 216, .08), transparent 60%),
    var(--panel);
  border: 1px solid var(--line); border-radius: 8px;
  padding: clamp(1.8rem, 4vw, 2.8rem);
}
.faq-cta .lead { margin: .6rem auto 0; }

/* Grand-Opening-Ankündigung (Projekt-Seite) */
.opening-sec { padding-top: 0; }
.opening {
  position: relative; overflow: hidden;
  background:
    radial-gradient(90% 140% at 15% -20%, rgba(47, 224, 216, .1), transparent 55%),
    radial-gradient(90% 140% at 95% 120%, rgba(200, 154, 98, .1), transparent 55%),
    var(--panel);
  border: 1px solid rgba(47, 224, 216, .3); border-radius: 8px;
  padding: clamp(1.8rem, 4.5vw, 3rem);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45), 0 0 50px rgba(47, 224, 216, .08);
}
.opening::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--brandgold), transparent);
}
.opening-datum {
  font-family: var(--display); font-size: clamp(1.4rem, 3.4vw, 2.2rem);
  background: linear-gradient(115deg, var(--gold-2), var(--brandgold) 60%, #9d7340);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: .4rem;
}
.opening-slogan {
  font-family: var(--display); font-size: .85rem;
  letter-spacing: .34em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 1.4rem;
}
.opening-countdown { font-weight: 800; color: var(--text); letter-spacing: .04em; margin-bottom: .8rem; }
.countdown { display: flex; gap: .7rem; flex-wrap: wrap; margin: .4rem 0 1.4rem; }
.cd-box {
  min-width: clamp(74px, 10vw, 96px);
  background: var(--bg2); border: 1px solid var(--line); border-radius: 6px;
  padding: .8rem .6rem .65rem; text-align: center;
  box-shadow: inset 0 0 20px rgba(47, 224, 216, .04);
}
.cd-num {
  display: block; font-family: var(--display);
  font-size: clamp(1.5rem, 3.4vw, 2.1rem); color: var(--cyan);
  text-shadow: 0 0 18px rgba(47, 224, 216, .45);
  font-variant-numeric: tabular-nums;
}
.cd-label {
  display: block; margin-top: .3rem;
  font-size: .66rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted);
}
.countdown.vorbei .cd-num { color: var(--brandgold); text-shadow: 0 0 18px rgba(200, 154, 98, .5); }
.opening-text { color: var(--muted); max-width: 52rem; margin-bottom: .9rem; }
.opening-hinweis { color: var(--muted); max-width: 52rem; }
.opening-hinweis a {
  color: var(--brandgold); font-weight: 700;
  text-decoration: underline; text-underline-offset: 3px;
  transition: color .25s;
}
.opening-hinweis a:hover { color: var(--cyan); }

/* Über-uns-Seite */
.about-grid {
  display: grid; grid-template-columns: 1.55fr 1fr;
  gap: clamp(2.2rem, 5vw, 4.5rem); align-items: start;
}
.prose p { color: var(--muted); font-size: 1.02rem; margin-bottom: 1.35rem; }
.prose p strong { color: var(--text); }
.prose .abschnitt-titel {
  font-family: var(--display); font-weight: 400; font-size: 1.2rem;
  color: #fff; letter-spacing: .05em;
  margin: 2.6rem 0 1.1rem; padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.prose .abschnitt-titel:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose a {
  color: var(--brandgold); font-weight: 600;
  text-decoration: underline; text-underline-offset: 3px;
  transition: color .25s;
}
.prose a:hover { color: var(--cyan); }
.prose .quote {
  border-left: 2px solid var(--gold);
  padding: .4rem 0 .4rem 1.4rem; margin: 2rem 0;
  font-size: 1.18rem; line-height: 1.6; color: var(--text); font-style: italic;
}
.prose .signature {
  font-family: var(--display); font-size: .98rem; line-height: 1.9;
  color: var(--gold-2); margin-top: 2.4rem;
}
.about-aside { position: sticky; top: 96px; display: flex; flex-direction: column; gap: .9rem; }
.fact {
  background: var(--panel); border: 1px solid var(--line); border-radius: 6px;
  padding: 1.15rem 1.3rem;
}
.fact-num { display: block; font-family: var(--display); font-size: 1.15rem; color: #fff; margin-bottom: .3rem; }
.fact-label { font-size: .86rem; color: var(--muted); line-height: 1.5; }
.about-brandcard { margin-top: .4rem; transform: none; }
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-aside { position: static; }
}

/* series switcher chips (on series pages) */
.series-nav { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2.2rem; }
.series-nav a {
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line); border-radius: 999px;
  padding: .42rem 1rem; transition: color .25s, border-color .25s, background .25s;
}
.series-nav a:hover { color: var(--cyan); border-color: var(--cyan-dim); }
.series-nav a.current { color: var(--cyan); border-color: var(--cyan); background: rgba(47, 224, 216, .08); }

/* model overview page */
.flagship {
  position: relative; border: 1px solid var(--line); border-radius: 6px;
  overflow: hidden; margin-top: 3rem; background: var(--panel);
}
.flagship > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .32; }
.flagship-inner { position: relative; padding: clamp(2rem, 5vw, 3.5rem); max-width: 36rem; }
.flagship-inner h3 { font-family: var(--display); font-size: 1.4rem; font-weight: 400; }
.flagship-inner p { color: var(--muted); margin: .8rem 0 1.6rem; }

.series-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 3rem; }
.series-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--panel); border: 1px solid var(--line); border-radius: 6px;
  transition: transform .45s ease, border-color .45s ease, box-shadow .45s ease;
}
.series-card:hover {
  transform: translateY(-6px); border-color: rgba(47, 224, 216, .35);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .5), 0 0 40px rgba(47, 224, 216, .08);
}
.series-card > img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.sc-body { display: flex; flex-direction: column; gap: .55rem; padding: 1.4rem 1.5rem 1.6rem; flex: 1; }
.sc-letter { font-family: var(--display); font-size: .74rem; letter-spacing: .32em; color: var(--gold); }
.sc-body h3 { font-size: 1.14rem; margin: 0; }
.sc-tagline { color: var(--muted); font-size: .9rem; }
.sc-models { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .3rem; }
.sc-models span {
  font-size: .72rem; font-weight: 700; color: var(--cyan);
  border: 1px solid var(--cyan-dim); border-radius: 3px; padding: .16rem .5rem;
}
.sc-link { margin-top: auto; padding-top: 1rem; font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-2); }
.series-card:hover .sc-link { color: var(--cyan); }

@media (max-width: 980px) { .series-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .series-cards { grid-template-columns: 1fr; } }

@media (max-width: 980px) {
  .p-layout { grid-template-columns: 1fr; }
  .product.flip .p-layout .p-gallery { order: 0; }
  .p-gallery { position: static; }
}

/* ==========================================================
   COOKIE-HINWEIS
   ========================================================== */
.cookie-banner {
  position: fixed; left: 50%; bottom: 1.2rem; transform: translateX(-50%);
  z-index: 70; width: min(680px, calc(100vw - 2rem));
  background: rgba(10, 16, 26, .97);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(47, 224, 216, .3); border-radius: 8px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .6), 0 0 40px rgba(47, 224, 216, .08);
  animation: cookieIn .6s cubic-bezier(.16, 1, .3, 1);
}
@keyframes cookieIn { from { opacity: 0; transform: translateX(-50%) translateY(24px); } }
.cookie-text { font-size: .88rem; color: var(--muted); line-height: 1.6; margin-bottom: .9rem; }
.cookie-text a { color: var(--brandgold); text-decoration: underline; text-underline-offset: 3px; }
.cookie-text a:hover { color: var(--cyan); }
.cookie-actions { display: flex; gap: .7rem; flex-wrap: wrap; }
.cookie-actions .btn { padding: .6rem 1.3rem; font-size: .8rem; cursor: pointer; border: 0; }
.cookie-actions .btn-ghost { border: 1px solid rgba(47, 224, 216, .5); }
@media (max-width: 600px) {
  .cookie-banner { bottom: 0; width: 100vw; border-radius: 8px 8px 0 0; }
  .cookie-actions .btn { flex: 1 1 100%; text-align: center; }
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: block; margin-left: auto; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .model-row, .partner-grid { grid-template-columns: 1fr; }
  .model-row.flip .model-img { order: 0; }
  .cards, .steps { grid-template-columns: 1fr 1fr; }
}

/* Handy: Hero zeigt das volle Video in Seitenbreite, Buttons darunter */
@media (max-width: 700px) {
  .hero { height: auto; min-height: 0; padding-top: 62px; }
  .hero-backdrop { display: none; }
  .hero-media { position: relative; inset: auto; display: block; }
  .hero-art {
    width: 100%; height: auto; aspect-ratio: 4 / 3; display: block;
    -webkit-mask-image: none; mask-image: none;
  }
  .hero-fallback { display: none; }
  .hero-glow, .hero-sweep, .scroll-cue { display: none; }
  .hero-foot { position: static; padding: 1.2rem 4vw 1.5rem; }
  .hero-foot .btn { flex: 1 1 auto; text-align: center; }
}

@media (max-width: 600px) {
  .cards, .steps, .stats { grid-template-columns: 1fr; }
  .contact-actions { width: 100%; }
  .contact-actions .btn { flex: 1 1 100%; text-align: center; }
  .footer-grid { justify-content: center; text-align: center; }
  .footer-brand { align-items: center; }
}
@media (max-width: 520px) {
  .spec-grid { grid-template-columns: 1fr; }
}

/* respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .door-intro { display: none; }
  .hero-art, .stars, .hero-glow, .hero-sweep,
  .trace-pulse path, .trace-node circle { animation: none !important; }
  .hero-art { opacity: 1; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .nav, .hero-foot, .scroll-cue { animation-delay: 0s; animation-duration: .4s; }
}
