/* ═══════════ VOI On-Demand — dark violet / glass / neon aesthetic ═══════════ */
:root {
  --bg: #050109;
  --bg2: #0A0313;
  --surf: rgba(255, 255, 255, .03);
  --surf2: rgba(255, 255, 255, .06);
  --violet: #A855F7;
  --violet-deep: #7C3AED;
  --violet-soft: rgba(168, 85, 247, .14);
  --lavender: #D8B4FE;
  --grad: linear-gradient(100deg, #C084FC 0%, #A855F7 45%, #818CF8 100%);
  --text: #FFFFFF;
  --text2: rgba(255, 255, 255, .64);
  --muted: rgba(255, 255, 255, .38);
  --border: rgba(255, 255, 255, .08);
  --border2: rgba(255, 255, 255, .16);
  --success: #4ADE80;

  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --text-hero: clamp(2.6rem, 1rem + 6vw, 5.4rem);
  --text-h2: clamp(1.9rem, 1.2rem + 2.8vw, 3.2rem);
  --space-section: clamp(4.5rem, 3rem + 6vw, 10rem);

  --dur-fast: 150ms;
  --dur: 300ms;
  --dur-slow: 700ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--font-display); letter-spacing: -.02em; }
h1 { font-size: var(--text-hero); font-weight: 600; line-height: 1.08; }
h2 { font-size: var(--text-h2); font-weight: 600; line-height: 1.12; }
h3 { font-size: 1.12rem; font-weight: 600; }

h1 em, h2 em, .task-cta em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mono { font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; }
.center { text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center;
  font-family: var(--font-body);
  font-size: .85rem; font-weight: 500;
  letter-spacing: .02em;
  color: var(--lavender);
  background: var(--violet-soft);
  border: 1px solid rgba(168, 85, 247, .3);
  border-radius: 999px;
  padding: .45rem 1.1rem;
  margin-bottom: 1.4rem;
  text-transform: none;
}
.center .eyebrow, .eyebrow.center { margin-inline: auto; }
.eyebrow-link { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(216, 180, 254, .4); transition: border-color var(--dur-fast); }
.eyebrow-link:hover { border-color: var(--lavender); }
section > .eyebrow.center, section > .eyebrow { display: table; }
.stats-section > .eyebrow, .center.eyebrow { margin-left: auto; margin-right: auto; }

.section { padding: var(--space-section) clamp(1.2rem, 4vw, 4rem); max-width: 1200px; margin: 0 auto; }
.section-sub { color: var(--text2); max-width: 620px; margin: 1.4rem auto 0; }
.section-sub strong { color: var(--text); font-weight: 500; }

/* ═══════════ Reveal on scroll ═══════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .chip, .hero-glow, .marquee-track, .pulse, .cube, .ribbon path { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ═══════════ Buttons ═══════════ */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  padding: .8rem 1.6rem; border-radius: 999px;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast), border-color var(--dur-fast), box-shadow var(--dur);
}
.btn:active { transform: scale(.97); }
.btn-primary { background: #fff; color: #0A0313; }
.btn-primary svg {
  background: var(--violet-deep); color: #fff;
  border-radius: 50%; padding: 5px; width: 22px; height: 22px;
  transition: transform var(--dur-fast) var(--ease-out);
}
.btn-primary:hover { box-shadow: 0 0 40px -6px rgba(168, 85, 247, .7); transform: translateY(-2px); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost { color: var(--text); border-color: var(--border2); background: rgba(255, 255, 255, .04); backdrop-filter: blur(8px); }
.btn-ghost:hover { border-color: rgba(168, 85, 247, .6); background: var(--violet-soft); transform: translateY(-2px); }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn:focus-visible { outline: 2px solid var(--violet); outline-offset: 3px; }

/* ═══════════ Nav ═══════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .9rem clamp(1.2rem, 4vw, 3rem);
  background: rgba(5, 1, 9, .6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; color: var(--text); text-decoration: none; }
.nav-wordmark {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--lavender);
  transition: color var(--dur-fast);
}
.nav-logo:hover .nav-wordmark { color: var(--text); }
.nav nav { display: flex; gap: 1.8rem; }
.nav nav a { color: var(--text2); text-decoration: none; font-size: .92rem; font-weight: 500; transition: color var(--dur-fast); }
.nav nav a:hover { color: var(--text); }
.nav-cta { padding: .55rem 1.15rem; font-size: .88rem; }
@media (max-width: 760px) { .nav nav { display: none; } }

/* ═══════════ Hero ═══════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 7rem clamp(1.2rem, 4vw, 4rem) 4rem;
  overflow: hidden;
  background: radial-gradient(90% 70% at 50% 100%, #16062A 0%, var(--bg) 60%);
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(46% 40% at 72% 72%, rgba(168, 85, 247, .28), transparent 70%),
    radial-gradient(34% 30% at 22% 18%, rgba(129, 140, 248, .14), transparent 70%);
  animation: glowDrift 12s ease-in-out infinite alternate;
}
@keyframes glowDrift {
  from { transform: translate3d(0, 0, 0) scale(1); opacity: .85; }
  to { transform: translate3d(0, -3%, 0) scale(1.08); opacity: 1; }
}
.hero-inner {
  position: relative;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem;
  align-items: center; max-width: 1200px; margin: 0 auto; width: 100%;
}
.hero-sub { color: var(--text2); max-width: 520px; margin-top: 1.6rem; font-size: 1.08rem; }
.hero-actions { display: flex; gap: .9rem; margin-top: 2.2rem; flex-wrap: wrap; }
.hero-note { margin-top: 2rem; color: var(--muted); font-size: .9rem; }

.hero .reveal:nth-child(1) { transition-delay: 0ms; }
.hero .reveal:nth-child(2) { transition-delay: 90ms; }
.hero .reveal:nth-child(3) { transition-delay: 180ms; }
.hero .reveal:nth-child(4) { transition-delay: 270ms; }
.hero .reveal:nth-child(5) { transition-delay: 360ms; }

/* Neon ribbon */
.hero-visual { position: relative; height: 500px; }
.ribbon { position: absolute; inset: -8% -18%; width: 136%; height: 116%; pointer-events: none; }
.ribbon .ribbon-base { fill: none; stroke: url(#ribbonGrad); stroke-width: 26; stroke-linecap: round; opacity: .25; }
.ribbon .ribbon-core {
  fill: none; stroke: url(#ribbonGrad); stroke-width: 7; stroke-linecap: round;
  filter: drop-shadow(0 0 14px rgba(168, 85, 247, .9));
  stroke-dasharray: 60 940;
  animation: ribbonFlow 5.5s linear infinite;
}
@keyframes ribbonFlow { to { stroke-dashoffset: -1000; } }

/* Glass cubes */
.cube {
  position: absolute;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .16), rgba(168, 85, 247, .08) 45%, rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .3),
    0 24px 60px -18px rgba(124, 58, 237, .55);
  display: grid; place-items: center;
  color: var(--lavender);
  animation: cubeFloat 7s ease-in-out infinite;
  will-change: transform;
}
.cube svg { width: 42%; height: 42%; filter: drop-shadow(0 0 8px rgba(216, 180, 254, .8)); }
.cube-1 { width: 92px; height: 92px; top: 8%; left: 14%; animation-delay: 0s; transform: rotate(-8deg); }
.cube-2 { width: 120px; height: 120px; top: 38%; right: 4%; animation-delay: 1.8s; transform: rotate(6deg); }
.cube-3 { width: 74px; height: 74px; bottom: 6%; left: 6%; animation-delay: 3.2s; transform: rotate(10deg); }
@keyframes cubeFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -16px; }
}

/* Floating chips */
.chip {
  position: absolute; z-index: 2;
  display: flex; align-items: center; gap: .6rem;
  background: rgba(20, 8, 36, .75);
  border: 1px solid var(--border2);
  border-radius: 999px;
  padding: .55rem 1rem .55rem .8rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px -10px rgba(124, 58, 237, .5);
  animation: chipFloat 6s ease-in-out infinite;
  will-change: transform;
}
.chip-label { font-weight: 500; font-size: .86rem; white-space: nowrap; }
.chip-meta { font-family: var(--font-mono); font-size: 10px; letter-spacing: .06em; color: var(--muted); white-space: nowrap; }
.chip-dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.chip-dot.ok { background: var(--success); box-shadow: 0 0 10px rgba(74, 222, 128, .7); }
.chip-dot.busy { background: var(--violet); box-shadow: 0 0 10px rgba(168, 85, 247, .8); }
.chip-1 { top: 2%; left: 24%; animation-delay: 0s; }
.chip-2 { top: 22%; right: -2%; animation-delay: 1.4s; }
.chip-3 { bottom: 28%; left: -4%; animation-delay: 2.6s; }
.chip-4 { bottom: 4%; right: 10%; animation-delay: 3.4s; }
@keyframes chipFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -12px, 0); }
}

.hero-card {
  position: absolute; z-index: 2; top: 50%; left: 50%;
  transform: translate(-50%, -46%);
  width: min(300px, 82%);
  background: linear-gradient(160deg, rgba(30, 12, 54, .85), rgba(10, 3, 19, .9));
  border: 1px solid rgba(168, 85, 247, .35);
  border-radius: 20px;
  padding: 1.3rem 1.4rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .12),
    0 30px 90px -20px rgba(124, 58, 237, .6);
}
.hero-card-head { display: flex; align-items: center; gap: .55rem; color: var(--lavender); padding-bottom: .9rem; border-bottom: 1px solid var(--border); margin-bottom: .9rem; }
.pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--success); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}
.hero-card-row { display: flex; justify-content: space-between; align-items: baseline; padding: .42rem 0; font-size: .92rem; color: var(--text2); }
.hero-card-row strong { font-family: var(--font-display); font-size: 1.45rem; font-weight: 600; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-card-row strong.zero { background: none; color: var(--success); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { height: 400px; margin-top: 1rem; }
}

/* ═══════════ Marquee ═══════════ */
.marquee { overflow: hidden; border-block: 1px solid var(--border); padding: 1.1rem 0; background: var(--bg2); }
.marquee-track {
  display: flex; align-items: center; gap: 2.4rem;
  width: max-content;
  animation: marquee 36s linear infinite;
  will-change: transform;
}
.marquee-track span { font-family: var(--font-mono); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.marquee-track i { width: 5px; height: 5px; border-radius: 50%; background: var(--violet); box-shadow: 0 0 8px rgba(168, 85, 247, .9); flex: none; }
@keyframes marquee { to { transform: translate3d(-50%, 0, 0); } }

/* ═══════════ Takengalerij ═══════════ */
.task-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.1rem;
  margin-top: 3.4rem;
}
.task {
  position: relative;
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.7rem 1.6rem;
  overflow: hidden;
  transition: transform var(--dur) var(--ease-out), border-color var(--dur), background var(--dur), box-shadow var(--dur);
}
.task::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 50% 0%, rgba(168, 85, 247, .12), transparent 70%);
  opacity: 0;
  transition: opacity var(--dur);
}
.task:hover { transform: translateY(-5px); border-color: rgba(168, 85, 247, .45); background: var(--surf2); box-shadow: 0 24px 60px -20px rgba(124, 58, 237, .45); }
.task:hover::before { opacity: 1; }
.task-icon {
  position: relative;
  width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, rgba(168, 85, 247, .3), rgba(124, 58, 237, .12));
  border: 1px solid rgba(168, 85, 247, .4);
  color: var(--lavender);
  margin-bottom: 1.1rem;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur);
}
.task-icon svg { width: 22px; height: 22px; }
.task:hover .task-icon { transform: scale(1.08) rotate(-4deg); box-shadow: 0 0 24px -4px rgba(168, 85, 247, .7); }
.task p { position: relative; color: var(--text2); font-size: .94rem; margin-top: .55rem; }
.task h3 { position: relative; }

.task-grid .task:nth-child(3n+2) { transition-delay: 80ms; }
.task-grid .task:nth-child(3n+3) { transition-delay: 160ms; }

.task-cta { text-align: center; margin-top: 3.4rem; }
.task-cta p { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; margin-bottom: 1.4rem; }

/* ═══════════ Stats ═══════════ */
.stats-section { text-align: center; }
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.1rem;
  margin-top: 3.2rem;
}
.stat {
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.2rem 1.5rem;
  transition: border-color var(--dur), box-shadow var(--dur);
}
.stat:hover { border-color: rgba(168, 85, 247, .45); box-shadow: 0 24px 60px -20px rgba(124, 58, 237, .4); }
.stat-num {
  display: block;
  white-space: nowrap;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.2rem, 1.6rem + 2vw, 3.4rem);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}
.stat-label { display: block; margin-top: 1rem; color: var(--text2); font-size: .92rem; max-width: 260px; margin-inline: auto; }
.stats-note { margin-top: 2.4rem; color: var(--muted); font-size: .85rem; max-width: 560px; margin-inline: auto; }

/* ═══════════ Werkwijze ═══════════ */
.steps { list-style: none; max-width: 760px; margin: 3.4rem auto 0; }
.step {
  display: flex; gap: 1.8rem; align-items: flex-start;
  padding: 1.9rem 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  flex: none;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--violet-soft);
  border: 1px solid rgba(168, 85, 247, .4);
  color: var(--lavender);
  font-size: 12px;
}
.step h3 { margin-bottom: .45rem; }
.step p { color: var(--text2); font-size: .96rem; max-width: 560px; }
.step-link { color: var(--lavender); text-decoration: none; border-bottom: 1px solid rgba(216, 180, 254, .4); transition: border-color var(--dur-fast), color var(--dur-fast); }
.step-link:hover { color: var(--text); border-color: var(--lavender); }

/* ═══════════ Waarom VOI ═══════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.1rem;
  margin-top: 3.4rem;
}
.why {
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.8rem 1.6rem;
  display: flex; flex-direction: column;
  transition: transform var(--dur) var(--ease-out), border-color var(--dur), box-shadow var(--dur);
}
.why:hover { transform: translateY(-5px); border-color: rgba(168, 85, 247, .45); box-shadow: 0 24px 60px -20px rgba(124, 58, 237, .4); }
.why p { color: var(--text2); font-size: .94rem; margin-top: .55rem; flex: 1; }
.why-impact {
  margin-top: 1.3rem; padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--lavender);
  font-size: 10px;
}
.why-grid .why:nth-child(3n+2) { transition-delay: 80ms; }
.why-grid .why:nth-child(3n+3) { transition-delay: 160ms; }

/* ═══════════ Quote ═══════════ */
.quote-section { text-align: center; }
.quote-section blockquote p {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.3rem, 1rem + 1.6vw, 2rem);
  line-height: 1.45;
  max-width: 800px; margin: 0 auto;
}
.quote-section cite { display: block; margin-top: 1.6rem; font-style: normal; color: var(--muted); font-size: .9rem; }

/* ═══════════ FAQ ═══════════ */
.faq-list { max-width: 720px; margin: 3.2rem auto 0; }
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.4rem 0;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem;
  transition: color var(--dur-fast);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--lavender); }
.faq-x { position: relative; width: 14px; height: 14px; flex: none; }
.faq-x::before, .faq-x::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  background: var(--lavender); border-radius: 2px;
  transition: transform var(--dur) var(--ease-out);
}
.faq-x::before { width: 14px; height: 2px; }
.faq-x::after { width: 2px; height: 14px; }
details[open] .faq-x::after { transform: rotate(90deg); }
.faq-list details p { color: var(--text2); padding: 0 2rem 1.6rem 0; font-size: .96rem; }

/* ═══════════ CTA ═══════════ */
.cta-section { padding-bottom: var(--space-section); }
.cta-card {
  position: relative;
  text-align: center;
  background:
    radial-gradient(80% 130% at 50% 0%, rgba(168, 85, 247, .22), transparent 60%),
    linear-gradient(160deg, #150829, #0A0313);
  border: 1px solid rgba(168, 85, 247, .35);
  border-radius: 28px;
  padding: clamp(3rem, 2rem + 4vw, 5.5rem) 1.6rem;
  overflow: hidden;
  box-shadow: 0 40px 120px -30px rgba(124, 58, 237, .5);
}
.cta-sub { color: var(--text2); max-width: 480px; margin: 1.3rem auto 0; }
.cta-actions { display: flex; gap: .9rem; justify-content: center; margin-top: 2.4rem; flex-wrap: wrap; }

/* ═══════════ Footer ═══════════ */
.footer { border-top: 1px solid var(--border); padding: 3rem clamp(1.2rem, 4vw, 4rem) 2rem; background: var(--bg2); }
.footer-inner {
  display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  max-width: 1200px; margin: 0 auto;
}
.footer .mono { color: var(--lavender); }
.footer p { color: var(--text2); font-size: .92rem; margin-top: .7rem; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { color: var(--text2); text-decoration: none; font-size: .92rem; transition: color var(--dur-fast); }
.footer-links a:hover { color: var(--text); }
.footer-note { max-width: 1200px; margin: 2.6rem auto 0; color: var(--muted); font-size: .8rem; }
