/* ============================================
   VIRTUALBITE — Animated & Lively (V2 promoted)
   Mobile-first → tablet → desktop responsive.
   Warm orange + sage + cream + ink palette.
   Neo-brutalist drop-shadows, tilted marquee,
   sticker eyebrows, Archivo Black headlines.
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&family=Archivo+Black&family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,800;0,9..144,900;1,9..144,400;1,9..144,500;1,9..144,600;1,9..144,700;1,9..144,800;1,9..144,900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* —— Default tokens: BRUTALIST preset (current) —— */
  --accent: #E56241;
  --accent-2: #1F8A5B;
  --bg: #FAF5EC;
  --bg-alt: #F2E8D5;
  --cream: #FFF8EB;
  --ink: #1B1815;
  --ink-soft: #54483D;
  --ink-mute: #8B7E6E;
  --rule: rgba(27, 24, 21, .12);
  --hero-grad: linear-gradient(135deg, #2a201b 0%, #4d342a 50%, #6b432d 100%);

  --font-head: 'Archivo Black', system-ui, sans-serif;
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-italic: 'Fraunces', Georgia, serif;
  --head-tracking: -.025em;
  --head-weight: 900;
  --head-line: .95;

  /* —— Visual treatment tokens (overridden per style) —— */
  --card-radius: 22px;
  --card-border: 1.5px solid var(--ink);
  --card-shadow: 4px 4px 0 var(--ink);
  --card-shadow-hover: 6px 6px 0 var(--ink);
  --card-lift: -2px;
  --chip-shadow: 2px 2px 0 var(--ink);
  --eyebrow-rotation: -1deg;
  --eyebrow-rotation-alt: 1deg;
  --eyebrow-bg: var(--cream);
  --eyebrow-border: 1.5px solid var(--ink);
  --eyebrow-shadow: 2px 2px 0 var(--accent);
  --marquee-rotation: -1.5deg;
  --marquee-margin: -14px 0;
  --hero-title-underline: 6px;
  --hero-title-underline-opacity: .25;
  --step-num-shadow: 2px 2px 0 var(--ink);
  --form-shadow: 4px 4px 0 var(--ink);

  --container: 1200px;
  --container-narrow: 880px;
  --nav-h: 72px;
  --section-y: 60px;
  --section-y-md: 96px;
  --section-y-lg: 128px;
}

/* ============== PALETTE VARIANTS ==============
   Modern color directions — backgrounds included.
   Keep brutalist visual treatment (hard shadows, sticker eyebrows, tilts) — only colors swap. */

/* MONO — off-white + near-black + hot tech orange. Linear/Vercel monochrome but keeps food warmth in accent. */
[data-palette="mono"] {
  --accent: #FF5E1A;
  --accent-2: #18181C;
  --bg: #FAFAFA;
  --bg-alt: #EDEDED;
  --cream: #FFFFFF;
  --ink: #0E0E10;
  --ink-soft: #3F3F46;
  --ink-mute: #8A8A91;
  --rule: rgba(14, 14, 16, .1);
  --hero-grad: linear-gradient(135deg, #0E0E10 0%, #1A1A1C 50%, #2A2A2E 100%);
}

[data-theme="dark"] {
  --bg: #1B1815;
  --bg-alt: #25201C;
  --cream: #2E2823;
  --ink: #FAF5EC;
  --ink-soft: #C6BEB1;
  --ink-mute: #8B827A;
  --rule: rgba(250, 245, 236, .12);
}

/* ============== ACCENT TREATMENT ==============
   Controls how highlighted words in headings (e.g. "bezorgconcept", "merken")
   render. Default delicate Fraunces italic can disappear next to Archivo Black 900. */
[data-accent="italic-heavy"] .italic {
  font-weight: 900;
  letter-spacing: -.025em;
}
[data-accent="italic-big"] .italic {
  font-size: 1.15em;
  line-height: .9;
}
[data-accent="highlight-block"] .italic {
  font-family: var(--font-head);
  font-style: normal;
  font-weight: 900;
  letter-spacing: -.025em;
  color: var(--bg);
  background: var(--accent);
  padding: 0 .18em;
  border-radius: 6px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
/* When highlight-block is active, headings need extra line-height so the
   colored blocks don't visually overlap adjacent lines / the lead paragraph. */
[data-accent="highlight-block"] .h-display,
[data-accent="highlight-block"] .h-1 {
  line-height: 1.18;
}
[data-accent="highlight-block"] .h-2,
[data-accent="highlight-block"] .h-3 {
  line-height: 1.2;
}

/* ============== SITE STYLE (Bold ↔ Modern) ==============
   Bold = full brutalist (4px hard offset shadows + tilts + sticker rotations).
   Modern = same bold cards (smaller offset shadow + ink border) but quieter
   chrome: no rotations, no mini-shadows on chips/buttons/steps, soft button
   elevation. Keeps Archivo Black + impact, drops the noise. */
[data-vibe="modern"] {
  --card-shadow: 2px 2px 0 var(--ink), 0 6px 18px rgba(0, 0, 0, .04);
  --card-shadow-hover: 2px 2px 0 var(--ink), 0 14px 32px rgba(0, 0, 0, .08);
  --card-lift: -1px;
  --chip-shadow: none;
  --eyebrow-rotation: 0deg;
  --eyebrow-rotation-alt: 0deg;
  --eyebrow-shadow: none;
  --step-num-shadow: none;
  --form-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}
[data-vibe="modern"] .btn--primary {
  box-shadow: 0 2px 6px rgba(0, 0, 0, .08),
              0 8px 24px color-mix(in oklab, var(--accent) 25%, transparent);
}
[data-vibe="modern"] .btn--primary:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, .12),
              0 14px 32px color-mix(in oklab, var(--accent) 35%, transparent);
}
[data-vibe="modern"] .btn--primary:active {
  transform: translateY(1px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
}

/* ============== EYEBROW STYLES ==============
   Variations to pair with different accent treatments. */
/* Pill eyebrows keep the brutalist sticker treatment (rotation + accent
   box-shadow) regardless of the site vibe, so they always look "Bold". */
[data-eyebrow="pill"] {
  --eyebrow-rotation: -1deg;
  --eyebrow-rotation-alt: 1deg;
  --eyebrow-shadow: 2px 2px 0 var(--accent);
  --eyebrow-bg: var(--cream);
  --eyebrow-border: 1.5px solid var(--ink);
}
[data-eyebrow="block"] .eyebrow {
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 4px;
  box-shadow: none;
  transform: none;
  padding: 5px 10px;
  letter-spacing: .14em;
}
[data-eyebrow="block"] .eyebrow .dot { display: none; }
[data-eyebrow="block"] .hero__eyebrow {
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 4px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 5px 10px;
}
[data-eyebrow="block"] .hero__eyebrow .dot { display: none; }

[data-eyebrow="tag"] .eyebrow {
  background: transparent;
  border: none;
  box-shadow: none;
  transform: none;
  padding: 0;
  color: var(--ink-soft);
}
[data-eyebrow="tag"] .hero__eyebrow {
  background: transparent;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
  color: rgba(255, 255, 255, .75);
}

[data-eyebrow="underline"] .eyebrow {
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--accent);
  border-radius: 0;
  box-shadow: none;
  transform: none;
  padding: 0 0 5px;
  color: var(--ink);
}
[data-eyebrow="underline"] .eyebrow .dot { display: none; }
[data-eyebrow="underline"] .hero__eyebrow {
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--accent);
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0 0 5px;
}
[data-eyebrow="underline"] .hero__eyebrow .dot { display: none; }

[data-eyebrow="off"] .eyebrow,
[data-eyebrow="off"] .hero__eyebrow { display: none; }

/* ============== BRAND CARD VARIANTS ==============
   Two layouts (stack / stack-rounded). Glass pills + soft floating shadow
   are the default chrome (see brand-card rules below). */

/* Stats overlay only shows for the "spotlight" layout */
.brand-card__stats-overlay { display: none; }

/* Brand cards default to the soft floating shadow */
.brand-card {
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04),
              0 16px 40px rgba(0, 0, 0, .08);
}
.brand-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, .05),
              0 28px 56px rgba(0, 0, 0, .12);
}

/* —— STACK ROUNDED —— current stack chrome (shadow, full card). Media is full
   width (flush with card edges horizontally) but has rounded bottom corners so
   it reads as a self-contained logo frame on top of the card. */
[data-card-layout="stack-rounded"] .brand-card {
  border-radius: 20px;
}
[data-card-layout="stack-rounded"] .brand-card__media {
  border-radius: 20px 20px 16px 16px;
}
[data-card-layout="stack-rounded"] .brand-card__body {
  padding-top: 22px;
}
/* Modern shadow variants — applied on top of the layout */

/* —— SPOTLIGHT —— stats float over the media as a glass strip;
   the body underneath only carries name, tagline, highlight, note. */
[data-card-layout="spotlight"] .brand-card__media {
  aspect-ratio: 4 / 3;
}
[data-card-layout="spotlight"] .brand-stats { display: none; }
[data-card-layout="spotlight"] .brand-card__stats-overlay {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  color: var(--ink);
}
[data-card-layout="spotlight"] .brand-card__stats-overlay .brand-stat__v {
  font-size: 15px;
  color: var(--ink);
}
[data-card-layout="spotlight"] .brand-card__stats-overlay .brand-stat__l {
  font-size: 11px;
  color: var(--ink-soft);
}
[data-card-layout="spotlight"] .brand-card__fit { display: none; }
[data-card-layout="spotlight"] .brand-card__live { bottom: auto; }
[data-card-layout="spotlight"] .brand-card__body { padding-top: 22px; }
@media (max-width: 767px) {
  [data-card-layout="spotlight"] .brand-card__stats-overlay {
    grid-template-columns: 1fr 1fr;
    gap: 6px 14px;
    padding: 10px 12px;
  }
  [data-card-layout="spotlight"] .brand-card__stats-overlay .brand-stat__v { font-size: 13px; }
  [data-card-layout="spotlight"] .brand-card__stats-overlay .brand-stat__l { font-size: 10px; }
}

/* —— EDITORIAL —— Magazine-style. Bigger media with logo, big serif-style
   numbers, less chrome. Stats are the visual anchor below the brand name. */
[data-card-layout="editorial"] .brand-card {
  background: transparent;
  box-shadow: none;
}
[data-card-layout="editorial"] .brand-card:hover {
  transform: translateY(-3px);
  box-shadow: none;
}
[data-card-layout="editorial"] .brand-card:hover .brand-card__media {
  transform: translateY(-2px);
}
[data-card-layout="editorial"] .brand-card__media {
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  transition: transform .25s ease;
}
[data-card-layout="editorial"] .brand-card__media .brand-card__logo {
  padding: 14% !important;
}
[data-card-layout="editorial"] .brand-card__body {
  padding: 18px 4px 4px;
  gap: 14px;
}
[data-card-layout="editorial"] .brand-card__name {
  font-size: 26px;
  letter-spacing: -.025em;
}
[data-card-layout="editorial"] .brand-card__tag {
  font-size: 14px;
  color: var(--ink-soft);
}
[data-card-layout="editorial"] .brand-stats {
  border-top: 1px solid var(--rule);
  padding-top: 14px;
  gap: 4px 0;
  grid-template-columns: 1fr 1fr;
}
[data-card-layout="editorial"] .brand-stat__v {
  font-family: var(--font-head);
  font-size: 22px;
  letter-spacing: -.03em;
}
[data-card-layout="editorial"] .brand-stat__arrow {
  font-size: 14px;
}
[data-card-layout="editorial"] .brand-stat__l {
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
}
[data-card-layout="editorial"] .brand-card__note {
  background: transparent;
  padding: 12px 0 0;
  border-top: 1px solid var(--rule);
  border-radius: 0;
}
[data-card-layout="editorial"] .brand-card__fit { display: none; }

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background .3s ease, color .3s ease;
  overflow-x: clip;
  width: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}
.container--narrow { max-width: var(--container-narrow); }

/* ============== TYPOGRAPHY ============== */
.h-display {
  font-family: var(--font-head);
  font-weight: var(--head-weight);
  letter-spacing: var(--head-tracking);
  line-height: var(--head-line);
  font-size: clamp(44px, 9vw, 112px);
  margin: 0;
  text-wrap: pretty;
}
.h-1 {
  font-family: var(--font-head);
  font-weight: var(--head-weight);
  letter-spacing: var(--head-tracking);
  line-height: calc(var(--head-line) + .03);
  font-size: clamp(34px, 5.5vw, 64px);
  margin: 0;
  text-wrap: pretty;
}
/* Variant that always fits on one line — used for short hero-style headings */
.h-1--fit {
  white-space: nowrap;
  font-size: clamp(24px, 7.5vw, 64px);
}
.h-2 {
  font-family: var(--font-head);
  font-weight: var(--head-weight);
  letter-spacing: var(--head-tracking);
  line-height: 1.0;
  font-size: clamp(24px, 3vw, 32px);
  margin: 0;
}
.h-3 {
  font-family: var(--font-head);
  font-weight: var(--head-weight);
  letter-spacing: var(--head-tracking);
  line-height: 1.1;
  font-size: clamp(19px, 2.2vw, 22px);
  margin: 0;
}
.italic {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--accent);
}
.mark {
  background: linear-gradient(180deg, transparent 60%, color-mix(in oklab, var(--accent) 35%, transparent) 60%);
  padding: 0 4px;
}
.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 24px;
  text-wrap: pretty;
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -.005em;
  border: 1.5px solid transparent;
  background: var(--ink);
  color: var(--bg);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(1px); }
.btn .arrow { transition: transform .2s ease; display: inline-block; }
.btn:hover .arrow { transform: translateX(3px); }

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 0 color-mix(in oklab, var(--accent) 65%, #000),
              0 8px 24px color-mix(in oklab, var(--accent) 30%, transparent);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 color-mix(in oklab, var(--accent) 65%, #000),
              0 12px 32px color-mix(in oklab, var(--accent) 40%, transparent);
}
.btn--primary:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 color-mix(in oklab, var(--accent) 65%, #000);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
/* On dark backgrounds (hero, marquee), ghost goes white */
.hero .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
}
.hero .btn--ghost:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.btn--lg { padding: 16px 28px; font-size: 15px; }
.btn--sm { padding: 10px 16px; font-size: 13px; }
.btn--block { width: 100%; }

/* ============== EYEBROW (sticker style) ============== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: var(--eyebrow-bg);
  color: var(--ink);
  border: var(--eyebrow-border);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 18px;
  box-shadow: var(--eyebrow-shadow);
  transform: rotate(var(--eyebrow-rotation));
  transform-origin: center;
}
section:nth-of-type(2n) .eyebrow { transform: rotate(var(--eyebrow-rotation-alt)); }
.eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

/* ============== NAV ============== */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 50;
  background: transparent;
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav__logo {
  font-family: var(--font-head);
  font-weight: var(--head-weight);
  letter-spacing: -.03em;
  font-size: 26px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1);
}
.nav__logo:hover { transform: rotate(-3deg) translateX(2px); }
.nav__logo .dot { color: var(--accent); }
.nav__links {
  display: none;
  gap: 28px;
  margin-left: auto;
  align-items: center;
}
.nav__link {
  font-size: 14px;
  color: rgba(255, 255, 255, .85);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color .15s ease;
}
.nav__link:hover { color: #fff; }
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav__link:hover::after { transform: scaleX(1); }
.nav__hamburger {
  margin-left: auto;
  background: none;
  border: none;
  width: 40px; height: 40px;
  padding: 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav.open .nav__hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav__hamburger span:nth-child(2) { opacity: 0; }
.nav.open .nav__hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__sheet {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--ink);
  padding: 28px 22px;
  z-index: 49;
}
.nav.open .nav__sheet { display: flex; flex-direction: column; gap: 6px; }
.nav__sheet .nav__link {
  display: block;
  font-size: 20px;
  color: #fff;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.nav__sheet .btn { margin-top: 24px; align-self: flex-start; }

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: calc(100svh + 40px);
  padding: calc(var(--nav-h) + 40px) 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 30% 30%, color-mix(in oklab, var(--accent) 50%, transparent) 0%, transparent 55%),
    radial-gradient(100% 70% at 80% 75%, color-mix(in oklab, var(--accent-2) 40%, transparent) 0%, transparent 50%),
    var(--hero-grad);
  z-index: -2;
}
.hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: .6;
  z-index: -1;
  mix-blend-mode: overlay;
}
.hero__inner { width: 100%; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  padding: 7px 14px;
  margin-bottom: 24px;
  white-space: nowrap;
}
/* Cycling text: stack all options in a grid so the widest sets the pill
   width, then only show one at a time. Pill stays a fixed size. */
.hero__eyebrow-stack {
  display: inline-grid;
  align-items: center;
}
.hero__eyebrow-stack > span {
  grid-area: 1 / 1;
  display: inline-block;
  text-align: left;
}
.hero__eyebrow-stack > span:not(.is-active) {
  opacity: 0;
  visibility: hidden;
}
.hero__eyebrow-stack > span.is-active {
  animation: cycleFadeIn .35s cubic-bezier(.22, 1, .36, 1);
}
.hero__eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.hero__title {
  margin: 0 0 22px;
  color: #fff;
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
  position: relative;
  display: inline-block;
}
.hero__title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: var(--hero-title-underline);
  background: var(--accent);
  opacity: var(--hero-title-underline-opacity);
  border-radius: 3px;
}
.hero__sub {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: rgba(255, 255, 255, .85);
  margin: 0 0 32px;
  max-width: 580px;
}
.hero__sub b {
  color: #fff;
  font-weight: 600;
}
.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero__platforms {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
}
.hero__platforms .lbl {
  color: rgba(255, 255, 255, .5);
  letter-spacing: .2em;
  font-size: 10px;
}
.hero__platforms-plats {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  width: 100%;
}
.hero__platforms .plat {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .85);
  backdrop-filter: blur(6px);
  font-size: 10.5px;
  letter-spacing: .08em;
  white-space: nowrap;
  flex-shrink: 1;
  min-width: 0;
}

@media (min-width: 540px) {
  .hero__platforms {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .hero__platforms-plats { width: auto; }
}

/* ============== SECTIONS ============== */
.section {
  position: relative;
  padding: var(--section-y) 0;
  background: var(--bg);
  overflow: hidden;
}
.section:nth-of-type(2n) { background: var(--bg-alt); }

.section__head {
  margin-bottom: 36px;
  max-width: 720px;
}
.section__head--center {
  /* On mobile: left-aligned (default). Centered on tablet+ — see media query. */
}
.section__head .lead { margin-top: 18px; }

/* ============== MARQUEE ============== */
.marquee {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  padding: 16px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(var(--marquee-rotation));
  margin: var(--marquee-margin);
  z-index: 5;
}
.marquee__track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  font-family: var(--font-head);
  font-weight: var(--head-weight);
  font-size: clamp(18px, 2vw, 28px);
  letter-spacing: -.01em;
  text-transform: uppercase;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 32px;
}
.marquee__sep {
  color: var(--accent);
  font-size: 14px;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-33.33%); }
}

/* ============== ABOUT ============== */
.about__inner {
  position: relative;
}
.about__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .07;
  z-index: 0;
}
.blob {
  position: absolute;
  width: 280px;
  height: 280px;
  color: var(--accent);
}
.blob--1 {
  top: -80px;
  right: -80px;
}
.blob--2 {
  bottom: -120px;
  left: -100px;
  color: var(--accent-2);
  animation: rotate 40s linear infinite;
}
@keyframes rotate {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}
.about__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

/* ============== BRANDS ============== */
.brands__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-bottom: 44px;
}

.brand-card {
  background: var(--cream);
  border: none;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04), 0 16px 40px rgba(0, 0, 0, .08);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.brand-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, .05), 0 28px 56px rgba(0, 0, 0, .12);
}
.brand-card__media {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-bottom: none;
  background: linear-gradient(135deg, var(--brand-color, var(--accent)), color-mix(in oklab, var(--brand-color, var(--accent)) 70%, #000));
}
.brand-card__photo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image:
    radial-gradient(rgba(255, 255, 255, .15) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  background-position: 0 0;
}
.brand-card__photo-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, .4);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  backdrop-filter: blur(6px);
}
.brand-card__media--logo {
  background: var(--brand-color);
}
.brand-card__logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  display: block;
}
.brand-card__live {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  padding: 4px 10px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.brand-card__live .pulse {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #1F8A5B;
  margin-right: 4px;
  vertical-align: middle;
  box-shadow: 0 0 6px #1F8A5B;
}
.brand-card__live--soon .pulse {
  background: #E0A52A;
  box-shadow: 0 0 6px #E0A52A;
  animation: none;
}
.brand-card__live--waitlist .pulse {
  background: var(--ink);
  box-shadow: none;
  animation: none;
}
.brand-card__fit {
  position: absolute;
  bottom: 14px;
  right: 14px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  padding: 5px 10px;
  border-radius: 999px;
  border: none;
  box-shadow: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.brand-card__highlight {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  align-self: flex-start;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: #F2C94C;
  color: var(--ink);
  border: none;
  border-radius: 999px;
  padding: 4px 10px;
}
.brand-card__highlight-arrow {
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
}
.brand-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}
.brand-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-card__avatar {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--brand-color, var(--accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 14px;
  border: 1.5px solid var(--ink);
  flex-shrink: 0;
}
.brand-card__avatar--logo {
  overflow: hidden;
  padding: 4px;
}
.brand-card__avatar--logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.brand-card__note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 12px 14px;
  background: color-mix(in oklab, var(--ink) 6%, transparent);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.brand-card__note-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E0A52A;
  flex-shrink: 0;
}
.brand-card__note--open .brand-card__note-dot {
  background: #1F8A5B;
  box-shadow: 0 0 6px color-mix(in oklab, #1F8A5B 50%, transparent);
  position: relative;
}
.brand-card__note--open .brand-card__note-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: #1F8A5B;
  opacity: .35;
  animation: notePulse 2.4s cubic-bezier(.4, 0, .2, 1) infinite;
  z-index: -1;
}
@keyframes notePulse {
  0%   { transform: scale(.6); opacity: .4; }
  70%  { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}
[data-no-anim] .brand-card__note--open .brand-card__note-dot::after { animation: none; }
.brand-card__more {
  display: flex;
  justify-content: flex-start;
  margin-top: 4px;
}
.brand-card__more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.brand-card__more-link:hover {
  background: var(--ink);
  color: var(--bg);
}
.brand-card__more-arrow {
  display: inline-block;
  transition: transform .22s ease;
}
.brand-card__more-link:hover .brand-card__more-arrow {
  transform: translateX(3px);
}
.brand-card__name {
  font-family: var(--font-head);
  font-weight: var(--head-weight);
  font-size: 24px;
  letter-spacing: var(--head-tracking);
  line-height: 1.05;
  margin: 0;
}
.brand-card__tag {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-top: 6px;
}
.brand-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 22px;
  padding-top: 18px;
  border-top: 1.5px dashed var(--rule);
}
.brand-stat__v {
  font-family: var(--font-head);
  font-size: 17px;
  letter-spacing: -.02em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.brand-stat__arrow {
  color: var(--accent);
  font-size: 14px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 14px;
  flex-shrink: 0;
}
.brand-stat__l {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 2px;
}

/* Pipeline */
.pipeline {
  background: var(--ink);
  color: var(--cream);
  border-radius: 22px;
  padding: 28px 22px;
}
.pipeline__head {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.pipeline__pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
  flex-shrink: 0;
}
.pipeline__pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .3;
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(.85); opacity: .3; }
  50% { transform: scale(1.6); opacity: 0; }
}
.pipeline__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.pipeline__card {
  border: 1.5px dashed rgba(255, 255, 255, .25);
  border-radius: 14px;
  padding: 18px 20px;
  position: relative;
  transition: border-color .2s ease, background .2s ease;
}
.pipeline__card:hover {
  border-color: var(--accent);
  background: color-mix(in oklab, var(--accent) 8%, transparent);
}
.pipeline__name {
  font-family: var(--font-head);
  font-weight: var(--head-weight);
  font-size: 22px;
  letter-spacing: var(--head-tracking);
  line-height: 1;
}
.pipeline__cat {
  font-size: 13px;
  color: rgba(250, 245, 236, .65);
  margin-top: 6px;
}
.pipeline__tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 3px 7px;
  border-radius: 4px;
}
.pipeline__cta-wrap {
  margin-top: 18px;
  display: flex;
  justify-content: flex-start;
}

/* ============== BENEFITS ============== */
.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.benefit {
  background: var(--cream);
  border: var(--card-border);
  border-radius: calc(var(--card-radius) - 6px);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.benefit:hover {
  transform: translate(var(--card-lift), var(--card-lift));
  box-shadow: var(--card-shadow-hover);
}
.benefit__num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--accent);
  margin-bottom: 4px;
}
.benefit__title {
  font-size: 20px;
  margin: 0 0 4px;
}
.benefit__copy {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* ============== STEPS ============== */
.steps__list {
  position: relative;
  margin-top: 28px;
}
.steps__line {
  position: absolute;
  left: 18px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background-image: linear-gradient(to bottom, var(--ink) 50%, transparent 0);
  background-size: 2px 8px;
  background-repeat: repeat-y;
  opacity: .3;
  z-index: 0;
}
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 18px 0;
  position: relative;
  z-index: 1;
}
.step__num {
  flex: 0 0 auto;
  width: 38px; height: 38px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 13px;
  border: var(--card-border);
  box-shadow: var(--step-num-shadow);
}
.step__title {
  font-size: 22px;
  margin: 0 0 6px;
}
.step__copy {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* ============== PARTNERS ============== */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 32px;
}
@media (min-width: 768px) {
  .chips--center { justify-content: center; }
  .partners__cta { display: flex; justify-content: center; }
}
.chip {
  font-size: 13px;
  font-weight: 600;
  background: var(--cream);
  color: var(--ink);
  border: var(--card-border);
  border-radius: 999px;
  padding: 8px 14px;
  box-shadow: var(--chip-shadow);
  transition: transform .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.chip:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--ink);
}

/* ============== FAQ ============== */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--rule);
  margin-top: 8px;
}
.faq__item {
  border-bottom: 1px solid var(--rule);
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-weight: var(--head-weight);
  font-size: clamp(17px, 2.2vw, 21px);
  letter-spacing: var(--head-tracking);
  line-height: 1.3;
  color: var(--ink);
  transition: color .15s ease;
}
.faq__q:hover { color: var(--accent); }
.faq__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), background .15s ease, color .15s ease;
}
.faq__item.is-open .faq__icon {
  transform: rotate(135deg);
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.faq__icon-v { transition: opacity .2s ease; }
.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s cubic-bezier(.22, 1, .36, 1);
}
.faq__a-inner {
  padding: 0 0 22px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 680px;
}
@media (min-width: 768px) {
  .faq__q { padding: 26px 0; }
}

/* ============== CONTACT ============== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
.contact__left .lead { margin: 22px 0 28px; }
.contact__meta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--ink-soft);
  font-size: 15px;
}
.contact__meta-line {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact__meta-line svg {
  flex-shrink: 0;
  color: var(--ink-mute);
}

.form {
  background: var(--cream);
  border: var(--card-border);
  border-radius: calc(var(--card-radius) - 4px);
  padding: 24px;
  box-shadow: var(--form-shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form__success {
  background: color-mix(in oklab, var(--accent-2) 12%, transparent);
  border: 1.5px solid var(--accent-2);
  color: var(--ink);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  display: none;
  line-height: 1.5;
}
.form.sent .form__success { display: block; }

.form__error {
  background: color-mix(in oklab, var(--accent) 12%, transparent);
  border: 1.5px solid var(--accent);
  color: var(--ink);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  display: none;
  line-height: 1.5;
}
.form.errored .form__error { display: block; }
.form__error a { color: var(--ink); border-bottom: 1.5px solid var(--accent); font-weight: 600; }

.form__honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form .btn[disabled] {
  opacity: .65;
  cursor: not-allowed;
  pointer-events: none;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field--row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.field label,
.field > span {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.field input,
.field textarea {
  font-family: inherit;
  /* 16px voorkomt auto-zoom op iOS Safari */
  font-size: 16px;
  padding: 12px 14px;
  border: 1.5px solid var(--rule);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
}
[data-theme="dark"] .field input,
[data-theme="dark"] .field textarea {
  background: rgba(0, 0, 0, .25);
  color: var(--ink);
  border-color: rgba(250, 245, 236, .15);
}
.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 20%, transparent);
}
.field textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}
.form__note {
  font-size: 12px;
  color: var(--ink-mute);
  margin: 0;
}

/* ============== FOOTER ============== */
.footer {
  border-top: 1.5px solid var(--rule);
  background: var(--bg);
  padding: 48px 0 28px;
}
.footer__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer__copyright {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: .02em;
}
.footer__brand {
  font-family: var(--font-head);
  font-weight: var(--head-weight);
  font-size: 32px;
  letter-spacing: -.03em;
  display: inline-block;
  color: var(--ink);
}
.footer__brand .dot { color: var(--accent); }
.footer__bottom {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: .02em;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============== BACK TO TOP ============== */
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  border: 1.5px solid var(--ink);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  z-index: 45;
  opacity: 0;
  transform: translateY(16px) scale(.9);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, box-shadow .15s ease;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .2);
}
.back-to-top:active {
  transform: translateY(1px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, .15);
}
@media (min-width: 768px) {
  .back-to-top {
    right: 28px;
    bottom: 28px;
    width: 52px;
    height: 52px;
  }
}

/* ============== COOKIE BANNER ============== */
.cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .12);
  padding: 16px 18px;
  animation: cookieRise .4s cubic-bezier(.22, 1, .36, 1);
}
@keyframes cookieRise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.cookie-banner__text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink);
}
@media (min-width: 600px) {
  .cookie-banner {
    left: auto;
    right: 20px;
    bottom: 20px;
    max-width: 440px;
  }
  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
  .cookie-banner__text { flex: 1; font-size: 13.5px; }
}
@media (min-width: 1024px) {
  .cookie-banner { bottom: 28px; right: 28px; }
}
[data-theme="dark"] .cookie-banner { background: var(--bg-alt); border-color: var(--ink); }

/* Hide back-to-top above the cookie banner area to avoid overlap */
.cookie-banner ~ .back-to-top { bottom: 100px; }
@media (min-width: 600px) {
  .cookie-banner ~ .back-to-top { bottom: 20px; }
}

/* ============== REVEAL ============== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.brand-card.reveal {
  transform: translateY(40px) scale(.97);
}
.brand-card.reveal.in {
  transform: translateY(0) scale(1);
}
.step.reveal {
  transform: translateX(-20px);
}
.step.reveal.in {
  transform: translateX(0);
}
[data-no-anim] .reveal { opacity: 1; transform: none; transition: none; }
[data-no-anim] .marquee__track { animation: none; }
[data-no-anim] .blob--2 { animation: none; }
[data-no-anim] .pipeline__pulse::after { animation: none; }

/* ============== TABLET (768+) ============== */
@media (min-width: 768px) {
  :root { --section-y: var(--section-y-md); }

  .nav__hamburger { display: none; }
  .nav__links { display: flex; }
  .nav__sheet { display: none !important; }

  .hero { padding: calc(var(--nav-h) + 60px) 0 100px; }
  .hero__cta { flex-direction: row; gap: 12px; }
  .hero__platforms { gap: 10px; }

  .brands__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .pipeline__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .benefits__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .steps__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 32px;
  }
  .steps__line { display: none; }
  .step { padding: 0; }

  .contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
  .field--row { grid-template-columns: 1fr 1fr; }

  .footer__grid {
    grid-template-columns: 1fr auto;
    gap: 48px;
  }
  .footer__col--right { text-align: right; }

  .section__head { margin-bottom: 48px; }
  .section__head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

/* ============== DESKTOP (1024+) ============== */
@media (min-width: 1024px) {
  :root { --section-y: var(--section-y-lg); }

  .container { padding: 0 32px; }

  .hero { min-height: clamp(820px, 100vh, 1100px); padding-bottom: 200px; }
  .hero__inner { max-width: 1040px; }
  .hero__cta { gap: 14px; }

  /* Hide the first marquee on desktop — the hero takes the full screen and the
     marquee stays under the brands section. */
  .hero + .marquee { display: none; }

  .brands__grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  /* Cards are narrower in 3-col layout — compress vertical height to keep
     a more balanced card proportion */
  .brand-card__media { aspect-ratio: 3 / 2; }
  .brand-card__body { padding: 20px; gap: 14px; }
  .brand-card__name { font-size: 22px; }
  .brand-stats { gap: 10px 18px; padding-top: 14px; }
  .brand-stat__v { font-size: 15px; }
  .benefits__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .benefit { padding: 28px; }

  .steps__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
  }
  .steps__line {
    display: block;
    position: absolute;
    left: 38px; right: 38px; top: 18px;
    bottom: auto;
    width: auto; height: 2px;
    background-image: linear-gradient(to right, var(--ink) 50%, transparent 0);
    background-size: 8px 2px;
    background-repeat: repeat-x;
    opacity: .3;
  }
  .step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .step__num { margin-bottom: 6px; }

  .pipeline { padding: 32px; }
  .marquee { padding: 22px 0; }
}

/* ============== LARGE (1280+) ============== */
@media (min-width: 1280px) {
  .container { padding: 0 40px; }
  .form { padding: 32px; }
}

/* ============== PRINT ============== */
@media print {
  .nav, .marquee, .hero__bg, .hero__grain { display: none; }
  .section { padding: 24px 0; break-inside: avoid; }
  body { background: #fff; color: #000; }
}

/* ============== MODERN TOUCHES ============== */

/* Hero animation — aurora sheen across the existing radial glows */
[data-hero-anim="aurora"] .hero__bg {
  background:
    linear-gradient(115deg, transparent 30%, color-mix(in oklab, var(--accent) 14%, transparent) 50%, transparent 70%) 100% 0% / 220% 100%,
    radial-gradient(110% 70% at 18% 22%, color-mix(in oklab, var(--accent) 42%, transparent) 0%, transparent 55%),
    radial-gradient(100% 70% at 88% 82%, color-mix(in oklab, var(--accent-2) 38%, transparent) 0%, transparent 50%),
    var(--hero-grad);
  animation: aurora 26s linear 6s infinite;
}
@keyframes aurora {
  from { background-position: 100% 0%, 0 0, 0 0, 0 0; }
  to   { background-position: -120% 0%, 0 0, 0 0, 0 0; }
}
[data-no-anim] [data-hero-anim="aurora"] .hero__bg { animation: none; }

/* ============== ELEVATION TWEAKS ============== */

/* 1. Active nav indicator — keep accent underline expanded on the current section's link */
.nav__link--active::after { transform: scaleX(1) !important; }
.nav__link--active { color: #fff; }

/* 2. Brand card 3D tilt (JS-driven; perspective wrap below) */
[data-card-tilt] .brand-card {
  transform-style: preserve-3d;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .25s ease;
}
[data-card-tilt] .brand-card.tilted { transition: transform .08s ease-out, box-shadow .25s ease; }

/* 3. Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--accent);
  z-index: 100;
  transition: width .08s linear;
  pointer-events: none;
}

/* 4. Sticky "Plan afspraak" CTA */
.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 78px;
  z-index: 44;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.sticky-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
@media (min-width: 768px) {
  .sticky-cta { right: 28px; bottom: 92px; }
}

/* 5. Custom selection */
[data-custom-selection] ::selection { background: var(--accent); color: var(--bg); }
[data-custom-selection] ::-moz-selection { background: var(--accent); color: var(--bg); }

/* 6. Marquee sparkle rotate */
[data-marquee-sparkles] .marquee__sep {
  display: inline-block;
  animation: sparkleRotate 8s linear infinite;
  transform-origin: center;
}
@keyframes sparkleRotate { to { transform: rotate(360deg); } }
[data-no-anim] [data-marquee-sparkles] .marquee__sep { animation: none; }

/* 7. Form input focus glow */
[data-form-glow] .field input:focus,
[data-form-glow] .field textarea:focus {
  border-color: var(--accent);
  box-shadow:
    0 0 0 4px color-mix(in oklab, var(--accent) 20%, transparent),
    0 0 28px color-mix(in oklab, var(--accent) 30%, transparent);
}

/* 8. Section numbers via CSS counter */
main { counter-reset: sec; }
[data-section-numbers] section { counter-increment: sec; }
[data-section-numbers] section .eyebrow::before {
  content: counter(sec, decimal-leading-zero);
  font-weight: 800;
  color: var(--accent);
  margin-right: 8px;
  padding-right: 8px;
  border-right: 1px solid var(--rule);
  letter-spacing: .04em;
}

/* 9. About section visual */
.about__visual { display: none; margin-top: 28px; }
[data-about-visual] .about__visual { display: block; }
.about__visual svg { width: 100%; max-width: 540px; height: auto; display: block; }

/* 10. Brand logo hover scale */
[data-logo-hover] .brand-card .brand-card__logo {
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
}
[data-logo-hover] .brand-card:hover .brand-card__logo { transform: scale(1.06); }

/* ============== ELEVATION 2 ============== */

/* 11. Step progression line animates with scroll
   Mobile: vertical (clip from bottom). Desktop: horizontal (clip from right). */
[data-step-line] .steps__line {
  --step-progress: 0;
  clip-path: inset(0 0 calc((1 - var(--step-progress)) * 100%) 0);
}
@media (min-width: 1024px) {
  [data-step-line] .steps__line {
    clip-path: inset(0 calc((1 - var(--step-progress)) * 100%) 0 0);
  }
}

/* 12. Custom cursor */
[data-custom-cursor], [data-custom-cursor] * { cursor: none; }
@media (hover: none), (pointer: coarse) {
  [data-custom-cursor], [data-custom-cursor] * { cursor: auto; }
  .custom-cursor { display: none !important; }
}
.custom-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 32px; height: 32px;
  margin: -16px 0 0 -16px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: width .25s, height .25s, margin .25s, border-color .25s, background .25s;
}
.custom-cursor__dot {
  position: absolute;
  top: 50%; left: 50%;
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform .15s ease-out;
}
.custom-cursor.hover {
  width: 56px; height: 56px;
  margin: -28px 0 0 -28px;
  background: color-mix(in oklab, var(--accent) 20%, transparent);
}

/* 13. Bento KPI strip — credibility row under hero */
.bento-kpi { padding: 36px 0; background: var(--bg); border-bottom: 1px solid var(--rule); }
.bento-kpi__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 26px;
}
.bento-kpi__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bento-kpi__v {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -.02em;
  line-height: 1;
}
.bento-kpi__l {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
@media (min-width: 768px) {
  .bento-kpi { padding: 56px 0; }
  .bento-kpi__grid { grid-template-columns: repeat(4, 1fr); gap: 32px; }
}

/* 14. Brand card menu preview on hover */
.brand-card__preview {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .9));
  color: #fff;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
  border-radius: inherit;
}
.brand-card__preview-h {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
}
.brand-card__preview-row {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .01em;
  line-height: 1.4;
}
@media (hover: hover) {
  [data-card-preview] .brand-card:hover .brand-card__preview { opacity: 1; }
  [data-card-preview] .brand-card:hover .brand-card__logo { transform: scale(.92); }
}

/* 15. Dual-direction marquee */
.marquee--reverse { transform: rotate(1.5deg); }
.marquee--reverse .marquee__track { animation-direction: reverse; animation-duration: 26s; }

/* 16. Floating geometric shapes in section backgrounds */
[data-shapes] .section { overflow: visible; }
[data-shapes] .section { position: relative; }
[data-shapes] .section::before,
[data-shapes] .section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: .25;
  z-index: 0;
}
[data-shapes] #over-ons::before {
  width: 70px; height: 70px;
  top: 30px; right: 8%;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
}
[data-shapes] #merken::after {
  width: 50px; height: 50px;
  bottom: 60px; left: 4%;
  background: var(--accent);
  transform: rotate(45deg);
  opacity: .15;
}
[data-shapes] #voordelen::before {
  width: 80px; height: 80px;
  top: 50px; left: 6%;
  border: 1.5px solid var(--ink);
  border-radius: 0;
  transform: rotate(20deg);
}
[data-shapes] #werkwijze::after {
  width: 60px; height: 60px;
  top: 80px; right: 10%;
  background: var(--accent-2);
  border-radius: 50%;
  opacity: .15;
}
[data-shapes] #partners::before {
  width: 90px; height: 90px;
  bottom: 40px; right: 6%;
  border: 2px solid var(--accent);
  transform: rotate(45deg);
}
[data-shapes] .container { position: relative; z-index: 1; }

/* 17. Animated benefit numbers on hover */
[data-benefit-anim] .benefit__num { transition: transform .35s cubic-bezier(.34, 1.56, .64, 1); display: inline-block; }
[data-benefit-anim] .benefit:hover .benefit__num { transform: scale(1.4) rotate(-4deg); transform-origin: left center; }

/* Hero eyebrow cycling text */
.hero__eyebrow-text {
  display: inline-block;
  animation: cycleFadeIn .35s cubic-bezier(.22, 1, .36, 1);
}
@keyframes cycleFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 19. Sparkle particles on primary CTA click */
.sparkle {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  box-shadow: 0 0 14px var(--accent);
  animation: sparkleFly 1s cubic-bezier(.22, 1, .36, 1) forwards;
}
@keyframes sparkleFly {
  from { transform: translate(0, 0) scale(1); opacity: 1; }
  to { transform: translate(var(--dx), var(--dy)) scale(0); opacity: 0; }
}

/* 20. Animated hero brand counter — uses existing .hero__ticker */
[data-no-anim] [data-hero-drift] .hero__bg { animation: none; }

/* Hero text reveal — line-by-line clip-mask reveal that you can actually see */
.hero__title-line {
  display: block;
}
[data-hero-reveal] .hero__title-line {
  overflow: hidden;
}
[data-hero-reveal] .hero__title-line > * {
  display: inline-block;
  animation: heroLineRise 1.1s cubic-bezier(.22, 1, .36, 1) both;
}
[data-hero-reveal] .hero__title-line {
  animation: heroFadeUp 1.1s cubic-bezier(.22, 1, .36, 1) both;
}
[data-hero-reveal] .hero__title-line:nth-child(1)       { animation-delay: .15s; }
[data-hero-reveal] .hero__title-line:nth-child(1) > *  { animation-delay: .15s; }
[data-hero-reveal] .hero__title-line:nth-child(2)       { animation-delay: .4s; }
[data-hero-reveal] .hero__title-line:nth-child(2) > *  { animation-delay: .4s; }
[data-hero-reveal] .hero__title { overflow: visible; }

[data-hero-reveal] .hero__eyebrow,
[data-hero-reveal] .hero__sub,
[data-hero-reveal] .hero__cta {
  animation: heroFadeUp 1s cubic-bezier(.22, 1, .36, 1) both;
}
[data-hero-reveal] .hero__eyebrow { animation-delay: 0s; }
[data-hero-reveal] .hero__sub     { animation-delay: .55s; }
[data-hero-reveal] .hero__cta     { animation-delay: .7s; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroLineRise {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}
[data-no-anim] [data-hero-reveal] .hero__title-line > *,
[data-no-anim] [data-hero-reveal] .hero__title-line,
[data-no-anim] [data-hero-reveal] .hero__eyebrow,
[data-no-anim] [data-hero-reveal] .hero__sub,
[data-no-anim] [data-hero-reveal] .hero__cta { animation: none; }

/* Hero ticker — floating live-feel order counter */
.hero__ticker {
  position: absolute;
  bottom: 24px;
  right: 22px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 14px;
  padding: 12px 16px 12px 14px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1;
  pointer-events: none;
  animation: tickerFade .8s ease-out .8s both;
}
@keyframes tickerFade {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__ticker-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 10px #4ADE80;
  position: relative;
  flex-shrink: 0;
}
.hero__ticker-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #4ADE80;
  opacity: .3;
  animation: pulse 2s ease-out infinite;
}
[data-no-anim] .hero__ticker-dot::after { animation: none; }
.hero__ticker-num {
  font-family: var(--font-head);
  font-size: 18px;
  letter-spacing: -.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero__ticker-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
  margin-top: 4px;
}
@media (min-width: 768px) {
  .hero__ticker {
    bottom: 40px;
    right: 40px;
    padding: 14px 20px 14px 16px;
  }
  .hero__ticker-num { font-size: 22px; }
}

/* Logo parallax — slight Y-translate; JS applies the actual transform per logo */

/* ============== UTILS ============== */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
