/* ============================================================
   VIANITY · SITE STYLES
   Die im Design als Inline-Styles ausgedrückten Regeln, hier als
   wiederverwendbare Klassen. Gliederung:
     1. Reset & Basis
     2. Layout-Utilities (Container, Grids, Breakpoints)
     3. Keyframes
     4. Bausteine: Kicker, Section-Head
     5. Komponenten (Button, Card, Tag, Callout, Accordion,
        Avatar, Badge, CommunityRing)
     6. Header-Chrome
     7. Sektionen (Hero, Gateway, Flow, Pillars, Band, FAQ, CTA)
     8. Footer
     9. Prosa/Artikel
   ============================================================ */

/* ---- 1. Reset & Basis ---------------------------------------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--white);
  font-family: var(--font-body);
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-body); }
/* Ersetzte Elemente nie breiter als ihr Container. `video` gehört zwingend
   dazu: Die Logo-Animation hat 1920 px intrinsische Breite: fehlt die Schranke,
   zieht sie beim ersten Layout das ganze Dokument auf 1920 px auf. Der
   zentrierte .vn-container rutscht dann aus dem Handy-Viewport nach rechts. */
img, video { max-width: 100%; height: auto; }
::selection { background: var(--vin-teal-tint); }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: var(--radius-xs); }

/* ---- 2. Layout-Utilities ------------------------------------- */
.vn-container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }
.vn-page { min-height: 100vh; display: flex; flex-direction: column; }
.vn-main { flex: 1; }

.vn-hero    { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px,5vw,60px); align-items: center; }
.vn-gateway { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.vn-pillars { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.vn-flow    { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.vn-eltern  { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(28px,4vw,54px); align-items: start; }
.vn-band    { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,48px); align-items: center; }
.vn-band-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.vn-foot    { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.15fr; gap: 36px; }

@media (max-width: 980px) {
  .vn-nav-desktop { display: none; }
  .vn-burger { display: inline-flex; }
  .vn-hero { grid-template-columns: 1fr; }
  .vn-gateway { grid-template-columns: 1fr; }
  .vn-pillars { grid-template-columns: repeat(2,1fr); }
  .vn-flow { grid-template-columns: repeat(2,1fr); }
  .vn-eltern { grid-template-columns: 1fr; }
  .vn-band { grid-template-columns: 1fr; }
  .vn-foot { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .vn-pillars, .vn-flow, .vn-foot, .vn-band-tiles { grid-template-columns: 1fr; }
  .vn-hide-sm { display: none !important; }
}

/* ---- 3. Keyframes -------------------------------------------- */
@keyframes vnFade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes vnDrop { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
@keyframes vnSpin { to { transform: rotate(360deg); } }

/* ---- 4. Bausteine ------------------------------------------- */
/* Kicker: farbiger Strich + Label über jeder Sektion */
.vn-kicker { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 16px; }
.vn-kicker__bar { width: 26px; height: 3px; border-radius: 2px; background: var(--k, var(--vin-teal)); }
.vn-kicker__label {
  font-weight: 800; font-size: 13px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--k, var(--vin-teal));
}
.vn-section-head { max-width: 660px; margin: 0 auto 44px; text-align: center; }
.vn-section-head .vn-kicker { justify-content: center; }
.vn-h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px,3.6vw,40px); letter-spacing: -0.01em;
  color: var(--vin-navy-800); margin: 0 0 12px;
}
.vn-lead { font-size: 18px; line-height: 1.6; color: var(--text-muted); margin: 0; }
.vn-lead strong { color: var(--vin-navy-800); font-weight: 800; }
.vn-hl { color: var(--vin-orange); }

/* ---- 5. Komponenten ----------------------------------------- */

/* Button */
.vn-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; line-height: 1; letter-spacing: 0.01em;
  text-decoration: none; border-radius: var(--radius-md); cursor: pointer;
  border: 1px solid transparent; height: 44px; padding: 0 20px; font-size: 15px;
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.vn-btn:active { transform: translateY(1px) scale(0.98); }
.vn-btn--sm { height: 36px; padding: 0 16px; font-size: 14px; border-radius: var(--radius-sm); gap: 6px; }
.vn-btn--lg { height: 54px; padding: 0 28px; font-size: 17px; gap: 10px; }
.vn-btn--primary   { background: var(--vin-navy-800); color: var(--white); border-color: var(--vin-navy-800); box-shadow: var(--shadow-brand); }
.vn-btn--primary:hover   { background: var(--vin-navy-900); border-color: var(--vin-navy-900); }
.vn-btn--accent    { background: var(--vin-sky-600); color: var(--white); border-color: var(--vin-sky-600); box-shadow: 0 8px 20px rgba(31,111,214,0.30); }
.vn-btn--accent:hover    { background: #195fbb; border-color: #195fbb; }
.vn-btn--secondary { background: var(--white); color: var(--vin-navy-800); border: 1.5px solid var(--border-default); box-shadow: var(--shadow-xs); }
.vn-btn--secondary:hover { border-color: var(--vin-navy-800); background: var(--ink-50); }
.vn-btn--ghost     { background: transparent; color: var(--vin-navy-800); border-color: transparent; }
.vn-btn--ghost:hover     { background: var(--ink-100); }
.vn-btn--block { width: 100%; }

/* Card */
.vn-card {
  position: relative; background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: var(--sp-6); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.vn-card--interactive { cursor: pointer; }
.vn-card--interactive:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.vn-card__accent { position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--a, var(--vin-teal)); }
.vn-card__flex { display: flex; flex-direction: column; height: 100%; }

/* Icon-Chip in Karten (emoji/symbol auf Tint-Fläche) */
.vn-chip {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px;
  background: var(--chip-tint, var(--vin-teal-tint)); color: var(--chip, var(--vin-teal));
}
.vn-chip--sq { border-radius: var(--radius-md); }
.vn-chip--badge { width: 44px; height: 44px; font-family: var(--font-display); font-weight: 800; font-size: 19px; }

.vn-card-title { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--vin-navy-800); margin: 0 0 8px; }
.vn-card-text  { font-size: 14.5px; line-height: 1.55; color: var(--text-muted); margin: 0; }

/* Tag */
.vn-tag {
  display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-body);
  font-weight: 700; line-height: 1.2; border-radius: var(--radius-pill);
  font-size: 13px; padding: 5px 13px;
  background: var(--h-tint, var(--vin-blue-tint)); color: var(--h, var(--vin-blue));
  border: 1px solid color-mix(in srgb, var(--h, var(--vin-blue)) 13%, transparent);
}
.vn-tag--sm { font-size: 12px; padding: 3px 10px; }
.vn-tag--solid { background: var(--h, var(--vin-blue)); color: var(--white); border-color: transparent; }

/* Callout */
.vn-callout {
  display: flex; gap: 14px; padding: var(--sp-4) var(--sp-5);
  border-left: 4px solid var(--co-border); border-radius: var(--radius-md);
  background: var(--co-bg); color: var(--co-fg); font-family: var(--font-body);
}
.vn-callout__icon {
  display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
  width: 28px; height: 28px; border-radius: 50%; background: var(--co-border);
  color: var(--white); font-weight: 800; font-size: 15px;
}
.vn-callout__body { display: flex; flex-direction: column; gap: 2px; padding-top: 2px; }
.vn-callout__title { font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.vn-callout__text { font-size: 15px; line-height: 1.55; }
.vn-callout--info    { --co-bg: var(--vin-sky-100); --co-border: var(--vin-sky-500); --co-fg: var(--vin-navy-800); }
.vn-callout--success { --co-bg: var(--success-tint); --co-border: var(--success); --co-fg: #1f5c2e; }
.vn-callout--warning { --co-bg: var(--warning-tint); --co-border: var(--warning); --co-fg: #7a4d08; }
.vn-callout--danger  { --co-bg: var(--danger-tint); --co-border: var(--danger); --co-fg: #7a201b; }
.vn-callout--tip     { --co-bg: var(--vin-teal-tint); --co-border: var(--vin-teal); --co-fg: #0a5c56; }

/* Accordion — native <details>/<summary>, funktioniert ohne JS */
.vn-accordion { border-bottom: 1px solid var(--border-subtle); }
.vn-accordion__head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; padding: var(--sp-4) var(--sp-1); cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--text-strong);
}
.vn-accordion__head::-webkit-details-marker { display: none; }
.vn-accordion__chevron {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; font-size: 16px;
  background: var(--ink-100); color: var(--text-body);
  transition: transform var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}
.vn-accordion[open] .vn-accordion__chevron { transform: rotate(180deg); background: var(--vin-navy-800); color: var(--white); }
.vn-accordion__body {
  padding: 0 var(--sp-1) var(--sp-5); font-family: var(--font-body);
  font-size: 16px; line-height: 1.6; color: var(--text-muted); max-width: 62ch;
}
.vn-accordion[open] .vn-accordion__body { animation: vnFade var(--dur-slow) var(--ease-out) both; }

/* Avatar */
.vn-avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: var(--av, 44px); height: var(--av, 44px); border-radius: 50%; overflow: hidden; flex: 0 0 auto;
  background: var(--h-tint, var(--ink-100)); color: var(--h, var(--vin-blue));
  font-family: var(--font-display); font-weight: 700; font-size: calc(var(--av, 44px) * 0.38);
  border: 2px solid var(--white); box-shadow: var(--shadow-xs);
}
.vn-avatar img { width: 100%; height: 100%; object-fit: cover; }

/* Badge */
.vn-badge {
  display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-body);
  font-weight: 700; font-size: 12px; line-height: 1; padding: 4px 9px;
  border-radius: var(--radius-xs); letter-spacing: 0.01em;
  background: var(--bg-tone, var(--ink-100)); color: var(--fg-tone, var(--ink-700));
}
.vn-badge__dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.vn-badge--brand   { --bg-tone: var(--vin-navy-800); --fg-tone: var(--white); }
.vn-badge--success { --bg-tone: var(--success-tint); --fg-tone: var(--success); }
.vn-badge--warning { --bg-tone: var(--warning-tint); --fg-tone: var(--warning); }
.vn-badge--danger  { --bg-tone: var(--danger-tint); --fg-tone: var(--danger); }
.vn-badge--info    { --bg-tone: var(--vin-sky-100); --fg-tone: var(--vin-sky-600); }

/* CommunityRing */
.vn-ring { position: relative; }
.vn-ring__dot { position: absolute; border-radius: 50%; box-shadow: 0 4px 10px rgba(13,27,69,0.18); }

/* ---- 6. Header-Chrome --------------------------------------- */
.vn-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}
.vn-header__bar { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.vn-brand { display: flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.vn-brand__logo { height: 54px; width: 54px; object-fit: contain; }
.vn-brand__name { display: flex; flex-direction: column; line-height: 1; }
.vn-brand__name b { font-family: var(--font-display); font-weight: 800; font-size: 20px; letter-spacing: -0.02em; color: var(--vin-navy-800); }
.vn-brand__name span { font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); margin-top: 4px; }

.vn-nav-desktop { display: flex; align-items: center; gap: 2px; }
.vn-navitem { position: relative; }
.vn-navitem__btn {
  display: inline-flex; align-items: center; gap: 7px; padding: 10px 16px;
  border: none; background: transparent; border-radius: 999px; cursor: pointer;
  font-weight: 700; font-size: 15px; color: var(--text-body);
}
.vn-navitem__btn:hover { background: var(--ink-100); }
a.vn-navitem__btn { text-decoration: none; }
.vn-navitem__caret { font-size: 10px; opacity: 0.55; margin-top: 1px; }
.vn-menu {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 320px;
  background: var(--white); border: 1px solid var(--border-subtle); border-radius: 20px;
  box-shadow: var(--shadow-lg); padding: 12px; z-index: 70;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out), visibility var(--dur-fast);
}
.vn-menu::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.vn-navitem:hover .vn-menu,
.vn-navitem.is-open .vn-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.vn-menu__head { display: flex; align-items: center; gap: 9px; padding: 4px 12px 10px; }
.vn-menu__head .vn-kicker__bar { background: var(--k); }
.vn-menu__kicker { font-weight: 800; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--k); }
.vn-menu__link { display: flex; flex-direction: column; gap: 2px; padding: 9px 12px; border-radius: 13px; }
.vn-menu__link:hover { background: var(--ink-50); }
.vn-menu__link b { font-weight: 700; font-size: 15px; color: var(--vin-navy-800); }
.vn-menu__link span { font-size: 12.5px; color: var(--text-faint); }

.vn-header__actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.vn-langtoggle { display: flex; align-items: center; background: var(--ink-100); border-radius: 999px; padding: 3px; font-weight: 800; font-size: 12.5px; }
.vn-langtoggle button { border: none; cursor: pointer; padding: 5px 11px; border-radius: 999px; background: transparent; color: var(--text-faint); }
.vn-langtoggle button.is-active { background: var(--white); color: var(--vin-navy-800); box-shadow: var(--shadow-xs); }
.vn-iconbtn {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border-subtle);
  background: var(--white); cursor: pointer; font-size: 18px; color: var(--vin-navy-800);
  display: inline-flex; align-items: center; justify-content: center;
}
.vn-iconbtn:hover { background: var(--ink-50); border-color: var(--vin-navy-800); }
.vn-login {
  display: inline-flex; align-items: center; gap: 8px; height: 42px; padding: 0 17px;
  border-radius: var(--radius-md); border: 1.5px solid var(--border-default); background: var(--white);
  font-weight: 700; font-size: 14.5px; color: var(--vin-navy-800);
}
.vn-login:hover { border-color: var(--vin-navy-800); background: var(--ink-50); }
.vn-login__dot { width: 22px; height: 22px; border-radius: 50%; background: var(--vin-navy-800); color: var(--white); display: inline-flex; align-items: center; justify-content: center; font-size: 12px; }
.vn-burger {
  display: none; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--border-subtle);
  background: var(--white); cursor: pointer; font-size: 19px; color: var(--vin-navy-800);
  align-items: center; justify-content: center;
}

/* Suche */
.vn-search { border-top: 1px solid var(--border-subtle); background: var(--white); animation: vnDrop 150ms var(--ease-out) both; }
.vn-search__inner { padding-top: 16px; padding-bottom: 18px; }
.vn-search__row { display: flex; gap: 12px; align-items: center; border-bottom: 2px solid var(--vin-navy-800); padding-bottom: 10px; }
.vn-search__row input { flex: 1; border: none; outline: none; font-family: var(--font-body); font-size: 19px; background: transparent; color: var(--text-strong); }
.vn-search__glyph { font-size: 22px; color: var(--vin-navy-800); }
.vn-search__close { border: none; background: transparent; cursor: pointer; font-size: 16px; color: var(--text-faint); }
.vn-search__pop { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; align-items: center; }
.vn-search__pop[hidden] { display: none; }
.vn-search__pop > span { font-size: 13px; font-weight: 700; color: var(--text-faint); }
.vn-chip-link { font-size: 13px; font-weight: 700; color: var(--vin-navy-800); background: var(--ink-100); padding: 6px 13px; border-radius: 999px; }

/* Trefferliste der Suche */
.vn-search__status { margin-top: 12px; font-size: 13px; font-weight: 700; color: var(--text-faint); }
.vn-search__status:empty { display: none; }
.vn-search__results { list-style: none; margin: 8px 0 0; padding: 0; max-height: min(58vh, 460px); overflow: auto; }
.vn-search__results[hidden] { display: none; }
.vn-search__hit + .vn-search__hit { border-top: 1px solid var(--border-subtle); }
.vn-search__hit a { display: flex; flex-direction: column; gap: 3px; padding: 11px 12px; border-radius: 13px; text-decoration: none; }
.vn-search__hit a:hover, .vn-search__hit.is-active a { background: var(--ink-50); }
.vn-search__hit b { font-weight: 700; font-size: 15px; color: var(--vin-navy-800); }
.vn-search__hit span { font-size: 12.5px; line-height: 1.5; color: var(--text-faint); }

/* Mobile-Menü */
.vn-mobile { border-top: 1px solid var(--border-subtle); background: var(--white); max-height: calc(100vh - 76px); overflow: auto; padding: 8px clamp(20px,5vw,28px) 26px; animation: vnDrop 150ms var(--ease-out) both; }
.vn-mobile__group { padding: 14px 0; border-bottom: 1px solid var(--border-subtle); }
.vn-mobile__grouphead { display: flex; align-items: center; gap: 9px; margin-bottom: 8px; }
.vn-mobile__grouphead b { font-family: var(--font-display); font-weight: 800; font-size: 17px; color: var(--vin-navy-800); }
.vn-mobile__link { display: block; padding: 8px 0 8px 31px; font-weight: 600; font-size: 15px; color: var(--text-body); }
.vn-mobile__cta { display: flex; gap: 12px; align-items: center; margin-top: 18px; }
.vn-mobile__cta > a { flex: 1; text-align: center; height: 48px; line-height: 48px; border-radius: var(--radius-md); background: var(--vin-navy-800); color: var(--white); font-weight: 700; font-size: 15px; }

/* Header-Toggle-Sichtbarkeit über data-Attribute am <header> */
.vn-header:not([data-search="open"]) .vn-search { display: none; }
.vn-header:not([data-mobile="open"]) .vn-mobile { display: none; }
.vn-burger { display: none; }

/* ---- Fallbacks ohne JavaScript ----------------------------------
   Gelten nur, solange <html class="no-js"> steht; site.js entfernt die Klasse
   als Erstes. Ohne JS bleiben die Toggles oben wirkungslos, deshalb übernimmt
   hier der Fokus die Steuerung — beides schlägt die display/visibility-Regeln
   oben in der Spezifität.

   Desktop: :focus-within am Nav-Item klappt das Dropdown auf. Die Menülinks
   folgen im DOM direkt auf den Button, der Fokus bleibt beim Weitertabben
   also innerhalb des Items und das Menü offen.

   Mobil: Die Bedingung hängt am *ganzen Header*, nicht am Burger. Hinge sie
   am Burger, schlösse sich das Panel in dem Moment, in dem der Fokus den
   Burger verlässt — und ein Link in einem display:none-Teilbaum ist nicht
   fokussierbar, man käme also nie hinein. So bleibt die Bedingung erfüllt,
   solange der Fokus irgendwo im Header steht, das Panel eingeschlossen.
   Der Preis: Fokus auf Logo oder Suchknopf öffnet es mit. Ohne JS ist das
   der einzige Weg zur Navigation, deshalb ist das hier richtig herum. */
.no-js .vn-navitem:focus-within .vn-menu { opacity: 1; visibility: visible; transform: translateY(0); }
@media (max-width: 980px) {
  .no-js .vn-header:focus-within .vn-mobile { display: block; }
}
@media (max-width: 980px) {
  .vn-nav-desktop { display: none; }
  .vn-burger { display: inline-flex; }
}

/* ---- 7. Sektionen ------------------------------------------- */
.vn-section { padding-top: clamp(56px,7vw,92px); padding-bottom: clamp(20px,3vw,28px); }

/* Logo-Hero (großes Marken-Logo als erstes Element) */
.vn-logohero { padding: clamp(28px,5vw,60px) 0 clamp(6px,1.5vw,16px); }
.vn-logohero .vn-container { display: flex; justify-content: center; }
/* min-width: 0 hebt das `min-width: auto` von Flex-Items auf — ohne das
   weigert sich das 1920 px breite Video, unter seine intrinsische Breite zu
   schrumpfen, und sprengt den Container. */
.vn-logohero__media { width: 100%; max-width: 900px; min-width: 0; height: auto; display: block; }
.vn-logohero__still { display: none; }
@media (prefers-reduced-motion: reduce) {
  .vn-logohero__video { display: none; }
  .vn-logohero__still { display: block; max-width: 520px; }
}

/* Hero */
.vn-hero-wrap { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--vin-teal-tint), var(--white) 64%); }
.vn-hero-inner { padding-top: clamp(44px,6vw,80px); padding-bottom: clamp(48px,7vw,88px); }
.vn-hero__copy { animation: vnFade 520ms var(--ease-out) both; }
.vn-hero__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(38px,5.6vw,64px); line-height: 1.02; letter-spacing: -0.02em; color: var(--vin-navy-800); margin: 0 0 22px; }
.vn-hero__lead { font-size: clamp(17px,1.4vw,20px); line-height: 1.62; color: var(--text-muted); max-width: 44ch; margin: 0 0 16px; }
.vn-hero__sub { font-size: 15px; line-height: 1.6; color: var(--text-faint); max-width: 42ch; margin: 0 0 28px; }
.vn-btnrow { display: flex; gap: 12px; flex-wrap: wrap; }
.vn-stats { display: flex; gap: clamp(18px,3vw,34px); margin-top: 36px; flex-wrap: wrap; }
.vn-stat__num { font-family: var(--font-display); font-weight: 800; font-size: 26px; color: var(--vin-navy-800); }
.vn-stat__num--mono { font-family: var(--font-mono); font-weight: 600; font-size: 24px; color: var(--vin-teal); }
.vn-stat__label { font-size: 13px; color: var(--text-faint); font-weight: 700; }
.vn-hero__visual { position: relative; justify-self: center; width: 100%; max-width: 440px; animation: vnFade 640ms var(--ease-out) both; }
.vn-hero__panel { aspect-ratio: 4/5; border-radius: var(--radius-xl); overflow: hidden; background: linear-gradient(150deg, var(--vin-navy-800), var(--vin-navy-700) 55%, var(--vin-violet)); box-shadow: var(--shadow-lg); position: relative; display: flex; align-items: center; justify-content: center; }
.vn-hero__caption { position: absolute; bottom: 16px; left: 16px; right: 16px; text-align: center; color: rgba(255,255,255,0.55); font-size: 12px; font-style: italic; }
/* Foto oder Video statt Ring-Grafik im Hero-Panel */
.vn-hero__img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Bewegtbild: Standardmäßig läuft das Video, das Standbild ist ausgeblendet.
   Bei prefers-reduced-motion genau umgekehrt — siehe .vn-logohero. */
.vn-hero__still { display: none; }
@media (prefers-reduced-motion: reduce) {
  .vn-hero__video { display: none; }
  .vn-hero__still { display: block; }
}
/* Über einem Foto braucht die Bildunterschrift einen Verlauf, sonst ist sie unlesbar. */
.vn-hero__caption--onimage { bottom: 0; left: 0; right: 0; padding: 44px 18px 14px; color: rgba(255,255,255,0.82); background: linear-gradient(to top, rgba(9,14,32,0.72), rgba(9,14,32,0)); }
.vn-hero__badge { position: absolute; top: 16px; left: 16px; background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-md); padding: 11px 14px; display: flex; align-items: center; gap: 10px; }
.vn-hero__badge b { font-weight: 800; font-size: 13px; color: var(--text-strong); }
.vn-hero__badge span { font-size: 12px; color: var(--text-faint); }

/* Gateway */
.vn-gateway-card { display: flex; flex-direction: column; height: 100%; }
.vn-gateway-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 23px; color: var(--vin-navy-800); margin: 0 0 8px; }
.vn-gateway-card p { font-size: 15px; line-height: 1.55; color: var(--text-muted); margin: 0 0 16px; }
.vn-gateway-list { display: flex; flex-direction: column; gap: 2px; margin-bottom: 18px; }
.vn-gateway-list > div { display: flex; align-items: center; gap: 9px; padding: 4px 0; font-size: 14.5px; font-weight: 600; color: var(--text-body); }
.vn-gateway-list i { font-style: normal; color: var(--g, var(--vin-teal)); }
.vn-gateway-more { margin-top: auto; font-weight: 700; font-size: 15px; color: var(--vin-sky-600); }

/* Flow-Band ("Ein Tag") */
.vn-flow-wrap { background: var(--ink-50); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); margin-top: clamp(40px,5vw,64px); }
.vn-flow-inner { padding-top: clamp(52px,6vw,80px); padding-bottom: clamp(52px,6vw,80px); }
.vn-flow-rule { height: 4px; width: 120px; margin: 0 auto 40px; border-radius: 2px; background: linear-gradient(90deg, var(--vin-teal), var(--vin-orange), var(--vin-blue), var(--vin-violet)); }
.vn-flow-time { font-family: var(--font-mono); font-weight: 600; font-size: 14px; margin-bottom: 12px; color: var(--g, var(--vin-teal)); }
.vn-flow-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--vin-navy-800); margin: 0 0 6px; }
.vn-flow-card p { font-size: 14px; line-height: 1.55; color: var(--text-muted); margin: 0; }
.vn-flow-outro { max-width: 680px; margin: clamp(30px,3.5vw,42px) auto 0; text-align: center; }
.vn-flow-outro p { font-size: 16px; line-height: 1.7; color: var(--text-muted); margin: 0 0 12px; }
.vn-flow-outro p:last-child { margin-bottom: 0; }
.vn-flow-outro strong { color: var(--vin-navy-800); font-weight: 700; }

/* Band (navy) */
.vn-band-wrap { padding-top: clamp(48px,6vw,72px); padding-bottom: clamp(48px,6vw,72px); }
.vn-band-panel { background: var(--vin-navy-800); border-radius: var(--radius-xl); padding: clamp(32px,4vw,52px); color: var(--white); }
.vn-band h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(26px,3.4vw,38px); line-height: 1.1; margin: 0 0 16px; }
.vn-band p { font-size: 17px; line-height: 1.65; color: #c7d2ec; margin: 0 0 24px; max-width: 46ch; }
.vn-band__tags { display: flex; gap: 10px; flex-wrap: wrap; }
.vn-tile { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); padding: 18px; }
.vn-tile__num { font-family: var(--font-display); font-weight: 800; font-size: 24px; color: var(--t, var(--vin-teal)); }
.vn-tile__num--mono { font-family: var(--font-mono); font-weight: 600; font-size: 22px; }
.vn-tile__label { font-size: 13px; color: #aebbdb; margin-top: 4px; }

/* Eltern / FAQ */
.vn-eltern-sec { padding-top: clamp(24px,3vw,32px); padding-bottom: clamp(56px,7vw,88px); }
.vn-eltern h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(26px,3.2vw,34px); color: var(--vin-navy-800); margin: 0 0 16px; }
.vn-eltern p.vn-intro { font-size: 16px; line-height: 1.6; color: var(--text-muted); margin: 0 0 22px; }

/* CTA */
.vn-cta { background: var(--ink-50); border-top: 1px solid var(--border-subtle); }
.vn-cta__inner { padding-top: clamp(52px,6vw,72px); padding-bottom: clamp(52px,6vw,72px); text-align: center; }
.vn-cta h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px,4vw,44px); letter-spacing: -0.01em; color: var(--vin-navy-800); margin: 0 0 14px; }
.vn-cta p { font-size: 18px; line-height: 1.6; color: var(--text-muted); margin: 0 auto 28px; max-width: 48ch; }
.vn-cta .vn-btnrow { justify-content: center; }

/* Login */
.vn-loginpage__audiences { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px,1fr)); gap: 16px; }
.vn-loginpage__panel {
  max-width: 480px; margin: clamp(32px,4vw,44px) auto 0; background: var(--white);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md); padding: clamp(26px,4vw,38px);
}
.vn-loginpage__form { display: flex; flex-direction: column; gap: 20px; }
.vn-field { display: flex; flex-direction: column; gap: 6px; }
.vn-field__label { font-size: 13px; font-weight: 700; color: var(--text-strong); }
.vn-field__input {
  height: 48px; padding: 0 16px; border-radius: var(--radius-md);
  border: 1.5px solid var(--border-default); background: var(--white);
  font-family: var(--font-body); font-size: 15px; color: var(--text-body);
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.vn-field__input:focus { border-color: var(--vin-sky-500); box-shadow: var(--ring); outline: none; }
.vn-loginpage__submit:disabled { opacity: 0.5; cursor: not-allowed; }
.vn-loginpage__submit:disabled:active { transform: none; }

/* Captcha-Widget ("Bestätige, dass Du ein Vianity bist") */
.vn-captcha {
  display: flex; align-items: stretch; border: 1px solid var(--border-default);
  border-radius: var(--radius-sm); background: var(--ink-50); box-shadow: var(--shadow-xs);
}
.vn-captcha__box { flex: 1; display: flex; align-items: center; padding: 14px 16px; min-width: 0; }
.vn-captcha__checklabel { display: flex; align-items: center; gap: 14px; cursor: pointer; min-width: 0; }
.vn-captcha__checkwrap { position: relative; width: 28px; height: 28px; flex: 0 0 auto; }
.vn-captcha__checkbox { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.vn-captcha__checkbox:disabled { cursor: default; }
.vn-captcha__checkmark {
  position: absolute; inset: 0; border-radius: 4px; background: var(--white);
  border: 2px solid var(--border-strong); transition: border-color var(--dur-base) var(--ease-out);
  display: flex; align-items: center; justify-content: center;
}
.vn-captcha__spinner {
  width: 15px; height: 15px; border-radius: 50%; border: 2.5px solid var(--vin-sky-100);
  border-top-color: var(--vin-sky-600); opacity: 0; animation: vnSpin 700ms linear infinite;
}
.vn-captcha[data-state="checking"] .vn-captcha__checkmark { border-color: var(--vin-sky-500); }
.vn-captcha[data-state="checking"] .vn-captcha__spinner { opacity: 1; }
.vn-captcha__text { font-size: 14px; font-weight: 600; color: var(--text-strong); line-height: 1.3; }
.vn-captcha__brand { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border-left: 1px solid var(--border-subtle); flex: 0 0 auto; }
.vn-captcha__logo {
  width: 32px; height: 32px; border-radius: var(--radius-xs); background: var(--vin-navy-800); color: var(--white);
  font-family: var(--font-display); font-weight: 800; font-size: 14px; display: flex; align-items: center; justify-content: center;
}
.vn-captcha__brandtext { font-size: 10px; line-height: 1.35; color: var(--text-faint); font-weight: 700; }
@media (max-width: 420px) {
  .vn-captcha { flex-direction: column; }
  .vn-captcha__brand { border-left: none; border-top: 1px solid var(--border-subtle); }
}

/* ---- 8. Footer ---------------------------------------------- */
.vn-footer { background: var(--vin-navy-900); color: var(--white); padding: clamp(44px,5vw,60px) 0 30px; }
.vn-footer__logo { display: inline-flex; background: var(--white); border-radius: 16px; padding: 8px; margin-bottom: 16px; }
.vn-footer__logo img { height: 52px; width: 52px; object-fit: contain; }
.vn-footer__about { color: #b7c2de; font-size: 15px; line-height: 1.6; max-width: 32ch; margin: 0; }
.vn-footer__col-title { font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; }
.vn-footer__col { display: flex; flex-direction: column; gap: 11px; }
.vn-footer__col a { color: #b7c2de; font-size: 15px; }
.vn-footer__col a:hover { color: var(--white); }
.vn-footer__help { color: #b7c2de; font-size: 15px; line-height: 1.6; margin: 0; }
.vn-footer__phone { font-family: var(--font-mono); font-size: 23px; font-weight: 600; color: var(--vin-teal); }
.vn-footer__bar { border-top: 1px solid rgba(255,255,255,0.12); margin-top: clamp(32px,4vw,44px); padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: #8494b8; font-size: 13px; }
.vn-footer__bar a { color: #8494b8; }
.vn-footer__legal { display: flex; gap: 20px; }

/* ---- 9. Prosa / Artikel ------------------------------------- */
.vn-article { max-width: var(--container-narrow); margin: 0 auto; padding: clamp(40px,6vw,72px) clamp(20px,4vw,40px) clamp(56px,7vw,88px); }
.vn-article h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px,4vw,44px); line-height: 1.08; letter-spacing: -0.01em; color: var(--vin-navy-800); margin: 0 0 24px; }
.vn-prose { font-size: 17px; line-height: 1.7; color: var(--text-body); }
.vn-prose h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(24px,3vw,32px); color: var(--vin-navy-800); margin: 40px 0 14px; letter-spacing: -0.01em; }
.vn-prose h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--vin-navy-800); margin: 28px 0 10px; }
.vn-prose p { margin: 0 0 18px; }
.vn-prose ul, .vn-prose ol { margin: 0 0 18px; padding-left: 22px; }
.vn-prose li { margin: 6px 0; }
.vn-prose a { color: var(--vin-sky-600); text-decoration: underline; text-underline-offset: 2px; }
.vn-prose code { font-family: var(--font-mono); font-size: 0.92em; background: var(--ink-100); padding: 2px 6px; border-radius: var(--radius-xs); }
.vn-prose blockquote { margin: 0 0 18px; padding: 4px 0 4px 18px; border-left: 4px solid var(--vin-teal); color: var(--text-muted); }
.vn-prose img { border-radius: var(--radius-md); }
/* Blocksatz für Fließtext (greift auch für .md-Artikelseiten, deren Body in
   .vn-prose steckt). `hyphens: auto` ist dabei Pflicht und keine Kosmetik:
   Ohne Silbentrennung reißt Blocksatz im Deutschen — lange Komposita, schmale
   Spalten — sichtbare Lücken zwischen den Wörtern. Die Trennsprache kommt aus
   <html lang="de">. Überschriften, Leads und Kartentexte bleiben linksbündig:
   dort sind die Zeilen zu kurz, Blocksatz würde sie auseinanderziehen. */
.vn-prose p,
.vn-prose li,
.vn-prose blockquote {
  text-align: justify;
  -webkit-hyphens: auto;
  hyphens: auto;
  overflow-wrap: break-word; /* lange URLs/Domains sprengen sonst die Spalte */
}
