@charset "UTF-8";
/* ── Nova IAM · Deck-Basis ──
   Gemeinsame Grundlage der Editorial-Seiten pitch, risiko,
   betriebskosten und architektur. Fonts und Farb-Token kommen aus
   style.css (Produkt-Theme) — Deck-Seiten laden style.css vor deck.css,
   deshalb hier bewusst kein eigenes :root mehr.
   Seitenspezifische Regeln bleiben inline auf der Seite. */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Type ── */
h1 {
    font-family: var(--serif);
    font-size: 3rem; font-weight: 400; line-height: 1.12; letter-spacing: -.5px;
    color: var(--ink);
    margin-bottom: 20px;
  }

.overline {
    font-family: var(--serif);
    font-size: .88rem; font-weight: 500; font-style: italic; letter-spacing: .005em; text-transform: none;
    color: var(--warm); margin-bottom: 14px; display: block;
  }

/* ── Lang Toggle (ni-pages) ── */
.lang-toggle {
    display: flex; align-items: center; margin-left: 20px;
    border: 1px solid rgba(255, 255, 255, .22); border-radius: 0;
    overflow: hidden; flex-shrink: 0; background: transparent;
  }

.lang-toggle button {
    border: none; background: transparent; cursor: pointer;
    font-family: var(--mono); font-size: .72rem;
    font-weight: 600; letter-spacing: 1.5px;
    color: rgba(255, 255, 255, .6); padding: 5px 11px; line-height: 1;
    transition: background .15s, color .15s;
  }

.lang-toggle button + button { border-left: 1px solid rgba(255, 255, 255, .22); }

.lang-toggle button.active { background: var(--primary); color: var(--secondary); }

.lang-toggle button:hover:not(.active) { background: rgba(255, 255, 255, .08); color: var(--primary); }

/* ── Komponenten, die mehrere Deck-Seiten teilen ── */

.em { color: var(--warm); }

.em-teal { color: var(--teal); }

/* ── Divider ── */
.rule { width: 40px; height: 2px; background: var(--ink); margin-bottom: 24px; }

/* ── Grids ── */
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

/* ── Cards ── */
.card {
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 32px;
    background: var(--surface);
  }

.card p { font-size: .92rem; }

.card-warm { border-left: 3px solid var(--primary); }

.card-teal { border-left: 3px solid var(--teal); }

.card-slate { border-left: 3px solid var(--slate); }

.cmp tr:last-child td { border-bottom: none; }

.cmp .feat { font-weight: 600; color: var(--ink); }

.cmp .nova { background: var(--warm-bg); }

/* ── Inline list ── */
.ilist { list-style: none; margin-top: 10px; }

.ilist li::before {
    content: ''; position: absolute; left: 0; top: 14px;
    width: 6px; height: 6px; border: 2px solid var(--primary); border-radius: 50%;
  }

.ilist-teal li::before { border-color: var(--teal); }

/* ── Lightweight highlight section ── */
.lw-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 40px; }

.lw-cell {
    padding: 36px 40px;
    border: 1px solid var(--border);
  }

.lw-cell h3 { font-family: var(--mono); font-size: .7rem; font-weight: 500;
                 letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }

.lw-cell .val {
    font-family: var(--serif); font-size: 2rem; color: var(--ink);
  }

.lw-cell .ctx { font-size: .85rem; color: var(--text-muted); margin-top: 4px; }

.vs { display: inline-block; font-size: .75rem; color: var(--red-muted); font-weight: 600;
        background: var(--danger-subtle); padding: 2px 10px; border-radius: 2px; margin-left: 8px; vertical-align: middle; }

/* ── CTA ── */
.cta { text-align: center; align-items: center; }

.cta h1 { margin-bottom: 24px; }

/* ── Nav ── */
.ndots {
    position: fixed;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
  }

.ndots a {
    position: relative;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(15, 23, 42, .22);
    display: block;
    transition: width .25s cubic-bezier(.4,0,.2,1),
                height .25s cubic-bezier(.4,0,.2,1),
                background .2s,
                border-radius .25s;
    cursor: pointer;
  }

/* label pill */
.ndots a::after {
    content: attr(data-label);
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--ink);
    color: #fff;
    font-family: var(--sans);
    font-size: .75rem;
    font-weight: 400;
    white-space: nowrap;
    padding: 4px 10px;
    border-radius: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity .15s;
  }

/* hover: bigger dot + show label */
.ndots a:hover {
    width: 10px;
    height: 10px;
    background: var(--warm);
    margin: -2px 0;
  }

.ndots a:hover::after { opacity: 1; }

/* active: elongated pill shape */
.ndots a.on {
    width: 6px;
    height: 22px;
    border-radius: 2px;
    background: var(--warm);
    margin: -8px 0;
  }

.ndots a.on::after { opacity: 1; }

.ilist-slate li::before { border-color: var(--slate); }
