/* =========================================================
   Vaal Consulting — Website 3.0
   PREMIUM-DARK design system (kleuren, typografie, componenten,
   glassmorphism, gradient-glow, scroll-/tekst-animaties, responsive)
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Merkkleuren */
  --blue: #001560;
  --blue-bright: #2a3fb8;
  --orange: #ED7C28;
  --orange-bright: #ff9745;

  /* Donkere oppervlakken */
  --bg: #060713;            /* pagina-achtergrond, diep navy-zwart */
  --bg-2: #0b0e20;          /* iets lichter paneel */
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.18);

  /* Tekst */
  --white: #ffffff;
  --text: #eef0f8;
  --muted: rgba(238, 240, 248, 0.66);
  --muted-2: rgba(238, 240, 248, 0.45);

  /* Typografie — Inter */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --h1: clamp(2.7rem, 6.5vw, 5.5rem);
  --h1-sm: clamp(2rem, 4.5vw, 3.75rem);
  --h3: clamp(1.35rem, 2.4vw, 1.7rem);
  --quote: clamp(1.3rem, 2.4vw, 1.9rem);
  --body: 1rem;

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 20px;
  --radius-sm: 12px;
  --section-y: clamp(4rem, 9vw, 7.5rem);

  --glow-orange: radial-gradient(circle, rgba(237,124,40,0.30) 0%, rgba(237,124,40,0) 70%);
  --glow-blue: radial-gradient(circle, rgba(42,63,184,0.32) 0%, rgba(42,63,184,0) 70%);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: var(--body);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* subtiele globale gloed bovenin */
body::before {
  content: ""; position: fixed; top: -20%; left: 50%; transform: translateX(-50%);
  width: 120vw; height: 60vh; background: var(--glow-blue); opacity: .6; pointer-events: none; z-index: 0;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); position: relative; z-index: 1; }
.section { padding-block: var(--section-y); position: relative; }
.center { text-align: center; }
.text-orange { color: var(--orange); }

.eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1.1rem; display: inline-flex; align-items: center; gap: .5rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: linear-gradient(90deg, var(--orange), transparent); }
.center .eyebrow::before { display: none; }
.lead { font-size: 1.1rem; color: var(--muted); }

/* ---------- Typografie ---------- */
h1, h2, h3, h4, h5, h6 { line-height: 1.15; font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
.h1 { font-size: var(--h1); line-height: 1.02; font-weight: 800; }
.h2 { font-size: var(--h1-sm); }
h3, .h3 { font-size: var(--h3); }
.section-title { font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.1; margin-bottom: 1rem; letter-spacing: -0.02em; }
.gradient-text { background: linear-gradient(100deg, var(--orange) 0%, var(--orange-bright) 60%, #ffd9b8 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
p + p { margin-top: 1rem; }
strong { font-weight: 700; color: var(--white); }

/* ---------- Knoppen ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem; position: relative;
  font-weight: 700; font-size: 0.97rem; padding: 0.95rem 1.7rem; border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn-primary { background: linear-gradient(100deg, var(--orange), var(--orange-bright)); color: #1a0c00; box-shadow: 0 10px 30px rgba(237,124,40,.35); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(237,124,40,.5); }
.btn-ghost { background: var(--surface); color: var(--white); border: 1px solid var(--border-strong); backdrop-filter: blur(8px); }
.btn-ghost:hover { border-color: var(--orange); background: var(--surface-2); transform: translateY(-3px); }
.btn-arrow::after { content: "→"; transition: transform .18s ease; }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ---------- Navigatie ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6, 7, 19, 0.72); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 1rem; }
.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.nav-logo img, .nav-ico { height: 36px; width: auto; }
.nav-name { font-weight: 800; font-size: 1.1rem; color: var(--white); letter-spacing: -0.02em; line-height: 1; }
@media (max-width: 420px) { .nav-name { display: none; } }
.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links a { font-weight: 500; font-size: 0.95rem; color: var(--muted); transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-right { display: flex; align-items: center; gap: 1rem; }

.lang-switch { display: flex; gap: 2px; background: var(--surface); border: 1px solid var(--border); border-radius: 999px; padding: 3px; }
.lang-switch a { font-size: 0.76rem; font-weight: 700; padding: 0.3rem 0.7rem; border-radius: 999px; color: var(--muted); }
.lang-switch a.active { background: linear-gradient(100deg, var(--orange), var(--orange-bright)); color: #1a0c00; }

.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; }
.nav-toggle span { display: block; height: 2px; width: 24px; background: var(--white); border-radius: 2px; transition: .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: flex-start;
    gap: 0; background: rgba(8,10,28,0.98); padding: 0.5rem var(--gutter) 1.5rem;
    border-bottom: 1px solid var(--border); transform: translateY(-130%); transition: transform .3s ease; height: auto;
    backdrop-filter: blur(16px);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { width: 100%; padding: 1rem 0; border-bottom: 1px solid var(--border); }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(4.5rem, 12vw, 9rem); }
.hero::before {
  content: ""; position: absolute; top: -10%; right: -5%; width: 50vw; height: 50vw;
  background: var(--glow-orange); pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("../images/hero.png"); background-size: cover; background-position: center top; background-repeat: no-repeat;
  opacity: .45; mix-blend-mode: screen; pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; text-align: center; }
.hero-badge {
  width: 104px; height: 104px; margin: 0 auto 2rem; border-radius: 26px; display: grid; place-items: center;
  background: var(--surface-2); border: 1px solid var(--border-strong); backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12); position: relative;
  animation: floaty 5s ease-in-out infinite;
}
.hero-badge img { width: 60px; height: 60px; object-fit: contain; position: relative; z-index: 1; }
.hero-badge::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 240px; height: 240px; background: var(--glow-orange); pointer-events: none; z-index: -1; filter: blur(12px); opacity: .85; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce) { .hero-badge { animation: none; } }
.hero-inner .eyebrow { justify-content: center; }
.hero-inner .eyebrow::before { display: none; }
.hero h1 { max-width: 20ch; margin-inline: auto; }
.hero-actions { justify-content: center; }
.hero h1.legacy { max-width: 18ch; }
.hero h1 em { font-style: normal; background: linear-gradient(100deg, var(--orange), var(--orange-bright)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .eyebrow { margin-top: 1.75rem; }
.hero-actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }

/* Subpagina-hero */
.page-hero { position: relative; overflow: hidden; padding-block: clamp(3.5rem, 9vw, 6rem); }
.page-hero::before { content: ""; position: absolute; top: -30%; left: 50%; transform: translateX(-50%); width: 70vw; height: 60vh; background: var(--glow-orange); opacity: .7; pointer-events: none; }
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 { font-size: var(--h1); }
.page-hero p { max-width: 54ch; margin-top: 1rem; color: var(--muted); font-size: 1.15rem; }

/* ---------- Secties ---------- */
.dark, .tint { position: relative; }
.tint { background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0)); }
.tint::before, .section.glow::before {
  content: ""; position: absolute; top: 20%; left: -10%; width: 40vw; height: 40vw; background: var(--glow-blue); pointer-events: none; opacity: .5;
}

/* ---------- Intro grid ---------- */
.intro-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.intro-grid .rich p { color: var(--muted); }
@media (max-width: 800px) { .intro-grid { grid-template-columns: 1fr; } }

/* ---------- Quote ---------- */
.quote { text-align: center; max-width: 64ch; margin-inline: auto; }
.quote blockquote { font-size: var(--quote); font-weight: 700; line-height: 1.3; color: var(--white); letter-spacing: -0.01em; }
.quote .accent { color: var(--orange); }
.quote cite { display: block; margin-top: 1.5rem; font-style: normal; font-weight: 600; color: var(--muted-2); font-size: 1rem; }

/* ---------- Cards ---------- */
.cards { display: grid; gap: 1.4rem; }
.cards.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cards.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.9rem; backdrop-filter: blur(8px);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
  overflow: hidden;
}
.card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(140deg, rgba(237,124,40,.35), transparent 40%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .25s; }
.card:hover { transform: translateY(-6px); border-color: var(--border-strong); background: var(--surface-2); }
.card:hover::before { opacity: 1; }
.card-icon { width: 48px; height: 48px; border-radius: 13px; background: rgba(237,124,40,.14); border: 1px solid rgba(237,124,40,.25); color: var(--orange); display: grid; place-items: center; margin-bottom: 1.1rem; }
.card-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.card .num { font-size: 0.85rem; font-weight: 800; color: var(--orange); letter-spacing: .05em; }
.card h3 { margin: 0.5rem 0 0.6rem; font-size: 1.25rem; }
.card p { color: var(--muted); font-size: 0.97rem; }
.card.accent { background: linear-gradient(150deg, rgba(237,124,40,.16), rgba(42,63,184,.12)); border-color: rgba(237,124,40,.3); display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 850px) { .cards.cols-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .cards.cols-3, .cards.cols-2 { grid-template-columns: 1fr; } }

/* ---------- Accordion ---------- */
.accordion { max-width: 860px; margin-inline: auto; }
.acc-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 0.85rem; background: var(--surface); overflow: hidden; transition: border-color .2s; }
.acc-item.open { border-color: rgba(237,124,40,.35); }
.acc-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-align: left; padding: 1.25rem 1.4rem; font-weight: 700; font-size: 1.05rem; color: var(--white); }
.acc-trigger .ico { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; background: rgba(237,124,40,.16); color: var(--orange); display: grid; place-items: center; font-size: 1.3rem; transition: transform .25s; }
.acc-item.open .acc-trigger .ico { transform: rotate(45deg); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.acc-panel-inner { padding: 0 1.4rem 1.4rem; color: var(--muted); }
.acc-panel-inner p { color: var(--muted); }
.acc-panel-inner .check-list { margin-top: 1rem; }

/* Service-accordion (Diensten "Lees meer") */
.acc-head { display: flex; align-items: baseline; gap: .6rem; }
.acc-num { color: var(--orange); font-weight: 800; }
.acc-more { flex: 0 0 auto; font-size: .88rem; font-weight: 700; color: var(--orange); white-space: nowrap; }
.acc-more::after { content: "Lees meer"; }
.acc-item.open .acc-more::after { content: "Lees minder"; }
.sub-list { list-style: none; margin: .45rem 0 .2rem; padding-left: 1rem; }
.sub-list li { position: relative; padding-left: 1.1rem; color: var(--muted-2); font-size: .93rem; margin-top: .3rem; }
.sub-list li::before { content: "–"; position: absolute; left: 0; color: var(--orange); }

/* Mission / Vision toggle */
.mv-tabs { display: flex; gap: 1.75rem; margin-bottom: 1.25rem; }
.mv-tab { font-size: clamp(1.6rem, 3.4vw, 2.3rem); font-weight: 800; color: var(--muted-2); letter-spacing: -.02em; line-height: 1; transition: color .2s; }
.mv-tab.active { color: var(--orange); }
.mv-panel { display: none; }
.mv-panel.active { display: block; }
.mv-panel p { color: var(--muted); }

/* ---------- Check-list ---------- */
.check-list { display: grid; gap: 0.95rem; }
.check-list li { display: flex; gap: 0.8rem; align-items: flex-start; color: var(--muted); }
.check-list li::before { content: "✓"; flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(100deg, var(--orange), var(--orange-bright)); color: #1a0c00; display: grid; place-items: center; font-size: 0.8rem; font-weight: 800; margin-top: 2px; }
.check-list strong { color: var(--white); }

/* ---------- Carrousel (Top 10) ---------- */
.threats { position: relative; }
.threat-head { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 2.25rem; flex-wrap: wrap; }
.carousel { overflow: hidden; }
.carousel-track { display: flex; gap: 1.4rem; transition: transform .45s cubic-bezier(.22,.61,.36,1); }
a.threat-card { display: block; }
.threat-card {
  flex: 0 0 calc((100% - 2.8rem) / 3); min-width: 0;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.7rem; color: var(--text); transition: transform .25s, border-color .25s, background .25s; position: relative; overflow: hidden;
}
.threat-card:hover { transform: translateY(-6px); border-color: rgba(237,124,40,.4); background: var(--surface-2); }
.threat-card .meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: var(--muted-2); margin-bottom: 1rem; }
.badge { font-weight: 700; padding: 0.2rem 0.65rem; border-radius: 999px; font-size: 0.72rem; }
.badge.high { background: rgba(237,124,40,.18); color: var(--orange-bright); }
.badge.med { background: rgba(255,255,255,.10); color: var(--muted); }
.threat-card .rank { font-size: 2.6rem; font-weight: 800; line-height: 1; background: linear-gradient(100deg, var(--orange), var(--orange-bright)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.threat-card h4 { color: var(--white); font-size: 1.18rem; margin: 0.55rem 0 0.6rem; }
.threat-card p { color: var(--muted); font-size: 0.95rem; }
.threat-card .more { margin-top: 1rem; font-size: 0.85rem; font-weight: 700; color: var(--orange); display: inline-flex; gap: .35rem; }
.threat-card:hover .more::after { content: "→"; transform: translateX(3px); }
.threat-card .more::after { content: "→"; transition: transform .2s; }
.carousel-nav { display: flex; gap: 0.6rem; }
.carousel-nav button { width: 48px; height: 48px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border-strong); color: #fff; font-size: 1.2rem; display: grid; place-items: center; transition: background .15s, border-color .15s; }
.carousel-nav button:hover { background: linear-gradient(100deg, var(--orange), var(--orange-bright)); border-color: transparent; color: #1a0c00; }
@media (max-width: 850px) { .threat-card { flex-basis: calc((100% - 1.4rem) / 2); } }
@media (max-width: 560px) { .threat-card { flex-basis: 100%; } }

/* ---------- Stappen ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; margin-top: 2.5rem; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.7rem; position: relative; }
.step .n { font-size: 0.8rem; font-weight: 800; color: var(--orange); letter-spacing: .12em; text-transform: uppercase; }
.step p { color: var(--white); margin-top: .5rem; font-weight: 600; }
@media (max-width: 700px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Over mij ---------- */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem,5vw,3.5rem); align-items: start; }
.about-grid .photo { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.about-grid .photo img { width: 100%; }
.about-grid img { border-radius: var(--radius); }
.about-grid .rich p { color: var(--muted); }
.about-grid .rich h4 { margin-top: 1.6rem; color: var(--white); }
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; } }

/* ---------- Artikel (blog detail) ---------- */
.article { max-width: 780px; margin-inline: auto; }
.article .severity { display: inline-flex; align-items: center; gap: .5rem; margin-bottom: 1rem; }
.article .lead { font-size: 1.2rem; color: var(--text); margin-bottom: 2rem; }
.article-panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem; margin-top: 1.4rem; }
.article-panel h3 { font-size: 1.15rem; margin-bottom: 1rem; color: var(--orange); }
.back-link { display: inline-flex; gap: .4rem; align-items: center; color: var(--muted); font-weight: 600; margin-bottom: 1.5rem; }
.back-link:hover { color: var(--orange); }
.back-link::before { content: "←"; }

/* Blog overzicht grid */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.blog-card { display: flex; flex-direction: column; gap: .8rem; }
.blog-card .rank { font-size: 2rem; }
@media (max-width: 850px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }

/* ---------- Contactformulier ---------- */
.form-wrap { max-width: 660px; margin-inline: auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(1.6rem, 4vw, 2.75rem); backdrop-filter: blur(8px); }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.45rem; color: var(--text); }
.field input, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--white);
  padding: 0.9rem 1.05rem; border: 1px solid var(--border); border-radius: var(--radius-sm); background: rgba(255,255,255,0.03);
  transition: border-color .15s, background .15s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--orange); background: rgba(255,255,255,0.06); }
.field textarea { min-height: 150px; resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--muted-2); margin-top: 0.85rem; }
.form-note a { color: var(--orange); }
.form-status { margin-top: 1rem; font-weight: 600; }
.form-status.ok { color: #4ade80; }
.form-status.err { color: #f87171; }

/* ---------- CTA-band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: 1.5rem; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); color: var(--muted); padding-block: 3.75rem 2rem; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.footer img { height: 52px; width: auto; margin-bottom: 1.1rem; }
.footer h5 { color: #fff; font-size: 0.82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer a { color: var(--muted); display: block; padding: 0.32rem 0; transition: color .15s; }
.footer a:hover { color: var(--orange); }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.85rem; color: var(--muted-2); }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; } }

/* ---------- Animaties ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); }
.reveal.visible { opacity: 1; transform: none; }
/* gestaggerde kinderen (via JS data-stagger gezet) */
[data-stagger] > * { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-stagger].visible > * { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, [data-stagger] > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  body::before { display: none; }
}
