/* ============================================================
   ILA BERLIN 2028 – DESIGN TOKENS
   Zentrale Variablen für den finalen Prototyp.
   Vorstufe des Drupal-SDC-Themes: 1 Token = 1 CSS Custom Property.
   CI: hell, kantig, ILA Blue, Chevron-Formsprache. Kein border-radius.
   ============================================================ */

:root {
  /* ---- Farben: Basis ---- */
  --paper:   #FFFFFF;   /* Seiten-Hintergrund */
  --sky:     #EAF6FD;   /* helle Flächen, Verläufe */
  --sky-2:   #F6FBFF;   /* noch hellere Flächen */
  --ink:     #071C33;   /* Text, fast-schwarzes Blau */
  --muted:   #5E7488;   /* Sekundärtext */
  --line:    #DCE8F0;   /* Hairlines, Borders */
  --blue:    #008FD3;   /* ILA Blue (Pantone 2925) – Primärakzent */
  --deep:    #004493;   /* ILA Dark Blue (Pantone 2945) */
  --night:   #04121F;   /* dunkles Band (Ticker/Newsletter), kein Theme-Dark */

  /* ---- Farben: Gates ---- */
  --gate-a:  #00306B;   /* Gate A · Aussteller (dunkles Marineblau) */
  --gate-b:  #008FD3;   /* Gate B · Fachbesucher (ILA Blue) */
  --gate-c:  #3FB9EE;   /* Gate C · Privatbesucher (helles Himmelblau) */
  --press:   #071C33;   /* Presse & Media (kein Gate) */

  /* ---- Farben: Segmente + Special Areas (NUR im Segment-Kontext!) ----
     Segmente: Aviation, Space, Defence. Special Areas: Drones, Talent Hub,
     Supplier (Marcel, 17.07.2026). */
  --seg-aviation: #39B5B6;
  --seg-space:    #004493;
  --seg-defence:  #008847;
  --seg-drones:   #00A55C;  /* Special Area Drones: Gruenton nahe Defence (Marcel 17.07.2026) */
  --seg-talent:   #FF188D;  /* Magenta NUR Talent Hub */
  --seg-supplier: #FFDC00;  /* Yellow NUR Supplier */

  /* ---- Typografie ---- */
  --font-body: 'Roboto', 'Helvetica Neue', sans-serif;
  --font-head: 'AbsaraSans', 'Roboto', sans-serif;
  --font-mono: 'SF Mono', ui-monospace, 'Menlo', 'Consolas', monospace;
  --fs-body: 17px;
  --lh-body: 1.65;

  /* ---- Layout ---- */
  --maxw: 1380px;
  --pad-x: 40px;
  --topbar-h: 70px;
  --ticker-h: 38px;

  /* ---- Z-Ebenen ---- */
  --z-content: 1;
  --z-sticky:  90;
  --z-topbar:  100;
  --z-dock:    85;
  --z-menu:    250;
  --z-overlay: 300;

  /* ---- Motion ---- */
  --ease-out: cubic-bezier(.22, .61, .36, 1);
  --dur-fast: .18s;
  --dur-med:  .32s;
  --dur-slow: .8s;

  /* ---- Chevron (ILA-Doppelpfeil als clip-path) ---- */
  --chev: polygon(0 0, 42% 0, 72% 50%, 42% 100%, 0 100%, 30% 50%);

  /* ---- Schatten (blaustichig, hell) ---- */
  --shadow-card: 0 18px 46px rgba(0, 68, 147, .12);
  --shadow-pop:  0 40px 100px rgba(7, 28, 51, .16);
}

@media (max-width: 720px) {
  :root {
    --pad-x: 18px;
    --fs-body: 16px;
    --topbar-h: 60px;
  }
}


/* ===== _base ===== */
/* ============================================================
   BASE – Reset, Typografie, Utilities, Buttons
   Roboto (lokal gehostet, variable woff2) + AbsaraSans (OTF).
   ============================================================ */

@font-face { font-family: 'AbsaraSans'; src: url('/assets/fonts/AbsaraSans-Regular.otf') format('opentype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'AbsaraSans'; src: url('/assets/fonts/AbsaraSans-Medium.otf') format('opentype'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'AbsaraSans'; src: url('/assets/fonts/AbsaraSans-Bold.otf') format('opentype'); font-weight: 700; font-display: swap; }
/* Roboto (variable Schrift, Gewichtsachse 100-900) seit 21.09.2026 lokal gehostet: kein Aufruf von fonts.googleapis.com / fonts.gstatic.com mehr (Datenschutz). Quelle: Google Fonts v51, Lizenz siehe assets/fonts/roboto/LICENSE.txt. */
@font-face { font-family: 'Roboto'; font-style: normal; font-weight: 100 900; font-display: swap; src: url('/assets/fonts/roboto/roboto-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Roboto'; font-style: normal; font-weight: 100 900; font-display: swap; src: url('/assets/fonts/roboto/roboto-latin-ext.woff2') format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--deep); outline-offset: 4px; }
html { scroll-behavior: smooth; scroll-padding-top: 130px; }
body {
  background: var(--paper); color: var(--ink);
  font-family: var(--font-body); font-size: var(--fs-body); line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
::selection { background: var(--blue); color: #fff; }

h1, h2, h3, .display {
  font-family: var(--font-head); text-transform: uppercase;
  line-height: 1.04; letter-spacing: -0.005em; font-weight: 700;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }
.skip { position: absolute; left: -999px; top: 0; background: var(--blue); color: #fff; padding: 10px 16px; z-index: var(--z-overlay); }
.skip:focus { left: 0; }

/* ---- ILA-Formsprache ---- */
.chev { display: inline-block; width: 24px; height: 13px; background: var(--blue); clip-path: var(--chev); }
.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 16px; font-weight: 700;
}
.eyebrow::before { content: ""; width: 24px; height: 12px; background: currentColor; clip-path: var(--chev); }
.runway { display: flex; gap: 9px; }
.runway i { width: 5px; height: 30px; background: var(--blue); }
.runway i:nth-child(2n) { opacity: .45; }
.hatch { background: repeating-linear-gradient(115deg, var(--blue) 0, var(--blue) 4px, transparent 4px, transparent 26px); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--deep); color: #fff; font-weight: 700; font-size: 14px;
  letter-spacing: .05em; text-transform: uppercase; padding: 13px 22px;
  border: none; cursor: pointer; transition: background var(--dur-fast); white-space: normal; text-align: left; max-width: 100%;
}
.btn::after { content: ""; width: 18px; height: 10px; flex-shrink: 0; background: currentColor; clip-path: var(--chev); }
.btn:hover { background: var(--deep); }
.btn.ghost { background: rgba(255,255,255,.88); border: 1px solid var(--ink); color: var(--ink); }
.btn.ghost:hover { border-color: var(--deep); color: var(--deep); background: #fff; }
.btn.small { padding: 9px 15px; font-size: 12.5px; }
.btn.deep { background: var(--deep); }
.btn.deep:hover { background: var(--ink); }

/* ---- Sektionen ---- */
.sec { padding: 100px 0; }
.sec.alt { background: linear-gradient(180deg, var(--sky-2), var(--sky)); }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 52px; flex-wrap: wrap; }
.sec-head h2 { font-size: clamp(26px, 3.2vw, 48px); max-width: 820px; }
.sec-head p { color: var(--muted); max-width: 480px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2 > *, .grid-3 > *, .grid-4 > * { min-width: 0; }

/* ---- Reveal on Scroll ---- */
.rv { opacity: 1; transform: none; transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.rv.in { opacity: 1; transform: none; }
/* Richtungs-Reveals vertikal halten: translateX erzeugt vor dem
   Einblenden horizontalen Overflow (Gotcha, QA 430px) */
.rv-l { opacity: 1; transform: none; transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.rv-r { opacity: 1; transform: none; transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.rv-l.in, .rv-r.in { opacity: 1; transform: none; }
[data-stagger] > * { opacity: 1; transform: none; transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); transition-delay: calc(var(--i, 0) * 90ms); }
.motion-ready .rv:not(.in), .motion-ready .rv-l:not(.in), .motion-ready .rv-r:not(.in), .motion-ready [data-stagger]:not(.in) > * { opacity: 0; transform: translateY(24px); }
[data-stagger].in > * { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv, .rv-l, .rv-r, [data-stagger] > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* ---- Responsive Basisraster ---- */
@media (max-width: 1100px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .sec { padding: 60px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---- Redaktionelle Listen (Backend-Editor fuegt .rte-list hinzu) ----
   Der globale Reset nimmt Listen Einzug und Marker; Listen aus dem
   Drupal-Rich-Text bekommen sie hier CI-konform (eckig, ILA-Blau) zurueck. */
.rte-list { margin: 10px 0 14px; padding-left: 22px; }
.rte-list li { margin: 4px 0; }
ul.rte-list { list-style: square; }
.rte-list li::marker { color: var(--blue); font-weight: 700; }


/* ===== calculator ===== */
/* ============================================================
   CALCULATOR – Standmietenrechner 2028.
   Nachbau der echten Rechenlogik (fair_calculator_webform,
   Schema 9505) mit Live-Kostenübersicht, maßstäblicher
   Standvorschau, Vergleichsmodus und Anschluss-CTAs.
   ============================================================ */

.calc { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 26px; align-items: start; }

/* ---- Formular ---- */
.calc-form { border: 1px solid var(--line); background: #fff; }
.calc-tabs { display: flex; border-bottom: 1px solid var(--line); background: var(--sky-2); overflow-x: auto; scrollbar-width: none; }
.calc-tabs::-webkit-scrollbar { display: none; }
.calc-tabs button {
  flex: 1; padding: 15px 12px; background: none; border: none; border-bottom: 3px solid transparent;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); cursor: pointer; white-space: nowrap;
}
.calc-tabs button.on { color: var(--ink); border-color: var(--gate-a); background: #fff; font-weight: 700; }
.calc-tabs button:hover:not(.on) { color: var(--ink); }
.calc-fields { padding: 24px; display: grid; gap: 18px; }
.calc-field label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 7px; }
.calc-field label small { font-weight: 400; color: var(--muted); }
.calc-field select, .calc-field input[type="number"] {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); background: #fff;
  font-family: inherit; font-size: 15px; color: var(--ink);
}
.calc-field select:focus, .calc-field input:focus { outline: 2px solid var(--gate-a); outline-offset: -1px; }
.calc-field .hint { font-size: 12.5px; color: var(--muted); margin-top: 6px; }
.calc-field .hint a { color: var(--deep); font-weight: 600; }
.calc-pdfrow { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.calc-pdfrow a {
  display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line);
  padding: 8px 12px; font-size: 12.5px; font-weight: 600; color: var(--deep);
}
.calc-pdfrow a:hover { border-color: var(--gate-a); }
.calc-pdfrow a:not(.u-pdf)::before { content: "PDF"; font-family: var(--font-mono); font-size: 8.5px; background: var(--deep); color: #fff; padding: 3px 5px; }

/* ---- Lageplan-Vorschau ---- */
/* Kompakte Summenzeile: nur mobil (siehe Media-Query), sitzt in der
   Formularspalte direkt unter den Feldern. */
.calc-mini { display: none; }
.calc-preview { border-top: 1px solid var(--line); padding: 20px 24px 24px; }
.calc-preview .cp-head { font-family: var(--font-mono); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.calc-preview svg { width: 100%; height: auto; display: block; }
.calc-preview .cp-note { font-size: 11.5px; color: var(--muted); margin-top: 10px; }
.cp-warn {
  margin: 0 0 14px; padding: 11px 14px;
  background: rgba(255, 220, 0, .16); border: 2px solid var(--ink);
  font-size: 13px; line-height: 1.5; color: var(--ink); font-weight: 600;
}
.cp-warn strong { font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.cp-halls { display: flex; gap: 6px; margin-bottom: 14px; flex-wrap: wrap; }
.cp-halls button {
  border: 1px solid var(--line); background: #fff; padding: 8px 14px; cursor: pointer;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.cp-halls button:hover { border-color: var(--gate-a); color: var(--ink); }
.cp-halls button.on { background: var(--ink); border-color: var(--ink); color: #fff; font-weight: 700; }
.cp-zoomlbl { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin: 14px 0 6px; }
.cp-detail svg { max-height: 300px; }
.cp-form-note { margin-top: 8px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); font-weight: 700; }
.cp-photo { margin: 16px 0 0; border: 1px solid var(--line); background: var(--sky-2); }
.cp-photo img { width: 100%; height: 170px; object-fit: cover; display: block; }
.cp-photo figcaption { padding: 9px 12px; font-size: 12px; color: var(--ink); }
.cp-photo figcaption .credit { display: block; font-family: var(--font-mono); font-size: 9px; color: var(--muted); margin-top: 3px; letter-spacing: .04em; }
.cpg-frame { position: relative; }
.cpg-frame button {
  position: absolute; top: 50%; transform: translateY(-50%); width: 34px; height: 44px;
  border: none; background: rgba(7,28,51,.55); color: #fff; font-size: 15px; cursor: pointer;
}
.cpg-frame button:hover { background: var(--blue); }
.cpg-frame button[data-gal="-1"] { left: 0; }
.cpg-frame button[data-gal="1"] { right: 0; }
.cpg-count {
  position: absolute; right: 8px; bottom: 8px; background: rgba(7,28,51,.65); color: #fff;
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .1em; padding: 3px 7px;
}

/* ---- PDF-Angebot (E-Mail -> PDF, Flow wie Live-Rechner) ---- */
.calc-quote { border-top: 1px solid var(--line); padding: 16px 22px 18px; background: var(--sky-2); }
.calc-quote.unavailable { display: none; }
.calc-quote .cq-head { font-weight: 700; font-size: 14.5px; }
.calc-quote .cq-text { font-size: 12.5px; color: var(--muted); margin: 5px 0 12px; }
.calc-quote form { display: grid; gap: 10px; }
.calc-quote input[type="email"] {
  width: 100%; padding: 11px 13px; border: 1px solid var(--line); background: #fff;
  font-family: inherit; font-size: 14.5px; color: var(--ink);
}
.calc-quote input[type="email"]:focus { outline: 2px solid var(--gate-a); outline-offset: -1px; }
.cq-consent { display: grid; grid-template-columns: auto 1fr; gap: 9px; font-size: 11.5px; color: var(--muted); align-items: start; cursor: pointer; }
.cq-consent input { margin-top: 2px; accent-color: var(--gate-a); }
.cq-consent a { color: var(--deep); font-weight: 600; }
.calc-quote button.btn { justify-content: center; background: var(--gate-a); width: 100%; }
.calc-quote button.btn:disabled { background: var(--line); color: var(--muted); cursor: not-allowed; }
.calc-quote .cq-done { display: none; }
.calc-quote.sent form { display: none; }
.calc-quote.sent .cq-done { display: block; }
.calc-quote .cq-done p { font-size: 13px; margin-bottom: 10px; }
.calc-quote .cq-done .btn { justify-content: center; width: 100%; }

/* ---- Kostenübersicht ---- */
.calc-summary { border: 1px solid var(--line); border-top: 5px solid var(--gate-a); background: #fff; position: sticky; top: 140px; }
.calc-summary .cs-head { padding: 18px 22px 14px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.calc-summary .cs-head h3 { font-size: 18px; }
.calc-summary .cs-head .live { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .18em; color: var(--gate-a); text-transform: uppercase; font-weight: 700; }
.calc-summary .cs-head .live i { width: 7px; height: 7px; background: var(--gate-a); animation: tickerblink 1.3s steps(2) infinite; }
.calc-rows { padding: 10px 22px; }
.calc-row { display: grid; grid-template-columns: 1fr auto; gap: 4px 18px; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 14px; }
.calc-row:last-child { border-bottom: none; }
.calc-row .l b { display: block; font-size: 14px; }
.calc-row .l small { color: var(--muted); font-size: 12px; font-family: var(--font-mono); }
.calc-row .v { font-variant-numeric: tabular-nums; font-weight: 700; white-space: nowrap; }
.calc-row.discount .l b, .calc-row.discount .v { color: var(--gate-a); }
.calc-row.zero .v { color: var(--muted); font-weight: 400; }
.calc-total { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 16px 22px; background: var(--sky-2); border-top: 2px solid var(--ink); }
.calc-total .t { font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: 13px; }
.calc-total .sum { font-family: var(--font-head); font-size: 34px; font-weight: 700; font-variant-numeric: tabular-nums; }
.calc-total .sum small { font-size: 13px; font-family: var(--font-body); color: var(--muted); font-weight: 400; }
.calc-notes { padding: 14px 22px; font-size: 11.5px; color: var(--muted); border-top: 1px solid var(--line); display: grid; gap: 6px; }
.calc-ctas { padding: 16px 22px 20px; display: grid; gap: 10px; border-top: 1px solid var(--line); }
.calc-ctas .btn { justify-content: center; background: var(--gate-a); }
.calc-ctas .btn:hover { background: var(--ink); }
.calc-ctas .btn.ghost { background: #fff; }
.calc-ctas .btn.ghost:hover { background: var(--sky-2); }

/* ---- Vergleich ---- */
.calc-compare-bar { margin-top: 10px; padding: 12px 22px 16px; border-top: 1px solid var(--line); }
.calc-compare-bar .cc-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.calc-compare-bar button { background: none; border: 1px solid var(--line); padding: 9px 13px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); cursor: pointer; }
.calc-compare-bar button:hover { border-color: var(--gate-a); color: var(--ink); }
.calc-compare-bar button[data-save] { border-color: var(--gate-a); color: var(--gate-a); font-weight: 700; }
.calc-compare-bar button[data-save]:hover { background: var(--gate-a); color: #fff; }
.calc-compare-bar .cc-hint { font-size: 12px; color: var(--muted); margin-top: 9px; }
.calc-compare { margin-top: 26px; border: 1px solid var(--line); background: #fff; display: none; }
.calc-compare.on { display: block; }
.calc-compare .cc-head { padding: 14px 20px; border-bottom: 1px solid var(--line); background: var(--sky-2); }
.calc-compare .cc-head h3 { font-size: 16px; }
.calc-compare .cc-head p { font-size: 12.5px; color: var(--muted); margin-top: 4px; max-width: 760px; }
.calc-compare table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.calc-compare th, .calc-compare td { padding: 10px 20px; border-bottom: 1px solid var(--line); text-align: right; font-variant-numeric: tabular-nums; }
.calc-compare th:first-child, .calc-compare td:first-child { text-align: left; }
.calc-compare thead th { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 400; }
.calc-compare td small { display: block; font-family: var(--font-mono); font-size: 10px; color: var(--muted); font-weight: 400; margin-top: 2px; }
.calc-compare td .cl { font-weight: 600; }
.calc-compare td .dash { color: var(--muted); font-weight: 700; }
.calc-compare tr.cc-total td { font-weight: 700; background: var(--sky-2); border-top: 2px solid var(--ink); }
.calc-compare .diff-plus { color: #C0392B; }
.calc-compare .diff-minus { color: #008847; }

@media (max-width: 1000px) {
  .calc { grid-template-columns: 1fr; }
  .calc-summary { position: static; }
  .calc-mini {
    display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 12px;
    border-top: 1px solid var(--line); background: var(--sky-2);
    padding: 14px 24px;
  }
  .calc-mini .cm-l { font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
  .calc-mini .cm-v { font-size: 21px; font-weight: 800; color: var(--ink); font-variant-numeric: tabular-nums; margin-right: auto; }
  .calc-mini .cm-v small { font-size: 11px; font-weight: 400; color: var(--muted); }
  .calc-mini .cm-more {
    border: 1px solid var(--gate-a); background: #fff; color: var(--gate-a);
    font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase;
    padding: 7px 11px; cursor: pointer; white-space: nowrap;
  }
  .calc-mini .cm-more i { font-style: normal; }
  .calc-mini .cm-more:hover { background: var(--gate-a); color: #fff; }
}

/* ---- Fläche: Zahlenfeld + Schieberegler + Schnellwahl ---- */
.calc-area { display: grid; grid-template-columns: 130px 1fr; gap: 12px; align-items: center; }
.calc-area input[type="range"] { width: 100%; accent-color: var(--gate-a); cursor: pointer; margin: 0; }
.calc-quick { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; margin-top: 9px; }
.calc-quick span { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-right: 4px; }
.calc-quick button { border: 1px solid var(--line); background: #fff; padding: 5px 10px; font-family: var(--font-mono); font-size: 10.5px; color: var(--ink); cursor: pointer; }
.calc-quick button:hover { border-color: var(--gate-a); }
.calc-quick button.on { background: var(--gate-a); border-color: var(--gate-a); color: #fff; font-weight: 700; }
.calc-field .hint.warn { color: #A3242D; font-weight: 600; }
.calc-field .hint.pkg-info { color: var(--ink); background: var(--sky-2); padding: 8px 10px; margin: 8px 0 6px; border-left: 3px solid var(--gate-a); line-height: 1.5; }
.calc-resetrow { display: flex; justify-content: flex-end; }
.calc-resetrow button { background: none; border: 1px solid var(--line); padding: 7px 12px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); cursor: pointer; }
.calc-resetrow button:hover { border-color: var(--ink); color: var(--ink); }

/* ---- Zwischensumme, Ersparnis, Link teilen ---- */
.calc-row.subtotal { border-top: 1px solid var(--line); }
.calc-row.subtotal .v { font-weight: 600; }
.calc-saving { display: none; padding: 10px 22px 12px; background: var(--gate-a); color: #fff; font-size: 13.5px; }
.calc-saving:not(:empty) { display: block; }
.calc-saving small { display: block; margin-top: 2px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; opacity: .85; }
.calc-compare-bar .cc-share { color: var(--ink); word-break: break-all; }

@media (max-width: 520px) {
  .calc-tabs { flex-wrap: wrap; }
  .calc-tabs button { flex: 1 1 50%; padding: 13px 8px; }
  .calc-area { grid-template-columns: 1fr; }
}


/* ===== card-grid ===== */
/* ============================================================
   CARD-GRID – Karten-Familie: .card (Text), .card.img-card (Bild),
   .tile (Bild-Vollflächen-Kachel), .seg-tile (Segment-Kachel mit
   Akzentfarbe), .sp (nummerierte Selling-Points), .person (Sales).
   Karten sind article[data-href] – keine <a> in <a>.
   ============================================================ */

.card { border: 1px solid var(--line); background: #fff; padding: 24px; display: flex; flex-direction: column; transition: box-shadow var(--dur-fast); min-width: 0; }
.card:hover { box-shadow: var(--shadow-card); }
.card .tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: .22em; color: var(--acc, var(--blue)); text-transform: uppercase; margin-bottom: 10px; font-weight: 700; }
.card h3 { font-size: 19px; margin-bottom: 7px; }
.card p { color: var(--muted); font-size: 14.5px; flex: 1; }
.card .go { margin-top: 16px; font-weight: 700; font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; }
.card .go::after { content: ""; width: 16px; height: 9px; background: var(--acc, var(--blue)); clip-path: var(--chev); transition: transform var(--dur-fast); }
.card:hover .go::after { transform: translateX(5px); }
.card.img-card { padding: 0; overflow: hidden; }
.card.img-card .im { height: 190px; overflow: hidden; position: relative; }
.card.img-card .im img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.card.img-card:hover .im img { transform: scale(1.05); }
.card.img-card .in { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.card .credit { position: absolute; right: 8px; bottom: 6px; font-family: var(--font-mono); font-size: 8.5px; color: rgba(255,255,255,.75); letter-spacing: .06em; z-index: 2; }

/* Bild-Vollflächen-Kachel */
.tile { position: relative; min-height: 340px; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; border: 1px solid var(--line); min-width: 0; }
.tile img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.tile:hover img.bg { transform: scale(1.05); }
.tile .grad { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(7,28,51,.8)); }
.tile .in { position: relative; z-index: 2; padding: 22px; color: #fff; }
.tile .tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: .24em; text-transform: uppercase; background: var(--acc, var(--blue)); padding: 4px 8px; display: inline-block; font-weight: 700; }
.tile h3 { font-size: 22px; margin-top: 10px; }
.tile p { color: rgba(255,255,255,.85); font-size: 14px; margin-top: 6px; }
.tile .go { margin-top: 12px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; color: #fff; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.tile .go::after { content: ""; width: 16px; height: 9px; background: currentColor; clip-path: var(--chev); }
.tile .credit { position: absolute; right: 8px; top: 8px; font-family: var(--font-mono); font-size: 8.5px; color: rgba(255,255,255,.7); z-index: 2; }

/* Segment-Kacheln (Startseite): Akzent = Segmentfarbe, Bild + Deko */
.seg-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.seg-tiles > * { min-width: 0; }
.seg-tile {
  position: relative; background: #fff; border: 1px solid var(--line); border-top: 5px solid var(--c, var(--blue));
  min-height: 300px; display: flex; flex-direction: column; overflow: hidden; cursor: pointer;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med);
}
.seg-tile:hover { transform: translateY(-6px); box-shadow: 0 30px 70px rgba(0,68,147,.14); }
.seg-tile .im { height: 150px; overflow: hidden; position: relative; }
.seg-tile .im img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.seg-tile:hover .im img { transform: scale(1.07); }
.seg-tile .im::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(255,255,255,.9)); }
.seg-tile .in { padding: 16px 22px 22px; display: flex; flex-direction: column; flex: 1; position: relative; }
.seg-tile .mono { font-family: var(--font-mono); font-size: 10px; letter-spacing: .3em; color: var(--c, var(--blue)); text-transform: uppercase; font-weight: 700; }
.seg-tile h3 { font-size: 26px; margin: 8px 0 6px; }
.seg-tile p { color: var(--muted); flex: 1; font-size: 14.5px; }
.seg-tile .go { color: var(--c, var(--blue)); font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-weight: 700; }
.seg-tile .go::after { content: ""; width: 16px; height: 9px; background: currentColor; clip-path: var(--chev); transition: transform var(--dur-fast); }
.seg-tile:hover .go::after { transform: translateX(5px); }

/* Nummerierte Selling-Points */
.sp-list { counter-reset: sp; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.sp { counter-increment: sp; background: #fff; border: 1px solid var(--line); padding: 26px 26px 24px; position: relative; min-width: 0; }
.sp::before {
  content: counter(sp, decimal-leading-zero); position: absolute; top: 20px; right: 22px;
  font-family: var(--font-head); font-size: 32px; color: var(--acc, var(--blue)); line-height: 1; font-weight: 700;
}
.sp:hover { box-shadow: var(--shadow-card); }
.sp h3 { font-size: 18px; margin-bottom: 6px; max-width: 85%; }
.sp p { color: var(--muted); font-size: 14.5px; }
.sp .sp-link {
  display: inline-block; margin-top: 14px; font-family: var(--font-mono); font-size: 12px;
  letter-spacing: .07em; text-transform: uppercase; color: var(--blue); text-decoration: none;
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
}
.sp .sp-link::after { content: " \2192"; }
.sp .sp-link:hover { color: var(--deep); }

/* Sales-Personen */
.sales { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.sales > * { min-width: 0; }
.person { border: 1px solid var(--line); background: #fff; padding: 24px; display: flex; flex-direction: column; }
.person:hover { box-shadow: var(--shadow-card); }
.person .ini { width: 58px; height: 58px; background: var(--acc, var(--deep)); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 19px; font-weight: 700; margin-bottom: 15px; }
.person .photo { aspect-ratio: 1 / 1; object-fit: cover; display: block; margin: -24px -24px 15px; width: calc(100% + 48px); max-width: none; }
.person h3 { font-size: 17px; text-transform: none; }
.person .role { color: var(--muted); font-size: 13px; margin: 4px 0 10px; }
.person .areas { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.person .areas span { font-family: var(--font-mono); font-size: 9px; letter-spacing: .1em; border: 1px solid var(--ac, var(--line)); border-left: 4px solid var(--ac, var(--line)); color: var(--ink); padding: 3px 7px; text-transform: uppercase; font-weight: 600; }
.person .btn { margin-top: auto; justify-content: center; }
.person .pending { margin-top: auto; text-align: center; font-family: var(--font-mono); font-size: 10px; color: var(--muted); border: 1px dashed var(--muted); padding: 12px; letter-spacing: .08em; text-transform: uppercase; }

/* Weiterführung am Seitenende */
.nextlinks { border-top: 2px solid var(--ink); padding-top: 28px; margin-top: 64px; }
.nextlinks h3 { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .26em; color: var(--muted); text-transform: uppercase; margin-bottom: 18px; }
.nextlinks .row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.nextlinks .row > * { min-width: 0; }
.nextlinks a { position: relative; overflow: hidden; border: 1px solid var(--line); background: #fff; padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 14px; font-weight: 700; font-size: 15.5px; transition: border-color var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out); }
.nextlinks a::before { content: ""; flex: none; order: 2; width: 16px; height: 10px; background: var(--acc, var(--blue)); clip-path: var(--chev); opacity: .35; margin-right: -10px; animation: nl-march 2.2s var(--ease-out) infinite; }
.nextlinks a::after { content: ""; flex: none; order: 3; width: 18px; height: 10px; background: var(--acc, var(--blue)); clip-path: var(--chev); animation: nl-march 2.2s var(--ease-out) .35s infinite; }
@keyframes nl-march { 0%, 100% { transform: translateX(0); opacity: .45; } 45% { transform: translateX(4px); opacity: 1; } }
.nextlinks a:hover { border-color: var(--acc, var(--blue)); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.nextlinks a:hover::before, .nextlinks a:hover::after { animation-duration: .9s; }
.nextlinks a span { order: 1; }
.nextlinks a small { display: block; color: var(--muted); font-weight: 400; font-size: 12.5px; margin-top: 2px; }
@media (prefers-reduced-motion: reduce) { .nextlinks a::before, .nextlinks a::after { animation: none; opacity: 1; } .nextlinks a:hover { transform: none; } }
.tile.is-sold img.bg { filter: grayscale(.65) brightness(.92); }
.tile .tile-sold { position: absolute; z-index: 3; top: 16px; right: 16px; background: #fff; color: var(--ink); border: 1px solid var(--ink); font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; padding: 5px 9px; }

@media (max-width: 1100px) {
  .seg-tiles { grid-template-columns: 1fr 1fr; }
  .sales { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .seg-tiles, .sales, .sp-list, .nextlinks .row { grid-template-columns: 1fr; }
  .tile { min-height: 280px; }
}

/* Kontaktzeilen in Personen-Kacheln (Telefon/E-Mail, z. B. BDLI) */
.person .plinks { display: flex; flex-direction: column; gap: 6px; margin: 2px 0 6px; }
.person .plinks a { font-family: var(--font-mono); font-size: 12px; color: var(--ink); text-decoration: none; width: fit-content; border-bottom: 1px solid transparent; }
.person .plinks a:hover { border-bottom-color: var(--ink); }

/* Gruppen-Zwischentitel in Kontakt-Sektionen (BDLI-Reihe / Messe-Reihe) */
.sales-glabel { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin: 0 0 14px; }
.sales + .sales-glabel { margin-top: 36px; }


/* ===== command-bar ===== */
/* ============================================================
   COMMAND-BAR – kompakte Such-/Frage-Leiste IM Hero.
   Ein Klick öffnet das globale Such-Overlay (identisch zur
   Topbar-Lupe, Marcel-Feedback 11.07.2026) – kein Inline-Panel.
   Hotlinks darunter mit Chevron, einheitliche Formsprache.
   ============================================================ */

.cmd-zone { position: relative; max-width: 640px; }
.cmd-label {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .26em;
  color: var(--ink); text-transform: uppercase; margin-bottom: 8px; font-weight: 700;
  display: flex; align-items: center; gap: 10px;
}
.cmd-label::before { content: ""; width: 18px; height: 9px; background: var(--blue); clip-path: var(--chev); }

/* Die Leiste ist ein Button: öffnet das Such-Overlay */
.cmd {
  display: flex; align-items: center; gap: 12px; width: 100%;
  background: rgba(255,255,255,.94); backdrop-filter: blur(12px);
  border: 1px solid var(--ink); border-left: 5px solid var(--blue);
  padding: 0 14px; cursor: pointer; text-align: left;
  box-shadow: 0 18px 50px rgba(7,28,51,.14);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.cmd:hover, .cmd:focus-visible { border-color: var(--blue); box-shadow: 0 22px 60px rgba(7,28,51,.2); }
.cmd .icon { flex: none; display: flex; }
.cmd .icon svg { width: 17px; height: 17px; stroke: var(--blue); fill: none; stroke-width: 2; }
.cmd .cmd-placeholder {
  flex: 1; min-width: 0; font-family: var(--font-body); font-size: 15px;
  color: var(--muted); padding: 12px 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.cmd kbd {
  flex: none; font-family: var(--font-mono); font-size: 10px; color: var(--muted);
  border: 1px solid var(--line); padding: 3px 6px; background: var(--sky-2);
}

/* Hotlinks: Chevron-Pfeil, einheitlich zur übrigen Formsprache */
.cmd-quick { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.cmd-quick a {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.88); border: 1px solid var(--line);
  font-size: 12px; font-weight: 700; color: var(--ink); padding: 7px 11px;
  text-transform: uppercase; letter-spacing: .05em;
}
.cmd-quick a::after { content: ""; width: 14px; height: 8px; background: var(--blue); clip-path: var(--chev); transition: transform var(--dur-fast); }
.cmd-quick a:hover { border-color: var(--blue); color: var(--blue); }
.cmd-quick a:hover::after { transform: translateX(4px); }

@media (max-width: 720px) {
  .cmd .cmd-placeholder { font-size: 14px; padding: 11px 0; }
  .cmd kbd { display: none; }
  .cmd-quick a { font-size: 11px; min-height: 44px; }
}


/* ===== content ===== */
/* ============================================================
   CONTENT – Namespace u- für die strukturierten 2026er-Inhalte
   (aus content-2026/struct). Fließtext, Karten, Tabellen, PDFs,
   Hinweisboxen. Kollidiert nicht mit Prototyp-Klassen.
   ============================================================ */

.u-flow { max-width: 78ch; }
.u-flow p { margin: 0 0 13px; line-height: 1.68; font-size: 15.5px; }
.u-flow h3 { margin: 26px 0 10px; font-size: 19px; }
.u-flow ul, .u-flow ol { margin: 0 0 16px 20px; line-height: 1.6; font-size: 15px; }
.u-flow a, .u-card a, .u-note a { color: var(--deep); font-weight: 600; }
.u-flow a:hover { text-decoration: underline; }

.u-cards { margin: 18px 0 8px; }
.u-card h3 { font-size: 17px; }
.u-card p { font-size: 13.5px; line-height: 1.55; color: var(--muted); margin: 0 0 8px; }
.u-card ul { margin: 4px 0 8px 18px; font-size: 13px; color: var(--muted); }
.u-cardimg { width: 100%; height: 150px; object-fit: cover; margin-bottom: 12px; display: block; }

.u-tbl { margin: 16px 0 22px; overflow-x: auto; }
.u-tbl table { border-collapse: collapse; width: 100%; font-size: 13.5px; }
.u-tbl td, .u-tbl th { border: 1px solid var(--line); padding: 9px 12px; text-align: left; vertical-align: top; }
.u-tbl tr:first-child td, .u-tbl th { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); background: rgba(0,143,211,.06); }

.u-pdf { display: flex; gap: 14px; align-items: center; border: 1px solid var(--line); border-left: 5px solid var(--blue); padding: 16px 18px; margin: 14px 0; max-width: 620px; background: #fff; }
.u-pdf:hover { box-shadow: var(--shadow-card); }
.u-pdf .ic { flex: none; font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; background: var(--deep); color: #fff; padding: 9px 11px; }
.u-pdf b { color: var(--ink); display: block; font-size: 14.5px; }
.u-pdf small { color: var(--muted); font-size: 12px; }

.u-note { background: #FFF7E8; border: 1px solid #EAD9AE; border-left: 5px solid #D9A521; padding: 13px 17px; margin: 18px 0; font-size: 14px; color: #4A3B12; max-width: 78ch; }
.u-note.blue { background: var(--sky-2); border-color: var(--line); border-left-color: var(--blue); color: var(--ink); }

/* Kennzeichnung "Ausgabe 2026 – 2028 folgt" */
.u-vintage { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--deep); border: 1px dashed var(--deep); padding: 5px 10px; margin: 0 0 16px; background: rgba(0,68,147,.04); }
.u-vintage::before { content: ""; width: 7px; height: 7px; background: var(--deep); flex: none; }

.u-img { margin: 18px 0; }
.u-img img { display: block; width: 100%; max-width: 900px; border: 1px solid var(--line); }
.u-video { display: block; width: 100%; max-width: 900px; margin: 18px 0; background: var(--ink); }

/* Zwischenueberschriften aus 2026er-Structs: Kicker + kraeftige h-Blöcke
   (Feedback Nina 28.07.2026: Manual-Zwischentitel muessen herausstechen) */
.u-flow h3 { font-size: 21px; margin-top: 34px; margin-bottom: 4px; }
.u-flow .u-h2 { font-size: clamp(22px, 2.4vw, 30px); margin-top: 44px; margin-bottom: 8px; }
.u-flow .u-kicker { display: block; font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }


/* ===== countdown ===== */
/* ============================================================
   COUNTDOWN – kompakte Zellen, rechts neben der Command-Bar.
   Zielt automatisch auf die ILA 2028 (17.–21. Mai 2028).
   ============================================================ */

.count-block { text-align: left; }
.count-title {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .26em;
  color: var(--ink); text-transform: uppercase; margin-bottom: 10px; font-weight: 700;
}
.count { display: flex; gap: 8px; }
.count .cell {
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-top: 3px solid var(--blue);
  padding: 10px 14px 8px; min-width: 76px; text-align: center;
}
.count .num {
  font-family: var(--font-head); font-size: 30px; color: var(--ink);
  line-height: 1; font-variant-numeric: tabular-nums; font-weight: 700;
}
.count .lbl {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: .28em;
  color: var(--muted); margin-top: 6px; text-transform: uppercase;
}

@media (max-width: 1000px) {
  .count-block { display: flex; align-items: center; gap: 14px; }
  .count-title { margin: 0; flex: none; }
  .count { flex: 1; }
  .count .cell { flex: 1; min-width: 0; }
}
@media (max-width: 720px) {
  .count .cell { padding: 8px 6px 6px; }
  .count .num { font-size: 22px; }
  .count-block { display: block; }
  .count-title { margin-bottom: 8px; }
}


/* ===== cta-band ===== */
/* ============================================================
   CTA-BAND – dunkles Vollbreite-Band für den Aussteller-CTA
   („Jetzt Fläche für 2028 sichern") mit Chevron-Deko.
   ============================================================ */

.ctaband { background: linear-gradient(120deg, var(--deep), var(--night) 75%); color: #fff; position: relative; overflow: hidden; }
.ctaband::before {
  content: ""; position: absolute; left: -30px; bottom: -50px; width: 320px; height: 260px;
  background: repeating-linear-gradient(115deg, rgba(0,143,211,.35) 0, rgba(0,143,211,.35) 5px, transparent 5px, transparent 34px);
  pointer-events: none;
}
.ctaband::after {
  content: ""; position: absolute; right: 6%; top: 50%; transform: translateY(-50%);
  width: 130px; height: 72px; background: rgba(0,143,211,.35); clip-path: var(--chev);
  pointer-events: none;
}
.ctaband-in { display: grid; grid-template-columns: 1.4fr auto; gap: 36px; align-items: center; padding-top: 66px; padding-bottom: 66px; position: relative; z-index: 2; }
.ctaband-in > * { min-width: 0; }
.ctaband h2 { font-size: clamp(24px, 2.8vw, 42px); }
.ctaband p { color: rgba(255,255,255,.78); margin-top: 12px; max-width: 640px; }
.ctaband-actions { display: flex; flex-direction: column; gap: 12px; }
.ctaband-actions .btn { justify-content: space-between; }
.ctaband-actions .btn.ghost { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.5); color: #fff; }
.ctaband-actions .btn.ghost:hover { border-color: #fff; background: rgba(255,255,255,.14); color: #fff; }

@media (max-width: 900px) {
  .ctaband-in { grid-template-columns: 1fr; padding-top: 46px; padding-bottom: 46px; }
  .ctaband::after { display: none; }
}


/* ===== doc-db ===== */
/* ============================================================
   DOC-DB – durchsuch- und filterbare Dokumentendatenbank
   (Aussteller-Bereich) mit echten Dokumenten/PDFs.
   ============================================================ */

.docdb { border: 1px solid var(--line); background: #fff; }
.docdb-head { padding: 18px; border-bottom: 1px solid var(--line); display: flex; gap: 10px; flex-wrap: wrap; align-items: center; background: var(--sky-2); }
.docdb-head input { flex: 1; min-width: 220px; background: #fff; border: 1px solid var(--line); color: var(--ink); padding: 12px 14px; font-family: inherit; font-size: 15px; }
.docdb-head input:focus { outline: 2px solid var(--blue); outline-offset: -1px; }
.chip { background: #fff; border: 1px solid var(--line); color: var(--muted); font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; padding: 9px 13px; cursor: pointer; text-transform: uppercase; }
.chip.on { border-color: var(--gcol, var(--blue)); color: #fff; background: var(--gcol, var(--blue)); }
.chip:hover:not(.on) { border-color: var(--blue); color: var(--ink); }

.doc-row { display: grid; grid-template-columns: 44px 1fr auto auto; gap: 16px; align-items: center; padding: 15px 20px; border-bottom: 1px solid var(--line); }
.doc-row:last-of-type { border-bottom: none; }
.doc-row:hover { background: var(--sky-2); }
.doc-ico { width: 40px; height: 40px; border: 1px solid var(--ink); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 9px; color: var(--ink); }
.doc-row .t { font-weight: 700; font-size: 15px; min-width: 0; }
.doc-row .t small { display: block; font-weight: 400; color: var(--muted); font-size: 12.5px; margin-top: 2px; }
.doc-row .cat { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .12em; color: var(--muted); text-transform: uppercase; border: 1px solid var(--line); padding: 4px 8px; white-space: nowrap; }
.doc-row .dl { font-family: var(--font-mono); font-size: 11.5px; color: var(--blue); letter-spacing: .08em; text-transform: uppercase; font-weight: 700; white-space: nowrap; }
.doc-row .dl:hover { color: var(--ink); }
.doc-empty { padding: 24px 20px; color: var(--muted); font-size: 14px; display: none; }

/* Variante: Luftfahrzeug-Liste (Flying-Display-Rückblick) */
.docdb.air .doc-row { grid-template-columns: 1fr auto auto; }
.docdb.air .doc-row .cat.loc { min-width: 64px; text-align: center; font-weight: 700; color: var(--deep); }

@media (max-width: 720px) {
  .doc-row { grid-template-columns: 1fr auto; }
  .doc-ico, .doc-row .cat { display: none; }
  .docdb.air .doc-row { grid-template-columns: 1fr auto; }
  .docdb.air .doc-row .cat.loc { display: block; }
}

/* "Folgt"-Platzhalter fuer 2028er-Dokumente (Feedbackrunde 30.07.2026) */
.doc-row .dl.soon { background: none; border: 1px dashed var(--line); color: var(--muted); cursor: default; }


/* ===== dock ===== */
/* ============================================================
   DOCK – schwebende Schnellzugriff-Leiste, nur im Hero sichtbar,
   verschwindet beim Scrollen (von Marcel bestätigt, R4).
   Ziele pro Gate konfigurierbar (Template-Props).
   ============================================================ */

.dock {
  position: fixed; left: 50%; bottom: 16px; transform: translateX(-50%);
  z-index: var(--z-dock); display: flex; align-items: stretch; gap: 2px;
  background: rgba(255,255,255,.88); backdrop-filter: blur(14px);
  border: 1px solid var(--line); box-shadow: 0 18px 50px rgba(7,28,51,.18); padding: 6px;
  transition: opacity var(--dur-med) ease, transform var(--dur-med) ease;
}
.dock a, .dock button {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  padding: 10px 18px 9px; background: none; border: none; cursor: pointer;
  color: var(--ink); transition: background var(--dur-fast), color var(--dur-fast);
}
.dock a:hover, .dock button:hover { background: rgba(0,143,211,.1); color: var(--blue); }
.dock svg { width: 19px; height: 19px; stroke: currentColor; stroke-width: 2; fill: none; }
.dock .lbl { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.dock .prime { background: var(--blue); color: #fff; }
.dock .prime:hover { background: var(--deep); color: #fff; }
.dock.away { opacity: 0; transform: translate(-50%, 18px); pointer-events: none; }

@media (max-height: 640px) and (min-width: 721px) {
  .dock { display: none; } /* sehr niedrige Fenster: Dock kollidiert mit Hero-Inhalt */
}

@media (max-width: 720px) {
  .dock { left: 10px; right: 10px; bottom: 10px; transform: none; justify-content: space-between; }
  .dock a, .dock button { padding: 9px 10px 8px; flex: 1; }
  .dock .lbl { font-size: 9px; }
  .dock.away { transform: translateY(18px); }
}


/* ===== entry-hero ===== */
.entry-hero { background: var(--sky-2); padding: 44px 0; }
.entry-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.entry-grid > * { min-width: 0; }
.entry-copy .eyebrow { font-size: 11px; letter-spacing: .15em; line-height: 1.6; margin-bottom: 18px; color: var(--deep); }
.entry-copy h1 { font-size: clamp(36px, 4.2vw, 62px); max-width: 700px; }
.entry-copy h1 em { display: block; color: var(--deep); font-style: normal; }
.entry-lead { font-size: 17px; color: var(--muted); margin-top: 17px; }
.entry-routes { display: grid; gap: 8px; margin-top: 24px; max-width: 470px; }
.entry-routes a { display: flex; justify-content: space-between; gap: 14px; padding: 12px 16px; background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--blue); font-weight: 700; color: var(--deep); }
.entry-routes a:hover { background: var(--sky); border-color: var(--blue); }
.entry-search { margin-top: 18px; display: inline-flex; align-items: center; gap: 12px; border: none; background: transparent; color: var(--deep); text-decoration: underline; text-underline-offset: 4px; min-height: 38px; cursor: pointer; font-size: 14px; }
.entry-media { position: relative; height: 410px; }
.entry-media > img { height: 100%; width: 100%; object-fit: cover; object-position: 53% center; }
.entry-credit { position: absolute; bottom: 8px; right: 8px; left: 8px; text-align: right; font-size: 9px; color: var(--ink); }
.entry-credit { background: rgba(255,255,255,.94); width: fit-content; margin-left: auto; padding: 3px 6px; }
.entry-media .hero-brand { position: absolute; top: 12px; right: 12px; }
.entry-media .hero-brand img { width: 64px; height: auto; }
body[data-page="home"] .sectionbar { display: none; }
body[data-page="home"] .seg-tiles { min-height: 0; }
@media (max-width: 980px) {
  .entry-grid { gap: 26px; }
  .entry-copy h1 { font-size: 38px; }
  .entry-media { height: 385px; }
}
@media (max-width: 720px) {
  .entry-hero { padding: 28px 0 0; }
  .entry-grid { grid-template-columns: 1fr; gap: 22px; }
  .entry-copy h1 { font-size: clamp(32px, 8.2vw, 42px); }
  .entry-copy .eyebrow { margin-bottom: 12px; font-size: 10px; letter-spacing: .1em; }
  .entry-lead { font-size: 15px; margin-top: 12px; }
  .entry-routes { margin-top: 17px; gap: 7px; }
  .entry-routes a { padding: 10px 13px; min-height: 44px; }
  .entry-search { margin-top: 10px; }
  .entry-media { height: 205px; margin: 0 calc(-1 * var(--pad-x)); }
  .entry-media .hero-brand { top: 10px; right: 12px; }
}


/* ===== faq ===== */
/* ============================================================
   FAQ – kantiges Akkordeon auf <details>/<summary>-Basis.
   Nachtrag 12.07.2026: Die faq-Sektion (4 Seiten) hatte bis dahin
   keine eigenen Styles und fiel auf die Browser-Darstellung zurück.
   ============================================================ */

.faq { display: grid; gap: 10px; max-width: 980px; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--line);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.faq details[open] { border-left-color: var(--acc, var(--blue)); box-shadow: var(--shadow-card); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center;
  justify-content: space-between; gap: 18px; padding: 17px 20px;
  font-weight: 700; font-size: 16px; line-height: 1.4;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 13px; height: 13px;
  background: var(--acc, var(--blue)); clip-path: var(--chev);
  transform: rotate(90deg); transition: transform var(--dur-fast);
}
.faq details[open] summary::after { transform: rotate(-90deg); }
.faq .a { padding: 0 20px 20px; color: var(--muted); font-size: 15px; line-height: 1.65; max-width: 78ch; }
.faq .a a { color: var(--deep); font-weight: 600; }
.faq .a a:hover { text-decoration: underline; }


/* ===== footer ===== */
/* ============================================================
   FOOTER – heller Site-Footer mit Linkspalten, Partnerlogos,
   Rechtliches. Sprachumschalter-Link in der Basiszeile.
   ============================================================ */

footer.site { border-top: 1px solid var(--line); background: var(--sky-2); padding: 64px 0 40px; margin-top: 0; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.foot-grid > * { min-width: 0; }
.foot-grid h4 { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .26em; color: var(--muted); text-transform: uppercase; margin-bottom: 16px; font-weight: 700; }
.foot-grid a { display: block; color: var(--ink); font-size: 14.5px; padding: 4px 0; }
.foot-grid a:hover { color: var(--blue); }
.foot-brand img { height: 44px; margin-bottom: 16px; }
.foot-brand p { color: var(--muted); font-size: 13.5px; max-width: 300px; }
.foot-partners { display: flex; gap: 14px; align-items: center; margin-top: 20px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .16em; color: var(--muted); text-transform: uppercase; flex-wrap: wrap; }
.foot-partners span { border: 1px solid var(--line); background: #fff; padding: 8px 12px; }
.foot-base {
  border-top: 1px solid var(--line); padding-top: 22px; display: flex; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 11.5px; color: var(--muted); letter-spacing: .06em;
}
.foot-base .links a { color: var(--muted); margin-right: 18px; }
.foot-base a:hover { color: var(--ink); }

@media (max-width: 1100px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px)  { .foot-grid { grid-template-columns: 1fr; } }

/* Traegerleiste: Organized/Hosted/Supported by (Uebernahme alte Site,
   weisse Originallogos auf ILA-Dunkelblau als Akzentband im hellen Footer) */
.foot-carriers { background: var(--deep); padding: 30px 0 28px; }
.fc-in { display: flex; gap: 30px 64px; flex-wrap: wrap; align-items: center; }
.fc-group { display: flex; align-items: center; gap: 26px; }
.fc-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.55); white-space: nowrap; }
.fc-group img { height: 30px; width: auto; display: block; }
.fc-group img.fc-bdli, .fc-group img.fc-messe { height: 40px; }
.fc-group img.fc-ber { height: 22px; }
footer.site .foot-base { margin-top: 30px; }
@media (max-width: 900px) {
  .fc-in { gap: 22px 40px; }
  .fc-group { gap: 18px; }
  .fc-group img { height: 24px; }
  .fc-group img.fc-bdli, .fc-group img.fc-messe { height: 32px; }
  .fc-group img.fc-ber { height: 18px; }
}


/* ===== gallery ===== */
/* ============================================================
   GALLERY – Foto-Galerie (Media-Hub-Bilder) mit Masonry-artigem
   Raster, Hover-Zoom, Credits und Lightbox.
   ============================================================ */

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; grid-auto-flow: dense; }
.gallery > * { min-width: 0; }
.gal-item { position: relative; overflow: hidden; border: 1px solid var(--line); cursor: zoom-in; background: var(--sky-2); aspect-ratio: 3 / 2; }
.gal-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gal-item.wide { grid-column: span 2; aspect-ratio: auto; }
.gallery.single .gal-item { grid-column: 1 / -1; aspect-ratio: 21 / 9; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.gal-item:hover img { transform: scale(1.06); }
.gal-item .credit {
  position: absolute; left: 0; bottom: 0; right: 0; z-index: 2;
  font-family: var(--font-mono); font-size: 9px; color: #fff; letter-spacing: .06em;
  background: linear-gradient(180deg, transparent, rgba(7,28,51,.72)); padding: 22px 10px 8px;
  opacity: 0; transition: opacity var(--dur-med);
}
.gal-item:hover .credit { opacity: 1; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: var(--z-overlay); background: rgba(4,18,31,.92); display: none; align-items: center; justify-content: center; padding: 4vh 4vw; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 86vh; object-fit: contain; box-shadow: 0 40px 120px rgba(0,0,0,.5); }
.lightbox .lb-credit { position: absolute; bottom: 20px; left: 0; right: 0; text-align: center; font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,.75); letter-spacing: .08em; }
.lightbox .lb-close { position: absolute; top: 18px; right: 22px; background: none; border: 1px solid rgba(255,255,255,.5); color: #fff; font-size: 20px; padding: 8px 14px; cursor: pointer; }
.lightbox .lb-close:hover { border-color: #fff; }

@media (max-width: 1100px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .gallery { grid-template-columns: 1fr 1fr; gap: 8px; } .gal-item.wide { grid-column: span 2; } }


/* ===== gate-panels ===== */
/* ============================================================
   GATE-PANELS – Vollbild-Splitscreen der drei Gates (P3-Muster),
   als ZWEITE Sektion der Startseite (nach dem Video-Header).
   Drei helle Bild-Panels mit Gate-Akzentfarben; Hover weitet
   das aktive Panel. Mobile: vertikal gestapelt.
   ============================================================ */

.gatesplit { min-height: 100vh; display: flex; flex-direction: column; background: var(--paper); }
.gatesplit-head {
  max-width: var(--maxw); margin: 0 auto; padding: 64px var(--pad-x) 30px; width: 100%;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.gatesplit-head h2 { font-size: clamp(30px, 4vw, 56px); }
.gatesplit-head p { color: var(--muted); max-width: 460px; }

.gatesplit-panels { flex: 1; display: flex; min-height: 68vh; }
.gpanel {
  position: relative; flex: 1; overflow: hidden; display: flex; flex-direction: column;
  justify-content: flex-end; cursor: pointer; border-right: 1px solid #fff;
  transition: flex .5s var(--ease-out);
}
.gpanel:last-child { border-right: none; }
.gatesplit-panels:hover .gpanel { flex: .82; }
.gatesplit-panels .gpanel:hover { flex: 1.5; }
.gpanel img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.gpanel:hover img { transform: scale(1.05); }
.gpanel::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,28,51,.06) 30%, rgba(7,28,51,.68) 92%);
}
.gpanel::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: var(--gc); z-index: 3;
}
.gpanel .in { position: relative; z-index: 2; padding: 30px 30px 34px; color: #fff; }
.gpanel .code {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .24em; font-weight: 700;
  background: var(--gc); color: #fff; padding: 6px 10px; text-transform: uppercase; margin-bottom: 14px;
}
.gpanel h3 { font-size: clamp(26px, 2.6vw, 42px); }
.gpanel p { color: rgba(255,255,255,.88); max-width: 440px; margin-top: 8px; font-size: 15.5px; }
.gpanel .glinks { display: flex; flex-direction: column; gap: 7px; margin-top: 16px; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .5s var(--ease-out), opacity .4s .1s; }
.gpanel:hover .glinks, .gpanel:focus-within .glinks { max-height: 180px; opacity: 1; }
.gpanel .glinks a { display: inline-flex; align-items: center; gap: 9px; color: #fff; font-size: 14.5px; font-weight: 500; width: fit-content; }
.gpanel .glinks a::before { content: ""; width: 13px; height: 7px; background: #fff; clip-path: var(--chev); }
.gpanel .glinks a:hover { text-decoration: underline; }
.gpanel .go {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 18px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em; font-weight: 700;
  text-transform: uppercase; color: #fff;
}
.gpanel .go::after { content: ""; width: 20px; height: 11px; background: var(--gc); clip-path: var(--chev); transition: transform var(--dur-fast); }
.gpanel:hover .go::after { transform: translateX(6px); }
.gpanel .credit { position: absolute; right: 12px; top: 14px; z-index: 2; font-family: var(--font-mono); font-size: 9px; color: rgba(255,255,255,.65); letter-spacing: .08em; }

@media (max-width: 980px) {
  .gatesplit { min-height: 0; }
  .gatesplit-panels { flex-direction: column; min-height: 0; }
  .gpanel { min-height: 300px; border-right: none; border-bottom: 1px solid #fff; }
  .gatesplit-panels:hover .gpanel, .gatesplit-panels .gpanel:hover { flex: 1; }
  .gpanel .glinks { max-height: none; opacity: 1; }
}


/* ===== hero-video ===== */
/* ============================================================
   HERO-VIDEO – Vollbild-Videoheader (P1-Muster), hell überblendet.
   Unten im Hero: Command-Bar (prominent) + Countdown kompakt
   rechts daneben (P5-Nebeneinander). Auf Mobile stapelnd.
   ============================================================ */

.hero {
  position: relative; min-height: 92vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.hero video, .hero .hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
/* The legacy 1920 × 1080 film contains 130px letterbox bars above and
   below its 820px picture. Fit that picture to the hero, including tall
   windows. Full-frame recap films keep the regular cover sizing above. */
.hero video[src*="/elevator-1080.mp4"] {
  top: calc(-100% * 130 / 820); bottom: auto;
  height: calc(100% * 1080 / 820);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(255,255,255,.20) 0%, rgba(255,255,255,0) 32%, rgba(246,251,255,.88) 80%, var(--paper) 97%);
}
.hero-in {
  position: relative; z-index: 2; max-width: var(--maxw);
  /* Reserve space for the countdown and BDLI badge even in short windows. */
  margin: 0 auto; padding: 128px var(--pad-x) 150px; width: 100%;
}
.hero-date {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .26em;
  color: var(--ink); background: rgba(255,255,255,.88); backdrop-filter: blur(8px);
  border: 1px solid var(--ink); padding: 10px 16px; margin-bottom: 22px; text-transform: uppercase;
}
.hero-date .dot { width: 8px; height: 8px; background: var(--blue); animation: tickerblink 1.4s steps(2) infinite; }
.hero h1 { font-size: clamp(38px, 6vw, 92px); max-width: 1150px; margin-bottom: 30px; text-wrap: balance; }
.hero h1 em { font-style: normal; color: var(--blue); }
/* Oben rechts: kompakter Countdown + Film-Hinweis, unaufdringlich */
.hero-topright {
  position: absolute; right: var(--pad-x); top: 20px; z-index: 2;
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
}
.hero-note {
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .18em;
  color: var(--muted); background: rgba(255,255,255,.75); padding: 5px 9px; text-transform: uppercase;
}
.count-mini {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.85); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-top: 3px solid var(--blue); padding: 7px 12px;
}
.count-mini .cm-label {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: .22em;
  color: var(--muted); text-transform: uppercase;
}
.count-mini .cm-value {
  font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--ink);
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.hero-brand {
  display: flex; align-items: center; justify-content: flex-end; gap: 8px;
  max-width: 220px; padding: 6px 9px;
  color: #fff; background: rgba(4,18,30,.44); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.20);
}
.hero-brand span {
  font-family: var(--font-mono); font-size: 8.5px; letter-spacing: .18em;
  line-height: 1; text-transform: uppercase; color: rgba(255,255,255,.78);
  white-space: nowrap;
}
.hero-brand img {
  display: block; width: 64px; height: auto; flex: 0 0 auto; opacity: .94;
}

@media (min-width: 721px) {
  .hero-date { max-width: calc(100% - 320px); } /* Platz für den Mini-Countdown */
}
@media (max-width: 720px) {
  .hero { min-height: 84vh; }
  .hero-in { padding-top: 112px; padding-bottom: 88px; } /* Brand oben, Dock unten */
  .hero h1 { font-size: 37px; }
  .hero-note { display: none; }
  .hero-topright { right: 12px; top: 12px; }
  .count-mini { padding: 6px 10px; }
  .count-mini .cm-label { display: none; }
  .count-mini .cm-value::after { content: " · ILA 2028"; font-family: var(--font-mono); font-size: 9px; color: var(--muted); letter-spacing: .1em; }
  .hero-brand { max-width: calc(100vw - 24px); gap: 6px; padding: 5px 8px; }
  .hero-brand span { font-size: 7.5px; letter-spacing: .14em; }
  .hero-brand img { width: 54px; }
  .hero .video-toggle { right: 48px; }
}


/* ===== historie ===== */
/* ============================================================
   HISTORIE – Chronik 1909–2026 + Vollbild-Zeitreise.
   On-Page: heller Jahresstrahl (Rail füllt sich beim Scrollen,
   sticky Jahreszahlen, Epochen-Kapitel mit Outline-Range).
   Overlay: Kino-Modus (dunkel wie Lightbox), Scroll-Snap-Slides,
   Ken-Burns, Riesenjahr, Epochen-Tabs, segmentierter Fortschritt.
   ============================================================ */

.hst { --tx: #2e4459; }
/* Anker-Sprünge landen unter Topbar + sticky Epochen-Nav */
.hst-entry, .hst-epoch, .hst-body { scroll-margin-top: calc(var(--topbar-h) + 66px); }
.hst .chev {
  display: inline-block; width: 12px; height: 12px; flex: none;
  background: currentColor; clip-path: var(--chev);
}

/* ---------- Intro-Band ---------- */
.hst-hero { position: relative; min-height: 62vh; display: flex; align-items: flex-end; overflow: hidden; }
.hst-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hst-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4,18,31,.14) 0%, rgba(4,18,31,.42) 55%, rgba(4,18,31,.78) 100%);
}
.hst-hero-in {
  position: relative; z-index: 1; width: 100%; max-width: var(--maxw);
  margin: 0 auto; padding: 90px var(--pad-x) 64px; color: #fff;
}
.hst-hero-label {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .24em;
  text-transform: uppercase; color: #7CD0F5; margin-bottom: 14px;
}
.hst-hero-in h2 { font-size: clamp(34px, 4.8vw, 66px); color: #fff; margin-bottom: 14px; text-wrap: balance; }
.hst-hero-in p { font-size: clamp(16px, 1.6vw, 19px); color: rgba(255,255,255,.85); max-width: 620px; }
.hst-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hst-hero-cta .btn .chev { margin-right: 10px; }
.hst-hero-cta .btn.ghost.inv { border-color: rgba(255,255,255,.55); color: #fff; background: transparent; }
.hst-hero-cta .btn.ghost.inv:hover { background: #fff; color: var(--ink); border-color: #fff; }
.hst-hero-credit {
  position: absolute; right: 12px; bottom: 10px; z-index: 1;
  font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,.6);
}

/* ---------- Sticky Epochen-Navigation ---------- */
.hst-nav {
  position: sticky; top: var(--topbar-h); z-index: var(--z-sticky);
  background: rgba(255,255,255,.94); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.hst-nav-in {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x);
  display: flex; justify-content: space-between; align-items: stretch; gap: 16px;
}
.hst-nav-eras { display: flex; min-width: 0; overflow-x: auto; scrollbar-width: none; }
.hst-nav-eras::-webkit-scrollbar { display: none; }
.hst-nav-eras a {
  display: flex; flex-direction: column; justify-content: center; gap: 1px;
  padding: 9px 18px 8px; white-space: nowrap; color: var(--ink);
  transition: color var(--dur-fast), box-shadow var(--dur-fast);
}
.hst-nav-eras a b { font-size: 13.5px; letter-spacing: .02em; }
.hst-nav-eras a i { font-family: var(--font-mono); font-style: normal; font-size: 10px; color: var(--muted); letter-spacing: .08em; }
.hst-nav-eras a:hover { color: var(--blue); }
.hst-nav-eras a.act { color: var(--blue); box-shadow: inset 0 -3px 0 var(--blue); }
.hst-nav-start {
  display: flex; align-items: center; gap: 10px; flex: none; border: none; cursor: pointer;
  background: var(--ink); color: #fff; font-weight: 700; font-size: 13px;
  letter-spacing: .06em; text-transform: uppercase; padding: 0 22px; margin: 8px 0;
  transition: background var(--dur-fast);
}
.hst-nav-start:hover { background: var(--blue); }

/* ---------- Chronik: Jahresstrahl ---------- */
.hst-body {
  max-width: var(--maxw); margin: 0 auto; position: relative;
  padding: 34px var(--pad-x) 100px calc(var(--pad-x) + 40px);
}
.hst-rail {
  position: absolute; top: 40px; bottom: 90px; left: calc(var(--pad-x) + 11px);
  width: 2px; background: var(--line);
}
.hst-rail i {
  display: block; width: 100%; height: 0;
  background: linear-gradient(180deg, var(--blue), var(--deep));
}

.hst-epoch-head {
  position: relative; margin: 74px 0 46px; padding: 18px 0 22px;
  border-bottom: 1px solid var(--line); overflow: hidden; min-height: 96px;
}
.hst-epoch:first-of-type .hst-epoch-head { margin-top: 6px; }
.hst-epoch-bigrange {
  position: absolute; right: -4px; bottom: -14px; z-index: 0; pointer-events: none;
  font-family: var(--font-head); font-weight: 700; line-height: 1; white-space: nowrap;
  font-size: clamp(64px, 11vw, 150px); letter-spacing: -.02em;
  color: transparent; -webkit-text-stroke: 1px var(--line);
}
@supports not (-webkit-text-stroke: 1px black) {
  .hst-epoch-bigrange { color: var(--sky); }
}
.hst-epoch-range {
  position: relative; z-index: 1; display: inline-block;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  background: var(--blue); color: #fff; padding: 5px 12px; margin-bottom: 10px;
}
.hst-epoch-head h3 { position: relative; z-index: 1; font-size: clamp(30px, 4vw, 52px); }

.hst-entry {
  position: relative; display: grid; grid-template-columns: 148px minmax(0, 1fr);
  gap: 36px; margin-bottom: 52px;
}
.hst-entry::before {
  content: ""; position: absolute; left: -37px; top: 16px; width: 16px; height: 16px;
  background: var(--line); clip-path: var(--chev);
  transition: background var(--dur-med), transform var(--dur-med);
}
.hst-entry.cur::before { background: var(--blue); transform: scale(1.25); }
.hst-y { align-self: start; position: sticky; top: calc(var(--topbar-h) + 74px); }
.hst-y span {
  font-family: var(--font-head); font-size: 46px; font-weight: 700; line-height: 1;
  font-variant-numeric: tabular-nums; letter-spacing: -.02em; color: var(--ink);
  transition: color var(--dur-med);
}
.hst-entry.cur .hst-y span { color: var(--blue); }
.hst-y-sr {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}

.hst-card {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(230px, 36%); gap: 28px;
  background: var(--paper); border: 1px solid var(--line); border-top: 3px solid var(--line);
  padding: 26px 28px 28px;
  transition: border-color var(--dur-med), box-shadow var(--dur-med);
}
.hst-entry.nomedia .hst-card { grid-template-columns: minmax(0, 1fr); }
.hst-card:hover, .hst-entry.cur .hst-card { border-top-color: var(--blue); box-shadow: var(--shadow-card); }
.hst-card-tx h4 { font-size: 21px; line-height: 1.3; }
.hst-meta {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--blue); margin-top: 7px;
}
.hst-stats {
  font-family: var(--font-mono); font-size: 11.5px; color: var(--muted); line-height: 1.6;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 8px 0; margin: 13px 0 14px;
}
.hst-card-tx p { font-size: 15.5px; line-height: 1.72; color: var(--tx); margin-top: 12px; }
.hst-meta + .hst-card-tx p, .hst-card-tx h4 + p { margin-top: 14px; }
.hst-card-media { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.hst-card-media img { width: 100%; height: auto; display: block; }
.hst-card-media figcaption { font-family: var(--font-mono); font-size: 10px; color: var(--muted); padding-top: 5px; }

/* Sprung aus der Zeitreise: Karte kurz hervorheben */
@keyframes hst-flash {
  0%, 55% { box-shadow: 0 0 0 3px var(--blue), var(--shadow-card); }
  100% { box-shadow: none; }
}
.hst-entry.hl .hst-card { animation: hst-flash 1.8s var(--ease-out); border-top-color: var(--blue); }

/* ---------- Vollbild-Zeitreise ---------- */
.hst-ov { position: fixed; inset: 0; z-index: calc(var(--z-overlay) + 10); background: var(--night); }
.hst-ov[hidden] { display: none; }
@keyframes hst-ov-in { from { opacity: 0; } }
.hst-ov { animation: hst-ov-in .35s ease-out; }

.hst-ov-scroll {
  height: 100%; overflow-y: auto; overscroll-behavior: contain;
  scroll-snap-type: y mandatory; scroll-behavior: smooth; outline: none;
}
.hst-slide {
  position: relative; height: 100%; overflow: hidden;
  display: flex; align-items: flex-end;
  scroll-snap-align: start; scroll-snap-stop: always;
}
.hst-slide > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.07); transition: transform 5.5s var(--ease-out);
}
.hst-slide.act > img { transform: scale(1); }
.hst-slide-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4,18,31,.18) 0%, rgba(4,18,31,.38) 52%, rgba(4,18,31,.88) 100%);
}
.hst-slide-yr {
  position: absolute; right: 3vw; top: 13vh; z-index: 1; pointer-events: none;
  font-family: var(--font-head); font-weight: 700; line-height: 1;
  font-size: clamp(96px, 19vw, 270px); letter-spacing: -.03em;
  color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,.2);
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s var(--ease-out) .12s, transform .7s var(--ease-out) .12s;
}
@supports not (-webkit-text-stroke: 1px black) {
  .hst-slide-yr { color: rgba(255,255,255,.08); }
}
.hst-slide.act .hst-slide-yr { opacity: 1; transform: none; }

.hst-slide-c {
  position: relative; z-index: 2; padding: 0 5vw 11vh; max-width: 780px; color: #fff;
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.hst-slide.act .hst-slide-c { opacity: 1; transform: none; }
.hst-slide-kicker {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: .26em; color: #7CD0F5;
  margin-bottom: 14px; text-transform: uppercase;
}
.hst-slide-kicker .chev { color: var(--blue); }
.hst-slide-c h3 { font-size: clamp(30px, 4.6vw, 60px); color: #fff; margin-bottom: 14px; text-wrap: balance; }
.hst-slide-c h3.big { font-size: clamp(36px, 6vw, 84px); }
.hst-slide-c p { font-size: clamp(15.5px, 1.5vw, 18.5px); line-height: 1.6; color: rgba(255,255,255,.88); max-width: 640px; }
.hst-slide-more {
  display: inline-block; margin-top: 18px; padding: 0 0 3px; border: none; cursor: pointer;
  background: none; color: #7CD0F5; font-size: 14.5px; font-weight: 700;
  border-bottom: 1px solid rgba(124,208,245,.45);
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.hst-slide-more:hover { color: #fff; border-color: #fff; }
.hst-slide-credit {
  position: absolute; right: 12px; bottom: 12px; z-index: 2;
  font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,.55);
}
.hst-slide-scroll {
  display: flex; align-items: center; gap: 10px; margin-top: 30px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.6);
}
.hst-slide-scroll i {
  width: 14px; height: 14px; border-right: 2px solid rgba(255,255,255,.6);
  border-bottom: 2px solid rgba(255,255,255,.6); transform: rotate(45deg);
  animation: hst-bounce 2s infinite;
}
@keyframes hst-bounce {
  0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translate(0, 0); }
  40% { transform: rotate(45deg) translate(4px, 4px); }
  60% { transform: rotate(45deg) translate(2px, 2px); }
}

/* Overlay-Topbar */
.hst-ov-top {
  position: absolute; top: 0; left: 0; right: 0; z-index: 10; height: 54px;
  display: flex; align-items: stretch; justify-content: space-between; gap: 12px;
  padding: 0 16px; background: rgba(4,18,31,.72); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.hst-ov-brand {
  align-self: center; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.7); white-space: nowrap;
}
.hst-ov-eras { display: flex; min-width: 0; overflow-x: auto; scrollbar-width: none; }
.hst-ov-eras::-webkit-scrollbar { display: none; }
.hst-ov-eras button {
  border: none; background: none; cursor: pointer; white-space: nowrap;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.55); padding: 0 15px;
  transition: color var(--dur-fast), box-shadow var(--dur-fast);
}
.hst-ov-eras button:hover { color: #fff; }
.hst-ov-eras button.act { color: #fff; box-shadow: inset 0 -2px 0 var(--blue); }
.hst-ov-right { display: flex; align-items: center; gap: 14px; flex: none; }
.hst-ov-count { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,.6); font-variant-numeric: tabular-nums; }
.hst-ov-close {
  display: flex; align-items: center; gap: 8px; cursor: pointer;
  background: none; border: 1px solid rgba(255,255,255,.3); color: #fff;
  font-size: 12.5px; font-weight: 700; padding: 7px 13px;
  transition: background var(--dur-fast), border-color var(--dur-fast);
}
.hst-ov-close:hover { background: var(--blue); border-color: var(--blue); }

/* Segmentierter Fortschritt (1 Segment = 1 Epoche) */
.hst-ov-progress {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 10;
  display: flex; gap: 3px; height: 4px; background: rgba(255,255,255,.06);
}
.hst-ov-progress span { flex: var(--seg, 1); background: rgba(255,255,255,.14); }
.hst-ov-progress span i { display: block; height: 100%; width: 0; background: var(--blue); transition: width .35s var(--ease-out); }

/* Jahres-Dots rechts */
.hst-ov-dots {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  z-index: 10; display: none; flex-direction: column; gap: 6px;
}
.hst-ov-dots button {
  position: relative; width: 8px; height: 8px; border: none; cursor: pointer; padding: 0;
  background: rgba(255,255,255,.3); transition: background var(--dur-fast), transform var(--dur-fast);
}
.hst-ov-dots button:hover { background: rgba(255,255,255,.75); }
.hst-ov-dots button.act { background: var(--blue); transform: scale(1.5); }
.hst-ov-dots button::after {
  content: attr(data-tip); position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-mono); font-size: 10.5px; color: #fff;
  background: rgba(4,18,31,.9); padding: 3px 8px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity var(--dur-fast);
}
.hst-ov-dots button:hover::after { opacity: 1; }
@media (min-width: 1000px) and (min-height: 660px) {
  .hst-ov-dots { display: flex; }
}

/* Fokus-Stile (dunkler Kontext) */
.hst-ov button:focus-visible, .hst-ov-scroll:focus-visible {
  outline: 2px solid var(--blue); outline-offset: 2px;
}

/* ---------- Mobile / Zwischenbreiten ---------- */
@media (max-width: 980px) {
  .hst-entry { display: block; }
  .hst-entry::before { top: 8px; }
  .hst-y { position: static; margin-bottom: 10px; }
  .hst-y span { font-size: 30px; }
  .hst-card { grid-template-columns: minmax(0, 1fr); padding: 20px; }
  .hst-card-media { order: -1; }
}
@media (max-width: 900px) {
  .hst-nav-start { display: none; }
}
@media (max-width: 720px) {
  .hst-hero { min-height: 66vh; }
  .hst-hero-in { padding-top: 70px; padding-bottom: 46px; }
  .hst-body { padding-left: calc(var(--pad-x) + 30px); padding-bottom: 70px; }
  .hst-rail { left: calc(var(--pad-x) + 6px); }
  .hst-entry { margin-bottom: 38px; }
  .hst-entry::before { left: -32px; width: 14px; height: 14px; }
  .hst-epoch-head { margin: 54px 0 34px; min-height: 78px; }
  .hst-ov-brand { display: none; }
  .hst-ov-count { display: none; } /* Progress unten zeigt die Position */
  .hst-slide-c { padding-bottom: 13vh; }
  .hst-slide-yr { top: 70px; right: 4vw; font-size: clamp(72px, 21vw, 120px); -webkit-text-stroke-width: 1.5px; }
  .hst-slide-credit { bottom: 8px; }
  .hst-ov-close span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hst-ov { animation: none; }
  .hst-ov-scroll { scroll-behavior: auto; }
  .hst-slide > img { transform: none; transition: none; }
  .hst-slide-c, .hst-slide-yr { opacity: 1 !important; transform: none !important; transition: none; }
  .hst-slide-scroll i { animation: none; }
  .hst-entry.hl .hst-card { animation: none; }
}


/* ===== hubs ===== */
/* ============================================================
   HUBS – Anreise-Kacheln (Bahnhöfe, Shuttle-Linien, Parkplätze,
   Ticket-Arten). Badges für Linien/Preise, Chips für Key/Value.
   ============================================================ */

.hubs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.hubs-2 { grid-template-columns: repeat(2, 1fr); }
.hubs-4 { grid-template-columns: repeat(4, 1fr); }

.hub {
  display: flex; flex-direction: column; gap: 10px;
  background: #fff; border: 1px solid var(--line, #d5dde4);
  padding: 20px;
  transition: border-color .25s var(--ease-out), transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.hub:hover {
  border-color: var(--acc, var(--blue));
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(15, 43, 71, .08);
}
.hub-hl {
  background: var(--sky, #eef6fb);
  border-color: var(--acc, var(--blue));
}

.hub-top { display: flex; align-items: center; gap: 6px; min-height: 24px; }
.hub-badge {
  display: inline-block; padding: 3px 8px;
  background: var(--bc, var(--ink));
  color: #fff; font-family: var(--font-mono);
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
}
.hub-days { margin-left: auto; font-size: 11px; letter-spacing: .08em; color: var(--steel, #5e7488); }

.hub h3 { font-size: 19px; line-height: 1.25; margin: 0; }
.hub p { font-size: 14px; line-height: 1.5; color: var(--steel, #5e7488); margin: 0; }

.hub-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.hub-chip {
  display: inline-flex; align-items: baseline; gap: 5px;
  padding: 5px 9px; background: var(--sky, #eef6fb);
  font-size: 12px; color: var(--ink);
}
.hub-hl .hub-chip { background: #fff; }
.hub-chip b { font-family: var(--font-mono); font-size: 11px; letter-spacing: .05em; }

.hub-note { font-size: 12px; color: var(--steel, #5e7488); margin: 0; }
.hub-link {
  margin-top: auto; align-self: flex-start;
  font-weight: 700; font-size: 14px; color: var(--blue); text-decoration: none;
}
.hub-link:hover { text-decoration: underline; }

@media (max-width: 1000px) {
  .hubs, .hubs-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hubs, .hubs-2, .hubs-4 { grid-template-columns: 1fr; }
}


/* ===== logo-band ===== */
/* ============================================================
   LOGO-BAND – laufendes Aussteller-Logoband (Social Proof).
   Übernahme der bewährten Mechanik der alten Startseite
   (zwei gegenläufige Reihen, CSS-only, Hover-Pause), angepasst
   an die kantige 2028-CI (Border statt Radius, tokens-Farben).
   Jede Reihe rendert ihren Logosatz doppelt; -50 % Translation
   entspricht exakt einer Satzbreite = nahtloser Loop.
   ============================================================ */

.logo-band { overflow: hidden; }
.logo-band .lb-track {
  display: flex; flex-direction: column; gap: 20px; margin-top: 38px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.logo-band .lb-row {
  display: flex; flex-wrap: nowrap; gap: 16px;
  width: max-content; will-change: transform;
}
.logo-band .lb-row-a { animation: lb-left 90s linear infinite; }
.logo-band .lb-row-b { animation: lb-right 100s linear infinite; margin-left: -96px; }
@keyframes lb-left  { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-50%, 0, 0); } }
@keyframes lb-right { 0% { transform: translate3d(-50%, 0, 0); } 100% { transform: translate3d(0, 0, 0); } }
.logo-band .lb-track:hover .lb-row { animation-play-state: paused; }

.lb-logo {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  width: 192px; height: 96px; padding: 18px 22px;
  background: #fff; border: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.lb-logo:hover { box-shadow: 0 6px 20px rgba(12, 25, 51, .08); }
.lb-logo img {
  max-width: 100%; max-height: 100%; object-fit: contain; display: block;
  filter: grayscale(8%); transition: filter .25s ease;
}
.lb-logo:hover img { filter: grayscale(0%); }

.logo-band .lb-ctas {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 40px;
}

@media (max-width: 900px) {
  .logo-band .lb-track { margin-top: 28px; }
  .logo-band .lb-row { gap: 12px; }
  .lb-logo { width: 148px; height: 76px; padding: 14px 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .logo-band .lb-row-a, .logo-band .lb-row-b { animation-duration: 240s; }
}


/* ===== matrix-table ===== */
/* ============================================================
   MATRIX-TABLE – Matrix-/Vergleichstabellen (Teilnahmearten,
   Ticket-Rückblick). Scrollt horizontal im eigenen Container.
   ============================================================ */

.tmatrix { border: 1px solid var(--line); overflow-x: auto; background: #fff; }
.tmatrix table { width: 100%; border-collapse: collapse; min-width: 720px; }
.tmatrix th, .tmatrix td { border-bottom: 1px solid var(--line); padding: 14px 16px; text-align: center; font-size: 14px; }
.tmatrix thead th { background: var(--gcol, var(--blue)); color: #fff; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; font-weight: 400; }
.tmatrix thead th small { display: block; opacity: .8; margin-top: 4px; font-size: 9.5px; }
.tmatrix td:first-child, .tmatrix th:first-child { text-align: left; }
.tmatrix td:first-child { font-weight: 700; font-size: 14.5px; }
.tmatrix td:first-child small { display: block; color: var(--muted); font-weight: 400; font-size: 12px; margin-top: 3px; }
.tmatrix tbody tr:hover { background: var(--sky-2); }
.tmatrix .ok { color: var(--blue); font-weight: 700; }
.tmatrix .no { color: #C9D6DF; }
.tmatrix tfoot td { font-size: 12.5px; color: var(--muted); text-align: left; }
.badge-soldout { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .1em; color: #C0392B; border: 1px solid currentColor; padding: 2px 6px; text-transform: uppercase; }
.badge-free { font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; color: #008847; font-weight: 700; }
.badge-info { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .1em; color: var(--deep); border: 1px solid currentColor; padding: 2px 6px; text-transform: uppercase; }


/* ===== mobilemenu ===== */
/* ============================================================
   MOBILEMENU – Vollbild-Menü: ERST die Links des aktuellen
   Gates/Bereichs, DANN kompakter Gate-Wechsel (R3-Vorgabe).
   ============================================================ */

.mobilemenu {
  position: fixed; inset: 0; z-index: var(--z-menu); background: #fff;
  display: none; flex-direction: column; padding: 78px 24px 32px; overflow-y: auto;
}
.mobilemenu.open { display: flex; }
.mm-close { position: fixed; top: 12px; right: 16px; background: #fff; border: 1px solid var(--ink); color: var(--ink); font-size: 22px; padding: 8px 14px; cursor: pointer; z-index: calc(var(--z-menu) + 1); display: none; }
.mobilemenu.open ~ .mm-close, .mobilemenu.open .mm-close { display: block; }
.mm-head { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .24em; color: var(--gcol, var(--blue)); text-transform: uppercase; margin-bottom: 12px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.mm-head::before { content: ""; width: 18px; height: 9px; background: currentColor; clip-path: var(--chev); }
.mm-sections a { display: block; padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 17px; font-weight: 500; }
.mm-sections a:last-child { border-bottom: none; }
.mm-sections a.hl { color: var(--gcol, var(--blue)); font-weight: 700; }
.mm-gates { margin-top: 30px; border-top: 2px solid var(--ink); padding-top: 16px; }
.mm-gates h5 { font-family: var(--font-mono); font-size: 10px; letter-spacing: .22em; color: var(--muted); text-transform: uppercase; margin-bottom: 8px; }
.mm-gates a { display: flex; align-items: center; gap: 10px; padding: 9px 0; font-size: 14.5px; color: var(--ink); }
.mm-gates a i { width: 10px; height: 10px; flex: none; background: var(--gc, var(--blue)); }
.mm-gates a b { font-weight: 700; margin-right: 6px; }
.mm-gates a.mm-plain { color: var(--muted); }
.mm-gates a.mm-plain i { visibility: hidden; }
.mm-service { margin-top: 24px; border-top: 1px solid var(--line); padding-top: 16px; }
.mm-service h5 { font-family: var(--font-mono); font-size: 10px; letter-spacing: .22em; color: var(--muted); text-transform: uppercase; margin-bottom: 8px; }
.mm-service a { display: block; padding: 9px 0; font-size: 14.5px; color: var(--ink); }
.mm-lang { margin-top: 22px; display: flex; gap: 10px; }
.mm-lang a { flex: 1; text-align: center; border: 1px solid var(--line); padding: 12px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; color: var(--muted); text-transform: uppercase; }
.mm-lang a.cur { border-color: var(--blue); color: var(--ink); font-weight: 700; background: var(--sky-2); }


/* ===== newsletter ===== */
/* ============================================================
   NEWSLETTER – dunkles CTA-Band (Brevo-Anbindung später, im
   Prototyp Demo-Submit mit Bestätigungstext).
   Variante .nl-gate mit Gate-Akzent.
   ============================================================ */

.nl {
  background: var(--night); color: #fff; padding: 46px;
  display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center;
  position: relative; overflow: hidden;
}
.nl > * { min-width: 0; }
.nl::after {
  content: ""; position: absolute; right: -40px; top: -40px; width: 260px; height: 260px;
  background: repeating-linear-gradient(115deg, rgba(0,143,211,.5) 0, rgba(0,143,211,.5) 4px, transparent 4px, transparent 30px);
  pointer-events: none;
}
.nl .mono { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .28em; color: #58CFFF; text-transform: uppercase; font-weight: 700; margin-bottom: 10px; display: block; }
.nl h2 { font-size: clamp(24px, 2.6vw, 34px); }
.nl p { color: rgba(255,255,255,.72); margin-top: 8px; max-width: 560px; font-size: 15px; }
.nl form { display: grid; gap: 13px; position: relative; z-index: 2; }
.nl .nl-row { display: flex; gap: 10px; flex-wrap: wrap; }
.nl input[type="email"] {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.4); color: #fff;
  padding: 13px 16px; font-family: inherit; font-size: 15px; min-width: 280px; flex: 1;
}
.nl input[type="email"]::placeholder { color: rgba(255,255,255,.6); }
.nl input[type="email"]:focus { outline: none; border-color: var(--blue); }

/* Zielgruppen-Chips ("Ich bin: Aussteller / Fachbesucher / Privatbesucher") */
.nl .nl-who { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.nl .nl-who-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-right: 4px; }
.nl .nl-chip { position: relative; }
.nl .nl-chip input { position: absolute; opacity: 0; pointer-events: none; }
.nl .nl-chip span {
  display: inline-block; padding: 8px 14px; border: 1px solid rgba(255,255,255,.38);
  color: rgba(255,255,255,.85); font-size: 13px; font-weight: 600; cursor: pointer; user-select: none;
}
.nl .nl-chip span:hover { border-color: #58CFFF; color: #fff; }
.nl .nl-chip input:checked + span { background: var(--blue); border-color: var(--blue); color: #fff; }
.nl .nl-chip input:focus-visible + span { outline: 2px solid #58CFFF; outline-offset: 2px; }

/* Einwilligung (wortgleich Live-Seite), Pflicht-Checkbox */
.nl .nl-consent { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; cursor: pointer; max-width: 720px; }
.nl .nl-consent input { margin-top: 3px; accent-color: var(--blue); width: 15px; height: 15px; }
.nl .nl-consent span { font-size: 11px; line-height: 1.55; color: rgba(255,255,255,.55); }
.nl .nl-consent a { color: rgba(255,255,255,.8); text-decoration: underline; }
.nl .nl-consent a:hover { color: #fff; }
.nl .done {
  display: none; align-items: center; gap: 12px; font-size: 15px; color: #fff;
  border: 1px solid var(--blue); padding: 13px 18px; background: rgba(0,143,211,.18);
}
.nl .done::before { content: ""; width: 16px; height: 9px; background: var(--blue); clip-path: var(--chev); }
.nl.sent form { display: none; }
.nl.sent .done { display: flex; }
.nl .privacy { grid-column: 1 / -1; font-size: 11.5px; color: rgba(255,255,255,.45); position: relative; z-index: 2; }
.nl .privacy a { color: rgba(255,255,255,.65); text-decoration: underline; }

@media (max-width: 900px) {
  .nl { grid-template-columns: 1fr; padding: 30px 26px; }
  .nl input { min-width: 0; }
}

/* Submit-Rueckmeldung + Honeypot (Backend-Anbindung via Drupal/Brevo) */
.nl-note { min-height: 1em; margin-top: 10px; font-size: 14px; font-weight: 600; }
.nl-note.ok { color: #0a6b39; }
.nl-note.err { color: #b00020; }
.nl-hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* ============================================================
   VIP-Pioneer-Pass-Interessenmodal (global, data-vip-modal)
   ============================================================ */
.vip-modal {
  position: fixed; inset: 0; z-index: 320;
  display: none; align-items: center; justify-content: center;
  padding: 20px; background: rgba(10, 26, 42, .72);
}
.vip-modal.open { display: flex; }
.vip-box {
  position: relative; width: 100%; max-width: 620px;
  max-height: calc(100vh - 40px); overflow: auto;
  background: #fff; padding: 30px 30px 26px;
  border-top: 4px solid var(--blue);
}
.vip-close {
  position: absolute; top: 10px; right: 12px;
  background: none; border: 0; font-size: 26px; line-height: 1;
  color: var(--steel, #5e7488); cursor: pointer;
}
.vip-close:hover { color: var(--ink); }
.vip-kicker { display: block; font-size: 12px; letter-spacing: .1em; color: var(--blue); margin-bottom: 8px; }
.vip-box h3 { font-size: 24px; margin: 0 0 10px; }
.vip-lead { font-size: 14px; line-height: 1.55; color: var(--steel, #5e7488); margin: 0 0 18px; }
.vip-box .nl-row { display: flex; gap: 10px; }
.vip-box .nl-row input[type="email"] {
  flex: 1; min-width: 0; padding: 12px 14px;
  border: 1px solid var(--line, #d5dde4); font-size: 15px;
}
.vip-box .nl-consent {
  display: flex; gap: 10px; align-items: flex-start;
  margin-top: 14px; font-size: 11px; line-height: 1.5;
  color: var(--steel, #5e7488);
}
.vip-box .nl-consent span { max-height: 130px; overflow: auto; padding-right: 6px; }
.vip-box .nl-note { margin-top: 12px; font-size: 13px; }
@media (max-width: 560px) { .vip-box .nl-row { flex-direction: column; } }


/* ===== pagehead ===== */
/* ============================================================
   PAGEHEAD – Seitenkopf für Unterseiten (P1/P3-Muster):
   Breadcrumb + H1 + Intro + Meta-Chips + Medienfeld rechts.
   Darunter die SECTIONBAR (Sektions-Leiste), die beim Scrollen
   sticky wird – als GESCHWISTER des Kopfes (Gotcha!).
   Gate-Färbung über --gcol auf <body> bzw. Sektion.
   ============================================================ */

.pagehead {
  padding: 56px 0 0; position: relative; overflow: visible;
  background: linear-gradient(180deg, var(--sky), var(--paper));
}
.pagehead .ph-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; padding-bottom: 44px; }
.pagehead .ph-grid > * { min-width: 0; }
.pagehead .crumb { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .2em; color: var(--muted); text-transform: uppercase; margin-bottom: 16px; }
.pagehead .crumb b { color: var(--gcol, var(--blue)); font-weight: 700; }
.pagehead .crumb a:hover { color: var(--ink); }
.pagehead h1 { font-size: clamp(30px, 3.6vw, 54px); }
.pagehead .sub { color: var(--muted); max-width: 620px; margin-top: 16px; font-size: 18px; }
.pagehead .meta { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.pagehead .meta span {
  font-family: var(--font-mono); font-size: 11px; color: var(--ink); letter-spacing: .1em;
  text-transform: uppercase; border: 1px solid var(--ink); background: #fff; padding: 7px 11px;
}
.pagehead .meta span.hl { background: var(--gcol, var(--blue)); color: #fff; border-color: var(--gcol, var(--blue)); }
.pagehead .ph-media { position: relative; }
.pagehead .ph-media img, .pagehead .ph-media video { width: 100%; height: 380px; object-fit: cover; display: block; }
.pagehead .ph-media::before {
  content: ""; position: absolute; left: -16px; top: -16px; right: 40%; bottom: 40%;
  background: repeating-linear-gradient(115deg, var(--gcol, var(--blue)) 0, var(--gcol, var(--blue)) 4px, transparent 4px, transparent 26px);
  opacity: .35; z-index: 0;
}
.pagehead .ph-media img { position: relative; z-index: 1; }
.pagehead .ph-media .cap {
  position: absolute; left: 0; bottom: 0; z-index: 2; background: var(--gcol, var(--blue)); color: #fff;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em; padding: 7px 11px; text-transform: uppercase;
}
.pagehead .ph-media .credit {
  position: absolute; right: 8px; bottom: 8px; z-index: 2; font-family: var(--font-mono);
  font-size: 9px; color: rgba(255,255,255,.85); letter-spacing: .06em; background: rgba(7,28,51,.45); padding: 3px 7px;
}

/* ---- Sektions-Leiste: sticky unter der Topbar ---- */
.sectionbar {
  position: sticky; top: var(--topbar-h); z-index: var(--z-sticky);
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line); border-top: 3px solid var(--gcol, var(--blue));
}
.sectionbar-in { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); display: flex; align-items: center; gap: 22px; height: 54px; }
.sectionbar .gate-id {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .2em; color: #fff;
  background: var(--gcol, var(--blue)); padding: 6px 10px; white-space: nowrap; font-weight: 700; text-transform: uppercase;
}
.sectionbar nav { display: flex; gap: 2px; overflow-x: auto; scrollbar-width: none; min-width: 0; flex: 1; }
.sectionbar nav::-webkit-scrollbar { display: none; }
.sectionbar nav a {
  font-size: 13.5px; font-weight: 500; letter-spacing: .05em; text-transform: uppercase;
  color: var(--muted); padding: 8px 12px; white-space: nowrap; border-bottom: 2px solid transparent;
}
.sectionbar nav a:hover, .sectionbar nav a.on { color: var(--ink); border-color: var(--gcol, var(--blue)); }
.sectionbar .aside { margin-left: auto; font-family: var(--font-mono); font-size: 11px; color: var(--muted); letter-spacing: .08em; white-space: nowrap; }
.sectionbar .aside a { color: var(--blue); }
.sectionbar .aside a:hover { color: var(--ink); }

@media (max-width: 1100px) {
  .pagehead .ph-grid { grid-template-columns: 1fr; gap: 26px; }
  .pagehead .ph-media img, .pagehead .ph-media video { height: 260px; }
}
@media (max-width: 720px) {
  .pagehead { padding-top: 30px; }
  .sectionbar { top: var(--topbar-h); }
  .sectionbar-in { padding: 0 var(--pad-x); gap: 12px; }
  .sectionbar .aside { display: none; }
}


/* ===== pm-list ===== */
/* ============================================================
   PM-LIST – Pressemitteilungs-Liste (Presseseite)
   Kantige Zeilen, Datum in Mono, ILA-blauer Hover.
   ============================================================ */

.pml { border-top: 2px solid var(--ink); }
.pml-row {
  display: grid; grid-template-columns: 108px 120px 1fr auto; gap: 20px;
  align-items: center; padding: 18px 4px;
  border-bottom: 1px solid var(--line, #d5dde4);
}
.pml-row.pml-hidden { display: none; }
.pml-date { font-size: 13px; color: var(--steel, #5e7488); letter-spacing: .04em; }
.pml-body strong { font-size: 17px; line-height: 1.35; display: block; }
.pml-body small { display: block; font-size: 14px; color: var(--steel, #5e7488); margin-top: 4px; line-height: 1.45; }
.pml-go { font-size: 20px; font-weight: 700; color: var(--blue); transform: translateX(0); transition: transform .25s var(--ease-out); }
.pml-row:hover { background: var(--sky, #eef6fb); }
.pml-row:hover .pml-go { transform: translateX(6px); }
.pml-row:hover .pml-body strong { color: var(--blue); }

@media (max-width: 720px) {
  .pml-row { grid-template-columns: 84px 1fr auto; }
  .pml-date { grid-column: 2 / -1; }
  .pml-body { grid-column: 2 / -2; }
  .pml-row .pml-thumb { grid-row: 1 / 3; }
}

/* PM-Zeilen: Aufmacherbild der Mitteilung als Thumbnail */
.pml-row .pml-thumb { flex: none; width: 108px; aspect-ratio: 3 / 2; overflow: hidden; background: var(--sky); }
.pml-row .pml-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 640px) { .pml-row .pml-thumb { width: 84px; } }

/* Platzhalter fuer Mitteilungen ohne Aufmacherbild: ILA-Monogramm auf Dunkelblau */
.pml-thumb-ph {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between;
  background: var(--ink) !important; padding: 8px 10px;
}
.pml-thumb-ph b {
  font-family: var(--font-mono); font-size: 15px; font-weight: 700;
  letter-spacing: .14em; color: #fff;
}
.pml-thumb-ph i { font-style: normal; font-family: var(--font-mono); font-size: 12px; color: var(--blue); }

/* Ausklapp-Navigation: erst 3 Meldungen, dann je 5 weitere */
.pml-nav { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }


/* ===== reasons ===== */
/* ============================================================
   REASONS – Gründe-Raster (Gate A: Sechs Gründe für Ihren Stand)
   Nummer + große Kennzahl + Kurztext, kantig, Akzent über --acc.
   ============================================================ */

.reasons {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.reason {
  position: relative; background: #fff;
  border: 1px solid var(--line, #d5dde4);
  padding: 24px 22px 22px;
  transition: border-color .25s var(--ease-out), transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.reason:hover {
  border-color: var(--acc, var(--blue));
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(15, 43, 71, .08);
}
.reason .rs-num {
  position: absolute; top: 18px; right: 20px;
  font-size: 12px; letter-spacing: .12em;
  color: var(--steel, #5e7488);
}
.reason .rs-stat { margin-bottom: 14px; }
.reason .rs-stat .n {
  display: block; font-size: 44px; line-height: 1; font-weight: 700;
  letter-spacing: -.02em; color: var(--acc, var(--blue));
  font-variant-numeric: tabular-nums;
}
.reason .rs-stat .t {
  display: block; margin-top: 6px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--steel, #5e7488);
}
.reason h3 { font-size: 17px; line-height: 1.3; margin: 0 0 8px; }
.reason p { font-size: 14px; line-height: 1.55; color: var(--steel, #5e7488); margin: 0; }

@media (max-width: 1000px) { .reasons { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .reasons { grid-template-columns: 1fr; }
  .reason .rs-stat .n { font-size: 38px; }
}


/* ===== scene ===== */
/* ============================================================
   SCENE – Scroll-Szenen (P5-Muster): sticky Vollbild-Bildbühne,
   darüber fährt eine Infokarte beim Scrollen ein.
   Für Storytelling-Sektionen (Recap 2026, Segmente).
   Varianten: .scene-l (Karte links), .scene-r (Karte rechts).
   ============================================================ */

.scene { position: relative; }
.scene .stage { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.scene .stage img, .scene .stage video { width: 100%; height: 100%; object-fit: cover; }
.scene .stage::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,28,51,0) 55%, rgba(7,28,51,.28) 100%);
}
.scene .stage .cap {
  position: absolute; top: 88px; left: 0; z-index: 2;
  background: var(--ink); color: #fff; padding: 12px 20px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
}
.scene .stage .credit {
  position: absolute; right: 14px; bottom: 12px; z-index: 2;
  font-family: var(--font-mono); font-size: 9.5px; color: rgba(255,255,255,.7); letter-spacing: .08em;
}
.scene .fg {
  position: relative; z-index: 2; margin-top: -34vh; padding-bottom: 110px;
  max-width: var(--maxw); margin-left: auto; margin-right: auto;
  padding-left: var(--pad-x); padding-right: var(--pad-x);
}
.scene.scene-r .fg { display: flex; justify-content: flex-end; }
.scene .card {
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-pop);
  max-width: 720px; padding: 44px 48px 48px; position: relative;
}
.scene .card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 68px; height: 7px;
  background: var(--acc, var(--blue));
}
.scene .card .mono {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--acc, var(--blue)); font-weight: 700;
}
.scene .card h2 { font-size: clamp(25px, 3.1vw, 42px); margin: 14px 0; }
.scene .card .pitch { color: var(--muted); font-size: 16.5px; max-width: 58ch; }
.scene .card ul { list-style: none; margin: 24px 0 28px; display: grid; gap: 12px; }
.scene .card li { display: flex; gap: 12px; font-size: 15px; }
.scene .card li i { flex: none; width: 9px; height: 9px; margin-top: 7px; background: var(--acc, var(--blue)); clip-path: polygon(0 0, 100% 50%, 0 100%); }
.scene .card .cta { display: flex; gap: 12px; flex-wrap: wrap; }
.scene .card .statrow { display: flex; gap: 34px; margin: 24px 0 6px; flex-wrap: wrap; }
.scene .card .statrow .st .n { font-family: var(--font-head); font-size: 42px; font-weight: 700; color: var(--ink); line-height: 1; font-variant-numeric: tabular-nums; }
.scene .card .statrow .st .t { font-size: 12.5px; color: var(--muted); margin-top: 5px; text-transform: uppercase; letter-spacing: .06em; }

@media (max-width: 720px) {
  .scene .fg { margin-top: -46vh; padding-bottom: 70px; }
  .scene .card { padding: 28px 24px 30px; }
  .scene .stage .cap { top: 70px; }
}
@media (prefers-reduced-motion: reduce) {
  .scene .stage { position: relative; height: 56vh; }
  .scene .fg { margin-top: 0; padding-top: 26px; }
}


/* ===== search ===== */
/* ============================================================
   SEARCH – globales Such-Overlay (Cmd/Strg+K bzw. Lupe) mit
   Volltextsuche über den Build-Index + ILA-Assistent v2.
   Ergebnisse gruppiert nach Bereich, mit Snippet-Highlight.
   Die Inline-Command-Bar im Hero nutzt dieselben Renderer.
   ============================================================ */

.search-overlay {
  position: fixed; inset: 0; z-index: var(--z-overlay);
  background: rgba(7,28,51,.4); backdrop-filter: blur(8px);
  display: none; align-items: flex-start; justify-content: center; padding: 10vh 20px 20px;
}
.search-overlay.open { display: flex; }
.search-box {
  width: 100%; max-width: 760px; background: #fff; border-top: 5px solid var(--blue);
  box-shadow: 0 40px 120px rgba(7,28,51,.35); display: flex; flex-direction: column; max-height: 78vh;
}
.search-top { display: flex; align-items: center; gap: 14px; padding: 18px 20px; border-bottom: 1px solid var(--line); flex: none; }
.search-top svg { width: 18px; height: 18px; stroke: var(--blue); fill: none; stroke-width: 2; flex-shrink: 0; }
.search-top input { flex: 1; background: none; border: none; color: var(--ink); font-size: 18px; font-family: inherit; min-width: 0; }
.search-top input:focus { outline: none; }
.search-top kbd { font-family: var(--font-mono); font-size: 10px; color: var(--muted); border: 1px solid var(--line); padding: 4px 7px; }

.search-results { overflow-y: auto; flex: 1; }
.sr-group { padding: 10px 20px 4px; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .24em; color: var(--muted); text-transform: uppercase; border-bottom: 1px solid var(--line); background: var(--sky-2); position: sticky; top: 0; }
.sr-item { display: flex; align-items: center; gap: 14px; padding: 13px 20px; border-bottom: 1px solid var(--line); color: var(--ink); }
.sr-item:hover, .sr-item.sel { background: var(--sky-2); }
.sr-item .w { font-family: var(--font-mono); font-size: 9px; letter-spacing: .12em; color: #fff; background: var(--deep); padding: 4px 8px; text-transform: uppercase; flex-shrink: 0; }
.sr-item .t { font-weight: 700; font-size: 15px; min-width: 0; }
.sr-item .t small { display: block; font-weight: 400; color: var(--muted); font-size: 12.5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sr-item .t mark { background: rgba(0,143,211,.18); color: inherit; }
.sr-empty { padding: 20px; color: var(--muted); font-size: 14.5px; }

/* Assistent-Panel */
.assist { border-top: 1px solid var(--line); background: linear-gradient(120deg, var(--sky), var(--sky-2)); padding: 18px 20px; flex: none; }
.assist .hd { display: flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .22em; color: var(--blue); text-transform: uppercase; margin-bottom: 10px; font-weight: 700; }
.assist .hd .dot { width: 7px; height: 7px; background: var(--blue); animation: tickerblink 1.2s steps(2) infinite; }
.assist .ans { font-size: 15.5px; color: var(--ink); }
.assist .ans a { color: var(--blue); border-bottom: 1px solid currentColor; }
.assist .src { margin-top: 10px; font-family: var(--font-mono); font-size: 10px; color: var(--muted); letter-spacing: .08em; }
.assist .hint { color: var(--muted); font-size: 13.5px; }
.assist .ai-badge {
  display: inline-block; background: var(--blue); color: #fff;
  font-family: var(--font-mono); font-size: 9px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; padding: 2px 7px 1px;
  margin-right: 7px; vertical-align: 2px;
}
.assist .ai-srcs { display: flex; flex-wrap: wrap; gap: 4px 14px; margin-top: 9px; }
.assist .ai-srcs a { font-size: 12.5px; border-bottom: none; }
.assist .ai-srcs a::before { content: "→ "; }

@media (max-width: 720px) {
  .search-overlay { padding: 4vh 10px 10px; }
  .search-top input { font-size: 16px; }
}

/* Enter in der Suche: KI sucht - pulsierende Punkte vor dem Hinweistext */
.assist .ai-wait { display: inline-flex; gap: 4px; margin-right: 8px; vertical-align: middle; }
.assist .ai-wait i { width: 7px; height: 7px; background: var(--blue); animation: ai-wait-pulse 1s infinite ease-in-out; }
.assist .ai-wait i:nth-child(2) { animation-delay: .18s; }
.assist .ai-wait i:nth-child(3) { animation-delay: .36s; }
@keyframes ai-wait-pulse { 0%, 100% { opacity: .25; transform: scale(.8); } 50% { opacity: 1; transform: scale(1); } }

/* KI-Assistent nicht erreichbar (Enter-Weg): Kasten roetlich, Puls aus */
.assist { transition: background .3s ease; }
.assist.ki-err { background: linear-gradient(120deg, #fdf0f0, #fbe6e6); border-top-color: #b00020; }
.assist.ki-err .hd { color: #b00020; }
.assist.ki-err .hd .dot { background: #b00020; animation: none; }
.assist.ki-err .src { color: #b00020; }

/* Fortschritts-Schaetzung waehrend der KI-Abfrage (Enter-Weg) */
.assist .ai-pct { font-family: var(--font-mono); font-size: 12px; font-weight: 700; color: var(--blue); margin-left: 6px; }
.assist .ai-bar { display: block; height: 3px; background: #d5dde4; margin-top: 10px; }
.assist .ai-bar i { display: block; height: 100%; width: 0; background: var(--blue); transition: width .15s linear; }


/* ===== segment-hero ===== */
/* ============================================================
   SEGMENT-HERO – animierter Seitenkopf der 6 Segmentseiten.
   Segmentfarbwelt über --segc, animierte Liniendekor-SVGs,
   Parallax-Bild, Kapitel-Intro. Talent Hub: Magenta NUR hier.
   ============================================================ */

.seghero { position: relative; min-height: 78vh; display: flex; align-items: flex-end; overflow: hidden; background: var(--paper); }
.seghero .bg { position: absolute; inset: 0; z-index: 0; }
.seghero .bg img, .seghero .bg video { width: 100%; height: 112%; object-fit: cover; will-change: transform; }
.seghero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,0) 34%, rgba(246,251,255,.9) 82%, var(--paper) 98%);
}
.seghero .deco {
  position: absolute; right: -60px; top: 60px; z-index: 2; width: 380px; height: 380px; pointer-events: none;
  background: repeating-linear-gradient(115deg, var(--segc) 0, var(--segc) 4px, transparent 4px, transparent 30px);
  opacity: 0; transform: translateX(60px);
  animation: segdeco 1.2s var(--ease-out) .3s forwards;
}
@keyframes segdeco { to { opacity: .3; transform: none; } }
.seghero .in { position: relative; z-index: 3; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x) 56px; width: 100%; }
.seghero .segcode {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .3em; font-weight: 700;
  color: #fff; background: var(--segc); padding: 8px 14px; text-transform: uppercase; margin-bottom: 20px;
}
.seghero h1 { font-size: clamp(44px, 7vw, 110px); max-width: 1100px; }
.seghero h1 .thin { display: block; font-size: .38em; letter-spacing: .1em; color: var(--muted); font-weight: 500; margin-top: 10px; font-family: var(--font-mono); text-transform: uppercase; }
.seghero .lead { color: var(--ink); font-size: 19px; max-width: 640px; margin-top: 20px; }
.seghero .credit { position: absolute; right: 14px; bottom: 12px; z-index: 3; font-family: var(--font-mono); font-size: 9.5px; color: var(--muted); letter-spacing: .08em; }

/* Segment-Akzentlinie, die beim Laden über die Breite wächst */
.seghero .growline { position: absolute; left: 0; bottom: 0; height: 6px; background: var(--segc); width: 100%; transform: scaleX(0); transform-origin: left; animation: growline 1.1s var(--ease-out) .2s forwards; z-index: 3; }
@keyframes growline { to { transform: scaleX(1); } }

/* Zahlen-Sektion in Segmentfarbe */
.seg-stats { background: linear-gradient(180deg, var(--sky-2), #fff); border-top: 5px solid var(--segc); }
.seg-stats .kpi { border-top-color: var(--segc); }
.seg-stats .kpi .n sup { color: var(--segc); }

@media (max-width: 720px) {
  .seghero { min-height: 64vh; }
  .seghero .deco { width: 200px; height: 200px; top: 30px; }
  .seghero h1 { font-size: 42px; }
}
@media (prefers-reduced-motion: reduce) {
  .seghero .deco { animation: none; opacity: .3; transform: none; }
  .seghero .growline { animation: none; transform: none; }
}


/* ===== split ===== */
/* ============================================================
   SPLIT – Text + Medien nebeneinander, mit blauem Rahmen-Echo.
   ============================================================ */

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.split > * { min-width: 0; }
.split.flip { direction: rtl; }
.split.flip > * { direction: ltr; }
.split .media { position: relative; }
.split .media img, .split .media video { width: 100%; height: 440px; object-fit: cover; display: block; }
.split .media::after {
  content: ""; position: absolute; right: -14px; bottom: -14px; width: 60%; height: 60%;
  border: 2px solid var(--blue); z-index: -1;
}
.split .media .cap {
  position: absolute; left: 0; bottom: 0; background: #fff; font-family: var(--font-mono);
  font-size: 10px; letter-spacing: .18em; color: var(--muted); padding: 8px 12px; text-transform: uppercase;
}
.split h2 { font-size: clamp(28px, 3.2vw, 46px); margin-bottom: 16px; }
.split p { color: var(--muted); margin-bottom: 18px; }
.feat-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin: 0 0 26px; }
.feat-list li { list-style: none; display: flex; gap: 10px; align-items: center; font-size: 15px; font-weight: 500; }
.feat-list li::before { content: ""; flex-shrink: 0; width: 14px; height: 8px; background: var(--blue); clip-path: var(--chev); }

@media (max-width: 1100px) {
  .split { grid-template-columns: 1fr; gap: 30px; }
  .split .media img, .split .media video { height: 300px; }
  .split .media::after { display: none; } /* Rahmen-Echo ragt einspaltig aus dem Viewport */
  .feat-list { grid-template-columns: 1fr; }
}


/* ===== stage ===== */
/* ============================================================
   STAGE – Bühnen-Sektion für Segmentseiten: kurze Beschreibung
   (sec_head), kompakte KPI-Zeile und Speaker-Portraits.
   Die Speakerfotos sind rund freigestellte PNGs (etablierter
   ILA-Speaker-Stil); Akzentfarbe kommt über --acc vom Segment.
   ============================================================ */

.stage-sec .stage-kpis {
  display: flex; gap: 46px; flex-wrap: wrap; margin: 6px 0 44px;
}
.stage-sec .sk .n {
  font-family: var(--font-head); font-size: 50px; font-weight: 700;
  color: var(--acc, var(--blue)); line-height: 1; font-variant-numeric: tabular-nums;
}
.stage-sec .sk .t {
  font-size: 12.5px; color: var(--muted); margin-top: 6px;
  text-transform: uppercase; letter-spacing: .06em;
}

.stage-sec .speakers {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 30px 20px;
}
.stage-sec .speaker { margin: 0; text-align: center; }
.stage-sec .speaker img {
  width: 78%; max-width: 150px; aspect-ratio: 1 / 1;
  display: block; margin: 0 auto 12px;
}
.stage-sec .speaker b { display: block; font-size: 14.5px; line-height: 1.3; }
.stage-sec .speaker span {
  display: block; font-size: 12.5px; color: var(--muted);
  margin-top: 4px; line-height: 1.45;
}
.stage-sec .stage-note { color: var(--muted); font-size: 13.5px; margin-top: 28px; }

@media (max-width: 1000px) {
  .stage-sec .speakers { grid-template-columns: repeat(3, 1fr); }
  .stage-sec .stage-kpis { gap: 34px; }
  .stage-sec .sk .n { font-size: 42px; }
}
@media (max-width: 560px) {
  .stage-sec .speakers { grid-template-columns: repeat(2, 1fr); }
}


/* ===== standforms ===== */
/* =========================================================
   Standformen-Kacheln (Teilnahme & Flächen): Grundriss-Schema
   + Kurztext + Beispielfoto. Kantige CI, kein border-radius.
   ========================================================= */

.standforms { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.sf { background: #fff; border: 1px solid var(--line); min-width: 0; display: flex; flex-direction: column; }

.sf-plan { background: var(--sky-2); border-bottom: 1px solid var(--line); padding: 18px 22px 14px; }
.sf-plan svg { display: block; width: 100%; height: auto; }
.sf-plan .sf-n { fill: #E2ECF4; }
.sf-plan .sf-a { fill: var(--gate-a); }
.sf-plan .sf-o { fill: var(--blue); }

.sf-body { padding: 18px 20px 20px; }
.sf-open { display: block; font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.sf-body h3 { font-size: 18px; margin-bottom: 6px; }
.sf-body p { color: var(--muted); font-size: 14.5px; }

.sf-photo { position: relative; margin-top: auto; aspect-ratio: 16 / 10; overflow: hidden; border-top: 1px solid var(--line); }
.sf-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sf-photo .credit { position: absolute; right: 0; bottom: 0; background: rgba(7, 28, 51, .62); color: #fff; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .04em; padding: 3px 8px; }

@media (max-width: 1100px) {
  .standforms { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .standforms { grid-template-columns: 1fr; }
}


/* ===== stat-band ===== */
/* ============================================================
   STAT-BAND – KPI-Zahlen mit Count-up beim Einscrollen.
   Varianten: Standard (4 Spalten), .wide (auto-fit),
   .growth (Wachstumsreihe mit animierten Balken).
   ============================================================ */

.kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.kpis > * { min-width: 0; }
.kpi { border-top: 4px solid var(--acc, var(--blue)); padding-top: 18px; }
.kpi .n {
  font-family: var(--font-head); font-size: clamp(42px, 4.6vw, 74px); line-height: 1;
  color: var(--ink); font-variant-numeric: tabular-nums; letter-spacing: -0.02em; font-weight: 700;
}
.kpi .n sup { font-size: .45em; color: var(--acc, var(--blue)); }
.kpi .n.small { font-size: clamp(24px, 2.6vw, 40px); line-height: 1.15; overflow-wrap: anywhere; }
.kpi .t { margin-top: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; font-size: 13px; }
.kpi .s { color: var(--muted); font-size: 13.5px; margin-top: 3px; }
.kpi-src { margin-top: 22px; font-family: var(--font-mono); font-size: 11px; color: var(--muted); letter-spacing: .05em; }

/* Wachstumsreihe: animierte Balken (z.B. Aussteller 2022→2024→2026) */
/* align-items: start, damit alle Balken (fixe .bar-Höhe) auf einer gemeinsamen
   Grundlinie stehen – mit "end" schob ein fehlendes .lbl den Nachbarbalken hoch.
   .gr-t reserviert zwei Titelzeilen, damit auch nebeneinanderliegende Charts
   mit unterschiedlich langen Titeln auf einer Höhe beginnen. */
.growth { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
.gr-t { font-size: 17px; margin-bottom: 14px; min-height: 2.55em; display: flex; align-items: flex-end; }
.growth .g { text-align: left; }
.growth .bar { position: relative; background: var(--sky); height: 180px; display: flex; align-items: flex-end; overflow: hidden; }
.growth .bar i {
  display: block; width: 100%; background: linear-gradient(180deg, var(--blue), var(--deep));
  height: calc(var(--v, 50) * 1%);
  transform: scaleY(0); transform-origin: bottom; transition: transform 1.1s var(--ease-out);
}
.growth.in .bar i { transform: scaleY(1); }
.growth .g:nth-child(2) .bar i { transition-delay: .15s; }
.growth .g:nth-child(3) .bar i { transition-delay: .3s; }
.growth .y { font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em; color: var(--muted); margin-top: 10px; }
.growth .v { font-family: var(--font-head); font-size: 30px; font-weight: 700; font-variant-numeric: tabular-nums; }
.growth .lbl { font-size: 12.5px; color: var(--muted); }

/* Horizontale Anteils-Balken (hbars), z. B. Top-Herkunftsländer */
.hbars { display: grid; gap: 9px; max-width: 880px; }
.hb { display: grid; grid-template-columns: 168px 1fr 62px; gap: 14px; align-items: center; }
.hb-l { font-size: 14.5px; font-weight: 500; }
.hb-bar { display: block; background: var(--sky); height: 22px; overflow: hidden; }
.hb-bar i {
  display: block; height: 100%; width: calc(var(--v, 50) * 1%);
  background: linear-gradient(90deg, var(--hb, var(--blue)), var(--deep));
  transform: scaleX(0); transform-origin: left;
  transition: transform .9s var(--ease-out); transition-delay: calc(var(--i, 0) * 70ms);
}
.hbars.in .hb-bar i { transform: scaleX(1); }
.hb-v { font-family: var(--font-head); font-size: 17px; font-weight: 700; font-variant-numeric: tabular-nums; text-align: right; }
.hb-note { margin-top: 18px; font-size: 15.5px; font-weight: 500; max-width: 880px; }
.hb-note b { color: var(--blue); }

@media (max-width: 1100px) { .kpis { grid-template-columns: 1fr 1fr; gap: 30px 22px; } }
@media (max-width: 720px)  { .kpis { grid-template-columns: 1fr 1fr; } .growth .bar { height: 120px; }
  .hb { grid-template-columns: 108px 1fr 52px; gap: 10px; } .hb-l { font-size: 12.5px; } .hb-v { font-size: 14px; } }
@media (prefers-reduced-motion: reduce) { .growth .bar i { transform: scaleY(1); transition: none; } .hb-bar i { transform: scaleX(1); transition: none; } }

/* ---------- Impact-Variante: Einkaufsvolumen dominant (Basispräsi Folie 14) ---------- */
.kpis-impact { grid-template-columns: repeat(2, 1fr); gap: 22px; }
.kpis-impact .kpi { border-top-width: 4px; padding: 22px 26px 20px; background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--acc, var(--blue)); }
.kpi-big { position: relative; overflow: hidden; }
.kpis-impact .kpi-big { background: var(--deep); border-color: var(--deep); color: #fff; padding: 34px 30px 30px; }
.kpi-big::before { content: ""; position: absolute; right: -34px; top: 50%; transform: translateY(-50%); width: 210px; height: 118px; background: rgba(255, 255, 255, .08); clip-path: var(--chev); pointer-events: none; }
.kpi-big .n, .kpi-big .n.small { font-size: clamp(48px, 4.6vw, 84px); line-height: 1.02; color: #fff; letter-spacing: -.02em; }
.kpi-big .t { color: #9AD5F5; margin-top: 14px; }
.kpi-big .s { color: rgba(255, 255, 255, .78); font-size: 14px; max-width: 420px; }
@media (max-width: 1100px) { .kpis-impact { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) {
  .kpis-impact { grid-template-columns: 1fr; }
  .kpi-big .n, .kpi-big .n.small { font-size: clamp(42px, 12vw, 64px); }
}

/* Growth: optionaler Daten-&-Fakten-Link unter den Reihen */
.growth-more { margin-top: 18px; }
.growth-more a { font-weight: 700; font-size: 14px; color: var(--blue); text-decoration: none; }
.growth-more a:hover { text-decoration: underline; }


/* ===== ticker ===== */
/* ============================================================
   TICKER – dunkles Newsband GANZ oben (P2-Muster).
   Nur auf Startseite + den drei Gate-Startseiten.
   Sitzt ÜBER der Topbar im normalen Fluss (kein fixed),
   damit die Topbar beim Scrollen allein sticky bleibt.
   ============================================================ */

.ticker {
  position: relative; z-index: calc(var(--z-topbar) + 1);
  background: var(--night); height: var(--ticker-h);
  display: flex; align-items: center; overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ticker-label {
  position: relative; z-index: 2; flex-shrink: 0;
  display: flex; align-items: center; gap: 8px; height: 100%; padding: 0 16px;
  background: var(--blue); color: #fff;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .22em; font-weight: 700;
}
.ticker-label .dot { width: 7px; height: 7px; background: #fff; animation: tickerblink 1.2s steps(2) infinite; }
@keyframes tickerblink { 50% { opacity: .15; } }
.ticker-track { display: flex; gap: 60px; white-space: nowrap; animation: tickermove 70s linear infinite; padding-left: 24px; will-change: transform; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track a { font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,.75); letter-spacing: .06em; }
.ticker-track a:hover { color: #fff; }
.ticker-track a b { color: #58CFFF; font-weight: 700; }
@keyframes tickermove { to { transform: translateX(-50%); } }

@media (max-width: 720px) {
  .ticker-label .txt { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}


/* ===== tickethub ===== */
/* ============================================================
   TICKET HUB – Ticketkarten (BVG-Muster), Vergleichstabelle,
   Schritt-Anleitung, Kontakt-Konzeptformular. Kantig, hell,
   ILA-CI; kein border-radius. Stufe 1 (Entwurf 28.07.2026).
   ============================================================ */

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.tk-check { flex: none; color: var(--blue); }

/* ---------- Ticketkarten ---------- */
.tkc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.tkc-2 { grid-template-columns: repeat(2, 1fr); }
.tkc-4 { grid-template-columns: repeat(4, 1fr); }

.tkc {
  display: flex; flex-direction: column; gap: 12px;
  background: #fff; border: 1px solid var(--line);
  border-top: 3px solid var(--ink);
  padding: 22px 20px 20px;
  transition: border-color .25s var(--ease-out), transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.tkc:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(15, 43, 71, .08); }
.tkc-hl { background: var(--sky); border-color: var(--blue); border-top-color: var(--blue); }

.tkc-top { display: flex; align-items: center; gap: 8px; min-height: 22px; }
.tkc-badge {
  display: inline-block; padding: 3px 8px;
  background: var(--ink); color: #fff;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
}
.tkc-badge.open { background: var(--blue); }
.tkc-aud { margin-left: auto; font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

.tkc h3 { font-size: 20px; line-height: 1.22; margin: 0; }
.tkc-who { font-size: 14px; line-height: 1.5; color: var(--muted); margin: 0; }

.tkc-facts { display: grid; gap: 6px; margin: 2px 0 0; border-top: 1px solid var(--line); padding-top: 10px; }
.tkc-fact { display: flex; gap: 10px; align-items: baseline; }
.tkc-fact dt {
  flex: none; width: 92px;
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.tkc-fact dd { margin: 0; font-size: 14px; line-height: 1.45; color: var(--ink); }

.tkc-perks { list-style: none; margin: 0; padding: 10px 0 0; border-top: 1px solid var(--line); display: grid; gap: 7px; }
.tkc-perks li { display: flex; gap: 8px; align-items: flex-start; font-size: 14px; line-height: 1.45; }
.tkc-perks .tk-check { margin-top: 3px; }

.tkc-foot { margin-top: auto; border-top: 1px solid var(--line); padding-top: 14px; display: grid; gap: 12px; }
.tkc-price { display: grid; gap: 2px; }
.tkc-price-label { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.tkc-price b { font-size: 16px; line-height: 1.3; color: var(--ink); }
.tkc-price small { font-size: 12.5px; line-height: 1.4; color: var(--muted); }
.tkc-cta { justify-self: start; }
.tkc-soon {
  justify-self: start; padding: 9px 14px;
  border: 1px dashed var(--muted); color: var(--muted);
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.tkc-note { margin-top: 16px; font-size: 13.5px; color: var(--muted); }

/* ---------- Vergleichstabelle ---------- */
.cmp-scroll { overflow-x: auto; border: 1px solid var(--line); background: #fff; }
.cmp-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.cmp-table thead th {
  background: var(--ink); color: #fff; text-align: left;
  font-size: 14px; line-height: 1.3; padding: 13px 16px;
  border-right: 1px solid rgba(255, 255, 255, .16);
}
.cmp-table thead th:first-child { width: 26%; }
.cmp-table thead th:not(:first-child) { text-align: center; }
.cmp-table tbody th {
  text-align: left; font-size: 13.5px; font-weight: 600; color: var(--ink);
  padding: 11px 16px; border-top: 1px solid var(--line); border-right: 1px solid var(--line);
  background: #fff;
}
.cmp-table tbody td {
  text-align: center; font-size: 13.5px; line-height: 1.45; color: var(--ink);
  padding: 11px 14px; border-top: 1px solid var(--line); border-right: 1px solid var(--line);
}
.cmp-table tbody td:last-child, .cmp-table tbody th:last-child { border-right: 0; }
.cmp-table .cmp-hl { background: var(--sky); }
.cmp-table thead th.cmp-hl { background: var(--blue); }
.cmp-yes { display: inline-flex; }
.cmp-yes .tk-check { width: 15px; height: 15px; }
.cmp-no { color: var(--muted); font-weight: 700; }
.cmp-foot { margin-top: 12px; font-size: 13px; color: var(--muted); }

/* ---------- Schritt-Anleitung ---------- */
.how-demo {
  display: flex; gap: 10px; align-items: baseline; flex-wrap: wrap;
  background: var(--sky); border-left: 3px solid var(--blue);
  padding: 12px 16px; margin: 0 0 26px; font-size: 14px; line-height: 1.5;
}
.how-demo .mono { flex: none; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--deep); }

.how-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; counter-reset: none; }
.how-step {
  display: grid; grid-template-columns: 56px minmax(0, 1fr) 280px; gap: 22px;
  padding: 24px 0; border-top: 1px solid var(--line);
  align-items: start;
}
.how-step:last-child { border-bottom: 1px solid var(--line); }
.how-no {
  width: 44px; height: 44px; display: grid; place-items: center;
  border: 2px solid var(--blue); color: var(--blue);
  font-size: 18px; font-weight: 700;
}
.how-body h3 { font-size: 18px; line-height: 1.3; margin: 8px 0 6px; }
.how-body p { font-size: 14.5px; line-height: 1.6; color: var(--ink); margin: 0; max-width: 62ch; }
.how-tip {
  margin-top: 10px !important; background: var(--sky); border-left: 3px solid var(--blue);
  padding: 9px 12px; font-size: 13.5px !important; color: var(--ink);
}
.how-media { align-self: center; }
.how-media img, .how-ph { width: 100%; max-width: 280px; height: auto; display: block; border: 1px solid var(--line); }
.how-media { position: relative; }
.how-media .credit { position: absolute; right: 0; bottom: 0; }
.how-note { margin-top: 16px; font-size: 13.5px; color: var(--muted); }

/* ---------- Kontakt-Konzeptformular ---------- */
.tcf { background: #fff; border: 1px solid var(--line); padding: 26px; max-width: 860px; }
.tcf-ways { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.tcf-way {
  appearance: none; cursor: pointer;
  background: #fff; border: 1px solid var(--line); color: var(--ink);
  font: 600 13.5px/1.3 var(--font-body); letter-spacing: .01em;
  padding: 10px 14px;
  transition: border-color .2s var(--ease-out), background .2s var(--ease-out), color .2s var(--ease-out);
}
.tcf-way:hover { border-color: var(--blue); }
.tcf-way.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }
.tcf-way:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }

.tcf-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 16px; }
.tcf-field { display: grid; gap: 6px; min-width: 0; }
.tcf-field[hidden] { display: none; }
.tcf-wide { grid-column: 1 / -1; }
.tcf-field > span {
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.tcf-field input, .tcf-field select, .tcf-field textarea {
  appearance: none; width: 100%;
  background: #fff; border: 1px solid var(--line); color: var(--ink);
  font: 400 14.5px/1.45 var(--font-body);
  padding: 11px 12px;
}
.tcf-field select {
  background-image: linear-gradient(45deg, transparent 49%, var(--ink) 50%), linear-gradient(-45deg, transparent 49%, var(--ink) 50%);
  background-position: calc(100% - 18px) 55%, calc(100% - 12px) 55%;
  background-size: 6px 6px; background-repeat: no-repeat;
  padding-right: 34px;
}
.tcf-field textarea { resize: vertical; min-height: 110px; }
.tcf-field input:focus, .tcf-field select:focus, .tcf-field textarea:focus { outline: none; border-color: var(--blue); }
.tcf-field input:user-invalid, .tcf-field select:user-invalid, .tcf-field textarea:user-invalid { border-color: #C22F2F; }

.tcf-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.tcf-privacy { margin: 14px 0 0; font-size: 12.5px; line-height: 1.5; color: var(--muted); max-width: 68ch; }

.tcf-done { border: 1px solid var(--blue); background: var(--sky); padding: 18px 20px; }
.tcf-done b { font-size: 16px; }
.tcf-done p { margin: 6px 0 0; font-size: 14px; line-height: 1.55; }

.tcf-demo {
  margin: 18px 0 0; padding-top: 14px; border-top: 1px dashed var(--line);
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}

/* ---------- Schmale Viewports ---------- */
@media (max-width: 1100px) {
  .tkc-grid, .tkc-4 { grid-template-columns: repeat(2, 1fr); }
  .how-step { grid-template-columns: 44px minmax(0, 1fr); }
  .how-no { width: 36px; height: 36px; font-size: 15px; }
  .how-media { grid-column: 2; max-width: 300px; }
}
@media (max-width: 700px) {
  .tkc-grid, .tkc-2, .tkc-4 { grid-template-columns: 1fr; }
  .tcf { padding: 18px 14px; }
  .tcf-grid { grid-template-columns: 1fr; }
  .how-step { grid-template-columns: 36px minmax(0, 1fr); gap: 14px; }
}


/* ===== topbar ===== */
/* ============================================================
   TOPBAR – helle, glasige Hauptnavigation.
   Die Navigation WECHSELT pro Gate komplett (Gate-spezifische
   Links). Global bleiben nur: Logo, Suche, DE/EN, Gate-Switcher.
   Sticky via position: sticky (Geschwister des Tickers).
   ============================================================ */

.topbar {
  position: sticky; top: 0; z-index: var(--z-topbar);
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
/* Die Topbar-Zeile darf als Ganzes umbrechen: Passt der Bedienblock
   (Suche/Gates/DE-EN) nicht mehr neben die Navigation (Gate A), rutscht
   er GESCHLOSSEN und rechtsbuendig in die zweite Zeile. Die Navigation
   selbst bleibt einzeilig, der CTA ist ihr letzter Punkt. */
.topbar-in {
  max-width: var(--maxw); margin: 0 auto; padding: 6px var(--pad-x);
  min-height: var(--topbar-h); display: flex; align-items: center; gap: 18px;
  flex-wrap: wrap; row-gap: 2px;
}
.brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.brand img { height: 36px; width: auto; }

/* Logo-Spalte: Gate-Kennung UNTER dem Logo (nur auf Gate-Seiten),
   damit die Gate-Navigation die volle Breite bekommt. */
.brand-col { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; flex-shrink: 0; }
.topbar .gate-flag {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: .16em; font-weight: 700;
  color: #fff; background: var(--gcol, var(--blue)); padding: 3px 8px; text-transform: uppercase;
  white-space: nowrap;
}

/* Kein overflow:hidden: Auf dem Desktop darf NIE etwas abgeschnitten
   werden. Die Navigation verteidigt ihre eine Zeile (flex-shrink: 0),
   dafuer weicht der Bedienblock in Zeile 2 aus; erst auf schmalen
   Desktops (Media-Query unten) darf sie selbst umbrechen. */
.mainnav { display: flex; align-items: center; gap: 2px; flex-wrap: nowrap; flex-shrink: 0; }
.mainnav a {
  font-weight: 500; font-size: 13px; letter-spacing: .04em; padding: 8px 9px;
  color: var(--muted); text-transform: uppercase; white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.mainnav a:hover { color: var(--ink); }
.mainnav a.on { color: var(--ink); border-color: var(--gcol, var(--blue)); }
.mainnav a.hl { color: var(--gcol, var(--blue)); font-weight: 700; }
.mainnav .sep { width: 1px; height: 20px; background: var(--line); margin: 0 8px; flex: none; }

.topbar-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
/* Bedienblock: Suche, Gates und DE/EN nebeneinander (Standard); Suche
   und Gates-Schalter exakt gleich breit (DE wie EN). */
.actions-col { display: flex; align-items: center; gap: 10px; }
.actions-col .btn-search { padding: 7px 10px; width: 132px; justify-content: center; }
.actions-col .gate-switch > button { padding: 6px 10px; width: 132px; justify-content: center; }
@media (max-width: 1680px) {
  .mainnav a { font-size: 12.5px; padding: 8px 8px; }
}
@media (max-width: 1440px) {
  .mainnav a { font-size: 12px; padding: 7px 6px; letter-spacing: .03em; }
  .btn-search kbd { display: none; }
}
/* Schmale Desktops: bevor irgendetwas abgeschnitten wuerde, darf auch
   die Navigation selbst umbrechen (Sicherheitsnetz unter der Breite,
   die die laengste Gate-Navigation einzeilig braucht). */
@media (max-width: 1360px) {
  .mainnav { flex-wrap: wrap; flex-shrink: 1; min-width: 0; }
}
.btn-search {
  display: flex; align-items: center; gap: 10px; border: 1px solid var(--line);
  background: var(--sky-2); color: var(--muted); font-family: var(--font-mono);
  font-size: 11.5px; padding: 9px 14px; cursor: pointer; letter-spacing: .06em;
}
.btn-search:hover { border-color: var(--blue); color: var(--ink); }
.btn-search svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }

/* Sprachumschalter: verlinkt die Schwesterseite */
.lang { font-family: var(--font-mono); font-size: 12px; color: var(--muted); display: flex; gap: 5px; align-items: center; }
.lang a { color: var(--muted); padding: 4px 2px; }
.lang a:hover { color: var(--blue); }
.lang .cur { color: var(--ink); font-weight: 700; }

/* Kompakter Gate-Switcher (global) */
.gate-switch { position: relative; }
.gate-switch > button {
  display: flex; align-items: center; gap: 8px; background: none; cursor: pointer;
  border: 1px solid var(--line); padding: 8px 12px; font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .14em; color: var(--muted); text-transform: uppercase;
}
.gate-switch > button:hover { border-color: var(--blue); color: var(--ink); }
.gate-switch .dots { display: flex; gap: 3px; }
.gate-switch .dots i { width: 8px; height: 8px; }
.gate-switch .dots i:nth-child(1) { background: var(--gate-a); }
.gate-switch .dots i:nth-child(2) { background: var(--gate-b); }
.gate-switch .dots i:nth-child(3) { background: var(--gate-c); }
.gate-menu {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 300px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-pop);
  display: none; z-index: var(--z-overlay);
}
.gate-switch.open .gate-menu { display: block; }
.gate-menu a {
  display: flex; align-items: center; gap: 12px; padding: 14px 18px;
  border-bottom: 1px solid var(--line); border-left: 5px solid var(--gc, var(--blue));
}
.gate-menu a:last-child { border-bottom: none; }
.gate-menu a:hover { background: var(--sky-2); }
.gate-menu a b { font-family: var(--font-head); font-size: 15px; text-transform: uppercase; display: block; }
.gate-menu a small { color: var(--muted); font-size: 12px; display: block; }
.gate-menu .code { font-family: var(--font-mono); font-size: 9.5px; font-weight: 700; letter-spacing: .18em; color: var(--gc, var(--blue)); flex: none; }

.burger { display: none; background: none; border: 1px solid var(--ink); padding: 10px 12px; cursor: pointer; }
.burger span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 4px 0; }

@media (max-width: 1200px) {
  .mainnav { display: none; }
  .burger { display: block; }
}
@media (max-width: 720px) {
  .brand img { height: 34px; }
  .topbar-in { gap: 10px; }
  .lang { display: none; }
  .gate-switch { display: none; }
  .btn-search { font-size: 0; gap: 0; padding: 10px 12px; margin-left: auto; }
  .btn-search svg { width: 17px; height: 17px; }
  .btn-search kbd { display: none; }
  .topbar .gate-flag { display: none; }
}


/* ===== video-slot ===== */
.video-slot { display: flex; flex-direction: column; justify-content: space-between; width: 100%; height: 100%; min-height: 330px; padding: 24px; border: 1px solid #8DBDD5; background: linear-gradient(120deg, #EDF7FC, #D8EFFA); color: var(--ink); margin: 0; position: relative; z-index: 2; }
.vs-label { display: flex; justify-content: space-between; gap: 12px; font: 700 10px var(--font-mono); letter-spacing: .1em; text-transform: uppercase; color: var(--deep); }
.vs-body { padding: 22px 0; }
.vs-play { font-size: 30px; line-height: 1; color: var(--deep); }
.video-slot .vs-body h2 { font-size: clamp(22px, 2.2vw, 30px); margin: 12px 0 9px; }
.vs-body p { font-size: 14px; line-height: 1.55; max-width: 560px; }
.vs-spec { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; border-top: 1px solid #A9CBDE; padding-top: 12px; }
.vs-spec dt { font: 700 10px var(--font-mono); text-transform: uppercase; color: var(--deep); }
.vs-spec dd { margin-top: 4px; font-size: 12px; }
.video-slot details { margin-top: 15px; font-size: 12px; }
.video-slot summary { cursor: pointer; min-height: 28px; font-weight: 700; }
.video-slot details p { padding-top: 7px; line-height: 1.6; }
.video-review-bar { border-bottom: 1px solid #A9CBDE; background: #EDF7FC; color: var(--ink); font-size: 12px; padding: 10px 0; }
.video-review-bar .wrap { display: flex; gap: 8px 22px; flex-wrap: wrap; align-items: center; }
.video-review-bar a { color: var(--deep); text-decoration: underline; margin-left: auto; }
.hero-film-placeholder { background: repeating-linear-gradient(120deg, #D8EFFA 0, #D8EFFA 100px, #C7E4F3 100px, #C7E4F3 200px); padding: 28px var(--pad-x); color: var(--deep); font: 700 12px var(--font-mono); letter-spacing: .1em; text-transform: uppercase; }
.hero-film-brief { margin: 30px auto; }
.variant-video-prototyp .entry-media { height: auto; align-self: stretch; }
.variant-video-prototyp .entry-media .hero-brand { display: none; }
.variant-video-prototyp .ph-media:has(.video-slot) { height: auto; overflow: visible; }
.variant-video-prototyp .seghero:has(.video-slot) { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; min-height: 0; padding: 42px var(--pad-x); }
.variant-video-prototyp .seghero:has(.video-slot) .bg { position: static; order: 2; }
.variant-video-prototyp .seghero:has(.video-slot) .in { padding: 30px 0; align-self: center; }
.variant-video-prototyp .seghero:has(.video-slot)::after,
.variant-video-prototyp .seghero:has(.video-slot) .deco,
.variant-video-prototyp .seghero:has(.video-slot) > .credit,
.variant-video-prototyp .seghero:has(.video-slot) .growline { display: none; }
@media (max-width: 720px) {
  .video-slot { padding: 19px; min-height: 340px; }
  .vs-label { font-size: 9px; }
  .video-review-bar a { margin-left: 0; }
  .variant-video-prototyp .entry-media { margin: 0; }
  .variant-video-prototyp .seghero:has(.video-slot) { grid-template-columns: 1fr; padding-top: 26px; }
  .variant-video-prototyp .seghero:has(.video-slot) .in { padding: 0; }
  .variant-video-prototyp .seghero:has(.video-slot) .bg { order: 2; }
}


/* ===== zz-feedback ===== */
/* Feedback review, September 2026: small corrections within the existing design. */
.sectionbar { top: var(--topbar-offset, var(--topbar-h)); }
html { scroll-padding-top: calc(var(--topbar-offset, var(--topbar-h)) + 72px); }
.segment-switch { background: #fff; border-bottom: 1px solid var(--line); }
.segment-switch .wrap { display: flex; align-items: center; gap: 8px 24px; flex-wrap: wrap; }
.segment-switch span { font: 700 10px var(--font-mono); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.segment-switch a { min-height: 44px; display: inline-flex; align-items: center; color: var(--ink); border-bottom: 3px solid transparent; font-size: 13px; font-weight: 700; }
.segment-switch a[aria-current="page"] { color: var(--blue); border-color: var(--blue); }
.segment-switch a:hover { color: var(--blue); }
.sales-primary { margin: 0 0 32px; padding: 22px 24px; border-left: 4px solid var(--blue); background: var(--sky-2); }
.sales-primary p { margin: 12px 0 0; color: var(--muted); font-size: 14px; overflow-wrap: anywhere; }
.sales-plain .plinks, .sales-plain .plinks a { font-size: 13px; font-weight: 400; overflow-wrap: anywhere; }
.person .plinks > span { display: block; color: var(--muted); font-size: 11px; }
.person .role { line-height: 1.5; }
.sales-plain .ini { width: 100%; height: auto; aspect-ratio: 1; display: grid; place-content: center; background: var(--sky-2); color: var(--deep); font-size: 40px; }
.pml-subscribe { margin-top: 28px; }
#standbau .card .im { height: 230px; background: #fff; }
#standbau .card .im img { object-fit: contain; padding: 16px; }
#standbau .card .tag { font: 700 21px var(--font-head); color: var(--deep); letter-spacing: 0; }
#standbau .card .tag { text-transform: none; }
.package-downloads { padding-bottom: 48px; display: flex; flex-wrap: wrap; gap: 12px; }
.package-downloads > p { flex-basis: 100%; color: var(--muted); margin-bottom: 6px; font-size: 13px; }
.package-downloads .btn { white-space: normal; }
/* Give the public visitor photo space before the story card enters. */
body[data-page="gate-c-home"] .scene .fg { margin-top: -18vh; }
@media (max-width: 720px), (max-height: 500px) {
  body[data-page="gate-c-home"] .scene .stage { position: relative; height: 58svh; min-height: 220px; }
  body[data-page="gate-c-home"] .scene .fg { margin-top: 0; padding-top: 24px; }
}
@media (max-width: 520px) {
  .segment-switch .wrap { gap: 6px 16px; }
  .segment-switch span { flex-basis: 100%; padding-top: 10px; }
  .sales-primary { padding: 18px; }
}


/* ===== zz-refinement ===== */
/* Gemeinsame Fassung nach BDLI-Abstimmung und Audit, 07.09.2026. */
.calm .rv, .calm .rv-l, .calm .rv-r, .calm [data-stagger] > * { opacity: 1 !important; transform: none !important; transition: none !important; }
.calm .nextlinks a::before, .calm .nextlinks a::after, .calm .hero-date .dot, .calm .live i { animation: none; }
.calm .nextlinks a:hover, .calm .card:hover, .calm .tile:hover, .calm .seg-tile:hover,
.calm .card.img-card:hover .im img, .calm .tile:hover img.bg, .calm .seg-tile:hover .im img,
.calm .gal-item:hover img, .calm .card:hover .go::after { transform: none; }
.calm .pagehead .ph-media::before, .calm .scene .card::before { display: none; }
.calm .pagehead h1 { font-size: clamp(28px, 3vw, 44px); }
.calm .sec-head h2 { font-size: clamp(24px, 2.6vw, 40px); }
.calm .ctaband h2, .calm .scene h2 { font-size: clamp(22px, 2.6vw, 36px); }
.calm .sec { padding: 68px 0; }
.calm .sec-head { margin-bottom: 32px; }
.calm .scene { min-height: 0; }
.calm .scene .stage { position: relative; min-height: 0; height: 420px; }
.calm .scene .fg { margin-top: -100px; padding-top: 0; padding-bottom: 56px; }
.calm .gatesplit { min-height: 0; padding-bottom: 48px; }
.calm .gatesplit-head { padding-top: 40px; padding-bottom: 24px; }
.calm .gatesplit-head h2 { font-size: clamp(26px, 3vw, 40px); }
.calm .gatesplit-panels { min-height: 0; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); gap: 22px; width: 100%; align-items: stretch; }
.calm .gpanel, .calm .gatesplit-panels:hover .gpanel, .calm .gatesplit-panels .gpanel:hover { flex: 1; min-width: 0; border: 1px solid var(--line); background: #fff; justify-content: flex-start; transition: none; }
.calm .gpanel img { position: relative; height: 185px; transform: none; }
.calm .gpanel::after { display: none; }
.calm .gpanel .in { padding: 22px; color: var(--ink); display: flex; flex-direction: column; flex: 1; }
.calm .gpanel h3 { font-size: clamp(25px, 2.3vw, 33px); }
.calm .gpanel p { color: var(--muted); font-size: 15px; }
.calm .gpanel .code { color: var(--ink); background: var(--sky); font-size: 10px; width: fit-content; }
.calm .gpanel .glinks { max-height: none; opacity: 1; overflow: visible; transition: none; margin-bottom: 12px; }
.calm .gpanel .glinks a { color: var(--deep); min-height: 30px; }
.calm .gpanel .glinks a::before { background: var(--deep); flex-shrink: 0; }
.calm .gpanel .go { color: var(--deep); margin-top: auto; min-height: 38px; }
.calm .gpanel .go::after { background: var(--deep); transform: none; }
.calm .gpanel .credit { top: 160px; background: rgba(255,255,255,.94); color: var(--ink); padding: 2px 5px; font-size: 8px; }
.search-close { min-width: 44px; min-height: 44px; background: white; color: var(--ink); border: 1px solid var(--line); font-size: 26px; cursor: pointer; }
.search-top input { min-width: 0; }
.assist-status { display: block; margin-top: 12px; color: var(--muted); font-size: 13px; }
.calc-table-scroll { overflow-x: auto; max-width: 100%; }
.calc-table-scroll table { min-width: 500px; }
.calc > *, .calc-summary, .calc-compare { min-width: 0; max-width: 100%; }
.media-player { position: relative; }
.media-player video { display: block; width: 100%; }
.video-toggle { position: absolute; right: 14px; bottom: 14px; z-index: 5; min-height: 44px; padding: 10px 14px; color: var(--ink); background: white; border: 1px solid var(--ink); cursor: pointer; font: 700 12px var(--font-body); }
@media (max-width: 980px) {
  .calm .gatesplit-panels { gap: 18px; }
  .calm .gpanel { min-height: 0; display: grid; grid-template-columns: minmax(140px, .8fr) 1.2fr; }
  .calm .gpanel img { height: 100%; min-height: 270px; }
  .calm .gpanel .credit { top: auto; bottom: 3px; left: 3px; right: auto; max-width: 44%; }
}
@media (max-width: 600px) {
  .calm .sec { padding: 42px 0; }
  .calm .gpanel { grid-template-columns: 1fr; }
  .calm .gpanel img { height: 145px; min-height: 0; }
  .calm .gpanel .credit { top: 120px; bottom: auto; left: auto; right: 3px; max-width: 95%; }
  .calm .gpanel .in { padding: 18px; }
  .calm .scene .stage { min-height: 0; height: 270px; }
  .calm .scene .fg { margin-top: 0; padding-top: 28px; padding-bottom: 36px; }
  .pagehead .meta, .ctaband-actions { min-width: 0; }
}
/* Local scroll regions contain wide comparison tables. */
.cmp-scroll, .calc-table-scroll { contain: paint; max-width: 100%; }
.calm .ctaband { background: var(--sky-2); color: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.calm .ctaband::before, .calm .ctaband::after { display: none; }
.calm .ctaband p { color: var(--muted); }
.calm .ctaband .btn.ghost { background: #fff; color: var(--deep); border-color: var(--deep); }
.calm .ctaband .btn.ghost:hover { background: var(--sky); }
.pagehead .ph-media .credit { background: rgba(255,255,255,.94); color: var(--ink); padding: 3px 5px; max-width: calc(100% - 16px); font-size: 9px; }
@media (max-width: 720px) {
  .pagehead .ph-media .cap { top: 12px; bottom: auto; max-width: calc(100% - 16px); }
}
@media (min-width: 721px) { .calm .dock { display: none; } }
.sec-head > * { min-width: 0; }
.sec-head h2 { overflow-wrap: anywhere; hyphens: auto; }
