/* Lean Angle — gemeinsame Gestaltung für alle Seiten und beide Sprachen.
   Wird von de/ und en/ identisch verwendet; Änderungen hier wirken überall. */

:root {
    --bg: #ffffff;
    --bg-alt: #f5f5f7;
    --text: #1d1d1f;
    --text-2: #6e6e73;
    --line: #d2d2d7;
    --accent: #0071e3;
    --accent-hover: #0077ed;
    --card: #ffffff;
    --shadow: 0 30px 60px -30px rgba(0,0,0,0.20);
    --dark-band: #000000;
    --dark-band-text: #f5f5f7;
    --dark-band-text-2: #a1a1a6;
    /* fluid layout scales — shared by .wrap, section rhythm and phone clamps */
    --gutter: 22px;
    --section-pad: clamp(60px, 8.5vw, 100px);
  }
  @media (prefers-color-scheme: dark) {
    :root {
      --bg: #000000;
      --bg-alt: #1d1d1f;
      --text: #f5f5f7;
      --text-2: #a1a1a6;
      --line: #3a3a3d;
      --accent: #2997ff;
      --accent-hover: #57a8ff;
      --card: #1d1d1f;
      --shadow: 0 30px 60px -30px rgba(0,0,0,0.7);
    }
  }
  :root[data-theme="dark"] {
    --bg: #000000; --bg-alt: #1d1d1f; --text: #f5f5f7; --text-2: #a1a1a6;
    --line: #3a3a3d; --accent: #2997ff; --accent-hover: #57a8ff; --card: #1d1d1f;
    --shadow: 0 30px 60px -30px rgba(0,0,0,0.7);
  }
  :root[data-theme="light"] {
    --bg: #ffffff; --bg-alt: #f5f5f7; --text: #1d1d1f; --text-2: #6e6e73;
    --line: #d2d2d7; --accent: #0071e3; --accent-hover: #0077ed; --card: #ffffff;
    --shadow: 0 30px 60px -30px rgba(0,0,0,0.20);
  }

  * { box-sizing: border-box; }
  html {
    color-scheme: light dark;
    /* iOS vergrößert sonst eigenmächtig Textblöcke, vor allem beim Drehen ins
       Querformat – dann passen Spaltenbreiten und Umbrüche nicht mehr. */
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
  /* verhindert das Zoomen bei Doppeltipp auf Bedienelemente */
  a, button { touch-action: manipulation; }
  body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
                 "Helvetica Neue", Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }
  ::selection { background: var(--accent); color: #fff; }
  h1, h2, h3 { text-wrap: balance; margin: 0; font-weight: 600; letter-spacing: -0.015em; }
  p { margin: 0; }
  a { color: inherit; }
  img, svg { display: block; max-width: 100%; }
  .num { font-variant-numeric: tabular-nums; }

  /* Horizontal padding only, as longhands: a `padding: 0 22px` shorthand here
     would out-specify `section {...}` below and zero out its vertical rhythm. */
  .wrap { max-width: 1120px; margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

  /* ---------- nav ----------
     Flexbox statt Raster: Die Weltkugel liegt außerhalb des Klappfelds, damit
     sie auf schmalen Bildschirmen neben dem Burger stehen kann. Die
     Menüpunkte werden dafür absolut zentriert statt über eine Rasterspalte. */
  .nav {
    position: sticky; top: 0; z-index: 40;
    height: 48px;
    display: flex; align-items: center;
    padding: 0 20px;
    background: color-mix(in srgb, var(--bg) 72%, transparent);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--line);
    font-size: 12px;
  }
  .nav .logo {
    font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
    color: var(--text); text-decoration: none;   /* Logo ist auf den Rechtsseiten ein Link */
  }
  .nav .logo span { color: var(--accent); }
  .nav .links {
    display: flex; gap: 28px;
    position: absolute; left: 50%; transform: translateX(-50%);
  }
  .nav .links a { color: var(--text); text-decoration: none; opacity: 0.88; }
  .nav .links a:hover { opacity: 1; }
  .nav .cta { margin-left: auto; }   /* schiebt CTA und Weltkugel nach rechts */
  .nav .cta a { color: var(--text); text-decoration: none; opacity: 0.88; }
  .nav .cta a:hover { opacity: 1; }
  /* display:contents lässt .links und .cta auf großen Schirmen zu eigenen
     Flex-Elementen werden, während sie unten ein gemeinsames Klappfeld bilden */
  .nav-menu { display: contents; }
  .nav-toggle { display: none; }

  /* ---------- Sprachumschalter (Weltkugel) ----------
     Verweist auf die andere Domain: lean-angle.de <-> lean-angle.com.
     Steht immer sichtbar in der Leiste – auf schmalen Schirmen links vom
     Burger, nie im Klappfeld. Beschriftung liefern title und aria-label. */
  .nav .lang-switch {
    order: 99;                         /* immer das letzte Element der Leiste */
    margin-left: 18px;
    display: inline-flex; align-items: center;
    color: var(--text); opacity: 0.88;
    -webkit-tap-highlight-color: transparent;
  }
  .nav .lang-switch:hover { opacity: 1; }
  .nav .lang-switch .globe { width: 18px; height: 18px; }

  /* ---------- burger (unter 860px) ----------
     Die Leiste braucht rund 680px für Logo, zentrierte Menüpunkte und CTA;
     darunter klappen die Menüpunkte in ein Feld unter der Leiste. */
  @media (max-width: 860px) {
    .nav .links {
      position: static; transform: none;
      flex-direction: column; gap: 0;
    }
    .nav .lang-switch { margin-left: 6px; }
    .nav .lang-switch .globe { width: 21px; height: 21px; }
    .nav-toggle {
      display: inline-flex; flex-direction: column; justify-content: center;
      gap: 5px;
      width: 40px; height: 40px; padding: 0 9px;
      margin-left: auto;   /* Burger und Weltkugel gemeinsam nach rechts */
      margin-right: 0;
      background: none; border: 0; cursor: pointer;
      -webkit-tap-highlight-color: transparent;
    }
    .nav-toggle .bar {
      display: block; height: 1.5px; width: 100%; border-radius: 2px;
      background: var(--text);
      transition: transform 0.26s cubic-bezier(.2,.7,.3,1), opacity 0.16s linear;
    }
    .nav.open .nav-toggle .bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav.open .nav-toggle .bar:nth-child(2) { opacity: 0; }
    .nav.open .nav-toggle .bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    .nav-menu {
      display: flex; flex-direction: column;
      position: absolute; top: 100%; left: 0; right: 0;
      padding: 4px var(--gutter) 18px;
      /* Deckend statt Milchglas: ein backdrop-filter innerhalb der ebenfalls
         gefilterten, sticky Leiste zeichnet iOS Safari oft gar nicht erst –
         das Menü öffnet sich dann, bleibt aber unsichtbar. */
      background: var(--bg);
      border-bottom: 1px solid var(--line);
      box-shadow: 0 18px 30px -24px rgba(0,0,0,0.5);
    }
    /* Beide Zustände explizit ausschreiben: so hängt der geschlossene Zustand
       nicht davon ab, welche Regel sich in der Kaskade zuletzt durchsetzt. */
    .nav:not(.open) .nav-menu {
      visibility: hidden; opacity: 0; transform: translateY(-10px);
      pointer-events: none;
      transition: opacity 0.24s ease, transform 0.24s cubic-bezier(.2,.7,.3,1),
                  visibility 0s linear 0.24s;
    }
    .nav.open .nav-menu {
      visibility: visible; opacity: 1; transform: none;
      pointer-events: auto;
      transition: opacity 0.24s ease, transform 0.24s cubic-bezier(.2,.7,.3,1);
    }
    .nav-menu .links a, .nav-menu .cta a {
      display: block; padding: 14px 2px; font-size: 17px;
      border-bottom: 1px solid var(--line);
    }
    .nav-menu .cta { margin-left: 0; }
    .nav-menu .cta a { color: var(--accent); border-bottom: 0; }
  }
  @media (prefers-reduced-motion: reduce) {
    .nav-menu, .nav-toggle .bar { transition: none; }
  }

  /* ---------- buttons / links ---------- */
  .pill {
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 17px; font-weight: 400;
    padding: 12px 22px; border-radius: 980px;
    background: var(--accent); color: #fff;
    text-decoration: none; cursor: pointer; border: none;
    transition: background 0.15s ease;
  }
  .pill:hover { background: var(--accent-hover); }
  .pill[aria-disabled="true"] { cursor: default; }
  .textlink {
    font-size: 17px; color: var(--accent); text-decoration: none;
    display: inline-flex; align-items: center; gap: 4px;
  }
  .textlink:hover { text-decoration: underline; }

  /* ---------- generic section rhythm ---------- */
  section { padding-top: var(--section-pad); padding-bottom: var(--section-pad); }
  .bg-alt { background: var(--bg-alt); }
  .center { text-align: center; }
  .eyebrow {
    font-size: 21px; font-weight: 600; color: var(--accent); margin-bottom: 6px;
  }
  .section-head { max-width: 680px; margin: 0 auto 12px; }
  .section-head h2 { font-size: clamp(32px, 4.6vw, 56px); }
  .section-head p.lede {
    font-size: 21px; line-height: 1.5; color: var(--text-2);
    max-width: 42ch; margin: 18px auto 0;
  }

  /* ---------- app icon ---------- */
  .app-icon {
    width: 100px; height: 100px;
    border-radius: 23%;                 /* iOS squircle, approximated */
    background: #000;
    box-shadow: 0 12px 28px -10px rgba(0,0,0,0.45), 0 0 0 1px var(--line);
    margin: 0 auto clamp(18px, 3vw, 26px);
  }

  /* ---------- hero ---------- */
  .hero { padding-top: clamp(48px, 8vw, 84px); padding-bottom: clamp(28px, 4vw, 40px); text-align: center; }
  .hero .eyebrow { font-size: 21px; }
  .hero h1 { font-size: clamp(40px, 7vw, 80px); margin: 6px 0 18px; }
  .hero p.lede {
    font-size: 22px; line-height: 1.5; color: var(--text-2);
    max-width: 44ch; margin: 0 auto 30px;
  }
  .hero-ctas { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 3vw, 26px); flex-wrap: wrap; margin-bottom: clamp(36px, 6vw, 64px); }

  .stage {
    position: relative;
    display: flex; justify-content: center;
    padding: 40px 0 10px;
  }
  .stage::before {
    content: "";
    position: absolute; left: 50%; top: 8%;
    width: 480px; height: 480px; transform: translateX(-50%);
    background: radial-gradient(closest-side, color-mix(in srgb, #35d07f 20%, transparent), transparent 72%);
    filter: blur(10px);
    animation: glow-pulse 5s ease-in-out infinite;
    pointer-events: none;
  }
  @keyframes glow-pulse { 0%,100% { opacity: 0.55; } 50% { opacity: 1; } }

  /* ---------- scroll reveal + idle float ---------- */
  .reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.9s cubic-bezier(.16,.8,.24,1), transform 0.9s cubic-bezier(.16,.8,.24,1);
  }
  .reveal.is-visible { opacity: 1; transform: none; }
  .float-wrap { animation: floaty 6.5s ease-in-out infinite; }
  .float-wrap.float-delay { animation-delay: 0.6s; }
  @keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; }
    .float-wrap { animation: none; }
    .stage::before { animation: none; opacity: 0.7; }
  }

  /* ---------- iPhone frame ---------- */
  .phone {
    background: #000;
    border-radius: 46px;
    border: 8px solid #000;
    box-shadow: var(--shadow), 0 0 0 1.5px var(--line);
    aspect-ratio: 9/19.5;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    /* clamp against the viewport (minus .wrap padding) so frames never overflow;
       a percentage would be circular here, since the parents size to content */
    width: min(260px, calc(100vw - var(--gutter) * 2));
  }
  .phone.landscape { aspect-ratio: 19.5/9; width: min(460px, calc(100vw - var(--gutter) * 2)); border-radius: 34px;}
  .phone.hero-phone { width: min(300px, calc(100vw - var(--gutter) * 2)); }
  .phone img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
  }

  figure { margin: 0; }
  figcaption { margin-top: 22px; }
  figcaption .cap-title { font-size: 17px; font-weight: 600; }
  figcaption .cap-sub { font-size: 14px; color: var(--text-2); margin-top: 4px; max-width: 32ch; }

  /* ---------- feature grid ---------- */
  /* auto-fit reflows 3 → 2 → 1 columns on its own; the last card stretches to
     fill its row, so no empty cell is ever left behind at odd item counts */
  .grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 2px;
    background: var(--line); border-radius: 22px; overflow: hidden;
    margin-top: clamp(36px, 5vw, 56px);
  }
  /* 3 items: only 3 or 1 column, never 2 — two columns would strand the third
     card alone and expose the grid's line background as an empty cell */
  .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  @media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } }
  /* 7 items never fill the final row at 3, 2 or 1 columns — stretch the last one */
  .grid-span-last .cell:last-child { grid-column: 1 / -1; }
  .cell {
    background: var(--card);
    padding: 40px 30px;
    text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
  }
  .cell .ico { width: 40px; height: 40px; color: var(--accent); margin-bottom: 4px; }
  .cell h3 { font-size: 19px; }
  .cell p { color: var(--text-2); font-size: 14.5px; line-height: 1.55; max-width: 30ch; }

  /* ---------- dashboards row ---------- */
  .dash-row {
    display: flex; gap: clamp(40px, 6vw, 72px); justify-content: center; align-items: flex-start;
    flex-wrap: wrap; margin-top: clamp(36px, 5vw, 56px);
  }
  .dash-row figure { display: flex; flex-direction: column; align-items: center; }
  .note {
    max-width: 640px; margin: 56px auto 0; text-align: center;
    font-size: 14px; color: var(--text-2); line-height: 1.6;
  }

  /* ---------- specs ---------- */
  .specs { max-width: 640px; margin: clamp(36px, 5vw, 56px) auto 0; border-top: 1px solid var(--line); }
  .spec-row {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 24px;
    padding: 20px 0; border-bottom: 1px solid var(--line);
  }
  .spec-row .k { font-size: 15px; color: var(--text-2); }
  .spec-row .v { font-size: 15px; }
  @media (max-width: 560px) { .spec-row { grid-template-columns: 1fr; gap: 4px; } }

  /* ---------- release log ---------- */
  .releases { max-width: 860px; margin: clamp(36px, 5vw, 56px) auto 0; }
  .release {
    background: var(--card); border: 1px solid var(--line); border-radius: 22px;
    padding: clamp(26px, 4vw, 38px);
  }
  .release-head {
    display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
    padding-bottom: 20px; border-bottom: 1px solid var(--line);
  }
  .release-version { font-size: clamp(22px, 3vw, 28px); font-weight: 600; letter-spacing: -0.015em; }
  .release-tag {
    font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
    color: var(--accent); border: 1px solid currentColor;
    padding: 4px 10px; border-radius: 980px; white-space: nowrap;
  }
  .release-meta { font-size: 14px; color: var(--text-2); margin-left: auto; }
  @media (max-width: 560px) { .release-meta { margin-left: 0; flex-basis: 100%; } }
  .release-groups {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
    gap: clamp(24px, 3vw, 32px) clamp(28px, 4vw, 44px);
    margin-top: clamp(24px, 3vw, 30px);
  }
  .release-group h3 { font-size: 16px; margin-bottom: 12px; }
  .release-group ul {
    margin: 0; padding-left: 18px;
    display: flex; flex-direction: column; gap: 9px;
  }
  .release-group li { font-size: 14.5px; line-height: 1.55; color: var(--text-2); }
  .release-group li::marker { color: var(--accent); }
  .release-foot {
    margin-top: clamp(24px, 3vw, 30px); padding-top: 20px;
    border-top: 1px solid var(--line);
    font-size: 13.5px; color: var(--text-2); line-height: 1.6;
  }

  .shot {
    max-width: 940px; margin: clamp(36px, 5vw, 52px) auto 0;
  }
  .shot img {
      width: 100%;
      height: auto;
      display: block;
      box-shadow: var(--shadow);
    }
  .shot figcaption {
    margin-top: 20px; text-align: center;
    font-size: 14px; color: var(--text-2); line-height: 1.6;
    max-width: 56ch; margin-left: auto; margin-right: auto;
  }

  /* ---------- Produktfoto RaceBox Mini ----------
     Das PNG ist freigestellt (transparent). Im hellen Modus schwebt es
     deshalb direkt auf der Sektion. Im dunklen Modus wäre das schwarze
     Gerät auf fast schwarzem Grund unsichtbar — dort bekommt es eine
     helle Stellfläche. */
  .product { max-width: 520px; margin: clamp(32px, 4.5vw, 48px) auto 0; }
  .product-stage { border-radius: 22px; padding: clamp(8px, 1.5vw, 18px); }
  .product img { width: 100%; height: auto; }
  .product figcaption {
    margin-top: 14px; text-align: center;
    font-size: 12.5px; color: var(--text-2);
  }
  @media (prefers-color-scheme: dark) {
    .product-stage { background: #f2f2f4; box-shadow: var(--shadow); }
  }
  :root[data-theme="dark"] .product-stage { background: #f2f2f4; box-shadow: var(--shadow); }
  :root[data-theme="light"] .product-stage { background: none; box-shadow: none; }

  /* ---------- geplante Features ---------- */
  .plan-tag {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 12.5px; font-weight: 600; letter-spacing: 0.02em;
    color: var(--accent); border: 1px solid currentColor;
    padding: 5px 13px; border-radius: 980px; margin-bottom: 14px;
  }
  .plan-tag::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%;
    background: currentColor;
  }
  /* feste Spaltenzahlen: auto-fit würde bei breitem Raster eine fünfte Spur
     anlegen und die vier Kacheln ließen eine Leerzelle sichtbar zurück */
  .stats {
    display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2px; background: var(--line);
    border-radius: 22px; overflow: hidden;
    margin-top: clamp(36px, 5vw, 56px);
  }
  @media (max-width: 980px) { .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
  @media (max-width: 520px) { .stats { grid-template-columns: 1fr; } }
  .stat { background: var(--card); padding: clamp(26px, 3.5vw, 34px) 22px; text-align: center; }
  .stat .figure {
    font-size: clamp(30px, 4vw, 40px); font-weight: 600; letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums; color: var(--accent);
  }
  .stat .figure small { font-size: 0.5em; font-weight: 600; margin-left: 2px; letter-spacing: 0; }
  .stat .lbl { font-size: 15px; font-weight: 600; margin-top: 8px; }
  .stat .sub { font-size: 13px; color: var(--text-2); line-height: 1.5; margin-top: 5px; }
  .plan-body {
    max-width: 720px; margin: clamp(36px, 5vw, 52px) auto 0;
    display: flex; flex-direction: column; gap: 16px;
  }
  .plan-body p { font-size: 16.5px; line-height: 1.65; color: var(--text-2); }
  .plan-note {
    font-size: 13px; line-height: 1.6; color: var(--text-2);
    border-top: 1px solid var(--line); padding-top: 16px; margin-top: 4px;
  }

  /* ---------- transparency split ---------- */
  .split {
    display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 5vw, 64px); align-items: center;
  }
  .split .phone { width: min(220px, calc(100vw - var(--gutter) * 2)); margin: 0; }
  .split-text .eyebrow { text-align: left; }
  .split-text h2 { font-size: clamp(28px, 3.6vw, 40px); text-align: left; }
  .split-text p.lede { text-align: left; margin: 18px 0 0; max-width: 46ch; }
  @media (max-width: 780px) {
    .split { grid-template-columns: 1fr; text-align: center; justify-items: center; }
    .split .phone { margin-left: auto; margin-right: auto; }
    .split-text h2, .split-text p.lede { text-align: center; margin-left: auto; margin-right: auto; }
    .split-text .eyebrow { text-align: center; }
  }

  /* ---------- dark cta band ---------- */
  .band-dark { background: var(--dark-band); color: var(--dark-band-text); text-align: center; }
  .band-dark .eyebrow { color: var(--dark-band-text-2); }
  .band-dark h2 { font-size: clamp(32px, 4.6vw, 56px); }
  .band-dark p.lede { color: var(--dark-band-text-2); font-size: 19px; max-width: 46ch; margin: 16px auto 36px; }

  /* ---------- footer ---------- */
  footer { padding: 40px 0 50px; border-top: 1px solid var(--line); }
  footer .legal-note { font-size: 12px; color: var(--text-2); line-height: 1.6; max-width: 720px; margin-bottom: 22px; }
  footer .links { display: flex; flex-wrap: wrap; gap: 0; font-size: 12px; color: var(--text-2); border-top: 1px solid var(--line); padding-top: 18px; }
  footer .links a { text-decoration: none; color: var(--text-2); padding-right: 14px; margin-right: 14px; border-right: 1px solid var(--line); }
  footer .links a:last-child { border-right: none; }
  footer .links a:hover { color: var(--text); }
  footer .copy { font-size: 12px; color: var(--text-2); margin-top: 16px; }

  @media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  }

  /* ---------- legal page layout ---------- */
  .legal-head {
  padding-top: clamp(48px, 8vw, 76px);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  }
  .legal-head .eyebrow {
  font-size: 19px; font-weight: 600; color: var(--accent); margin-bottom: 6px;
  }
  .legal-head h1 { font-size: clamp(36px, 5.4vw, 60px); }
  .legal-head p.lede {
  font-size: 19px; line-height: 1.5; color: var(--text-2);
  max-width: 54ch; margin: 16px 0 40px;
  }

  .legal-body {
  max-width: 720px;
  padding-top: clamp(40px, 6vw, 56px);
  padding-bottom: clamp(64px, 9vw, 96px);
  display: flex; flex-direction: column; gap: clamp(32px, 4.5vw, 44px);
  }
  .legal-body section { display: flex; flex-direction: column; gap: 12px; }
  .legal-body h2 { font-size: 26px; }
  .legal-body h3 { font-size: 18px; margin-top: 8px; }
  .legal-body p, .legal-body li {
  font-size: 16px; line-height: 1.65; color: var(--text-2);
  }
  .legal-body ul { margin: 0; padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
  .legal-body a { color: var(--accent); text-decoration: none; }
  .legal-body a:hover { text-decoration: underline; }
  .legal-body strong { color: var(--text); font-weight: 600; }

  /* definition-list style block for Impressum contact data */
  .contact {
  display: grid; grid-template-columns: 200px 1fr; gap: 2px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: 14px; overflow: hidden;
  }
  .contact dt, .contact dd {
  background: var(--card); margin: 0; padding: 16px 18px; font-size: 15px;
  }
  .contact dt { color: var(--text-2); }
  .contact dd { color: var(--text); }
  @media (max-width: 560px) {
  .contact { grid-template-columns: 1fr; }
  .contact dt { padding-bottom: 2px; }
  .contact dd { padding-top: 2px; }
  }

  /* callout for items the operator must complete before publishing */
  .todo {
  border: 1px dashed var(--accent);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 6px;
  }
  .todo .todo-title {
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--accent); text-transform: uppercase;
  }
  .todo p { font-size: 14.5px; }

  .updated { font-size: 13px; color: var(--text-2); }

  /* Die Rechtstexte gliedern sich in <section>-Elemente. Ohne diese Zeile
     würden sie das globale Abschnitts-Padding von oben erben. */
  .legal-body section { padding-top: 0; padding-bottom: 0; }
