/**
 * Vayvolt ? Seiten-Layout & Komponenten (Coming Soon, Legal, allgemeine Seiten)
 * Baut auf vayvolt-design-system.css auf (Tokens: --vv-*).
 */

/* Token-Kurzreferenz (falls Design-System nicht geladen) */
:root {
  --vv-primary: #2563eb; --vv-primary-hover: #1d4ed8; --vv-accent: #06b6d4;
  --vv-dark: #0f172a; --vv-dark-soft: #1e293b; --vv-slate: #334155; --vv-slate-muted: #64748b;
  --vv-light: #f8fafc; --vv-white: #fff; --vv-border: #e2e8f0;
  --vv-card-bg: #f1f5f9;
  --vv-card-border: #e2e8f0;
  --vv-radius-md: 12px; --vv-radius-lg: 16px;
  --vv-duration-fast: 200ms; --vv-duration-normal: 300ms; --vv-ease: cubic-bezier(0.4,0,0.2,1);
  --vv-shadow-glow: 0 10px 25px rgba(37,99,235,.25);
  --vv-shadow-lg: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.06);
  /* Einheitliche Container-Breiten */
  --vv-container: 80rem;
  --vv-container-narrow: 56rem;
  --vv-container-text: 36rem;
  --vv-cta-btn-max: 20rem;
  /* Abstand f?r Anker-Links (#preise, #abo-verwalten) unter sticky Header */
  --vv-scroll-offset: 7rem;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--vv-scroll-offset);
  height: -webkit-fill-available;
}
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--vv-dark);
  background: var(--vv-light);
  margin: 0;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  display: flex;
  flex-direction: column;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Header & Sprachumschaltung */
.site-header { position: relative; z-index: 50; min-height: 5rem; display: flex; align-items: center; justify-content: center; padding: 0; }
.site-header--sticky {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--vv-border);
}
.site-header__inner {
  width: 100%;
  max-width: var(--vv-container);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-header__left {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  flex: 1 1 auto;
}
.site-header__right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.site-header__account {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.site-header__account-btn {
  white-space: nowrap;
  text-decoration: none;
  font-size: 0.875rem;
  padding: 0.375rem 0.875rem;
  min-height: 44px;
}
.site-header__account-btn.is-active {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
}
.site-header__account .vv-btn--primary {
  background: var(--vv-primary);
  color: var(--vv-white);
  border-color: var(--vv-primary);
}
.site-header__account .vv-btn--secondary {
  background: rgba(37, 99, 235, 0.1);
  color: var(--vv-primary);
  border: 2px solid var(--vv-primary);
}
.site-header__account .vv-btn--secondary:hover:not(:disabled) {
  background: var(--vv-primary);
  color: var(--vv-white);
  border-color: var(--vv-primary);
}
.site-nav__cta { text-decoration: none; }
/* Logo: Vayvolt in Primary-Farbe */
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--vv-primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}
.site-logo:hover { color: var(--vv-primary-hover); }
.site-logo:hover .site-logo__tagline { color: var(--vv-slate); }
.site-logo:focus-visible { outline: 2px solid var(--vv-primary); outline-offset: 2px; border-radius: 4px; }
.site-logo__img { height: 3rem; width: auto; display: block; }
.site-logo__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.125rem;
  line-height: 1.2;
  min-width: 0;
}
.site-logo__text { white-space: nowrap; }
.site-logo__tagline {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--vv-slate-muted);
  letter-spacing: 0.02em;
  line-height: 1.25;
  white-space: normal;
  max-width: 16rem;
}
@media (min-width: 768px) {
  .site-logo__tagline { font-size: 0.75rem; max-width: none; }
}
.lang-switch {
  display: flex;
  gap: 0.25rem;
  z-index: 10;
}
.lang-switch a {
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--vv-slate-muted);
  text-decoration: none;
  border-radius: var(--vv-radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color var(--vv-duration-fast) var(--vv-ease), background-color var(--vv-duration-fast) var(--vv-ease);
}
.lang-switch a:hover { color: var(--vv-primary); background: rgba(37, 99, 235, 0.08); }
.lang-switch a[aria-current="page"] { color: var(--vv-primary); font-weight: 600; }
.lang-switch a:focus-visible { outline: 2px solid var(--vv-primary); outline-offset: 2px; }

/* Touch-Ziele min. 44px (A11y) */
.lang-switch a { min-width: 44px; min-height: 44px; }
.vv-btn {
  min-height: 44px;
  box-sizing: border-box;
  text-decoration: none;
}
.vv-btn:hover,
.vv-btn:focus { text-decoration: none; }

/* Primary-Button ?berall einheitlich: solides Prim?rblau (wie ?Jetzt entdecken?) */
.vv-btn--primary {
  background: var(--vv-primary);
  color: var(--vv-white);
  border-color: var(--vv-primary);
}
.vv-btn--primary:hover:not(:disabled) {
  background: var(--vv-primary-hover);
  border-color: var(--vv-primary-hover);
  box-shadow: var(--vv-shadow-glow);
}

/* Volle Breite: Button-Hintergrund f?llt gesamte Breite (Override inline-flex) */
.home-pricing-card__cta.vv-btn,
.home-cta__btn.vv-btn {
  display: flex;
  width: 100%;
  min-width: 0;
}
.division { min-height: 44px; }

/* Site-Nav: Desktop = Zeile, Mobile = Hamburger */
.site-nav { gap: 1rem; align-items: center; }
.site-nav a {
  color: var(--vv-slate);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--vv-radius-md);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.site-nav a:hover { color: var(--vv-primary); background: rgba(37, 99, 235, 0.08); }
.site-nav a[aria-current="page"] { color: var(--vv-primary); font-weight: 600; }
.site-nav a:focus-visible { outline: 2px solid var(--vv-primary); outline-offset: 2px; }

@media (min-width: 768px) {
  .site-nav {
    display: flex;
    flex-direction: row;
  }
  .nav-toggle { display: none !important; }
}
@media (max-width: 767px) {
  .site-header__inner { flex-wrap: wrap; }
  .site-nav {
    display: none;
    order: 3;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    box-shadow: var(--vv-shadow-md);
    background: var(--vv-white);
    border-bottom: 1px solid var(--vv-border);
    padding: 1rem 1.5rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav__cta { width: 100%; justify-content: center; margin-top: 0.25rem; }
  .nav-toggle {
    position: relative;
    min-width: 44px;
    min-height: 44px;
    padding: 0.5rem;
    border: 1px solid var(--vv-border);
    border-radius: var(--vv-radius-md);
    background: var(--vv-white);
    cursor: pointer;
    font-size: 1.25rem;
    z-index: 11;
  }
  .nav-toggle:focus-visible { outline: 2px solid var(--vv-primary); outline-offset: 2px; }
  .nav-toggle[aria-expanded="true"] { background: var(--vv-light); }
}

/* Main (Coming Soon / Centered) */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1.5rem;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  animation: vv-fade-in 0.6s var(--vv-ease) forwards;
}
body.page-home main,
body.page-forge main,
body.page-games main,
body.page-lernportal main {
  justify-content: flex-start;
  padding: 0;
  animation: none;
  opacity: 1;
  transform: none;
  align-items: stretch;
  text-align: left;
}

/* Newsletter: Hinweis nach Anmeldung/Best?tigung oben im Inhalt (nicht nur im Footer) */
.site-newsletter-banner {
  align-self: stretch;
  width: 100%;
  box-sizing: border-box;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid transparent;
  text-align: left;
}
.site-newsletter-banner__inner {
  max-width: var(--vv-container);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.site-newsletter-banner__text {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--vv-dark);
}
.site-newsletter-banner--success {
  background: var(--vv-success-bg);
  border-bottom-color: rgba(34, 197, 94, 0.35);
}
.site-newsletter-banner--info {
  background: var(--vv-info-bg);
  border-bottom-color: rgba(37, 99, 235, 0.28);
}
.site-newsletter-banner--warning {
  background: var(--vv-warning-bg);
  border-bottom-color: rgba(245, 158, 11, 0.45);
}
.site-newsletter-banner--error {
  background: var(--vv-error-bg);
  border-bottom-color: rgba(239, 68, 68, 0.35);
}
.site-newsletter-banner__dismiss {
  flex-shrink: 0;
  min-width: 44px;
  min-height: 44px;
  margin: -0.25rem -0.25rem -0.25rem 0;
  padding: 0.25rem 0.5rem;
  border: none;
  border-radius: var(--vv-radius-md);
  background: transparent;
  color: var(--vv-slate-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color var(--vv-duration-fast) var(--vv-ease), background-color var(--vv-duration-fast) var(--vv-ease);
}
.site-newsletter-banner__dismiss:hover {
  color: var(--vv-dark);
  background: rgba(255, 255, 255, 0.5);
}
.site-newsletter-banner__dismiss:focus-visible {
  outline: 2px solid var(--vv-primary);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  main { animation: none; opacity: 1; transform: none; }
}
@keyframes vv-fade-in {
  to { opacity: 1; transform: translateY(0); }
}

.main-inner { max-width: var(--vv-container-text); width: 100%; display: flex; flex-direction: column; align-items: center; }
.main-inner--home { max-width: none; width: 100%; }
.home-general { text-align: center; padding: 2rem 0; }
.home-general__inner {
  width: 100%;
  max-width: var(--vv-container);
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}
.home-general__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--vv-dark);
  margin: 0 0 1rem;
  line-height: 1.3;
}
.home-general__brand { color: var(--vv-primary); }
.home-general__tagline {
  font-size: 1.125rem;
  color: var(--vv-slate-muted);
  margin: 0 0 1.5rem;
  line-height: 1.6;
}
.home-general__intro {
  font-size: 1rem;
  color: var(--vv-slate);
  line-height: 1.7;
  margin: 0 0 2rem;
  text-align: left;
}
.home-general__intro strong { color: var(--vv-dark); }
.home-general__links { justify-content: center; margin-top: 0.5rem; }
/* Vayvolt Forge-Button: gleicher Stil wie ?Jetzt entdecken? */
.home-general__links .vv-btn--primary {
  background: var(--vv-primary);
  color: var(--vv-white);
  border-color: var(--vv-primary);
  text-decoration: none;
}
.home-general__links .vv-btn--primary:hover:not(:disabled) {
  background: var(--vv-primary-hover);
  border-color: var(--vv-primary-hover);
  box-shadow: var(--vv-shadow-glow);
}
.home-cta__back { margin: 1.5rem 0 0; font-size: 0.9375rem; }
.home-cta__back a { color: rgba(255,255,255,0.9); text-decoration: none; }
.home-cta__back a:hover { text-decoration: underline; }

/* ========== Home Landing (Mockup) ========== */
.home-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 2rem 1.5rem 2rem;
  box-sizing: border-box;
}
.home-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(103, 232, 249, 0.15), var(--vv-light));
}
.home-hero__inner {
  position: relative;
  width: 100%;
  max-width: var(--vv-container);
  margin: 0 auto;
  box-sizing: border-box;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .home-hero__inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .home-hero { padding: 2rem 1.5rem 2rem; }
}
.home-hero__content { text-align: left; }
.home-hero__title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
  color: var(--vv-dark);
}
.home-hero__title-accent { color: var(--vv-primary); }
.home-hero__subline {
  font-size: 1.125rem;
  color: var(--vv-slate-muted);
  margin: 0 0 2.5rem;
  line-height: 1.6;
  max-width: 28rem;
}
.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
/* Einheitliches Farbdesign: beide Buttons in Prim?rfarbe ? einer gef?llt, einer dezent */
.home-hero__actions .vv-btn--primary {
  background: var(--vv-primary);
  color: var(--vv-white);
  border-color: var(--vv-primary);
}
.home-hero__actions .vv-btn--primary:hover:not(:disabled) {
  background: var(--vv-primary-hover);
  border-color: var(--vv-primary-hover);
  box-shadow: var(--vv-shadow-glow);
}
.home-hero__actions .vv-btn--secondary {
  background: rgba(37, 99, 235, 0.1);
  color: var(--vv-primary);
  border-color: var(--vv-primary);
}
.home-hero__actions .vv-btn--secondary:hover:not(:disabled) {
  background: var(--vv-primary);
  color: var(--vv-white);
  border-color: var(--vv-primary);
}
/* Forge: Abschnittsnavigation (Hero + Footer) ? klar als bedienbare Links erkennbar */
.home-hero__jump.forge-page-nav,
.site-footer__jump.forge-page-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.home-hero__jump.forge-page-nav {
  margin-top: 1.75rem;
}
.forge-page-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.5rem 1.125rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--vv-dark-soft);
  text-decoration: none;
  border: 1px solid var(--vv-border);
  border-radius: var(--vv-radius-md);
  background: var(--vv-white);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  transition: color var(--vv-duration-fast) var(--vv-ease),
    background-color var(--vv-duration-fast) var(--vv-ease),
    border-color var(--vv-duration-fast) var(--vv-ease),
    box-shadow var(--vv-duration-fast) var(--vv-ease);
}
.forge-page-nav a:hover {
  color: var(--vv-primary);
  border-color: rgba(37, 99, 235, 0.45);
  background: rgba(37, 99, 235, 0.06);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.12);
}
.forge-page-nav a:focus-visible {
  outline: 2px solid var(--vv-primary);
  outline-offset: 2px;
}
.home-hero__visual {
  padding: 1.5rem;
  border-radius: var(--vv-radius-2xl);
  background: var(--vv-card-bg);
  border: 1px solid var(--vv-card-border);
  overflow: hidden;
  transform: translateZ(0); /* Fix Safari border-radius overflow clip */
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
}
.home-hero__mock-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.home-hero__mock-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--vv-card-border);
}
.home-hero__mock-dot:nth-child(1) { background: rgba(37, 99, 235, 0.35); }
.home-hero__mock-dot:nth-child(2) { background: var(--vv-card-border); }
.home-hero__mock-dot:nth-child(3) { background: var(--vv-card-border); }
.home-hero__mock-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem;
  height: 6rem;
  margin-bottom: 1.25rem;
  padding: 0.75rem;
  background: linear-gradient(180deg, rgba(241, 245, 249, 0.98) 0%, rgba(226, 232, 240, 0.6) 100%);
  border-radius: var(--vv-radius-md);
  border: 1px solid var(--vv-card-border);
}
.home-hero__mock-bar {
  flex: 1;
  min-width: 0;
  border-radius: var(--vv-radius-sm);
  background: rgba(37, 99, 235, 0.2);
  transition: height var(--vv-duration-normal) var(--vv-ease);
}
.home-hero__mock-bar--1 { height: 45%; }
.home-hero__mock-bar--2 { height: 75%; }
.home-hero__mock-bar--3 { height: 55%; }
.home-hero__mock-bar--4 { height: 90%; }
.home-hero__visual:hover .home-hero__mock-bar--1 { height: 50%; }
.home-hero__visual:hover .home-hero__mock-bar--2 { height: 70%; }
.home-hero__visual:hover .home-hero__mock-bar--3 { height: 60%; }
.home-hero__visual:hover .home-hero__mock-bar--4 { height: 85%; }
.home-hero__mock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.home-hero__mock-cell {
  height: 4rem;
  background: var(--vv-white);
  border: 1px solid var(--vv-card-border);
  border-radius: var(--vv-radius-sm);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.home-section {
  width: 100%;
  padding: 2rem 0;
  box-sizing: border-box;
}
.home-section--white { background: var(--vv-white); }
.home-section--gradient { background: linear-gradient(to bottom, var(--vv-white), var(--vv-light)); }
.home-section__inner {
  width: 100%;
  max-width: var(--vv-container);
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
  text-align: center;
}
.home-section__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--vv-dark);
  margin: 0 0 1rem;
}
.home-section__lead {
  color: var(--vv-slate-muted);
  margin: 0 0 3rem;
  font-size: 1rem;
}
.home-cards {
  display: grid;
  gap: 1.5rem;
  margin: 0 auto;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
/* minmax(0, 1fr) = gleiche Spaltenbreite; Breite kommt vom Section-Inner, nicht vom Inhalt */
.home-cards--4 { grid-template-columns: minmax(0, 1fr); }
.home-cards--3 { grid-template-columns: minmax(0, 1fr); }
.home-cards--2 { grid-template-columns: minmax(0, 1fr); }
@media (min-width: 640px) {
  .home-cards--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-cards--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-cards--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .home-cards--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem; }
  .home-cards--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2.5rem; }
}
.home-card {
  min-width: 0;
  padding: 2rem;
  border-radius: var(--vv-radius-lg);
  background: var(--vv-card-bg);
  border: 1px solid var(--vv-card-border);
  text-align: left;
}
.home-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--vv-dark);
  min-width: 0;
}
.home-card__text {
  font-size: 0.875rem;
  color: var(--vv-slate-muted);
  margin: 0;
  line-height: 1.5;
  min-width: 0;
  overflow-wrap: break-word;
}
.home-card--muted { opacity: 0.9; }
.home-card--link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform var(--vv-duration-fast) var(--vv-ease), box-shadow var(--vv-duration-fast) var(--vv-ease);
}
.home-card--link:hover { text-decoration: none; color: inherit; }
.home-card__cta {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--vv-primary);
}
.home-card--link:hover .home-card__cta { text-decoration: underline; }

/* Toggle: Segment-Button (plan_model) */
.home-pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.home-pricing-tabs .pricing-tab {
  padding: 0.5rem 1.5rem;
  min-height: 44px;
  white-space: nowrap;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid var(--vv-primary);
  background: var(--vv-white, #fff);
  color: var(--vv-primary);
  transition: background 0.2s, color 0.2s;
}
.home-pricing-tabs .pricing-tab--first { border-radius: 8px 0 0 8px; }
.home-pricing-tabs .pricing-tab--last { border-radius: 0 8px 8px 0; margin-left: -2px; }
/* Einzelner Tab ?Monatliches Abo? (Lizenz deaktiviert): Pill-Form, etwas mehr Gewicht */
.home-pricing-tabs--abo-only .pricing-tab--first {
  border-radius: 9999px;
  padding: 0.625rem 1.75rem;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.home-pricing-tabs .pricing-tab:hover,
.home-pricing-tabs .pricing-tab:focus { text-decoration: none; }
.home-pricing-tabs .pricing-tab.vv-btn--primary {
  background: var(--vv-primary);
  color: var(--vv-white);
  border-color: var(--vv-primary);
}
.home-pricing-tabs .pricing-tab.vv-btn--primary:hover:not(:disabled) {
  background: var(--vv-primary-hover);
  border-color: var(--vv-primary-hover);
  box-shadow: var(--vv-shadow-glow);
}
.home-pricing-tabs .pricing-tab.vv-btn--ghost {
  background: var(--vv-white, #fff);
  color: var(--vv-primary);
  border-color: var(--vv-primary);
}
.home-pricing-tabs .pricing-tab.vv-btn--ghost:hover:not(:disabled) {
  background: var(--vv-primary);
  color: var(--vv-white);
  border-color: var(--vv-primary);
}
/* CTA: Vollbreite Buttons wie plan_model */
.home-pricing-card__cta {
  display: flex;
  width: 100%;
  min-width: 0;
  justify-content: center;
  text-decoration: none;
  box-sizing: border-box;
  white-space: nowrap;
  margin-top: 1.5rem;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: opacity 0.2s;
}
.home-pricing-card__cta:hover,
.home-pricing-card__cta:focus { text-decoration: none; opacity: 0.9; }
.home-pricing-card__cta--primary,
.home-pricing-card__cta.vv-btn--primary {
  background: var(--vv-primary);
  color: var(--vv-white);
  border: none;
}
.home-pricing-card__cta--primary:hover:not(:disabled),
.home-pricing-card__cta.vv-btn--primary:hover:not(:disabled) {
  background: var(--vv-primary-hover);
  border: none;
  box-shadow: var(--vv-shadow-glow);
}
/* Sekund?r-CTAs: wei?er Grund + Rand (Kartenfl?che ist ebenfalls slate-hell, sonst unsichtbar). */
.home-pricing-card__cta--secondary,
.home-pricing-card__cta.vv-btn--ghost {
  background: var(--vv-white);
  color: var(--vv-primary);
  border: 2px solid rgba(37, 99, 235, 0.35);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}
.home-pricing-card__cta--secondary:hover:not(:disabled),
.home-pricing-card__cta.vv-btn--ghost:hover:not(:disabled) {
  background: var(--vv-primary);
  color: var(--vv-white);
  border-color: var(--vv-primary);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.22);
}
/* Mini & Pro: kr?ftigere CTAs (Prim?rfarbe + mehr Gr??e + Schatten) */
.home-pricing-card__cta--emphasized {
  letter-spacing: 0.02em;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.32);
  transition: box-shadow 0.2s ease, transform 0.15s ease, background-color 0.2s ease;
}
.home-pricing-card__cta--emphasized:hover:not(:disabled),
.home-pricing-card__cta--emphasized:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.42);
}
.home-pricing-card__cta--emphasized:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 3px 14px rgba(37, 99, 235, 0.35);
}
/* Card: plan_model-Optik (relative f?r Badge, Divider, Typ-Label) */
.home-pricing-card {
  min-width: 0;
  height: 100%;
  padding: 1.75rem 1.5rem;
  border-radius: 16px;
  background: var(--vv-card-bg);
  border: 2px solid transparent;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  transition: box-shadow 0.2s;
}
.home-pricing-card:hover {
  box-shadow: 0 8px 32px rgba(79, 70, 229, 0.08);
}
.home-pricing-card--featured {
  border-color: var(--vv-primary);
  background: var(--vv-card-bg);
}
.home-pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--vv-primary);
  color: var(--vv-white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.home-pricing-card__type {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--vv-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.home-pricing-card__price-block {
  margin-bottom: 0.5rem;
}
.home-pricing-card__divider {
  border: none;
  border-top: 1px solid var(--vv-slate-200, #e2e8f0);
  margin: 1rem 0;
}
/* Einmalkauf: 3 Pl?ne (Mini, Starter, Pro) ? gleiche Spaltenanzahl wie Abo */
.home-pricing-cards.home-pricing-cards--license {
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 640px) {
  .home-pricing-cards.home-pricing-cards--license {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .home-pricing-cards.home-pricing-cards--license {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
  }
}
.home-pricing-card__name {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 1rem;
  color: var(--vv-dark, #1a1a2e);
}
.home-pricing-card__price {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 0.25rem;
  color: var(--vv-dark, #1a1a2e);
}
.home-pricing-card__period {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--vv-slate-muted, #888);
}
.home-pricing-card__note {
  font-size: 0.8rem;
  color: var(--vv-slate-muted, #aaa);
  margin: 0.25rem 0 0;
}
.home-pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.88rem;
  color: var(--vv-slate, #444);
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1 1 auto;
  min-height: 0;
}
.home-pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0;
}
.home-pricing-feature-icon {
  flex-shrink: 0;
  color: #22c55e;
  font-weight: 700;
  margin-top: 0.05rem;
}

/* Trust-Leiste: mobil untereinander, Desktop drei Kacheln */
.home-pricing-trust {
  margin: 0.95rem 0 0;
  width: 100%;
  max-width: var(--vv-container);
  margin-left: auto;
  margin-right: auto;
}
.home-pricing-trust__inner {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--vv-radius-lg);
  box-sizing: border-box;
}
.home-pricing-trust__item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.75);
  min-width: 0;
  width: 100%;
}
.home-pricing-trust__icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.12);
  color: var(--vv-primary);
  font-size: 0.9rem;
  line-height: 1;
}
.home-pricing-trust__text {
  line-height: 1.35;
  font-size: 0.9375rem;
}
@media (min-width: 1024px) {
  .home-pricing-trust {
    margin-top: 1.5rem;
  }
  .home-pricing-trust__inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    padding: 1.35rem 1.5rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 245, 249, 0.96) 100%);
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: 0 8px 36px rgba(37, 99, 235, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }
  .home-pricing-trust__item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.75rem;
    padding: 1.15rem 1rem 1.2rem;
    border-radius: var(--vv-radius-md);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(37, 99, 235, 0.14);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.07);
    font-weight: 700;
    color: var(--vv-dark);
  }
  .home-pricing-trust__icon {
    width: 48px;
    height: 48px;
    font-size: 1.35rem;
    background: rgba(37, 99, 235, 0.16);
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.18);
  }
  .home-pricing-trust__text {
    font-size: 1.0625rem;
    line-height: 1.35;
  }
}

/* Abo verwalten ? Callout unter Preiskarten / Trust-Leiste */
.home-pricing-manage {
  margin: 1.35rem auto 0;
  width: 100%;
  max-width: var(--vv-container);
}
.home-pricing-manage__card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.25rem;
  padding: 1.35rem 1.25rem;
  border-radius: var(--vv-radius-lg);
  border: 2px solid rgba(37, 99, 235, 0.35);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(239, 246, 255, 0.95) 100%);
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}
.home-pricing-manage__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--vv-radius-md);
  background: rgba(37, 99, 235, 0.12);
  color: var(--vv-primary);
  flex-shrink: 0;
}
.home-pricing-manage__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--vv-primary);
}
.home-pricing-manage__title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--vv-dark);
  line-height: 1.25;
}
.home-pricing-manage__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--vv-slate, #475569);
  max-width: 42rem;
}
.home-pricing-manage__cta {
  width: 100%;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}
.home-pricing-manage__cta:hover {
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}
@media (min-width: 640px) {
  .home-pricing-manage__card {
    flex-direction: row;
    align-items: center;
    padding: 1.5rem 1.75rem;
    gap: 1.5rem;
  }
  .home-pricing-manage__cta {
    width: auto;
    flex-shrink: 0;
    white-space: nowrap;
  }
}
@media (min-width: 1024px) {
  .home-pricing-manage {
    margin-top: 1.75rem;
  }
  .home-pricing-manage__card {
    padding: 1.65rem 2rem;
  }
  .home-pricing-manage__title {
    font-size: 1.375rem;
  }
}

.home-pricing-hint {
  font-size: 0.875rem;
  color: var(--vv-slate-muted);
  margin: 2rem auto 0;
  max-width: var(--vv-container);
}

/* Feature-Matrix (Preise-Section) */
.home-section__subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--vv-dark);
  margin: 0 0 0.5rem;
}
.home-feature-matrix-wrap {
  overflow-x: auto;
  margin-top: 0.5rem;
  border-radius: var(--vv-radius-md);
  border: 1px solid var(--vv-border);
  background: var(--vv-white);
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.home-feature-matrix {
  width: 100%;
  min-width: 320px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.home-feature-matrix th,
.home-feature-matrix td {
  padding: 0.65rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--vv-border);
}
.home-feature-matrix thead th {
  font-weight: 600;
  color: var(--vv-slate);
  background: var(--vv-light);
}
.home-feature-matrix thead th:first-child { width: 40%; }
.home-feature-matrix tbody th {
  font-weight: 500;
  color: var(--vv-dark);
}
.home-feature-matrix tbody tr:last-child th,
.home-feature-matrix tbody tr:last-child td { border-bottom: 0; }
.home-feature-matrix tbody tr:hover th,
.home-feature-matrix tbody tr:hover td { background: var(--vv-card-bg); }
.home-feature-matrix td { color: var(--vv-slate); }
@media (max-width: 640px) {
  .home-feature-matrix th,
  .home-feature-matrix td { padding: 0.5rem 0.75rem; font-size: 0.85rem; }
}

.home-cta {
  width: 100%;
  padding: 2rem 0;
  box-sizing: border-box;
  text-align: center;
  background: linear-gradient(135deg, var(--vv-primary), var(--vv-accent));
  color: var(--vv-white);
}
.home-cta__inner {
  width: 100%;
  max-width: var(--vv-container);
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}
.home-cta__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: inherit;
}
.home-cta__text { margin: 0 0 2rem; opacity: 0.9; }
.home-cta__btn {
  display: flex;
  width: 100%;
  max-width: var(--vv-cta-btn-max);
  margin: 0 auto;
  justify-content: center;
  background: var(--vv-white);
  color: var(--vv-primary);
  border: 0;
  box-sizing: border-box;
  text-decoration: none;
}
.home-cta__btn:hover { opacity: 0.95; text-decoration: none; }
.logo {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 2rem;
  max-width: 260px;
  transition: opacity var(--vv-duration-fast) var(--vv-ease), transform var(--vv-duration-fast) var(--vv-ease);
}
.logo:hover { opacity: 0.88; }
.logo:active { transform: scale(0.98); }
.logo svg { width: 100%; height: auto; display: block; }

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1.1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--vv-primary);
  background: rgba(37,99,235,.08);
  border-radius: 9999px;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(37,99,235,.15);
}
h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--vv-dark);
  margin: 0 0 0.875rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.tagline {
  font-size: 1.0625rem;
  color: var(--vv-slate-muted);
  max-width: var(--vv-container-text);
  margin: 0 auto 2.25rem;
  line-height: 1.7;
}
.divisions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.division {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  text-decoration: none;
  padding: 0.625rem 1.125rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--vv-slate);
  background: var(--vv-white);
  border: 1px solid var(--vv-border);
  border-radius: var(--vv-radius-md);
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
  transition: box-shadow var(--vv-duration-normal) var(--vv-ease), transform var(--vv-duration-normal) var(--vv-ease), border-color var(--vv-duration-fast) var(--vv-ease);
}
.division:hover {
  border-color: rgba(37,99,235,.25);
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
  transform: translateY(-2px);
}
@media (prefers-reduced-motion: reduce) { .division:hover { transform: none; } }
.division strong {
  color: var(--vv-dark);
  text-decoration: underline;
}
.division .division-desc {
  font-weight: 400;
  text-decoration: none;
  margin-top: 0.15rem;
}

/* Forge-Seite: Intro + Feature-Liste */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.forge-intro {
  max-width: var(--vv-container-text);
  margin: 0 auto 2rem;
  font-size: 1rem;
  color: var(--vv-slate);
  line-height: 1.7;
  text-align: center;
}
.forge-features {
  width: 100%;
  max-width: var(--vv-container-text);
  margin: 0 auto 2rem;
}
.forge-features__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.forge-features__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem;
  background: var(--vv-white);
  border: 1px solid var(--vv-border);
  border-radius: var(--vv-radius-md);
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.forge-features__item strong {
  color: var(--vv-dark);
  font-size: 1rem;
}
.forge-features__item span {
  font-size: 0.9375rem;
  color: var(--vv-slate-muted);
  line-height: 1.5;
}
.forge-block { margin: 0 auto 1.5rem; text-align: center; color: var(--vv-slate); }

/* Footer */
footer {
  padding: 2.5rem 1.5rem;
  font-size: 0.875rem;
  color: var(--vv-slate-muted);
  border-top: 1px solid var(--vv-border);
  background: var(--vv-white);
}
.site-footer__inner {
  max-width: var(--vv-container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
.site-footer__top {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}
.site-footer__brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
}
.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.65rem;
  border-radius: var(--vv-radius-md);
  color: var(--vv-slate-muted);
  text-decoration: none;
  font-weight: 600;
  line-height: 1;
  transition: color var(--vv-duration-fast) var(--vv-ease), background-color var(--vv-duration-fast) var(--vv-ease);
}
.site-footer__social-link:hover {
  color: #5865f2;
  background: rgba(88, 101, 242, 0.1);
}
.site-footer__social-link:focus-visible {
  outline: 2px solid var(--vv-primary);
  outline-offset: 2px;
}
.site-footer__social-icon {
  display: block;
  flex-shrink: 0;
}
.site-footer__social-label {
  font-size: 0.875rem;
}
.site-footer__jump {
  justify-content: center;
}
.site-footer__jump.forge-page-nav {
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .site-footer__inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    gap: 2rem;
  }
  .site-footer__top {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
  .site-footer__brand-row {
    justify-content: flex-start;
  }
  .site-footer__jump { justify-content: flex-start; }
}
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
@media (min-width: 768px) { .site-footer__links { justify-content: flex-start; } }
.site-footer__links a {
  color: var(--vv-slate-muted);
  text-decoration: none;
  transition: color var(--vv-duration-fast) var(--vv-ease);
}
.site-footer__links a:hover { color: var(--vv-primary); }
.site-footer__links a:focus-visible { outline: 2px solid var(--vv-primary); outline-offset: 2px; }
.site-footer__newsletter {
  width: 100%;
  max-width: 22rem;
}
.site-footer__newsletter-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--vv-slate);
  margin: 0 0 0.5rem;
}
.site-footer__newsletter-msg { font-size: 0.875rem; margin: 0 0 0.5rem; }
.site-footer__newsletter-msg--ok { color: var(--vv-success, #0d9488); }
.site-footer__newsletter-msg--error { color: var(--vv-error, #b91c1c); }
.site-footer__newsletter-form {
  position: relative;
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.site-footer__newsletter-form input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--vv-border);
  border-radius: var(--vv-radius);
  font-size: 1rem;
}
.site-footer__newsletter-form button {
  padding: 0.5rem 1rem;
  background: var(--vv-primary);
  color: var(--vv-white);
  border: none;
  border-radius: var(--vv-radius);
  font-weight: 600;
  cursor: pointer;
}
.site-footer__newsletter-form button:hover { opacity: 0.9; }
.site-footer__newsletter-privacy {
  font-size: 0.75rem;
  color: var(--vv-slate-muted);
  margin: 0;
}
.site-footer__newsletter-privacy a { color: var(--vv-primary); text-decoration: none; }
.site-footer__newsletter-privacy a:hover { text-decoration: underline; }
footer a {
  color: var(--vv-slate-muted);
  text-decoration: none;
  transition: color var(--vv-duration-fast) var(--vv-ease);
}
footer a:hover { color: var(--vv-primary); }
footer a:focus-visible { outline: 2px solid var(--vv-primary); outline-offset: 2px; }

/* i18n (DE/EN Umschaltung per Klasse) */
.i18n-en { display: none; }
html[lang="en"] .i18n-de { display: none; }
html[lang="en"] .i18n-en { display: block; }
html[lang="en"] .i18n-en.inline { display: inline; }
html[lang="en"] footer .i18n-en { display: inline; }

/* Rechtliche Seiten (Imprint, Privacy, Kontakt, etc.) */
.legal-page .page-main {
  flex: 1;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.legal-page {
  width: 100%;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
@media (min-width: 64rem) {
  .legal-page { max-width: min(52rem, 85%); }
}
.legal-page .page-inner { width: 100%; text-align: left; box-sizing: border-box; }
.legal-page .page-logo {
  display: inline-block;
  margin-bottom: 2rem;
  text-decoration: none;
  color: inherit;
}
.legal-page .page-logo svg { display: block; height: 44px; width: auto; }
.legal-page .page-logo:hover { opacity: 0.85; }
.legal-page .page-title { font-size: 1.75rem; font-weight: 700; color: var(--vv-dark); margin: 0 0 1.5rem; }
/* Checkout: gew?hlter Tarif deutlich sichtbar */
.checkout-plan-summary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  margin: 0 0 1.75rem;
  padding: 1.15rem 1.35rem;
  border: 2px solid rgba(37, 99, 235, 0.35);
  border-radius: var(--vv-radius-lg);
  background: rgba(37, 99, 235, 0.07);
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.1);
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}
.checkout-plan-summary__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--vv-slate-muted);
}
.checkout-plan-summary__plan {
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--vv-dark);
}
.checkout-plan-summary__mode {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--vv-primary);
  line-height: 1.3;
}
.legal-page .legal-content { font-size: 0.9375rem; line-height: 1.7; color: var(--vv-slate); }
.legal-page .legal-content p { margin: 0 0 1rem; }
.legal-page .legal-content section + section { margin-top: 0; }
.legal-page .legal-content a { color: var(--vv-primary); text-decoration: none; }
.legal-page .legal-content a:hover { text-decoration: underline; }
.legal-page .legal-content a:focus-visible { outline: 2px solid var(--vv-primary); outline-offset: 2px; }
.legal-page .page-back { margin-top: 2.5rem; }
.legal-page .page-back a { color: var(--vv-primary); font-weight: 500; text-decoration: none; }
.legal-page .page-back a:hover { text-decoration: underline; }
.legal-page .page-back a:focus-visible { outline: 2px solid var(--vv-primary); outline-offset: 2px; }

/* ========== Kundenkonto (/konto) ========== */
body.page-account .legal-page.lp-account-page {
  max-width: min(56rem, 92%);
}

.lp-account-welcome {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(6, 182, 212, 0.06));
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: var(--vv-radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.lp-account-welcome__text {
  margin-bottom: 0.35rem !important;
  font-size: 1.0625rem;
}

.lp-account-welcome__intro {
  margin-bottom: 0 !important;
}

.lp-account-section {
  background: var(--vv-white);
  border: 1px solid var(--vv-border);
  border-radius: var(--vv-radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}

.lp-account-section__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--vv-dark);
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--vv-border);
}

.lp-account-section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--vv-border);
}

.lp-account-section__head .lp-account-section__title {
  margin: 0;
  padding: 0;
  border: none;
  flex: 1 1 auto;
}

.lp-billing-portal-form {
  margin: 0;
  flex-shrink: 0;
}

.lp-hmac-badge {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.1rem 0.45rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #15803d;
  background: rgba(22, 163, 74, 0.12);
  border-radius: 999px;
  vertical-align: middle;
}

.lp-hmac-reveal {
  margin-top: 0.75rem;
  padding: 0.875rem 1rem;
  background: var(--vv-light, #f8fafc);
  border: 1px dashed var(--vv-border, #e2e8f0);
  border-radius: var(--vv-radius-md, 12px);
}

.lp-hmac-reveal__label {
  margin: 0 0 0.35rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.lp-hmac-reveal__value {
  display: block;
  word-break: break-all;
  font-size: 0.9375rem;
  padding: 0.5rem 0.625rem;
  background: #fff;
  border: 1px solid var(--vv-border, #e2e8f0);
  border-radius: 6px;
}

.lp-hmac-reveal__hint {
  margin: 0.5rem 0 0.35rem;
  font-size: 0.8125rem;
  color: var(--vv-slate-muted, #64748b);
}

.lp-hmac-reveal__env {
  margin: 0;
  padding: 0.5rem 0.625rem;
  font-size: 0.8125rem;
  overflow-x: auto;
  background: #0f172a;
  color: #e2e8f0;
  border-radius: 6px;
}

.lp-account-section__footer {
  margin: 1rem 0 0;
}

.lp-account-hint {
  margin-top: 1rem !important;
}

.vv-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.vv-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.vv-table th {
  text-align: left;
  padding: 0.625rem 0.75rem;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--vv-slate-muted);
  border-bottom: 2px solid var(--vv-border);
  white-space: nowrap;
}

.vv-table td {
  padding: 0.875rem 0.75rem;
  border-bottom: 1px solid var(--vv-border);
  vertical-align: middle;
  color: var(--vv-slate);
}

.vv-table tbody tr:last-child td {
  border-bottom: none;
}

.vv-table--account tbody tr:hover {
  background: rgba(37, 99, 235, 0.04);
}

.vv-table code {
  font-size: 0.875rem;
  background: var(--vv-light);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  border: 1px solid var(--vv-border);
}

.lp-account-status {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.625rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.4;
}

.lp-account-status--active {
  background: rgba(22, 163, 74, 0.12);
  color: #15803d;
}

.lp-account-status--expired {
  background: rgba(234, 88, 12, 0.12);
  color: #c2410c;
}

.lp-account-status--revoked,
.lp-account-status--suspended {
  background: rgba(220, 38, 38, 0.1);
  color: #b91c1c;
}

.lp-account-status--inactive {
  background: rgba(100, 116, 139, 0.12);
  color: var(--vv-slate-muted);
}

/* Lernportal Produktseite */
.page-lernportal .home-hero__title-accent {
  display: block;
  color: var(--vv-primary);
}

.lp-hero-visual__rows {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0.85rem;
}

.lp-hero-visual__row {
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
}

.lp-hero-visual__row--a { width: 88%; }
.lp-hero-visual__row--b { width: 64%; background: rgba(37, 99, 235, 0.22); }
.lp-hero-visual__row--c { width: 76%; }

.lp-hero-visual__progress {
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  overflow: hidden;
  margin-bottom: 0.85rem;
}

.lp-hero-visual__bar {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--vv-primary), #60a5fa);
}

.lp-how-steps {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .lp-how-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lp-how-steps__item {
  margin: 0;
  padding: 1.25rem 1.15rem 1.35rem;
  position: relative;
}

.lp-how-steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--vv-primary);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.lp-how-steps__title {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--vv-dark);
}

.lp-how-steps__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--vv-slate, #475569);
}

.page-lernportal .home-pricing-card__subline {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.45;
}

.page-lernportal .home-pricing-card__unavailable {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 600;
}

.lp-pricing-manage__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  width: 100%;
}

@media (min-width: 640px) {
  .lp-pricing-manage__actions {
    width: auto;
    flex-direction: column;
    flex-shrink: 0;
    align-items: stretch;
  }

  .lp-pricing-manage__actions .vv-btn {
    white-space: nowrap;
    justify-content: center;
  }
}

.lp-matrix-section {
  text-align: left;
  background: rgba(0, 0, 0, 0.03);
  padding: 0.65rem 1rem;
  font-weight: 600;
}

.page-lernportal .home-feature-matrix thead th:nth-child(3),
.page-lernportal .home-feature-matrix tbody td:nth-child(3) {
  background: rgba(37, 99, 235, 0.04);
}

.page-lernportal .home-feature-matrix thead th:nth-child(3) {
  color: var(--vv-primary);
}

.lp-faq {
  max-width: 56rem;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.lp-faq__item {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--vv-radius-lg);
  padding: 0.75rem 0.9rem;
}

.lp-faq__item summary {
  cursor: pointer;
  font-weight: 700;
}

.lp-faq__item p {
  margin: 0.6rem 0 0;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.5;
}

/* Lernportal Kundenportal: Aktionen (Verlängern, Abmelden) */
.lp-portal-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--vv-border);
}

.lp-portal-actions .lp-portal-logout-form {
  margin: 0;
  display: inline-flex;
}

.lp-portal-actions .vv-btn {
  text-decoration: none;
  font-family: inherit;
  min-width: 8rem;
}

.lp-portal-actions .vv-btn--primary {
  background: var(--vv-primary);
  color: var(--vv-white);
  border-color: var(--vv-primary);
}

.lp-portal-actions .vv-btn--secondary {
  background: rgba(37, 99, 235, 0.1);
  color: var(--vv-primary);
  border: 2px solid var(--vv-primary);
}

.lp-portal-actions .vv-btn--secondary:hover:not(:disabled) {
  background: var(--vv-primary);
  color: var(--vv-white);
  border-color: var(--vv-primary);
  text-decoration: none;
}

.lp-portal-renewal-hint {
  margin-top: 0.75rem !important;
  font-size: 0.875rem;
  color: var(--vv-slate-muted);
}

.lp-license-actions {
  min-width: 10.5rem;
  vertical-align: top;
}

.lp-license-actions__toolbar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: stretch;
}

.lp-license-actions .lp-license-action-form {
  margin: 0;
  display: block;
}

.lp-license-actions .vv-btn,
.lp-license-actions .lp-domain-change summary {
  width: 100%;
  justify-content: center;
  min-height: 2.25rem;
  font-size: 0.8125rem;
  padding: 0.375rem 0.75rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.lp-license-actions .vv-btn--primary {
  background: var(--vv-primary);
  color: var(--vv-white);
  border-color: var(--vv-primary);
}

.lp-license-actions .vv-btn--primary:hover:not(:disabled) {
  background: var(--vv-primary-hover);
  border-color: var(--vv-primary-hover);
  box-shadow: var(--vv-shadow-glow);
}

.lp-license-actions .vv-btn--secondary,
.lp-license-actions .lp-domain-change summary.vv-btn--secondary {
  background: rgba(37, 99, 235, 0.1);
  color: var(--vv-primary);
  border: 2px solid var(--vv-primary);
}

.lp-license-actions .vv-btn--secondary:hover:not(:disabled),
.lp-license-actions .lp-domain-change summary.vv-btn--secondary:hover {
  background: var(--vv-primary);
  color: var(--vv-white);
  border-color: var(--vv-primary);
}

.lp-domain-change {
  margin-top: 0;
}

.lp-domain-change summary {
  cursor: pointer;
  list-style: none;
  display: inline-flex;
}

.lp-domain-change summary::-webkit-details-marker {
  display: none;
}

.lp-domain-change-form {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  max-width: 18rem;
  padding: 0.75rem;
  background: var(--vv-light);
  border: 1px solid var(--vv-border);
  border-radius: var(--vv-radius-md);
}

.lp-domain-change-form .vv-input {
  flex: 1 1 100%;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .lp-license-actions__toolbar {
    min-width: 9.5rem;
  }
}

@media (max-width: 767px) {
  .lp-account-section {
    padding: 1rem;
  }

  .lp-portal-actions .vv-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Kontaktformular */
.contact-form .form-row { margin-bottom: 1rem; }
.contact-form .form-row--checkbox label { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 0; font-weight: 400; cursor: pointer; }
/* Checkbox klar als K?stchen + Haken darstellen (vv-input ?berschreibt sonst mit Textfeld-Styles) */
.contact-form .form-row--checkbox input[type="checkbox"] {
  flex-shrink: 0;
  margin: 0.2rem 0 0 0;
  width: 1.25rem;
  height: 1.25rem;
  min-width: 1.25rem;
  padding: 0;
  cursor: pointer;
  accent-color: var(--vv-primary);
  border-radius: 4px;
}
.contact-form .form-row--checkbox .form-row__checkbox-text { flex: 1; min-width: 0; }
.contact-form .form-row--checkbox label a { color: var(--vv-primary); text-decoration: underline; }
.checkout-alert {
  margin: 0 0 1rem;
  padding: 0.875rem 1rem;
  border-radius: var(--vv-radius-md);
  border: 1px solid rgba(185, 28, 28, 0.28);
  background: rgba(254, 242, 242, 0.95);
  color: #991b1b;
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
}
/* Abo verwalten, Kontakt, ?hnliche Formular-R?ckmeldungen */
.vv-feedback {
  margin: 0 0 1.25rem;
  padding: 1rem 1.125rem 1rem 1.25rem;
  border-radius: var(--vv-radius-md);
  font-weight: 600;
  line-height: 1.5;
  border: 1px solid transparent;
  border-left-width: 4px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}
.vv-feedback--success {
  background: #ecfdf5;
  border-color: #a7f3d0;
  border-left-color: #059669;
  color: #065f46;
}
.vv-feedback--error {
  background: #fef2f2;
  border-color: #fecaca;
  border-left-color: #dc2626;
  color: #991b1b;
}
.vv-feedback--warning {
  background: #fffbeb;
  border-color: #fde68a;
  border-left-color: #d97706;
  color: #92400e;
}
.contact-form .form-error,
.legal-page .form-error { display: block; margin-top: 0.25rem; color: var(--vv-error, #c00); font-size: 0.9em; }
.contact-form .form-hint,
.legal-page .form-hint { display: block; margin-top: 0.25rem; color: var(--vv-muted, #666); font-size: 0.85em; }
.contact-form label { display: block; margin-bottom: 0.25rem; font-weight: 500; }
/* Honeypot: f?r Menschen unsichtbar und aus dem Fokus, f?r Bots sichtbar (kein display:none). */
.contact-form { position: relative; }
.vv-hp,
.contact-form .honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}
.vv-hp input,
.contact-form .honeypot input { box-sizing: border-box; }
/* Senden-Button: gleicher Stil wie ?Jetzt entdecken? (solides Prim?rblau) */
.contact-form .vv-btn--primary,
.contact-form button[type="submit"].vv-btn--primary {
  background: var(--vv-primary);
  color: var(--vv-white);
  border-color: var(--vv-primary);
  text-decoration: none;
}
.contact-form .vv-btn--primary:hover:not(:disabled),
.contact-form button[type="submit"].vv-btn--primary:hover:not(:disabled) {
  background: var(--vv-primary-hover);
  border-color: var(--vv-primary-hover);
  box-shadow: var(--vv-shadow-glow);
}

/* ========== Games (Katalog + Titel-Details) ========== */
.games-page { width: 100%; }

/* Intro: Label-Hero + Katalog in einem Block */
.games-page-intro { width: 100%; }

.games-page-intro__hero {
  background: linear-gradient(135deg, #1e1b4b 0%, #4c1d95 50%, #312e81 100%);
  color: var(--vv-white);
}
.games-page-intro__hero-inner {
  max-width: var(--vv-container);
  margin: 0 auto;
  padding: 2.25rem 1.5rem 2rem;
  box-sizing: border-box;
  text-align: left;
}
.games-label__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c4b5fd;
}
.games-page-intro__title {
  margin: 0;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--vv-white);
}
.games-page-intro__lead {
  margin: 0.85rem 0 0;
  max-width: 36rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}
.games-page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.games-page-intro__hero .forge-page-nav a {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}
.games-page-intro__hero .forge-page-nav a:hover {
  color: var(--vv-white);
  background: rgba(124, 58, 237, 0.45);
  border-color: rgba(196, 181, 253, 0.5);
}

.games-page-intro__catalog {
  background: linear-gradient(to bottom, var(--vv-white), var(--vv-light));
  padding: 2rem 0 2.5rem;
}
.games-catalog__wrap {
  text-align: left;
}
.games-catalog__heading {
  margin: 0 0 0.35rem;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--vv-dark);
}
.games-catalog__lead {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--vv-slate-muted);
}

/* Katalog ? Karten */
.games-catalog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .games-catalog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
}
.games-catalog-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-color: var(--vv-border);
  min-width: 0;
}
.games-catalog-card--compact {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  align-items: stretch;
  min-height: 7.5rem;
}
.games-catalog-card--featured {
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.1);
}

/* Logo-Spalte (Emblem auf Gold ? wie Detail-Hero) */
.games-catalog-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem;
  background: linear-gradient(155deg, #c9a84c 0%, #a68450 55%, #8b6914 100%);
  border-right: 1px solid rgba(139, 105, 20, 0.45);
  box-shadow: inset 0 1px 0 rgba(226, 200, 120, 0.4);
  text-decoration: none;
  transition: filter var(--vv-duration-normal) var(--vv-ease);
}
.games-catalog-card:hover .games-catalog-card__logo { filter: brightness(1.06); }
.games-catalog-card__logo-img {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

.games-catalog-card__thumb-link {
  display: block;
  overflow: hidden;
  line-height: 0;
  background: #1e1b4b;
}
.games-catalog-card__thumb {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 7.5rem;
  object-fit: cover;
  transition: transform var(--vv-duration-normal) var(--vv-ease);
}
.games-catalog-card:hover .games-catalog-card__thumb { transform: scale(1.04); }

.games-catalog-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.85rem 0.95rem;
  min-width: 0;
}

.games-status {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.games-status--card { margin-bottom: 0.15rem; }
.games-status--hero { margin-top: 0.5rem; }
.games-status__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 999px;
  line-height: 1.3;
}
.games-status__badge--dev {
  color: #5b21b6;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.22);
}
.games-status__badge--soon {
  color: #b45309;
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.35);
}

.games-dev-notice {
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.1), rgba(245, 158, 11, 0.1));
  border-top: 1px solid rgba(124, 58, 237, 0.15);
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}
.games-dev-notice__inner {
  display: grid;
  gap: 0.85rem 1.25rem;
  align-items: center;
  max-width: var(--vv-container);
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  box-sizing: border-box;
}
@media (min-width: 992px) {
  .games-dev-notice__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 2.5rem;
    padding: 0.85rem 1.5rem;
  }
  .games-dev-notice__text { grid-column: 1; }
  .games-dev-notice__cta {
    grid-column: 2;
    justify-self: end;
  }
}
.games-dev-notice__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--vv-slate);
  text-align: left;
}
.games-dev-notice__cta { flex-shrink: 0; align-self: center; }

.games-catalog-card__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}
.games-catalog-card__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}
.games-catalog-card__title a {
  color: var(--vv-dark);
  text-decoration: none;
}
.games-catalog-card__title a:hover { color: var(--vg-primary, #7c3aed); }
.games-catalog-card__tagline {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--vg-primary, #7c3aed);
}
.games-catalog-card__teaser {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--vv-slate);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.games-catalog-card__genres {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.games-catalog-card__genres li {
  padding: 0.2rem 0.55rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #5b21b6;
  background: rgba(124, 58, 237, 0.08);
  border-radius: 9999px;
}
.games-catalog-card__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 0.35rem;
}
.games-catalog-card__actions .vv-btn--sm {
  flex: 1 1 calc(50% - 0.25rem);
  min-width: 0;
  text-align: center;
}
.games-catalog-card__actions .vv-btn--ghost {
  background: rgba(124, 58, 237, 0.07);
  color: #5b21b6;
  border: 1px solid rgba(124, 58, 237, 0.45);
  font-weight: 600;
}
.games-catalog-card__actions .vv-btn--ghost:hover:not(:disabled) {
  background: rgba(124, 58, 237, 0.14);
  color: #4c1d95;
  border-color: rgba(124, 58, 237, 0.6);
}

.games-catalog-card--soon {
  display: flex;
  min-height: 7.5rem;
  border-style: dashed;
  border-color: rgba(124, 58, 237, 0.35);
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.04) 0%, rgba(255, 255, 255, 0.6) 100%);
}
.games-catalog-card__soon-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.games-catalog-card__soon-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--vg-primary, #7c3aed);
  border: 2px dashed rgba(124, 58, 237, 0.35);
  border-radius: 50%;
}
.games-catalog-card__soon-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--vv-dark);
}
.games-catalog-card__soon-text {
  margin: 0;
  max-width: 16rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--vv-slate-muted);
}

/* Titel-Detail (pro Spiel) */
.games-titles { width: 100%; }
.games-title {
  scroll-margin-top: var(--vv-scroll-offset);
  border-top: 1px solid var(--vv-border);
}
.games-title__hero {
  background: linear-gradient(135deg, #1e1b4b 0%, #4c1d95 50%, #312e81 100%);
  color: var(--vv-white);
}
.games-title__hero-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
  max-width: var(--vv-container);
  margin: 0 auto;
  padding: 2rem 1.5rem;
  box-sizing: border-box;
}
@media (min-width: 992px) {
  .games-title__hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 2.5rem;
    padding: 2.5rem 1.5rem;
  }
}
.games-title__hero-content {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
  row-gap: 1.25rem;
  align-items: start;
  text-align: left;
}
.games-title__brand {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1 / -1;
  align-items: center;
}
@supports not (grid-template-columns: subgrid) {
  .games-title__brand {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .games-title__store-cta {
    margin-left: calc(56px + 1rem);
  }
}
.games-title__icon {
  grid-column: 1;
  grid-row: 1;
}
.games-title__header-text {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}
.games-title__store-cta {
  grid-column: 1 / -1;
  width: max-content;
  max-width: 100%;
  margin-left: calc(56px + 1rem);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  align-self: start;
  justify-self: start;
}
.games-title__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  padding: 0.1rem;
  border-radius: 14px;
  box-sizing: border-box;
  object-fit: contain;
  background: linear-gradient(155deg, #c9a84c 0%, #a68450 55%, #8b6914 100%);
  border: 1px solid rgba(139, 105, 20, 0.85);
  box-shadow:
    0 4px 18px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(226, 200, 120, 0.45);
}
.games-title__name {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--vv-white);
}
.games-title__tagline {
  margin: 0.35rem 0 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #e9d5ff;
}
.games-title__hero .games-status__badge {
  font-size: 0.75rem;
  padding: 0.28rem 0.7rem;
}
.games-title__hero .games-status__badge--dev {
  color: #faf5ff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.games-title__hero .games-status__badge--soon {
  color: #fffbeb;
  background: rgba(245, 158, 11, 0.35);
  border: 1px solid #fcd34d;
}
.games-title__hero-visual {
  margin: 0;
  border-radius: var(--vv-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  line-height: 0;
}
.games-title__hero-img {
  display: block;
  width: 100%;
  height: auto;
}

.games-stats {
  background: linear-gradient(90deg, #4c1d95 0%, #6d28d9 50%, #4c1d95 100%);
  color: var(--vv-white);
}
.games-stats--inline { margin-top: 0; }
.games-stats__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: var(--vv-container);
  margin: 0 auto;
  padding: 1.75rem 1.5rem;
}
@media (min-width: 640px) {
  .games-stats__inner { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.games-stats__item { text-align: center; }
.games-stats__value {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--vv-white);
}
.games-stats__label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #ddd6fe;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.games-title__section { padding: 2rem 0; }
.games-title__section-inner { text-align: center; }
.games-title__section-title {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--vv-dark);
}

.games-about__text {
  max-width: var(--vv-container-text);
  margin: 0 auto 2rem;
  color: var(--vv-slate);
  line-height: 1.7;
  text-align: center;
}
.games-about__text--left {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  text-align: left;
}

.games-screenshots__title {
  margin: 2rem 0 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--vv-dark);
  text-align: left;
}
.games-screenshots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 16rem), 1fr));
  gap: 1.25rem;
  margin-top: 0;
  text-align: left;
}
.games-screenshots__item {
  margin: 0;
  border-radius: var(--vv-radius-lg);
  overflow: hidden;
  border: 1px solid var(--vv-border);
  box-shadow: var(--vv-shadow-md);
  background: var(--vv-white);
}
.games-screenshots__trigger {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  font: inherit;
  color: inherit;
  text-align: inherit;
  transition: opacity var(--vv-duration-fast) var(--vv-ease);
}
.games-screenshots__trigger:hover { opacity: 0.92; }
.games-screenshots__trigger:focus-visible {
  outline: 2px solid var(--vg-primary, #7c3aed);
  outline-offset: -2px;
}
.games-screenshots__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  pointer-events: none;
}
.games-screenshots__caption {
  padding: 0.65rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--vv-slate);
  text-align: center;
}

.games-lightbox {
  border: none;
  padding: 0;
  margin: 0;
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
  background: transparent;
  overflow: visible;
}
.games-lightbox::backdrop {
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(4px);
}
.games-lightbox__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 3.5rem 4.5rem 4rem;
  box-sizing: border-box;
}
.games-lightbox__figure {
  margin: 0;
  max-width: min(92vw, 72rem);
  width: 100%;
  touch-action: pan-y pinch-zoom;
}
.games-lightbox__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 9rem);
  object-fit: contain;
  border-radius: var(--vv-radius-md);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  transition: opacity var(--vv-duration-fast) var(--vv-ease), transform var(--vv-duration-fast) var(--vv-ease);
}
.games-lightbox__img.is-changing {
  opacity: 0.35;
  transform: scale(0.985);
}
.games-lightbox__img.is-swiping {
  transition: none;
}
.games-lightbox__caption {
  margin-top: 0.85rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #f8fafc;
  text-align: center;
}
.games-lightbox__counter {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(248, 250, 252, 0.75);
}
.games-lightbox__close,
.games-lightbox__nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(248, 250, 252, 0.2);
  background: rgba(15, 23, 42, 0.55);
  color: #f8fafc;
  cursor: pointer;
  transition: background-color var(--vv-duration-fast) var(--vv-ease), border-color var(--vv-duration-fast) var(--vv-ease), opacity var(--vv-duration-fast) var(--vv-ease);
}
.games-lightbox__close:hover,
.games-lightbox__nav:hover:not(:disabled) {
  background: rgba(124, 58, 237, 0.85);
  border-color: rgba(124, 58, 237, 0.9);
}
.games-lightbox__close:focus-visible,
.games-lightbox__nav:focus-visible {
  outline: 2px solid #c4b5fd;
  outline-offset: 2px;
}
.games-lightbox__close {
  top: 1rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  font-size: 1.75rem;
  line-height: 1;
}
.games-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  font-size: 2rem;
  line-height: 1;
}
.games-lightbox__nav--prev { left: 1rem; }
.games-lightbox__nav--next { right: 1rem; }
.games-lightbox__nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.games-feature-cards .home-card__title { color: var(--vg-primary, #7c3aed); }

.games-split {
  display: grid;
  gap: 2.5rem;
  align-items: start;
  text-align: left;
}
@media (min-width: 992px) {
  .games-split { grid-template-columns: 1.1fr 0.9fr; gap: 3rem; }
}
.games-split__col--left .games-title__section-title { text-align: left; }
.games-highlights {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}
.games-highlights li {
  position: relative;
  margin: 0 0 0.85rem;
  padding-left: 1.35rem;
  color: var(--vv-slate);
  line-height: 1.6;
}
.games-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--vg-primary, #7c3aed);
}
.games-callout {
  height: 100%;
  padding: 1.5rem;
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.06) 0%, rgba(6, 182, 212, 0.04) 100%);
  border-color: rgba(124, 58, 237, 0.18);
}

.games-endgame {
  background: linear-gradient(180deg, #1e1b4b 0%, #312e81 100%);
  color: var(--vv-white);
}
.games-endgame__title,
.games-endgame__lead { color: var(--vv-white); }
.games-endgame__lead { opacity: 0.9; max-width: 42rem; margin-left: auto; margin-right: auto; }
.games-audience {
  max-width: var(--vv-container-narrow);
  margin: 2rem auto 0;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}
.games-audience .home-card__title { color: #e9d5ff; }
.games-audience .home-card__text { color: rgba(255, 255, 255, 0.85); }

.games-specs {
  max-width: 36rem;
  margin: 1.5rem auto 2rem;
  padding: 0;
  text-align: left;
}
.games-specs__row {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 0.75rem 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--vv-border);
}
.games-specs__row:last-child { border-bottom: 0; }
.games-specs dt {
  margin: 0;
  font-weight: 600;
  color: var(--vv-dark-soft);
}
.games-specs dd {
  margin: 0;
  color: var(--vv-slate);
}
@media (max-width: 479px) {
  .games-specs__row { grid-template-columns: 1fr; gap: 0.25rem; }
}
.games-specs--hw {
  max-width: none;
  margin: 0;
}
.games-specs__hw-title {
  margin: 2rem 0 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--vv-dark-soft);
  text-align: center;
}
.games-specs-compare {
  max-width: 56rem;
  margin: 0 auto 1.5rem;
}
.games-specs-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9375rem;
}
.games-specs-table thead th {
  padding: 0 0 0.65rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--vv-text-muted, #64748b);
  vertical-align: bottom;
}
.games-specs-table__col-label {
  width: 9.5rem;
  padding-right: 1rem;
}
.games-specs-table__col-min,
.games-specs-table__col-rec {
  width: 38%;
}
.games-specs-table tbody th,
.games-specs-table tbody td {
  padding: 0.85rem 0;
  border-top: 1px solid var(--vv-border);
  vertical-align: top;
  line-height: 1.45;
}
.games-specs-table tbody th {
  padding-right: 1rem;
  font-weight: 600;
  color: var(--vv-dark-soft);
}
.games-specs-table tbody td {
  color: var(--vv-slate);
  padding-right: 1.25rem;
}
.games-specs-table tbody td:last-child {
  padding-right: 0;
}
.games-specs-table tbody tr:last-child th,
.games-specs-table tbody tr:last-child td {
  border-bottom: 1px solid var(--vv-border);
}
@media (max-width: 767px) {
  .games-specs-compare {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .games-specs-table {
    min-width: 32rem;
  }
  .games-specs-table__col-label {
    width: 7.5rem;
  }
}
@media (max-width: 479px) {
  .games-specs-table thead {
    display: none;
  }
  .games-specs-table,
  .games-specs-table tbody,
  .games-specs-table tr,
  .games-specs-table th,
  .games-specs-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }
  .games-specs-table tbody tr {
    padding: 0.85rem 0;
    border-top: 1px solid var(--vv-border);
  }
  .games-specs-table tbody tr:last-child {
    border-bottom: 1px solid var(--vv-border);
  }
  .games-specs-table tbody th,
  .games-specs-table tbody td {
    padding: 0;
    border: 0;
  }
  .games-specs-table tbody th {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--vv-text-muted, #64748b);
  }
  .games-specs-table tbody td {
    margin-bottom: 0.65rem;
    padding-left: 0;
  }
  .games-specs-table tbody td:last-child {
    margin-bottom: 0;
  }
  .games-specs-table tbody td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--vv-text-muted, #64748b);
  }
}

.games-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.games-page-footer { padding-bottom: 2.5rem; }
.games-cta-row__back { min-width: 12rem; text-align: center; }

#spiele { scroll-margin-top: var(--vv-scroll-offset); }

/* Games ? Mobile & Touch */
@media (max-width: 991px) {
  .games-title__hero-inner {
    padding: 1.35rem 1rem 1.5rem;
    gap: 1.25rem;
  }
  .games-title__hero-visual { order: -1; }
  .games-title__hero-content { row-gap: 1rem; }
  .games-title__store-cta {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    justify-content: center;
  }
  @supports not (grid-template-columns: subgrid) {
    .games-title__store-cta { margin-left: 0; }
  }
  .games-dev-notice__inner {
    padding: 0.75rem 1rem;
    gap: 0.65rem 1rem;
  }
  .games-title__name { font-size: clamp(1.35rem, 5vw, 1.75rem); }
}

@media (max-width: 639px) {
  body.page-games {
    overflow-x: clip;
  }

  .games-page-intro__hero-inner {
    padding: 1.5rem 1rem 1.35rem;
  }
  .games-page-intro__lead {
    font-size: 0.9375rem;
    line-height: 1.55;
  }
  .games-page-nav {
    gap: 0.4rem;
    margin-top: 1.15rem;
  }
  .games-page-intro__catalog {
    padding: 1.5rem 0 2rem;
  }
  .games-catalog__wrap .home-section__inner,
  .games-title__section .home-section__inner,
  .games-page-footer .home-section__inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .games-catalog__lead {
    margin-bottom: 1rem;
    font-size: 0.875rem;
  }

  /* Katalog: gestapelt statt schmal nebeneinander */
  .games-catalog-card--compact {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .games-catalog-card__logo {
    border-right: none;
    border-bottom: 1px solid rgba(139, 105, 20, 0.45);
    padding: 0.9rem 1rem;
    min-height: 4.5rem;
  }
  .games-catalog-card__logo-img {
    width: 3.25rem;
    height: 3.25rem;
  }
  .games-catalog-card__body {
    padding: 0.9rem 1rem 1rem;
    gap: 0.5rem;
  }
  .games-catalog-card__actions {
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.5rem;
  }
  .games-catalog-card__teaser {
    -webkit-line-clamp: 3;
  }
  .games-catalog-card__actions .vv-btn--sm {
    flex: 1 1 auto;
    width: 100%;
    min-height: 44px;
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
  }

  .games-catalog-card__actions .vv-btn--sm,
  .games-dev-notice__cta,
  .games-title__store-cta,
  .games-cta-row .vv-btn--lg,
  .games-cta-row__back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .games-dev-notice__inner {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .games-dev-notice__text {
    font-size: 0.8125rem;
    line-height: 1.4;
    text-align: left;
  }
  .games-dev-notice__cta {
    width: 100%;
    min-height: 44px;
    justify-content: center;
    justify-self: stretch;
    margin-top: 0.15rem;
  }

  .games-title__store-cta {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    text-align: center;
    min-height: 44px;
    justify-content: center;
  }
  @supports not (grid-template-columns: subgrid) {
    .games-title__store-cta { margin-left: 0; }
  }
  .games-title__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }
  .games-title__hero .games-status__badge {
    font-size: 0.6875rem;
    padding: 0.24rem 0.55rem;
  }

  .games-stats__inner {
    padding: 1.25rem 1rem;
    gap: 0.75rem;
  }
  .games-stats__value { font-size: 1.5rem; }
  .games-stats__label { font-size: 0.75rem; }

  .games-title__section {
    padding: 1.5rem 0;
  }
  .games-title__section-title {
    font-size: 1.25rem;
  }
  .games-screenshots {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .games-screenshots__trigger {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .games-screenshots__img {
    aspect-ratio: 16 / 10;
  }

  .games-split__col--left .games-title__section-title,
  .games-highlights {
    text-align: left;
  }
  .games-highlights li {
    font-size: 0.9375rem;
    padding-left: 1.35rem;
  }

  .games-cta-row .vv-btn--lg {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }
  .games-cta-row__back {
    width: 100%;
    min-height: 44px;
  }

  .games-lightbox__inner {
    padding:
      max(3rem, env(safe-area-inset-top, 0px) + 2.5rem)
      max(0.5rem, env(safe-area-inset-right, 0px))
      max(3.25rem, env(safe-area-inset-bottom, 0px) + 2rem)
      max(0.5rem, env(safe-area-inset-left, 0px));
  }
  .games-lightbox__figure {
    max-width: 100%;
  }
  .games-lightbox__img {
    max-height: calc(100dvh - 8.5rem - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    border-radius: var(--vv-radius-md);
  }
  .games-lightbox__caption {
    font-size: 0.875rem;
    padding: 0 0.25rem;
  }
  .games-lightbox__counter {
    bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
    font-size: 0.75rem;
  }
  .games-lightbox__close {
    top: max(0.5rem, env(safe-area-inset-top, 0px));
    right: max(0.5rem, env(safe-area-inset-right, 0px));
    width: 3rem;
    height: 3rem;
  }
  .games-lightbox__nav {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.625rem;
  }
  .games-lightbox__nav--prev {
    left: max(0.25rem, env(safe-area-inset-left, 0px));
  }
  .games-lightbox__nav--next {
    right: max(0.25rem, env(safe-area-inset-right, 0px));
  }
}


/* ============================================================
   Forge product family (Angebot One UX U9) ? scoped to page-forge
   Corporate Vayvolt blue stays elsewhere; Games purple untouched.
   ============================================================ */
body.page-forge {
  --vv-primary: #E6530A;
  --vv-primary-hover: #f2661d;
  --vv-accent: #E6530A;
  --vv-shadow-glow: 0 10px 25px rgba(230, 83, 10, 0.28);
}

body.page-forge .home-hero__title-accent {
  font-family: Orbitron, ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--vv-primary);
}

body.page-forge .vv-btn--primary {
  background: var(--vv-primary);
  color: #fff;
  border-color: var(--vv-primary);
  font-weight: 700;
}

body.page-forge .vv-btn--primary:hover,
body.page-forge .vv-btn--primary:focus-visible {
  background: var(--vv-primary-hover);
  border-color: var(--vv-primary-hover);
  color: #fff;
  box-shadow: var(--vv-shadow-glow);
  filter: none;
}

body.page-forge .home-pricing-card__cta--secondary,
body.page-forge .home-pricing-card__cta.vv-btn--ghost {
  border-color: rgba(230, 83, 10, 0.35);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}

body.page-forge .home-pricing-card__cta--secondary:hover:not(:disabled),
body.page-forge .home-pricing-card__cta.vv-btn--ghost:hover:not(:disabled) {
  box-shadow: 0 4px 14px rgba(230, 83, 10, 0.22);
}

body.page-forge .home-pricing-card__cta--emphasized {
  box-shadow: 0 4px 18px rgba(230, 83, 10, 0.32);
}

body.page-forge .home-pricing-card__cta--emphasized:hover:not(:disabled),
body.page-forge .home-pricing-card__cta--emphasized:focus-visible {
  box-shadow: 0 8px 28px rgba(230, 83, 10, 0.42);
}

body.page-forge .home-feature-matrix thead th:nth-child(3),
body.page-forge .home-feature-matrix tbody td:nth-child(3) {
  background: rgba(230, 83, 10, 0.06);
}

body.page-forge .home-feature-matrix thead th:nth-child(3) {
  font-weight: 800;
}

body.page-forge .vv-feedback--error {
  border-color: color-mix(in srgb, var(--vv-primary) 35%, transparent);
}
