/* ============================================
   ZKVISUALS — brand tokens
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --bg: #0a0a0a;
  --text: #f5f3ee;
  --accent: #c8f542;
  --accent-dark: #a8d62a;
  --card: #2a2a2a;
  --border: #2f2f2f;
  --subtext: #888888;

  --display: 'Bebas Neue', sans-serif;
  --body: 'Inter', sans-serif;
  --mono: 'IBM Plex Mono', monospace;

  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

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

/* ============================================
   Scroll progress bar — playhead motif
   ============================================ */
.scrubber {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--border);
  z-index: 200;
}
.scrubber__fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  position: relative;
  transition: width 0.05s linear;
}
.scrubber__fill::after {
  content: '';
  position: absolute;
  right: -3px; top: 50%;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
  box-shadow: 0 0 8px 1px rgba(200, 245, 66, 0.6);
}

/* ============================================
   Nav
   ============================================ */
header.site-header {
  position: sticky;
  top: 3px;
  z-index: 100;
  background: rgba(10, 10, 10, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.logo {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo .play {
  display: inline-block;
  width: 0; height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--accent);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
}
.nav-links a {
  color: var(--subtext);
  transition: color 0.15s ease;
  position: relative;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
}
.nav-links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  background: var(--accent);
}
.nav-cta {
  background: var(--accent);
  color: #0a0a0a !important;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.15s ease;
}
.nav-cta:hover { background: var(--accent-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  width: 40px; height: 40px;
  font-size: 18px;
  cursor: pointer;
}

@media (max-width: 780px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
  }
  .nav-links.open a { padding: 12px 0; width: 100%; }
  .nav-toggle { display: block; }
}

/* ============================================
   Type scale
   ============================================ */
.eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.3px;
  line-height: 1.05;
  margin: 0;
}
h1 { font-size: clamp(40px, 7vw, 76px); }
h2 { font-size: clamp(30px, 4.5vw, 46px); }
h3 { font-size: 24px; }

p { color: var(--subtext); }
p.lead { color: var(--text); font-size: 19px; max-width: 560px; }

.section {
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}
.section:last-of-type { border-bottom: none; }

/* ============================================
   Buttons
   ============================================ */
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn-primary { background: var(--accent); color: #0a0a0a; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-ghost { border: 1px solid var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ============================================
   Hero
   ============================================ */
.hero {
  padding: 120px 0 90px;
}

/* ============================================
   Timeline / werkwijze
   ============================================ */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 11px; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}
.timeline-step { position: relative; padding-top: 34px; }
.timeline-step::before {
  content: '';
  position: absolute;
  top: 4px; left: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
}
.timeline-step .tc {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}
.timeline-step h3 { font-size: 20px; margin-bottom: 8px; }

@media (max-width: 780px) {
  .timeline { grid-template-columns: 1fr; gap: 40px; }
  .timeline::before { display: none; }
}

/* ============================================
   Cards
   ============================================ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
}
.card h3 { margin-bottom: 12px; }
.card p { margin: 0; font-size: 15px; }

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
}

/* ============================================
   Pricing
   ============================================ */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.plan {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.plan .tc {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--subtext);
}
.plan h3 { margin: 6px 0 18px; }
.plan .price {
  font-family: var(--mono);
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 4px;
}
.plan .price span {
  font-size: 13px;
  color: var(--subtext);
  font-family: var(--body);
}
.plan .min {
  font-size: 13px;
  color: var(--subtext);
  margin-bottom: 20px;
}
.plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex-grow: 1;
}
.plan li {
  font-size: 14px;
  padding: 8px 0;
  border-top: 1px solid var(--border);
  color: var(--text);
}
.plan li:first-child { border-top: none; }
.plan .btn { justify-content: center; width: 100%; }

@media (max-width: 1000px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-4 { grid-template-columns: 1fr; }
}

/* ============================================
   Contact
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
}
.contact-card .tc {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--subtext);
  margin-bottom: 10px;
  display: block;
}
.contact-card h3 { margin-bottom: 12px; }
.contact-card p { margin-bottom: 20px; font-size: 15px; }

@media (max-width: 780px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Footer
   ============================================ */
footer {
  padding: 48px 0;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-row .logo { font-size: 18px; }
footer p { font-size: 13px; margin: 0; }
footer .socials { display: flex; gap: 20px; font-size: 14px; }
footer .socials a { color: var(--subtext); }
footer .socials a:hover { color: var(--accent); }

/* ============================================
   Reveal on scroll
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .eyebrow .dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* Focus visibility */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
