/* ============================================================
   VaTo24 Scroll-Trailer — gemeinsame Styles
   Drei Trailer: ballast (Start), prompt (Projekte), particles (Kontakt)
   Nutzt die Design-Tokens der Live-Site (--color-brand-*, --color-ink-*).
   ============================================================ */

.vt-wrap {
  position: relative;
  height: 300vh;
}
.vt-wrap[data-trailer="particles"] { height: 240vh; }
.vt-wrap[data-trailer="ballast"] { height: 340vh; }

/* ── Logo-Assembly (Finale Startseiten-Trailer) ───────────── */
.vt-logo-stage {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
  pointer-events: none;
}
.vt-logo-svg {
  height: min(200px, 24vh);
  width: auto;
  overflow: visible;
}
.vt-lp {
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform, opacity;
}
.vt-logo-word {
  font-size: clamp(2.8rem, 7vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--color-ink-950, #0b0d12);
  will-change: transform, opacity;
}
.vt-logo-word span { color: var(--color-brand-500, #ff6a1a); }
.vt-logo-slogans {
  position: relative;
  width: 100%;
  max-width: 40rem;
  height: 2em;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-ink-500, #3a4150);
}
.vt-slog {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
  opacity: 0;
  will-change: opacity, transform;
}
.vt-wrap:not(.vt-static) .vt-logo-stage { opacity: 0; }
.vt-wrap.vt-static .vt-logo-stage {
  position: static;
  opacity: 1;
  margin-top: 2.2rem;
  pointer-events: auto;
}
.vt-wrap.vt-static .vt-logo-word { opacity: 1; transform: none; }
.vt-wrap.vt-static .vt-logo-slogans { height: auto; }
.vt-wrap.vt-static .vt-slog { position: static; opacity: 1; padding: .15rem 1rem; }

.vt-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, color-mix(in oklab, var(--color-brand-300) 14%, transparent), transparent 70%),
    var(--color-paper, #fafaf8);
}

/* Dezente Grid-Textur wie im Hero */
.vt-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(11,13,18,.04) 1px, transparent 1px),
    linear-gradient(rgba(11,13,18,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 65% at 50% 20%, #000 45%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 65% at 50% 20%, #000 45%, transparent 100%);
  pointer-events: none;
}

/* ── Captions (wechselnde Textzeilen) ─────────────────────── */
.vt-captions {
  position: relative;
  z-index: 5;
  height: 5.5rem;
  width: 100%;
  max-width: 46rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
  flex: none;
}
.vt-cap {
  position: absolute;
  inset: 0;
  padding: 0 1.25rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: clamp(1.15rem, 2.6vw, 1.7rem);
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--color-ink-700, #21252f);
  opacity: 0;
  transform: translateY(14px);
  will-change: opacity, transform;
}
.vt-cap strong {
  font-weight: 650;
  color: var(--color-ink-950, #0b0d12);
}
.vt-cap .vt-accent { color: var(--color-brand-600, #e2540a); }

/* ── Abschluss-CTA ────────────────────────────────────────── */
.vt-final {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: clamp(1.5rem, 5vh, 3.5rem);
  transform: translate(-50%, 16px);
  opacity: 0;
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
  will-change: opacity, transform;
}
.vt-final.vt-on { pointer-events: auto; }
.vt-final:not(.vt-on) { pointer-events: none; }

.vt-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: 9999px;
  background: var(--color-brand-500, #ff6a1a);
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  padding: .8rem 1.5rem;
  box-shadow: 0 10px 24px -10px rgba(226, 84, 10, .55);
  transition: background .2s ease, transform .2s ease;
}
.vt-cta:hover { background: var(--color-brand-600, #e2540a); transform: translateY(-1px); }
.vt-cta--ghost {
  background: #fff;
  color: var(--color-ink-800, #171a21);
  border: 1px solid rgba(15, 18, 26, .12);
  box-shadow: none;
}
.vt-cta--ghost:hover { background: var(--color-paper-200, #f1f0ec); }

/* ── Scroll-Hinweis ───────────────────────────────────────── */
.vt-hint {
  position: absolute;
  z-index: 6;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--color-ink-400, #9aa0ad);
  pointer-events: none;
  will-change: opacity;
}
.vt-hint::after {
  content: "";
  width: 1px;
  height: 2rem;
  background: linear-gradient(to bottom, var(--color-brand-500, #ff6a1a), transparent);
  animation: vt-hint-pulse 1.6s ease-in-out infinite;
}
@keyframes vt-hint-pulse {
  0%, 100% { opacity: .35; transform: scaleY(.7); transform-origin: top; }
  50%      { opacity: 1;   transform: scaleY(1);  transform-origin: top; }
}

/* ============================================================
   TRAILER 1 — „Vom Ballast zur Rakete" (Startseite)
   ============================================================ */
.vt-browser {
  position: relative;
  z-index: 2;
  width: min(680px, calc(100vw - 2.5rem));
  margin-top: 1.4rem;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid rgba(15, 18, 26, .1);
  box-shadow: 0 1px 2px rgba(11,13,18,.05), 0 32px 64px -24px rgba(11,13,18,.28);
  will-change: transform;
}
.vt-chrome {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .7rem .9rem;
  border-bottom: 1px solid rgba(15, 18, 26, .08);
}
.vt-dots { display: flex; gap: .35rem; }
.vt-dots i {
  width: .65rem; height: .65rem; border-radius: 50%;
  background: rgba(15,18,26,.12);
}
.vt-dots i:first-child { background: #f87171; }
.vt-dots i:nth-child(2) { background: #fbbf24; }
.vt-dots i:last-child  { background: #34d399; }
.vt-url {
  flex: 1;
  border-radius: .55rem;
  background: var(--color-paper-200, #f1f0ec);
  color: var(--color-ink-500, #3a4150);
  font-size: .72rem;
  padding: .35rem .7rem;
  white-space: nowrap;
  overflow: hidden;
}
.vt-viewport {
  position: relative;
  height: min(388px, 52vh);
  overflow: hidden;
  border-radius: 0 0 1.25rem 1.25rem;
  background: #fff;
}

/* Alte Website: graues, müdes Skelett */
.vt-old {
  position: absolute;
  inset: 0;
  padding: 1.1rem 1.3rem;
  will-change: opacity, filter;
}
.vt-old .vt-bar {
  border-radius: .45rem;
  background: rgba(15, 18, 26, .09);
  margin-bottom: .65rem;
}
.vt-old .vt-bar.b1 { height: 1.7rem; width: 42%; background: rgba(15,18,26,.16); }
.vt-old .vt-bar.b2 { height: .8rem; width: 92%; }
.vt-old .vt-bar.b3 { height: .8rem; width: 85%; }
.vt-old .vt-bar.b4 { height: .8rem; width: 64%; }
.vt-old .vt-imgs { display: flex; gap: .65rem; margin-top: .9rem; }
.vt-old .vt-imgs i {
  flex: 1; height: 4.6rem; border-radius: .55rem;
  background: repeating-linear-gradient(45deg, rgba(15,18,26,.07), rgba(15,18,26,.07) 8px, rgba(15,18,26,.11) 8px, rgba(15,18,26,.11) 16px);
}

/* Ballast-Elemente (fliegen raus) */
.vt-junk {
  position: absolute;
  border-radius: .7rem;
  background: #fff;
  border: 1px solid rgba(15, 18, 26, .12);
  box-shadow: 0 14px 30px -12px rgba(11, 13, 18, .3);
  font-size: .72rem;
  line-height: 1.35;
  color: var(--color-ink-700, #21252f);
  padding: .6rem .75rem;
  will-change: transform, opacity;
}
.vt-junk b { font-weight: 650; color: var(--color-ink-950, #0b0d12); display: block; }
.vt-junk .vt-junk-btn {
  display: inline-block;
  margin-top: .4rem;
  border-radius: .4rem;
  padding: .22rem .6rem;
  font-size: .62rem;
  font-weight: 600;
  color: #fff;
  background: var(--color-ink-500, #3a4150);
}
.vt-junk--cookie   { left: 4%;  bottom: 5%;  width: 58%; z-index: 4; }
.vt-junk--popup    { left: 22%; top: 14%;    width: 52%; z-index: 5; text-align: center; padding: 1rem .9rem; }
.vt-junk--update   { right: 3%; top: 7%;     width: 40%; z-index: 3; border-left: 3px solid #f59e0b; }
.vt-junk--plugin   { left: 3%;  top: 34%;    width: 34%; z-index: 3; border-left: 3px solid #ef4444; }
.vt-junk--chat     { right: 4%; bottom: 22%; width: 30%; z-index: 4; }
.vt-junk--banner   { left: 14%; top: 52%;    width: 46%; z-index: 3; }
.vt-spinner {
  position: absolute;
  left: 50%; top: 42%;
  z-index: 6;
  width: 2.4rem; height: 2.4rem;
  margin: -1.2rem;
  border-radius: 50%;
  border: 3px solid rgba(15,18,26,.12);
  border-top-color: var(--color-ink-600, #2e333f);
  animation: vt-spin 1.1s linear infinite;
  will-change: transform, opacity;
}
@keyframes vt-spin { to { transform: rotate(360deg); } }

/* Neue Website: klar & orange */
.vt-new {
  position: absolute;
  inset: 0;
  padding: 1.1rem 1.3rem;
  background: #fff;
}
.vt-new > * { will-change: transform, opacity; }
.vt-new .vt-nav {
  display: flex; align-items: center; gap: .55rem;
  padding-bottom: .8rem; margin-bottom: 1rem;
  border-bottom: 1px solid rgba(15,18,26,.08);
}
.vt-new .vt-logo {
  font-weight: 750; font-size: .95rem; letter-spacing: -.02em;
  color: var(--color-ink-950, #0b0d12);
}
.vt-new .vt-logo span { color: var(--color-brand-500, #ff6a1a); }
.vt-new .vt-nav i {
  width: 2.6rem; height: .5rem; border-radius: 999px;
  background: rgba(15,18,26,.1);
}
.vt-new .vt-nav i:first-of-type { margin-left: auto; }
.vt-new .vt-h {
  height: 1.5rem; width: 66%; border-radius: .5rem;
  background: linear-gradient(100deg, var(--color-ink-950, #0b0d12) 55%, var(--color-brand-500, #ff6a1a));
  margin-bottom: .6rem;
}
.vt-new .vt-h.h2 { width: 44%; height: 1.2rem; opacity: .88; }
.vt-new .vt-t { height: .65rem; border-radius: 999px; background: rgba(15,18,26,.1); margin-bottom: .5rem; }
.vt-new .vt-t.t1 { width: 84%; }
.vt-new .vt-t.t2 { width: 70%; }
.vt-new .vt-btn {
  display: inline-block;
  width: 9.5rem; height: 2.1rem;
  border-radius: 999px;
  background: var(--color-brand-500, #ff6a1a);
  box-shadow: 0 8px 18px -8px rgba(226,84,10,.6);
  margin: .45rem 0 1rem;
}
.vt-new .vt-cards { display: flex; gap: .65rem; }
.vt-new .vt-cards i {
  flex: 1; height: 4.2rem; border-radius: .7rem;
  border: 1px solid rgba(15,18,26,.08);
  background: var(--color-paper, #fafaf8);
  position: relative;
}
.vt-new .vt-cards i::after {
  content: "";
  position: absolute; left: .55rem; top: .55rem;
  width: 1.1rem; height: 1.1rem; border-radius: .35rem;
  background: color-mix(in oklab, var(--color-brand-500, #ff6a1a) 22%, #fff);
}

/* Score-Badge (PageSpeed) */
.vt-score {
  position: absolute;
  right: -1rem; top: -1.15rem;
  z-index: 7;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(15,18,26,.1);
  box-shadow: 0 18px 36px -16px rgba(11,13,18,.35);
  padding: .55rem .9rem;
  text-align: center;
  will-change: transform;
}
.vt-score b {
  display: block;
  font-size: 1.35rem;
  font-weight: 750;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  color: #ef4444;
}
.vt-score.vt-good b { color: #16a34a; }
.vt-score small {
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-ink-500, #3a4150);
}

/* ============================================================
   TRAILER 2 — „Der Prompt baut die Website" (Projekte)
   ============================================================ */
.vt-duo {
  position: relative;
  z-index: 2;
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.1rem;
  width: min(880px, calc(100vw - 2.5rem));
  align-items: stretch;
}
.vt-term {
  border-radius: 1.1rem;
  background: var(--color-ink-950, #0b0d12);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 32px 64px -24px rgba(11,13,18,.45);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: min(340px, 46vh);
}
.vt-term-bar {
  display: flex; align-items: center; gap: .5rem;
  padding: .65rem .85rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.55);
  font-size: .68rem;
  letter-spacing: .06em;
}
.vt-term-body {
  flex: 1;
  padding: .95rem 1rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .78rem;
  line-height: 1.65;
  color: rgba(255,255,255,.88);
}
.vt-prompt-line { color: rgba(255,255,255,.92); min-height: 4.2em; }
.vt-prompt-line::before { content: "> "; color: var(--color-brand-400, #ff8a4d); font-weight: 700; }
.vt-caret {
  display: inline-block;
  width: .55em; height: 1.05em;
  margin-left: 1px;
  vertical-align: -0.15em;
  background: var(--color-brand-400, #ff8a4d);
  animation: vt-caret .9s steps(1) infinite;
}
@keyframes vt-caret { 50% { opacity: 0; } }
.vt-steps { margin-top: .55rem; }
.vt-step {
  opacity: 0;
  transform: translateX(-6px);
  will-change: opacity, transform;
  color: rgba(255,255,255,.62);
}
.vt-step--note {
  color: rgba(255,255,255,.85);
  font-style: italic;
  margin-bottom: .2rem;
}
.vt-step .ok {
  position: relative;
  display: inline-block;
  width: .8em;
  height: .8em;
  margin-right: .45rem;
}
.vt-step .ok::before {
  content: "";
  position: absolute;
  left: .18em;
  top: 0;
  width: .32em;
  height: .6em;
  border-right: 2px solid #34d399;
  border-bottom: 2px solid #34d399;
  transform: rotate(42deg);
}
.vt-step .vt-step-hl { color: var(--color-ai-cyan, #3de0c8); }

/* Rechts: Website, die sich zusammensetzt */
.vt-build {
  position: relative;
  border-radius: 1.1rem;
  background: #fff;
  border: 1px solid rgba(15,18,26,.1);
  box-shadow: 0 32px 64px -24px rgba(11,13,18,.3);
  padding: 1rem 1.1rem;
  min-height: min(340px, 46vh);
}
.vt-build > * { will-change: transform, opacity; }
.vt-build .vt-nav {
  display: flex; align-items: center; gap: .5rem;
  padding-bottom: .7rem; margin-bottom: .9rem;
  border-bottom: 1px solid rgba(15,18,26,.08);
}
.vt-build .vt-logo { font-weight: 750; font-size: .85rem; color: var(--color-ink-950); }
.vt-build .vt-logo span { color: var(--color-brand-500, #ff6a1a); }
.vt-build .vt-nav i { width: 2.2rem; height: .45rem; border-radius: 999px; background: rgba(15,18,26,.1); }
.vt-build .vt-nav i:first-of-type { margin-left: auto; }
.vt-build .vt-h { height: 1.25rem; width: 72%; border-radius: .45rem; background: linear-gradient(100deg, var(--color-ink-950) 55%, var(--color-brand-500)); margin-bottom: .55rem; }
.vt-build .vt-t { height: .55rem; border-radius: 999px; background: rgba(15,18,26,.1); margin-bottom: .45rem; }
.vt-build .vt-t.t1 { width: 88%; }
.vt-build .vt-t.t2 { width: 64%; }
.vt-build .vt-btn { display: inline-block; width: 7.5rem; height: 1.8rem; border-radius: 999px; background: var(--color-brand-500); box-shadow: 0 8px 18px -8px rgba(226,84,10,.55); margin: .35rem 0 .8rem; }
.vt-build .vt-tiles { display: flex; gap: .55rem; }
.vt-build .vt-tiles i { flex: 1; height: 3.4rem; border-radius: .6rem; border: 1px solid rgba(15,18,26,.08); background: var(--color-paper, #fafaf8); }

/* Ergebnis-Karten: Google-Snippet + KI-Antwort */
.vt-serp, .vt-ai {
  position: absolute;
  border-radius: .9rem;
  background: #fff;
  border: 1px solid rgba(15,18,26,.1);
  box-shadow: 0 22px 44px -18px rgba(11,13,18,.4);
  padding: .7rem .85rem;
  font-size: .7rem;
  line-height: 1.45;
  will-change: transform, opacity;
}
.vt-serp { left: -0.9rem; bottom: 2.4rem; width: 62%; z-index: 3; }
.vt-serp .vt-serp-url { color: #16a34a; font-size: .62rem; }
.vt-serp b { color: #1a0dab; font-weight: 600; font-size: .78rem; display: block; margin: .1rem 0; }
.vt-serp span { color: var(--color-ink-600, #2e333f); }
.vt-ai { right: -0.9rem; bottom: -1.1rem; width: 58%; z-index: 4; border-left: 3px solid var(--color-ai-violet, #7c6cff); }
.vt-ai .vt-ai-q { color: var(--color-ink-500); font-size: .62rem; }
.vt-ai p { margin: .15rem 0 0; color: var(--color-ink-800, #171a21); }
.vt-ai p b { color: var(--color-brand-600, #e2540a); font-weight: 650; }

/* ============================================================
   TRAILER 3 — Partikel-Morphing (Kontakt)
   ============================================================ */
.vt-canvas-box {
  position: relative;
  z-index: 2;
  width: min(860px, calc(100vw - 2rem));
  height: min(480px, 56vh);
  margin-top: .8rem;
}
.vt-canvas-box canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 720px) {
  .vt-captions { height: 6.2rem; }
  .vt-viewport { height: min(320px, 46vh); }
  .vt-duo {
    grid-template-columns: 1fr;
    width: min(430px, calc(100vw - 2rem));
    gap: .9rem;
  }
  .vt-term { min-height: 0; }
  .vt-term-body { font-size: .7rem; }
  .vt-prompt-line { min-height: 5.2em; }
  .vt-build { min-height: 15.5rem; margin-bottom: 1.4rem; }
  .vt-serp { left: .4rem; width: 70%; bottom: 2.2rem; }
  .vt-ai { right: .4rem; width: 66%; bottom: -0.9rem; }
  .vt-score { right: .4rem; top: -1rem; }
  .vt-junk--popup { width: 68%; left: 14%; }
  .vt-junk--cookie { width: 80%; }
  .vt-canvas-box { height: min(380px, 48vh); }
}

/* ── Default-Zustände vor dem ersten Frame (kein Flackern) ── */
.vt-wrap:not(.vt-static) .vt-new,
.vt-wrap:not(.vt-static) .vt-term,
.vt-wrap:not(.vt-static) .vt-build,
.vt-wrap:not(.vt-static) .vt-serp,
.vt-wrap:not(.vt-static) .vt-ai { opacity: 0; }

/* ── Statischer Fallback (Reduced Motion / alte Browser) ──── */
.vt-wrap.vt-static { height: auto; }
.vt-wrap.vt-static .vt-stage {
  position: relative;
  height: auto;
  min-height: 0;
  padding: 4.5rem 0 5.5rem;
}
.vt-wrap.vt-static .vt-hint { display: none; }
.vt-wrap.vt-static .vt-final {
  position: static;
  transform: none;
  opacity: 1;
  pointer-events: auto;
  margin-top: 2.2rem;
}
.vt-wrap.vt-static .vt-captions { height: auto; }
.vt-wrap.vt-static .vt-cap {
  position: static;
  opacity: 0;
  transform: none;
  display: none;
}
.vt-wrap.vt-static .vt-cap:last-child {
  display: flex;
  opacity: 1;
}
.vt-wrap.vt-static .vt-spinner,
.vt-wrap.vt-static .vt-junk,
.vt-wrap.vt-static .vt-old { display: none; }
.vt-wrap.vt-static .vt-caret { animation: none; opacity: 0; }
.vt-wrap.vt-static .vt-new,
.vt-wrap.vt-static .vt-term,
.vt-wrap.vt-static .vt-build,
.vt-wrap.vt-static .vt-serp,
.vt-wrap.vt-static .vt-ai,
.vt-wrap.vt-static .vt-step { opacity: 1; transform: none; }
.vt-wrap.vt-static .vt-browser { margin-top: 2rem; }

/* ============================================================
   HERO-BÜHNE (Startseite) — Mockup-Hintergrund in HTML/CSS:
   Radial-Grund, zwei driftende Lichtstrahlen, warmer Glow,
   Bodenschatten. Podium als freigestelltes WebP davor.
   ============================================================ */
.vt-hero-stage {
  position: relative;
  width: 100%;
  max-width: 40rem;
  margin-inline: auto;
  padding: 3.5rem 1.5rem 2.5rem;
}
.vt-hero-bg {
  position: absolute;
  z-index: -1;
  inset: -14% -22% -8% -22%;
  pointer-events: none;
  overflow: hidden;
}
.vt-beam {
  position: absolute;
  top: -25%;
  height: 155%;
  width: 13%;
  background: linear-gradient(to bottom,
    rgba(255,255,255,0), rgba(255,255,255,.55) 46%, rgba(255,255,255,0));
  transform: rotate(24deg);
  filter: blur(18px);
  will-change: transform;
}
.vt-beam.b1 { left: 24%; animation: vt-beam-drift 13s ease-in-out infinite alternate; }
.vt-beam.b2 { left: 58%; width: 6%; opacity: .35; animation: vt-beam-drift 18s ease-in-out infinite alternate-reverse; }
.vt-glow {
  position: absolute;
  right: -4%;
  top: 36%;
  width: 72%;
  height: 62%;
  background: radial-gradient(closest-side, rgba(255,138,77,.3), rgba(255,138,77,0));
  filter: blur(10px);
  animation: vt-glow-pulse 9s ease-in-out infinite;
}
@keyframes vt-beam-drift {
  from { transform: rotate(24deg) translateX(-6%); }
  to   { transform: rotate(24deg) translateX(10%); }
}
@keyframes vt-glow-pulse {
  0%, 100% { opacity: .72; }
  50%      { opacity: 1; }
}
.vt-hero-podium {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 32px rgba(11,13,18,.28));
}
.vt-hero-floor {
  position: absolute;
  z-index: 1;
  left: 6%;
  right: 4%;
  bottom: 1%;
  height: 10%;
  background: radial-gradient(ellipse 52% 55% at 50% 50%, rgba(11,13,18,.38), rgba(11,13,18,0) 74%);
  filter: blur(8px);
}
@media (prefers-reduced-motion: reduce) {
  .vt-beam, .vt-glow { animation: none; }
}

/* ── Hero-Typografie (Spec: Montserrat 800 / Inter 400) ───── */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/assets/fonts/montserrat-800-latin.woff2") format("woff2");
}
.vt-hero-title {
  font-family: "Montserrat", var(--font-display, "Space Grotesk Variable"), sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 4.3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #0F1B2A;
}
.vt-hero-title .vt-dot { color: #E15A00; }
.vt-hero-sub {
  font-weight: 400;
  font-size: clamp(1rem, 1.6vw, 1.5rem);
  line-height: 1.55;
  color: #2F3A45;
}
