/* ============================================
   init-one.com — Style
   ============================================ */

:root {
  --c-bg:       #0a0a0e;
  --c-bg2:      #14101c;
  --c-bg3:      #1a1424;
  --c-surface:  #1d1828;
  --c-border:   #2a2238;
  --c-text:     #d8d2e0;
  --c-text2:    #a59cb4;
  --c-heading:  #ffffff;
  --c-accent:   #e6007e;
  --c-accent2:  #ff3aa0;
  --c-accent-bg: rgba(230,0,126,0.10);

  --font:       'DM Sans', system-ui, -apple-system, sans-serif;
  --font-mono:  'JetBrains Mono', ui-monospace, monospace;

  --w-max:      1160px;
  --w-narrow:   720px;
  --radius:     8px;
  --radius-lg:  16px;

  --nav-h:      130px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--c-accent2); text-decoration: none; transition: color .2s; }
a:hover { color: #ffb3dc; }
ul { list-style: none; }

/* LAYOUT */
.container { max-width: var(--w-max); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section--dark { background: rgba(20,16,28,0.72); }

.section__header { text-align: center; margin-bottom: 72px; }
.section__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffe1f0;
  background: rgba(230,0,126,0.18);
  border: 1.5px solid rgba(255,90,180,0.65);
  padding: 14px 32px;
  border-radius: 999px;
  margin-bottom: 28px;
  box-shadow: 0 0 32px rgba(230,0,126,0.28);
  text-shadow: 0 0 18px rgba(255,180,220,0.6);
}
.section__title {
  font-size: clamp(36px, 5.2vw, 56px);
  font-weight: 700;
  color: var(--c-heading);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section__sub {
  max-width: var(--w-narrow);
  margin: 16px auto 0;
  color: var(--c-text2);
  font-size: 17px;
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(10,10,14,0.55);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease;
}
.nav.nav--scrolled {
  background: rgba(10,10,14,0.92);
  border-bottom-color: var(--c-border);
}
.nav__inner {
  position: relative;
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__right {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav__logo-img { height: 110px; width: auto; display: block; transition: opacity .2s, transform .25s ease; }
.nav__logo:hover .nav__logo-img { opacity: 0.9; transform: scale(1.03); }
.nav__logo-mark { color: var(--c-heading); }
.nav__logo-sep { color: var(--c-accent); }
.nav__logo-mark2 { color: var(--c-accent2); }
.footer__logo-img { height: 44px; width: auto; display: block; margin-bottom: 8px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  position: relative;
  padding: 6px 2px;
}
.nav__links a.is-active {
  color: var(--c-accent2);
}
.nav__links a.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--c-accent);
  box-shadow: 0 0 12px var(--c-accent), 0 0 24px rgba(230,0,126,0.6);
  border-radius: 2px;
}
.nav__links a {
  color: var(--c-text);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color .2s;
}
.nav__links a:hover { color: var(--c-accent2); }
.nav__cta {
  background: var(--c-accent);
  color: #fff !important;
  padding: 13px 32px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 600 !important;
}
.nav__cta:hover { background: #b8006a; color: #fff !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  width: 24px; height: 2px;
  background: var(--c-heading);
  border-radius: 2px;
  transition: .3s;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
  font-family: var(--font);
}
.btn--primary { background: var(--c-accent); color: #fff; border-radius: 999px; }
.btn--primary:hover { background: #b8006a; color: #fff; transform: translateY(-1px); box-shadow: 0 0 24px rgba(230,0,126,0.45); }
.btn--ghost { background: transparent; color: var(--c-text); border: 1px solid var(--c-border); }
.btn--ghost:hover { border-color: var(--c-accent2); color: var(--c-heading); }
.btn--full { width: 100%; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) 24px 100px;
  overflow: hidden;
  perspective: 900px;
  perspective-origin: 50% 80%;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 60% at 95% 50%, rgba(230,0,126,0.35), transparent 70%),
    radial-gradient(ellipse 50% 55% at 80% 85%, rgba(120,30,160,0.30), transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 20%, rgba(75,20,110,0.20), transparent 70%);
  pointer-events: none;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0.9;
  pointer-events: none;
}

/* Driftende Farbnebel */
.hero__blobs {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  mix-blend-mode: screen;
  will-change: transform;
}
.hero__blob--1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(230,0,126,0.55), transparent 70%);
  top: -10%; left: -10%;
  animation: drift1 22s ease-in-out infinite;
}
.hero__blob--2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(120,30,160,0.45), transparent 70%);
  top: 30%; right: -10%;
  animation: drift2 28s ease-in-out infinite;
}
.hero__blob--3 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,90,180,0.4), transparent 70%);
  bottom: -10%; left: 35%;
  animation: drift3 25s ease-in-out infinite;
}
@keyframes drift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40vw, 20vh) scale(1.15); }
  66%      { transform: translate(20vw, 50vh) scale(0.9); }
}
@keyframes drift2 {
  0%, 100% { transform: translate(0, 0) scale(1.05); }
  50%      { transform: translate(-50vw, -20vh) scale(0.9); }
}
@keyframes drift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%      { transform: translate(-30vw, -40vh) scale(1.2); }
  70%      { transform: translate(25vw, -15vh) scale(0.95); }
}

/* Tron-Grid Boden */
.hero__grid {
  position: absolute;
  bottom: 0; left: -10%; right: -10%;
  height: 55%;
  z-index: 1;
  background-image:
    linear-gradient(to right, rgba(230,0,126,0.30) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(230,0,126,0.30) 1px, transparent 1px);
  background-size: 70px 70px;
  transform: perspective(500px) rotateX(62deg);
  transform-origin: bottom center;
  mask-image: linear-gradient(to top, rgba(0,0,0,1) 10%, transparent 95%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 10%, transparent 95%);
  animation: gridScroll 14s linear infinite;
  pointer-events: none;
}
@keyframes gridScroll {
  from { background-position: 0 0; }
  to   { background-position: 0 70px; }
}

/* Periodische Scan-Linie */
.hero__scan {
  position: absolute;
  left: 0; right: 0;
  height: 280px;
  z-index: 3;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255,90,180,0.08) 45%,
    rgba(255,140,210,0.18) 50%,
    rgba(255,90,180,0.08) 55%,
    transparent 100%
  );
  pointer-events: none;
  animation: scanMove 9s ease-in-out infinite;
  mix-blend-mode: screen;
}
@keyframes scanMove {
  0%   { top: -280px; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
.hero__content {
  position: relative;
  z-index: 10;
  max-width: 980px;
  transform-origin: 50% 100%;
  transform: rotateX(35deg) translateY(38vh) translateZ(-120px);
  opacity: 0;
  filter: blur(4px);
  transition:
    transform 1.9s cubic-bezier(.16, 0.84, 0.24, 1),
    opacity 1.1s ease,
    filter 1.5s ease;
  will-change: transform, opacity, filter;
}
.hero.is-loaded .hero__content {
  transform: rotateX(0) translateY(0) translateZ(0);
  opacity: 1;
  filter: blur(0);
}

.hero__brand {
  font-size: clamp(56px, 11vw, 140px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--c-heading);
  text-transform: lowercase;
  margin-bottom: 20px;
  text-shadow: 0 0 40px rgba(230,0,126,0.25);
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.18em;
}
.hero__brand-main { display: inline-block; }
.hero__brand-gmbh {
  font-family: var(--font-mono);
  font-size: 0.28em;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
  align-self: flex-start;
  margin-top: 0.4em;
}

.hero__claim {
  font-size: clamp(24px, 3.4vw, 44px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin-bottom: 24px;
}
.hero__claim em {
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(90deg, #ff3aa0, #e6007e 50%, #7a1ea0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
  color: var(--c-text2);
}
.hero__pillars {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: 44px;
}
.hero__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 12px var(--c-accent);
}
.hero__actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1.5px solid var(--c-text2);
  border-radius: 14px;
  z-index: 2;
}
.hero__scroll span {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 8px;
  background: var(--c-accent);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { opacity: 1; transform: translate(-50%, 0); }
  60%  { opacity: 1; transform: translate(-50%, 14px); }
  100% { opacity: 0; transform: translate(-50%, 16px); }
}

/* ─── CARDS (Leistungen) ─── */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  overflow: visible;
}
.leistungen .container { overflow: visible; }
.leistungen { overflow: visible; }

/* Wrap reserviert nur die Standard-Slot-Höhe, damit die Card als Overlay wachsen kann */
.card-wrap {
  position: relative;
  min-height: 280px;
}

.card {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  flex-direction: column;
  padding: 36px 28px 32px;
  cursor: pointer;
  z-index: 1;
  transition: z-index 0s;
}
/* Visueller Rahmen — bottom-anchored, dockt nach oben an */
.card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 280px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  transition:
    height 1.9s cubic-bezier(0.05, 0.95, 0.12, 1),
    border-color .4s ease,
    box-shadow .4s ease;
  z-index: 0;
}
.card > * { position: relative; z-index: 1; }

.card:hover { z-index: 50; }
.card:hover::before {
  height: 100%;
  border-color: var(--c-accent);
  box-shadow: 0 25px 80px -15px rgba(230,0,126,0.55), 0 0 0 1px rgba(230,0,126,0.2);
}

.card__icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-accent-bg);
  border-radius: 14px;
  color: var(--c-accent2);
  margin-bottom: 22px;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), background .3s ease;
}
.card:hover .card__icon {
  transform: scale(1.1) rotate(-4deg);
  background: rgba(230,0,126,0.18);
}
.card__title {
  font-size: 22px;
  font-weight: 600;
  color: var(--c-heading);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.card__subline {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--c-text2);
  letter-spacing: 0.04em;
}
.card__plus {
  position: absolute;
  top: 22px; right: 22px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--c-border);
  color: var(--c-accent);
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  transition: all .35s cubic-bezier(.34,1.56,.64,1);
}
.card:hover .card__plus {
  background: var(--c-accent);
  color: #fff;
  border-color: var(--c-accent);
  transform: rotate(135deg);
  box-shadow: 0 0 20px rgba(230,0,126,0.6);
}

/* ─── BODY: Erscheint sofort in finaler Grösse, unter Icon/Titel/Subline ─── */
.card__body {
  display: none;
  margin-top: 22px; /* Abstand zwischen Subline und Body */
}
.card:hover .card__body { display: block; }
.card__body-inner { /* full size, full opacity, kein Transition */ }

.card__text {
  font-size: 14.5px;
  color: var(--c-text);
  line-height: 1.6;
  margin-bottom: 14px;
}
.card__list {
  display: flex; flex-direction: column; gap: 7px;
}
.card__list li {
  font-size: 13.5px;
  color: var(--c-text);
  padding-left: 18px;
  position: relative;
}
.card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.65em;
  width: 10px; height: 1.5px;
  background: var(--c-accent);
  border-radius: 1px;
}

/* Andere Cards beim Hover leicht dimmen */
.cards:has(.card:hover) .card:not(:hover) { opacity: 0.45; }
.cards .card { transition: border-color .4s ease, transform .4s ease, box-shadow .4s ease, opacity .4s ease; }

/* Mobile / Touch: Body immer sichtbar, Rahmen umschliesst vollständig */
@media (hover: none), (max-width: 900px) {
  .card-wrap { position: static; min-height: 0; }
  .card { position: relative; bottom: auto; display: block; }
  .card::before { height: 100%; transition: none; }
  .card__body { display: block; margin-top: 18px; }
  .card__plus { display: none; }
  .cards:has(.card:hover) .card:not(:hover) { opacity: 1; }
}

/* ─── HIGHLIGHTS ─── */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.highlight {
  text-align: center;
  padding: 40px 24px;
}
.highlight__icon {
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-accent-bg);
  border-radius: 50%;
  color: var(--c-accent2);
  margin: 0 auto 24px;
}
.highlight h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--c-heading);
  margin-bottom: 12px;
}
.highlight p {
  font-size: 15px;
  color: var(--c-text2);
  max-width: 340px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.testimonial {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.testimonial p {
  font-size: 15px;
  font-style: italic;
  color: var(--c-text);
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial cite {
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-accent2);
}

/* LOGOS */
.logos { text-align: center; }
.logos__label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text2);
  margin-bottom: 24px;
}
.logos__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.logos__item {
  padding: 10px 20px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text2);
}

/* ─── TEAM ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  text-align: center;
  padding: 40px 20px;
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  transition: border-color .3s;
}
.team-card:hover { border-color: var(--c-accent); }
.team-card__avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--c-accent-bg);
  color: var(--c-accent2);
  font-size: 28px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  border: 2px solid var(--c-border);
}
.team-card__name {
  font-size: 18px;
  font-weight: 600;
  color: var(--c-heading);
  margin-bottom: 4px;
}
.team-card__role {
  font-size: 14px;
  color: var(--c-text2);
}

/* ─── KONTAKT ─── */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.kontakt__text {
  font-size: 17px;
  color: var(--c-text2);
  margin-bottom: 36px;
  line-height: 1.7;
}
.kontakt__details { display: flex; flex-direction: column; gap: 20px; }
.kontakt__detail strong {
  display: block;
  font-size: 13px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-text2);
  margin-bottom: 4px;
}
.kontakt__detail span,
.kontakt__detail a {
  font-size: 15px;
  color: var(--c-heading);
  line-height: 1.5;
}

.kontakt__form {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text2);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  font-family: var(--font);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  color: var(--c-heading);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--c-accent);
}
.form-group textarea { resize: vertical; }

/* ─── FOOTER ─── */
.footer {
  background: var(--c-bg2);
  border-top: 1px solid var(--c-border);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer__tagline {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-text2);
  margin-top: 8px;
}
.footer__col h4 {
  font-size: 13px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-text2);
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  font-size: 14px;
  color: var(--c-text);
  margin-bottom: 8px;
}
.footer__col a:hover { color: var(--c-heading); }

.footer__bottom {
  border-top: 1px solid var(--c-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--c-text2);
}
.footer__partner a { color: var(--c-accent2); }

/* ─── PINK CURSOR-FOLLOWER ─── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
}
.cursor__dot, .cursor__ring {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}
.cursor__dot {
  width: 10px; height: 10px;
  background: #ff3aa0;
  box-shadow: 0 0 14px 3px #ff3aa0, 0 0 28px 8px rgba(230,0,126,0.5);
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}
.cursor__ring {
  width: 42px; height: 42px;
  border: 1.5px solid rgba(255,90,180,0.65);
  box-shadow: 0 0 20px rgba(230,0,126,0.4), inset 0 0 12px rgba(230,0,126,0.25);
  transform: translate(-50%, -50%);
  transition: width .3s ease, height .3s ease, border-color .3s ease, background .3s ease;
  mix-blend-mode: screen;
}
.cursor.is-hovering .cursor__ring {
  width: 64px; height: 64px;
  border-color: rgba(255,90,180,0.85);
  background: rgba(230,0,126,0.08);
}
@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
}

/* ─── PAGE TRANSITION: Pink Neon Band ─── */
.page-transition {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  overflow: hidden;
}
.page-transition__band {
  position: absolute;
  left: -10%; right: -10%;
  height: 140px;
  top: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255,90,180,0.4) 30%,
    rgba(230,0,126,0.95) 50%,
    rgba(255,90,180,0.4) 70%,
    transparent 100%
  );
  box-shadow:
    0 0 60px rgba(230,0,126,0.8),
    0 0 120px rgba(230,0,126,0.5);
  filter: blur(2px);
  transform: translateY(0);
}
/* Page-Load: Band kommt von unten und sweept nach oben weg */
body.is-entering .page-transition__band {
  animation: bandSweepIn 0.9s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}
/* Beim Verlassen: Band kommt von oben und füllt nach unten */
body.is-leaving .page-transition__band {
  animation: bandSweepOut 0.55s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}
@keyframes bandSweepIn {
  0%   { top: 100%; }
  100% { top: -200px; }
}
@keyframes bandSweepOut {
  0%   { top: -200px; }
  100% { top: 100%; }
}

/* ─── PAGE HEADER (Subpages) ─── */
.page-header {
  padding: calc(var(--nav-h) + 80px) 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(230,0,126,0.25), transparent 70%),
    radial-gradient(ellipse 40% 50% at 90% 100%, rgba(120,30,160,0.2), transparent 70%);
  z-index: -1;
}
.page-header__inner { max-width: 900px; margin: 0 auto; }
.page-header__title {
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--c-heading);
  margin: 16px 0 20px;
  text-shadow: 0 0 30px rgba(230,0,126,0.25);
}
.page-header__sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--c-text2);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease var(--reveal-delay, 0ms), transform .7s ease var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__content {
    opacity: 1; transform: none; filter: none; transition: none;
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .cards,
  .highlight-grid,
  .testimonials { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .kontakt-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .team-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: center; }
}

/* ─── MOBILE-PASS: kompakte Nav + Burger bis 900px ─── */
@media (max-width: 900px) {
  :root { --nav-h: 76px; }
  .nav__logo-img { height: 50px; }
  .nav__right { gap: 16px; }
  .nav__links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--c-bg);
    border-bottom: 1px solid var(--c-border);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 17px; }
  .nav__toggle { display: flex; }
  .nav__cta { padding: 10px 20px; font-size: 15px; text-align: center; }
  /* Performance: schwere Blur-Nebel auf Mobile aus */
  .hero__blobs { display: none; }
  .section { padding: 72px 0; }
}

/* ─── MOBILE-PASS: Feinschliff kleine Screens ─── */
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .section__header { margin-bottom: 44px; }
  .section__tag { font-size: 14px; padding: 10px 20px; letter-spacing: 0.14em; }
  .page-header { padding: calc(var(--nav-h) + 44px) 20px 40px; }
  .hero { padding: calc(var(--nav-h) + 28px) 20px 80px; }
  .hero__sub { font-size: 14px; }
  .hero__pillars { gap: 12px; font-size: 12px; }
  /* Kontakt-Tab: kompakt unten rechts statt mittig am Rand */
  .comm {
    top: auto;
    bottom: 16px;
    transform: none;
    align-items: flex-end;
  }
  .comm__tab {
    writing-mode: horizontal-tb;
    padding: 12px 18px;
    font-size: 12px;
    border-radius: 999px 0 0 999px;
  }
  .comm__panel { border-radius: var(--radius-lg) 0 0 0; }
  .comm__inner { max-height: 70vh; }
}

/* ============================================
   SPACE / COCKPIT LAYER
   ============================================ */

/* ─── Site-weites Sternenfeld (hinter allem) ─── */
.space-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
/* Inhalt über dem Sternenfeld */
.nav, .section, .footer, .page-header, .hero { position: relative; z-index: 1; }

/* ─── HUD-Rahmen ─── */
.hud {
  position: fixed;
  inset: 0;
  z-index: 8000;
  pointer-events: none;
  font-family: var(--font-mono);
}
.hud__corner {
  position: absolute;
  width: 34px; height: 34px;
  border: 1.5px solid rgba(255,90,180,0.55);
  filter: drop-shadow(0 0 6px rgba(230,0,126,0.5));
}
.hud__corner--tl { top: 14px; left: 14px; border-right: none; border-bottom: none; }
.hud__corner--tr { top: 14px; right: 14px; border-left: none; border-bottom: none; }
.hud__corner--bl { bottom: 14px; left: 14px; border-right: none; border-top: none; }
.hud__corner--br { bottom: 14px; right: 14px; border-left: none; border-top: none; }

.hud__bar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,180,220,0.55);
  white-space: nowrap;
}
.hud__bar--bottom { bottom: 18px; }
.hud__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--c-accent2);
  box-shadow: 0 0 10px var(--c-accent);
  animation: hudPulse 2.2s ease-in-out infinite;
}
@keyframes hudPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.25; }
}
.hud__value { color: rgba(255,220,240,0.8); }

/* ─── Decode/Scramble Cursor ─── */
.is-scrambling::after {
  content: '▌';
  color: var(--c-accent2);
  animation: hudPulse 0.6s steps(2) infinite;
}

/* ============================================
   HOME — Teaser, Warum, Logbuch
   ============================================ */

/* ─── Tease-Karten mit Targeting-Brackets ─── */
.teases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tease {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 28px 32px;
  background: rgba(29,24,40,0.82);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  color: var(--c-text);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
  overflow: hidden;
}
.tease::before, .tease::after {
  content: '';
  position: absolute;
  width: 22px; height: 22px;
  border: 2px solid var(--c-accent2);
  opacity: 0;
  transition: all .4s cubic-bezier(.22,1,.36,1);
}
.tease::before { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.tease::after  { bottom: 10px; right: 10px; border-left: none; border-top: none; }
.tease:hover {
  transform: translateY(-6px);
  border-color: var(--c-accent);
  box-shadow: 0 20px 60px -18px rgba(230,0,126,0.5);
  color: var(--c-text);
}
.tease:hover::before, .tease:hover::after { opacity: 1; }
.tease__id {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--c-accent2);
  opacity: 0.7;
  margin-bottom: 18px;
}
.tease__icon {
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-accent-bg);
  border-radius: 14px;
  color: var(--c-accent2);
  margin-bottom: 20px;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.tease:hover .tease__icon { transform: scale(1.1) rotate(-4deg); }
.tease__title {
  font-size: 21px;
  font-weight: 600;
  color: var(--c-heading);
  margin-bottom: 10px;
}
.tease__text {
  font-size: 14.5px;
  color: var(--c-text2);
  line-height: 1.6;
  margin-bottom: 22px;
  flex-grow: 1;
}
.tease__more {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--c-accent2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tease:hover .tease__more { text-shadow: 0 0 14px rgba(255,58,160,0.8); }

/* Reveal: Targeting — Brackets zeichnen, Inhalt schnappt scharf */
.fx-target {
  opacity: 0;
  transform: scale(0.92);
  filter: blur(6px);
}
.fx-target.is-revealed {
  animation: fxTarget .7s cubic-bezier(.22,1,.36,1) var(--reveal-delay, 0ms) forwards;
}
@keyframes fxTarget {
  0%   { opacity: 0; transform: scale(0.92); filter: blur(6px); }
  60%  { opacity: 1; transform: scale(1.02); filter: blur(0); }
  100% { opacity: 1; transform: scale(1); filter: blur(0); }
}

/* ─── Warum-Tiles mit Scan-Sweep ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-tile {
  position: relative;
  padding: 32px 24px;
  background: rgba(26,20,36,0.8);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-tile__num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-accent2);
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 14px;
}
.why-tile h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--c-heading);
  margin-bottom: 10px;
}
.why-tile p {
  font-size: 14px;
  color: var(--c-text2);
  line-height: 1.6;
}
/* Scan-Sweep-Reveal */
.fx-scan { opacity: 0; }
.fx-scan.is-revealed { animation: fxScanIn .2s ease var(--reveal-delay, 0ms) forwards; }
.fx-scan.is-revealed::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60%;
  left: -70%;
  background: linear-gradient(100deg, transparent, rgba(255,90,180,0.35), transparent);
  animation: fxScanSweep .9s ease var(--reveal-delay, 0ms) 1;
}
@keyframes fxScanIn { to { opacity: 1; } }
@keyframes fxScanSweep {
  from { left: -70%; }
  to   { left: 120%; }
}
.why-tile:hover { border-color: var(--c-accent); }
.why-tile:hover .why-tile__num { text-shadow: 0 0 12px var(--c-accent); }

/* ─── Logbuch (Referenzen/Team-Teaser) ─── */
.logbuch-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 24px;
}
.logbuch-card {
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  background: rgba(29,24,40,0.82);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  color: var(--c-text);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.logbuch-card:hover {
  transform: translateY(-6px);
  border-color: var(--c-accent);
  box-shadow: 0 20px 60px -18px rgba(230,0,126,0.5);
  color: var(--c-text);
}
.logbuch-card__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent2);
  margin-bottom: 22px;
}
.logbuch-card__text {
  font-size: 15px;
  color: var(--c-text2);
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
}
.quote-rotator {
  position: relative;
  flex-grow: 1;
  min-height: 130px;
  margin-bottom: 24px;
}
.quote-rotator__item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s ease, transform .6s ease;
  pointer-events: none;
}
.quote-rotator__item.is-active {
  opacity: 1;
  transform: translateY(0);
}
.quote-rotator__item p {
  font-size: 17px;
  font-style: italic;
  line-height: 1.6;
  color: var(--c-text);
  margin-bottom: 12px;
}
.quote-rotator__item cite {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-accent2);
}
.logbuch-card__crew {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.crew-chip {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--c-accent-bg);
  border: 1.5px solid var(--c-border);
  color: var(--c-accent2);
  font-weight: 700;
  font-size: 18px;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), border-color .3s;
}
.logbuch-card--team:hover .crew-chip {
  border-color: var(--c-accent);
  transform: translateY(-4px);
}
.logbuch-card--team:hover .crew-chip:nth-child(2) { transition-delay: .05s; }
.logbuch-card--team:hover .crew-chip:nth-child(3) { transition-delay: .1s; }
.logbuch-card--team:hover .crew-chip:nth-child(4) { transition-delay: .15s; }

/* ============================================
   COMM-PANEL — fliegendes Kontaktfenster
   ============================================ */
.comm {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8500;
  display: flex;
  align-items: center;
  font-family: var(--font);
}
.comm__tab {
  writing-mode: vertical-rl;
  padding: 18px 10px;
  background: var(--c-accent);
  color: #fff;
  border: none;
  border-radius: 10px 0 0 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(230,0,126,0.55);
  animation: commPulse 3s ease-in-out infinite;
  transition: background .25s;
}
.comm__tab:hover { background: #ff2e9a; }
@keyframes commPulse {
  0%, 100% { box-shadow: 0 0 18px rgba(230,0,126,0.45); }
  50%      { box-shadow: 0 0 34px rgba(230,0,126,0.85); }
}
.comm__panel {
  width: 0;
  max-width: 92vw;
  overflow: hidden;
  background: rgba(16,12,24,0.96);
  border: 1px solid rgba(255,90,180,0.4);
  border-right: none;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  backdrop-filter: blur(14px);
  box-shadow: -10px 0 60px rgba(230,0,126,0.25);
  transition: width .55s cubic-bezier(.22,1,.36,1);
}
.comm.is-open .comm__panel { width: 400px; }
.comm__inner {
  width: min(400px, 92vw);
  max-width: 92vw;
  padding: 28px;
  max-height: 80vh;
  overflow-y: auto;
}
.comm__header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent2);
  margin-bottom: 20px;
}
.comm__header .hud__dot { animation-duration: 1.4s; }
.comm__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 22px;
}
.comm__detail strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text2);
  margin-bottom: 2px;
}
.comm__detail span, .comm__detail a {
  font-size: 13.5px;
  color: var(--c-heading);
  line-height: 1.45;
}
.comm__form .form-group { margin-bottom: 12px; }
.comm__form input, .comm__form textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  font-family: var(--font);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  color: var(--c-heading);
  outline: none;
  transition: border-color .2s;
}
.comm__form input:focus, .comm__form textarea:focus { border-color: var(--c-accent); }
.comm__status {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-accent2);
  margin-top: 10px;
  min-height: 18px;
}

/* ============================================
   LEISTUNGEN — Andocksequenz
   ============================================ */
.fx-dock-left, .fx-dock-right { opacity: 0; }
.fx-dock-left.is-revealed {
  animation: fxDockLeft .8s cubic-bezier(.22,1,.36,1) forwards;
}
.fx-dock-right.is-revealed {
  animation: fxDockRight .8s cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes fxDockLeft {
  0%   { opacity: 0; transform: translateX(-90px) skewX(4deg); filter: blur(5px); }
  70%  { opacity: 1; transform: translateX(8px) skewX(-1deg); filter: blur(0); }
  100% { opacity: 1; transform: translateX(0) skewX(0); }
}
@keyframes fxDockRight {
  0%   { opacity: 0; transform: translateX(90px) skewX(-4deg); filter: blur(5px); }
  70%  { opacity: 1; transform: translateX(-8px) skewX(1deg); filter: blur(0); }
  100% { opacity: 1; transform: translateX(0) skewX(0); }
}
/* Listenpunkte kaskadieren beim Aufklappen der Card */
.card:hover .card__list li {
  opacity: 0;
  animation: fxItemIn .35s ease forwards;
}
.card:hover .card__list li:nth-child(1) { animation-delay: .05s; }
.card:hover .card__list li:nth-child(2) { animation-delay: .11s; }
.card:hover .card__list li:nth-child(3) { animation-delay: .17s; }
.card:hover .card__list li:nth-child(4) { animation-delay: .23s; }
.card:hover .card__list li:nth-child(5) { animation-delay: .29s; }
.card:hover .card__list li:nth-child(6) { animation-delay: .35s; }
.card:hover .card__list li:nth-child(7) { animation-delay: .41s; }
@keyframes fxItemIn {
  from { opacity: 0; transform: translateX(-14px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ============================================
   REFERENZEN — Funksprüche
   ============================================ */
.testimonial { position: relative; overflow: hidden; }
.testimonial__rx {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent2);
  margin-bottom: 16px;
}
.testimonial__bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 12px;
}
.testimonial__bars i {
  width: 3px;
  background: var(--c-accent2);
  border-radius: 1px;
  animation: rxBar 1.1s ease-in-out infinite;
}
.testimonial__bars i:nth-child(1) { height: 4px; animation-delay: 0s; }
.testimonial__bars i:nth-child(2) { height: 7px; animation-delay: .15s; }
.testimonial__bars i:nth-child(3) { height: 10px; animation-delay: .3s; }
.testimonial__bars i:nth-child(4) { height: 12px; animation-delay: .45s; }
@keyframes rxBar {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.25; }
}
.testimonial p.is-typing::after {
  content: '▌';
  color: var(--c-accent2);
  animation: hudPulse 0.5s steps(2) infinite;
}
/* Logos driften rein */
.fx-drift { opacity: 0; }
.fx-drift.is-revealed {
  animation: fxDrift .9s cubic-bezier(.22,1,.36,1) var(--reveal-delay, 0ms) forwards;
}
@keyframes fxDrift {
  0%   { opacity: 0; transform: translateY(26px) rotate(-2deg) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) rotate(0) scale(1); }
}

/* ============================================
   TEAM — Hologramm-Crew
   ============================================ */
.fx-holo { opacity: 0; }
.fx-holo.is-revealed {
  animation: fxHolo 1s ease var(--reveal-delay, 0ms) forwards;
}
@keyframes fxHolo {
  0%   { opacity: 0; transform: translateY(20px); filter: brightness(2.5) saturate(0); }
  20%  { opacity: 0.7; }
  30%  { opacity: 0.2; }
  40%  { opacity: 0.9; }
  50%  { opacity: 0.4; }
  65%  { opacity: 1; filter: brightness(1.4) saturate(0.6); }
  100% { opacity: 1; transform: translateY(0); filter: brightness(1) saturate(1); }
}
/* Orbit-Ring um Avatare */
.team-card__avatar { position: relative; }
.team-card__avatar::after {
  content: '';
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255,90,180,0.5);
  animation: orbitSpin 14s linear infinite;
}
@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}
.team-card:hover .team-card__avatar::after {
  animation-duration: 3s;
  border-color: var(--c-accent2);
}
/* Scan-Linie beim Hover */
.team-card { position: relative; overflow: hidden; }
.team-card:hover::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255,90,180,0.7), transparent);
  animation: teamScan 1.2s ease-in-out infinite;
}
@keyframes teamScan {
  0%   { top: 0; }
  100% { top: 100%; }
}

/* ============================================
   ORBITAL-SYSTEM — Was wir tun (Home)
   ============================================ */
.orbit {
  position: relative;
  height: 760px;
}
.orbit__links {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}
.orbit__line {
  stroke: rgba(255,90,180,0.30);
  stroke-width: 1.5;
  transition: stroke-dashoffset 1s cubic-bezier(.22,1,.36,1), stroke .3s ease;
}
.orbit__line.is-hot {
  stroke: rgba(255,58,160,0.95);
  filter: drop-shadow(0 0 6px rgba(230,0,126,0.8));
}
.orbit__packet {
  fill: #ff3aa0;
  filter: drop-shadow(0 0 4px rgba(255,58,160,0.9));
}

/* ─── Kern ─── */
.orbit__core {
  position: absolute;
  left: calc(50% - 82px);
  top: calc(46% - 82px);
  width: 164px;
  height: 164px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(230,0,126,0.30), transparent 60%),
    radial-gradient(circle, rgba(26,20,36,0.95), rgba(16,12,24,0.98));
  border: 1.5px solid rgba(255,90,180,0.55);
  box-shadow: 0 0 50px rgba(230,0,126,0.35), inset 0 0 30px rgba(230,0,126,0.15);
  opacity: 0;
  transform: scale(0.55);
  transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1);
}
.orbit.is-live .orbit__core {
  opacity: 1;
  transform: scale(1);
}
.orbit__core-label {
  font-family: var(--font-mono);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.35;
  color: #ffe1f0;
  text-shadow: 0 0 18px rgba(255,90,180,0.8);
}
/* Rotierender Instrumenten-Ring */
.orbit__core-dial {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255,90,180,0.45);
  animation: orbitSpin 26s linear infinite;
}
/* Radar-Ping */
.orbit__core-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(255,90,180,0.6);
  opacity: 0;
}
.orbit.is-live .orbit__core-ping {
  animation: orbitPing 3.4s ease-out infinite;
}
@keyframes orbitPing {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(2.3); opacity: 0; }
}

/* ─── Module ─── */
.orbit-module {
  position: absolute;
  width: 330px;
  padding: 26px 26px 22px;
  background: rgba(22,17,32,0.88);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  color: var(--c-text);
  backdrop-filter: blur(6px);
  transition: border-color .3s ease, box-shadow .3s ease;
}
.orbit-module:nth-of-type(1) { top: 0;    left: calc(50% - 165px); --fly: translate(0, -120px) scale(0.85); --floatdur: 6.5s; }
.orbit-module:nth-of-type(2) { bottom: 0; left: 2%;                --fly: translate(-140px, 100px) scale(0.85); --floatdur: 7.6s; }
.orbit-module:nth-of-type(3) { bottom: 0; right: 2%;               --fly: translate(140px, 100px) scale(0.85); --floatdur: 8.4s; }

/* Anflug-Zustand (per JS gesetzt, damit ohne JS alles sichtbar bleibt) */
.orbit-module.is-prep {
  opacity: 0;
  transform: var(--fly);
  filter: blur(6px);
}
.orbit-module.is-docked {
  animation:
    orbitDock .95s cubic-bezier(.22,1,.36,1) forwards,
    orbitFloat var(--floatdur, 7s) ease-in-out 1s infinite;
}
@keyframes orbitDock {
  0%   { opacity: 0; transform: var(--fly); filter: blur(6px); }
  72%  { opacity: 1; transform: translate(0,0) scale(1.025); filter: blur(0); }
  100% { opacity: 1; transform: translate(0,0) scale(1); filter: blur(0); }
}
@keyframes orbitFloat {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -9px; }
}
.orbit-module:hover {
  border-color: var(--c-accent);
  box-shadow: 0 18px 60px -16px rgba(230,0,126,0.55), 0 0 0 1px rgba(230,0,126,0.25);
  color: var(--c-text);
}
/* Targeting-Ecken beim Hover */
.orbit-module::before, .orbit-module::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  border: 2px solid var(--c-accent2);
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
}
.orbit-module::before { top: 8px; left: 8px; border-right: none; border-bottom: none; transform: translate(6px,6px); }
.orbit-module::after  { bottom: 8px; right: 8px; border-left: none; border-top: none; transform: translate(-6px,-6px); }
.orbit-module:hover::before, .orbit-module:hover::after { opacity: 1; transform: translate(0,0); }

.orbit-module__id {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--c-accent2);
  opacity: 0.75;
  margin-bottom: 14px;
}
.orbit-module__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-accent-bg);
  border-radius: 12px;
  color: var(--c-accent2);
  margin-bottom: 16px;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.orbit-module:hover .orbit-module__icon { transform: scale(1.1) rotate(-4deg); }
.orbit-module__title {
  font-size: 19px;
  font-weight: 600;
  color: var(--c-heading);
  margin-bottom: 8px;
}
.orbit-module__text {
  font-size: 14px;
  color: var(--c-text2);
  line-height: 1.6;
  margin-bottom: 16px;
}
.orbit-module__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--c-accent2);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .3s ease, transform .3s ease;
}
.orbit-module:hover .orbit-module__status { opacity: 1; transform: translateY(0); }

/* ─── Orbital: Mobile-Fallback ─── */
@media (max-width: 960px) {
  .orbit { height: auto; display: grid; gap: 18px; overflow: hidden; }
  .orbit__links, .orbit__core { display: none; }
  .orbit-module {
    position: static;
    width: 100%;
  }
  /* Anflug nur vertikal — seitliche Transforms sprengen sonst die Viewport-Breite */
  .orbit-module:nth-of-type(1) { --fly: translate(0, 50px) scale(0.94); }
  .orbit-module:nth-of-type(2) { --fly: translate(0, 50px) scale(0.94); }
  .orbit-module:nth-of-type(3) { --fly: translate(0, 50px) scale(0.94); }
  .orbit-module__status { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .orbit-module.is-prep { opacity: 1; transform: none; filter: none; }
  .orbit-module.is-docked { animation: none; }
  .orbit__core { opacity: 1; transform: none; transition: none; }
  .orbit__core-dial, .orbit.is-live .orbit__core-ping { animation: none; }
  .orbit__line { transition: none; stroke-dashoffset: 0 !important; }
  .orbit__packet { display: none; }
}

/* ============================================
   RESPONSIVE / REDUCED MOTION (Space-Layer)
   ============================================ */
@media (max-width: 900px) {
  .teases { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .logbuch-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .why-grid { grid-template-columns: 1fr; }
  .hud__bar { display: none; }
  .hud__corner { width: 22px; height: 22px; }
  .comm.is-open .comm__panel { width: 92vw; }
  .comm__details { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .fx-target, .fx-scan, .fx-dock-left, .fx-dock-right, .fx-drift, .fx-holo {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
    filter: none !important;
  }
  .fx-scan.is-revealed::after { animation: none; content: none; }
  .card:hover .card__list li { opacity: 1; animation: none; }
  .team-card__avatar::after, .comm__tab, .hud__dot,
  .testimonial__bars i { animation: none; }
  .space-canvas { display: none; }
}
