  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    background-image: linear-gradient(
      to bottom,
      var(--bg) 0%,
      var(--bg2) 55%,
      var(--bg) 100%
    );
  }
  

  .page { display: flex; flex-direction: column; min-height: 100vh; }

/* ── Matching <p> style */

  .legal-content-col ol {
  padding-left: 1.5em;
  margin: 1em 0;
}

.legal-content-col ol li {
  margin-bottom: 0.75em;
  line-height: 1.6; /* match your paragraph line-height */
}

.legal-content-col ol li::marker {
  font-family: var(--mono); /* or var(--sans) */
  font-weight: 300;
  color: var(--ink-meta);
}
/* ── NAV ── ruhigere Variante: kein Sign-in-Button (man IST hier) */
  .site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 52px;
    position: relative;
    z-index: 20;
  }

  /* Separator: verblassende Hairline + grüner Mittelpunkt */
  .site-nav::before,
/* Separator: schlichte, verblassende Hairline unter der Nav */
  .site-nav::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(
      to right,
      transparent 0%,
      var(--border-2) 20%,
      var(--border-2) 80%,
      transparent 100%
    );
    pointer-events: none;
  }
  .site-nav::before {
    width: 120px;
    height: 1px;
    background: linear-gradient(
      to right,
      transparent 0%,
      var(--border-2) 30%,
      var(--border-2) 70%,
      transparent 100%
    );
  }

  .nav-brand {
    font-family: var(--mono);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--ink);
    text-decoration: none;
  }
  .nav-brand .accent { color: var(--green); }

  .nav-links { display: flex; align-items: center; gap: 36px; }
  .nav-links a {
    font-size: 11.5px;
    font-weight: 300;
    color: var(--ink-2);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--ink); }

  .btn-signin {
    font-size: 10.5px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
    border: 0.5px solid rgba(30,28,21,0.18);
    background: rgba(255,255,255,0.55);
    padding: 9px 22px;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
  }
  .btn-signin:hover {
    background: rgba(255,255,255,0.80);
    border-color: rgba(30,28,21,0.30);
    color: var(--ink);
  }

  /* ── PAGE TITLE ── */
  .page-title {
    padding: 96px 52px 56px;
    border-bottom: 0.5px solid var(--border);
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-meta);
    margin-bottom: 32px;
  }
  .eyebrow-mark { width: 12px; height: 0.5px; background: var(--green); }

  .page-title h1 {
    font-family: var(--sans);
    font-size: clamp(40px, 4.4vw, 62px);
    font-weight: 200;
    line-height: 1.04;
    letter-spacing: -0.04em;
    color: var(--ink);
    max-width: 760px;
  }

  .rule { width: 32px; height: 0.5px; background: var(--green); margin: 30px 0 22px; }

  .updated {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--ink-meta);
  }

  /* ── BODY ── */

  /* ── PLACEHOLDER PILL ── */


  /* ── FOOTER ── */
  .site-footer {
    border-top: 0.5px solid var(--border);
    padding: 20px 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer-copy {
    font-family: var(--mono);
    font-size: 9.5px;
    color: var(--ink-meta);
    letter-spacing: 0.06em;
  }
  .footer-links { display: flex; gap: 26px; }
  .footer-link {
    font-size: 9.5px;
    color: var(--ink-meta);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .footer-link:hover { color: var(--ink); }

  /* ── RESPONSIVE ── */
  @media (max-width: 720px) {
    .site-nav { padding: 20px 24px; }
    .nav-links { gap: 20px; }
    .nav-links a:not(.btn-signin) { display: none; }
    .page-title { padding: 60px 24px 44px; }
    .page-body  { padding: 56px 24px 80px; }
    .site-footer {
      padding: 18px 24px;
      flex-direction: column;
      gap: 12px;
      align-items: flex-start;
    }
    .footer-links { flex-wrap: wrap; gap: 18px; }
    .sys-status {
      right: 24px;
      bottom: auto;
      top: 22px;
    }
  
  }

  /* ── FOOTER ── */
  .site-footer {
    padding: 20px 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--mono);
    font-size: 9.5px;
    color: var(--ink-nav);
    letter-spacing: 0.06em;
  }

  .footer-links { display: flex; gap: 26px; }
  .footer-link {
    color: var(--ink-nav);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .footer-link:hover { color: var(--ink); }
