/* ==========================================================================
   ZZD · Zentrum zur Diskursförderung
   Gemeinsames Stylesheet für index.html, 3speech.html, impressum.html,
   datenschutz.html.

   Farblogik: Die Palette ist aus dem Vereinslogo abgeleitet, nicht erfunden.
   Der Handschlag im Logo ist #16304F (Tinte), das rote Quadrantenfeld
   #EB4F40 (daraus der gesättigte Signalton), die drei übrigen Quadranten
   liefern die sekundären Markenfarben für Status- und Themenakzente.
   ========================================================================== */

/* ── 1. Tokens ─────────────────────────────────────────────────────────── */

:root {
  color-scheme: light;

  /* Tinte — Tiefenstaffelung der dunklen Flächen */
  --ink-900: #0A1826;
  --ink-800: #0F2337;
  --ink-700: #16304F;   /* Logo-Navy */
  --ink-600: #1E4470;

  /* Helle Flächen — kühl, kein Papierbeige */
  --paper: #FFFFFF;
  --surface-1: #F3F7FA;
  --surface-2: #E7EEF5;
  --elevated: #FFFFFF;

  /* Linien — sichtbar statt 10 % Schwarz */
  --line: #D2DCE7;
  --line-soft: #E4EBF2;
  --line-strong: #B4C3D3;

  /* Text */
  --text: #0D1F31;
  --text-body: #33475C;
  --text-muted: #5C7189;
  --text-faint: #8698AC;

  /* Signal — der einzige Akzent */
  --accent: #E02435;
  --accent-ink: #C1121F;      /* Kleintext auf Hell, AA-fest */
  --accent-strong: #B00D1C;
  --accent-soft: rgba(224, 36, 53, 0.10);
  --accent-line: rgba(224, 36, 53, 0.28);
  --on-accent: #FFFFFF;
  --accent-on-ink: #FF6E78;

  /* Sekundäre Markenfarben aus den Logoquadranten */
  --brand-blue: #1A6FA6;
  --brand-green: #3E8A63;
  --brand-yellow: #E0AF2A;

  /* Dunkle Panels (Spenden, Footer) — im Dark Mode eigene Werte */
  --panel: #0A1826;
  --panel-2: #12293F;
  --panel-text: #FFFFFF;
  --panel-body: rgba(233, 240, 247, 0.72);
  --panel-muted: rgba(233, 240, 247, 0.48);
  --panel-faint: rgba(233, 240, 247, 0.30);
  --panel-line: rgba(255, 255, 255, 0.12);
  --panel-line-soft: rgba(255, 255, 255, 0.07);
  --panel-hover: #16324C;

  /* Status */
  --status-live: #17A34A;
  --status-beta: #D98217;
  --status-soon: #6B7F95;

  /* Tiefe — navygetönt, nie neutralschwarz */
  --shadow-xs: 0 1px 2px rgba(10, 24, 38, 0.06);
  --shadow-sm: 0 2px 8px rgba(10, 24, 38, 0.07);
  --shadow-md: 0 10px 30px -12px rgba(10, 24, 38, 0.24);
  --shadow-lg: 0 28px 60px -28px rgba(10, 24, 38, 0.36);
  --shadow-pop: 0 16px 44px -12px rgba(10, 24, 38, 0.22), 0 2px 6px rgba(10, 24, 38, 0.08);

  /* Bewegung */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast: 140ms;
  --t-base: 240ms;
  --t-slow: 520ms;

  /* Raster */
  --nav-h: 76px;
  --sec-pad: clamp(2.25rem, 3.6vw, 3.75rem);
  --nav-h-compact: 64px;
  --maxw: 1560px;
  --radius-sm: 7px;
  --radius: 12px;
  --radius-lg: 20px;

  /* Rückwärtskompatible Aliase (alter Seitencode) */
  --black: var(--text);
  --white: var(--paper);
  --off: var(--surface-1);
  --red: var(--accent);
  --blue: var(--ink-700);
  --mid: var(--text-muted);
  --border: var(--line);
}

:root[data-theme="dark"] {
  color-scheme: dark;

  --ink-900: #050E17;
  --ink-800: #0A1725;
  --ink-700: #16304F;
  --ink-600: #2A5580;

  --paper: #0A1420;
  --surface-1: #0F1E2D;
  --surface-2: #152838;
  --elevated: #11202F;

  --line: #24384C;
  --line-soft: #1A2B3C;
  --line-strong: #35536F;

  --text: #EAF1F8;
  --text-body: #C4D3E1;
  --text-muted: #9BB0C6;
  --text-faint: #7A8FA6;

  --accent: #FF4D5A;
  --accent-ink: #FF6E78;
  --accent-strong: #FF3B49;
  --accent-soft: rgba(255, 77, 90, 0.14);
  --accent-line: rgba(255, 77, 90, 0.34);
  --on-accent: #14060A;
  --accent-on-ink: #FF7A83;

  --brand-blue: #4EA3D8;
  --brand-green: #5FB588;
  --brand-yellow: #E9BE4A;

  --panel: #0D1B29;
  --panel-2: #17324B;
  --panel-text: #EAF1F8;
  --panel-body: rgba(234, 241, 248, 0.74);
  --panel-muted: rgba(234, 241, 248, 0.52);
  --panel-faint: rgba(234, 241, 248, 0.34);
  --panel-line: rgba(255, 255, 255, 0.10);
  --panel-line-soft: rgba(255, 255, 255, 0.06);
  --panel-hover: #1B3C59;

  --status-live: #34D07A;
  --status-beta: #F0A63A;
  --status-soon: #8AA0B7;

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 12px 34px -14px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 30px 70px -30px rgba(0, 0, 0, 0.8);
  --shadow-pop: 0 18px 50px -14px rgba(0, 0, 0, 0.66), 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* ── 2. Basis ──────────────────────────────────────────────────────────── */

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

html {
  /* 109,375 % von 16px = 17,5px Basis. Das entspricht der Seite bei 125 %
     Browserzoom — so liest sie sich am Rechner, ohne dass jemand zoomen
     muss. Prozent statt px, damit die Schriftgrößen-Einstellung des
     Browsers weiterhin wirkt. */
  font-size: 109.375%;
  scroll-behavior: smooth;
  /* Der Versatz steckt in scroll-margin-top der Abschnitte — beides zu
     setzen addiert sich und schiebt die Überschrift zu weit nach unten. */
  scroll-padding-top: 0;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: 'Spartan', 'League Spartan', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--paper);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis-weight: none;
  transition: background-color var(--t-base) var(--ease), color var(--t-base) var(--ease);
}

img { max-width: 100%; height: auto; display: block }
::selection { background: var(--accent); color: var(--on-accent) }

/* Fokus: sichtbar als Designelement, nicht als Browser-Unfall */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}
:focus:not(:focus-visible) { outline: none }

/* Schriftgrössen: eine Stufe grösser und kontrastreicher als bisher */
.eyebrow {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
  transform-origin: left;
  transition: transform var(--t-slow) var(--ease-out);
}
.eyebrow.is-plain::before { display: none }

.section-eyebrow {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 1.2rem;
}

.section-h {
  font-size: clamp(1.55rem, 2.3vw, 2.45rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: var(--text);
}

.lede { font-size: 0.86rem; line-height: 1.58; color: var(--text-body) }

/* ── 3. Bewegung ───────────────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition:
    opacity 0.7s var(--ease-out) var(--reveal-delay, 0ms),
    transform 0.7s var(--ease-out) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; will-change: auto }

/* Überschriften kommen weiter von unten als Fliesstext — leichte Tiefenwirkung */
.reveal-h { transform: translate3d(0, 30px, 0) }
.reveal-soft { transform: translate3d(0, 12px, 0) }

/* Kinder gestaffelt: --i wird per JS gesetzt */
.stagger > * {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 0.62s var(--ease-out) calc(var(--i, 0) * 65ms),
    transform 0.62s var(--ease-out) calc(var(--i, 0) * 65ms);
}
.stagger.in > * { opacity: 1; transform: none }

/* Zahlen zählen hoch, ohne dass die Zeile springt */
.tnum { font-variant-numeric: tabular-nums; font-feature-settings: 'tnum' 1 }

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

/* ── 4. Buttons ────────────────────────────────────────────────────────── */

.btn {
  font-family: inherit;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.78rem 1.45rem;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  position: relative;
  transition:
    transform var(--t-base) var(--ease),
    box-shadow var(--t-base) var(--ease),
    background-color var(--t-base) var(--ease),
    border-color var(--t-base) var(--ease),
    color var(--t-base) var(--ease);
}
.btn:active { transform: translateY(1px) scale(0.995) }

/* Der Akzent wischt von unten herein, statt hart umzuschalten */
.btn-dark {
  background: var(--ink-900);
  color: #fff;
  border-color: var(--ink-900);
  box-shadow: var(--shadow-xs);
}
.btn-dark:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-line {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-line:hover {
  background: var(--ink-900);
  border-color: var(--ink-900);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-accent { background: var(--accent); color: var(--on-accent) }
.btn-accent:hover { background: var(--accent-strong); transform: translateY(-1px); box-shadow: var(--shadow-md) }

.btn .arrow { transition: transform var(--t-base) var(--ease) }
.btn:hover .arrow { transform: translateX(3px) }

/* Textlink mit Unterstrich, der aus der Mausrichtung wächst */
.link-u {
  position: relative;
  text-decoration: none;
  color: inherit;
}
.link-u::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: var(--u-origin, left);
  transition: transform var(--t-base) var(--ease);
}
.link-u:hover::after, .link-u:focus-visible::after { transform: scaleX(1) }

/* ── 5. Navigation ─────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 clamp(1.25rem, 4vw, 4rem);
  height: var(--nav-h);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition:
    height var(--t-base) var(--ease),
    background-color var(--t-base) var(--ease),
    border-color var(--t-base) var(--ease),
    box-shadow var(--t-base) var(--ease);
}
.nav.is-scrolled {
  height: var(--nav-h-compact);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}


.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 44px;
  width: auto;
  transition: transform var(--t-slow) var(--ease), height var(--t-base) var(--ease);
}
.nav.is-scrolled .nav-logo img { height: 37px }
.nav-logo:hover img { transform: rotate(-6deg) scale(1.04) }

.nav-logo-text {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.3;
}
.nav-logo-short {
  display: block;
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  gap: clamp(1.1rem, 2.2vw, 2.2rem);
  list-style: none;
  align-items: center;
}
.nav-links a:not(.nav-cta) {
  position: relative;
  color: var(--text-body);
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0;
  transition: color var(--t-fast) var(--ease);
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: var(--u-origin, left);
  transition: transform var(--t-base) var(--ease);
}
.nav-links a:not(.nav-cta):hover { color: var(--text) }
.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta):focus-visible::after { transform: scaleX(1) }
.nav-links a.is-current { color: var(--text) }
.nav-links a.is-current::after { transform: scaleX(1); background: var(--line-strong) }

.nav-right { display: flex; align-items: center; gap: 0.9rem }

.nav-cta {
  background: var(--ink-900);
  color: #fff;
  padding: 0.68rem 1.3rem;
  border-radius: var(--radius-sm);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition:
    background-color var(--t-base) var(--ease),
    transform var(--t-base) var(--ease),
    box-shadow var(--t-base) var(--ease);
}
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); box-shadow: var(--shadow-md) }

.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  z-index: 400;
  background: var(--ink-900);
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: top var(--t-base) var(--ease);
}
.skip-link:focus { top: 0 }

/* ── 6. Header-Werkzeuge: Sprache und Darstellung ──────────────────────
   Beide Elemente sind exakt gleich hoch (30px) und gleich gerundet, damit
   die Zeile ruhig liegt. Sprache als Segmentschalter statt Menü: drei
   Zeichen, ein Zustand, kein Aufklappen, kein Häkchen.
   ─────────────────────────────────────────────────────────────────────── */

.seg {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  height: 37px;
  padding: 2px;
  background: var(--surface-2);
  border-radius: 999px;
}

.seg-btn {
  appearance: none;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  height: 32px;
  padding: 0 0.6rem;
  border-radius: 999px;
  cursor: pointer;
  transition: color var(--t-fast) var(--ease), background-color var(--t-fast) var(--ease);
}

.seg-btn:hover { color: var(--text) }

.seg-btn[aria-pressed="true"] {
  background: var(--elevated);
  color: var(--text);
  box-shadow: var(--shadow-xs);
}

.icon-btn {
  appearance: none;
  width: 37px;
  height: 37px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), background-color var(--t-fast) var(--ease);
}

.icon-btn:hover { color: var(--text); border-color: var(--line-strong); background: var(--surface-1) }
.icon-btn svg { width: 18px; height: 18px; display: block }

/* Sonne und Mond tauschen ohne Bewegung: der Wechsel selbst ist sofort */
.theme-btn .icon-wrap { position: relative; width: 18px; height: 18px }
.theme-btn svg { position: absolute; inset: 0 }
.theme-btn .icon-moon { display: none }
:root[data-theme="dark"] .theme-btn .icon-sun { display: none }
:root[data-theme="dark"] .theme-btn .icon-moon { display: block }

/* ── 7. Mobile Navigation ──────────────────────────────────────────────── */

.nav-burger { display: none }
.burger-box { position: relative; width: 18px; height: 14px }
.burger-box i {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.7px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--t-base) var(--ease), opacity var(--t-fast) var(--ease);
}
.burger-box i:nth-child(1) { top: 0 }
.burger-box i:nth-child(2) { top: 4.6px }
.burger-box i:nth-child(3) { top: 9.2px }
body.drawer-open .burger-box i:nth-child(1) { transform: translateY(4.6px) rotate(45deg) }
body.drawer-open .burger-box i:nth-child(2) { opacity: 0 }
body.drawer-open .burger-box i:nth-child(3) { transform: translateY(-4.6px) rotate(-45deg) }

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: var(--paper);
  padding: calc(var(--nav-h) + 1.4rem) clamp(1.25rem, 5vw, 2rem) 3rem;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  visibility: hidden;
  transition: opacity var(--t-base) var(--ease), transform var(--t-base) var(--ease), visibility 0s linear var(--t-base);
  overflow-y: auto;
}
body.drawer-open .nav-drawer {
  opacity: 1; transform: none; pointer-events: auto; visibility: visible; transition-delay: 0s;
}
body.drawer-open { overflow: hidden }

/* Bei geoeffnetem Overlay soll die Seite dahinter nicht mitscrollen —
   showModal() sperrt das nicht in jedem Browser. */
body.dialog-open { overflow: hidden }

.nav-drawer > a {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease-out) calc(var(--i, 0) * 45ms), transform 0.4s var(--ease-out) calc(var(--i, 0) * 45ms);
}
body.drawer-open .nav-drawer > a { opacity: 1; transform: none }
.nav-drawer > a::after {
  content: '';
  width: 6px; height: 6px;
  border-right: 1.5px solid var(--accent);
  border-top: 1.5px solid var(--accent);
  transform: rotate(45deg) translateX(-3px);
  opacity: 0.5;
  transition: transform var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease);
}
.nav-drawer > a:hover::after { transform: rotate(45deg) translateX(0); opacity: 1 }
/* Der Fuss der Schublade trägt die Sprachwahl — aber nur dort, wo sie aus
   der Leiste weichen musste. Oberhalb davon steht sie weiter im Kopf. */
.drawer-cta {
  margin-top: auto;
  padding-top: 2rem;
  display: none;
}
.drawer-cta .btn { width: 100% }

.drawer-foot {
  padding-top: 0.9rem;
  display: none;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}
.drawer-foot-label {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── 8. Formulare ──────────────────────────────────────────────────────── */

.field { display: flex; flex-direction: column; gap: 0.35rem }
.field > label,
.field-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-body);
  transition: color var(--t-fast) var(--ease);
}
.field:focus-within > label { color: var(--accent-ink) }

.field input,
.field textarea,
.select-trigger {
  font-family: inherit;
  font-size: 0.8rem;
  line-height: 1.4;
  min-height: 42px;
  padding: 0.66rem 0.85rem;
  background: var(--elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  outline: none;
  width: 100%;
  font-weight: 400;
  /* Border-Breite bleibt konstant: der Fokus liegt im box-shadow, nichts springt */
  transition:
    border-color var(--t-fast) var(--ease),
    box-shadow var(--t-fast) var(--ease),
    background-color var(--t-fast) var(--ease);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-faint) }
.field input:hover,
.field textarea:hover,
.select-trigger:hover { border-color: var(--line-strong) }
.field input:focus,
.field textarea:focus,
.select-trigger:focus-visible,
.select.is-open .select-trigger {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  outline: none;
}
.field textarea { min-height: 108px; resize: vertical }
/* Die Spamfalle wird aus dem Bild geschoben, nicht ausgeblendet: manche
   Bots überspringen, was ohnehin nicht dargestellt wird. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form[hidden] { display: none }
.form { display: flex; flex-direction: column; gap: 0.9rem }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem }
.btn-block { width: 100%; justify-content: center }

/* ── 9. Custom Select — klebt an der Zeile, kein natives Popup ─────────── */

.select { position: relative; width: 100% }

.select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
  text-align: left;
}
.select-value { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap }
.select-trigger[data-empty="true"] .select-value { color: var(--text-faint) }
.select-trigger .chev {
  width: 9px; height: 9px;
  border-right: 1.6px solid var(--text-muted);
  border-bottom: 1.6px solid var(--text-muted);
  transform: rotate(45deg) translate(-2px, -2px);
  flex-shrink: 0;
  transition: transform var(--t-base) var(--ease), border-color var(--t-fast) var(--ease);
}
.select.is-open .select-trigger .chev {
  transform: rotate(225deg) translate(-2px, -2px);
  border-color: var(--accent);
}

/* Das Panel sitzt bündig auf der Feldkante: exakt 6px Abstand, gleiche Breite,
   gleiche Rundung — keine zufälligen Lücken wie beim nativen Popup. */
.select-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  z-index: 80;
  background: var(--elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-pop);
  padding: 0.3rem;
  max-height: 268px;
  overflow-y: auto;
  overscroll-behavior: contain;
  list-style: none;
  transform-origin: top center;
  opacity: 0;
  transform: translateY(-6px) scale(0.985);
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity var(--t-fast) var(--ease),
    transform var(--t-fast) var(--ease),
    visibility 0s linear var(--t-fast);
}
.select.is-open .select-panel {
  opacity: 1; transform: none; pointer-events: auto; visibility: visible; transition-delay: 0s;
}
/* Nach oben öffnen, wenn unten kein Platz ist */
.select.drop-up .select-panel {
  top: auto;
  bottom: calc(100% + 6px);
  transform-origin: bottom center;
  transform: translateY(6px) scale(0.985);
}
.select.drop-up.is-open .select-panel { transform: none }

.select-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--text-body);
  cursor: pointer;
  scroll-margin: 0.3rem;
  transition: background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.select-option::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--line-strong);
  flex-shrink: 0;
  transition: background-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.select-option:hover,
.select-option.is-active { background: var(--surface-1); color: var(--text) }
.select-option:hover::before,
.select-option.is-active::before { background: var(--accent); transform: scale(1.25) }
.select-option[aria-selected="true"] { color: var(--text); font-weight: 600 }
.select-option[aria-selected="true"]::before { background: var(--accent) }

/* ── 10. Wiederkehrende Bausteine ──────────────────────────────────────── */

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}
.status-dot.live { background: var(--status-live); box-shadow: 0 0 0 3px color-mix(in srgb, var(--status-live) 22%, transparent) }
.status-dot.beta { background: var(--status-beta); box-shadow: 0 0 0 3px color-mix(in srgb, var(--status-beta) 22%, transparent) }
.status-dot.soon { background: var(--status-soon); box-shadow: 0 0 0 3px color-mix(in srgb, var(--status-soon) 20%, transparent) }
/* Der Live-Punkt atmet — einmal alle drei Sekunden, kaum wahrnehmbar */
.status-dot.live::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--status-live);
  animation: ping 3s var(--ease-out) infinite;
}
@keyframes ping {
  0% { transform: scale(1); opacity: 0.55 }
  70%, 100% { transform: scale(2.6); opacity: 0 }
}
.status-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.tag {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--ink-900);
  color: #fff;
  display: inline-block;
  padding: 0.34rem 0.7rem;
  border-radius: 4px;
  align-self: flex-start;
}

/* Laufband */
.marquee {
  overflow: hidden;
  background: var(--panel);
  padding: 0.85rem 0;
  border-top: 1px solid var(--panel-line-soft);
  border-bottom: 1px solid var(--panel-line-soft);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 62s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused }
.marquee-track span {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--panel-body);
  padding: 0 2rem;
  border-right: 1px solid var(--panel-line-soft);
  flex-shrink: 0;
}
@keyframes scroll {
  from { transform: translate3d(0, 0, 0) }
  to { transform: translate3d(-50%, 0, 0) }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; transform: none }
  .status-dot.live::after { animation: none; opacity: 0 }
}

/* Karten */
.card {
  background: var(--elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition:
    transform var(--t-base) var(--ease),
    box-shadow var(--t-base) var(--ease),
    border-color var(--t-base) var(--ease);
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-lg);
}

/* ── 11. Footer ────────────────────────────────────────────────────────── */

footer {
  background: var(--panel);
  padding: 2.75rem clamp(1.25rem, 4vw, 4rem) 1.75rem;
  border-top: 1px solid var(--line);
}
.footer-inner { max-width: var(--maxw); margin: 0 auto }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--panel-line);
  margin-bottom: 1.4rem;
}
.footer-logo-wrap { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.2rem }
.footer-logo-wrap img { height: 32px; width: 32px }
.footer-brand-name {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--panel-body);
  line-height: 1.4;
}
.footer-brand-name span { display: block; font-weight: 400; color: var(--panel-muted); font-size: 0.58rem }
.footer-brand-desc {
  font-size: 0.76rem;
  color: var(--panel-muted);
  line-height: 1.6;
  max-width: 300px;
}
.footer-col-title {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--panel-faint);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem }
.footer-col a {
  color: var(--panel-muted);
  text-decoration: none;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  position: relative;
  width: fit-content;
  transition: color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
  display: inline-block;
}
.footer-col a:hover { color: var(--panel-text); transform: translateX(3px) }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.64rem; color: var(--panel-faint) }
.footer-legal { display: flex; gap: 1.5rem }
.footer-legal a {
  font-size: 0.64rem;
  color: var(--panel-faint);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}
.footer-legal a:hover { color: var(--panel-body) }

/* ── 12. Rechtsseiten ──────────────────────────────────────────────────── */

.legal-page {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 2.5rem) clamp(1.5rem, 3.5vw, 3.5rem) var(--sec-pad);
}

/* Fliesstext bleibt in Lesebreite, der Rahmen folgt der Seite */
.legal-inner { max-width: 74ch }
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color var(--t-fast) var(--ease), gap var(--t-fast) var(--ease);
}
.back-btn:hover { color: var(--accent-ink); gap: 0.75rem }
.legal-h1 {
  hyphens: auto;
  overflow-wrap: break-word;
  font-size: clamp(1.55rem, 2.3vw, 2.45rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin-bottom: 0.8rem;
  color: var(--text);
}
.legal-note {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.58;
  background: var(--surface-1);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  margin-bottom: 2.5rem;
}
.legal-body { border-top: 1px solid var(--line); padding-top: 2rem }
.legal-block { padding-top: 1.6rem; margin-bottom: 2.25rem; border-top: 1px solid var(--line) }
.legal-block:first-child { padding-top: 0; border-top: none }
.legal-block:last-child { margin-bottom: 0 }
.legal-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 1rem;
}
.legal-p { font-size: 0.83rem; line-height: 1.62; color: var(--text-body); margin-bottom: 0.8rem }
.legal-p:last-child { margin-bottom: 0 }
.legal-p strong { color: var(--text); font-weight: 700 }
.legal-strong { font-size: 0.83rem; line-height: 1.62; color: var(--text); font-weight: 600 }
.legal-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 0.8rem }
.legal-list li { font-size: 0.83rem; line-height: 1.6; color: var(--text-body); padding-left: 1.1rem; position: relative }
.legal-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.65em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.legal-link {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-line);
  transition: border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.legal-link:hover { color: var(--accent-ink); border-bottom-color: var(--accent) }

/* ── 13. Hilfsklassen und Umbrüche ─────────────────────────────────────── */

.wrap { max-width: var(--maxw); margin: 0 auto }
section[id] { scroll-margin-top: calc(var(--nav-h-compact) + 14px - var(--sec-pad)) }
.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;
}
.no-js-hidden { display: none }

/* Ohne JavaScript bleibt nichts unsichtbar: .reveal wirkt nur, wenn html.js gesetzt ist */
html:not(.js) .reveal,
html:not(.js) .stagger > * { opacity: 1 !important; transform: none !important }

/* Zwischen 1140 und 1300px wird es in der Leiste eng: engere Abstände
   und kleinere Schrift verschaffen den Menüpunkten die nötige Luft. */
@media (max-width: 1300px) {
  .nav-links { gap: 1.1rem }
  .nav-links a:not(.nav-cta) { font-size: 0.64rem }
}

/* Ab hier passen Wortmarke, Menü, Sprache, Darstellung und Spenden-Knopf
   nicht mehr nebeneinander — das Menü wandert in die Schublade. */
@media (max-width: 1140px) {
  .nav-links, .nav-cta.is-desktop { display: none }
  .nav-burger { display: inline-grid }
}

@media (max-width: 960px) {
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem }
  .form-row { grid-template-columns: 1fr }
  footer { padding: 3.5rem 1.5rem 2rem }
  .legal-page { padding: calc(var(--nav-h) + 2.5rem) 1.5rem 4rem }
}

@media (max-width: 560px) {
  .footer-bottom { flex-direction: column; align-items: flex-start }
}

/* Sanfter Themenwechsel: die Seite blendet um, statt hart umzuschalten */
::view-transition-old(root),
::view-transition-new(root) { animation: none; mix-blend-mode: normal }
::view-transition-old(root) { z-index: 1 }
::view-transition-new(root) { z-index: 2 }
html.theme-anim.no-vt body { transition: background-color 320ms var(--ease), color 320ms var(--ease) }

/* Abstands-Hilfsklassen (ersetzen die früheren Inline-Styles) */
.mb-md { margin-bottom: 1.1rem }
.mt-lg { margin-top: 1.6rem }
.mt-sm { margin-top: 0.9rem }
/* Signalton auf dunklen Flächen — dort wäre das Rot sonst zu dumpf */
.section-eyebrow.on-ink { color: var(--accent-on-ink) }

/* ── 14. Zentrierte Sektionsköpfe ──────────────────────────────────────
   Jeder Abschnitt beginnt gleich: Kennzeichnung, Titel, ein Satz Erklärung —
   mittig, in derselben Breite. Danach folgt der Inhalt in gleichmässigen
   Reihen. Das nimmt die Unruhe aus dem Wechsel von links und rechts.
   ─────────────────────────────────────────────────────────────────────── */

.section-head {
  max-width: 62ch;
  margin: 0 0 clamp(1.25rem, 2.2vw, 1.9rem);
}

.section-head .section-eyebrow { margin-bottom: 0.7rem }
.section-head .section-h { margin-bottom: 0.8rem }
.section-head p {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--text-body);
  max-width: 58ch;
}

.center-col { max-width: 680px; margin: 0 auto }
.text-center { text-align: center }

/* Im Dunkelmodus muss das gewählte Segment HELLER sein als die Schiene,
   sonst kehrt sich die Erhöhung um und der Schalter liest sich falsch. */
:root[data-theme="dark"] .seg { background: #0F1E2D }
:root[data-theme="dark"] .seg-btn[aria-pressed="true"] { background: #263D53; color: #EAF1F8 }

/* Dunkler Knopf im dunklen Modus: Tinte auf Tinte trägt nicht. Die
   Hauptaktion dreht sich um und steht hell auf dunklem Grund — der
   Signalton bleibt dem Überfahren vorbehalten. */
:root[data-theme="dark"] .btn-dark,
:root[data-theme="dark"] .nav-cta {
  background: var(--text);
  color: var(--paper);
  border-color: var(--text);
}
:root[data-theme="dark"] .btn-dark:hover,
:root[data-theme="dark"] .nav-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
}

/* Fehlender Pflichtwert im eigenen Dropdown */
.select.is-invalid .select-trigger {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.field-error {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--accent-ink);
  margin-top: 0.3rem;
}

/* ── 15. Ein Gedanke pro Bildschirm ─────────────────────────────────────
   Jeder Abschnitt füllt mindestens eine Bildschirmhöhe und liegt darin
   mittig. Ist der Inhalt länger als der Bildschirm, wächst der Abschnitt
   normal mit — es wird nichts abgeschnitten. Auf schmalen Geräten gilt
   die Regel nicht, dort zählt der Lesefluss.
   ─────────────────────────────────────────────────────────────────────── */

/* ── 17. Farbige Bänder als ganze Kapitel ───────────────────────────────
   Ein dunkler Abschnitt von wenigen hundert Pixeln liest sich als Streifen
   zwischen zwei hellen Flächen. Mit voller Höhe wird er zum eigenen
   Kapitel. Helle Abschnitte bleiben bei natürlicher Höhe — dort wäre die
   erzwungene Höhe nur Leerraum.
   ─────────────────────────────────────────────────────────────────────── */

.is-chapter {
  min-height: calc(100vh - var(--nav-h));
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  align-items: center;
}

.is-chapter > .inner,
.is-chapter > .sp-inner { width: 100% }

@media (max-width: 960px) {
  .is-chapter { min-height: 0; display: block }
}

/* ── 18. Automatisch ausgefüllte Felder ─────────────────────────────────
   Der Browser legt eine eigene Fläche über ausgefüllte Felder. Sie lässt
   sich nicht direkt setzen, wohl aber durch einen sehr grossen inneren
   Schatten überdecken; die Schriftfarbe braucht -webkit-text-fill-color.
   ─────────────────────────────────────────────────────────────────────── */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: var(--text);
  -webkit-box-shadow: 0 0 0 100px var(--elevated) inset;
  box-shadow: 0 0 0 100px var(--elevated) inset;
  caret-color: var(--text);
  transition: background-color 100000s ease-in-out 0s;
}

/* ── 17. Bestätigung nach dem Absenden ──────────────────────────────────
   Die Antwort bleibt dort, wo die Frage gestellt wurde. Das Panel steht als
   Geschwister neben dem Formular, ist verborgen und tritt an dessen Stelle,
   sobald die Nachricht durch ist.
   ─────────────────────────────────────────────────────────────────────── */

.form-done[hidden] { display: none }

.form-done {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--elevated);
  outline: none;
  animation: doneIn 0.5s var(--ease-out) both;
}

@keyframes doneIn {
  from { opacity: 0; transform: translateY(10px) }
  to { opacity: 1; transform: none }
}

@media (prefers-reduced-motion: reduce) {
  .form-done { animation: none }
}

.form-done-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  margin-bottom: 0.35rem;
}
.form-done-mark svg { width: 17px; height: 17px; display: block }

.form-done h3 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
}
.form-done p {
  font-size: 0.82rem;
  line-height: 1.62;
  color: var(--text-body);
  max-width: 42ch;
}
.form-done-again { margin-top: 0.5rem }

.form-fail {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--accent-ink);
}
.form-fail a { color: inherit; text-underline-offset: 3px }

/* Während der Übertragung reagiert nichts mehr, aber es springt auch nichts */
form.is-sending { opacity: 0.55; pointer-events: none }

/* ── 18. Handy und Tablet ───────────────────────────────────────────────
   Auf dem Rechner steht die Schriftgrundlage bei 87,5 %, damit die Seite
   ruhig und kompakt liegt. Auf dem Handy ist der Leseabstand kürzer und der
   Finger gröber: dort gilt wieder 100 %, und alles Antippbare wächst auf ein
   Mass, das man auch in Bewegung trifft.
   ─────────────────────────────────────────────────────────────────────── */

/* Sobald das Menü zum Knopf wird, ist es ein Berührungsgerät: ab hier
   zählt die Fingerbreite, nicht die Mausspitze. Die Schriftgrundlage bleibt
   in diesem Bereich noch beim kompakten Mass des Rechners. */
@media (max-width: 960px) {
  .icon-btn { width: 38px; height: 38px }
  .icon-btn svg { width: 17px; height: 17px }
  .theme-btn .icon-wrap { width: 17px; height: 17px }
  .burger-box { width: 17px; height: 12px }

  .seg { height: 38px; padding: 3px }
  .seg-btn { height: 32px; padding: 0 0.9rem }

  .nav-drawer > a { padding: 1.05rem 0 }
  .footer-col ul { gap: 0.05rem }
  .footer-col a { padding: 11px 0 }
  .footer-legal a { padding: 10px 0 }
  .back-btn, .sp-back { padding-top: 10px; padding-bottom: 10px }
  .chip-val a { display: inline-block; padding: 9px 0 }
}

/* Auf dem Rechner steht die Schriftgrundlage bei 87,5 %, damit die Seite
   ruhig und kompakt liegt. Auf dem Handy ist der Leseabstand kürzer und der
   Finger gröber: dort gilt wieder 100 %. */
@media (max-width: 700px) {
  /* Am Telefon bleibt es, wie es war: die Größe stimmt dort schon, und
     eine 76px hohe Leiste nähme dem ersten Bildschirm zu viel. */
  html { font-size: 100% }
  :root { --nav-h: 62px; --nav-h-compact: 52px }

  .nav { padding: 0 1rem; gap: 0.6rem }
  .nav-right { gap: 0.4rem }
  .nav-logo { gap: 0.55rem }

  /* In der Leiste steht nur noch das Kürzel — die volle Wortmarke braucht
     Platz, den Sprache, Darstellung und Menü schon beanspruchen. */
  .nav-logo-full { display: none }
  .nav-logo-short { font-weight: 700; letter-spacing: 0.11em; color: var(--text) }

  /* Die Sprache zieht dorthin, wo ohnehin die Navigation liegt */
  .nav-right > .seg { display: none }
  .drawer-foot { display: flex }
  .drawer-cta { display: block }

  .section-eyebrow { letter-spacing: 0.16em }
  .btn { padding: 0.85rem 1.5rem }
  .footer-col a { font-size: 0.82rem }
}


.donate-hint {
  margin-top: 1.1rem;
  font-size: 0.76rem;
  line-height: 1.55;
  color: var(--panel-muted);
  max-width: 52ch;
}

/* ── 19. Danke-Seite ────────────────────────────────────────────────────
   Der Weg ohne JavaScript endet hier statt auf einer fremden Bestätigung.
   Sie füllt einen Bildschirm und lässt zwei Wege offen, weiterzulesen.
   ─────────────────────────────────────────────────────────────────────── */

.danke-page {
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.danke-page .wrap { max-width: 46ch }
.danke-mark { width: 40px; height: 40px; margin-bottom: 1.4rem }
.danke-mark svg { width: 21px; height: 21px }

.danke-page h1 {
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.04;
  color: var(--text);
}
.danke-lede {
  margin-top: 0.9rem;
  font-size: 0.92rem;
  line-height: 1.62;
  color: var(--text-body);
}
.danke-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 2rem }


/* Kleinstschrift auf dem Handy: versale Labels tragen bei 14px-Basis
   nicht mehr, sobald man das Gerät in der Hand hält. */
@media (max-width: 700px) {
  .section-eyebrow { font-size: 0.73rem }
  .tag { font-size: 0.73rem }
  .footer-brand-name span { font-size: 0.73rem }
  .footer-col-title { font-size: 0.73rem }
  .nav-logo-short { font-size: 0.73rem }
  .seg-btn { font-size: 0.73rem }
  .field > label,
  .field-label { font-size: 0.73rem }
  .status-label { font-size: 0.73rem }
  .marquee-track span { font-size: 0.73rem }
  .legal-label { font-size: 0.73rem }
  .btn { font-size: 0.73rem }
  .back-btn { font-size: 0.73rem }
  .eyebrow { font-size: 0.73rem }
  .nav-cta { font-size: 0.73rem }
  .footer-copy { font-size: 0.73rem }
  .footer-legal a { font-size: 0.73rem }
  .footer-brand-name { font-size: 0.73rem }
}
