/* ============ TOKENS ============ */
:root {
  --bg: #0B1220;
  --bg-alt: #0E1626;
  --surface: #131C2E;
  --surface-2: #1A2438;
  --border: rgba(226, 232, 240, 0.09);
  --text: #E7EBF3;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  --accent: #3B82F6;
  --accent-light: #60A5FA;
  --accent-dark: #1D4ED8;
  --on-accent: #FFFFFF;

  --font-display: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container: 1200px;
  --radius: 10px;
  --radius-sm: 6px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
  min-height: 100dvh;
}
section[id] { scroll-margin-top: 84px; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; color: inherit; cursor: pointer; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1560px; }
.container--narrow { max-width: 720px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.2rem; font-weight: 600; }
em { font-style: normal; color: var(--accent-light); }

.eyebrow {
  color: var(--accent-light);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}
.section__lead { color: var(--text-muted); max-width: 560px; font-size: 1.05rem; margin-top: 14px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* grain + cursor glow */
/* preloader */
.preloader {
  position: fixed; inset: 0; z-index: 300; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
}
.preloader__logo {
  font-family: var(--font-display); font-weight: 800; font-size: 1.8rem; letter-spacing: 0.02em; color: var(--text);
  opacity: 0; transform: scale(0.92);
}
.preloader__logo span { color: var(--accent-light); }

.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 2; opacity: 0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 420px; height: 420px; border-radius: 50%; pointer-events: none; z-index: 1;
  background: radial-gradient(circle, rgba(59,130,246,0.10) 0%, transparent 70%);
  will-change: transform;
}
@media (max-width: 768px) { .cursor-glow { display: none; } }

/* scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; width: 100%; height: 3px; z-index: 200;
  background: var(--accent); transform: scaleX(0); transform-origin: 0 0;
  will-change: transform;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px; border-radius: 999px;
  font-weight: 600; font-size: 0.92rem; letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease-out), background 0.25s, border-color 0.25s, box-shadow 0.25s;
  cursor: pointer; white-space: nowrap;
}
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--accent { background: var(--accent); color: var(--on-accent); box-shadow: 0 8px 30px -8px rgba(59,130,246,0.55); }
.btn--accent:hover { background: var(--accent-light); transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--border); color: var(--text); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-light); }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0;
  transition: padding 0.35s var(--ease-out), background 0.35s var(--ease-out), border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding: 14px 0;
  background: rgba(11, 18, 32, 0.85);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__logo {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; letter-spacing: 0.02em;
}
.nav__logo span { color: var(--accent-light); font-weight: 500; }
.nav__links { display: flex; gap: 32px; font-size: 0.9rem; font-weight: 500; }
.nav__links a { color: var(--text-muted); transition: color 0.2s; position: relative; }
.nav__links a:hover { color: var(--text); }
.nav__cta { flex-shrink: 0; }
.nav__burger { display: none; flex-direction: column; gap: 5px; width: 30px; height: 24px; z-index: 101; }
.nav__burger span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s var(--ease-out), opacity 0.3s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 95; background: var(--bg);
  display: flex; flex-direction: column; justify-content: center; gap: 32px; padding: 24px;
  transform: translateY(-100%); transition: transform 0.45s var(--ease-out);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 22px; }
.mobile-menu nav a { font-family: var(--font-display); font-size: 2rem; }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* ============ HERO ============ */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh; display: flex; align-items: center;
  padding: 160px 0 120px;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg video { width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,18,32,0.55) 0%, rgba(11,18,32,0.5) 45%, rgba(11,18,32,0.95) 100%),
    linear-gradient(90deg, rgba(11,18,32,0.88) 0%, rgba(11,18,32,0.5) 60%, rgba(11,18,32,0.35) 100%);
}

/* corner viewfinder frame */
.hero__frame { position: absolute; inset: 24px; z-index: 1; pointer-events: none; }
.hero__frame-svg { width: 100%; height: 100%; overflow: visible; }
.hero__frame-path { fill: none; stroke: rgba(226,232,240,0.4); stroke-width: 0.6; }

.hero__inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%; }
.hero__headline { display: flex; flex-direction: column; gap: 6px; }
.hero__headline > span:first-child { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.6rem, 3.4vw, 2.6rem); color: var(--text); letter-spacing: -0.01em; }
.hero__bigword {
  display: inline-block; font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(4rem, 13vw, 10.5rem); line-height: 0.92; letter-spacing: -0.02em; margin-top: -0.05em;
  background: linear-gradient(100deg, var(--accent-dark) 0%, var(--accent-light) 25%, #fff 50%, var(--accent-light) 75%, var(--accent-dark) 100%);
  background-size: 250% 100%; background-position: 0% 0%;
  -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
}
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero__bigword { color: var(--accent-light); -webkit-text-fill-color: initial; }
}

.hero__lead { font-size: 1.15rem; color: var(--text-muted); max-width: 560px; margin: 28px 0 34px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 40px; margin-top: 52px; flex-wrap: wrap; align-items: center; }
.hero__stats strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.9rem; color: var(--accent-light); }
.hero__stats span { font-size: 0.8rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.05em; }
.hero__rating {
  padding: 10px 18px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: rgba(11,18,32,0.5); backdrop-filter: blur(10px);
}
.hero__rating strong { font-size: 1.2rem; }

.hero__scroll-cue {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border); color: var(--text-dim);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.25s, color 0.25s; animation: heroScrollCue 2s ease-in-out infinite;
}
.hero__scroll-cue:hover { border-color: var(--accent); color: var(--accent-light); }
@keyframes heroScrollCue { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

@media (max-width: 900px) {
  .hero { padding: 140px 0 80px; }
  .hero__frame { display: none; }
  .hero__stats { gap: 24px; }
}

/* ============ MARQUEE ============ */
.marquee { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; padding: 36px 0; background: var(--bg-alt); }
.marquee__track { display: flex; gap: 64px; width: max-content; animation: marqueeScroll 32s linear infinite; }
.marquee__track:hover { animation-play-state: paused; }
.marquee__logo { height: 54px; width: auto; filter: brightness(0) invert(1); opacity: 0.45; flex-shrink: 0; transition: opacity 0.25s; }
.marquee__logo:hover { opacity: 0.85; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ SECTIONS ============ */
.section { padding: 120px 0; }
.section--dark { background: var(--bg-alt); }
.section h2 { margin-top: 4px; }

/* contained banner image (used across text sections) */
.section-banner {
  position: relative; margin-top: 40px; height: 340px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  box-shadow: 0 24px 48px -30px rgba(0,0,0,0.6);
}
.section-banner img { position: absolute; left: 0; top: -15%; width: 100%; height: 130%; object-fit: cover; display: block; }

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .section-banner { height: 160px; margin-top: 24px; }
}

/* criteria grid */
.criteria-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.criteria-card { padding: 36px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); }
.criteria-card--yes { border-color: rgba(59,130,246,0.35); }
.criteria-card h3 { margin-bottom: 8px; }
.criteria-card--yes h3 { color: var(--accent-light); }
.criteria-card--no h3 { color: var(--text-dim); }

.plain-list { margin-top: 20px; }
.plain-list li { padding: 12px 0 12px 30px; position: relative; color: var(--text-muted); border-top: 1px solid var(--border); font-size: 0.95rem; }
.plain-list li:first-child { border-top: none; }
.plain-list--yes li::before { content: '✓'; position: absolute; left: 0; color: var(--accent-light); font-weight: 700; }
.plain-list--no li::before { content: '✕'; position: absolute; left: 0; color: var(--text-dim); font-weight: 700; }

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

/* compare table */
.compare-table { margin-top: 48px; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.compare-table__row { display: grid; grid-template-columns: 1.2fr 1fr 1fr; }
.compare-table__row:not(:last-child) { border-bottom: 1px solid var(--border); }
.compare-table__row > div { padding: 18px 24px; font-size: 0.92rem; }
.compare-table__row > div:first-child { color: var(--text-dim); font-weight: 500; }
.compare-table__row--head { background: var(--surface); font-weight: 700; }
.compare-table__row--head > div:first-child { color: transparent; }
.compare-table__row .is-us { background: rgba(59,130,246,0.08); color: var(--accent-light); font-weight: 600; }
.compare-table__row--head .is-us { color: var(--accent-light); background: rgba(59,130,246,0.14); }

@media (max-width: 640px) {
  .compare-table__row { grid-template-columns: 1fr 1fr; }
  .compare-table__row > div:first-child { display: none; }
}

/* steps: horizontal pinned scroll on desktop, native swipe strip on mobile */
.steps-pin { position: relative; margin-top: 24px; }
.steps-track { display: flex; align-items: stretch; }
.step-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 52px 40px; min-height: 320px; position: relative; overflow: hidden; flex-shrink: 0;
  transition: border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  will-change: transform, opacity;
}
.step-card:hover { border-color: var(--accent); box-shadow: 0 24px 48px -28px rgba(0,0,0,0.55); }
.step-card__bgnum {
  position: absolute; top: -26px; right: 10px; font-family: var(--font-display); font-size: 7.5rem; font-weight: 600;
  color: var(--surface-2); z-index: 0; line-height: 1; user-select: none;
}
.step-card__icon {
  position: relative; z-index: 1; width: 72px; height: 72px; border-radius: 50%;
  background: rgba(59,130,246,0.12); color: var(--accent-light);
  display: flex; align-items: center; justify-content: center; margin-bottom: 32px;
  transition: background 0.35s, color 0.35s;
}
.step-card__icon svg { width: 30px; height: 30px; }
.step-card:hover .step-card__icon { background: var(--accent); color: var(--on-accent); }
.step-card h3 { position: relative; z-index: 1; font-size: 1.45rem; margin-bottom: 14px; }
.step-card p { position: relative; z-index: 1; color: var(--text-muted); font-size: 1rem; }
.step-card__arrow { display: flex; align-items: center; justify-content: center; color: var(--border); flex-shrink: 0; width: 64px; }
.step-card__arrow svg { width: 34px; height: 34px; }

.steps-pin__fade { display: none; }
.steps-pin__progress { display: none; }

@media (min-width: 901px) {
  .steps-pin { height: 100vh; overflow: hidden; display: flex; align-items: center; }
  .steps-track { gap: 8px; padding-left: 8vw; will-change: transform; }
  .step-card { width: min(420px, 34vw); }
  .steps-track__end { flex: 0 0 8vw; }

  /* edges dissolve into the page background instead of hard-clipping the cards */
  .steps-pin__fade {
    display: block; position: absolute; inset: 0; pointer-events: none; z-index: 2;
    background:
      linear-gradient(90deg, var(--bg) 0%, transparent 6%, transparent 94%, var(--bg) 100%),
      linear-gradient(180deg, transparent 80%, var(--bg) 100%);
  }

  .steps-pin__progress {
    display: block; position: absolute; left: 8vw; right: 8vw; bottom: 56px; z-index: 3;
    height: 2px; background: var(--border);
  }
  .steps-pin__progress-fill { height: 100%; width: 0%; background: var(--accent); }
}
@media (max-width: 900px) { .steps-track__end { display: none; } }

@media (max-width: 900px) {
  /* extra scroll runway: the sticky pin holds in place while the cards scroll through it,
     then releases once the user has scrolled past this whole (taller) container */
  .steps-scroller { position: relative; height: 220vh; }
  .steps-sticky { position: sticky; top: 64px; padding-top: 16px; }

  .steps-track {
    gap: 16px; padding: 8px 24px 24px; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none;
  }
  .steps-track::-webkit-scrollbar { display: none; }
  .step-card { width: 82vw; }
  .step-card__arrow { display: none; }
}

/* compare (now part of split, minimal extra rules) */
#comparatie .btn { margin-top: 32px; }

/* stats bar */
.stats-bar { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 56px 0; }
.stats-bar__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stats-bar strong { display: block; font-family: var(--font-display); font-size: 2.6rem; color: var(--accent-light); }
.stats-bar span { color: var(--text-dim); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; }
@media (max-width: 768px) { .stats-bar__grid { grid-template-columns: 1fr 1fr; } }

/* testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.testimonial-card { padding: 32px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); }
.testimonial-card__stars { color: var(--accent-light); letter-spacing: 3px; margin-bottom: 18px; font-size: 0.9rem; }
.testimonial-card p { font-size: 0.98rem; line-height: 1.55; margin-bottom: 22px; color: var(--text); }
.testimonial-card strong { display: block; font-size: 0.92rem; }
.testimonial-card span { color: var(--text-dim); font-size: 0.82rem; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: rgba(59,130,246,0.14); color: var(--accent-light);
  display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700;
}

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

/* faq */
.faq { margin-top: 56px; max-width: 780px; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 24px 0; text-align: left; font-size: 1.05rem; font-weight: 500; }
.faq__q span { font-size: 1.4rem; color: var(--accent-light); transition: transform 0.35s var(--ease-out); flex-shrink: 0; margin-left: 20px; }
.faq__item.is-open .faq__q span { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out); }
.faq__a p { padding-bottom: 24px; color: var(--text-muted); max-width: 640px; }

/* final CTA */
.final-cta { padding: 100px 0; }
.final-cta__panel {
  text-align: center; max-width: 780px; margin: 0 auto; padding: 64px 48px;
  border-radius: var(--radius); border: 1px solid var(--border);
  background: radial-gradient(700px 300px at 50% 0%, rgba(59,130,246,0.12), transparent 70%), var(--surface);
}
.final-cta__panel h2 { margin-bottom: 32px; }
.final-cta .hero__cta { justify-content: center; }

/* zoom moment (pinned scale-up image) */
.zoom-media { height: 220vh; position: relative; }
@media (max-width: 900px) { .zoom-media { display: none; } }
.zoom-media__pin {
  position: sticky; top: 0; height: 100vh; display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--bg);
}
.zoom-media__frame {
  position: absolute; inset: 0; overflow: hidden; border-radius: 24px;
}
.zoom-media__frame img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.75); }
.zoom-media__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(11,18,32,0.92) 0%, rgba(11,18,32,0.45) 22%, rgba(11,18,32,0.15) 40%, transparent 55%),
    linear-gradient(180deg, rgba(11,18,32,0.55) 0%, transparent 30%);
}
.zoom-media__caption {
  position: absolute; z-index: 1; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 100%; text-align: center; padding: 0 24px;
  color: #fff; max-width: 900px; font-size: clamp(1.8rem, 4.2vw, 3rem);
}

/* rotating circular badge: replaces the caption as the image finishes zooming */
.zoom-media__big {
  position: absolute; z-index: 1; left: 50%; top: 38%; transform: translate(-50%, -50%);
  width: 100%; max-width: 1500px; padding: 0 24px; text-align: center; opacity: 0;
  font-weight: 800; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1.05;
  font-size: clamp(2.2rem, 7.2vw, 6.4rem);
  color: transparent; -webkit-text-stroke: 1.5px #fff; text-stroke: 1.5px #fff;
  transition: -webkit-text-stroke-width 0.3s, color 0.3s;
}
.zoom-media__big:hover { color: rgba(255,255,255,0.08); -webkit-text-stroke-width: 2px; }

.zoom-media__badge {
  position: absolute; z-index: 1; left: 50%; top: 68%; transform: translate(-50%, -50%);
  width: 200px; height: 200px; opacity: 0; color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.zoom-media__badge-ring { position: absolute; inset: 0; width: 100%; height: 100%; }
.zoom-media__badge-ring text { font-size: 10.5px; letter-spacing: 0.05em; fill: rgba(255,255,255,0.85); text-transform: uppercase; }
.zoom-media__badge-icon {
  position: relative; width: 60px; height: 60px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center; background: rgba(11,18,32,0.35); backdrop-filter: blur(4px);
  transition: background 0.3s, transform 0.3s;
}
.zoom-media__badge:hover .zoom-media__badge-icon { background: var(--accent); transform: scale(1.08); }
@media (max-width: 700px) {
  .zoom-media__big { top: 32%; font-size: clamp(1.5rem, 7vw, 2.4rem); }
  .zoom-media__badge { top: 66%; width: 130px; height: 130px; }
  .zoom-media__badge-icon { width: 42px; height: 42px; }
}

.zoom-media__bar {
  position: absolute; z-index: 1; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  padding: 48px 64px; opacity: 0;
}
.zoom-media__stats { display: flex; gap: 56px; }
.zoom-media__stats strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: #fff; }
.zoom-media__stats span { font-size: 0.78rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.05em; }

@media (max-width: 900px) {
  .zoom-media__bar { padding: 32px 24px; }
  .zoom-media__stats { gap: 28px; }
  .zoom-media__stats strong { font-size: 1.5rem; }
}

/* footer */
.footer { padding: 48px 0; border-top: 1px solid var(--border); }
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer__links { display: flex; gap: 24px; font-size: 0.85rem; color: var(--text-muted); }
.footer__links a:hover { color: var(--accent-light); }
.footer__copy { font-size: 0.8rem; color: var(--text-dim); width: 100%; text-align: center; margin-top: 8px; }

/* whatsapp float */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,0.5);
  animation: floatPulse 2.4s infinite;
}
@keyframes floatPulse { 0%, 100% { box-shadow: 0 10px 30px -8px rgba(37,211,102,0.5); } 50% { box-shadow: 0 10px 30px -8px rgba(37,211,102,0.9), 0 0 0 8px rgba(37,211,102,0.12); } }

/* reveal animation base state (JS adds .is-visible) */
[data-reveal] { opacity: 0; transform: translateY(28px); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }

/* word-mask text reveal (h1/h2 split into words by JS) */
.word-mask { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.1em; margin-bottom: -0.1em; }
.word { display: inline-block; transform: translateY(0); will-change: transform; }

/* big scrolling text marquee */
.text-marquee { overflow: hidden; padding: 30px 0; border-bottom: 1px solid var(--border); background: var(--bg-alt); }
.text-marquee__track { display: flex; align-items: center; width: max-content; animation: marqueeScroll 28s linear infinite; }
.text-marquee__item {
  display: flex; align-items: center; gap: 40px; padding: 0 20px;
  font-family: var(--font-display); font-weight: 800; font-size: clamp(1.3rem, 3vw, 2.1rem);
  text-transform: uppercase; letter-spacing: -0.01em; white-space: nowrap; color: var(--text);
}
.text-marquee__item span { color: var(--accent); font-size: 0.8em; }

/* custom cursor dot (scales up on interactive hover) */
.cursor-dot {
  position: fixed; top: 0; left: 0; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-light); pointer-events: none; z-index: 201; will-change: transform;
}
@media (max-width: 768px) { .cursor-dot { display: none; } }

/* final CTA ambient pulse */
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59,130,246,0.18); }
  50% { box-shadow: 0 0 70px 12px rgba(59,130,246,0.22); }
}
.final-cta__panel { animation: ctaGlow 3.2s ease-in-out infinite; }