  :root {
    --paper:        #F7F3E8;
    --paper-soft:   #FBF9F2;
    --cream:        #ECE7D7;
    --cream-2:      #E0D9C3;
    --ink:          #1E2A38;
    --ink-2:        #43526A;
    --ink-3:        #7A879A;
    --aqua:         #3FA0A8;
    --aqua-deep:    #2A7A82;
    --green:        #7DB35A;
    --green-deep:   #5A8C3D;
    --yellow:       #F4C849;
    --yellow-deep:  #D9A926;
    --coral:        #E89A85;
    --purple:       #9B8FB8;
    --line:         rgba(30,42,56,0.12);
    --line-strong:  rgba(30,42,56,0.22);

    --display:        "Archivo", system-ui, sans-serif;
    --display-narrow: "Archivo Narrow", system-ui, sans-serif;
    --body:           "Instrument Sans", system-ui, sans-serif;
    --mono:           "JetBrains Mono", ui-monospace, monospace;

    --radius:    14px;
    --radius-sm: 8px;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  ::selection { background: var(--yellow); color: var(--ink); }

  a { color: var(--aqua-deep); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
  a:hover { color: var(--ink); }

  .display      { font-family: var(--display); font-weight: 900; letter-spacing: -0.03em; line-height: 0.92; text-wrap: balance; }
  .narrow       { font-family: var(--display-narrow); font-weight: 700; letter-spacing: -0.005em; }
  .mono         { font-family: var(--mono); }
  .eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-2);
    font-weight: 500;
  }
  .stamp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px 6px;
    border: 1.5px solid currentColor;
    border-radius: 999px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 11.5px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }
  .stamp .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

  .hl       { background: var(--yellow); color: var(--ink); padding: 0 0.12em; box-decoration-break: clone; -webkit-box-decoration-break: clone; border-radius: 4px; }
  .em-aqua  { color: var(--aqua-deep); font-style: normal; }
  .em-green { color: var(--green-deep); font-style: normal; }

  .wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
  @media (max-width: 720px) { .wrap { padding: 0 20px; } }

  .topbar {
    position: sticky; top: 0; z-index: 60;
    background: rgba(247,243,232,0.94);
    backdrop-filter: saturate(160%) blur(12px);
    -webkit-backdrop-filter: saturate(160%) blur(12px);
    border-bottom: 1px solid var(--line);
  }
  .topbar-inner {
    display: flex; align-items: center; gap: 18px;
    padding: 14px 0;
  }
  .lockup {
    display: inline-flex; align-items: center; gap: 12px;
    text-decoration: none; color: var(--ink);
  }
  .mark {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: var(--paper-soft);
    border: 1.5px solid var(--ink);
    display: grid; place-items: center;
  }
  .mark svg { display: block; }
  .wordmark {
    font-family: var(--display);
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 0.95;
    font-size: 17.5px;
    display: flex; flex-direction: column; gap: 2px;
    white-space: nowrap;
  }
  .wordmark .b1 { color: var(--ink); }
  .wordmark .b2 { color: var(--aqua-deep); }
  .wordmark .vp {
    font-family: var(--display-narrow);
    font-weight: 500;
    font-style: italic;
    color: var(--ink-2);
    font-size: 0.78em;
    letter-spacing: 0;
    margin: 0 0.32em 0 0.28em;
    padding-right: 0.05em;
    display: inline-block;
    position: relative;
    top: -0.05em;
  }
  .wordmark small {
    font-family: var(--display-narrow);
    font-weight: 700;
    font-size: 10.5px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--ink-2);
    margin-top: 2px;
  }
  .topbar-inner > .btn { flex-shrink: 0; }
  .topbar nav { display: flex; gap: 22px; align-items: center; margin-left: auto; flex-shrink: 0; }
  .topbar nav a {
    font-family: var(--display-narrow);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.15s;
  }
  .topbar nav a:hover { border-bottom-color: var(--aqua); }
  .top-counter {
    display: inline-flex; align-items: baseline; gap: 8px;
    padding: 6px 12px;
    flex-shrink: 0;
    background: var(--paper-soft);
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    font-size: 13px;
    color: var(--ink);
  }
  .top-counter b {
    font-family: var(--display); font-weight: 800; font-size: 15px;
    color: var(--green-deep);
    font-variant-numeric: tabular-nums;
  }
  .top-counter .live {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--green); animation: pulse 2.4s ease-out infinite;
  }
  .insta-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--paper-soft);
    border: 1.5px solid var(--ink);
    color: var(--ink);
    transition: background 0.2s, color 0.2s, transform 0.06s, border-color 0.2s;
    text-decoration: none;
    position: relative;
  }
  .insta-btn:hover {
    background: linear-gradient(135deg, #fdf497 0%, #fd5949 45%, #d6249f 65%, #285AEB 95%);
    color: #fff;
    border-color: transparent;
    transform: translateY(-1px);
  }
  .insta-btn svg { display: block; }

  /* Footer Instagram link */
  .insta-foot {
    display: inline-flex; align-items: center; gap: 12px;
    margin-top: 16px;
    padding: 10px 16px 10px 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    color: var(--paper) !important;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.06s;
  }
  .insta-foot:hover {
    background: linear-gradient(135deg, #fdf497 0%, #fd5949 45%, #d6249f 65%, #285AEB 95%);
    border-color: transparent;
    transform: translateY(-1px);
    color: #fff !important;
  }
  .insta-foot-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 30px; height: 30px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    color: var(--paper);
  }
  .insta-foot:hover .insta-foot-icon {
    background: rgba(255,255,255,0.25);
  }
  .insta-foot-text {
    display: flex; flex-direction: column; line-height: 1.1;
  }
  .insta-foot-text b {
    font-family: var(--display);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: -0.005em;
  }
  .insta-foot-text small {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.06em;
    opacity: 0.85;
    margin-top: 2px;
  }
  @keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(125,179,90,0.7); }
    70%  { box-shadow: 0 0 0 8px rgba(125,179,90,0); }
    100% { box-shadow: 0 0 0 0 rgba(125,179,90,0); }
  }

  /* Language toggle */
  .lang-toggle {
    display: inline-flex;
    background: var(--paper-soft);
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    overflow: hidden;
    padding: 2px;
    flex-shrink: 0;
  }
  .lang-toggle button {
    background: none; border: none; cursor: pointer;
    font-family: var(--display); font-weight: 700;
    font-size: 12px; letter-spacing: 0.08em;
    padding: 5px 11px;
    border-radius: 999px;
    color: var(--ink-2);
    transition: background 0.15s, color 0.15s;
    line-height: 1;
  }
  .lang-toggle button[aria-pressed="true"] {
    background: var(--ink); color: var(--paper);
  }
  .lang-toggle button:hover:not([aria-pressed="true"]) { color: var(--ink); }

  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--aqua); color: var(--paper);
    font-family: var(--display); font-weight: 800;
    letter-spacing: 0.005em;
    padding: 12px 20px;
    border: none; border-radius: 999px;
    text-decoration: none; cursor: pointer;
    font-size: 15px;
    line-height: 1.1;
    transition: transform 0.06s ease, background 0.15s, color 0.15s, box-shadow 0.15s;
  }
  .btn:hover { background: var(--aqua-deep); color: var(--paper); }
  .btn:active { transform: translateY(1px); }
  .btn.ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--ink); }
  .btn.ghost:hover { background: var(--ink); color: var(--paper); box-shadow: inset 0 0 0 1.5px var(--ink); }
  .btn.dark { background: var(--ink); color: var(--paper); }
  .btn.dark:hover { background: #0f1722; }
  .btn.yellow { background: var(--yellow); color: var(--ink); }
  .btn.yellow:hover { background: var(--yellow-deep); color: var(--ink); }
  .btn.lg { padding: 16px 26px; font-size: 17px; }

  .hero {
    background: var(--cream);
    padding: 64px 0 56px;
    position: relative;
  }
  .hero-inner { display: grid; grid-template-columns: 1.25fr 1fr; gap: 56px; align-items: start; }
  .hero h1 {
    font-family: var(--display);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 0.9;
    font-size: clamp(48px, 7vw, 100px);
    margin: 22px 0 26px;
    text-wrap: balance;
  }
  .hero-sub {
    font-family: var(--display-narrow);
    font-weight: 600;
    font-size: clamp(18px, 1.7vw, 22px);
    line-height: 1.3;
    color: var(--ink-2);
    max-width: 640px;
    margin: 0 0 30px;
  }
  .hero-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
  .hero-meta {
    display: flex; gap: 22px; flex-wrap: wrap;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--line-strong);
  }
  .hero-meta b {
    display: block;
    font-family: var(--display); font-weight: 800;
    font-size: 22px;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 4px;
  }
  .hero-meta span { font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-2); }

  .hero-card {
    background: var(--paper-soft);
    border: 1.5px solid var(--ink);
    border-radius: var(--radius);
    padding: 26px;
    position: relative;
  }
  .hero-card .corner { position: absolute; width: 10px; height: 10px; }
  .hero-card .corner.tl { top: 14px; left: 14px; border-top: 1.5px solid var(--ink); border-left: 1.5px solid var(--ink); }
  .hero-card .corner.tr { top: 14px; right: 14px; border-top: 1.5px solid var(--ink); border-right: 1.5px solid var(--ink); }
  .hero-card .corner.bl { bottom: 14px; left: 14px; border-bottom: 1.5px solid var(--ink); border-left: 1.5px solid var(--ink); }
  .hero-card .corner.br { bottom: 14px; right: 14px; border-bottom: 1.5px solid var(--ink); border-right: 1.5px solid var(--ink); }
  .hero-card .inner { padding: 6px 14px; }
  .count-big {
    font-family: var(--display); font-weight: 900;
    font-size: 72px; letter-spacing: -0.04em; line-height: 0.95;
    color: var(--green-deep);
    font-variant-numeric: tabular-nums;
    margin-top: 8px;
  }
  .count-goal { font-family: var(--display-narrow); font-weight: 600; font-size: 17px; color: var(--ink-2); }
  .progress {
    margin-top: 14px;
    height: 10px; border-radius: 999px;
    background: var(--cream);
    overflow: hidden;
  }
  .progress > span {
    display: block; height: 100%;
    background: var(--green);
    border-radius: inherit;
    transition: width 0.6s cubic-bezier(.2,.7,.1,1);
  }
  .progress-meta {
    display: flex; justify-content: space-between;
    margin-top: 8px;
    font-family: var(--mono); font-size: 11px; color: var(--ink-2);
  }
  .signers-row {
    margin-top: 18px; padding-top: 16px;
    border-top: 1px dashed var(--line-strong);
    display: flex; align-items: center; gap: 10px;
  }
  .avatars { display: flex; }
  .avatars span {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--green);
    color: var(--ink);
    display: grid; place-items: center;
    font-family: var(--display); font-weight: 800; font-size: 11px;
    border: 2px solid var(--paper-soft);
    margin-left: -8px;
  }
  .avatars span:first-child { margin-left: 0; }
  .avatars span:nth-child(2) { background: var(--yellow); }
  .avatars span:nth-child(3) { background: var(--coral); }
  .avatars span:nth-child(4) { background: var(--aqua); color: var(--paper); }
  .signers-row small { font-size: 12.5px; color: var(--ink-2); font-family: var(--body); }

  .photo { padding: 48px 0 24px; }
  .photo-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1.5px solid var(--ink);
  }
  .photo-frame img { display: block; width: 100%; height: auto; }
  .photo-cap {
    position: absolute; left: 18px; right: 18px; bottom: 18px;
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: 18px;
    color: var(--paper);
  }
  .photo-cap .cap-text {
    background: rgba(30,42,56,0.78);
    backdrop-filter: blur(6px);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-family: var(--display-narrow); font-weight: 700; font-size: 14px;
    max-width: 540px;
  }
  .photo-cap .tag {
    background: var(--yellow); color: var(--ink);
    padding: 6px 12px; border-radius: 999px;
    font-family: var(--mono); font-weight: 700;
    font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  }

  section.block { padding: 80px 0; }
  section.block.tight { padding: 56px 0; }
  section.block + section.block { padding-top: 0; }

  .section-eyebrow {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 14px;
  }
  .section-eyebrow::before, .section-eyebrow::after {
    content: ''; height: 1.5px; background: var(--ink); flex: 0 0 24px;
  }
  .section-eyebrow::after { flex: 1; }

  h2.section-title {
    font-family: var(--display); font-weight: 900;
    font-size: clamp(34px, 4.6vw, 56px);
    letter-spacing: -0.035em; line-height: 0.95;
    margin: 0 0 16px;
    max-width: 900px;
    text-wrap: balance;
  }
  p.section-lead {
    font-family: var(--display-narrow); font-weight: 600;
    font-size: 18px; line-height: 1.45;
    color: var(--ink-2);
    max-width: 720px; margin: 0 0 36px;
  }

  .situation { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
  .kavel-wrap {
    background: var(--paper-soft);
    border: 1.5px solid var(--ink);
    border-radius: var(--radius);
    padding: 22px;
  }
  .kavel-wrap .kavel-label {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 14px;
  }
  .kavel-wrap img { display: block; width: 100%; height: auto; border-radius: var(--radius-sm); border: 1px solid var(--line); }
  .legend {
    margin-top: 14px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  }
  .legend .item { display: flex; gap: 8px; align-items: flex-start; font-size: 12.5px; color: var(--ink-2); line-height: 1.4; }
  .legend .swatch { width: 14px; height: 14px; flex-shrink: 0; border-radius: 3px; margin-top: 3px; border: 1px solid var(--line-strong); }

  .stat-strip {
    background: var(--ink); color: var(--paper);
    padding: 56px 0;
    border-top: 1.5px solid var(--ink);
    border-bottom: 1.5px solid var(--ink);
  }
  .stat-strip .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
  .stat-strip .stat { padding: 0 28px; border-left: 1px solid rgba(247,243,232,0.18); }
  .stat-strip .stat:first-child { border-left: none; padding-left: 0; }
  .stat-strip .num {
    font-family: var(--display); font-weight: 900;
    font-size: clamp(48px, 5vw, 72px);
    letter-spacing: -0.04em; line-height: 0.95;
    margin-bottom: 10px;
    color: var(--paper);
  }
  .stat-strip .num.warn { color: var(--yellow); }
  .stat-strip .num.good { color: var(--green); }
  .stat-strip .lbl {
    font-family: var(--display-narrow); font-weight: 700;
    font-size: 15px; line-height: 1.3;
    color: rgba(247,243,232,0.78);
  }

  .pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .pillar {
    padding: 28px;
    border-radius: var(--radius);
    display: flex; flex-direction: column;
    min-height: 280px;
  }
  .pillar .pn { font-family: var(--mono); font-size: 11px; opacity: 0.7; margin-bottom: 14px; letter-spacing: 0.08em; }
  .pillar h3 { font-family: var(--display); font-weight: 900; font-size: 28px; letter-spacing: -0.02em; margin: 0 0 12px; line-height: 1.02; }
  .pillar p { font-size: 14.5px; line-height: 1.5; margin: 0 0 16px; opacity: 0.92; }
  .pillar ul {
    list-style: none; padding: 0; margin: auto 0 0;
    font-size: 13.5px; line-height: 1.45;
    border-top: 1px solid currentColor;
    padding-top: 14px;
    opacity: 0.85;
  }
  .pillar ul li { padding: 5px 0; display: flex; gap: 10px; }
  .pillar ul li::before { content: '—'; opacity: 0.6; flex-shrink: 0; }
  .pillar-yellow { background: var(--yellow); color: var(--ink); }
  .pillar-green  { background: var(--green);  color: var(--ink); }
  .pillar-aqua   { background: var(--aqua);   color: var(--paper); }
  .pillar-ink    { background: var(--ink);    color: var(--paper); }
  .pillar-yellow ul, .pillar-green ul { border-top-color: rgba(30,42,56,0.2); }
  .pillar-aqua ul, .pillar-ink ul { border-top-color: rgba(247,243,232,0.25); }

  .demands {
    background: var(--paper-soft);
    border: 1.5px solid var(--ink);
    border-radius: var(--radius);
    padding: 40px;
  }
  .demand-list {
    list-style: none; padding: 0; margin: 0;
    counter-reset: dems;
    display: flex; flex-direction: column;
  }
  .demand-list li {
    counter-increment: dems;
    display: grid; grid-template-columns: 56px 1fr;
    gap: 18px; align-items: flex-start;
    padding: 18px 0;
    border-top: 1px solid var(--line);
  }
  .demand-list li:first-child { border-top: 1.5px solid var(--ink); }
  .demand-list li::before {
    content: counter(dems, decimal-leading-zero);
    font-family: var(--display); font-weight: 900;
    font-size: 28px; letter-spacing: -0.02em;
    color: var(--aqua-deep);
    line-height: 1;
    padding-top: 2px;
  }
  .demand-list b { font-family: var(--display); font-weight: 800; font-size: 17px; letter-spacing: -0.005em; display: block; margin-bottom: 4px; }
  .demand-list p { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.55; }

  .pull {
    background: var(--yellow);
    padding: 48px 40px;
    border-radius: var(--radius);
    margin: 32px 0;
  }
  .pull .display { font-size: clamp(28px, 3.4vw, 44px); margin: 0; }
  .pull .source { font-family: var(--mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-2); margin-top: 18px; }

  .sign-strip { background: var(--aqua); color: var(--paper); padding: 64px 0; }
  .sign-strip h2 { color: var(--paper); }
  .sign-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: start; }
  .sign-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; max-width: 480px; }
  .sign-stats .box {
    background: rgba(247,243,232,0.08);
    border: 1px solid rgba(247,243,232,0.18);
    padding: 14px 16px; border-radius: var(--radius-sm);
  }
  .sign-stats .box b {
    display: block;
    font-family: var(--display); font-weight: 900;
    font-size: 28px; color: var(--yellow);
    line-height: 1; margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
  }
  .sign-stats .box small { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(247,243,232,0.78); display: block; line-height: 1.4; }

  .form-card {
    background: var(--paper-soft);
    color: var(--ink);
    border: 1.5px solid var(--ink);
    border-radius: var(--radius);
    padding: 30px;
  }
  .form-card h3 { font-family: var(--display); font-weight: 800; font-size: 24px; letter-spacing: -0.015em; margin: 0 0 6px; }
  .form-card .form-lead { font-family: var(--body); font-size: 14px; color: var(--ink-2); margin: 0 0 20px; }
  .field { margin-bottom: 14px; }
  .field label {
    display: block;
    font-family: var(--mono);
    font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--ink-2); margin-bottom: 6px; font-weight: 500;
  }
  .field label .req { color: var(--aqua-deep); }
  .field input, .field select, .field textarea {
    width: 100%;
    background: var(--paper);
    border: 1.5px solid var(--line-strong);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-family: var(--body);
    font-size: 15px;
    color: var(--ink);
    transition: border-color 0.15s, box-shadow 0.15s;
  }
  .field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--aqua);
    box-shadow: 0 0 0 3px rgba(63,160,168,0.18);
  }
  .field textarea { min-height: 86px; resize: vertical; }
  .field .help { font-family: var(--mono); font-size: 10.5px; color: var(--ink-3); margin-top: 6px; line-height: 1.5; text-transform: uppercase; letter-spacing: 0.04em; }
  .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .checks { display: flex; flex-direction: column; gap: 10px; margin: 8px 0 20px; }
  .check { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: flex-start; cursor: pointer; }
  .check input { margin: 3px 0 0; accent-color: var(--aqua); width: 16px; height: 16px; }
  .check span { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; }
  .check a { color: var(--aqua-deep); }

  /* Chip-style multi-select for involvement */
  .field-narrow input { max-width: 200px; }
  .chip-group { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
  .chip {
    position: relative;
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 14px;
    background: var(--paper);
    border: 1.5px solid var(--line-strong);
    border-radius: 999px;
    font-family: var(--display-narrow); font-weight: 600;
    font-size: 13.5px;
    color: var(--ink);
    cursor: pointer;
    user-select: none;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    line-height: 1.1;
  }
  .chip:hover { border-color: var(--ink); }
  .chip input {
    position: absolute; opacity: 0; pointer-events: none;
    width: 0; height: 0;
  }
  .chip:has(input:checked),
  .chip.is-checked {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
  }
  .chip:has(input:checked)::before,
  .chip.is-checked::before {
    content: '✓';
    font-family: var(--display); font-weight: 900;
    font-size: 11px;
    margin-right: 2px;
  }
  .submit-row { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
  .privacy-note { font-family: var(--mono); font-size: 10.5px; text-align: center; color: var(--ink-3); line-height: 1.5; margin: 0; text-transform: uppercase; letter-spacing: 0.04em; }

  .success { display: none; text-align: center; padding: 6px 0; }
  .success.shown { display: block; }
  .success-icon {
    width: 72px; height: 72px; margin: 0 auto 18px;
    background: var(--green);
    border-radius: 50%;
    display: grid; place-items: center;
    color: var(--ink);
    font-family: var(--display); font-weight: 900; font-size: 36px;
    border: 1.5px solid var(--ink);
  }
  .success h3 { font-family: var(--display); font-weight: 900; font-size: 30px; letter-spacing: -0.02em; margin: 0 0 8px; color: var(--ink); }
  .success p { color: var(--ink-2); font-size: 15px; margin: 0 0 22px; }
  .share-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
  .share-btn { flex: 1 1 0; min-width: 110px; }

  /* ============ Update banner ============ */
  .update-section { padding: 56px 0 0; background: var(--paper); }
  .update-card {
    background: var(--paper-soft);
    border: 1.5px solid var(--ink);
    border-radius: var(--radius);
    padding: 36px;
    position: relative;
  }
  .update-head {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 14px;
    margin-bottom: 14px;
  }
  .update-title {
    font-family: var(--display); font-weight: 900;
    font-size: clamp(28px, 3.6vw, 42px);
    letter-spacing: -0.028em; line-height: 1;
    margin: 4px 0 14px; text-wrap: balance;
    max-width: 880px;
  }
  .update-lead {
    font-family: var(--display-narrow); font-weight: 600;
    font-size: 17px; line-height: 1.45;
    color: var(--ink-2); margin: 0 0 28px;
    max-width: 800px;
  }
  .update-split {
    display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
    padding: 24px 0 28px;
    border-top: 1px solid var(--line);
  }
  .update-col .eyebrow { margin-bottom: 12px; display: block; }
  .update-col.good .eyebrow { color: var(--green-deep); }
  .update-col.concern .eyebrow { color: var(--aqua-deep); }
  .update-col ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 12px;
  }
  .update-col li {
    font-size: 15px; line-height: 1.5;
    color: var(--ink); padding-left: 24px; position: relative;
  }
  .update-col.good li::before {
    content: '✓'; position: absolute; left: 0; top: 0;
    font-family: var(--display); font-weight: 900; font-size: 14px;
    color: var(--green-deep);
  }
  .update-col.concern li::before {
    content: '!'; position: absolute; left: 5px; top: 0;
    font-family: var(--display); font-weight: 900; font-size: 16px;
    color: var(--aqua-deep);
  }
  .update-col strong { font-family: var(--display); font-weight: 800; color: var(--ink); }
  .agenda-pill {
    background: var(--yellow);
    border: 1.5px solid var(--ink);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    margin-top: 8px;
    display: grid; grid-template-columns: auto 1fr; gap: 16px;
    align-items: center;
  }
  .agenda-pill .eyebrow { color: var(--ink); white-space: nowrap; }
  .agenda-pill strong { font-family: var(--display); font-weight: 800; font-size: 15px; letter-spacing: -0.005em; display: block; }
  .agenda-pill small { font-family: var(--mono); font-size: 11px; color: var(--ink-2); letter-spacing: 0.04em; text-transform: uppercase; }
  .update-source {
    font-family: var(--mono); font-size: 11px;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--ink-3); margin: 20px 0 0;
  }
  @media (max-width: 720px) {
    .update-split { grid-template-columns: 1fr; gap: 22px; padding: 20px 0 24px; }
    .update-card { padding: 28px 22px; }
    .agenda-pill { grid-template-columns: 1fr; gap: 6px; }
  }

  /* ============ Bezwaar timeline & reassure ============ */
  .process-strip { background: var(--cream); padding: 80px 0; }
  .timeline {
    list-style: none; padding: 0; margin: 0;
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px;
    position: relative;
  }
  .timeline::before {
    content: ''; position: absolute; top: 22px;
    left: 8.33%; right: 8.33%; height: 2px;
    background: var(--line-strong);
    z-index: 0;
  }
  .step {
    background: var(--paper-soft);
    border: 1.5px solid var(--line-strong);
    border-radius: var(--radius-sm);
    padding: 28px 16px 18px;
    display: flex; flex-direction: column;
    position: relative;
    z-index: 1;
    min-height: 200px;
  }
  .step::before {
    content: '';
    position: absolute; top: -9px; left: 50%;
    transform: translateX(-50%);
    width: 18px; height: 18px;
    background: var(--paper); border: 2.5px solid var(--line-strong);
    border-radius: 50%;
    z-index: 2;
  }
  .step.done { background: var(--cream); border-color: var(--ink); }
  .step.done::before { background: var(--ink); border-color: var(--ink); }
  .step.soon { background: var(--paper-soft); border-color: var(--green-deep); border-width: 2px; }
  .step.soon::before { background: var(--green); border-color: var(--green-deep); }
  .step.action {
    background: var(--yellow); border-color: var(--ink); border-width: 2.5px;
    box-shadow: 0 12px 0 -6px rgba(217,169,38,0.4);
  }
  .step.action::before { background: var(--ink); border-color: var(--ink); width: 22px; height: 22px; top: -11px; }
  .step.final { background: var(--paper-soft); border-color: var(--aqua); border-width: 2px; }
  .step.final::before { background: var(--aqua); border-color: var(--aqua-deep); }
  .step-head { display: flex; justify-content: space-between; gap: 8px; margin-bottom: 6px; flex-wrap: wrap; }
  .step-pill {
    font-family: var(--mono); font-size: 10px;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--ink); font-weight: 600;
  }
  .step-status {
    font-family: var(--mono); font-size: 9.5px;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--ink-2);
  }
  .step.action .step-status { color: var(--ink); font-weight: 700; }
  .step h3 {
    font-family: var(--display); font-weight: 800;
    font-size: 17px; letter-spacing: -0.012em;
    margin: 8px 0 6px; line-height: 1.08;
  }
  .step p {
    font-size: 13px; line-height: 1.45;
    color: var(--ink-2); margin: 0;
  }
  .step-cta {
    margin-top: auto; padding-top: 10px;
    font-family: var(--display); font-weight: 800;
    font-size: 12px;
    color: var(--ink);
    letter-spacing: -0.005em;
    display: flex; align-items: center; gap: 6px;
  }
  .step-cta::before { content: '→'; }

  .reassure {
    background: var(--ink); color: var(--paper);
    border-radius: var(--radius);
    padding: 52px;
    display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px;
    margin-top: 56px;
    position: relative;
    overflow: hidden;
  }
  .reassure::before {
    content:''; position: absolute; inset: 0;
    background: repeating-linear-gradient(45deg, transparent 0 22px, rgba(247,243,232,0.02) 22px 44px);
    pointer-events: none;
  }
  .reassure > * { position: relative; }
  .reassure h3 {
    font-family: var(--display); font-weight: 900;
    color: var(--paper); margin: 6px 0 18px;
    font-size: clamp(28px, 3vw, 40px);
    letter-spacing: -0.028em; line-height: 1.02;
  }
  .reassure h3 .hl { background: var(--yellow); color: var(--ink); }
  .reassure-left .eyebrow { color: var(--yellow); }
  .reassure p { color: rgba(247,243,232,0.85); font-size: 16px; line-height: 1.6; margin: 0 0 22px; }
  .checklist { list-style: none; padding: 0; margin: 0; }
  .checklist li {
    position: relative; padding-left: 30px;
    margin-bottom: 10px;
    font-size: 15px; color: var(--paper);
    line-height: 1.5;
  }
  .checklist li::before {
    content: '✓';
    position: absolute; left: 0; top: 2px;
    width: 20px; height: 20px;
    background: var(--green); color: var(--ink);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--display); font-weight: 900; font-size: 12px;
    border: 1.5px solid var(--paper);
  }
  .help-card {
    background: var(--paper); color: var(--ink);
    border-radius: var(--radius);
    padding: 30px;
    align-self: start;
  }
  .help-card h4 {
    font-family: var(--display); font-weight: 800;
    font-size: 24px; letter-spacing: -0.015em;
    margin: 8px 0 8px; color: var(--ink);
  }
  .help-card p { color: var(--ink-2); font-size: 14.5px; margin: 0 0 22px; line-height: 1.55; }
  .help-card .help-btns { display: flex; flex-direction: column; gap: 8px; }
  .help-card .help-btns .btn { width: 100%; justify-content: center; }
  .help-meta {
    border-top: 1px dashed var(--line-strong);
    margin-top: 18px; padding-top: 16px;
    display: flex; flex-direction: column; gap: 8px;
    font-family: var(--mono); font-size: 11px;
    text-transform: uppercase; letter-spacing: 0.04em;
    color: var(--ink-2);
  }
  .help-meta b { color: var(--ink); margin-right: 8px; }
  .help-meta a { color: var(--ink); }

  @media (max-width: 980px) {
    .timeline { grid-template-columns: 1fr 1fr; gap: 12px; }
    .timeline::before { display: none; }
    .step { min-height: 0; padding: 22px 18px 18px; }
    .step::before { left: 18px; top: -10px; }
    .reassure { grid-template-columns: 1fr; gap: 32px; padding: 40px 30px; }
  }
  @media (max-width: 580px) {
    .timeline { grid-template-columns: 1fr; }
    .reassure { padding: 32px 22px; }
    .help-card { padding: 24px 20px; }
  }

  /* ============ Donate ============ */
  .donate-strip { padding: 80px 0; background: var(--paper); }
  .donate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
  .donate-card, .where-card {
    background: var(--paper-soft);
    border: 1.5px solid var(--ink);
    border-radius: var(--radius);
    padding: 32px;
    display: flex; flex-direction: column;
  }
  .donate-card h3, .where-card h3 {
    font-family: var(--display); font-weight: 900;
    font-size: clamp(26px, 2.6vw, 32px); letter-spacing: -0.025em;
    margin: 6px 0 22px; line-height: 1;
  }
  .amount-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px;
  }
  .amount {
    background: var(--paper); border: 1.5px solid var(--line-strong);
    border-radius: var(--radius-sm);
    padding: 16px 0; cursor: pointer;
    font-family: var(--display); font-weight: 800; font-size: 18px;
    color: var(--ink);
    transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.06s;
    line-height: 1;
  }
  .amount:hover { border-color: var(--ink); }
  .amount:active { transform: translateY(1px); }
  .amount.selected { background: var(--ink); color: var(--paper); border-color: var(--ink); }
  .amount.custom { font-family: var(--display-narrow); font-weight: 700; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; }
  .amount-custom { margin-top: 10px; }
  .amount-custom[hidden] { display: none; }
  .amount-custom input {
    width: 100%; padding: 14px 16px;
    background: var(--paper); border: 1.5px solid var(--line-strong);
    border-radius: var(--radius-sm);
    font-family: var(--display); font-weight: 800; font-size: 18px;
    color: var(--ink);
  }
  .amount-custom input:focus { outline: none; border-color: var(--aqua); box-shadow: 0 0 0 3px rgba(63,160,168,0.18); }
  .donate-meta {
    font-family: var(--mono); font-size: 10.5px;
    color: var(--ink-3); text-align: center;
    margin: 12px 0 24px;
    text-transform: uppercase; letter-spacing: 0.06em;
  }
  .iban-block {
    border-top: 1px dashed var(--line-strong);
    padding-top: 22px; margin-top: auto;
  }
  .iban-row {
    display: flex; gap: 10px; align-items: stretch;
    margin: 10px 0 8px;
  }
  .iban-row code {
    flex: 1;
    background: var(--paper);
    border: 1.5px solid var(--line-strong);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-family: var(--mono); font-weight: 500; font-size: 13.5px;
    letter-spacing: 0.04em;
    color: var(--ink);
    display: flex; align-items: center;
  }
  .iban-block small {
    font-size: 12px; color: var(--ink-3); display: block; line-height: 1.5;
  }
  .where-list { list-style: none; padding: 0; margin: 0; }
  .where-list li {
    display: grid; grid-template-columns: 64px 1fr;
    gap: 16px;
    padding: 16px 0;
    align-items: flex-start;
    border-top: 1px solid var(--line);
  }
  .where-list li:first-child { border-top: none; padding-top: 4px; }
  .where-list .pct {
    font-family: var(--display); font-weight: 800; font-size: 14px;
    border-radius: 999px;
    padding: 8px 0; text-align: center;
    border: 1.5px solid var(--ink);
    line-height: 1;
  }
  .where-list b {
    font-family: var(--display); font-weight: 800; font-size: 16.5px;
    letter-spacing: -0.005em;
    display: block; margin-bottom: 4px;
  }
  .where-list p {
    font-size: 14px; line-height: 1.5;
    color: var(--ink-2); margin: 0;
  }
  .transparency {
    background: var(--cream);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    margin-top: 22px;
  }
  .transparency p { font-size: 13px; line-height: 1.55; color: var(--ink-2); margin: 8px 0 14px; }
  .legal-info {
    display: flex; gap: 22px; flex-wrap: wrap;
    font-size: 11px; text-transform: uppercase;
    letter-spacing: 0.06em; color: var(--ink-2);
  }
  .legal-info span b { color: var(--ink); margin-right: 6px; }
  .total-raised {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 16px 18px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    margin-bottom: 22px;
  }
  .total-raised .num {
    font-family: var(--display); font-weight: 900;
    font-size: 28px; letter-spacing: -0.025em;
    color: var(--green-deep);
    font-variant-numeric: tabular-nums;
  }
  .total-raised .lbl {
    font-family: var(--mono); font-size: 10.5px;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--ink-2);
  }

  /* ============ Help wanted / Help gevraagd ============ */
  .help-wanted { background: var(--paper); padding: 80px 0; position: relative; }
  .actions-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
    margin: 36px 0 28px;
  }
  .action-card {
    background: var(--paper-soft);
    border: 1.5px solid var(--ink);
    border-radius: var(--radius);
    padding: 24px 22px;
    display: flex; flex-direction: column;
    text-decoration: none; color: var(--ink);
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s;
    min-height: 230px;
    position: relative;
  }
  .action-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -16px rgba(30,42,56,0.35);
    color: var(--ink);
  }
  .action-card .num {
    font-family: var(--mono);
    font-size: 11px; letter-spacing: 0.08em;
    color: var(--ink-2); margin-bottom: 14px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .action-card .num .dot {
    width: 8px; height: 8px; border-radius: 50%;
  }
  .action-card h3 {
    font-family: var(--display); font-weight: 900;
    font-size: 22px; letter-spacing: -0.018em;
    line-height: 1.04; margin: 0 0 10px;
  }
  .action-card p {
    font-size: 13.5px; line-height: 1.5;
    color: var(--ink-2); margin: 0 0 16px;
  }
  .action-card .arrow {
    margin-top: auto;
    font-family: var(--display); font-weight: 800; font-size: 13px;
    letter-spacing: 0.02em;
    color: var(--aqua-deep);
    display: flex; align-items: center; gap: 6px;
  }
  .action-card .arrow::after { content: '→'; transition: transform 0.15s; }
  .action-card:hover .arrow::after { transform: translateX(3px); }
  .action-card.featured { background: var(--ink); color: var(--paper); }
  .action-card.featured .num { color: rgba(247,243,232,0.7); }
  .action-card.featured .num .dot { background: var(--yellow); }
  .action-card.featured h3 { color: var(--paper); }
  .action-card.featured p { color: rgba(247,243,232,0.82); }
  .action-card.featured .arrow { color: var(--yellow); }
  @media (max-width: 980px) {
    .actions-grid { grid-template-columns: repeat(2, 1fr); }
    .action-card { min-height: 0; }
  }
  @media (max-width: 580px) {
    .actions-grid { grid-template-columns: 1fr; gap: 12px; }
  }

  .help-wanted::before {
    content: ''; position: absolute; left: 0; right: 0; top: 0; height: 1px;
    background: var(--line);
  }
  .help-callout {
    background: var(--paper-soft);
    border: 1.5px solid var(--ink);
    border-radius: var(--radius);
    padding: 44px 48px;
    max-width: 880px;
    position: relative;
  }
  .help-callout::before {
    content: '';
    position: absolute; top: 18px; left: 18px;
    width: 64px; height: 4px;
    background: var(--yellow);
    border-radius: 2px;
  }
  .help-callout h2.section-title {
    margin: 0 0 18px;
    font-size: clamp(30px, 4vw, 48px);
  }
  .help-callout-text {
    font-family: var(--display-narrow); font-weight: 600;
    font-size: 18px; line-height: 1.5;
    color: var(--ink-2);
    margin: 0 0 24px;
    max-width: 680px;
  }
  .help-chips {
    display: none;
  }
  .help-chip {
    display: none;
  }
  .help-cta-row {
    display: flex; align-items: center; gap: 22px;
    flex-wrap: wrap;
  }
  .expertise-block {
    border-top: 1px dashed var(--line-strong);
    margin-top: 22px;
    padding-top: 18px;
    margin-bottom: 22px;
  }
  .expertise-block .eyebrow { margin-bottom: 8px; display: block; }
  .expertise-block p { margin: 0; }
  .expertise-block .hl {
    background: var(--yellow);
    padding: 0 0.18em;
    border-radius: 4px;
    margin-right: 4px;
  }
  a.help-cta-meta {
    font-family: var(--mono); font-size: 12.5px;
    letter-spacing: 0.04em;
    color: var(--ink-2); line-height: 1.5;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1.5px;
    text-decoration-color: var(--line-strong);
  }
  a.help-cta-meta:hover { color: var(--ink); text-decoration-color: var(--ink); }

  @media (max-width: 720px) {
    .help-wanted { padding: 64px 0; }
    .help-callout { padding: 32px 24px; }
    .help-callout::before { top: 14px; left: 14px; width: 48px; }
    .help-callout-text { font-size: 16.5px; }
    .help-cta-row { flex-direction: column; align-items: stretch; gap: 14px; }
    .help-cta-row .btn { width: 100%; }
    .help-cta-meta { max-width: 100%; }
  }

  .ticker-section { padding: 64px 0; background: var(--cream); }
  .ticker-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 24px; gap: 18px; flex-wrap: wrap; }
  .ticker {
    background: var(--paper-soft);
    border: 1.5px solid var(--ink);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .ticker .row-s {
    display: grid; grid-template-columns: 44px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 14px 20px;
    border-top: 1px solid var(--line);
  }
  .ticker .row-s:first-child { border-top: none; }
  .ticker .av {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--green);
    color: var(--ink);
    display: grid; place-items: center;
    font-family: var(--display); font-weight: 800; font-size: 14px;
    border: 1.5px solid var(--ink);
  }
  .ticker .row-s:nth-child(3n) .av { background: var(--yellow); }
  .ticker .row-s:nth-child(4n) .av { background: var(--coral); }
  .ticker .row-s:nth-child(5n) .av { background: var(--aqua); color: var(--paper); }
  .ticker .info b { font-family: var(--display); font-weight: 800; font-size: 15px; }
  .ticker .info small { display: block; font-family: var(--mono); font-size: 11px; color: var(--ink-2); margin-top: 2px; letter-spacing: 0.04em; text-transform: uppercase; }
  .ticker .when { font-family: var(--mono); font-size: 11px; color: var(--ink-2); white-space: nowrap; letter-spacing: 0.04em; }

  .compare {
    background: var(--yellow);
    padding: 48px;
    border-radius: var(--radius);
    margin-top: 32px;
  }
  .compare-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
  .compare-card {
    background: var(--paper-soft);
    border: 1.5px solid var(--ink);
    border-radius: var(--radius-sm);
    padding: 22px;
  }
  .compare-card svg { display: block; width: 100%; max-width: 320px; margin: 0 auto; height: auto; }
  .compare-card ul { list-style: none; padding: 0; margin: 14px 0 0; }
  .compare-card ul li {
    font-family: var(--body); font-size: 13.5px; line-height: 1.45;
    padding: 4px 0 4px 18px; position: relative; color: var(--ink-2);
  }
  .compare-card ul li::before { content: '—'; position: absolute; left: 0; color: var(--ink); }
  .compare-card.bad .label { color: var(--aqua-deep); }
  .compare-card.good .label { color: var(--green-deep); }
  .compare-card .label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; font-weight: 500; }

  .faq details {
    border-top: 1px solid var(--line-strong);
    padding: 18px 0;
  }
  .faq details:first-child { border-top: 1.5px solid var(--ink); }
  .faq details:last-child { border-bottom: 1px solid var(--line-strong); }
  .faq summary {
    cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: flex-start; gap: 18px;
    font-family: var(--display); font-weight: 800; font-size: 19px; letter-spacing: -0.01em;
    color: var(--ink);
  }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary::after {
    content: '+';
    font-family: var(--mono); font-weight: 700; font-size: 22px; line-height: 1;
    color: var(--aqua-deep);
    transition: transform 0.2s;
  }
  .faq details[open] summary::after { content: '−'; }
  .faq details p { color: var(--ink-2); font-size: 15.5px; line-height: 1.6; margin: 14px 0 0; max-width: 740px; }

  footer { background: var(--ink); color: var(--paper); padding: 56px 0 32px; }
  .foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; align-items: start; }
  footer h4 { font-family: var(--display); font-weight: 800; font-size: 15px; letter-spacing: 0.06em; text-transform: uppercase; margin: 0 0 12px; color: var(--yellow); }

  /* Documenten & bronnen — download row above the legal line */
  .docs-row {
    border-top: 1px solid rgba(247,243,232,0.14);
    border-bottom: 1px solid rgba(247,243,232,0.14);
    margin-top: 40px;
    padding: 28px 0;
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 36px;
    align-items: center;
  }
  .docs-row .docs-label { font-family: var(--display); font-weight: 800; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--yellow); line-height: 1.4; }
  .docs-row .docs-label small { display: block; font-family: var(--mono); font-weight: 400; font-size: 10.5px; letter-spacing: 0.06em; color: rgba(247,243,232,0.5); margin-top: 4px; }
  .docs-list {
    list-style: none; padding: 0; margin: 0;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 24px;
  }
  .docs-list a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(247,243,232,0.18);
    color: var(--paper);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.35;
    transition: border-color 0.15s, color 0.15s;
  }
  .docs-list a:hover { border-bottom-color: var(--aqua); color: var(--aqua); }
  .docs-list a .doc-title { display: block; }
  .docs-list a .doc-sub { display: block; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(247,243,232,0.5); margin-top: 2px; }

  /* Inline pdf-citation links (in timeline + situatie) */
  .pdf-cite {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 10px;
    padding: 6px 10px 6px 8px;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ink-2);
    line-height: 1;
    transition: background 0.15s, color 0.15s;
  }
  .pdf-cite:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
  .pdf-cite::before { content: "↓"; font-weight: 700; }
  footer p { margin: 0 0 10px; line-height: 1.6; font-size: 14px; opacity: 0.88; }
  footer a { color: var(--paper); }
  footer .legal {
    border-top: 1px solid rgba(247,243,232,0.18);
    margin-top: 40px; padding-top: 20px;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(247,243,232,0.6);
  }

  .toast {
    position: fixed; bottom: 24px; left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--ink); color: var(--paper);
    padding: 10px 18px;
    border-radius: 999px;
    font-family: var(--display-narrow); font-weight: 700; font-size: 13.5px;
    opacity: 0; transition: opacity 0.2s, transform 0.2s;
    pointer-events: none; z-index: 100;
    border: 1.5px solid var(--paper);
  }
  .toast.shown { opacity: 1; transform: translateX(-50%) translateY(0); }

  @media (max-width: 1380px) {
    .lockup .wordmark small { display: none; }
  }
  @media (max-width: 1100px) {
    .topbar nav { display: none; }
  }
  @media (max-width: 980px) {
    .hero-inner { grid-template-columns: 1fr; gap: 32px; }
    .situation { grid-template-columns: 1fr; gap: 36px; }
    .sign-grid { grid-template-columns: 1fr; gap: 36px; }
    .pillars { grid-template-columns: 1fr; }
    .stat-strip .grid { grid-template-columns: 1fr 1fr; row-gap: 36px; }
    .stat-strip .stat:nth-child(odd) { border-left: none; padding-left: 0; }
    .stat-strip .stat:nth-child(3) { border-left: none; padding-left: 0; }
    .foot-grid { grid-template-columns: 1fr; gap: 32px; }
    .docs-row { grid-template-columns: 1fr; gap: 18px; padding: 24px 0; }
    .docs-list { grid-template-columns: 1fr; gap: 0; }
    .compare-cards { grid-template-columns: 1fr; }
    .donate-grid { grid-template-columns: 1fr; }
    .donate-strip { padding: 56px 0; }
    section.block { padding: 56px 0; }
  }
  @media (max-width: 580px) {
    body { font-size: 16px; }
    .topbar-inner { gap: 10px; padding: 12px 0; flex-wrap: wrap; }
    .wordmark { font-size: 16px; }
    .wordmark small { font-size: 9.5px; }
    .top-counter { padding: 5px 10px; font-size: 12px; }
    .insta-btn { width: 30px; height: 30px; }
    .top-counter b { font-size: 14px; }
    .lang-toggle button { padding: 4px 8px; font-size: 11px; }
    .btn { padding: 10px 16px; font-size: 14px; }
    .btn.lg { padding: 14px 22px; font-size: 16px; }
    .hero { padding: 40px 0 36px; }
    .hero h1 { margin: 14px 0 18px; }
    .count-big { font-size: 56px; }
    .row { grid-template-columns: 1fr; }
    .stat-strip .grid { grid-template-columns: 1fr; gap: 28px; }
    .stat-strip .stat { border-left: none !important; padding-left: 0 !important; }
    .demands { padding: 28px 22px; }
    .pull { padding: 32px 24px; }
    .compare { padding: 28px 22px; }
    .form-card { padding: 24px 20px; }
    .donate-card, .where-card { padding: 26px 22px; }
    .amount-grid { grid-template-columns: repeat(3, 1fr); }
    .legal-info { gap: 14px; font-size: 10px; }
    .photo-cap { left: 12px; right: 12px; bottom: 12px; }
    .photo-cap .cap-text { font-size: 12.5px; padding: 8px 10px; }
    .photo-cap .tag { font-size: 10px; padding: 5px 9px; }
    .hero-meta b { font-size: 18px; }
    h2.section-title { font-size: 32px; }
  }

/* ============= Counter loading state ============= */
/* Prevents flash of "0" or "1" while Supabase fetch completes */
.count-loading {
  opacity: 0.35;
  animation: countPulse 1.2s ease-in-out infinite;
}
@keyframes countPulse {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.55; }
}


/* ============= Hero intro 3-span structure ============= */
.hero-sub .hero-fact {
  display: block;
  font-family: var(--display-narrow), system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.5;
  color: var(--ink-2);
}
.hero-sub .hero-lead {
  display: block;
  font-family: var(--display-narrow), system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.5;
  color: var(--ink-2);
  margin-top: 12px;
}
.hero-sub .hero-question {
  display: block;
  font-family: var(--display), system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(17px, 1.9vw, 20px);
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--aqua-deep);
  padding-left: 14px;
  border-left: 3px solid var(--aqua);
  margin-top: 6px;
}
.hero-sub .hero-close {
  display: block;
  margin-top: 14px;
  font-family: var(--display-narrow), system-ui, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink-2);
}
