/* ============================================================
   Voltvision Einstiegsseite — Redesign-Varianten
   Drei dunkle, elektrische Richtungen. Tokens aus dem
   Voltvision Design System (colors_and_type.css).
   Prefixes: .va- (A) · .vb- (B) · .vc- (C)
   ============================================================ */

/* shared reset inside artboards */
.vv-root *,
.vv-root *::before,
.vv-root *::after { box-sizing: border-box; }

.vv-root {
  --thg: var(--green);
  --verm: var(--accent);
  --yt: #ff3b30;
  font-family: var(--font-sans);
  color: var(--fg1);
  position: relative;
  overflow: hidden;
  width: 1280px;
}

.vv-root a { text-decoration: none; color: inherit; }

/* ── shared header ─────────────────────────────────────────── */
.vv-brand { display: flex; align-items: center; gap: 12px; }
.vv-brand img { height: 34px; width: auto; display: block; }
.vv-brand .wm {
  font-size: 1.35rem; font-weight: 800; letter-spacing: 1.5px;
  color: var(--fg1);
}
.vv-tag {
  font-size: var(--fs-micro); font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--fg2);
  display: inline-flex; align-items: center; gap: 8px;
}
.vv-tag::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 10px var(--green);
}

/* arrow shared */
.vv-arrow { width: 18px; height: 18px; flex: none; }

/* entrance animation */
@keyframes vv-rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes vv-fade { from { opacity: 0; } to { opacity: 1; } }

/* ============================================================
   VARIANT A — Persönlicher Split-Hero
   ============================================================ */
.va {
  background:
    radial-gradient(900px 500px at 100% -10%, rgba(0,184,245,0.10), transparent 60%),
    var(--bg);
  display: flex; flex-direction: column;
  min-height: 920px;
}
.va-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 30px 56px;
}
.va-hero {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  align-items: center; gap: 24px;
  padding: 24px 56px 8px; flex: 1;
}
.va-hero .col-text { animation: vv-rise 0.7s var(--ease) both; }
.va-eyebrow {
  font-size: var(--fs-micro); font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 18px;
  display: inline-block;
}
.va-h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 800;
  letter-spacing: -1px; line-height: 1.08; margin: 0 0 20px;
  text-wrap: balance;
}
.va-h1 .accent { color: var(--accent); }
.va-lead {
  font-size: 1.15rem; color: var(--fg2); line-height: 1.6;
  max-width: 460px; margin: 0 0 28px;
}
.va-sign {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 8px 8px 8px;
}
.va-sign .who { font-size: 0.95rem; }
.va-sign .who b { color: var(--fg1); font-weight: 700; }
.va-sign .who span { color: var(--fg2); display: block; font-size: 0.82rem; }

.va-portrait {
  position: relative; height: 560px;
  display: flex; align-items: flex-end; justify-content: center;
  animation: vv-fade 0.9s var(--ease) both;
}
.va-portrait .disc {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,184,245,0.30), rgba(0,184,245,0.05) 55%, transparent 72%);
  filter: blur(2px);
}
.va-portrait .ring {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  width: 380px; height: 380px; border-radius: 50%;
  border: 1px solid rgba(0,184,245,0.35);
}
.va-portrait img {
  position: relative; height: 560px; width: auto;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.5));
}

.va-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  padding: 12px 56px 40px;
}
.va-card {
  position: relative; overflow: hidden;
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 26px 28px;
  display: flex; flex-direction: column; align-items: flex-start;
  transition: transform var(--t-slow) var(--ease),
              border-color var(--t-slow) var(--ease),
              background var(--t-slow) var(--ease),
              box-shadow var(--t-slow) var(--ease);
  animation: vv-rise 0.7s var(--ease) both;
}
.va-card:nth-child(1) { animation-delay: 0.10s; }
.va-card:nth-child(2) { animation-delay: 0.20s; }
.va-card:nth-child(3) { animation-delay: 0.30s; }
.va-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0;
  transition: opacity var(--t-slower) var(--ease);
}
.va-card:hover { transform: translateY(-5px); background: var(--bg-hover); }
.va-card:hover::before { opacity: 1; }
.va-card.thg:hover  { border-color: var(--thg);  box-shadow: var(--shadow-green); }
.va-card.verm:hover { border-color: var(--verm); box-shadow: var(--shadow-cyan); }
.va-card.yt:hover   { border-color: var(--yt);   box-shadow: 0 20px 48px rgba(255,59,48,0.14); }
.va-card.thg::before  { background: radial-gradient(ellipse at top left, rgba(0,217,126,0.10), transparent 65%); }
.va-card.verm::before { background: radial-gradient(ellipse at top left, rgba(0,184,245,0.10), transparent 65%); }
.va-card.yt::before   { background: radial-gradient(ellipse at top left, rgba(255,59,48,0.10), transparent 65%); }

.va-tile {
  width: 52px; height: 52px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.va-tile svg { width: 26px; height: 26px; }
.va-card.thg  .va-tile { background: var(--tint-green-12); color: var(--thg); }
.va-card.verm .va-tile { background: var(--tint-cyan-12);  color: var(--verm); }
.va-card.yt   .va-tile { background: rgba(255,59,48,0.12);  color: var(--yt); }

.va-card h3 { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.3px; margin: 0 0 10px; }
.va-card p  { color: var(--fg2); font-size: 0.98rem; line-height: 1.55; margin: 0 0 22px; flex: 1; }

.va-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.95rem;
  transition: gap var(--t-base) var(--ease);
}
.va-card:hover .va-cta { gap: 13px; }
.va-card.thg  .va-cta { color: var(--thg); }
.va-card.verm .va-cta { color: var(--verm); }
.va-card.yt   .va-cta { color: var(--yt); }

.va-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 56px; border-top: 1px solid var(--border);
  color: var(--fg2); font-size: var(--fs-xs); background: var(--bg-footer);
}
.va-footer .links { display: flex; gap: 18px; }
.va-footer a:hover { color: var(--fg1); }

/* ============================================================
   VARIANT B — Dennis Spotlight · editorial rows
   ============================================================ */
.vb {
  background: var(--bg);
  min-height: 940px; position: relative;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
}
.vb-orb {
  position: absolute; border-radius: 50%; filter: blur(70px);
  pointer-events: none; z-index: 0;
}
.vb-orb.a { width: 460px; height: 460px; top: -120px; left: -100px;
  background: rgba(0,184,245,0.16); animation: vb-float1 14s ease-in-out infinite; }
.vb-orb.b { width: 380px; height: 380px; bottom: -120px; left: 30%;
  background: rgba(0,217,126,0.12); animation: vb-float2 18s ease-in-out infinite; }
@keyframes vb-float1 {
  0%,100% { transform: translate(0,0); } 50% { transform: translate(40px,30px); }
}
@keyframes vb-float2 {
  0%,100% { transform: translate(0,0); } 50% { transform: translate(-30px,-40px); }
}
@media (prefers-reduced-motion: reduce) {
  .vb-orb { animation: none !important; }
}

.vb-left {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  padding: 48px 0 40px 64px;
}
.vb-left .vb-head { display: flex; align-items: center; justify-content: space-between;
  padding-right: 48px; margin-bottom: auto; }
.vb-intro { margin: 56px 0 40px; max-width: 520px; animation: vv-rise 0.7s var(--ease) both; }
.vb-eyebrow {
  font-size: var(--fs-micro); font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 18px;
}
.vb-h1 {
  font-size: clamp(2.6rem, 4.2vw, 3.6rem); font-weight: 800;
  letter-spacing: -1px; line-height: 1.06; margin: 0 0 18px;
}
.vb-h1 .accent { color: var(--accent); }
.vb-h1 em { font-style: normal; color: var(--accent); }
.vb-sub { font-size: 1.1rem; color: var(--fg2); line-height: 1.6; margin: 0; }

.vb-rows { display: flex; flex-direction: column; margin-right: 40px; }
.vb-row {
  position: relative; display: grid;
  grid-template-columns: 48px 1fr auto; align-items: center; gap: 22px;
  padding: 26px 20px 26px 16px;
  border-top: 1px solid var(--border);
  transition: background var(--t-slow) var(--ease), padding-left var(--t-slow) var(--ease);
  animation: vv-rise 0.7s var(--ease) both;
}
.vb-rows .vb-row:last-child { border-bottom: 1px solid var(--border); }
.vb-row:nth-child(1) { animation-delay: 0.08s; }
.vb-row:nth-child(2) { animation-delay: 0.18s; }
.vb-row:nth-child(3) { animation-delay: 0.28s; }
.vb-row::before {
  content: ''; position: absolute; left: 0; top: 18%; bottom: 18%;
  width: 3px; border-radius: 3px; background: transparent;
  transition: background var(--t-slow) var(--ease);
}
.vb-row .idx { font-size: 0.95rem; font-weight: 700; color: var(--fg2);
  font-variant-numeric: tabular-nums; transition: color var(--t-slow) var(--ease); }
.vb-row .body h3 { font-size: 1.45rem; font-weight: 700; letter-spacing: -0.3px; margin: 0 0 4px; }
.vb-row .body p  { font-size: 0.98rem; color: var(--fg2); margin: 0; line-height: 1.5; }
.vb-row .go {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  color: var(--fg2);
  transition: transform var(--t-slow) var(--ease), border-color var(--t-slow) var(--ease),
              color var(--t-slow) var(--ease), background var(--t-slow) var(--ease);
}
.vb-row:hover { background: var(--bg-hover); padding-left: 26px; }
.vb-row.thg:hover::before  { background: var(--green); }
.vb-row.verm:hover::before { background: var(--accent); }
.vb-row.yt:hover::before   { background: var(--yt); }
.vb-row.thg:hover  .idx { color: var(--green); }
.vb-row.verm:hover .idx { color: var(--accent); }
.vb-row.yt:hover   .idx { color: var(--yt); }
.vb-row.thg:hover  .go { background: var(--green); border-color: var(--green); color: #021a0e; transform: translateX(4px); }
.vb-row.verm:hover .go { background: var(--accent); border-color: var(--accent); color: #031825; transform: translateX(4px); }
.vb-row.yt:hover   .go { background: var(--yt); border-color: var(--yt); color: #fff; transform: translateX(4px); }

.vb-right { position: relative; z-index: 1; overflow: hidden; }
.vb-right .glow {
  position: absolute; bottom: -60px; left: 50%; transform: translateX(-50%);
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,184,245,0.28), rgba(0,184,245,0.04) 55%, transparent 72%);
}
.vb-right .grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,184,245,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,184,245,0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 60%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 60%, #000 30%, transparent 75%);
}
.vb-right img {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  height: 880px; width: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55));
  animation: vv-fade 1s var(--ease) both;
}
.vb-badge {
  position: absolute; z-index: 3; left: 40px; bottom: 56px;
  background: rgba(15,28,46,0.85); backdrop-filter: blur(8px);
  border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  animation: vv-rise 0.8s var(--ease) 0.4s both;
}
.vb-badge .av {
  width: 40px; height: 40px; border-radius: 50%; overflow: hidden; flex: none;
  border: 2px solid var(--accent); background: var(--bg-hover);
}
.vb-badge .av img {
  position: static; transform: none; height: auto; width: 100%;
  object-fit: cover; object-position: 50% 12%; animation: none; filter: none;
  aspect-ratio: 1; }
.vb-badge .txt b { display: block; font-size: 0.95rem; color: var(--fg1); }
.vb-badge .txt span { font-size: 0.8rem; color: var(--fg2); }

/* ============================================================
   VARIANT C — Electric · energized
   ============================================================ */
.vc {
  background:
    radial-gradient(800px 600px at 50% -10%, rgba(0,184,245,0.12), transparent 60%),
    var(--bg);
  min-height: 940px; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.vc-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,184,245,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,184,245,0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 35%, #000 35%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 35%, #000 35%, transparent 85%);
  animation: vc-drift 24s linear infinite;
}
@keyframes vc-drift { from { background-position: 0 0; } to { background-position: 54px 54px; } }
.vc-spark {
  position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 10px 2px rgba(0,184,245,0.6);
  z-index: 0; opacity: 0.6;
}
.vc-spark.s1 { top: 22%; left: 16%; animation: vc-bob 6s ease-in-out infinite; }
.vc-spark.s2 { top: 64%; left: 82%; background: var(--green); box-shadow: 0 0 10px 2px rgba(0,217,126,0.6); animation: vc-bob 7.5s ease-in-out infinite 1s; }
.vc-spark.s3 { top: 38%; left: 88%; animation: vc-bob 9s ease-in-out infinite 0.5s; }
.vc-spark.s4 { top: 76%; left: 12%; background: var(--orange); box-shadow: 0 0 10px 2px rgba(255,124,42,0.55); animation: vc-bob 8s ease-in-out infinite 1.5s; }
@keyframes vc-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@media (prefers-reduced-motion: reduce) {
  .vc-bg, .vc-spark, .vc-ring { animation: none !important; }
}

.vc-header {
  position: relative; z-index: 3;
  display: flex; align-items: center; justify-content: space-between;
  padding: 30px 56px;
}
.vc-hero {
  position: relative; z-index: 2; text-align: center;
  padding: 28px 56px 8px; display: flex; flex-direction: column; align-items: center;
  animation: vv-rise 0.7s var(--ease) both;
}
.vc-portrait {
  position: relative; width: 168px; height: 168px; margin-bottom: 24px;
}
.vc-portrait .pic {
  position: absolute; inset: 10px; border-radius: 50%;
  background-image: url('assets/dennis_web.png');
  background-size: 230%; background-position: 50% 8%;
  background-repeat: no-repeat; background-color: var(--bg-hover);
  border: 2px solid rgba(0,184,245,0.5);
}
.vc-portrait .ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--accent); opacity: 0.6;
  animation: vc-ring 2.6s ease-out infinite;
}
@keyframes vc-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.28); opacity: 0; }
}
.vc-eyebrow {
  font-size: var(--fs-micro); font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.vc-h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 800;
  letter-spacing: -1px; line-height: 1.08; margin: 0 0 16px; text-wrap: balance;
}
.vc-h1 .accent { color: var(--accent); }
.vc-lead { font-size: 1.12rem; color: var(--fg2); max-width: 520px; margin: 0 auto; line-height: 1.6; }

.vc-cards {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  padding: 40px 56px 36px; margin-top: auto;
}
.vc-card {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg); padding: 30px 28px 28px;
  background: var(--bg-elevated); border: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: flex-start;
  transition: transform var(--t-slow) var(--ease), box-shadow var(--t-slow) var(--ease),
              border-color var(--t-slow) var(--ease);
  animation: vv-rise 0.7s var(--ease) both;
}
.vc-card:nth-child(1) { animation-delay: 0.12s; }
.vc-card:nth-child(2) { animation-delay: 0.22s; }
.vc-card:nth-child(3) { animation-delay: 0.32s; }
.vc-card .sweep {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-slower) var(--ease);
}
.vc-card.thg  .sweep { background: linear-gradient(90deg, var(--green), transparent); }
.vc-card.verm .sweep { background: linear-gradient(90deg, var(--accent), transparent); }
.vc-card.yt   .sweep { background: linear-gradient(90deg, var(--yt), transparent); }
.vc-card:hover { transform: translateY(-6px); }
.vc-card:hover .sweep { transform: scaleX(1); }
.vc-card.thg:hover  { border-color: var(--green); box-shadow: var(--shadow-green); }
.vc-card.verm:hover { border-color: var(--accent); box-shadow: var(--shadow-cyan); }
.vc-card.yt:hover   { border-color: var(--yt); box-shadow: 0 20px 48px rgba(255,59,48,0.16); }

.vc-emoji { font-size: 2rem; line-height: 1; margin-bottom: 18px; }
.vc-card h3 { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.3px; margin: 0 0 10px; }
.vc-card p { color: var(--fg2); font-size: 0.96rem; line-height: 1.55; margin: 0 0 22px; flex: 1; }
.vc-cta {
  display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 0.95rem;
  padding: 11px 22px; border-radius: var(--r-xs);
  transition: gap var(--t-base) var(--ease), filter var(--t-base) var(--ease);
}
.vc-card:hover .vc-cta { gap: 14px; }
.vc-card.thg  .vc-cta { background: var(--green);  color: #021a0e; }
.vc-card.verm .vc-cta { background: var(--accent); color: #031825; }
.vc-card.yt   .vc-cta { background: var(--yt);     color: #fff; }
.vc-card:hover .vc-cta { filter: brightness(1.06); }

.vc-footer {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center; gap: 18px;
  padding: 16px; color: var(--fg2); font-size: var(--fs-xs);
  border-top: 1px solid var(--border);
}
.vc-footer a:hover { color: var(--fg1); }

/* ============================================================
   VARIANT A+B — Split-Hero (A) × Dennis-Spotlight & Badge (B)
   ============================================================ */
.vab {
  position: relative; overflow: hidden;
  background:
    radial-gradient(800px 480px at 100% -8%, rgba(0,184,245,0.10), transparent 60%),
    var(--bg);
  display: flex; flex-direction: column; min-height: 920px;
}
.vab-orb {
  position: absolute; border-radius: 50%; filter: blur(70px);
  pointer-events: none; z-index: 0;
}
.vab-orb.a { width: 420px; height: 420px; top: 120px; right: 6%;
  background: rgba(0,184,245,0.14); animation: vb-float1 15s ease-in-out infinite; }
.vab-orb.b { width: 340px; height: 340px; bottom: -80px; left: -60px;
  background: rgba(0,217,126,0.10); animation: vb-float2 19s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .vab-orb { animation: none !important; } }

.vab-header {
  position: relative; z-index: 3;
  display: flex; align-items: center; justify-content: space-between;
  padding: 30px 56px;
}

.vab-hero {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.08fr 0.92fr;
  align-items: end; gap: 24px;
  padding: 16px 56px 0; flex: 1;
}
.vab-hero > * { min-width: 0; }
.vab-hero .col-text {
  align-self: center; padding-bottom: 24px;
  animation: vv-rise 0.7s var(--ease) both;
}
.vab-eyebrow {
  font-size: var(--fs-micro); font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 18px;
  display: inline-block;
}
.vab-h1 {
  font-size: clamp(2.5rem, 4.2vw, 3.5rem); font-weight: 800;
  letter-spacing: -1px; line-height: 1.06; margin: 0 0 20px; text-wrap: balance;
}
.vab-h1 .accent { color: var(--accent); }
.vab-lead {
  font-size: 1.15rem; color: var(--fg2); line-height: 1.6;
  max-width: 460px; margin: 0;
}

/* portrait spotlight (from B), contained in hero column */
.vab-portrait {
  position: relative; height: 600px; align-self: end;
  display: flex; align-items: flex-end; justify-content: center;
}
.vab-portrait .grid-lines {
  position: absolute; inset: -40px -10px 0;
  background-image:
    linear-gradient(rgba(0,184,245,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,184,245,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 58%, #000 28%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 58%, #000 28%, transparent 72%);
}
.vab-portrait .glow {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,184,245,0.28), rgba(0,184,245,0.04) 55%, transparent 72%);
}
.vab-portrait img {
  position: relative; z-index: 1; height: 600px; max-width: 100%; width: auto;
  object-fit: contain; object-position: bottom;
  filter: drop-shadow(0 26px 52px rgba(0,0,0,0.55));
  animation: vv-fade 0.9s var(--ease) both;
}
.vab-badge {
  position: absolute; z-index: 3; left: 4px; bottom: 36px;
  background: rgba(15,28,46,0.85); backdrop-filter: blur(8px);
  border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 12px 16px; display: flex; align-items: center; gap: 12px;
  animation: vv-rise 0.8s var(--ease) 0.4s both;
}
.vab-badge .av {
  width: 42px; height: 42px; border-radius: 50%; overflow: hidden; flex: none;
  border: 2px solid var(--accent); background: var(--bg-hover);
}
.vab-badge .av img { width: 100%; aspect-ratio: 1; object-fit: cover; object-position: 50% 10%; display: block; }
.vab-badge .txt b { display: block; font-size: 0.95rem; color: var(--fg1); }
.vab-badge .txt span { font-size: 0.8rem; color: var(--fg2); }

/* cards row (from A) */
.vab-cards {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  padding: 8px 56px 36px;
}
.vab-card {
  position: relative; overflow: hidden;
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 26px 28px;
  display: flex; flex-direction: column; align-items: flex-start;
  transition: transform var(--t-slow) var(--ease), border-color var(--t-slow) var(--ease),
              background var(--t-slow) var(--ease), box-shadow var(--t-slow) var(--ease);
  animation: vv-rise 0.7s var(--ease) both;
}
.vab-card:nth-child(1) { animation-delay: 0.10s; }
.vab-card:nth-child(2) { animation-delay: 0.20s; }
.vab-card:nth-child(3) { animation-delay: 0.30s; }
.vab-card::before { content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity var(--t-slower) var(--ease); }
.vab-card:hover { transform: translateY(-5px); background: var(--bg-hover); }
.vab-card:hover::before { opacity: 1; }
.vab-card.thg:hover  { border-color: var(--green); box-shadow: var(--shadow-green); }
.vab-card.verm:hover { border-color: var(--accent); box-shadow: var(--shadow-cyan); }
.vab-card.yt:hover   { border-color: var(--yt); box-shadow: 0 20px 48px rgba(255,59,48,0.14); }
.vab-card.thg::before  { background: radial-gradient(ellipse at top left, rgba(0,217,126,0.10), transparent 65%); }
.vab-card.verm::before { background: radial-gradient(ellipse at top left, rgba(0,184,245,0.10), transparent 65%); }
.vab-card.yt::before   { background: radial-gradient(ellipse at top left, rgba(255,59,48,0.10), transparent 65%); }
.vab-tile {
  width: 52px; height: 52px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.vab-tile svg { width: 26px; height: 26px; }
.vab-card.thg  .vab-tile { background: var(--tint-green-12); color: var(--green); }
.vab-card.verm .vab-tile { background: var(--tint-cyan-12);  color: var(--accent); }
.vab-card.yt   .vab-tile { background: rgba(255,59,48,0.12);  color: var(--yt); }
.vab-card h3 { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.3px; margin: 0 0 10px; }
.vab-card p  { color: var(--fg2); font-size: 0.98rem; line-height: 1.55; margin: 0 0 22px; flex: 1; }
.vab-cta {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.95rem;
  transition: gap var(--t-base) var(--ease);
}
.vab-card:hover .vab-cta { gap: 13px; }
.vab-card.thg  .vab-cta { color: var(--green); }
.vab-card.verm .vab-cta { color: var(--accent); }
.vab-card.yt   .vab-cta { color: var(--yt); }

.vab-footer {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 56px; border-top: 1px solid var(--border);
  color: var(--fg2); font-size: var(--fs-xs); background: var(--bg-footer);
}
.vab-footer .links { display: flex; gap: 18px; }
.vab-footer a:hover { color: var(--fg1); }

/* responsive: tablet & mobile stack for the A+B layout */
@media (max-width: 1040px) {
  .vab-header { padding: 24px 32px; }
  .vab-hero { grid-template-columns: 1fr; padding: 8px 32px 0; gap: 8px; align-items: start; }
  .vab-hero .col-text { padding-bottom: 8px; }
  .vab-portrait { height: auto; justify-content: center; margin-top: 8px; }
  .vab-portrait img { height: auto; max-height: 440px; }
  .vab-portrait .grid-lines, .vab-portrait .glow { display: none; }
  .vab-badge { left: 0; right: 0; margin: 0 auto; width: fit-content; bottom: 8px; }
  .vab-cards { grid-template-columns: 1fr; padding: 16px 32px 32px; }
  .vab-footer { flex-direction: column; gap: 10px; text-align: center; padding: 22px 32px; }
}
@media (max-width: 640px) {
  .vab-header .vv-tag { display: none; }
}

/* ============================================================
   VARIANT D — Dennis zeigt nach oben auf die Optionen
   ============================================================ */
.vd {
  position: relative; overflow: hidden; min-height: 940px;
  display: flex; flex-direction: column;
  background:
    radial-gradient(760px 460px at 12% 0%, rgba(0,184,245,0.10), transparent 60%),
    radial-gradient(620px 420px at 100% 100%, rgba(0,217,126,0.07), transparent 60%),
    var(--bg);
}
.vd-header {
  position: relative; z-index: 4;
  display: flex; align-items: center; justify-content: space-between;
  padding: 30px 56px;
}
.vd-stage { position: relative; z-index: 2; flex: 1; padding: 12px 56px 0; display: flex; flex-direction: column; }

/* option cards: row across the TOP — this is what Dennis points up at */
.vd-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  position: relative; z-index: 3;
}
.vd-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: flex-start;
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 22px 24px;
  box-shadow: 0 1px 2px rgba(14,27,45,0.04), 0 10px 26px rgba(14,27,45,0.06);
  transition: transform var(--t-slow) var(--ease), border-color var(--t-slow) var(--ease),
              box-shadow var(--t-slow) var(--ease);
  animation: vv-rise 0.6s var(--ease) both;
}
.vd-card:nth-child(1) { animation-delay: 0.12s; }
.vd-card:nth-child(2) { animation-delay: 0.22s; }
.vd-card:nth-child(3) { animation-delay: 0.32s; }
.vd-card:hover { transform: translateY(-6px); }
.vd-card.thg:hover  { border-color: var(--green);  box-shadow: var(--shadow-green); }
.vd-card.verm:hover { border-color: var(--accent);  box-shadow: var(--shadow-cyan); }
.vd-card.yt:hover   { border-color: var(--yt);      box-shadow: 0 18px 44px rgba(255,59,48,0.18); }
.vd-tile {
  width: 50px; height: 50px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.vd-tile svg { width: 26px; height: 26px; }
.vd-card.thg  .vd-tile { background: var(--tint-green-12); color: var(--green); }
.vd-card.verm .vd-tile { background: var(--tint-cyan-12);  color: var(--accent); }
.vd-card.yt   .vd-tile { background: rgba(255,59,48,0.12);  color: var(--yt); }
.vd-card h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.3px; margin: 0 0 8px; }
.vd-card p  { font-size: 0.93rem; color: var(--fg2); margin: 0 0 16px; line-height: 1.5; flex: 1; }
.vd-cta { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.92rem; transition: gap var(--t-base) var(--ease); }
.vd-card:hover .vd-cta { gap: 13px; }
.vd-card .vd-cta svg { width: 16px; height: 16px; }
.vd-card.thg  .vd-cta { color: var(--green); }
.vd-card.verm .vd-cta { color: var(--accent); }
.vd-card.yt   .vd-cta { color: var(--yt); }

/* headline sits lower-left, balancing Dennis lower-right */
.vd-headline {
  position: relative; z-index: 3; margin-top: 64px; max-width: 540px;
  animation: vv-rise 0.7s var(--ease) both;
}
.vd-eyebrow {
  font-size: var(--fs-micro); font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent); display: inline-block; margin-bottom: 16px;
}
.vd-h1 {
  font-size: clamp(2.3rem, 3.8vw, 3.2rem); font-weight: 800;
  letter-spacing: -1px; line-height: 1.06; margin: 0 0 14px; text-wrap: balance;
}
.vd-h1 .accent { color: var(--accent); }
.vd-sub { font-size: 1.08rem; color: var(--fg2); margin: 0; max-width: 430px; line-height: 1.55; }

.vd-dennis {
  position: absolute; z-index: 2; bottom: 0; right: 10px;
  height: 70%; width: auto; pointer-events: none;
  filter: drop-shadow(0 22px 44px rgba(14,27,45,0.22));
  animation: vd-pop 0.9s var(--ease) both;
}
@keyframes vd-pop { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

.vd-footer {
  position: relative; z-index: 4;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 56px; color: rgba(232,240,254,0.72); font-size: var(--fs-xs);
  background: var(--bg-footer);
}
.vd-footer .links { display: flex; gap: 18px; }
.vd-footer a { color: rgba(232,240,254,0.72); }
.vd-footer a:hover { color: #fff; }

@media (prefers-reduced-motion: reduce), print {
  .vd-headline, .vd-card, .vd-dennis { animation: none !important; opacity: 1 !important; transform: none !important; }
}
@media (max-width: 1040px) {
  .vd-header { padding: 24px 32px; }
  .vd-stage { padding: 12px 32px 0; }
  .vd-cards { grid-template-columns: 1fr; }
  .vd-headline { margin-top: 32px; max-width: none; }
  .vd-dennis { position: static; height: auto; max-height: 420px; display: block; margin: 16px auto 0; }
  .vd-footer { flex-direction: column; gap: 10px; text-align: center; padding: 22px 32px; }
}

/* ============================================================
   LIGHT THEME — scoped to .vv-root.light
   Soft off-white, dark-navy text, cyan accent kept, dark footer.
   ============================================================ */
.vv-root.light {
  --bg:           #f5f8fc;
  --bg-elevated:  #ffffff;
  --bg-hover:     #ffffff;
  --bg-footer:    #0f1c2e;
  --fg1:          #0e1b2d;
  --fg2:          #56697f;
  --border:       #e4ebf4;
  --shadow-card:   0 16px 40px rgba(14,27,45,0.10);
  --shadow-cyan:   0 18px 44px rgba(0,184,245,0.20);
  --shadow-green:  0 18px 44px rgba(0,217,126,0.20);
}
/* hero wash a touch warmer on white */
.vv-root.light.vab {
  background:
    radial-gradient(820px 480px at 100% -8%, rgba(0,184,245,0.10), transparent 62%),
    radial-gradient(620px 420px at -5% 12%, rgba(0,217,126,0.06), transparent 60%),
    var(--bg);
}
.vv-root.light.vab .vab-orb.a { background: rgba(0,184,245,0.16); }
.vv-root.light.vab .vab-orb.b { background: rgba(0,217,126,0.12); }
/* card borders read crisper with a soft shadow at rest in light */
.vv-root.light .va-card,
.vv-root.light .vab-card {
  box-shadow: 0 1px 2px rgba(14,27,45,0.04), 0 8px 24px rgba(14,27,45,0.05);
}
/* portrait drop-shadow softer on light */
.vv-root.light .vab-portrait img,
.vv-root.light .va-portrait img { filter: drop-shadow(0 22px 44px rgba(14,27,45,0.22)); }
/* identity badge = light glass */
.vv-root.light .vab-badge {
  background: rgba(255,255,255,0.9);
  border-color: var(--border);
  box-shadow: 0 10px 30px rgba(14,27,45,0.12);
}
/* grid texture a bit stronger so it reads on white */
.vv-root.light .vab-portrait .grid-lines {
  background-image:
    linear-gradient(rgba(0,184,245,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,184,245,0.10) 1px, transparent 1px);
}
/* dark footer keeps light text */
.vv-root.light .vab-footer { color: rgba(232,240,254,0.72); border-top-color: transparent; }
.vv-root.light .vab-footer a { color: rgba(232,240,254,0.72); }
.vv-root.light .vab-footer a:hover { color: #fff; }
/* tagline dot + eyebrow already use brand greens/cyan — fine on light */

/* ============================================================
   Safety: never leave content invisible for reduced-motion,
   print/PDF, or non-animating capture contexts.
   ============================================================ */
@media (prefers-reduced-motion: reduce), print {
  .va-hero .col-text,
  .va-portrait, .va-portrait img,
  .va-card,
  .vb-intro, .vb-row, .vb-badge, .vb-right img,
  .vc-hero, .vc-card,
  .vab-hero .col-text, .vab-portrait img, .vab-badge, .vab-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .vb-orb, .vc-bg, .vc-spark, .vc-ring, .vab-orb { animation: none !important; }
}
