/* ═══════════════════════════════════════════
   BRYB — Build. Refine. Your Business.
   pikzwart · electric paars · Clash Display
   ═══════════════════════════════════════════ */

:root {
  --black: #0a0a0e;
  --black-2: #101018;
  --white: #f4f2fa;
  --grey: #8a8698;
  --accent: #a24dff;
  --accent-deep: #6c1af2;
  --accent-glow: rgba(162, 77, 255, 0.45);
  --font-display: 'Clash Display', sans-serif;
  --font-body: 'Satoshi', sans-serif;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-smooth: cubic-bezier(.65, .05, 0, 1);
  --dur-fast: .3s;
  --dur-med: .55s;
}

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

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background:
    radial-gradient(circle at 78% 12%, rgba(108,26,242,.10) 0%, transparent 42%),
    radial-gradient(circle at 12% 75%, rgba(162,77,255,.07) 0%, transparent 38%),
    var(--black);
  background-attachment: fixed;
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--accent); color: var(--black); }

a { color: inherit; text-decoration: none; }
img { display: block; }

/* ═══════════ PRELOADER ═══════════ */
.preloader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
}
.preloader__logo { position: relative; width: 130px; height: 140px; }
/* logo verschijnt terwijl een paarse lichtstreep er diagonaal
   overheen veegt — zelfde richting als de snede in het logo */
.preloader__logo { overflow: hidden; }
.pre-shine {
  position: absolute; top: -70%; left: -90%;
  width: 55%; height: 240%;
  transform: rotate(50deg);
  background: linear-gradient(90deg, transparent, rgba(162,77,255,.85), transparent);
  filter: blur(7px);
  pointer-events: none;
}

/* ═══════════ LOGO (echt BRYB-merk) ═══════════
   Origineel: zwart op wit → invert maakt hem wit,
   screen-blend laat de zwarte achtergrond wegvallen */
.logo-mark { position: relative; overflow: hidden; display: block; }
.logo-mark img {
  position: absolute; left: 50%; top: 50%;
  width: 426%; height: auto; max-width: none;
  transform: translate(-50%, -47.5%);
  filter: invert(1);
  mix-blend-mode: screen;
}
.logo-mark--pre { width: 130px; height: 140px; }
.logo-mark--nav { width: 38px; height: 42px; transition: transform .3s; }
.nav__logo:hover { transform: scale(1.08); }
.preloader__counter {
  position: absolute; bottom: 8vh; right: 8vw;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(3rem, 8vw, 6rem); color: var(--accent);
  font-variant-numeric: tabular-nums;
}

/* ═══════════ CURSOR ═══════════ */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 99; pointer-events: none;
  width: 320px; height: 320px; border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(162,77,255,.28) 0%, rgba(162,77,255,.10) 32%, transparent 62%);
  filter: blur(6px); mix-blend-mode: screen; opacity: .6;
  transition: width .35s ease, height .35s ease, opacity .35s ease;
}
.cursor.is-hover { width: 430px; height: 430px; opacity: .85; }
.cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 100; pointer-events: none;
  width: 7px; height: 7px; background: var(--accent);
  border-radius: 50%; transform: translate(-50%, -50%);
  box-shadow: 0 0 10px 1px var(--accent-glow);
}
@media (hover: none) {
  body { cursor: auto; }
  .cursor, .cursor-dot { display: none; }
}

/* ═══════════ GRAIN ═══════════ */
.grain {
  position: fixed; inset: -100%; z-index: 90; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: .05;
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); } 10% { transform: translate(-5%,-10%); }
  20% { transform: translate(-15%,5%); } 30% { transform: translate(7%,-25%); }
  40% { transform: translate(-5%,25%); } 50% { transform: translate(-15%,10%); }
  60% { transform: translate(15%,0%); } 70% { transform: translate(0%,15%); }
  80% { transform: translate(3%,35%); } 90% { transform: translate(-10%,10%); }
}

/* ═══════════ UNIVERSUM ═══════════ */
.stars {
  position: fixed; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
main { position: relative; z-index: 1; }

/* ═══════════ NAV ═══════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px clamp(20px, 4vw, 48px);
  opacity: 0; transform: translateY(-20px);
  transition: opacity .8s ease .2s, transform .8s ease .2s;
}
.nav.is-visible {
  opacity: 1; transform: none;
  transition: transform .5s var(--ease-out), opacity .4s ease,
              padding .35s ease, background .35s ease, border-color .35s ease;
}
.nav.is-scrolled {
  padding-top: 14px; padding-bottom: 14px;
  background: rgba(10, 10, 14, .72);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(244, 242, 250, .06);
}
.nav.is-hidden { transform: translateY(-110%); }
.nav__links { display: flex; gap: clamp(14px, 2.2vw, 30px); }
.nav__links a {
  font-size: .92rem; font-weight: 500; color: var(--grey);
  transition: color .25s;
}
.nav__links a:hover, .nav__links a.is-active { color: var(--white); }
.nav__right { display: flex; gap: 14px; align-items: center; }
.nav__burger {
  display: none; background: none; border: none; cursor: none;
  width: 40px; height: 40px; position: relative;
}
.nav__burger span {
  position: absolute; left: 8px; right: 8px; height: 2px;
  background: var(--white); transition: transform .3s, top .3s;
}
.nav__burger span:nth-child(1) { top: 15px; }
.nav__burger span:nth-child(2) { top: 24px; }
.nav__burger.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { top: 19px; transform: rotate(-45deg); }

.menu-overlay {
  position: fixed; inset: 0; z-index: 75;
  background: rgba(10,10,14,.88);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3.4vh;
  opacity: 0; pointer-events: none; transition: opacity .35s;
}
.menu-overlay.is-open { opacity: 1; pointer-events: auto; }
.menu-overlay a {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.6rem, 5vw, 2.4rem); transition: color .25s;
}
.menu-overlay a:hover { color: var(--accent); }
.menu-overlay a small { font-size: .5em; color: var(--accent); vertical-align: super; }
.menu-overlay__login { font-size: 1rem !important; color: var(--grey); font-family: var(--font-body) !important; }
.nav__login {
  font-size: .92rem; font-weight: 500; color: var(--grey);
  padding: 10px 18px; transition: color .25s;
}
.nav__login:hover { color: var(--white); }
.nav__cta {
  font-size: .92rem; font-weight: 700;
  padding: 11px 22px; border-radius: 100px;
  background: var(--accent); color: var(--black);
  box-shadow: 0 0 24px var(--accent-glow);
  transition: transform .25s, box-shadow .25s;
}
.nav__cta:hover { transform: scale(1.05); box-shadow: 0 0 40px var(--accent-glow); }

/* ═══════════ SCENES — SHARED ═══════════ */
.scene { position: relative; }
.scene__giant {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(5rem, 20vw, 19rem);
  line-height: .85; letter-spacing: -.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(162, 77, 255, .28);
  white-space: nowrap; user-select: none; pointer-events: none;
  z-index: 0;
}
.scene__caption {
  position: absolute; bottom: 7vh; left: 50%; transform: translateX(-50%);
  font-size: clamp(1rem, 2vw, 1.3rem); font-weight: 500;
  text-align: center; z-index: 3; width: 90%;
}
.scene__caption span { color: var(--grey); display: block; font-size: .85em; margin-top: 4px; }

/* ═══════════ SCENE 1 — HERO ═══════════ */
.scene-1 { height: 170vh; }
.scene-1__sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.scene-1__aura {
  position: absolute; top: 50%; left: 50%;
  width: min(90vw, 900px); aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(108,26,242,.16) 0%, rgba(162,77,255,.06) 40%, transparent 68%);
  animation: auraPulse 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes auraPulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: .8; }
  50% { transform: translate(-50%,-50%) scale(1.12); opacity: 1; }
}
.scene-1__inner {
  display: flex; flex-direction: column; align-items: center; gap: 4vh;
  z-index: 2; text-align: center; padding: 0 5vw;
  perspective: 1100px;
}
.logo-mark--hero {
  width: clamp(110px, 16vw, 170px); height: clamp(120px, 17.5vw, 185px);
  will-change: transform;
}
/* zonder JS: fallback float via CSS (met JS doet GSAP dit, incl. 3D-tilt) */
html:not(.has-js) .logo-mark--hero { animation: heroFloat 6s ease-in-out infinite; }

/* 3D-logo: gelaagde diepte (lagen komen uit JS) */
.logo-mark--hero.is-3d {
  position: relative; overflow: visible;
  transform-style: preserve-3d;
}
.logo-layer { position: absolute; inset: 0; }
.logo-layer--mid img { opacity: .38; filter: invert(1) sepia(1) saturate(6) hue-rotate(235deg); }
.logo-layer--back img { opacity: .18; filter: invert(1) sepia(1) saturate(6) hue-rotate(235deg); }
.logo-glow {
  position: absolute; inset: -38%;
  background: radial-gradient(circle at 50% 46%,
    rgba(244,242,250,.30), rgba(162,77,255,.16) 38%, transparent 64%);
  mix-blend-mode: screen; pointer-events: none;
}
@keyframes heroFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(1.2deg); }
}
.scene-1__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.4rem, 6.5vw, 5.8rem);
  line-height: 1.05; letter-spacing: -.02em;
  display: flex; gap: .35em; flex-wrap: wrap; justify-content: center;
}
.hero-w { display: inline-block; }
.hero-w--accent {
  color: var(--accent);
  text-shadow: 0 0 40px var(--accent-glow);
}
.scene-1__sub {
  color: var(--grey); font-size: clamp(1rem, 1.8vw, 1.25rem); line-height: 1.6;
}
.scene-1__sub em { font-style: normal; color: var(--white); }
.scene-1__scroll-hint {
  position: absolute; bottom: 5vh; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 3; color: var(--grey); font-size: .8rem;
  text-transform: uppercase; letter-spacing: .25em;
}
.scene-1__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(var(--accent), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { transform: scaleY(.4); opacity:.4 } 50% { transform: scaleY(1); opacity:1 } }

/* ═══════════ SCENE 2 — BUILD ═══════════ */
.scene-2 { height: 300vh; }
.scene-2__sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.scene-2__wireframe { width: min(62vw, 640px); z-index: 2; filter: drop-shadow(0 0 40px rgba(162,77,255,.15)); }
.scene-2__wireframe svg { width: 100%; height: auto; }
.wf { stroke: var(--white); stroke-width: 2; stroke-linecap: round; }
.wf-frame { stroke: rgba(244,242,250,.85); }
.wf-el { stroke: rgba(244,242,250,.55); }
.wf-dot { stroke: var(--accent); }
.wf-accent { stroke: var(--accent); filter: drop-shadow(0 0 6px var(--accent-glow)); }
.scene-2__caption span { color: var(--accent); }

/* ═══════════ SCENE 3 — REFINE ═══════════ */
.scene-3 { height: 300vh; }
.scene-3__sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.scene-3__giant { -webkit-text-stroke-color: rgba(244,242,250,.1); }
.scene-3__compare {
  position: relative; z-index: 2;
  width: min(78vw, 860px); aspect-ratio: 16/10;
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.scene-3__before, .scene-3__after { position: absolute; inset: 0; }
.scene-3__after { clip-path: inset(0 0 0 100%); }
.scene-3__line {
  position: absolute; top: 0; bottom: 0; left: 0; width: 3px;
  background: var(--accent);
  box-shadow: 0 0 30px 4px var(--accent-glow);
  transform: translateX(-10px);
}
/* gedateerde mock (2011-energie, geloofwaardig) */
.mock { position: absolute; inset: 0; padding: 4% 5%; display: flex; flex-direction: column; gap: 4%; }
.mock--old {
  background: #ece9df;
  font-family: "Times New Roman", Times, serif;
  color: #222; gap: 0; padding: 0;
}
.mock__header-old {
  background: linear-gradient(#6b84b4, #40598c);
  color: #fff; font-weight: 700;
  font-size: clamp(.85rem, 2vw, 1.4rem);
  padding: 3.5% 4%;
  text-shadow: 1px 1px 1px rgba(0,0,0,.4);
}
.mock__nav-old {
  display: flex; gap: 2px; background: #cfc9b8; padding: 1.2% 2%;
  font-size: clamp(.55rem, 1.2vw, .85rem);
}
.mock__nav-old span {
  background: #e5e0d0; border: 1px solid #a8a08a;
  padding: 1% 2.4%; color: #1a3faa; text-decoration: underline;
}
.mock__body-old { display: flex; gap: 4%; padding: 4%; flex: 1; }
.mock__text-old { flex: 1.4; font-size: clamp(.6rem, 1.35vw, .95rem); line-height: 1.5; }
.mock__text-old p + p { margin-top: 6%; }
.mock__link-old { color: #1a3faa; text-decoration: underline; }
.mock__img-old {
  flex: 1; border: 1px dashed #999; background: #f7f5ee;
  display: flex; align-items: center; justify-content: center;
  color: #888; font-style: italic; text-align: center;
  font-size: clamp(.55rem, 1.2vw, .85rem);
  align-self: stretch;
}
.mock__footer-old {
  background: #cfc9b8; color: #555;
  font-size: clamp(.5rem, 1.1vw, .75rem);
  padding: 1.6% 3%; text-align: center;
}
/* clean mock */
.mock--clean { background: var(--black-2); }
.mock__bar--clean { background: transparent; display: flex; align-items: center; gap: 8px; padding: 2% 0; }
.mock__logo-dot { width: 12px; height: 12px; border-radius: 3px; background: var(--accent); }
.mock__title-clean { font-family: var(--font-display); font-weight: 600; letter-spacing: .02em; }
.mock__hero-clean {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.1rem, 3vw, 2.2rem); line-height: 1.1; margin-top: 2%;
}
.mock__btn-clean {
  align-self: flex-start; background: var(--accent); color: var(--black);
  font-weight: 700; font-size: clamp(.6rem, 1.3vw, .95rem);
  padding: 2.2% 4.5%; border-radius: 100px;
  box-shadow: 0 0 20px var(--accent-glow);
}
.mock__cards { display: flex; gap: 4%; margin-top: auto; }
.mock__card { flex: 1; height: clamp(28px, 6vw, 60px); border-radius: 10px; background: rgba(244,242,250,.06); border: 1px solid rgba(244,242,250,.1); }

/* ═══════════ SCENE 4 — YOUR BUSINESS ═══════════ */
.scene-4 { height: 260vh; }
.scene-4__sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.scene-4__giant { font-size: clamp(4rem, 15vw, 13rem); white-space: normal; text-align: center; line-height: .9; }
.scene-4__content { z-index: 2; text-align: center; padding: 0 6vw; }
.scene-4__lead {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.5rem, 3.6vw, 3rem); line-height: 1.15; margin-bottom: 7vh;
}
.scene-4__lead em { font-style: normal; color: var(--accent); text-shadow: 0 0 30px var(--accent-glow); }
.scene-4__stats {
  display: flex; gap: clamp(24px, 6vw, 90px); justify-content: center; flex-wrap: wrap;
}
.stat { max-width: 210px; }
.stat__num, .stat__suffix {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(3rem, 7vw, 5.5rem); color: var(--white);
  font-variant-numeric: tabular-nums;
}
.stat__suffix { color: var(--accent); }
.stat__label { color: var(--grey); font-size: .95rem; margin-top: 6px; line-height: 1.45; }

/* ═══════════ SCENE 5 — FILMSTRIP ═══════════ */
.scene-5 { height: 340vh; }
.scene-5__sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; display: flex; align-items: center; }
.scene-5__track {
  display: flex; gap: clamp(24px, 4vw, 60px); align-items: center;
  padding-left: clamp(20px, 6vw, 90px); will-change: transform;
}
.scene-5__intro { flex-shrink: 0; width: min(70vw, 480px); }
.scene-5__intro h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(3rem, 9vw, 7.5rem); line-height: .92; letter-spacing: -.02em;
}
.scene-5__intro p { color: var(--accent); font-size: clamp(1rem, 2vw, 1.35rem); margin-top: 20px; font-weight: 500; }
.panel {
  position: relative; flex-shrink: 0;
  width: min(80vw, 470px); min-height: min(72vh, 560px);
  background: var(--black-2);
  border: 1px solid rgba(244,242,250,.09);
  border-radius: 24px;
  padding: clamp(26px, 3.5vw, 44px);
  display: flex; flex-direction: column; gap: 18px;
  transform-style: preserve-3d;
  transition: border-color .3s;
}
.panel:hover { border-color: rgba(162,77,255,.5); }
.panel--accent { background: linear-gradient(160deg, var(--black-2) 55%, rgba(108,26,242,.25)); border-color: rgba(162,77,255,.35); box-shadow: 0 0 60px rgba(162,77,255,.12); }
.panel__num {
  font-family: var(--font-display); font-weight: 600;
  color: var(--accent); font-size: 1rem; letter-spacing: .15em;
}
.panel__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3.2rem); letter-spacing: -.01em;
}
.panel__desc { color: var(--grey); line-height: 1.6; font-size: clamp(.95rem, 1.6vw, 1.05rem); }
.panel__visual { margin-top: auto; height: 130px; display: flex; align-items: center; justify-content: center; }
.panel__price { color: var(--grey); font-size: .95rem; }
.panel__price strong { color: var(--white); font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-left: 4px; }
.panel__badge {
  position: absolute; top: 22px; right: 22px;
  background: var(--accent); color: var(--black);
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  padding: 7px 14px; border-radius: 100px;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse { 0%,100% { box-shadow: 0 0 0 0 var(--accent-glow) } 50% { box-shadow: 0 0 0 12px transparent } }
/* brand visual */
.panel__visual--brand svg { width: 70%; height: auto; }
.brand-anim { stroke: var(--accent); stroke-width: 2.5; fill: none; stroke-dasharray: 400; stroke-dashoffset: 400; }
.panel:hover .brand-anim, .panel.in-view .brand-anim { animation: drawIn 1.6s ease forwards; }
.panel:hover .brand-c2, .panel.in-view .brand-c2 { animation-delay: .25s; }
.panel:hover .brand-c3, .panel.in-view .brand-c3 { animation-delay: .5s; }
@keyframes drawIn { to { stroke-dashoffset: 0; } }
/* web visual */
.miniweb { width: 65%; border: 1.5px solid rgba(244,242,250,.25); border-radius: 10px; padding: 10px 12px; display: flex; flex-direction: column; gap: 8px; }
.miniweb__bar { height: 8px; width: 45%; border-radius: 4px; background: rgba(244,242,250,.3); }
.miniweb__line { height: 6px; border-radius: 3px; background: rgba(244,242,250,.16); transform-origin: left; animation: lineGrow 2.4s ease infinite; }
.miniweb__line--1 { width: 85%; }
.miniweb__line--2 { width: 60%; animation-delay: .3s; }
.miniweb__btn { height: 14px; width: 38%; border-radius: 7px; background: var(--accent); box-shadow: 0 0 14px var(--accent-glow); }
@keyframes lineGrow { 0% { transform: scaleX(0) } 40%,100% { transform: scaleX(1) } }
/* content visual */
.panel--soon { opacity: .92; }
.panel--soon .panel__title, .panel--soon .panel__desc { filter: saturate(.7); }
.glitchbox {
  width: 90px; height: 90px; border-radius: 18px;
  background: rgba(162,77,255,.1); border: 1px solid rgba(162,77,255,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--accent);
  animation: glitch 3.2s steps(1) infinite;
}
@keyframes glitch {
  0%, 92%, 100% { transform: translate(0); opacity: 1; }
  93% { transform: translate(-3px, 2px) skewX(-8deg); opacity: .7; }
  95% { transform: translate(3px, -2px) skewX(6deg); opacity: .9; }
  97% { transform: translate(-2px, -1px); opacity: .6; }
}

/* ═══════════ SCENE 6 — CTA ═══════════ */
.scene-6 {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5vh; padding: 14vh 6vw 0;
}
.scene-6__pulse {
  position: absolute; top: 42%; left: 50%;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  animation: heartbeat 1.6s ease-out infinite;
}
@keyframes heartbeat {
  0% { box-shadow: 0 0 0 0 var(--accent-glow), 0 0 0 0 rgba(162,77,255,.25); }
  60% { box-shadow: 0 0 0 60px transparent, 0 0 0 140px transparent; }
  100% { box-shadow: 0 0 0 0 transparent, 0 0 0 0 transparent; }
}
.scene-6__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.6rem, 7.5vw, 6.5rem);
  line-height: 1; text-align: center; letter-spacing: -.02em;
  z-index: 2;
}
.magnetic-btn {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--accent); color: var(--black);
  font-weight: 700; font-size: clamp(1.05rem, 2vw, 1.3rem);
  padding: 20px 44px; border-radius: 100px;
  box-shadow: 0 0 50px var(--accent-glow);
  transition: box-shadow .3s;
  will-change: transform;
}
.magnetic-btn:hover { box-shadow: 0 0 90px var(--accent-glow); }
.magnetic-btn__wa { flex-shrink: 0; }
.scene-6__alt { color: var(--grey); font-size: .95rem; z-index: 2; }
.scene-6__alt a { color: var(--white); border-bottom: 1px solid var(--accent); }

/* ═══════════ KNOPPEN ═══════════ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1rem;
  padding: 15px 32px; border-radius: 100px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.btn--primary {
  background: var(--accent); color: var(--black);
  box-shadow: 0 0 30px var(--accent-glow);
}
.btn--primary:hover { transform: scale(1.04); box-shadow: 0 0 55px var(--accent-glow); }
.btn--ghost {
  border: 1px solid rgba(244,242,250,.25); color: var(--white);
}
.btn--ghost:hover { border-color: var(--accent); transform: scale(1.03); }
.scene-1__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ═══════════ SECTIES ═══════════ */
.section { padding: clamp(80px, 14vh, 150px) clamp(20px, 6vw, 90px); position: relative; }
.section--tint { background: linear-gradient(180deg, transparent, rgba(162,77,255,.04) 30%, rgba(162,77,255,.04) 70%, transparent); }
.section__head { max-width: 720px; margin: 0 auto 7vh; text-align: center; }
.section__kicker {
  color: var(--accent); font-weight: 700; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .22em; margin-bottom: 14px;
}
.section__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.9rem, 4.4vw, 3.4rem); line-height: 1.08; letter-spacing: -.01em;
}
.section__intro { color: var(--grey); margin-top: 18px; line-height: 1.65; font-size: 1.05rem; }
.section__foot { text-align: center; margin-top: 6vh; }

/* reveal-animatie basis — GSAP animeert, .is-in is de eindstand */
.reveal { opacity: 0; transform: translateY(40px); filter: blur(8px); }
.reveal.is-in { opacity: 1; transform: none; filter: none; }

/* ═══════════ KAARTEN ═══════════ */
.cards-3 {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 30px); max-width: 1220px; margin: 0 auto;
}
.card {
  position: relative; display: flex; flex-direction: column; gap: 14px;
  background: var(--black-2);
  border: 1px solid rgba(244,242,250,.09); border-radius: 22px;
  padding: clamp(26px, 3vw, 40px);
  transition: border-color .3s, transform .3s;
}
.card:hover { border-color: rgba(162,77,255,.5); transform: translateY(-6px); }
.card--accent { background: linear-gradient(160deg, var(--black-2) 55%, rgba(108,26,242,.22)); border-color: rgba(162,77,255,.35); }
.card--soon { opacity: .92; }
.card__num { font-family: var(--font-display); font-weight: 600; color: var(--accent); letter-spacing: .15em; font-size: .95rem; }
.card h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.card p { color: var(--grey); line-height: 1.6; font-size: .98rem; }
.card__price { margin-top: auto; }
.card__price strong { color: var(--white); font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin-left: 4px; }
.card__link { color: var(--accent); font-weight: 700; font-size: .92rem; }
.card__badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--accent); color: var(--black);
  font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  padding: 6px 13px; border-radius: 100px;
  animation: badgePulse 2s ease-in-out infinite;
}

/* ═══════════ USP'S ═══════════ */
.usps {
  list-style: none; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 26px); max-width: 1100px; margin: 0 auto;
}
.usps li {
  background: rgba(244,242,250,.03);
  border: 1px solid rgba(244,242,250,.08); border-radius: 16px;
  padding: 24px 26px; display: flex; flex-direction: column; gap: 4px;
  transition: border-color .3s;
}
.usps li:hover { border-color: rgba(162,77,255,.4); }
.usps strong { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; }
.usps span { color: var(--grey); font-size: .95rem; }

/* ═══════════ WERK KAARTEN ═══════════ */
.work-card { display: flex; flex-direction: column; gap: 12px; }
.work-card__visual {
  aspect-ratio: 4/3; border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(244,242,250,.1);
  display: flex; align-items: flex-end; padding: 26px;
  background:
    radial-gradient(circle at 70% 20%, rgba(162,77,255,.18), transparent 55%),
    var(--black-2);
  transition: border-color .3s, transform .35s;
}
.work-card:hover .work-card__visual { border-color: rgba(162,77,255,.5); transform: translateY(-6px); }
.work-card__visual span {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem); line-height: 1.1;
}
.work-card__visual[data-project="atelier"] { background: radial-gradient(circle at 25% 80%, rgba(108,26,242,.22), transparent 55%), var(--black-2); }
.work-card__visual[data-project="jeftha"] { background: radial-gradient(circle at 50% 10%, rgba(162,77,255,.12), transparent 60%), var(--black-2); }
.work-card__visual[data-project="houtkachel"] { background: radial-gradient(circle at 30% 85%, rgba(214,142,52,.24), transparent 55%), var(--black-2); }
a.work-card__visual { text-decoration: none; color: inherit; }

/* Live iframe voorbeeld */
.work-card__visual--live { position: relative; padding: 0; }
.work-card__frame { position: absolute; inset: 0; border-radius: inherit; overflow: hidden; }
.work-card__frame iframe {
  position: absolute; top: 0; left: 0;
  width: 400%; height: 400%;
  transform: scale(.25); transform-origin: top left;
  border: 0; pointer-events: none; background: #f6f2e9;
}
.work-card__live-tag {
  position: absolute; z-index: 2; top: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 12px; border-radius: 999px;
  font-family: var(--font-body); font-size: .72rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; color: #f4f2fa;
  background: rgba(12,10,20,.62); backdrop-filter: blur(6px);
  border: 1px solid rgba(244,242,250,.14);
}
.work-card__live-tag i {
  width: 7px; height: 7px; border-radius: 50%; background: #d68e34;
  box-shadow: 0 0 0 0 rgba(214,142,52,.6); animation: livePulse 1.8s infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(214,142,52,.55); }
  70% { box-shadow: 0 0 0 7px rgba(214,142,52,0); }
  100% { box-shadow: 0 0 0 0 rgba(214,142,52,0); }
}
.work-card__live-label {
  position: absolute; z-index: 2; left: 0; right: 0; bottom: 0;
  padding: 34px 18px 16px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.15rem;
  color: #fff; pointer-events: none;
  background: linear-gradient(to top, rgba(8,6,14,.72), transparent);
}
.work-card__visual img { width: 100%; height: 100%; object-fit: cover; }
.work-card__meta { color: var(--grey); font-size: .9rem; }

/* ═══════════ CTA MIDDEN ═══════════ */
.midcta {
  text-align: center; padding: clamp(70px, 12vh, 130px) 6vw;
  display: flex; flex-direction: column; align-items: center; gap: 26px;
}
.midcta h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.7rem, 4vw, 3rem); max-width: 640px; line-height: 1.12;
}
.midcta__alt { color: var(--grey); font-size: .95rem; }
.midcta__alt a { color: var(--white); border-bottom: 1px solid var(--accent); }

/* ═══════════ STAPPEN ═══════════ */
.steps {
  list-style: none; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 26px); max-width: 1150px; margin: 0 auto;
  counter-reset: step;
}
.steps li {
  background: rgba(244,242,250,.03);
  border: 1px solid rgba(244,242,250,.08); border-radius: 16px;
  padding: 26px; display: flex; flex-direction: column; gap: 8px;
}
.steps li > span {
  font-family: var(--font-display); font-weight: 700;
  color: var(--accent); font-size: 1.6rem;
}
.steps strong { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; }
.steps p { color: var(--grey); font-size: .93rem; line-height: 1.55; }

/* ═══════════ FAQ ═══════════ */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: rgba(244,242,250,.03);
  border: 1px solid rgba(244,242,250,.09); border-radius: 14px;
  padding: 0 24px; transition: border-color .3s;
}
.faq details[open] { border-color: rgba(162,77,255,.4); }
.faq summary {
  font-family: var(--font-display); font-weight: 500; font-size: 1.05rem;
  padding: 20px 0; cursor: none; list-style: none; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: 0; color: var(--accent);
  font-size: 1.4rem; transition: transform .3s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--grey); line-height: 1.65; padding-bottom: 22px; }

/* ═══════════ FOOTER ═══════════ */
.footer {
  margin-top: auto; padding: clamp(60px, 10vh, 110px) clamp(20px, 6vw, 90px) 30px;
  border-top: 1px solid rgba(244,242,250,.08);
  position: relative; z-index: 2;
}
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(30px, 4vw, 60px); max-width: 1220px; margin: 0 auto 60px;
}
.footer__col { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer__col h4 {
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  text-transform: uppercase; letter-spacing: .14em; color: var(--white);
  margin-bottom: 6px;
}
.footer__col a { color: var(--grey); font-size: .95rem; transition: color .25s; }
.footer__col a:hover { color: var(--accent); }
.footer__tag {
  font-family: var(--font-display); font-weight: 500;
  color: rgba(244,242,250,.4); font-size: .85rem; letter-spacing: .16em; text-transform: uppercase;
}
.footer__sub { color: var(--grey); font-size: .9rem; line-height: 1.6; }
.footer__legal {
  max-width: 1220px; margin: 0 auto;
  display: flex; gap: clamp(16px, 3vw, 34px); flex-wrap: wrap;
  padding-top: 26px; border-top: 1px solid rgba(244,242,250,.07);
  color: rgba(244,242,250,.35); font-size: .82rem;
}
.footer__legal a { color: rgba(244,242,250,.35); transition: color .25s; }
.footer__legal a:hover { color: var(--accent); }
/* verborgen LAB-toegang: nauwelijks zichtbaar tot je erover gaat */
.footer__legal a.footer__lab {
  margin-left: auto; letter-spacing: .32em; font-size: .62rem;
  color: rgba(244,242,250,.12); position: relative;
}
.footer__legal a.footer__lab:hover { color: var(--accent); text-shadow: 0 0 14px var(--accent-glow); }

/* ═══════════ SUBPAGINA'S ═══════════ */
.page-hero {
  padding: calc(90px + 10vh) clamp(20px, 6vw, 90px) 6vh;
  text-align: center; max-width: 860px; margin: 0 auto;
}
.page-hero h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1.05; letter-spacing: -.015em;
}
.page-hero p { color: var(--grey); margin-top: 22px; font-size: clamp(1rem, 1.8vw, 1.2rem); line-height: 1.65; }
.pack {
  max-width: 860px; margin: 0 auto;
  background: var(--black-2);
  border: 1px solid rgba(162,77,255,.3); border-radius: 24px;
  padding: clamp(30px, 4vw, 50px);
}
.pack__head { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.pack__head h2 { font-family: var(--font-display); font-weight: 600; font-size: 1.7rem; }
.pack__price { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--accent); }
.pack ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 30px; }
.pack li { color: var(--white); padding-left: 26px; position: relative; line-height: 1.5; }
.pack li::before { content: ''; position: absolute; left: 0; top: .5em; width: 12px; height: 2px; background: var(--accent); }
.pack__meta { margin-top: 28px; color: var(--grey); font-size: .95rem; line-height: 1.6; }
.pack__meta strong { color: var(--white); }
.prose { max-width: 680px; margin: 0 auto; color: var(--grey); line-height: 1.75; font-size: 1.05rem; }
.prose h2 { font-family: var(--font-display); font-weight: 600; color: var(--white); font-size: 1.5rem; margin: 42px 0 14px; }
.prose p + p { margin-top: 16px; }
.prose strong { color: var(--white); }
.steps--vertical { grid-template-columns: 1fr; max-width: 720px; }
.steps--vertical li { flex-direction: row; align-items: baseline; gap: 20px; }
.steps--vertical li > span { min-width: 44px; }
.steps--vertical div { display: flex; flex-direction: column; gap: 6px; }

/* ═══════════ MOBIEL / TABLET ═══════════ */
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
}
@media (max-width: 720px) {
  .scene-1 { height: 150vh; }
  .scene-2, .scene-3 { height: 240vh; }
  .scene-4 { height: 220vh; }
  .scene__giant { -webkit-text-stroke-width: 1px; }
  .scene-3__compare { width: 92vw; aspect-ratio: 4/5; }
  .scene-4__stats { gap: 30px; }
  .stat { max-width: 44%; }
  .nav__login { display: none; }
  .nav__cta { font-size: .85rem; padding: 10px 16px; }
  .cards-3, .usps, .steps { grid-template-columns: 1fr; }
  .pack ul { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__col--brand { grid-column: 1 / -1; }
}

/* ═══════════════════════════════════════════
   PREMIUM LAAG — verfijning bovenop de basis
   ═══════════════════════════════════════════ */

/* ── scrollbar ── */
html { scrollbar-width: thin; scrollbar-color: rgba(162,77,255,.35) var(--black); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb {
  background: rgba(162,77,255,.28); border-radius: 100px;
  border: 2px solid var(--black);
}
::-webkit-scrollbar-thumb:hover { background: rgba(162,77,255,.5); }

/* ── toetsenbord-focus ── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── skip-link (alleen zichtbaar bij toetsenbord-focus) ── */
.skip-link {
  position: fixed; top: -100px; left: 16px; z-index: 130;
  background: var(--accent); color: var(--black);
  font-weight: 700; font-size: .9rem;
  padding: 12px 22px; border-radius: 100px;
  transition: top .25s ease;
}
.skip-link:focus-visible { top: 16px; }

/* ── typografie-ritme ── */
.section__title, .page-hero h1, .scene-6__title, .midcta h2 { text-wrap: balance; }
.section__intro, .page-hero p, .card p, .prose p { text-wrap: pretty; }

/* ── word-mask reveals (spans komen uit JS) ── */
.wm {
  display: inline-block; overflow: hidden; vertical-align: bottom;
  padding: .1em .02em .12em; margin: -.1em -.02em -.12em;
}
.wm__i { display: inline-block; will-change: transform; }
.ch { display: inline-block; will-change: transform; }

/* ── pagina-overgang ── */
.pt {
  position: fixed; inset: 0; z-index: 120;
  background:
    radial-gradient(circle at 50% 60%, rgba(108,26,242,.14) 0%, transparent 55%),
    var(--black);
  opacity: 1; pointer-events: auto;
  transition: opacity .38s ease;
}
.pt--hidden { opacity: 0; pointer-events: none; }

/* ── knoppen: lichtstreep + diepte ── */
.btn, .nav__cta, .magnetic-btn { position: relative; overflow: hidden; }
.btn::after, .magnetic-btn::after {
  content: ''; position: absolute; top: -10%; left: -70%;
  width: 45%; height: 120%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-18deg);
  transition: left .65s var(--ease-out);
  pointer-events: none;
}
.btn:hover::after, .magnetic-btn:hover::after { left: 135%; }
.btn--ghost::after { background: linear-gradient(100deg, transparent, rgba(162,77,255,.22), transparent); }
.btn--ghost:hover { background: rgba(162,77,255,.06); box-shadow: 0 0 30px rgba(162,77,255,.12); }

/* ── kaarten: cursor-spotlight ── */
.card, .usps li, .steps li, .faq details, .pack, .panel, .work-card__visual { position: relative; }
.card::after, .usps li::after, .steps li::after, .faq details::after,
.pack::after, .panel::after, .work-card__visual::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  border-radius: inherit; pointer-events: none; opacity: 0;
  background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 50%),
    rgba(162, 77, 255, .10), transparent 65%);
  transition: opacity .45s ease;
}
.card:hover::after, .usps li:hover::after, .steps li:hover::after,
.faq details:hover::after, .pack:hover::after, .panel:hover::after,
.work-card__visual:hover::after { opacity: 1; }
.card, .work-card__visual, .panel { will-change: transform; transform-style: preserve-3d; }
.usps li, .steps li { transition: border-color .3s, transform .35s var(--ease-out), background .3s; }
.usps li:hover, .steps li:hover { transform: translateY(-4px); background: rgba(244,242,250,.05); }
.steps li:hover { border-color: rgba(162,77,255,.4); }

/* ── faq: vloeiend open (JS animeert hoogte) ── */
.faq__body { overflow: hidden; }
.faq details { transition: border-color .3s, background .3s; }
.faq details:hover { background: rgba(244,242,250,.05); }

/* ── footer: micro-interacties ── */
.footer__col a { transition: color .25s, transform .3s var(--ease-out); }
.footer__col a:hover { transform: translateX(4px); }

/* ── cursor: klik-feedback ── */
.cursor-dot { transition: width .2s, height .2s, opacity .3s; }
.cursor-dot.is-down { width: 12px; height: 12px; }
.cursor { transition: width .35s var(--ease-out), height .35s var(--ease-out), opacity .35s ease; }

/* ── kickers en intro's krijgen hun animatie via JS ── */
.has-js .section__head .section__kicker,
.has-js .section__head .section__intro { will-change: opacity, transform; }

/* ── 404 ── */
.notfound {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 90px 6vw 40px;
}
.notfound__code {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(10rem, 34vw, 30rem); line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(162, 77, 255, .22);
  user-select: none; pointer-events: none;
}
.notfound__content { position: relative; z-index: 2; text-align: center; }
.notfound__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.9rem, 4.6vw, 3.4rem); line-height: 1.08;
  text-wrap: balance;
}
.notfound__sub { color: var(--grey); margin-top: 18px; line-height: 1.65; }
.notfound__actions {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  margin-top: 34px;
}

/* ── prijswijzer ── */
.quote-tool {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  background: var(--black-2);
  border: 1px solid rgba(244,242,250,.09); border-radius: 24px;
  padding: clamp(26px, 3.5vw, 44px);
}
.quote-tool__options { display: flex; flex-direction: column; gap: 10px; }
.qt-opt {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: 14px;
  border: 1px solid rgba(244,242,250,.08);
  background: rgba(244,242,250,.02);
  transition: border-color .25s, background .25s;
}
.qt-opt:hover { border-color: rgba(162,77,255,.4); }
.qt-opt:has(input:checked) { border-color: rgba(162,77,255,.55); background: rgba(162,77,255,.07); }
.qt-opt--base { opacity: .85; }
.qt-opt input { width: 18px; height: 18px; accent-color: var(--accent); flex-shrink: 0; }
.qt-opt__label { flex: 1; font-weight: 500; font-size: .98rem; }
.qt-opt__label em { display: block; font-style: normal; color: var(--grey); font-size: .85rem; margin-top: 2px; }
.qt-opt__price { color: var(--accent); font-weight: 700; font-size: .9rem; white-space: nowrap; }
.quote-tool__result {
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 8px;
  text-align: center; padding: 20px;
  border-left: 1px solid rgba(244,242,250,.08);
}
.quote-tool__from { color: var(--grey); text-transform: uppercase; letter-spacing: .18em; font-size: .75rem; font-weight: 700; }
.quote-tool__total { font-family: var(--font-display); font-size: 1.05rem; color: var(--grey); }
.quote-tool__total strong {
  display: block; font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 600; color: var(--white);
  font-variant-numeric: tabular-nums;
}
.quote-tool__note { color: var(--grey); font-size: .85rem; line-height: 1.5; margin-bottom: 10px; max-width: 260px; }
@media (max-width: 720px) {
  .quote-tool { grid-template-columns: 1fr; }
  .quote-tool__result { border-left: none; border-top: 1px solid rgba(244,242,250,.08); padding-top: 26px; }
}

/* ── contactformulier ── */
.contact-form { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 18px; }
.contact-form label { display: flex; flex-direction: column; gap: 8px; font-weight: 500; font-size: .95rem; flex: 1; }
.contact-form label span { color: var(--grey); font-weight: 400; }
.contact-form input, .contact-form textarea {
  background: rgba(244,242,250,.04);
  border: 1px solid rgba(244,242,250,.12); border-radius: 12px;
  padding: 14px 16px; color: var(--white);
  font-family: var(--font-body); font-size: 1rem;
  transition: border-color .25s, background .25s;
  resize: vertical;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(138,134,152,.6); }
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--accent);
  background: rgba(162,77,255,.05);
}
.contact-form__row { display: flex; gap: 16px; }
@media (max-width: 720px) { .contact-form__row { flex-direction: column; } }
.contact-form__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 4px; }
button.btn { font-family: var(--font-body); cursor: none; }
button.btn--primary { border: 0; }
.contact-form__note { color: var(--grey); font-size: .85rem; }

/* ── live previews: meescrollen bij hover ── */
.work-card__frame iframe { transition: transform 6s cubic-bezier(.45, 0, .2, 1); }
.work-card__visual--live:hover iframe { transform: scale(.25) translateY(-70%); }

/* ── toast ── */
.toast {
  position: fixed; left: 50%; bottom: 28px; z-index: 140;
  transform: translate(-50%, 20px);
  background: rgba(16, 16, 24, .92); color: var(--white);
  border: 1px solid rgba(162, 77, 255, .4);
  padding: 12px 22px; border-radius: 100px;
  font-size: .9rem; font-weight: 500;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease, transform .3s var(--ease-out);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .4);
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* ── terug naar boven ── */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 85;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(16, 16, 24, .85); color: var(--white);
  border: 1px solid rgba(244, 242, 250, .15);
  font-size: 1.1rem; cursor: none;
  opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: opacity .3s, transform .3s var(--ease-out), border-color .25s, color .25s;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { border-color: var(--accent); color: var(--accent); }

/* ── gratis website-check ── */
.sitecheck { text-align: center; }
.sitecheck__lead {
  color: var(--grey); line-height: 1.7; font-size: 1.05rem;
  max-width: 560px; margin: 0 auto 28px;
}
.sitecheck__lead strong { color: var(--white); }
.sitecheck__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ── WARP MODE (easter egg: typ "bryb") ── */
.warp-flash {
  position: fixed; inset: 0; z-index: 118; pointer-events: none;
  background: radial-gradient(circle at 50% 50%,
    rgba(162, 77, 255, .5), rgba(108, 26, 242, .2) 45%, transparent 75%);
  opacity: 0;
}
.warp-text {
  position: fixed; top: 50%; left: 50%; z-index: 119; pointer-events: none;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(3rem, 12vw, 10rem); letter-spacing: .04em;
  color: var(--white); white-space: nowrap;
  text-shadow: 0 0 40px var(--accent-glow), 0 0 120px var(--accent-glow);
}

/* ── 404-knipoog naar de oude-website-mock ── */
.notfound__counter {
  margin-top: 30px; color: rgba(138, 134, 152, .55);
  font-family: "Times New Roman", Times, serif; font-style: italic;
  font-size: .85rem;
}

/* ── touch: geen spotlight/hover-effects nodig ── */
@media (hover: none) {
  .card::after, .usps li::after, .steps li::after, .faq details::after,
  .pack::after, .panel::after, .work-card__visual::after { display: none; }
  .btn::after, .magnetic-btn::after { display: none; }
}

/* ═══════════ REDUCED MOTION ═══════════ */
@media (prefers-reduced-motion: reduce) {
  .grain, .scene-6__pulse, .panel__badge, .glitchbox, .mock--ugly, .scene-1__scroll-line,
  .scene-1__aura, .logo-mark--hero { animation: none !important; }
  * { transition-duration: .01s !important; }
  .btn::after, .magnetic-btn::after { display: none; }
  .pt { display: none; }
}
