:root {
  --bg: #02040b;
  --bg-2: #050913;
  --panel: rgba(8, 13, 25, 0.78);
  --panel-2: rgba(12, 20, 38, 0.88);
  --line: rgba(120, 191, 255, 0.18);
  --line-strong: rgba(0, 210, 255, 0.4);
  --text: #f7fbff;
  --muted: #9fb0c7;
  --soft: #dbeafe;
  --blue: #0072ff;
  --cyan: #00d2ff;
  --violet: #7c3aed;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.58);
  --radius: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 5%, rgba(0, 114, 255, .26), transparent 28rem),
    radial-gradient(circle at 85% 15%, rgba(0, 210, 255, .14), transparent 30rem),
    radial-gradient(circle at 72% 82%, rgba(124, 58, 237, .12), transparent 24rem),
    linear-gradient(180deg, #030408 0%, #050712 52%, #02040b 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(80, 165, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 165, 255, .045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black, transparent 82%);
}

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

img { max-width: 100%; display: block; }

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

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .13;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 114, 255, .18), rgba(0, 210, 255, .05) 42%, transparent 68%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -2;
  opacity: .7;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: min(calc(100% - 28px), var(--max));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  background: rgba(2, 4, 11, .55);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .26);
  transition: transform .24s ease, background .24s ease, border-color .24s ease;
}

.site-header.is-scrolled {
  background: rgba(2, 4, 11, .84);
  border-color: rgba(0, 210, 255, .22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 188px;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(0, 210, 255, .28));
}

.brand-text {
  color: #fff;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.main-nav a {
  padding: 12px 14px;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, .06);
}

.main-nav .nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #004dd6);
  box-shadow: 0 10px 32px rgba(0, 114, 255, .32);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #004dd6);
  box-shadow: 0 10px 32px rgba(0, 114, 255, .32);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-cta-menu {
  display: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #fff;
}

.section-shell {
  width: min(calc(100% - 36px), var(--max));
  margin-inline: auto;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
  align-items: center;
  gap: 56px;
  padding: 132px 0 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: #78c7ff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 0 18px rgba(0, 210, 255, .9);
}

h1,
h2,
h3,
p { margin-top: 0; }

h1,
h2,
h3 {
  font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -.05em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 8vw, 6.9rem);
  line-height: .9;
  font-weight: 950;
  text-transform: uppercase;
}

h1 span,
h2 span { color: #77c8ff; }

.hero-text {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  line-height: 1.75;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.btn:hover,
.btn:focus-visible { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--blue), #0047d9 48%, #001a66);
  color: #fff;
  box-shadow: 0 18px 44px rgba(0, 114, 255, .32), inset 0 1px 0 rgba(255,255,255,.25);
}

.btn-secondary {
  color: var(--soft);
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.045);
}

.btn-secondary:hover { border-color: rgba(0,210,255,.36); }

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-strip span {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.035);
  font-size: 13px;
}

.trust-strip strong { color: var(--cyan); }

.hero-visual { perspective: 1200px; }

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 570px;
  padding: 22px;
  border: 1px solid rgba(101, 203, 255, .22);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), transparent 30%),
    radial-gradient(circle at 34% 22%, rgba(0, 114, 255, .28), transparent 16rem),
    rgba(2, 6, 17, .85);
  box-shadow: var(--shadow), 0 0 90px rgba(0,114,255,.14);
  transform: rotateX(2deg) rotateY(-5deg);
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-card::before {
  inset: 12px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 26px;
}

.hero-card::after {
  width: 300px;
  height: 300px;
  right: -120px;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,210,255,.28), transparent 68%);
}

.scanline {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,210,255,.08), transparent);
  transform: translateY(-100%);
  animation: scan 5s linear infinite;
}

@keyframes scan {
  to { transform: translateY(100%); }
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

.card-id { color: #fff; }

.hero-logo {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  margin: 74px auto 58px;
  filter: drop-shadow(0 32px 46px rgba(0,0,0,.5));
}

.performance-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.performance-grid article {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
}

.metric-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.performance-grid strong {
  font-size: 24px;
  letter-spacing: -.03em;
}

.meter {
  overflow: hidden;
  height: 7px;
  margin-top: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}

.meter span {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 0 16px rgba(0,210,255,.8);
}

.logos-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  color: #7e8fa8;
  background: rgba(255,255,255,.025);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.split-section,
.process-section,
.pricing-section,
.results-section,
.faq-section,
.contact-section {
  padding: 110px 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.centered {
  text-align: center;
  margin-inline: auto;
}

.section-heading.centered .eyebrow { justify-content: center; }

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: .98;
  font-weight: 950;
}

.section-heading p:not(.eyebrow),
.result-copy p,
.contact-section p,
.price-card li,
.feature-card p,
.steps p,
.faq-list p {
  color: var(--muted);
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.price-card,
.terminal-card,
.stats-card,
.faq-list details,
.contact-section {
  border: 1px solid rgba(255,255,255,.09);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.022));
  box-shadow: 0 22px 70px rgba(0,0,0,.22);
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 285px;
  padding: 24px;
  border-radius: 24px;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,114,255,.2), transparent 70%);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  border: 1px solid rgba(0,210,255,.28);
  border-radius: 16px;
  color: #bfe8ff;
  background: rgba(0,114,255,.1);
  font-weight: 950;
}

.feature-card h3,
.price-card h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.process-section {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 50px;
}

.terminal-card {
  overflow: hidden;
  border-radius: 26px;
  background: rgba(3, 8, 18, .86);
}

.terminal-top {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.terminal-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}

.terminal-top span:nth-child(1) {
  background: #ff5f57;
}

.terminal-top span:nth-child(2) {
  background: #febc2e;
}

.terminal-top span:nth-child(3) {
  background: #28c840;
}

.terminal-card pre {
  overflow: auto;
  margin: 0;
  padding: 28px;
  color: #aeeaff;
  font-size: clamp(.92rem, 2vw, 1.05rem);
  line-height: 1.8;
}

.steps {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
}

.steps li > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  font-weight: 950;
  box-shadow: 0 0 30px rgba(0,114,255,.35);
}

.steps strong { display: block; margin-bottom: 4px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-radius: 26px;
}

.price-card.featured {
  border-color: rgba(0,210,255,.36);
  background:
    radial-gradient(circle at 50% 0%, rgba(0,114,255,.24), transparent 18rem),
    linear-gradient(180deg, rgba(0,114,255,.12), rgba(255,255,255,.035));
  transform: translateY(-12px);
}

.plan {
  margin: 0 0 12px;
  color: #7dccff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.price {
  margin: 8px 0 18px;
  font-size: 3.3rem;
  font-weight: 950;
  letter-spacing: -.06em;
}

.price-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
}

.price-card li {
  display: flex;
  gap: 10px;
}

.price-card li::before {
  content: "✓";
  color: var(--cyan);
  font-weight: 950;
}

.price-card .btn { margin-top: auto; }

.results-section {
  display: grid;
  grid-template-columns: 1fr .8fr;
  align-items: center;
  gap: 32px;
}

.stats-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 18px;
  border-radius: 28px;
}

.stats-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
}

.stats-card strong {
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  letter-spacing: -.06em;
}

.stats-card span {
  color: var(--muted);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}

.faq-list {
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
  border-radius: 18px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -.02em;
}

.faq-list p { margin: 14px 0 0; }

.contact-section {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 28px;
  margin-top: 110px;
  margin-bottom: 54px;
  padding: 26px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 10% 50%, rgba(0,114,255,.22), transparent 18rem),
    rgba(255,255,255,.035);
}

.contact-section img {
  width: 220px;
  border-radius: 22px;
}

.contact-section h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.contact-actions { justify-content: flex-end; margin-top: 0; }

.site-footer {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  padding: 26px 0 42px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #6f819c;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }

  .main-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(360px, calc(100vw - 28px));
    display: none;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 24px;
    background: rgba(2,4,11,.94);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open { display: grid; }

  .main-nav a { padding: 14px 16px; }

  .header-cta { display: none; }

  .main-nav .nav-cta-menu {
    display: block;
    text-align: center;
  }

  .hero,
  .process-section,
  .results-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero { gap: 34px; }

  .hero-card {
    min-height: auto;
    transform: none;
  }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card.featured { transform: none; }

  .contact-actions { justify-content: flex-start; }
}

@media (max-width: 650px) {
  .site-header {
    top: 0;
    width: 100%;
    border-radius: 0 0 22px 22px;
    border-inline: 0;
  }

  .brand { min-width: auto; }
  .brand img { width: 46px; height: 46px; }
  .brand-text { font-size: 13px; letter-spacing: .06em; }

  .section-shell { width: min(calc(100% - 28px), var(--max)); }

  .hero { padding-top: 118px; }

  h1 { font-size: clamp(3rem, 18vw, 5rem); }

  .hero-actions,
  .contact-actions { flex-direction: column; }

  .btn { width: 100%; }

  .hero-logo { margin: 46px auto 32px; }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .split-section,
  .process-section,
  .pricing-section,
  .results-section,
  .faq-section,
  .contact-section {
    padding-top: 82px;
  }

  .stats-card div {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) and (min-width: 99999px) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

.contact-section > img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, .5)) drop-shadow(0 0 34px rgba(0, 210, 255, .18));
}

/* =========================================================
   0 DELAY OS — Animation Layer
   Eingebaut: Logo-Float, Glow, Scroll-Reveals, Button-Shine,
   Card-Hover, Meter-Load, Background-Motion und Hero-Tilt.
   ========================================================= */

body::before {
  animation: gridDrift 18s linear infinite;
}

body::after {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -4;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 24%, rgba(0, 210, 255, .16), transparent 20rem),
    radial-gradient(circle at 76% 18%, rgba(0, 114, 255, .14), transparent 22rem),
    radial-gradient(circle at 50% 86%, rgba(124, 58, 237, .12), transparent 28rem);
  filter: blur(10px);
  animation: auraMove 11s ease-in-out infinite alternate;
}

@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 34px 34px, 34px 34px; }
}

@keyframes auraMove {
  0% { transform: translate3d(-1.5%, -1%, 0); opacity: .72; }
  50% { transform: translate3d(1.5%, 1%, 0); opacity: 1; }
  100% { transform: translate3d(-.5%, 1.5%, 0); opacity: .82; }
}

.site-header {
  animation: headerDrop .72s cubic-bezier(.2,.8,.2,1) both;
}

@keyframes headerDrop {
  from { opacity: 0; transform: translate(-50%, -24px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

.brand img,
.hero-logo,
.contact-section > img {
  animation: logoFloat 4.8s ease-in-out infinite, logoGlow 3.4s ease-in-out infinite;
  will-change: transform, filter;
}

.brand img {
  animation-duration: 5.6s, 3.8s;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.025); }
}

@keyframes logoGlow {
  0%, 100% {
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .48)) drop-shadow(0 0 18px rgba(0, 210, 255, .25));
  }
  50% {
    filter: drop-shadow(0 24px 38px rgba(0, 0, 0, .55)) drop-shadow(0 0 42px rgba(0, 210, 255, .62));
  }
}

.hero-visual {
  animation: heroFloat 7s ease-in-out infinite;
  will-change: transform;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero-card {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  will-change: transform;
}

.hero-card.is-tilting {
  transition: transform .08s linear;
}

.hero-card:hover {
  border-color: rgba(0, 210, 255, .46);
  box-shadow: var(--shadow), 0 0 115px rgba(0, 114, 255, .25), inset 0 0 0 1px rgba(255,255,255,.035);
}

.card-topline,
.performance-grid article,
.terminal-card,
.stats-card,
.feature-card,
.price-card,
.faq-list details,
.contact-section {
  position: relative;
}

.btn,
.nav-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::after,
.nav-cta::after {
  content: "";
  position: absolute;
  inset: -70% auto -70% -45%;
  width: 42%;
  transform: rotate(18deg) translateX(-160%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent);
  transition: transform .65s ease;
  z-index: -1;
}

.btn:hover::after,
.nav-cta:hover::after {
  transform: rotate(18deg) translateX(520%);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-4px) scale(1.02);
}

.btn-primary {
  animation: ctaPulse 3.6s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 18px 44px rgba(0, 114, 255, .32), inset 0 1px 0 rgba(255,255,255,.25); }
  50% { box-shadow: 0 22px 62px rgba(0, 210, 255, .36), inset 0 1px 0 rgba(255,255,255,.28); }
}

.live-dot {
  animation: livePulse 1.35s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.45); opacity: .62; }
}

.meter span {
  transform: scaleX(0);
  transform-origin: left center;
}

.hero-visual.meters-visible .meter span {
  animation: meterFill .95s cubic-bezier(.2,.8,.2,1) forwards;
}

.performance-grid article:nth-child(2) .meter span { animation-delay: .12s; }
.performance-grid article:nth-child(3) .meter span { animation-delay: .24s; }

@keyframes meterFill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.feature-card,
.price-card,
.stats-card div,
.faq-list details,
.terminal-card {
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.feature-card:hover,
.price-card:hover,
.stats-card div:hover,
.faq-list details:hover,
.terminal-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 210, 255, .34);
  box-shadow: 0 28px 82px rgba(0,0,0,.3), 0 0 48px rgba(0,114,255,.12);
}

.price-card.featured {
  animation: featuredGlow 3.8s ease-in-out infinite;
}

@keyframes featuredGlow {
  0%, 100% { box-shadow: 0 22px 70px rgba(0,0,0,.22), 0 0 32px rgba(0,114,255,.16); }
  50% { box-shadow: 0 30px 92px rgba(0,0,0,.28), 0 0 60px rgba(0,210,255,.22); }
}

.logos-row span {
  position: relative;
  transition: color .2s ease, text-shadow .2s ease, transform .2s ease;
}

.logos-row span:hover {
  color: #dff7ff;
  text-shadow: 0 0 20px rgba(0,210,255,.65);
  transform: translateY(-2px);
}

h1 span,
h2 span {
  background: linear-gradient(90deg, #77c8ff, #fff, #00d2ff, #77c8ff);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: textShine 4.5s ease-in-out infinite;
}

@keyframes textShine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.terminal-card code {
  display: block;
  animation: terminalFlicker 3.4s steps(2, end) infinite;
}

@keyframes terminalFlicker {
  0%, 100% { opacity: 1; }
  48% { opacity: .92; }
  50% { opacity: 1; }
  52% { opacity: .88; }
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(.985);
  filter: blur(8px);
  transition: opacity .78s ease, transform .78s cubic-bezier(.2,.8,.2,1), filter .78s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.reveal:nth-child(2) { transition-delay: .06s; }
.reveal:nth-child(3) { transition-delay: .12s; }
.reveal:nth-child(4) { transition-delay: .18s; }

@media (max-width: 980px) {
  .hero-visual { animation: none; }
}

@media (prefers-reduced-motion: reduce) and (min-width: 99999px) {
  body::before,
  body::after,
  .site-header,
  .brand img,
  .hero-logo,
  .contact-section > img,
  .hero-visual,
  .scanline,
  .btn-primary,
  .live-dot,
  .price-card.featured,
  h1 span,
  h2 span,
  .terminal-card code,
  .logos-track {
    animation: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* =========================================================
   0 DELAY OS — Enhancement Layer v2
   Scroll-Progress, Marquee, Card-Spotlight, Discord-Button,
   Magnetic Glow, Gradient-Border auf Featured.
   ========================================================= */

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  z-index: 60;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 0 14px rgba(0, 210, 255, .8);
  transition: width .08s linear;
}

/* Logos marquee */
.logos-row { overflow: hidden; }
.logos-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.logos-track {
  display: inline-flex;
  gap: 0;
  white-space: nowrap;
  animation: logosScroll 28s linear infinite;
  will-change: transform;
}
.logos-track span { padding: 0 34px; }
.logos-marquee:hover .logos-track { animation-play-state: paused; }
@keyframes logosScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Card spotlight — follows cursor */
.feature-card, .price-card { isolation: isolate; }
.feature-card::before, .price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity .35s ease;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), rgba(0, 210, 255, .16), transparent 60%);
  pointer-events: none;
}
.feature-card:hover::before, .price-card:hover::before { opacity: 1; }
.feature-card > *, .price-card > * { position: relative; z-index: 1; }

/* Animated gradient border on featured plan */
.price-card.featured::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(130deg, var(--cyan), transparent 35%, transparent 65%, var(--blue));
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderFlow 6s linear infinite;
}
@keyframes borderFlow {
  to { background-position: 300% 0; }
}

/* Discord button */
.btn-discord { gap: 10px; }
.btn-discord svg {
  width: 20px;
  height: 20px;
  transition: transform .25s ease;
}
.btn-discord:hover svg { transform: scale(1.15) rotate(-6deg); }

/* Count-up numbers stay crisp */
.count { font-variant-numeric: tabular-nums; }

/* Performance-Boost (auch ohne Hardware-Beschleunigung):
   Untere Abschnitte erst rendern, wenn sie in die Nähe des Sichtbereichs kommen.
   Spürbar weniger CPU-Last beim Scrollen, ohne sichtbare Änderung. */
.process-section,
.results-section,
.faq-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 640px;
}

/* Kopf-Leiste rechts + Sprachschalter */
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Nav-Reiter auf Desktop mittig zentrieren */
@media (min-width: 981px) {
  .main-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
}
.lang-switch button {
  padding: 9px 12px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .08em;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.lang-switch button:hover { color: #fff; }
.lang-switch button.active {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #004dd6);
  box-shadow: 0 6px 18px rgba(0, 114, 255, .3);
}

/* Paket-Untertitel */
.plan-note {
  margin: 0 0 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #7dccff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) and (min-width: 99999px) {
  .logos-track { transform: none; }
  .scroll-progress { transition: none; }
}

/* =========================================================
   Fix: Hero-Überschrift lag bei manchen Breiten hinter dem Bild.
   Text bekommt eigene Ebene + sauberen Umbruch, Bild dahinter.
   ========================================================= */
.hero-copy {
  position: relative;
  z-index: 3;
}
.hero-visual {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}
@media (max-width: 650px) {
  .hero h1 { font-size: clamp(2.4rem, 13vw, 4.2rem); }
}


/* =========================================================
   AUTO-GPU PATCH
   Normalzustand: volle Original-Animationen.
   Nur html.gpu-off-mode reduziert dauerhaft laufende/paint-lastige Effekte.
   Test: ?motion=lite oder ?motion=full an die URL hängen.
   ========================================================= */

.scroll-progress {
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .08s linear;
  will-change: transform;
}

.cursor-glow {
  left: 0;
  top: 0;
  transform: translate3d(-999px, -999px, 0) translate(-50%, -50%);
  will-change: transform;
  contain: layout paint style;
}

html.gpu-off-mode body {
  text-rendering: auto;
}

html.gpu-off-mode .noise,
html.gpu-off-mode .cursor-glow,
html.gpu-off-mode .scanline {
  display: none !important;
}

html.gpu-off-mode body::before {
  animation: none !important;
  opacity: .42;
  mask-image: radial-gradient(circle at center, black, transparent 76%);
}

html.gpu-off-mode body::after {
  display: none !important;
  animation: none !important;
  filter: none !important;
}

html.gpu-off-mode .site-header,
html.gpu-off-mode .main-nav {
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  background: rgba(2, 4, 11, .94) !important;
  box-shadow: 0 10px 26px rgba(0,0,0,.22) !important;
}

html.gpu-off-mode .brand img,
html.gpu-off-mode .hero-logo,
html.gpu-off-mode .contact-section > img {
  animation: none !important;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,.45)) !important;
  will-change: auto !important;
}

html.gpu-off-mode .hero-visual {
  animation: none !important;
  transform: none !important;
  will-change: auto !important;
}

html.gpu-off-mode .hero-card,
html.gpu-off-mode .hero-card.is-tilting,
html.gpu-off-mode .hero-card:hover {
  transform: none !important;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease !important;
  will-change: auto !important;
  contain: paint;
  box-shadow: 0 20px 56px rgba(0,0,0,.36), 0 0 30px rgba(0,114,255,.08) !important;
}

html.gpu-off-mode .hero-card::after {
  opacity: .35;
  filter: none !important;
}

html.gpu-off-mode .btn-primary,
html.gpu-off-mode .live-dot,
html.gpu-off-mode .price-card.featured,
html.gpu-off-mode .price-card.featured::after,
html.gpu-off-mode h1 span,
html.gpu-off-mode h2 span,
html.gpu-off-mode .terminal-card code,
html.gpu-off-mode .logos-track {
  animation: none !important;
}

html.gpu-off-mode .logos-track {
  transform: none !important;
}

html.gpu-off-mode .logos-track span:nth-child(n+9) {
  display: none;
}

html.gpu-off-mode .feature-card::before,
html.gpu-off-mode .price-card::before {
  display: none !important;
}

html.gpu-off-mode .feature-card:hover,
html.gpu-off-mode .price-card:hover,
html.gpu-off-mode .stats-card div:hover,
html.gpu-off-mode .faq-list details:hover,
html.gpu-off-mode .terminal-card:hover,
html.gpu-off-mode .btn:hover,
html.gpu-off-mode .btn:focus-visible {
  transform: none !important;
  box-shadow: 0 16px 38px rgba(0,0,0,.24) !important;
}

html.gpu-off-mode .reveal {
  opacity: 0;
  transform: translateY(20px);
  filter: none !important;
  transition: opacity .42s ease, transform .42s ease !important;
  will-change: opacity, transform;
}

html.gpu-off-mode .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: none !important;
  will-change: auto;
}

html.gpu-off-mode .meter span {
  box-shadow: none !important;
}

html.gpu-off-mode .split-section,
html.gpu-off-mode .process-section,
html.gpu-off-mode .pricing-section,
html.gpu-off-mode .results-section,
html.gpu-off-mode .faq-section,
html.gpu-off-mode .contact-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 760px;
}

html.motion-forced-full .cursor-glow,
html.motion-forced-full .noise,
html.motion-forced-full .scanline {
  display: block;
}


/* Discord Kundenbewertungen */
.reviews-section {
  position: relative;
}

.reviews-highlight {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 18px;
  margin-top: 28px;
  margin-bottom: 12px;
}

.reviews-score,
.reviews-mini-stats {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 196, 0, .14), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(0, 213, 255, .1), transparent 30%),
    linear-gradient(180deg, rgba(15, 21, 35, .95), rgba(6, 10, 20, .95));
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
}

.reviews-score {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 24px;
}

.reviews-score strong {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  color: #fff;
}

.reviews-score span {
  margin-top: 10px;
  color: #b5c6de;
  font-size: .95rem;
}

.reviews-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
}

.reviews-mini-stats div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
}

.reviews-mini-stats strong {
  display: block;
  color: #fff;
  font-size: 1.45rem;
}

.reviews-mini-stats span {
  display: block;
  margin-top: 6px;
  color: #9fb0c9;
  font-size: .88rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.review-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 213, 255, .14), transparent 34%),
    linear-gradient(180deg, rgba(18, 24, 38, .94), rgba(6, 10, 20, .94));
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
  transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease;
  animation: reviewFloat 6.5s ease-in-out infinite;
}

.review-card:nth-child(2n) { animation-delay: .7s; }
.review-card:nth-child(3n) { animation-delay: 1.4s; }

.review-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.08), transparent);
  transform: translateX(-130%);
}

.review-card:hover {
  transform: translateY(-9px) scale(1.01);
  border-color: rgba(255, 205, 59, .45);
  box-shadow: 0 28px 100px rgba(255, 205, 59, .12), 0 18px 60px rgba(0, 213, 255, .12);
}

.review-card:hover::before {
  animation: reviewSweep 1.05s ease;
}

.review-glow {
  position: absolute;
  inset: auto -30% -35% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,198,64,.24), rgba(255,198,64,0) 68%);
  opacity: .8;
  filter: blur(12px);
  pointer-events: none;
}

.featured-review {
  border-color: rgba(255, 205, 59, .34);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 205, 59, .14), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(0, 213, 255, .1), transparent 30%),
    linear-gradient(180deg, rgba(26, 22, 10, .95), rgba(10, 12, 22, .95));
}

.review-top {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
}

.review-avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #1c1500;
  font-weight: 900;
  background: linear-gradient(135deg, #ffd54a, #ffef9d);
  box-shadow: 0 0 28px rgba(255, 205, 59, .28);
}

.review-top strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.review-top span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.review-stars {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 1.25rem;
  letter-spacing: .18em;
  color: #ffd54a;
  text-shadow: 0 0 18px rgba(255, 205, 59, .28), 0 0 32px rgba(255, 205, 59, .18);
  animation: starTwinkle 2.2s ease-in-out infinite;
}

.review-stars.large {
  margin-top: 8px;
  font-size: 1.45rem;
}

.review-card p {
  margin: 0;
  color: #d4deee;
  font-size: .98rem;
  line-height: 1.7;
}

.review-reactions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.review-reactions span {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  padding: 8px 12px;
  color: #fff6cf;
  background: linear-gradient(180deg, rgba(255, 206, 77, .12), rgba(255,255,255,.04));
  font-size: .82rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

@keyframes reviewSweep {
  to { transform: translateX(130%); }
}

@keyframes reviewFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes starTwinkle {
  0%, 100% { transform: translateY(0) scale(1); opacity: .95; }
  50% { transform: translateY(-2px) scale(1.03); opacity: 1; }
}

@media (max-width: 980px) {
  .reviews-highlight {
    grid-template-columns: 1fr;
  }

  .reviews-mini-stats {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .reviews-mini-stats {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: auto;
    padding: 21px;
  }

  .review-stars {
    font-size: 1.1rem;
    letter-spacing: .14em;
  }
}

