:root {
  --lkl-petrol: #0c3c42;
  --lkl-container-max: 1440px;
  --lkl-petrol-deep: #00252a;
  --lkl-petrol-soft: #eef6f7;
  --lkl-muted: #404849;
  --lkl-border: #e5e7eb;
  --lkl-bg: #f9f9f9;
  --lkl-card: #ffffff;
  --lkl-on-surface: #1a1c1c;
  --lkl-success: #16a34a;
  --lkl-error: #991b1b;
  --lkl-radius: 8px;
  --lkl-radius-sm: 4px;
  --lkl-gutter: 1.5rem;
  --lkl-section-gap: 2rem;
  --lkl-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --lkl-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--lkl-font);
  font-size: 14px;
  line-height: 1.5;
  color: var(--lkl-on-surface);
  background: var(--lkl-bg);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--lkl-petrol); }
.site-header {
  background: var(--lkl-petrol);
  color: #fff;
  padding: 0;
  box-shadow: 0 1px 0 rgba(0, 37, 42, 0.1), 0 4px 14px rgba(0, 37, 42, 0.08);
  border-bottom: 1px solid var(--lkl-petrol-deep);
}
.site-header-inner {
  max-width: var(--lkl-container-max);
  margin: 0 auto;
  padding: 0.75rem var(--lkl-gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.brand {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.site-nav a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  margin-left: 1rem;
  transition: color 0.15s ease;
}
.site-nav a:hover { color: #fff; }
main {
  max-width: var(--lkl-container-max);
  margin: 0 auto;
  padding: 2rem var(--lkl-gutter) 3rem;
}
h1 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 0.5rem;
  color: var(--lkl-petrol-deep);
}
.lead {
  color: var(--lkl-muted);
  margin: 0 0 2rem;
  font-size: 1rem;
  max-width: 40rem;
}
.lkl-card {
  background: var(--lkl-card);
  border: 1px solid var(--lkl-border);
  border-radius: var(--lkl-radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.lkl-label-caps {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--lkl-muted);
}
.btn {
  display: inline-block;
  padding: 0.55rem 1.1rem;
  background: var(--lkl-petrol);
  color: #fff;
  text-decoration: none;
  border: none;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  border-radius: 4px;
}
.btn:hover { opacity: 0.92; }
.btn-block { display: block; width: 100%; text-align: center; box-sizing: border-box; }
.btn-outline {
  background: transparent;
  color: var(--lkl-petrol);
  border: 1px solid var(--lkl-border);
  margin-left: 0.5rem;
}
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
footer {
  border-top: 1px solid var(--lkl-border);
  padding: 1.5rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--lkl-muted);
  background: var(--lkl-card);
}
footer a { margin: 0 0.5rem; }

/* —— Civic trust: landing & programme cards —— */
.landing-hero {
  margin-bottom: var(--lkl-section-gap, 2rem);
  max-width: 40rem;
}
.landing-hero .lkl-label-caps { margin: 0 0 0.5rem; }
.landing-hero h1 { margin-bottom: 0.5rem; }
.programme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--lkl-gutter);
  margin-bottom: var(--lkl-section-gap, 2rem);
}
.programme-card {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  min-height: 100%;
}
.programme-card-title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--lkl-petrol-deep);
  line-height: 1.35;
}
.programme-card-desc {
  margin: 0 0 1.25rem;
  color: var(--lkl-muted);
  font-size: 0.9375rem;
  line-height: 1.5;
  flex: 1;
}
.programme-card-cta { align-self: flex-start; margin-top: auto; }
.programme-card-muted { margin: auto 0 0; font-size: 0.875rem; color: var(--lkl-muted); font-style: italic; }
.landing-empty { text-align: center; }
.landing-empty .meta { margin-top: 0.75rem; }
.landing-trust { margin-top: 0.5rem; }
.trust-steps {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--lkl-muted);
  line-height: 1.55;
}
.trust-steps li { margin-bottom: 0.5rem; }
.trust-steps strong { color: var(--lkl-on-surface); }

/* —— Antrag start —— */
.public-breadcrumb { margin-bottom: 1rem; font-size: 0.875rem; }
.public-breadcrumb a { text-decoration: none; font-weight: 600; }
.public-breadcrumb a:hover { text-decoration: underline; }
.start-card { max-width: 40rem; }
.start-card .lkl-label-caps { margin: 0 0 0.35rem; }
.start-lead { margin-bottom: 1.25rem; }
.start-info { margin-bottom: 1.5rem; padding-top: 0.5rem; border-top: 1px solid var(--lkl-border); }
.start-actions { margin-top: 0.25rem; }
.form-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }

/* —— Vorstandsbewilligung (public vote) —— */
.section-kicker {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--lkl-petrol-deep);
}
.meta { color: var(--lkl-muted); font-size: 0.875rem; line-height: 1.45; }
.mono-data { font-family: var(--lkl-mono); }
.vote-page { max-width: 40rem; }
.vote-page-header {
  border-left: 4px solid var(--lkl-petrol);
  margin-bottom: 1.25rem;
}
.vote-page-header h1 { margin: 0.35rem 0 0.5rem; font-size: 1.5rem; }
.vote-meta { margin: 0; color: var(--lkl-muted); font-size: 0.875rem; }
.vote-flash { margin-bottom: 1.25rem; }
.vote-flash--ok { border-left: 4px solid var(--lkl-success); }
.flash-ok {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
  padding: 1rem;
}
.vote-summary-card { margin-bottom: 1.25rem; }
.vote-facts { margin: 0; display: grid; gap: 0.85rem; }
.vote-facts dt { margin: 0 0 0.2rem; }
.vote-facts dd { margin: 0; font-size: 0.9375rem; }
.vote-hinweis-box {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: var(--lkl-petrol-soft);
  border: 1px solid #b8d4d8;
  border-radius: var(--lkl-radius-sm);
}
.vote-hinweis-box p { margin: 0; }
.vote-hinweis-box .lkl-label-caps { margin: 0 0 0.35rem; }
.vote-hinweis-box p:last-child { font-size: 0.875rem; line-height: 1.45; }
.vote-form .vote-field {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.vote-form select,
.vote-form input[type="text"],
.vote-form textarea {
  display: block;
  width: 100%;
  max-width: 24rem;
  margin-top: 0.35rem;
  padding: 0.5rem 0.65rem;
  border: 1px solid var(--lkl-border);
  border-radius: var(--lkl-radius-sm);
  font: inherit;
  font-weight: 400;
  box-sizing: border-box;
}
.vote-preview-box {
  margin: 1.25rem 0;
  padding: 1rem;
  background: #f8fafb;
  border: 1px solid var(--lkl-border);
  border-left: 4px solid var(--lkl-petrol);
  border-radius: var(--lkl-radius-sm);
}
.vote-preview-text {
  white-space: pre-wrap;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0.5rem 0 0;
}
.confirm-row {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.9rem;
  font-weight: 400;
}
.confirm-row input { width: auto; margin-top: 0.2rem; flex-shrink: 0; }
.confirm-row--block { margin: 1rem 0; }
.vote-disclaimer { margin: 0 0 1rem; }
.vote-submit { margin-top: 0.25rem; }

/* —— Statusseite Antragsteller:in (Stitch) —— */
.status-hero {
  margin-bottom: var(--lkl-section-gap);
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--lkl-border);
}
.status-hero-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem 1rem;
}
.status-hero-kicker { margin: 0 0 0.25rem; }
.status-hero-title h1 { margin: 0; font-size: 1.75rem; }
.status-hero-lead {
  margin: 0.75rem 0 0;
  max-width: none;
  font-size: 0.9375rem;
  color: var(--lkl-muted);
}
.status-hero-meta { margin: 0.35rem 0 0; }
.status-subtitle {
  margin: 0.35rem 0 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--lkl-on-surface);
}
.status-badge {
  display: inline-block;
  background: var(--lkl-petrol-deep);
  color: #fff;
  padding: 0.3rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
}
.motif-mark { margin: 0.35rem 0 0; }
.motif-mark-emoji {
  font-size: 1.75rem;
  line-height: 1;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}
.status-pipeline-card { margin-bottom: var(--lkl-section-gap); }
.status-pipeline-card--gate {
  margin: 0 0 1.5rem;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}
.pipeline-track-wrap { position: relative; padding: 0.25rem 0 0.5rem; }
.pipeline-progress {
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 1.15rem;
  height: 2px;
  background: #e2e2e2;
  z-index: 0;
}
.pipeline-progress-fill {
  height: 100%;
  background: var(--lkl-petrol-deep);
  border-radius: 1px;
  transition: width 0.25s ease;
}
.pipeline-track {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pipeline-step {
  flex: 1;
  min-width: 4.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}
.pipeline-dot {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid var(--lkl-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  background: #fff;
  color: var(--lkl-muted);
}
.pipeline-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lkl-muted);
  line-height: 1.25;
}
.pipeline-step.done .pipeline-dot {
  background: var(--lkl-petrol-deep);
  border-color: var(--lkl-petrol-deep);
  color: #fff;
}
.pipeline-step.current .pipeline-dot {
  background: var(--lkl-petrol);
  border-color: var(--lkl-petrol);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(12, 60, 66, 0.15);
}
.pipeline-step.current .pipeline-label { color: var(--lkl-petrol); }
.status-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(260px, 2fr);
  gap: var(--lkl-gutter);
  align-items: start;
}
@media (max-width: 900px) { .status-grid { grid-template-columns: 1fr; } }
.status-chronik-card .section-kicker { border-bottom: 1px solid var(--lkl-border); padding-bottom: 0.65rem; }
.status-empty-hint { margin-top: 0.75rem; }
.status-timeline {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0 0 0 1rem;
  border-left: 2px solid #e2e2e2;
}
.timeline-item { position: relative; padding: 0 0 1.25rem 1rem; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.35rem;
  top: 0.35rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: #e2e2e2;
  border: 2px solid var(--lkl-card);
}
.timeline-lkl::before { background: var(--lkl-petrol); }
.timeline-you::before { background: var(--lkl-success); }
.timeline-meta time {
  display: block;
  font-size: 0.75rem;
  color: var(--lkl-muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.timeline-meta strong { font-size: 0.875rem; }
.timeline-item p { margin: 0.35rem 0 0; font-size: 0.875rem; line-height: 1.45; }
.timeline-lkl p {
  background: var(--lkl-petrol-soft);
  padding: 0.65rem 0.85rem;
  border-radius: var(--lkl-radius-sm);
  border: 1px solid #b8d4d8;
}
.muted { color: var(--lkl-muted); font-size: 0.8125rem; }
.flash {
  padding: 0.65rem 0.85rem;
  margin: 0 0 1rem;
  font-size: 0.875rem;
  border-radius: var(--lkl-radius-sm);
}
.flash-ok { background: #f0fdf4; border: 1px solid #86efac; color: #166534; }
.flash-warn { background: #fffbeb; border: 1px solid #fcd34d; color: #92400e; }
.portal-section { margin: 0 0 1rem; }
.portal-section .section-kicker { margin-bottom: 0.35rem; }
.portal-form label {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.portal-form input,
.portal-form textarea {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.5rem 0.65rem;
  font: inherit;
  border: 1px solid var(--lkl-border);
  border-radius: var(--lkl-radius-sm);
  background: var(--lkl-bg);
  box-sizing: border-box;
}
.upload-drop {
  margin-top: 0.5rem;
  padding: 1.5rem 1rem;
  border: 2px dashed var(--lkl-border);
  border-radius: var(--lkl-radius);
  text-align: center;
  background: var(--lkl-bg);
}
.upload-drop-icon {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.5rem;
  line-height: 2.5rem;
  border-radius: 50%;
  background: #cbe8ec;
  color: var(--lkl-petrol);
  font-weight: 700;
}
.upload-drop-hint {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: var(--lkl-muted);
  font-weight: 600;
  letter-spacing: 0.03em;
}
.doc-list { margin: 0.75rem 0; padding-left: 1.1rem; font-size: 0.875rem; }
.portal-form--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}
@media (max-width: 600px) { .portal-form--grid { grid-template-columns: 1fr; } }
.portal-full { grid-column: 1 / -1; }
.portal-locked { padding: 1rem; color: var(--lkl-muted); }
.portal-help-card {
  background: #eeeeee;
  border-color: var(--lkl-border);
}
.portal-help-title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--lkl-on-surface);
}
.portal-help-card a { font-weight: 600; }

/* —— Status-Gate (limited) —— */
.status-gate {
  display: flex;
  justify-content: center;
  padding: 0.5rem 0 1rem;
}
.status-gate-card {
  width: 100%;
  max-width: 40rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 1px 3px rgba(0, 37, 42, 0.08);
}
@media (min-width: 640px) { .status-gate-card { padding: 2.5rem 2.5rem; } }
.status-gate-head { text-align: center; margin-bottom: 1.5rem; }
.status-gate-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--lkl-petrol-soft);
  font-size: 1.5rem;
}
.status-gate-head h1 {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
}
.status-gate-lead {
  margin: 0 auto 1rem;
  max-width: 28rem;
}
.status-gate-status {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
}
.unlock-box {
  border-top: 1px solid var(--lkl-border);
  padding-top: 1.5rem;
}
.unlock-form label {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.unlock-form input {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.6rem 0.75rem;
  font: inherit;
  border: 1px solid var(--lkl-border);
  border-radius: var(--lkl-radius-sm);
  background: var(--lkl-bg);
  box-sizing: border-box;
}
.unlock-input-mono { font-family: var(--lkl-mono); }
.unlock-form input:focus {
  outline: 2px solid var(--lkl-petrol);
  outline-offset: 1px;
  border-color: var(--lkl-petrol);
}
.unlock-submit { margin-top: 1.25rem; }
.unlock-error {
  color: var(--lkl-error);
  font-size: 0.875rem;
  margin: 0.75rem 0 0;
  padding: 0.5rem 0.65rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--lkl-radius-sm);
}
.unlock-hint { margin: 0.75rem 0 0; }
.status-gate-foot {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--lkl-border);
  text-align: center;
}
.status-gate-foot a { font-weight: 600; }
