/* ── Design tokens (zelfde taal als kajvonk.nl) ──────────────────────────── */
:root {
  --bg:      #0a0a0d;
  --surf:    #131317;
  --surf2:   #191a20;
  --border:  #232329;
  --text:    #ece9e4;
  --text2:   #9d9aa3;
  --text3:   #847f8d;
  --accent:  #ff7a3d;
  --accent2: #ffb37a;
  --error:   #ff6b6b;

  --font-display: Georgia, "Iowan Old Style", "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap: 640px;
  --radius: 12px;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: var(--accent2); text-decoration-color: var(--border); text-underline-offset: 3px; }
a:hover { text-decoration-color: currentColor; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #0a0a0d;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  font-weight: 600;
  z-index: 100;
}
.skip-link:focus { left: 0; }

/* ── Header ────────────────────────────────────────────────────────────── */
.site-header {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
}

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  padding: 64px 0 80px;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent2);
  font-weight: 600;
  margin-bottom: 18px;
  text-align: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 7vw, 48px);
  line-height: 1.12;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}

.hero-lede {
  font-size: clamp(17px, 3vw, 20px);
  color: var(--text2);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.5;
  text-align: center;
}

/* ── Bullets ───────────────────────────────────────────────────────────── */
.bullet-list {
  list-style: none;
  max-width: 420px;
  margin: 0 auto 44px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.bullet-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--surf2);
  border: 1px solid var(--border);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

/* ── Form ──────────────────────────────────────────────────────────────── */
.form-card {
  background: var(--surf2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 440px;
  margin: 0 auto;
}

.field { margin-bottom: 18px; }

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  margin-bottom: 8px;
}

.field input[type="text"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  font-family: var(--font-body);
}

.field input[type="text"]:focus {
  outline: none;
  border-color: var(--accent);
}

.field input.invalid {
  border-color: var(--error);
}

.field-error {
  color: var(--error);
  font-size: 13px;
  margin-top: 6px;
  min-height: 0;
}

/* Honeypot: onzichtbaar voor mensen, maar niet display:none (bots ontwijken dat vaak) */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.btn {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, opacity 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn:disabled { opacity: 0.6; cursor: default; transform: none; }

.btn-primary {
  background: var(--accent);
  color: #16110b;
}
.btn-primary:hover:not(:disabled) { background: var(--accent2); }

.btn-submit { width: 100%; text-align: center; }

.form-note {
  font-size: 13px;
  color: var(--text3);
  text-align: center;
  margin-top: 14px;
}

.confirmation {
  text-align: center;
  padding: 12px 0;
}

.confirmation h2 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--accent2);
}

.confirmation p {
  color: var(--text2);
  font-size: 15px;
}

/* ── Footer ────────────────────────────────────────────────────────────── */
.site-footer {
  padding: 32px 0 40px;
  border-top: 1px solid var(--border);
}

.footer-inner { text-align: center; }

.footer-note {
  font-size: 13px;
  color: var(--text3);
}

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero { padding: 44px 0 56px; }
  .form-card { padding: 24px; }
}
