    *, *::before, *::after { box-sizing: border-box; }
    html, body { margin: 0; scroll-behavior: smooth; }
    body {
      background: #EFE9DF;
      font-family: 'Hanken Grotesk', system-ui, sans-serif;
      -webkit-font-smoothing: antialiased;
      color: #211D18;
      overflow-x: hidden;
    }
    ::selection { background: rgba(194,133,60,.22); }

    /* CSS custom properties */
    :root {
      --accent: #C2853C;
      --glow: 0.7;
      --ink: #211D18;
      --paper: #F7F3EC;
      --surface: #FBF8F2;
      --ink-soft: #5E564A;
      --muted: #766C5C;
      --muted-light: #9A917F;
      --hairline: rgba(33,29,24,.10);
      --on-dark: #F2EDE4;
      --on-dark-muted: #B7AE9D;
    }

    /* Animations */
    @keyframes rise {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: none; }
    }
    @keyframes haloPulse {
      0%, 100% { opacity: .55; transform: scale(1); }
      50%       { opacity: .9;  transform: scale(1.04); }
    }
    @keyframes blink {
      0%, 46%   { opacity: 1; }
      50%, 96%  { opacity: .25; }
      100%      { opacity: 1; }
    }

    /* Utility */
    a { color: inherit; text-decoration: none; }
    .container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

    /* Nav */
    .nav {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: saturate(1.1) blur(10px);
      -webkit-backdrop-filter: saturate(1.1) blur(10px);
      background: rgba(247,243,236,.72);
      border-bottom: 1px solid rgba(33,29,24,.08);
    }
    .nav-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 18px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .nav-brand {
      display: flex;
      align-items: center;
      gap: 11px;
      font-weight: 600;
      letter-spacing: .30em;
      font-size: 16px;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      font-size: 14px;
      font-weight: 500;
    }
    .navlink {
      opacity: .72;
      transition: opacity .25s, color .25s;
      white-space: nowrap;
    }
    .navlink:hover { opacity: 1; }
    .navlink.active { opacity: 1; color: var(--accent); }

    /* Buttons */
    .btn-primary {
      display: inline-block;
      background: var(--ink);
      color: var(--paper);
      padding: 16px 30px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 16px;
      border: none;
      cursor: pointer;
      font-family: inherit;
      transition: transform .25s ease, box-shadow .25s ease;
      text-decoration: none;
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 30px -12px rgba(33,29,24,.5);
    }
    .btn-primary.nav-cta {
      padding: 11px 22px;
      font-size: 14.5px;
    }
    .btn-primary.accent-cta {
      background: var(--accent);
      color: var(--ink);
      font-weight: 700;
    }
    .btn-ghost {
      display: inline-block;
      border: 1px solid rgba(33,29,24,.22);
      color: var(--ink);
      padding: 16px 28px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 16px;
      background: transparent;
      cursor: pointer;
      font-family: inherit;
      transition: border-color .25s, color .25s;
      text-decoration: none;
    }
    .btn-ghost:hover {
      border-color: var(--accent);
      color: var(--accent);
    }

    /* Eyebrow labels */
    .eyebrow {
      font-size: 13px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--muted-light);
      font-weight: 600;
    }

    /* --- SECTIONS --- */

    /* Hero */
    .hero {
      background: var(--paper);
      max-width: 1180px;
      margin: 0 auto;
      padding: 96px 32px 40px;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 40px;
      align-items: center;
      min-height: 80vh;
    }
    .hero-text { position: relative; z-index: 2; }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      animation: rise .7s both;
    }
    .hero-eyebrow-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 4px rgba(194,133,60,.18);
    }
    .hero h1 {
      font-family: 'Newsreader', serif;
      font-weight: 400;
      font-size: clamp(40px, 5.6vw, 76px);
      line-height: 1.03;
      letter-spacing: -.015em;
      margin: 22px 0 0;
      animation: rise .8s .06s both;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--accent);
      font-weight: 300;
    }
    .hero-body {
      max-width: 430px;
      font-size: 18px;
      line-height: 1.62;
      color: var(--ink-soft);
      margin: 28px 0 0;
      animation: rise .8s .14s both;
    }
    .hero-ctas {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 34px;
      animation: rise .8s .2s both;
    }

    /* Device */
    .hero-device {
      position: relative;
      display: grid;
      place-items: center;
      min-height: 440px;
      animation: rise 1s .18s both;
    }
    .device-glow {
      position: absolute;
      width: 560px;
      height: 560px;
      border-radius: 50%;
      background: radial-gradient(circle, color-mix(in oklab, var(--accent) 32%, transparent), transparent 62%);
      filter: blur(14px);
      opacity: var(--glow);
      pointer-events: none;
    }
    .device-disc {
      position: relative;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: radial-gradient(130% 130% at 32% 24%, #FCFAF6 0%, #ECE5D9 52%, #DCD3C3 100%);
      box-shadow:
        0 40px 80px -28px rgba(33,29,24,.45),
        inset 0 2px 3px rgba(255,255,255,.9),
        inset 0 -10px 26px rgba(33,29,24,.10);
    }
    .device-ring {
      position: absolute;
      inset: 34px;
      border-radius: 50%;
      border: 2px solid color-mix(in oklab, var(--accent) 75%, white);
      box-shadow:
        0 0 26px 2px color-mix(in oklab, var(--accent) 55%, transparent),
        inset 0 0 18px color-mix(in oklab, var(--accent) 30%, transparent);
      animation: haloPulse 5.5s ease-in-out infinite;
    }
    .device-center {
      position: absolute;
      inset: 34px;
      border-radius: 50%;
      display: grid;
      place-items: center;
    }
    .device-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 14px 3px color-mix(in oklab, var(--accent) 70%, transparent);
      animation: blink 4s ease-in-out infinite;
    }
    .device-clasp {
      position: absolute;
      top: -13px;
      left: 50%;
      transform: translateX(-50%);
      width: 46px;
      height: 16px;
      border-radius: 8px;
      background: linear-gradient(#E7E0D3, #CFC6B6);
      box-shadow: inset 0 1px 2px rgba(255,255,255,.7), 0 4px 8px rgba(33,29,24,.18);
    }
    .device-caption {
      position: absolute;
      bottom: 6px;
      font-size: 12.5px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--muted-light);
      font-weight: 600;
    }

    /* Page bg wrapper */
    .page-bg { background: var(--paper); }

    /* Trust strip */
    .trust {
      border-top: 1px solid rgba(33,29,24,.08);
      border-bottom: 1px solid rgba(33,29,24,.08);
      background: rgba(255,255,255,.4);
    }
    .trust-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 22px 32px;
      display: flex;
      flex-wrap: wrap;
      gap: 14px 48px;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      color: var(--muted);
      font-weight: 500;
    }
    .trust-sep { opacity: .4; }

    /* What is HALO */
    .what-halo {
      max-width: 1000px;
      margin: 0 auto;
      padding: 120px 32px 96px;
      text-align: center;
    }
    .what-halo h2 {
      font-family: 'Newsreader', serif;
      font-weight: 400;
      font-size: clamp(32px, 4.4vw, 56px);
      line-height: 1.1;
      letter-spacing: -.015em;
      margin: 0;
    }
    .what-halo h2 em {
      font-style: italic;
      color: var(--accent);
      font-weight: 300;
    }
    .what-halo p {
      max-width: 600px;
      margin: 28px auto 0;
      font-size: 19px;
      line-height: 1.62;
      color: var(--ink-soft);
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      margin-top: 64px;
      background: rgba(33,29,24,.10);
      border: 1px solid rgba(33,29,24,.10);
      border-radius: 18px;
      overflow: hidden;
    }
    .stat {
      background: var(--surface);
      padding: 38px 26px;
      text-align: center;
    }
    .stat-num {
      font-family: 'Newsreader', serif;
      font-size: 40px;
      color: var(--accent);
      line-height: 1;
    }
    .stat p {
      margin: 10px 0 0;
      font-size: 15px;
      color: var(--ink-soft);
      line-height: 1.5;
    }

    /* How it works */
    .how-works {
      background: #211D18;
      color: var(--on-dark);
    }
    .how-works-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 120px 32px;
    }
    .how-works-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 72px;
    }
    .how-works h2 {
      font-family: 'Newsreader', serif;
      font-weight: 400;
      font-size: clamp(32px, 4.2vw, 52px);
      letter-spacing: -.015em;
      margin: 0;
      max-width: 9ch;
      line-height: 1.05;
    }
    .how-works-intro {
      max-width: 360px;
      font-size: 16.5px;
      line-height: 1.6;
      color: var(--on-dark-muted);
      margin: 0;
    }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .step {
      border-top: 1px solid rgba(242,237,228,.18);
      padding-top: 26px;
    }
    .stepnum {
      font-family: 'Newsreader', serif;
      font-size: 22px;
      color: #8E8675;
      transition: color .35s;
    }
    .step:hover .stepnum { color: var(--accent); }
    .step h3 {
      font-size: 23px;
      font-weight: 600;
      margin: 36px 0 12px;
      letter-spacing: -.01em;
    }
    .step p {
      font-size: 16px;
      line-height: 1.62;
      color: var(--on-dark-muted);
      margin: 0;
    }

    /* Story */
    .story {
      max-width: 880px;
      margin: 0 auto;
      padding: 130px 32px;
      text-align: center;
    }
    .story-quote {
      font-family: 'Newsreader', serif;
      font-weight: 300;
      font-size: clamp(26px, 3.4vw, 40px);
      line-height: 1.32;
      letter-spacing: -.01em;
      margin: 0;
      color: #332E27;
    }
    .story-attr {
      margin-top: 30px;
      font-size: 14px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--muted-light);
      font-weight: 600;
    }

    /* Specs */
    .specs-section {
      background: rgba(255,255,255,.46);
      border-top: 1px solid rgba(33,29,24,.08);
      border-bottom: 1px solid rgba(33,29,24,.08);
    }
    .specs-inner {
      max-width: 760px;
      margin: 0 auto;
      padding: 110px 32px;
    }
    .specs-content h2 {
      font-family: 'Newsreader', serif;
      font-weight: 400;
      font-size: clamp(30px, 3.6vw, 46px);
      letter-spacing: -.015em;
      margin: 0 0 8px;
      line-height: 1.08;
    }
    .spec-list {
      margin-top: 34px;
      display: flex;
      flex-direction: column;
    }
    .spec-row {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      padding: 18px 0;
      border-top: 1px solid rgba(33,29,24,.12);
    }
    .spec-row:last-child { border-bottom: 1px solid rgba(33,29,24,.12); }
    .spec-label { color: var(--muted); font-size: 15px; }
    .spec-value { font-weight: 600; font-size: 15px; text-align: right; }

    /* Reserve / CTA */
    .reserve-section {
      background: #211D18;
      color: var(--on-dark);
    }
    .reserve-inner {
      max-width: 760px;
      margin: 0 auto;
      padding: 130px 32px;
      text-align: center;
      position: relative;
    }
    .reserve-glow {
      position: absolute;
      left: 50%;
      top: 60px;
      transform: translateX(-50%);
      width: 420px;
      height: 420px;
      border-radius: 50%;
      background: radial-gradient(circle, color-mix(in oklab, var(--accent) 26%, transparent), transparent 60%);
      filter: blur(20px);
      opacity: var(--glow);
      pointer-events: none;
    }
    .reserve-content { position: relative; }
    .reserve-content h2 {
      font-family: 'Newsreader', serif;
      font-weight: 400;
      font-size: clamp(34px, 5vw, 62px);
      letter-spacing: -.015em;
      line-height: 1.04;
      margin: 0;
    }
    .reserve-content p {
      max-width: 440px;
      margin: 22px auto 0;
      font-size: 18px;
      line-height: 1.6;
      color: var(--on-dark-muted);
    }
    .email-form {
      margin-top: 38px;
      display: flex;
      gap: 12px;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
      flex-wrap: wrap;
      justify-content: center;
    }
    .email-input {
      flex: 1;
      min-width: 240px;
      background: rgba(247,243,236,.06);
      border: 1px solid rgba(242,237,228,.24);
      color: var(--on-dark);
      padding: 16px 20px;
      border-radius: 999px;
      font-size: 16px;
      font-family: inherit;
      outline: none;
      transition: border-color .2s;
    }
    .email-input:focus { border-color: rgba(242,237,228,.48); }
    .email-input::placeholder { color: rgba(242,237,228,.4); }
    .reserve-disclaimer {
      margin-top: 18px;
      font-size: 13px;
      color: #857C6C;
    }
    .confirmed-pill {
      margin-top: 38px;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: rgba(242,237,228,.08);
      border: 1px solid rgba(242,237,228,.2);
      border-radius: 999px;
      padding: 16px 28px;
      font-size: 16px;
    }
    .confirmed-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 12px 2px var(--accent);
    }

    /* Footer */
    .footer {
      background: #1A1714;
      color: #9A917F;
    }
    .footer-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 48px 32px 96px;
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      align-items: center;
      justify-content: space-between;
    }
    .footer-brand {
      display: flex;
      align-items: center;
      gap: 11px;
      color: #CFC6B6;
      font-weight: 600;
      letter-spacing: .26em;
      font-size: 14px;
    }
    .footer-links {
      display: flex;
      gap: 28px;
      font-size: 14px;
    }
    .footer-copy { font-size: 13px; }

    /* Responsive */
    @media (max-width: 768px) {
      .hero {
        grid-template-columns: 1fr;
        padding: 80px 24px 40px;
        min-height: auto;
        gap: 48px;
      }
      .hero-device { min-height: 360px; }
      .device-glow { width: 340px; height: 340px; }
      .stats-grid { grid-template-columns: 1fr; }
      .steps-grid { grid-template-columns: 1fr; }
      .how-works-header { flex-direction: column; align-items: flex-start; }
      .nav-links { display: none; }
      .nav-inner { padding: 14px 24px; }
      .container { padding: 0 24px; }
    }
    @media (max-width: 480px) {
      .what-halo { padding: 80px 24px 64px; }
      .story { padding: 80px 24px; }
      .reserve-glow { width: 280px; height: 280px; }
    }

    /* ============================================================
       SUBPAGINA'S (Over ons, Investeerders)
       ============================================================ */

    /* Sub-page hero */
    .subhero {
      max-width: 880px;
      margin: 0 auto;
      padding: 110px 32px 56px;
      text-align: center;
    }
    .subhero h1 {
      font-family: 'Newsreader', serif;
      font-weight: 400;
      font-size: clamp(38px, 5vw, 66px);
      letter-spacing: -.015em;
      line-height: 1.05;
      margin: 16px 0 0;
    }
    .subhero h1 em {
      font-style: italic;
      color: var(--accent);
      font-weight: 300;
    }
    .subhero p {
      max-width: 560px;
      margin: 22px auto 0;
      font-size: 18px;
      line-height: 1.62;
      color: var(--ink-soft);
    }

    /* Generic section header */
    .section-head {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 56px;
    }
    .section-head h2 {
      font-family: 'Newsreader', serif;
      font-weight: 400;
      font-size: clamp(30px, 4vw, 50px);
      letter-spacing: -.015em;
      line-height: 1.08;
      margin: 12px 0 0;
    }
    .section-head h2 em {
      font-style: italic;
      color: var(--accent);
      font-weight: 300;
    }
    .section-head p {
      margin: 18px auto 0;
      font-size: 17px;
      line-height: 1.6;
      color: var(--ink-soft);
    }

    /* Team */
    .team-section {
      max-width: 1180px;
      margin: 0 auto;
      padding: 40px 32px 120px;
    }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .team-card {
      background: var(--surface);
      border: 1px solid rgba(33,29,24,.10);
      border-radius: 20px;
      padding: 36px 30px;
      text-align: center;
    }
    .team-avatar {
      width: 92px;
      height: 92px;
      border-radius: 50%;
      margin: 0 auto 20px;
      background: radial-gradient(130% 130% at 32% 24%, #FCFAF6 0%, #ECE5D9 58%, #DCD3C3 100%);
      display: grid;
      place-items: center;
      font-family: 'Newsreader', serif;
      font-size: 30px;
      color: var(--accent);
      border: 1px solid rgba(33,29,24,.08);
      box-shadow: inset 0 2px 3px rgba(255,255,255,.8);
    }
    .team-name {
      font-size: 20px;
      font-weight: 600;
      letter-spacing: -.01em;
      margin: 0;
    }
    .team-role {
      margin: 5px 0 0;
      font-size: 12.5px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--muted-light);
      font-weight: 600;
    }
    .team-bio {
      margin: 16px 0 0;
      font-size: 15px;
      line-height: 1.6;
      color: var(--ink-soft);
    }

    /* Investor — content blocks */
    .invest-section {
      max-width: 1180px;
      margin: 0 auto;
      padding: 80px 32px;
    }
    .two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .info-card {
      background: var(--surface);
      border: 1px solid rgba(33,29,24,.10);
      border-radius: 20px;
      padding: 40px;
    }
    .info-card .eyebrow {
      display: block;
      margin-bottom: 14px;
    }
    .info-card h3 {
      font-size: 22px;
      font-weight: 600;
      letter-spacing: -.01em;
      margin: 0 0 12px;
    }
    .info-card p {
      margin: 0;
      font-size: 16px;
      line-height: 1.62;
      color: var(--ink-soft);
    }

    /* Investor — metrics band (dark) */
    .metrics-band {
      background: #211D18;
      color: var(--on-dark);
    }
    .metrics-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 100px 32px;
    }
    .metrics-band .section-head h2 { color: var(--on-dark); }
    .metrics-band .section-head p { color: var(--on-dark-muted); }
    .metrics-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(242,237,228,.14);
      border: 1px solid rgba(242,237,228,.14);
      border-radius: 18px;
      overflow: hidden;
    }
    .metric {
      background: #211D18;
      padding: 38px 24px;
      text-align: center;
    }
    .metric-num {
      font-family: 'Newsreader', serif;
      font-size: 42px;
      color: var(--accent);
      line-height: 1;
    }
    .metric p {
      margin: 10px 0 0;
      font-size: 14px;
      color: var(--on-dark-muted);
      line-height: 1.5;
    }

    /* Investor — contact / deck CTA */
    .invest-cta {
      max-width: 760px;
      margin: 0 auto;
      padding: 100px 32px 120px;
      text-align: center;
    }
    .invest-cta .info-card { padding: 56px 48px; }
    .invest-cta h2 {
      font-family: 'Newsreader', serif;
      font-weight: 400;
      font-size: clamp(28px, 3.6vw, 44px);
      letter-spacing: -.015em;
      line-height: 1.08;
      margin: 0;
    }
    .invest-cta p {
      max-width: 460px;
      margin: 18px auto 0;
      font-size: 17px;
      line-height: 1.6;
      color: var(--ink-soft);
    }
    .invest-cta-actions {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 32px;
    }

    /* Subpagina responsive */
    @media (max-width: 768px) {
      .team-grid { grid-template-columns: 1fr; }
      .two-col { grid-template-columns: 1fr; }
      .metrics-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 480px) {
      .metrics-grid { grid-template-columns: 1fr; }
      .subhero { padding: 80px 24px 48px; }
      .invest-section { padding: 64px 24px; }
    }

    /* ============================================================
       VOORMALIG LID / STILLE VENNOOT — lege & geschrapte profielen
       ============================================================ */

    /* Geschrapte vierde teamkaart */
    .team-card-redacted {
      font-family: inherit;
      cursor: pointer;
      width: 100%;
      appearance: none;
      -webkit-appearance: none;
      transition: border-color .2s ease;
    }
    .team-card-redacted:hover { border-color: rgba(33,29,24,.22); }
    .team-avatar-empty {
      background: rgba(33,29,24,.03);
      border: 1px dashed rgba(33,29,24,.16);
      box-shadow: none;
    }
    .team-name-redacted {
      min-height: 24px;
      color: var(--muted-light);
    }
    .redacted-flicker {
      text-decoration: line-through;
      color: var(--muted-light);
      opacity: 0;
      animation: redactedFlicker 7s linear infinite;
    }
    @keyframes redactedFlicker {
      0%, 70%, 100% { opacity: 0; }
      71%, 72%      { opacity: .5; }
      73%           { opacity: 0; }
      88%           { opacity: 0; }
      89%           { opacity: .35; }
      90%           { opacity: 0; }
    }

    /* Stille-vennoot-kaart (investeerders) */
    .info-card-void {
      font-family: inherit;
      color: inherit;
      text-align: left;
      cursor: pointer;
      width: 100%;
      appearance: none;
      -webkit-appearance: none;
      transition: border-color .2s ease;
    }
    .info-card-void:hover { border-color: rgba(33,29,24,.22); }
    .info-card .glyph { color: var(--accent); font-weight: 400; }

    /* Vijfde metriek op de tractie-band */
    .metrics-grid-5 { grid-template-columns: repeat(5, 1fr); }
    .metrics-foot {
      text-align: center;
      margin: 28px 0 0;
      font-size: 14px;
      color: var(--on-dark-muted);
    }
    .metrics-foot em { color: var(--accent); font-style: italic; }

    /* Void-overlay (404 / eindeloze leegte) */
    .void-overlay {
      position: fixed;
      inset: 0;
      display: none;
      place-items: center;
      z-index: 200;
      background: rgba(20,17,13,.86);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }
    .void-overlay.open { display: grid; }
    .void-inner { text-align: center; color: var(--on-dark); padding: 40px; }
    .void-404 {
      font-family: 'Newsreader', serif;
      font-size: 72px;
      line-height: 1;
      color: var(--accent);
    }
    .void-msg {
      margin: 14px 0 0;
      color: var(--on-dark-muted);
      letter-spacing: .04em;
    }
    .void-glyph {
      font-size: 54px;
      color: var(--accent);
      margin-bottom: 26px;
    }
    .void-spinner {
      width: 38px;
      height: 38px;
      margin: 0 auto;
      border: 2px solid rgba(242,237,228,.18);
      border-top-color: var(--accent);
      border-radius: 50%;
      animation: voidSpin 1s linear infinite;
    }
    @keyframes voidSpin { to { transform: rotate(360deg); } }

    @media (max-width: 900px) {
      .metrics-grid-5 { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 480px) {
      .metrics-grid-5 { grid-template-columns: 1fr; }
    }

    /* ============================================================
       UITGEBREIDE SITE — globale footer + extra pagina's
       (manifest · impact · verhalen · be-one · pers ·
        jobs · faq · status · blog)
       ============================================================ */

    /* Globale footer (uitgebreid) */
    .footer-inner {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 22px;
      padding: 56px 32px 92px;
    }
    .footer-links {
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px 24px;
    }
    .footer-legal { font-size: 12.5px; color: #6F675A; }
    .footer-tagline {
      font-size: 13px;
      letter-spacing: .14em;
      color: #CFC6B6;
    }
    .footer-copy { font-size: 12.5px; color: #6F675A; }
    .glyph { color: var(--accent); }

    /* Generieke tekstsectie (manifest, jobs, …) */
    .prose {
      max-width: 760px;
      margin: 0 auto;
      padding: 20px 32px 96px;
    }
    .prose p {
      font-size: 18px;
      line-height: 1.7;
      color: var(--ink-soft);
      margin: 0 0 22px;
    }
    .prose p:last-child { margin-bottom: 0; }
    .prose .lead {
      font-family: 'Newsreader', serif;
      font-size: clamp(22px, 3vw, 30px);
      line-height: 1.4;
      color: #332E27;
    }
    .prose .signoff {
      margin-top: 36px;
      font-size: 14px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--muted-light);
      font-weight: 600;
    }
    .prose ul {
      margin: 0 0 22px;
      padding-left: 0;
      list-style: none;
    }
    .prose ul li {
      position: relative;
      padding-left: 28px;
      font-size: 17px;
      line-height: 1.6;
      color: var(--ink-soft);
      margin-bottom: 14px;
    }
    .prose ul li::before {
      content: "⟁";
      position: absolute;
      left: 0;
      color: var(--accent);
      font-size: 13px;
      top: 3px;
    }

    /* Drie kolommen */
    .three-col {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .three-col .info-card { text-align: center; }

    /* Highlight-regel (geofence-clue e.d.) */
    .note-line {
      max-width: 720px;
      margin: 44px auto 0;
      text-align: center;
      font-style: italic;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.55;
    }

    /* FAQ */
    .faq-list { max-width: 760px; margin: 0 auto; padding: 20px 32px 96px; }
    .faq-item {
      border-top: 1px solid rgba(33,29,24,.12);
      padding: 28px 0;
    }
    .faq-item:last-child { border-bottom: 1px solid rgba(33,29,24,.12); }
    .faq-item h3 {
      font-size: 19px;
      font-weight: 600;
      margin: 0 0 10px;
      letter-spacing: -.01em;
    }
    .faq-item p {
      margin: 0;
      font-size: 16px;
      line-height: 1.62;
      color: var(--ink-soft);
    }

    /* Verhalen — community-muur */
    .wall {
      max-width: 720px;
      margin: 0 auto;
      padding: 20px 32px 96px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .wall-post {
      background: var(--surface);
      border: 1px solid rgba(33,29,24,.10);
      border-radius: 18px;
      padding: 24px 26px;
    }
    .wall-text {
      font-family: 'Newsreader', serif;
      font-size: 20px;
      line-height: 1.42;
      color: #332E27;
      margin: 0 0 12px;
    }
    .wall-meta {
      font-size: 12.5px;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--muted-light);
      font-weight: 600;
    }
    .wall-name-empty { opacity: .4; }
    .wall-post.sync { border-color: rgba(194,133,60,.4); }

    /* be-one gate */
    .gate-counter {
      font-family: 'Newsreader', serif;
      font-size: clamp(40px, 6vw, 64px);
      color: var(--accent);
      line-height: 1;
      margin-top: 10px;
    }
    .gate-counter-label { color: var(--on-dark-muted); font-size: 15px; margin-top: 12px; }
    .gate-form {
      margin-top: 34px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      max-width: 420px;
      margin-left: auto;
      margin-right: auto;
    }
    .gate-form .btn-primary { width: 100%; margin-top: 6px; }
    .event-details {
      margin-top: 24px;
      color: var(--on-dark-muted);
      font-size: 15.5px;
      line-height: 1.65;
    }

    /* Pers */
    .press-list {
      max-width: 760px;
      margin: 0 auto;
      padding: 20px 32px 8px;
      display: flex;
      flex-direction: column;
      gap: 26px;
    }
    .press-quote {
      font-family: 'Newsreader', serif;
      font-size: clamp(22px, 3vw, 30px);
      line-height: 1.32;
      color: #332E27;
      margin: 0;
    }
    .press-quote span {
      display: block;
      margin-top: 10px;
      font-family: 'Hanken Grotesk', sans-serif;
      font-size: 13px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--muted-light);
    }
    .notice {
      max-width: 760px;
      margin: 36px auto 96px;
      background: var(--surface);
      border: 1px solid rgba(194,133,60,.4);
      border-left: 3px solid var(--accent);
      border-radius: 16px;
      padding: 28px 30px;
    }
    .notice strong { display: block; margin-bottom: 10px; letter-spacing: .04em; }
    .notice p { margin: 0; font-size: 15.5px; line-height: 1.62; color: var(--ink-soft); font-style: italic; }

    /* Status — uptime-monitor look */
    .status-wrap { max-width: 820px; margin: 0 auto; padding: 20px 32px 96px; }
    .status-head {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 28px;
    }
    .status-dot {
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background: #5FA86A;
      box-shadow: 0 0 10px 1px rgba(95,168,106,.7);
    }
    .status-list { border: 1px solid rgba(33,29,24,.12); border-radius: 16px; overflow: hidden; }
    .status-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 24px;
      background: var(--surface);
      border-top: 1px solid rgba(33,29,24,.08);
    }
    .status-row:first-child { border-top: none; }
    .status-row .label { font-size: 15.5px; }
    .status-row .state {
      font-size: 13px;
      letter-spacing: .08em;
      text-transform: uppercase;
      font-weight: 600;
      color: #5FA86A;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .status-graph {
      margin-top: 30px;
      display: flex;
      align-items: flex-end;
      gap: 6px;
      height: 130px;
    }
    .status-graph .bar {
      flex: 1;
      background: linear-gradient(var(--accent), color-mix(in oklab, var(--accent) 28%, transparent));
      border-radius: 4px 4px 0 0;
      opacity: .85;
    }
    .status-sched {
      margin-top: 30px;
      background: var(--surface);
      border: 1px solid rgba(194,133,60,.4);
      border-radius: 16px;
      padding: 22px 24px;
      font-size: 15px;
      line-height: 1.6;
      color: var(--ink-soft);
    }
    .status-sched strong { color: var(--ink); }

    /* Blog */
    .blog-list { max-width: 760px; margin: 0 auto; padding: 20px 32px 96px; }
    .blog-section-label {
      font-size: 13px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--muted-light);
      font-weight: 600;
      margin: 36px 0 8px;
    }
    .blog-section-label:first-child { margin-top: 0; }
    .blog-item { border-top: 1px solid rgba(33,29,24,.12); padding: 22px 0; }
    .blog-title { font-family: 'Newsreader', serif; font-size: 22px; margin: 0 0 6px; color: #2A251F; }
    .blog-author { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-light); }
    .blog-body { max-width: 640px; }
    .blog-body p {
      font-size: 16px;
      line-height: 1.7;
      color: var(--ink-soft);
      margin: 14px 0 0;
    }
    .blog-deleted .blog-title { text-decoration: line-through; color: var(--muted-light); }
    /* Gecachte kopie: onzichtbaar tot iemand de tekst selecteert */
    .blog-cached {
      margin-top: 14px;
      background: rgba(33,29,24,.04);
      border: 1px dashed rgba(33,29,24,.18);
      border-radius: 12px;
      padding: 18px 20px;
      font-family: 'Newsreader', serif;
      font-style: italic;
      color: transparent;
      line-height: 1.6;
    }
    .blog-cached::selection {
      color: var(--accent);
      background: #211D18;
    }

    @media (max-width: 768px) {
      .three-col { grid-template-columns: 1fr; }
    }
