@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=DM+Mono:wght@400;500&display=swap');

:root {
  --bg: #FAFAF8;
  --white: #FFFFFF;
  --surface: #F2F1EE;
  --border: #E5E4E0;
  --text: #1A1A1A;
  --text-secondary: #5C5C5C;
  --text-muted: #757575;
  --accent: #E8B800;
  --accent-light: #FFF8DC;
  --accent-hover: #D4A800;
  --accent-label: #A68600;
  --accent-subtle: rgba(232, 184, 0, 0.08);
  --danger: #C44;
  --danger-light: #FFF0F0;
  --font: 'DM Sans', -apple-system, 'Segoe UI', sans-serif;
  --mono: 'DM Mono', 'SF Mono', monospace;
  --focus-ring: 0 0 0 3px rgba(232, 184, 0, 0.45);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.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;
}

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: var(--space-sm);
  left: var(--space-sm);
  z-index: 200;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.75rem 1.25rem;
  overflow: visible;
  clip: auto;
  background: var(--text);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.menu-open { overflow: hidden; }

:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: var(--radius-sm);
}

/* ——— NAV ——— */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  transition: opacity 0.2s;
}

.nav-logo:hover { opacity: 0.75; }

.nav-logo .mark {
  background: var(--accent);
  color: var(--text);
  padding: 0.15rem 0.5rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--text) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  border-radius: var(--radius-sm);
  transition: opacity 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* ——— HERO ——— */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem var(--space-lg) 4rem;
  position: relative;
}

.hero-content { max-width: 720px; }

.hero-tag {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--accent-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 500;
  opacity: 0;
  animation: fadeUp 0.6s 0.1s forwards;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.2s forwards;
}

.hero h1 em {
  font-style: normal;
  position: relative;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 0.05em;
  left: -0.05em;
  right: -0.05em;
  height: 0.3em;
  background: var(--accent);
  opacity: 0.45;
  z-index: -1;
  border-radius: 2px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 0.6s 0.35s forwards;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s 0.5s forwards;
}

/* ——— BUTTONS ——— */
.btn-primary {
  background: var(--text);
  color: var(--white);
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font);
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  opacity: 0.85;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font);
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--text);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-outline:active {
  transform: translateY(0);
  box-shadow: none;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ——— TICKER ——— */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
  background: var(--white);
}

.ticker {
  display: flex;
  animation: tickerScroll 35s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 0 1.8rem;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.ticker-item .dot {
  color: var(--accent);
  margin-right: 0.4rem;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ——— SECTIONS ——— */
section { padding: var(--space-2xl) var(--space-lg); }

.section-inner { max-width: 960px; margin: 0 auto; }

.section-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--accent-label);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: var(--space-xl);
  line-height: 1.65;
}

/* ——— PROBLEMS ——— */
.problems { background: var(--white); }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.problem-card {
  background: var(--white);
  padding: var(--space-lg);
  transition: background 0.25s;
}

.problem-card:hover { background: var(--danger-light); }

.problem-card .num {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--danger);
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.problem-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.problem-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ——— POINTS ——— */
.points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.point-card {
  background: var(--bg);
  padding: var(--space-lg);
  position: relative;
  transition: background 0.25s;
}

.point-card:hover { background: var(--accent-light); }

.point-num {
  font-family: var(--mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: 0.8rem;
  right: 1.2rem;
  line-height: 1;
}

.point-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  padding-right: var(--space-lg);
}

.point-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.points-principle {
  margin-top: var(--space-lg);
  padding: var(--space-lg) var(--space-xl);
  background: var(--accent);
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  border-radius: var(--radius-lg);
}

/* ——— VISION ——— */
.vision { background: var(--white); }

.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.vision-card {
  padding: var(--space-lg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.vision-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(232, 184, 0, 0.1);
  transform: translateY(-2px);
}

.vision-icon {
  font-size: 1.6rem;
  margin-bottom: var(--space-md);
  display: block;
  color: var(--accent);
  font-style: normal;
}

.vision-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.vision-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ——— MANIFESTO ——— */
.manifesto {
  text-align: center;
  padding: 6rem var(--space-lg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.manifesto-bar {
  width: 3px;
  height: 48px;
  background: var(--accent);
  margin: 0 auto 2.5rem;
  border-radius: 2px;
}

.manifesto blockquote {
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  font-weight: 400;
  max-width: 680px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.manifesto blockquote strong {
  font-weight: 700;
  color: var(--text);
  background: linear-gradient(to top, var(--accent-light) 40%, transparent 40%);
  padding: 0 0.1em;
}

.manifesto cite {
  font-family: var(--mono);
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.manifesto-addendum {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-style: italic;
}

/* ——— VALUES ——— */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
}

.value {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.25s;
}

.value:last-child { border-right: none; }
.value:hover { background: var(--accent-light); }

.value-sym {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}

.value h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.value p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ——— FOUNDER ——— */
.founder {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.founder-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.founder-photo img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
}

.founder-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: var(--space-lg);
}

.founder-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.founder-link:hover { color: var(--text); }

/* ——— VOLUNTEER ——— */
.volunteer { background: var(--bg); }

.volunteer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: var(--space-xl);
}

.volunteer-card {
  padding: var(--space-lg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.volunteer-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(232, 184, 0, 0.1);
}

.volunteer-icon {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: var(--space-md);
  display: block;
  font-style: normal;
}

.volunteer-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.volunteer-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ——— DONATE ——— */
.donate {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.donate-address {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.6rem 1rem;
  margin-bottom: var(--space-md);
}

.donate-address code {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--text);
  word-break: break-all;
}

.btn-copy {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 0.25rem;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

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

.donate-note {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.donate-note a {
  color: var(--accent-hover);
  text-decoration: none;
  font-weight: 500;
}

.donate-note a:hover { text-decoration: underline; }

/* ——— CTA ——— */
.cta {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  background: var(--text);
  color: var(--white);
}

.cta h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.cta p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 420px;
  margin: 0 auto var(--space-lg);
  font-size: 0.95rem;
}

.cta-form {
  display: flex;
  gap: var(--space-sm);
  max-width: 400px;
  margin: 0 auto;
}

.cta-form input {
  flex: 1;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.cta-form input:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.15);
}

.cta-form input::placeholder { color: rgba(255, 255, 255, 0.35); }

.cta-form button {
  padding: 0.85rem 1.5rem;
  background: var(--accent);
  color: var(--text);
  border: none;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}

.cta-form button:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.cta-form button:active {
  transform: translateY(0);
}

.form-feedback {
  margin-top: var(--space-md);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  transition: opacity 0.4s;
}

.form-feedback--error {
  color: #FF8A80;
}

.form-feedback.fade-out {
  opacity: 0;
}

.supporters-count {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font);
  letter-spacing: 0.02em;
}

/* ——— HERO VARIANT ——— */
.hero--short {
  min-height: auto;
  padding: 10rem var(--space-lg) 4rem;
}

/* ——— LEGAL TEXT ——— */
.legal-text {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  line-height: 1.75;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.legal-text h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: var(--space-lg) 0 var(--space-sm);
}

.legal-text h3:first-child {
  margin-top: 0;
}

.legal-text ol {
  padding-left: 1.4rem;
  margin-bottom: var(--space-sm);
}

.legal-text ol ol {
  margin-top: var(--space-xs);
}

.legal-text li {
  margin-bottom: var(--space-xs);
}

.legal-closing {
  margin-top: var(--space-md);
  color: var(--text);
  font-size: 0.88rem;
}

.statuten-kern {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.statuten-kern li {
  padding: 0.85rem var(--space-lg);
  font-size: 0.92rem;
  color: var(--text-secondary);
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.statuten-kern li:last-child {
  border-bottom: none;
}

.statuten-kern strong {
  color: var(--text);
}

/* ——— FINANCE SUMMARY ——— */
.finance-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-lg);
}

.summary-card {
  background: var(--bg);
  padding: var(--space-lg);
  text-align: center;
}

.summary-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.summary-value {
  font-family: var(--mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
}

.summary-value.income { color: #2E7D32; }
.summary-value.expense { color: var(--danger); }

.finance-export {
  margin-top: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.blockchain-link {
  font-size: 0.85rem;
  color: var(--accent-hover);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.blockchain-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

.table-status {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  padding: var(--space-xl) var(--space-md);
}

/* ——— FINANCE TABLE ——— */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.finance-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.finance-table th,
.finance-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.finance-table thead th {
  background: var(--surface);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.finance-table tbody tr:last-child td {
  border-bottom: none;
}

.finance-table tbody tr:hover {
  background: var(--accent-subtle);
}

.col-amount {
  text-align: right !important;
  font-family: var(--mono);
  font-weight: 500;
}

.expense { color: var(--danger); }
.income { color: #2E7D32; }

.col-receipt {
  font-size: 0.78rem;
  white-space: nowrap;
}

.receipt-link {
  color: var(--accent-hover);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.receipt-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

.receipt-hash {
  display: block;
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

.badge--expense {
  background: var(--danger-light);
  color: var(--danger);
}

.badge--income {
  background: #E8F5E9;
  color: #2E7D32;
}

/* ——— DECISIONS LIST ——— */
.decisions-list {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.decision {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.decision:last-child {
  border-bottom: none;
}

.decision-date {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.decision-text {
  font-size: 0.92rem;
  color: var(--text);
}

/* ——— FOOTER ——— */
footer {
  padding: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

footer a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover { color: var(--text); }

/* ——— COOKIE BANNER ——— */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: none;
}

.cookie-banner.visible {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding: 0.75rem var(--space-lg);
  background: var(--surface);
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.cookie-banner p {
  margin: 0;
  line-height: 1.4;
}

.cookie-btn {
  background: var(--text);
  color: var(--white);
  border: none;
  padding: 0.4rem 1rem;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.cookie-btn:hover { opacity: 0.85; }

/* ——— RESPONSIVE ——— */
@media (max-width: 768px) {
  nav { padding: 0.8rem 1rem; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 1.5rem 2rem;
    gap: 0;
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.08);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-links .nav-cta {
    margin-top: var(--space-md);
    text-align: center;
    padding: 0.75rem 1.2rem;
    border-bottom: none;
  }

  .hero { padding: 7rem 1.2rem 3rem; }

  .hero h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }

  section { padding: 3.5rem 1.2rem; }

  .manifesto { padding: 4rem 1.2rem; }

  .values { grid-template-columns: repeat(2, 1fr); }
  .value { border-bottom: 1px solid var(--border); }
  .value:nth-child(2) { border-right: none; }
  .value:nth-last-child(-n+2) { border-bottom: none; }

  .cta-form { flex-direction: column; }

  .founder-grid { grid-template-columns: 1fr; text-align: center; }
  .founder-photo img { width: 140px; height: 140px; }

  .volunteer-grid { grid-template-columns: repeat(2, 1fr); }

  .donate-address { display: flex; }

  .cookie-banner { flex-direction: column; gap: var(--space-sm); text-align: center; }

  .hero--short { padding: 7rem 1.2rem 3rem; }

  .finance-summary { grid-template-columns: 1fr; }

  .legal-text { padding: var(--space-md); }

  .decision { flex-direction: column; gap: var(--space-xs); }

  footer {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-sub { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; }
  .volunteer-grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .value { border-right: none; border-bottom: 1px solid var(--border); }
  .value:last-child { border-bottom: none; }
}

/* ——— STANDPUNTEN ——— */
.standpunten-callout {
  border-left: 3px solid var(--accent);
  background: var(--accent-subtle);
  padding: var(--space-lg) var(--space-xl);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: var(--space-xl);
}

.standpunten-callout h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.standpunten-callout p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

.standpunten-section { background: var(--white); }

.standpunten-filters {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.standpunten-search {
  position: relative;
  max-width: 480px;
}

.standpunten-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1rem;
  font-style: normal;
  pointer-events: none;
}

.standpunten-search input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s;
}

.standpunten-search input:focus {
  border-color: var(--accent);
}

.standpunten-search input::placeholder {
  color: var(--text-muted);
}

.filter-group {
  margin-bottom: var(--space-sm);
}

.filter-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.4rem;
}

.standpunten-categories {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.cat-btn {
  padding: 0.45rem 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--bg);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.cat-btn:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

.cat-btn.active {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}

.standpunten-statuses {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.status-btn {
  padding: 0.45rem 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--bg);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.status-btn:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

.status-btn.active {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}

.standpunten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.standpunten-status {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
  padding: var(--space-xl) 0;
}

.standpunten-empty {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
  padding: var(--space-xl) 0;
}

.standpunt-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.standpunt-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(232, 184, 0, 0.1);
}

.standpunt-header {
  padding: var(--space-lg);
}

.standpunt-header h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.standpunt-header p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: var(--space-md);
}

.standpunt-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.badge--standpunt {
  background: var(--accent-light);
  color: var(--accent-label);
}

.badge--concept {
  background: var(--surface);
  color: var(--text-muted);
}

.badge--programma {
  background: #E8F5E9;
  color: #2E7D32;
}

.badge--gewijzigd {
  background: #FFF8E1;
  color: #F57F17;
}

.badge--gerectificeerd {
  background: #FFF3E0;
  color: #E65100;
}

.badge--ingetrokken {
  background: var(--danger-light);
  color: var(--danger);
}

.standpunt-card--ingetrokken {
  opacity: 0.7;
}

.standpunt-card--ingetrokken .standpunt-header h3 {
  color: var(--text-muted);
}

.standpunt-card--ingetrokken .standpunt-header h3 s {
  text-decoration: line-through;
  text-decoration-color: var(--danger);
}

.standpunt-gewijzigd-hint {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: #F57F17;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.standpunt-gewijzigd-hint i {
  font-size: 0.85rem;
  font-style: normal;
}

.standpunt-rectificatie {
  background: #FFF3E0;
  border: 1px solid #FFE0B2;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-top: var(--space-md);
}

.standpunt-rectificatie strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #E65100;
  margin-bottom: var(--space-xs);
}

.standpunt-rectificatie p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

.standpunt-intrekking {
  background: var(--danger-light);
  border: 1px solid #FFCDD2;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-top: var(--space-md);
}

.standpunt-intrekking strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--danger);
  margin-bottom: var(--space-xs);
}

.standpunt-intrekking p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

.standpunt-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-label);
  padding: 0;
  transition: color 0.2s;
}

.standpunt-toggle:hover {
  color: var(--text);
}

.standpunt-toggle i {
  font-size: 0.9rem;
  font-style: normal;
}

.standpunt-body {
  padding: 0 var(--space-lg) var(--space-lg);
  border-top: 1px solid var(--border);
}

.standpunt-inhoud {
  padding-top: var(--space-lg);
}

.standpunt-inhoud p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.standpunt-inhoud p:last-child {
  margin-bottom: 0;
}

.standpunt-cijfers {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.cijfer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-md);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  min-width: 100px;
  flex: 1;
}

.cijfer-waarde {
  font-family: var(--mono);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.cijfer-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.25rem;
}

.standpunt-maatregelen {
  margin-top: var(--space-lg);
}

.standpunt-maatregelen h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.maatregelen-lijst {
  list-style: none;
  padding: 0;
  counter-reset: maatregel;
}

.maatregelen-lijst li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding: var(--space-xs) 0;
  counter-increment: maatregel;
}

.maatregelen-lijst li i {
  color: #2E7D32;
  font-size: 0.9rem;
  font-style: normal;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.standpunt-juridisch {
  margin-top: var(--space-lg);
  background: #E3F2FD;
  border: 1px solid #BBDEFB;
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.standpunt-juridisch h4 {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1565C0;
  margin-bottom: var(--space-xs);
}

.standpunt-juridisch h4 i {
  font-size: 0.9rem;
  font-style: normal;
}

.standpunt-juridisch p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.standpunt-beperkingen {
  margin-top: var(--space-lg);
  background: #FFF3E0;
  border: 1px solid #FFE0B2;
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.standpunt-beperkingen h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #E65100;
  margin-bottom: var(--space-xs);
}

.standpunt-beperkingen p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.standpunt-bronnen {
  margin-top: var(--space-lg);
}

.standpunt-bronnen h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.bronnen-lijst {
  list-style: none;
  padding: 0;
}

.bronnen-lijst li {
  font-size: 0.82rem;
  line-height: 1.6;
  padding: 0.15rem 0;
}

.bronnen-lijst a {
  color: var(--accent-hover);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.bronnen-lijst a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.bronnen-lijst a i {
  font-size: 0.7rem;
  font-style: normal;
  margin-left: 0.2rem;
}

.bron-datum {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.standpunt-begroting-inner {
  margin-top: var(--space-lg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  background: var(--surface);
}

.standpunt-begroting-inner h4 {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.standpunt-begroting-inner h4 i {
  font-size: 0.9rem;
  font-style: normal;
  color: var(--accent);
}

.standpunt-begroting-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.standpunt-begroting-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--white);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s;
}

.standpunt-begroting-link:hover {
  background: var(--accent-subtle);
}

.standpunt-begroting-link strong {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.standpunt-begroting-bedrag {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.standpunt-historie-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0;
  margin-top: var(--space-md);
  transition: color 0.2s;
}

.standpunt-historie-btn:hover {
  color: var(--text);
}

.standpunt-historie-btn i {
  font-size: 0.9rem;
  font-style: normal;
}

.standpunt-historie {
  margin-top: var(--space-md);
}

.historie-list {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.historie-item {
  padding: 0.75rem var(--space-md);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.historie-item:last-child {
  border-bottom: none;
}

.historie-meta {
  display: flex;
  gap: var(--space-md);
  margin-bottom: 0.25rem;
}

.historie-date {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.historie-versie {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--accent-label);
  font-weight: 600;
}

.historie-reden {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.historie-loading,
.historie-empty {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: var(--space-sm) 0;
}

@media (max-width: 768px) {
  .standpunten-grid { grid-template-columns: 1fr; }
  .standpunten-callout { padding: var(--space-md); }
}

/* ——— VRAGEN ——— */
.vragen-section { background: var(--white); }

.vragen-filters {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.vragen-filter-group {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.filter-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
  min-width: 3.5rem;
}

.vragen-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.filter-btn {
  padding: 0.45rem 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--bg);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.filter-btn:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

.filter-btn.active {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}

.vragen-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vragen-loading {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
  padding: var(--space-xl) 0;
}

.vragen-empty {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
  padding: var(--space-xl) 0;
}

.vraag-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.vraag-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(232, 184, 0, 0.1);
}

.vraag-header {
  padding: var(--space-lg);
}

.vraag-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.vraag-header h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.badge--kamervraag {
  background: #E3F2FD;
  color: #1565C0;
}

.badge--burgervraag {
  background: #E8F5E9;
  color: #2E7D32;
}

.badge--openvraag {
  background: var(--surface);
  color: var(--text-muted);
}

.badge--status-open {
  background: #FFF8E1;
  color: #F57F17;
}

.badge--status-beantwoord {
  background: #E8F5E9;
  color: #2E7D32;
}

.badge--status-gesloten {
  background: var(--surface);
  color: var(--text-muted);
}

.vraag-context-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-label);
  padding: 0;
  transition: color 0.2s;
}

.vraag-context-toggle:hover {
  color: var(--text);
}

.vraag-context-toggle i {
  font-size: 0.9rem;
  font-style: normal;
}

.vraag-context {
  padding: 0 var(--space-lg) var(--space-lg);
  border-top: 1px solid var(--border);
}

.vraag-context p {
  padding-top: var(--space-lg);
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.vraag-antwoord {
  padding: var(--space-md) var(--space-lg);
  background: #E8F5E9;
  border-top: 1px solid #C8E6C9;
}

.vraag-antwoord strong {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #2E7D32;
  margin-bottom: var(--space-xs);
}

.vraag-antwoord strong i {
  font-size: 0.9rem;
  font-style: normal;
}

.vraag-antwoord p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.vraag-stem,
.vraag-stem-resultaat {
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--border);
}

.vraag-stem {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.stem-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
}

.stem-btn i {
  font-size: 0.9rem;
  font-style: normal;
}

.stem-btn:hover:not(:disabled) {
  transform: translateY(-1px);
}

.stem-btn:disabled {
  opacity: 0.5;
  cursor: default;
}

.stem-btn--eens:hover:not(:disabled) {
  background: #E8F5E9;
  border-color: #A5D6A7;
  color: #2E7D32;
}

.stem-btn--oneens:hover:not(:disabled) {
  background: var(--danger-light);
  border-color: #FFCDD2;
  color: var(--danger);
}

.stem-totaal {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-left: auto;
}

.stem-bar {
  display: flex;
  height: 8px;
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: var(--space-sm);
}

.stem-bar-eens {
  background: #66BB6A;
  transition: width 0.4s;
}

.stem-bar-oneens {
  background: #EF5350;
  transition: width 0.4s;
}

.stem-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-xs);
}

.stem-label-eens,
.stem-label-oneens {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.stem-label-eens i,
.stem-label-oneens i {
  font-size: 0.85rem;
  font-style: normal;
}

.stem-label-eens.stem-voted {
  color: #2E7D32;
  font-weight: 700;
}

.stem-label-oneens.stem-voted {
  color: var(--danger);
  font-weight: 700;
}

.vraag-stem-resultaat .stem-totaal {
  display: block;
  text-align: right;
  margin-left: 0;
}

@media (max-width: 768px) {
  .vragen-filter-group { flex-direction: column; align-items: flex-start; }
  .filter-label { min-width: auto; }
}

/* ——— BEGROTING ——— */
.begroting-section { background: var(--white); }

.trend-chart {
  margin-bottom: var(--space-xl);
}

.trend-bars {
  display: flex;
  align-items: flex-end;
  gap: var(--space-xs);
  height: 180px;
  padding: var(--space-md) 0;
}

.trend-bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  height: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--font);
  transition: opacity 0.2s;
}

.trend-bar-col:hover {
  opacity: 0.8;
}

.trend-bedrag {
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.trend-bar-col--active .trend-bedrag {
  color: var(--accent-label);
}

.trend-bar-wrap {
  flex: 1;
  width: 100%;
  max-width: 48px;
  display: flex;
  align-items: flex-end;
}

.trend-bar {
  width: 100%;
  background: var(--surface);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  transition: height 0.5s ease, background 0.3s;
  min-height: 4px;
}

.trend-bar--active {
  background: var(--accent);
}

.trend-jaar {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trend-bar-col--active .trend-jaar {
  color: var(--text);
}

.begroting-totaal-pp {
  font-family: var(--mono);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent-label);
  margin-top: var(--space-sm);
}

.kerncijfers {
  margin-bottom: var(--space-xl);
}

.kerncijfers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.kerncijfer {
  flex: 1 1 140px;
  background: var(--bg);
  padding: var(--space-md) var(--space-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.kerncijfer-waarde {
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.kerncijfer--negatief .kerncijfer-waarde {
  color: var(--danger);
}

.kerncijfer-label {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.kerncijfers-rij {
  margin-bottom: var(--space-md);
}

.kerncijfers-rij:last-of-type {
  margin-bottom: 0;
}

.kerncijfers-rij-label {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.kerncijfer-sub {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
}

.kerncijfer-delta {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
}

.kerncijfer-delta--groei {
  color: #2E7D32;
}

.kerncijfer-delta--krimp {
  color: var(--danger);
}

.kerncijfers-context {
  border-left: 3px solid var(--accent);
  background: var(--accent-subtle);
  padding: var(--space-sm) var(--space-md);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: var(--space-md);
}

.kerncijfers-context p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

.kerncijfers-events {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
}

.kerncijfers-event {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.kerncijfers-bron {
  display: block;
  text-align: right;
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: var(--space-xs);
}

.begroting-bar-naam-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.begroting-bar-uitleg {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.begroting-totaal {
  text-align: center;
  margin-bottom: var(--space-xl);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--border);
}

.begroting-totaal-bedrag {
  font-family: var(--mono);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.begroting-totaal-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: var(--space-sm);
}

.begroting-laden {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
  padding: var(--space-xl) 0;
}

.begroting-chart {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.begroting-bar-row {
  display: grid;
  grid-template-columns: 1fr minmax(80px, 35%);
  gap: var(--space-md);
  align-items: center;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.2s;
}

.begroting-bar-row:hover {
  background: var(--accent-subtle);
}

.begroting-bar-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  min-width: 0;
}

.begroting-bar-nr {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.begroting-bar-naam {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.begroting-bar-track {
  height: 24px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.begroting-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: var(--radius-sm);
  transition: width 0.5s ease;
  min-width: 2px;
}

.begroting-bar-fill--detail {
  background: var(--accent-hover);
  opacity: 0.7;
}

.begroting-bar-bedrag-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
  flex-shrink: 0;
}

.begroting-bar-bedrag {
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  text-align: right;
  min-width: 80px;
}

.begroting-delta {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  white-space: nowrap;
}

.begroting-delta i {
  font-size: 0.7rem;
  font-style: normal;
}

.begroting-delta--groei {
  color: #2E7D32;
}

.begroting-delta--krimp {
  color: var(--danger);
}

.begroting-delta--gelijk {
  color: var(--text-muted);
}

.begroting-detail {
  margin-top: var(--space-xl);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.begroting-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.begroting-detail-header h3 {
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.begroting-detail-close {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0;
  transition: color 0.2s;
}

.begroting-detail-close:hover {
  color: var(--text);
}

.begroting-detail-close i {
  font-size: 0.85rem;
  font-style: normal;
}

.begroting-detail-bars {
  padding: var(--space-md) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.begroting-bar-row--detail {
  cursor: default;
  padding: 0.4rem 0;
}

.begroting-bar-row--detail:hover {
  background: transparent;
}

.begroting-bar-row--detail .begroting-bar-track {
  height: 16px;
}

.begroting-dlp-visie {
  border-left: 3px solid var(--accent);
  background: var(--accent-subtle);
  padding: var(--space-md) var(--space-lg);
  margin: 0;
}

.begroting-dlp-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-label);
  margin-bottom: var(--space-sm);
}

.begroting-dlp-label i {
  font-size: 0.9rem;
  font-style: normal;
}

.begroting-dlp-visie p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

.begroting-standpunten {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--border);
}

.begroting-standpunten-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
  display: block;
}

.begroting-standpunten-lijst {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.begroting-standpunt-link {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: var(--space-sm) var(--space-md);
  background: var(--surface);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s;
}

.begroting-standpunt-link:hover {
  background: var(--accent-subtle);
}

.begroting-standpunt-link strong {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.begroting-standpunt-link span {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .trend-bars { height: 140px; gap: 2px; }
  .trend-bedrag { font-size: 0.55rem; }
  .trend-jaar { font-size: 0.62rem; }
  .kerncijfer { flex-basis: calc(50% - 1px); padding: var(--space-sm) var(--space-md); }
  .kerncijfer-waarde { font-size: 0.85rem; }

  .begroting-bar-row {
    grid-template-columns: 1fr auto;
    gap: var(--space-xs);
  }

  .begroting-bar-label {
    grid-column: 1 / -1;
  }

  .begroting-bar-track {
    height: 18px;
  }

  .begroting-bar-uitleg {
    display: none;
  }

  .begroting-detail-header {
    flex-direction: column;
    gap: var(--space-sm);
    align-items: flex-start;
  }

  .begroting-bar-row--detail {
    grid-template-columns: 1fr auto;
  }

  .begroting-bar-row--detail .begroting-bar-label {
    grid-column: 1 / -1;
  }
}

/* ——— INZENDEN ——— */
.inzenden-section { background: var(--white); }

.inzenden-inner { max-width: 640px; }

.inzenden-type-keuze {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.inzenden-type-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}

.inzenden-type-btn i {
  font-size: 1.1rem;
  font-style: normal;
}

.inzenden-type-btn:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

.inzenden-type-btn.active {
  border-color: var(--accent);
  background: var(--accent-subtle);
  color: var(--text);
  box-shadow: 0 0 0 1px var(--accent);
}

.inzenden-hint {
  font-size: 0.88rem;
  color: var(--accent-label);
  font-weight: 500;
  margin-bottom: var(--space-lg);
  padding: var(--space-sm) var(--space-md);
  background: var(--accent-subtle);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.inzenden-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.inzenden-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.inzenden-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.inzenden-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.inzenden-required {
  color: var(--danger);
}

.inzenden-input {
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s;
}

.inzenden-input:focus {
  border-color: var(--accent);
}

.inzenden-input::placeholder {
  color: var(--text-muted);
}

.inzenden-field-hint {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.inzenden-textarea {
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  outline: none;
  resize: vertical;
  min-height: 160px;
  transition: border-color 0.2s;
}

.inzenden-textarea:focus {
  border-color: var(--accent);
}

.inzenden-textarea::placeholder {
  color: var(--text-muted);
}

.inzenden-charcount {
  display: block;
  text-align: right;
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--text-muted);
}

.inzenden-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.inzenden-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.inzenden-actions .btn-primary i {
  font-size: 0.9rem;
  font-style: normal;
}

.inzenden-feedback {
  font-size: 0.88rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
}

.inzenden-feedback--success {
  background: #E8F5E9;
  color: #2E7D32;
}

.inzenden-feedback--error {
  background: var(--danger-light);
  color: var(--danger);
}

@media (max-width: 768px) {
  .inzenden-form-row { grid-template-columns: 1fr; }
  .inzenden-type-keuze { grid-template-columns: 1fr; }
}

/* ——— DISCUSSIE ——— */
.discussie-container {
  border-top: 1px solid var(--border);
}

.discussie {
  padding: var(--space-lg);
}

.discussie-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.discussie-header h4 {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.discussie-header h4 i {
  font-size: 1rem;
  font-style: normal;
  color: var(--accent);
}

.discussie-sort {
  display: flex;
  gap: var(--space-xs);
}

.discussie-sort-btn {
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--bg);
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.discussie-sort-btn:hover {
  color: var(--text);
  border-color: var(--text-muted);
}

.discussie-sort-btn.active {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}

.discussie-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
}

.discussie-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.discussie-form-field {
  position: relative;
  margin-bottom: var(--space-sm);
}

.discussie-form-field:last-child {
  margin-bottom: 0;
}

.discussie-input {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.85rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.discussie-input:focus {
  border-color: var(--accent);
}

.discussie-input::placeholder {
  color: var(--text-muted);
}

.discussie-textarea {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.85rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  resize: vertical;
  min-height: 80px;
  transition: border-color 0.2s;
}

.discussie-textarea:focus {
  border-color: var(--accent);
}

.discussie-textarea::placeholder {
  color: var(--text-muted);
}

.discussie-charcount {
  display: block;
  text-align: right;
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.discussie-form-actions {
  margin-top: var(--space-sm);
}

.discussie-form-actions .discussie-submit {
  padding: 0.55rem 1.2rem;
  font-size: 0.82rem;
}

.discussie-form-feedback {
  margin-top: var(--space-sm);
  font-size: 0.82rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
}

.discussie-form-feedback--success {
  background: #E8F5E9;
  color: #2E7D32;
}

.discussie-form-feedback--error {
  background: var(--danger-light);
  color: var(--danger);
}

.discussie-lijst {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.discussie-leeg,
.discussie-laden {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
  padding: var(--space-md) 0;
}

.discussie-reactie {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.discussie-reactie--reply {
  margin-top: var(--space-sm);
  margin-left: var(--space-lg);
  border-left: 2px solid var(--accent);
  background: var(--bg);
}

.discussie-reactie--verborgen {
  opacity: 0.5;
}

.discussie-verborgen-tekst {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}

.discussie-reactie-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xs);
}

.discussie-naam {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.discussie-datum {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.discussie-inhoud {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.discussie-reactie-acties {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.discussie-stemmen {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.discussie-stem-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.15rem;
  color: var(--text-muted);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.discussie-stem-btn i {
  font-size: 0.9rem;
  font-style: normal;
}

.discussie-stem-btn:hover:not(:disabled) {
  color: var(--text);
}

.discussie-stem-btn:disabled {
  cursor: default;
}

.discussie-stem--active {
  color: var(--accent) !important;
}

.discussie-score {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  min-width: 1.5rem;
  text-align: center;
}

.discussie-reply-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0;
  transition: color 0.2s;
}

.discussie-reply-btn:hover {
  color: var(--text);
}

.discussie-reply-btn i {
  font-size: 0.8rem;
  font-style: normal;
}

.discussie-reply-form {
  margin-top: var(--space-sm);
}

.vraag-discussie-toggle-wrap {
  padding: var(--space-sm) var(--space-lg) var(--space-md);
}

.vraag-discussie-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-label);
  padding: 0;
  transition: color 0.2s;
}

.vraag-discussie-toggle:hover {
  color: var(--text);
}

.vraag-discussie-toggle i {
  font-size: 0.9rem;
  font-style: normal;
}

@media (max-width: 768px) {
  .discussie-form-row { grid-template-columns: 1fr; }
  .discussie-reactie--reply { margin-left: var(--space-md); }
}

/* ——— REDUCED MOTION ——— */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }
  .ticker { animation: none; }
}
