:root {
  --bg: #0a1410;
  --bg-soft: #11201a;
  --bg-card: #16291f;
  --fg: #e8f0e9;
  --fg-soft: #97a89c;
  --fg-muted: #6c7d72;
  --border: #1f3328;
  --accent: #6ce4a8;
  --accent-deep: #3da77a;
  --glow: rgba(108, 228, 168, 0.10);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 700px;
  background: radial-gradient(ellipse, var(--glow), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* ── Topbar ────────────────────────────────────────── */
.topbar {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 10;
  backdrop-filter: blur(12px);
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 500;
  text-decoration: none;
  color: var(--fg);
}
.brand-mark {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--accent);
  flex-shrink: 0;
}
/* Finetune B: geen "2026", alleen "Stichting" */
.brand small {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--accent);
  margin-left: 8px;
  padding-left: 14px;
  border-left: 1px solid var(--border);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
}
nav ul { list-style: none; display: flex; gap: 36px; font-size: 14px; }
nav a { color: var(--fg-soft); text-decoration: none; transition: color 0.2s; }
nav a:hover { color: var(--accent); }

/* ── Hero ──────────────────────────────────────────── */
.hero {
  max-width: 1000px;
  margin: 0 auto;
  padding: 140px 40px 100px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 36px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent-deep);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 8.5vw, 120px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 36px;
}
.hero-title em { font-style: italic; color: var(--accent); font-weight: 400; }
.hero-sub {
  font-size: 19px;
  color: var(--fg-soft);
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto;
  font-weight: 300;
}

/* ── Info-strip ────────────────────────────────────── */
.info-strip {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  background: var(--bg-soft);
}
.info-cell {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.info-cell:last-child { border-right: none; }
.info-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--fg-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.info-value {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 400;
}
.info-value .accent { color: var(--accent); }

/* ── Secties ───────────────────────────────────────── */
section {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-align: center;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}
.section-title em { font-style: italic; color: var(--accent); }

/* ── Platforms ─────────────────────────────────────── */
.platform-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
.platform {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 60px 1fr 220px;
  gap: 32px;
  align-items: center;
  transition: border-color 0.3s, transform 0.3s;
}
.platform:hover { border-color: var(--accent-deep); transform: translateY(-2px); }
.platform-num { font-family: 'IBM Plex Mono', monospace; color: var(--accent); font-size: 13px; }
.platform-content .name {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.platform-content .desc { color: var(--fg-soft); font-size: 14px; line-height: 1.6; max-width: 500px; }
.platform-action { text-align: right; }
.status {
  display: inline-block;
  padding: 4px 12px;
  background: var(--glow);
  color: var(--accent);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
}
.status.planned { background: var(--bg-card); color: var(--fg-muted); }
.platform-link {
  display: block;
  margin-top: 12px;
  color: var(--fg);
  text-decoration: none;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
}
.platform-link:hover { color: var(--accent); }
.platform-link::after { content: ' →'; transition: margin-left 0.2s; }
.platform-link:hover::after { margin-left: 4px; }
.platform.coming .name { color: var(--fg-muted); }

/* ── Doelstelling (finetune A: geen Romeinse cijfers) ─ */
.doel {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.doel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}
.doel-card { text-align: center; padding: 0 24px; }
/* .doel-card-num is verwijderd — geen i./ii. nummering */
.doel-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.doel-card p {
  color: var(--fg-soft);
  line-height: 1.7;
  max-width: 380px;
  margin: 0 auto;
  font-size: 15px;
}

/* ── Contact ───────────────────────────────────────── */
.contact-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.contact-title em { font-style: italic; color: var(--accent); }
.contact-text { font-size: 17px; color: var(--fg-soft); line-height: 1.7; margin-bottom: 40px; }
.btn {
  display: inline-block;
  padding: 16px 36px;
  background: var(--accent);
  color: var(--bg);
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 40px var(--glow); }

/* ── Generieke pagina-inhoud ───────────────────────── */
.page-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 40px;
}
.page-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.page-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--fg);
  margin: 40px 0 12px;
}
.page-content p {
  color: var(--fg-soft);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.contact-email-display {
  margin: 32px 0 28px;
}
.contact-email-display a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 20px;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.contact-email-display a:hover { text-decoration: underline; }

/* ── Footer ────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  position: relative;
  z-index: 1;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--fg-muted);
}
.footer-inner a { color: var(--fg-muted); text-decoration: none; }
.footer-inner a:hover { color: var(--accent); }

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 768px) {
  nav ul { display: none; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .info-cell:nth-child(2) { border-right: none; }
  .info-cell:nth-child(1),
  .info-cell:nth-child(2) { border-bottom: 1px solid var(--border); }
  .platform { grid-template-columns: 1fr; gap: 16px; padding: 28px; }
  .platform-action { text-align: left; }
  .doel-grid { grid-template-columns: 1fr; gap: 48px; }
  .topbar-inner,
  .hero,
  .info-strip,
  .section-inner,
  .contact-inner,
  .footer-inner,
  .page-content { padding-left: 20px; padding-right: 20px; }
  section { padding: 60px 0; }
}
