/* CyberLex Verteiler — Referenz cyberlex.jpeg */

:root {
  --vx-bg: #061528;
  --vx-bg2: #0a1628;
  --vx-card-dark: #0c1a35;
  --vx-blue: #0056ff;
  --vx-blue-light: #3b8bff;
  --vx-blue-glow: rgba(0, 86, 255, 0.45);
  --vx-green: #16a34a;
  --vx-green-bright: #22c55e;
  --vx-red: #c8102e;
  --vx-red-bright: #e4002b;
  --vx-red-light: #ff2d4d;
  --vx-red-glow: rgba(200, 16, 46, 0.38);
  --vx-text: #111827;
  --vx-muted: #6b7280;
  --vx-white: #ffffff;
  --vx-border: #e5e7eb;
  --vx-max: 1180px;
  --vx-pad: clamp(20px, 4vw, 48px);
  --vx-radius: 16px;
  --vx-radius-sm: 14px;
  --vx-scroll-offset: 88px;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--vx-scroll-offset);
  background: #061528;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #f1f5f9;
  background: #061528;
  -webkit-font-smoothing: antialiased;
}

body.vx-page-home {
  background: #061528;
  color: #f1f5f9;
}

body.vx-page-home main {
  display: block;
  background: #061528;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

.vx-shell {
  max-width: var(--vx-max);
  margin: 0 auto;
  padding-left: var(--vx-pad);
  padding-right: var(--vx-pad);
  width: 100%;
}

.vx-text-blue { color: var(--vx-blue-light); }
.vx-text-green { color: var(--vx-green-bright); }
.vx-text-red { color: var(--vx-red-bright); }

.vx-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vx-blue-light);
  margin: 0 0 14px;
}
.vx-eyebrow--light { color: rgba(255, 255, 255, 0.5); }

/* Buttons */
.vx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s, transform 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.vx-btn-primary {
  background: var(--vx-blue);
  color: #fff;
  box-shadow: 0 4px 24px var(--vx-blue-glow);
}
.vx-btn-primary:hover {
  background: #0046d4;
  box-shadow: 0 8px 32px var(--vx-blue-glow);
  transform: translateY(-1px);
}
.vx-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.vx-btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.5); }
.vx-btn-green-outline {
  background: #fff;
  color: var(--vx-green);
  border: 2px solid var(--vx-green-bright);
}
.vx-btn-green-outline:hover { background: #f0fdf4; }
.vx-btn-red-outline {
  background: #fff;
  color: var(--vx-red);
  border: 2px solid var(--vx-red-bright);
}
.vx-btn-red-outline:hover { background: #fef2f2; }
.vx-btn-red {
  background: linear-gradient(135deg, #c8102e 0%, #e4002b 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(200, 16, 46, 0.45);
}
.vx-btn-red:hover {
  background: linear-gradient(135deg, #e4002b 0%, #ff2d4d 100%);
  box-shadow: 0 8px 28px rgba(200, 16, 46, 0.55);
  transform: translateY(-1px);
}
.vx-btn-outline-blue {
  background: #fff;
  color: var(--vx-blue);
  border: 1.5px solid var(--vx-blue);
}
.vx-btn-outline-blue:hover { background: #eff6ff; }
.vx-btn-block { width: 100%; }

/* Header — transparent über Hero */
.vx-page-home .vx-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: none;
}
.vx-page-home .vx-header.is-scrolled {
  position: fixed;
  background: rgba(6, 21, 40, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}
.vx-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  min-height: 72px;
}
.vx-logo { justify-self: start; }
.vx-logo img { height: 30px; width: auto; }
.vx-logo-dark { display: none; }
.vx-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  justify-self: center;
}
.vx-nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.15s;
}
.vx-nav a:hover { color: #fff; }

/* Nav dropdown — Bereich */
.vx-nav-dropdown {
  position: relative;
}
.vx-nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.vx-nav-chevron {
  opacity: 0.7;
  transition: transform 0.2s;
}
.vx-nav-dropdown:hover .vx-nav-chevron,
.vx-nav-dropdown:focus-within .vx-nav-chevron,
.vx-nav-dropdown.is-open .vx-nav-chevron {
  transform: rotate(180deg);
}
.vx-nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px 10px;
  background: rgba(8, 24, 44, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 120;
}
.vx-nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 0;
  right: 0;
  height: 8px;
}
.vx-nav-dropdown:hover .vx-nav-dropdown-menu,
.vx-nav-dropdown:focus-within .vx-nav-dropdown-menu,
.vx-nav-dropdown.is-open .vx-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.vx-nav-dropdown-menu a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  padding: 4px 2px;
  border-radius: 4px;
}
.vx-nav-dropdown-menu a:hover {
  color: #fff;
  background: transparent;
}
.vx-nav-dropdown-sep {
  color: rgba(255, 255, 255, 0.28);
  font-size: 12px;
  user-select: none;
}

.vx-header-cta { justify-self: end; font-size: 13px; padding: 10px 18px; }
.vx-nav-toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.vx-nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.vx-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.vx-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.vx-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.vx-hero {
  position: relative;
  min-height: clamp(400px, 52vh, 500px);
  overflow: hidden;
  background: #040e1c;
}
.vx-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-color: #040e1c;
}
.vx-hero-bg img {
  position: absolute;
  width: 106%;
  height: 106%;
  max-width: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center 42%;
  display: block;
}
.vx-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      #061528 0%,
      rgba(6, 21, 40, 0.92) 30%,
      rgba(6, 21, 40, 0.55) 48%,
      rgba(6, 21, 40, 0.2) 62%,
      transparent 82%
    ),
    linear-gradient(
      180deg,
      rgba(4, 14, 28, 0.35) 0%,
      transparent 28%,
      transparent 100%
    );
  pointer-events: none;
}
.vx-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 38%);
  gap: 16px;
  align-items: stretch;
  padding-top: 72px;
  padding-bottom: 0;
  min-height: clamp(400px, 52vh, 500px);
}
.vx-hero-content {
  max-width: 580px;
  position: relative;
  z-index: 3;
  align-self: center;
  padding-bottom: 28px;
}
.vx-hero-content .vx-eyebrow { margin-bottom: 12px; }
.vx-hero-intro .vx-hero-title { margin-bottom: 14px; }
.vx-hero-detail .vx-hero-lead { margin-top: 0; }
.vx-hero-title {
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  color: #fff;
}
.vx-hero-typewriter {
  display: block;
  margin-top: 6px;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.vx-hero-typewriter-slot {
  display: inline-block;
  min-width: 22ch;
  text-align: left;
  vertical-align: bottom;
}
.vx-hero-typewriter-word {
  font-weight: 900;
  color: var(--vx-blue-light);
}
.vx-hero-tagline {
  display: block;
  margin-top: 6px;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
}
.vx-hero-typewriter-cursor {
  display: inline-block;
  width: 3px;
  height: 0.92em;
  margin-left: 2px;
  background: var(--vx-blue-light);
  vertical-align: text-bottom;
  border-radius: 1px;
  animation: vxTypewriterBlink 1s step-end infinite;
}
@keyframes vxTypewriterBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.vx-hero-lead {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  margin: 0 0 18px;
  max-width: 400px;
  line-height: 1.65;
}
.vx-hero-pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 18px;
  margin-bottom: 22px;
  list-style: none;
  padding: 0;
}
.vx-hero-pills li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}
.vx-pill-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
  color: var(--vx-blue-light);
  border: 1.75px solid var(--vx-blue-light);
  box-shadow: 0 0 12px rgba(0, 86, 255, 0.15);
}
.vx-pill-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.vx-pill-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}
.vx-pill-sub {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}
.vx-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.vx-hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: stretch;
  min-height: 0;
  z-index: 2;
}
.vx-hero-shield {
  position: absolute;
  right: 38%;
  top: 2%;
  transform: translateY(0);
  width: min(230px, 82%);
  aspect-ratio: 1;
  z-index: 1;
  pointer-events: none;
}
.vx-hero-shield-stage {
  position: relative;
  width: 100%;
  height: 100%;
}
.vx-hero-shield-svg {
  position: absolute;
  inset: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  z-index: 4;
  animation: vxHeroShieldFloat 4s ease-in-out infinite;
}
.vx-hero-shield-path {
  animation: vxHeroShieldPulse 3s ease-in-out infinite;
}
.vx-hero-shield-check {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: vxHeroCheckDraw 1.2s ease 0.6s forwards, vxHeroCheckGlow 2.5s ease 1.8s infinite;
}
@keyframes vxHeroCheckDraw { to { stroke-dashoffset: 0; } }
@keyframes vxHeroCheckGlow {
  0%, 100% { opacity: 1; filter: drop-shadow(0 0 4px rgba(147, 197, 253, 0.6)); }
  50% { opacity: 0.75; filter: drop-shadow(0 0 12px rgba(147, 197, 253, 1)); }
}
@keyframes vxHeroShieldFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes vxHeroShieldPulse {
  0%, 100% { fill: rgba(37, 99, 235, 0.1); }
  50% { fill: rgba(37, 99, 235, 0.22); }
}
.vx-hero-shield-glow {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.35) 0%, transparent 70%);
  animation: vxHeroGlowBreath 3s ease-in-out infinite;
  z-index: 1;
}
@keyframes vxHeroGlowBreath {
  0%, 100% { transform: scale(0.95); opacity: 0.6; }
  50% { transform: scale(1.08); opacity: 1; }
}
.vx-hero-shield-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(96, 165, 250, 0.2);
  z-index: 2;
}
.vx-hero-shield-ring--1 { animation: vxHeroRingExpand 3s ease-out infinite; }
.vx-hero-shield-ring--2 { animation: vxHeroRingExpand 3s ease-out 1s infinite; }
.vx-hero-shield-ring--3 { animation: vxHeroRingExpand 3s ease-out 2s infinite; }
@keyframes vxHeroRingExpand {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}
.vx-hero-shield-radar {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  z-index: 3;
  opacity: 0.5;
}
.vx-hero-shield-radar::after {
  content: '';
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(37, 99, 235, 0.35) 40deg, transparent 80deg);
  animation: vxHeroRadar 4s linear infinite;
}
@keyframes vxHeroRadar { to { transform: rotate(360deg); } }
.vx-hero-shield-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(96, 165, 250, 0.15);
  z-index: 2;
}
.vx-hero-shield-orbit--a { animation: vxHeroOrbit 12s linear infinite; }
.vx-hero-shield-orbit--b { animation: vxHeroOrbit 18s linear infinite reverse; }
.vx-hero-shield-orbit span {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: #60a5fa;
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.45);
}
@keyframes vxHeroOrbit { to { transform: rotate(360deg); } }
.vx-hero-photo {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 0;
}
.vx-hero-photo img {
  max-height: min(440px, calc(52vh - 72px));
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 16px 48px rgba(0, 0, 0, 0.45));
}

/* Launch Banner — Sicherheitszentrum Frühzugang */
.vx-launch {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 86, 255, 0.22) 0%, transparent 55%),
    linear-gradient(180deg, #040e1c 0%, #061528 40%, #0a1e3d 100%);
  padding: 0;
  border-top: 3px solid var(--vx-blue);
  box-shadow:
    inset 0 1px 0 rgba(96, 165, 250, 0.35),
    0 12px 48px rgba(0, 86, 255, 0.18);
}
#fruehzugang {
  scroll-margin-top: var(--vx-scroll-offset);
}
.vx-launch-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 90vw);
  height: 280px;
  background: radial-gradient(ellipse at center, rgba(0, 86, 255, 0.35) 0%, transparent 70%);
  pointer-events: none;
  animation: vxLaunchGlow 4s ease-in-out infinite alternate;
}
@keyframes vxLaunchGlow {
  from { opacity: 0.6; transform: translateX(-50%) scale(1); }
  to { opacity: 1; transform: translateX(-50%) scale(1.08); }
}
.vx-launch-strip {
  overflow: hidden;
  background: linear-gradient(90deg, var(--vx-blue) 0%, #1d4ed8 50%, var(--vx-blue) 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 0;
  user-select: none;
}
.vx-launch-strip--top {
  margin-bottom: 40px;
}
.vx-launch-strip--bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.vx-launch-strip-track {
  display: flex;
  width: max-content;
  animation: vxLaunchStripScroll 32s linear infinite;
  will-change: transform;
}
.vx-launch-strip--reverse .vx-launch-strip-track {
  animation-direction: reverse;
  animation-duration: 36s;
}
.vx-launch-strip-set {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}
.vx-launch-strip-set span {
  flex-shrink: 0;
  padding: 0 2.5rem;
  white-space: nowrap;
}
@keyframes vxLaunchStripScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.vx-launch-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}
.vx-launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #93c5fd;
  background: rgba(0, 86, 255, 0.18);
  border: 1px solid rgba(96, 165, 250, 0.4);
  box-shadow: 0 0 20px rgba(0, 86, 255, 0.25);
  animation: vxLaunchBadgePulse 2.5s ease-in-out infinite;
}
@keyframes vxLaunchBadgePulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 86, 255, 0.25); }
  50% { box-shadow: 0 0 32px rgba(0, 86, 255, 0.5); }
}
.vx-launch-title {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  color: #fff;
}
.vx-launch-date {
  display: block;
  margin-top: 6px;
  color: var(--vx-blue-light);
  text-shadow: 0 0 40px rgba(59, 139, 255, 0.5);
}
.vx-launch-lead {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 24px;
  max-width: 540px;
}
.vx-launch-subhead {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 12px;
}
.vx-launch-features {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.vx-launch-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  padding: 7px 0;
}
.vx-launch-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #86efac;
  background: rgba(34, 197, 94, 0.18);
  border: 1px solid rgba(74, 222, 128, 0.4);
}
.vx-launch-note {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
  margin: 0;
  max-width: 520px;
  padding-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.vx-launch-signup {
  position: relative;
}
.vx-launch-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(96, 165, 250, 0.35);
  border-radius: var(--vx-radius);
  padding: clamp(24px, 4vw, 36px);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(0, 86, 255, 0.12) inset,
    0 0 48px rgba(0, 86, 255, 0.15);
  backdrop-filter: blur(12px);
}
.vx-launch-card-title {
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 800;
  margin: 0 0 8px;
  color: #fff;
  letter-spacing: -0.02em;
}
.vx-launch-card-lead {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
  margin: 0 0 24px;
}
.vx-launch-form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vx-launch-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.vx-launch-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
}
.vx-launch-field input[type="text"],
.vx-launch-field input[type="email"],
.vx-launch-field input[type="tel"] {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  color: #111827;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 10px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.vx-launch-field input[type="text"]:focus,
.vx-launch-field input[type="email"]:focus,
.vx-launch-field input[type="tel"]:focus {
  outline: none;
  border-color: var(--vx-blue);
  box-shadow: 0 0 0 4px rgba(0, 86, 255, 0.2);
}
.vx-launch-dsgvo {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 0;
}
.vx-launch-dsgvo input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--vx-blue);
  cursor: pointer;
}
.vx-launch-dsgvo label {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}
.vx-launch-dsgvo a {
  color: var(--vx-blue-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}
.vx-launch-dsgvo a:hover {
  color: #fff;
}
.vx-launch-submit {
  margin-top: 4px;
}
.vx-launch-submit input[type="submit"] {
  width: 100%;
  padding: 14px 24px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: var(--vx-blue);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 24px var(--vx-blue-glow);
  transition: background 0.15s, box-shadow 0.15s, transform 0.15s;
}
.vx-launch-submit input[type="submit"]:hover {
  background: #0046d4;
  box-shadow: 0 8px 32px var(--vx-blue-glow);
  transform: translateY(-1px);
}
.vx-launch-card--success {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
.vx-launch-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #86efac;
  background: rgba(34, 197, 94, 0.15);
  border: 2px solid rgba(74, 222, 128, 0.45);
  box-shadow: 0 0 32px rgba(34, 197, 94, 0.2);
}
.vx-launch-card--success .vx-launch-card-lead {
  margin-bottom: 0;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

/* Sections — abwechselnd dunkel/hell wie Referenz */
.vx-section {
  padding: 80px 0;
  color: #f1f5f9;
}
.vx-section-dark {
  background: #061528;
  color: #f1f5f9;
}
.vx-section-dark .vx-section-head h2 { color: #fff; }
.vx-section-dark .vx-section-head p { color: rgba(255, 255, 255, 0.55); }
.vx-section-light {
  background: #ffffff;
  color: #111827;
}
.vx-section-light .vx-section-head h2 { color: #111827; }
.vx-section-light .vx-section-head p { color: #6b7280; }
#bereiche,
#ueber,
#kontakt {
  scroll-margin-top: var(--vx-scroll-offset);
}
#bereiche-section .vx-section-head {
  margin-bottom: 14px;
}
#bereiche-section .vx-section-head h2 {
  margin-bottom: 4px;
}
#bereiche-section.vx-section {
  padding-top: 12px;
  padding-bottom: 20px;
}
#ueber-section.vx-section {
  padding-top: 8px;
  padding-bottom: 12px;
  background: #ffffff;
}
#ueber-section .vx-section-head {
  margin-bottom: 14px;
}
#lex.vx-section {
  padding-top: 8px;
  padding-bottom: 48px;
  background: #ffffff;
}
.vx-section-muted {
  background: #eef1f5;
  color: #111827;
}
.vx-section-founder {
  background: #eef1f5;
  color: #111827;
  padding: 72px 0;
}

/* Trainer Card — dunkle Card auf hellem Hintergrund (Referenz) */
.vx-trainer-card {
  display: grid;
  grid-template-columns: min(220px, 26%) 1fr;
  align-items: stretch;
  gap: 0;
  background: linear-gradient(145deg, #071222 0%, #0a1628 55%, #0c1a32 100%);
  border: 1px solid rgba(59, 130, 246, 0.18);
  border-radius: var(--vx-radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  color: #f1f5f9;
}
.vx-trainer-photo {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 14px;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(0, 86, 255, 0.06) 0%, transparent 100%);
  overflow: visible;
}
.vx-trainer-photo::before {
  content: '';
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 72%;
  height: 78%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(59, 130, 246, 0.28) 0%,
    rgba(37, 99, 235, 0.14) 42%,
    transparent 72%
  );
  pointer-events: none;
  z-index: 0;
}
.vx-trainer-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  object-position: bottom center;
  filter:
    drop-shadow(0 0 6px rgba(96, 165, 250, 0.95))
    drop-shadow(0 0 14px rgba(59, 130, 246, 0.65))
    drop-shadow(0 0 28px rgba(37, 99, 235, 0.35))
    drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
}
.vx-trainer-body {
  display: grid;
  grid-template-columns: 1fr min(280px, 34%);
  gap: 32px;
  align-items: center;
  padding: 36px 36px 36px 28px;
  min-width: 0;
}
.vx-trainer-main .vx-eyebrow {
  color: var(--vx-blue-light);
  margin-bottom: 10px;
}
.vx-trainer-main h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.12;
}
.vx-trainer-bio {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
  margin: 0 0 22px;
  max-width: 420px;
}
.vx-trainer-card .vx-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  font-size: 13px;
  padding: 10px 20px;
}
.vx-trainer-card .vx-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}
.vx-trainer-quote {
  margin: 0;
  padding: 0 0 0 8px;
  border: none;
  align-self: center;
}
.vx-trainer-quote .vx-quote-mark {
  font-size: 72px;
  line-height: 0.75;
  color: var(--vx-blue);
  opacity: 0.9;
  display: block;
  margin-bottom: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}
.vx-trainer-quote p {
  font-size: 15px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 16px;
  line-height: 1.65;
}
.vx-trainer-quote cite {
  font-style: normal;
  font-size: 26px;
  font-weight: 400;
  color: var(--vx-blue-light);
  font-family: "Segoe Script", "Brush Script MT", "Lucida Handwriting", cursive;
}

.vx-section-head { margin-bottom: 44px; }
.vx-section-head--center { text-align: center; }
.vx-section-head h2 {
  font-size: clamp(28px, 3.2vw, 36px);
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  color: #fff;
}
.vx-section-head p {
  margin: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
}
.vx-section-muted .vx-section-head h2 { color: #111827; }
.vx-section-muted .vx-section-head p { color: #6b7280; }

/* Distributor cards */
.vx-distributor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(240px, 0.68fr);
  gap: 30px;
  align-items: stretch;
}
.vx-dist-card {
  border-radius: var(--vx-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s;
  isolation: isolate;
}
.vx-dist-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
}
.vx-dist-card--featured,
.vx-dist-card--lex {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  align-self: stretch;
  box-sizing: border-box;
  overflow: hidden;
}
.vx-dist-card--featured {
  background: #061528;
  border: 1.5px solid rgba(96, 165, 250, 0.62);
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.3),
    0 0 32px -3px rgba(0, 86, 255, 0.42),
    0 0 48px -8px rgba(37, 99, 235, 0.2),
    0 10px 28px rgba(0, 0, 0, 0.18);
  color: #f1f5f9;
}
.vx-dist-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #061528;
}
.vx-dist-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 49% center;
  display: block;
}
.vx-dist-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(6, 21, 40, 0.98) 0%,
    rgba(6, 21, 40, 0.95) 34%,
    rgba(6, 21, 40, 0.82) 46%,
    rgba(6, 21, 40, 0.52) 56%,
    rgba(6, 21, 40, 0.22) 66%,
    rgba(6, 21, 40, 0.04) 78%,
    transparent 90%
  );
  pointer-events: none;
}
.vx-dist-card--featured:hover {
  transform: translateY(-3px);
  border-color: rgba(147, 197, 253, 0.78);
  box-shadow:
    0 0 0 1px rgba(96, 165, 250, 0.4),
    0 0 40px -2px rgba(0, 86, 255, 0.5),
    0 0 56px -6px rgba(37, 99, 235, 0.24),
    0 14px 32px rgba(0, 0, 0, 0.22);
}
.vx-dist-card--featured .vx-dist-card-body > p { color: rgba(255, 255, 255, 0.72); }
.vx-dist-card--featured .vx-checklist li { color: rgba(255, 255, 255, 0.9); }
.vx-dist-card--featured .vx-badge-blue {
  background: rgba(0, 86, 255, 0.42);
  color: #fff;
  border: 1px solid rgba(147, 197, 253, 0.28);
}
.vx-dist-card-title {
  margin: 10px 0 14px;
  line-height: 1.12;
  font-size: clamp(20px, 1.95vw, 27px);
  font-weight: 800;
  letter-spacing: -0.025em;
  white-space: nowrap;
}
.vx-dist-card-title-main,
.vx-dist-card-title-accent {
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}
.vx-dist-card-title-main {
  color: #fff;
}
.vx-dist-card-title-accent {
  color: var(--vx-blue-light);
}
.vx-dist-card-title--lex .vx-dist-card-title-accent {
  color: #ff6b84;
}
.vx-dist-card-lower {
  margin-top: auto;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 0;
}
.vx-dist-card-lower .vx-checklist {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  margin: 0;
  padding: 0;
  gap: 0;
}
.vx-dist-card-lower > .vx-btn,
.vx-dist-card-lower .vx-dist-card-actions {
  flex-shrink: 0;
  margin-top: 12px;
}
.vx-dist-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
  margin-top: auto;
}
.vx-dist-card-hint {
  margin: 0;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.4;
}
.vx-dist-card--light {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  overflow: hidden;
  background: #fff;
  color: var(--vx-text);
  border: 1.5px solid rgba(228, 0, 43, 0.55);
  box-shadow:
    0 0 0 1px rgba(200, 16, 46, 0.26),
    0 0 32px -3px rgba(200, 16, 46, 0.38),
    0 0 48px -8px rgba(200, 16, 46, 0.18),
    0 10px 28px rgba(0, 0, 0, 0.08);
}
.vx-dist-card--light:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 45, 77, 0.72);
  box-shadow:
    0 0 0 1px rgba(228, 0, 43, 0.34),
    0 0 40px -2px rgba(200, 16, 46, 0.44),
    0 0 56px -6px rgba(200, 16, 46, 0.22),
    0 14px 32px rgba(0, 0, 0, 0.1);
}
.vx-dist-card-body {
  padding: 36px 36px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.vx-dist-card--featured .vx-dist-card-body,
.vx-dist-card--lex .vx-dist-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 18px 18px 18px 20px;
}
.vx-dist-card--featured .vx-dist-card-body {
  position: relative;
  z-index: 2;
  max-width: 62%;
  background: transparent;
}
.vx-dist-card--featured .vx-dist-card-title {
  margin: 8px 0 12px;
}
.vx-dist-card--featured .vx-dist-card-body > p {
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.62;
}
.vx-dist-card--featured .vx-checklist li {
  font-size: 13.5px;
  font-weight: 500;
  padding: 4px 0;
  gap: 12px;
}
.vx-dist-card--featured .vx-checklist .chk {
  width: 22px;
  height: 22px;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 0;
  background: rgba(0, 86, 255, 0.32);
  color: #bfdbfe;
  border: 1px solid rgba(96, 165, 250, 0.42);
}
.vx-dist-card--featured .vx-btn,
.vx-dist-card--lex .vx-btn {
  font-size: 13px;
  padding: 10px 18px;
  line-height: 1.2;
  min-height: 40px;
  box-sizing: border-box;
  flex-shrink: 0;
}
.vx-dist-card--featured .vx-btn-primary {
  border: 1px solid transparent;
}
.vx-dist-card--lex .vx-btn-red {
  border: 1px solid rgba(255, 255, 255, 0.12);
  align-self: flex-start;
}
.vx-dist-card--featured .vx-dist-card-hint {
  font-size: 12.5px;
}
.vx-dist-card--featured .vx-dist-card-actions {
  gap: 8px 10px;
}
.vx-dist-card-actions--featured {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex: 0 0 auto;
  flex-shrink: 0;
  margin-top: 12px;
  padding: 0;
  width: 100%;
}
.vx-dist-card-actions--featured .vx-dist-card-hint {
  margin: 0 0 0 auto;
  text-align: right;
  flex: 1 1 auto;
  min-width: 0;
  max-width: none;
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}
.vx-dist-card-hint-desk {
  display: inline;
  white-space: nowrap;
}
.vx-dist-card-hint-mob {
  display: none;
}
.vx-dist-card--featured .vx-badge-blue {
  padding: 5px 11px;
  font-size: 9px;
  margin-bottom: 2px;
}
.vx-dist-card--light .vx-dist-card-body {
  position: relative;
  z-index: 3;
  max-width: 58%;
  padding: 16px 12px 18px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.vx-dist-card--light .vx-dist-card-body h3 {
  font-size: 17px;
  margin: 6px 0 6px;
  line-height: 1.12;
}
.vx-dist-card--light .vx-dist-card-body > p {
  font-size: 11.5px;
  line-height: 1.45;
  margin-bottom: 8px;
}
.vx-dist-card--light .vx-checklist {
  margin-bottom: 10px;
  flex: 1;
}
.vx-dist-card--light .vx-checklist li {
  font-size: 10.5px;
  padding: 2px 0;
  gap: 6px;
}
.vx-dist-card--light .vx-checklist .chk {
  width: 16px;
  height: 16px;
  font-size: 8px;
}
.vx-dist-card--light .vx-badge-red {
  padding: 4px 10px;
  font-size: 9px;
}
.vx-dist-card--light .vx-btn {
  font-size: 11.5px;
  padding: 8px 14px;
  align-self: flex-start;
  margin-top: auto;
}
.vx-dist-card-body h3:not(.vx-dist-card-title) {
  font-size: 24px;
  font-weight: 800;
  margin: 12px 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.vx-dist-card-body > p {
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.62);
}
.vx-dist-card--light .vx-dist-card-body > p { color: var(--vx-muted); }

.vx-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.vx-badge-blue {
  background: rgba(0, 86, 255, 0.22);
  color: #93c5fd;
  border: 1px solid rgba(147, 197, 253, 0.25);
}
.vx-badge-green {
  background: #dcfce7;
  color: var(--vx-green);
}
.vx-badge-red {
  background: rgba(200, 16, 46, 0.1);
  color: var(--vx-red);
  border: 1px solid rgba(228, 0, 43, 0.32);
}

.vx-checklist { margin: 0 0 26px; flex: 1; }
.vx-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.88);
}
.vx-dist-card--light .vx-checklist li { color: #374151; }
.vx-checklist .chk {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.vx-checklist--blue .chk {
  background: rgba(0, 86, 255, 0.28);
  color: #bfdbfe;
  border: 1px solid rgba(96, 165, 250, 0.35);
}
.vx-checklist--green .chk { background: #dcfce7; color: var(--vx-green); }
.vx-checklist--red .chk {
  background: rgba(200, 16, 46, 0.1);
  color: var(--vx-red);
  border: 1px solid rgba(228, 0, 43, 0.32);
}

/* Card visuals */
.vx-dist-card-visual {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  margin-top: auto;
}
.vx-dist-card-visual--dark {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 86, 255, 0.08) 100%);
}
.vx-dist-card-visual img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center 30%;
}
.vx-dist-card-visual--it {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 62%;
  max-width: 268px;
  margin: 0;
  min-height: 0;
  padding: 0;
  border: none;
  background: none;
  display: block;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}
.vx-it-photo-wrap {
  position: relative;
  width: 100%;
  line-height: 0;
  filter: drop-shadow(0 6px 14px rgba(15, 23, 42, 0.1));
}
.vx-it-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: right bottom;
  transform: scaleX(-1) translateY(6%);
  mix-blend-mode: multiply;
}
.vx-it-screen-label {
  position: absolute;
  right: 10%;
  top: 10%;
  width: 41%;
  height: 34%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  padding: 4px 3px;
  background: linear-gradient(145deg, #c8102e 0%, #e4002b 100%);
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
  text-align: center;
  line-height: 1.05;
}
.vx-it-screen-label span {
  font-size: clamp(6px, 1.55vw, 8px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.vx-it-screen-label strong {
  font-size: clamp(8px, 2vw, 11px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

/* Computerservice Lex — wie Mockup: Hintergrund ganze Card, Stoffi darüber */
.vx-dist-card--lex {
  background: #0a0506;
  color: #f8fafc;
  border: 1.5px solid rgba(228, 0, 43, 0.55);
  box-shadow:
    0 0 0 1px rgba(200, 16, 46, 0.26),
    0 0 32px -3px rgba(200, 16, 46, 0.38),
    0 0 48px -8px rgba(200, 16, 46, 0.18),
    0 10px 28px rgba(0, 0, 0, 0.18);
}
.vx-dist-card--lex:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 45, 77, 0.72);
  box-shadow:
    0 0 0 1px rgba(228, 0, 43, 0.34),
    0 0 40px -2px rgba(200, 16, 46, 0.44),
    0 0 56px -6px rgba(200, 16, 46, 0.22),
    0 14px 32px rgba(0, 0, 0, 0.22);
}
.vx-dist-card--lex .vx-dist-card-bg {
  inset: 0;
  background: #120608;
  overflow: hidden;
  border-radius: inherit;
}
.vx-dist-card--lex .vx-dist-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  display: block;
  transform: scale(1.025);
  transform-origin: center center;
}
.vx-dist-card-overlay--lex {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: linear-gradient(
    100deg,
    rgba(12, 6, 8, 0.98) 0%,
    rgba(12, 6, 8, 0.95) 34%,
    rgba(12, 6, 8, 0.82) 46%,
    rgba(12, 6, 8, 0.52) 56%,
    rgba(12, 6, 8, 0.22) 66%,
    rgba(12, 6, 8, 0.04) 78%,
    transparent 90%
  );
  pointer-events: none;
}
.vx-lex-person-wrap {
  position: absolute;
  right: -3%;
  bottom: 0;
  z-index: 4;
  width: 52%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}
.vx-lex-person-wrap::before {
  content: '';
  position: absolute;
  bottom: 18%;
  right: 4%;
  width: 62%;
  height: 52%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 45, 77, 0.32) 0%,
    rgba(228, 0, 43, 0.16) 45%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}
.vx-lex-person {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 72%;
  width: auto;
  max-width: none;
  display: block;
  object-fit: contain;
  object-position: right bottom;
  filter:
    drop-shadow(0 0 4px rgba(255, 100, 120, 0.9))
    drop-shadow(0 0 10px rgba(228, 0, 43, 0.55))
    drop-shadow(0 0 18px rgba(200, 16, 46, 0.28));
}
.vx-dist-card--lex .vx-dist-card-body {
  position: relative;
  z-index: 3;
  max-width: 70%;
}
.vx-dist-card--lex .vx-dist-card-body h3,
.vx-dist-card--lex .vx-dist-card-title {
  margin: 8px 0 12px;
}
.vx-dist-card--lex .vx-dist-card-body > p {
  font-size: 14px;
  line-height: 1.62;
  margin-bottom: 12px;
  max-width: 36em;
  color: rgba(255, 255, 255, 0.72);
}
.vx-dist-card--lex .vx-checklist li {
  font-size: 13.5px;
  font-weight: 500;
  padding: 4px 0;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.92);
}
.vx-dist-card--lex .vx-checklist--red .chk {
  width: 22px;
  height: 22px;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 0;
  background: rgba(200, 16, 46, 0.35);
  color: #fecdd3;
  border: 1px solid rgba(255, 77, 109, 0.45);
}
.vx-dist-card--lex .vx-badge-red {
  background: rgba(200, 16, 46, 0.42);
  color: #fff;
  border: 1px solid rgba(255, 120, 140, 0.35);
  padding: 5px 11px;
  font-size: 9px;
}
.vx-dist-card--lex .vx-text-red {
  color: #ff6b84;
}

/* Value cards */
.vx-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: stretch;
}
.vx-value-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  height: 100%;
  background: #fff;
  border-radius: var(--vx-radius-sm);
  padding: 16px 16px 14px;
  border: 1px solid #e8ecf1;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.18s, box-shadow 0.18s;
}
.vx-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}
.vx-value-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0;
  background: #dbeafe;
  color: var(--vx-blue);
}
.vx-value-body {
  min-width: 0;
  flex: 1;
}
.vx-value-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 5px;
  color: var(--vx-text);
}
.vx-value-card p {
  font-size: 12.5px;
  color: var(--vx-muted);
  margin: 0;
  line-height: 1.45;
}

/* Contact bar */
.vx-contact-bar {
  background: #eef1f5;
  color: var(--vx-text);
  padding: 32px 0;
}
.vx-contact-bar-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.vx-contact-bar-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #dbeafe;
  color: var(--vx-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vx-contact-bar-text {
  flex: 1;
  min-width: 200px;
}
.vx-contact-bar-text strong {
  display: block;
  font-size: 17px;
  margin-bottom: 2px;
}
.vx-contact-bar-text span { font-size: 14px; color: var(--vx-muted); }

/* Footer */
.vx-footer {
  background: #040c16;
  padding: 56px 0 0;
}
.vx-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 36px;
  padding-bottom: 44px;
}
.vx-footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin: 16px 0 0;
  max-width: 220px;
  line-height: 1.6;
}
.vx-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.vx-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  transition: background 0.15s, color 0.15s;
}
.vx-socials a:hover { background: var(--vx-blue); color: #fff; }
.vx-social-placeholder {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
}
.vx-footer-col h3 {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.92);
}
.vx-footer-col ul li { margin-bottom: 10px; }
.vx-footer-col a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.15s;
}
.vx-footer-col a:hover { color: #fff; }
.vx-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
}
.vx-footer-bottom span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* Legal */
.vx-legal-page { padding: 120px 0 80px; }
.vx-page-legal .vx-header {
  position: fixed;
  background: rgba(6, 21, 40, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.vx-legal-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--vx-radius);
  padding: 36px;
  max-width: 760px;
}
.vx-legal-card h1 { margin: 0 0 20px; font-size: 28px; }
.vx-legal-card p { color: rgba(255, 255, 255, 0.65); margin: 0; }

/* Responsive */
@media (max-width: 1100px) {
  .vx-hero-pills { grid-template-columns: repeat(2, 1fr); gap: 18px 24px; }
  .vx-launch-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .vx-launch-signup {
    max-width: 480px;
  }
  .vx-trainer-body {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 28px 32px;
  }
  .vx-trainer-quote { padding-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 24px; }
}

@media (max-width: 960px) {
  .vx-page-home .vx-header {
    position: fixed;
    background: rgba(4, 14, 28, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .vx-page-home .vx-header.is-scrolled {
    background: rgba(4, 14, 28, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .vx-header-inner { grid-template-columns: 1fr auto; }
  .vx-nav-toggle { display: flex; }
  .vx-header-cta { display: none; }
  .vx-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(6, 21, 40, 0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 16px var(--vx-pad) 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
    justify-self: stretch;
  }
  .vx-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .vx-nav a { padding: 12px 14px; }
  .vx-nav-dropdown {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .vx-nav-dropdown-trigger { padding: 12px 14px; }
  .vx-nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin: 0 14px 8px;
    padding: 6px 0 8px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    box-shadow: none;
  }
  .vx-nav.is-open .vx-nav-dropdown-menu {
    display: flex;
  }
  .vx-nav-dropdown-sep { display: none; }
  .vx-nav-dropdown-menu a {
    width: 100%;
    padding: 10px 12px;
  }
  .vx-hero {
    min-height: auto;
    padding-bottom: 0;
    display: block;
  }
  .vx-hero-bg img {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center center;
  }
  .vx-hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(6, 21, 40, 0.84) 0%,
        rgba(6, 21, 40, 0.52) 40%,
        rgba(6, 21, 40, 0.2) 68%,
        rgba(6, 21, 40, 0.08) 100%
      ),
      linear-gradient(
        180deg,
        rgba(4, 14, 28, 0.62) 0%,
        rgba(6, 21, 40, 0.28) 42%,
        rgba(6, 21, 40, 0.22) 72%,
        rgba(6, 21, 40, 0.55) 100%
      );
  }
  .vx-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(128px, 42%);
    grid-template-rows: auto auto auto auto;
    grid-template-areas:
      "intro intro"
      "lead lead"
      "pills visual"
      "actions actions";
    align-content: start;
    gap: 0 10px;
    position: relative;
    min-height: auto;
    padding-top: max(76px, calc(env(safe-area-inset-top, 0px) + 68px));
    padding-bottom: max(16px, env(safe-area-inset-bottom, 0px));
  }
  .vx-hero-visual {
    grid-area: visual;
    position: relative;
    inset: unset;
    width: auto;
    max-width: none;
    height: auto;
    min-height: 0;
    margin: 6px 0 -10px;
    padding: 0;
    overflow: visible;
    z-index: 2;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: end;
  }
  .vx-hero-content {
    display: contents;
  }
  .vx-hero-detail {
    display: contents;
  }
  .vx-hero-intro {
    grid-area: intro;
    position: relative;
    z-index: 3;
    max-width: 88%;
    padding-bottom: 0;
  }
  .vx-hero-intro .vx-hero-title {
    margin-bottom: 10px;
    text-shadow: 0 2px 20px rgba(4, 14, 28, 0.7);
  }
  .vx-hero-lead {
    grid-area: lead;
    max-width: 92%;
    font-size: 13.5px;
    margin-bottom: 10px;
    text-shadow: 0 1px 14px rgba(4, 14, 28, 0.6);
  }
  .vx-hero-pills {
    grid-area: pills;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
    align-self: start;
    position: relative;
    z-index: 3;
  }
  .vx-hero-actions {
    grid-area: actions;
    margin-top: 10px;
    padding-top: 0;
    flex-direction: row;
    align-items: stretch;
    gap: 10px;
    position: relative;
    z-index: 4;
  }
  .vx-hero-actions .vx-btn {
    flex: 1;
    width: auto;
    min-width: 0;
    justify-content: center;
    padding: 11px 12px;
    font-size: 12.5px;
  }
  .vx-hero-shield {
    position: absolute;
    left: 50%;
    right: auto;
    top: -8%;
    bottom: auto;
    width: min(170px, 90%);
    margin: 0;
    z-index: 0;
    transform: translateX(calc(-50% - 12px));
    opacity: 0.42;
  }
  .vx-hero-photo {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    top: auto;
    width: 118%;
    height: auto;
    min-height: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin: 10px -12% -14px 0;
  }
  .vx-hero-photo img {
    height: auto;
    max-height: clamp(210px, 52vw, 270px);
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: right bottom;
    filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.35));
  }
  .vx-distributor-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .vx-dist-card--lex .vx-dist-card-body {
    max-width: 100%;
    min-height: 0;
    padding: 20px 18px 22px;
  }
  .vx-dist-card--lex .vx-dist-card-bg img {
    object-position: center center;
  }
  .vx-lex-person-wrap {
    width: 54%;
    right: -2%;
  }
  .vx-lex-person {
    height: 72%;
    bottom: 0;
  }
  .vx-dist-card--featured .vx-dist-card-body {
    max-width: 100%;
    padding: 18px 18px 16px;
    min-height: 0;
  }
  .vx-dist-card-title {
    white-space: normal;
    font-size: clamp(19px, 5.2vw, 24px);
  }
  .vx-dist-card-bg img {
    object-position: 47% center;
  }
  .vx-dist-card-actions--featured {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin-top: 12px;
  }
  .vx-dist-card-actions--featured .vx-dist-card-hint {
    margin-left: auto;
    text-align: right;
    font-size: 11px;
    line-height: 1.3;
  }
  .vx-dist-card-hint-desk {
    display: none;
  }
  .vx-dist-card-hint-mob {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1px;
  }
  .vx-dist-card-hint-line {
    display: block;
    white-space: nowrap;
  }
  .vx-dist-card--featured .vx-btn,
  .vx-dist-card--lex .vx-btn {
    font-size: 12px;
    padding: 9px 14px;
    min-height: 36px;
  }
  .vx-values-grid { grid-template-columns: repeat(2, 1fr); }
  .vx-trainer-card { grid-template-columns: 1fr; }
  .vx-trainer-photo img { max-height: 280px; margin: 0 auto; }
  .vx-trainer-body { padding: 24px; text-align: center; }
  .vx-trainer-bio { margin-left: auto; margin-right: auto; }
  .vx-trainer-main .vx-btn-ghost { margin: 0 auto; }
  .vx-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  :root { --vx-scroll-offset: 76px; }

  .vx-hero-inner {
    padding-top: max(72px, calc(env(safe-area-inset-top, 0px) + 64px));
    grid-template-columns: minmax(0, 1fr) minmax(118px, 44%);
    gap: 0 8px;
  }
  .vx-hero-intro {
    max-width: 92%;
  }
  .vx-hero-lead {
    max-width: 95%;
    margin-bottom: 8px;
    line-height: 1.5;
  }
  .vx-hero-title {
    font-size: clamp(26px, 7.2vw, 34px);
    margin-bottom: 8px;
  }
  .vx-hero-typewriter {
    font-size: clamp(20px, 5.8vw, 28px);
  }
  .vx-hero-tagline {
    font-size: clamp(20px, 5.8vw, 28px);
  }
  .vx-hero-typewriter-slot {
    min-width: 18ch;
  }
  .vx-hero-pills {
    gap: 7px;
  }
  .vx-pill-icon {
    width: 30px;
    height: 30px;
  }
  .vx-pill-icon svg {
    width: 15px;
    height: 15px;
  }
  .vx-pill-title { font-size: 12px; }
  .vx-pill-sub { font-size: 10px; line-height: 1.3; }
  .vx-hero-actions {
    margin-top: 8px;
    gap: 8px;
  }
  .vx-hero-actions .vx-btn {
    padding: 10px 8px;
    font-size: 11.5px;
  }
  .vx-hero-shield {
    top: -10%;
    width: min(155px, 88%);
    opacity: 0.38;
  }
  .vx-hero-photo img {
    max-height: clamp(195px, 48vw, 250px);
    margin-top: 6px;
  }
  .vx-values-grid { grid-template-columns: 1fr; }
  .vx-footer-grid { grid-template-columns: 1fr; }
  .vx-contact-bar-inner { flex-direction: column; align-items: flex-start; }
  .vx-contact-bar .vx-btn { width: 100%; }
  .vx-launch-strip {
    font-size: 11px;
  }
  .vx-launch-strip--top {
    margin-bottom: 28px;
  }
  .vx-launch-strip--bottom {
    margin-top: 36px;
  }
  .vx-launch-field-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .vx-launch-signup {
    max-width: none;
  }
  .vx-section { padding: 56px 0; }
}

@media (max-width: 400px) {
  .vx-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(108px, 46%);
    padding-bottom: 14px;
  }
  .vx-hero-pills {
    gap: 6px;
  }
  .vx-hero-intro {
    max-width: 95%;
  }
  .vx-hero-lead {
    max-width: 98%;
  }
  .vx-hero-actions {
    margin-top: 6px;
  }
  .vx-hero-shield {
    width: min(140px, 86%);
  }
  .vx-hero-photo img {
    max-height: clamp(180px, 44vw, 230px);
    margin-top: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vx-hero-shield-svg,
  .vx-hero-shield-ring,
  .vx-hero-shield-radar::after,
  .vx-hero-shield-orbit,
  .vx-hero-shield-glow,
  .vx-hero-shield-path,
  .vx-hero-typewriter-cursor,
  .vx-launch-strip-track {
    animation: none !important;
  }
  .vx-hero-shield-check { stroke-dashoffset: 0; }
  .vx-hero-typewriter-cursor { opacity: 0; }
}
