/* ==========================================================================
   WANAMAKER — style.css v2
   ========================================================================== */

/* --------------------------------------------------------------------------
   FONTS
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/outfit-regular.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/outfit-bold.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --------------------------------------------------------------------------
   DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  --ink:        #141410;
  --paper:      #F2F2EE;
  --lime:       #D6FA33;
  --ink-70:     rgba(20, 20, 16, 0.70);
  --paper-70:   rgba(242, 242, 238, 0.70);
  --rule:       #141410;

  --s1: 0.5rem;
  --s2: 1rem;
  --s3: 1.5rem;
  --s4: 2rem;
  --s5: 3rem;
  --s6: 4rem;
  --s7: 6rem;
  --s8: 8rem;

  --fs-h1:      clamp(2.75rem, 7vw, 6rem);
  --fs-h2:      clamp(2rem, 4.5vw, 3.75rem);
  --fs-stat:    clamp(2.5rem, 6vw, 5rem);
  --fs-h3:      clamp(1.25rem, 2vw, 1.75rem);
  --fs-body:    clamp(1rem, 1.15vw, 1.1875rem);
  --fs-lead:    clamp(1.125rem, 1.6vw, 1.4375rem);
  --fs-eyebrow: 0.75rem;
  --fs-small:   0.875rem;
  --fs-micro:   0.75rem;

  --font: 'Outfit', 'Helvetica Neue', Arial, sans-serif;

  --container-max: 1440px;
  --container-padding: clamp(1.5rem, 5vw, 6rem);

  --section-py: var(--s7);
  --tx: 180ms ease-out;
}

/* --------------------------------------------------------------------------
   RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* --------------------------------------------------------------------------
   SKIP LINK
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--s2);
  z-index: 9999;
  padding: var(--s1) var(--s3);
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
  font-size: var(--fs-body);
  outline: none;
  transition: top var(--tx);
}
.skip-link:focus { top: var(--s2); }

/* --------------------------------------------------------------------------
   CONTAINER
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

/* --------------------------------------------------------------------------
   HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--paper);
  border-bottom: 1px solid var(--rule);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  padding-block: var(--s2);
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  min-height: 44px;
  flex-shrink: 0;
}

.header-logo img {
  height: 28px;
  width: auto;
}

.footer-logo {
  height: 20px;
  width: auto;
  display: block;
  margin-bottom: var(--s3);
}

.header-right {
  display: flex;
  align-items: center;
  gap: var(--s2);
}

/* --------------------------------------------------------------------------
   MAIN NAVIGATION (desktop)
   -------------------------------------------------------------------------- */
.site-nav {
  display: none;
  align-items: center;
  gap: var(--s3);
}

@media (min-width: 768px) {
  .site-nav { display: flex; }
}

.nav-link {
  font-size: var(--fs-small);
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color var(--tx);
  padding-bottom: 2px;
}

.nav-link:hover { color: var(--ink-70); }

.nav-link[aria-current="page"] {
  font-weight: 700;
  border-bottom: 2px solid var(--lime);
}

.nav-link:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   LANG SWITCH
   -------------------------------------------------------------------------- */
.lang-switch {
  display: flex;
  align-items: center;
  gap: var(--s1);
  font-size: var(--fs-small);
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 44px;
  padding: 0 2px;
  color: var(--ink-70);
  transition: color var(--tx);
}

.lang-switch a:hover { color: var(--ink); }

.lang-switch a:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.lang-switch a[aria-current="true"] {
  font-weight: 700;
  color: var(--ink);
}

.lang-switch .sep {
  color: var(--ink-70);
  user-select: none;
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: var(--s1) var(--s3);
  font-family: var(--font);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--ink);
  background-color: var(--lime);
  color: var(--ink);
  cursor: pointer;
  transition: background-color var(--tx), color var(--tx);
}

.btn:hover { background-color: var(--ink); color: var(--lime); }

.btn:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.btn:active { opacity: 0.85; }

.btn-inv {
  background-color: var(--lime);
  color: var(--ink);
  border: 2px solid var(--lime);
}

.btn-inv:hover { background-color: transparent; color: var(--lime); }

/* Header CTA hidden on mobile */
.header-cta { display: none; }

@media (min-width: 768px) {
  .header-cta { display: inline-flex; }
}

/* --------------------------------------------------------------------------
   HAMBURGER
   -------------------------------------------------------------------------- */
.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
  flex-shrink: 0;
}

.hamburger:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

@media (min-width: 768px) {
  .hamburger { display: none; }
}

/* --------------------------------------------------------------------------
   MOBILE OVERLAY
   -------------------------------------------------------------------------- */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background-color: var(--ink);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  padding: var(--s3) var(--container-padding) var(--s5);
  visibility: hidden;
  opacity: 0;
  transition: opacity 180ms ease-out, visibility 0s linear 180ms;
}

.nav-overlay.is-open {
  visibility: visible;
  opacity: 1;
  transition: opacity 180ms ease-out, visibility 0s linear 0s;
}

@media (prefers-reduced-motion: reduce) {
  .nav-overlay { transition: none; }
  .nav-overlay.is-open { transition: none; }
}

.nav-overlay-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 60px;
}

.nav-overlay-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--paper);
}

.nav-overlay-close:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.nav-overlay-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s2);
  padding-block: var(--s4);
}

.nav-overlay-link {
  font-size: clamp(2.5rem, 11vw, 4.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--paper);
  text-decoration: none;
  line-height: 1;
  padding: var(--s1) 0;
  display: block;
  transition: color var(--tx);
}

.nav-overlay-link:hover,
.nav-overlay-link[aria-current="page"] {
  color: var(--lime);
}

.nav-overlay-link:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.nav-overlay-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  padding-top: var(--s4);
  border-top: 1px solid var(--paper-70);
}

.nav-overlay-lang {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--fs-small);
}

.nav-overlay-lang a {
  color: var(--paper-70);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-overlay-lang a[aria-current="true"] {
  font-weight: 700;
  color: var(--paper);
}

.nav-overlay-lang .sep { color: var(--paper-70); }

/* --------------------------------------------------------------------------
   SECTIONS — base
   -------------------------------------------------------------------------- */
.section {
  padding-block: var(--section-py);
}

@media (max-width: 639px) {
  .section { padding-block: var(--s5); }
}

.section--ink {
  background-color: var(--ink);
  color: var(--paper);
}

.section--stats {
  padding-block: 0;
}

/* --------------------------------------------------------------------------
   EYEBROW
   -------------------------------------------------------------------------- */
.eyebrow {
  display: block;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-70);
  margin-bottom: var(--s3);
}

.section--ink .eyebrow { color: var(--paper-70); }

/* --------------------------------------------------------------------------
   HEADINGS
   -------------------------------------------------------------------------- */
h1, h2 {
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.97;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }

p { max-width: 65ch; text-wrap: pretty; }

/* --------------------------------------------------------------------------
   PAGE HERO (inner pages)
   -------------------------------------------------------------------------- */
.page-hero {
  padding-top: var(--s6);
}

.page-hero .eyebrow { margin-bottom: var(--s2); }

.page-hero h1 { margin-bottom: var(--s3); }

.page-hero .lead {
  font-size: var(--fs-lead);
  line-height: 1.5;
  max-width: 52ch;
  color: var(--ink-70);
}

/* --------------------------------------------------------------------------
   S01 HERO (homepage)
   -------------------------------------------------------------------------- */
#s01-hero {
  padding-top: var(--s6);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s6);
  align-items: start;
}

@media (min-width: 1024px) {
  .hero-content {
    max-width: 680px;
  }
}

.hero-content h1 { margin-bottom: var(--s4); }

.hero-content .lead {
  font-size: var(--fs-lead);
  line-height: 1.5;
  margin-bottom: var(--s4);
  max-width: 52ch;
}

.hero-bullets {
  margin-bottom: var(--s3);
}

.hero-bullets li {
  font-size: var(--fs-lead);
  font-weight: 400;
  line-height: 1.6;
  max-width: 52ch;
  margin-bottom: var(--s3);
}

.hero-bullets li:first-child { font-weight: 700; }

.hero-closing {
  font-size: var(--fs-body);
  line-height: 1.6;
  max-width: 52ch;
  color: var(--ink-70);
  margin-bottom: var(--s4);
}

/* --------------------------------------------------------------------------
   SIGNATURE ELEMENT
   -------------------------------------------------------------------------- */
.signature-wrap { width: 100%; }

.signature {
  width: 100%;
  border: 1px solid var(--rule);
  padding: var(--s3);
  background-color: var(--paper);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.sig-brief {
  font-family: 'Courier New', 'Courier', monospace;
  font-size: var(--fs-micro);
  color: var(--ink-70);
  line-height: 1.6;
  padding-bottom: var(--s2);
}

.sig-frames {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  flex: 1;
}

.sig-frame {
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
  background-color: transparent;
  transition: none;
}

.sig-frame--11  { aspect-ratio: 1 / 1; }
.sig-frame--916 { aspect-ratio: 9 / 16; max-height: 160px; }
.sig-frame--169 { aspect-ratio: 16 / 9; }
.sig-frame--banner { aspect-ratio: 728 / 90; }
.sig-frame--mobile { aspect-ratio: 320 / 50; }

.sig-frames-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s2);
}

.sig-frame-fill {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--s2);
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
}

.sig-frame-fill--ink  { background-color: var(--ink); color: var(--paper); }
.sig-frame-fill--lime { background-color: var(--lime); color: var(--ink); }

.sig-frame-text {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
  opacity: 0.7;
}

.sig-frame-mark {
  width: 20px;
  height: 6px;
  background-color: currentColor;
  opacity: 0.5;
  margin-top: auto;
}

.sig-frame.is-filled .sig-frame-fill {
  opacity: 1;
  transform: scaleY(1);
  transition: opacity 120ms ease-out, transform 160ms ease-out;
}

@media (prefers-reduced-motion: reduce) {
  .sig-frame.is-filled .sig-frame-fill { transition: none; }
  .sig-frame-fill { transition: none; }
}

/* --------------------------------------------------------------------------
   CIJFERSTRIP (homepage — statistieken)
   -------------------------------------------------------------------------- */
.cijferstrip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
}

@media (max-width: 639px) {
  .cijferstrip {
    grid-template-columns: 1fr;
    gap: var(--s5);
  }
}

.cijfer-number {
  display: block;
  font-size: var(--fs-stat);
  font-weight: 700;
  line-height: 0.95;
  color: var(--lime);
}

.cijfer-label {
  display: block;
  font-size: var(--fs-body);
  color: var(--paper);
  max-width: 20ch;
  margin-top: var(--s2);
}

/* --------------------------------------------------------------------------
   CONTEXTUAL TEXT LINKS (homepage sections)
   -------------------------------------------------------------------------- */
.section-ctx-link {
  display: inline-flex;
  align-items: center;
  margin-top: var(--s4);
  font-weight: 700;
  font-size: var(--fs-body);
  text-decoration: underline;
  text-decoration-color: var(--lime);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  color: inherit;
  min-height: 44px;
  transition: color var(--tx), text-decoration-thickness var(--tx);
}

.section-ctx-link:hover { text-decoration-thickness: 3px; }

.section--ink .section-ctx-link:hover {
  color: var(--lime);
  text-decoration-thickness: 2px;
}

.section-ctx-link:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   CONTACT STRIP (homepage)
   -------------------------------------------------------------------------- */
.contact-strip {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s3);
}

.contact-strip p {
  font-size: var(--fs-lead);
  color: var(--paper);
  max-width: 50ch;
}

.contact-email {
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--lime);
  text-decoration: none;
  transition: opacity var(--tx);
  display: block;
}

.contact-email:hover { opacity: 0.75; }

.contact-email:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   FIVE STEPS (platform page)
   -------------------------------------------------------------------------- */
.section-header {
  margin-bottom: var(--s6);
}

.section-header h2 { margin-top: var(--s2); }

.steps-grid {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

.page-hero .steps-grid {
  margin-top: var(--s5);
}

.step {
  display: grid;
  grid-template-columns: 5rem 14rem minmax(0, 1fr);
  align-items: start;
  column-gap: var(--s3);
}

@media (max-width: 767px) {
  .steps-grid { gap: var(--s5); }

  .step {
    display: flex;
    flex-direction: column;
    gap: var(--s2);
  }
}

.step-number {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--lime);
  letter-spacing: -0.02em;
}

.step h3 { margin-bottom: 0; }

.step p {
  font-size: var(--fs-body);
  color: var(--ink);
  max-width: 55ch;
}

/* --------------------------------------------------------------------------
   DE KERN (platform page)
   -------------------------------------------------------------------------- */
.kern-intro {
  margin-bottom: var(--s5);
  max-width: 55ch;
}

.kern-intro h2 {
  margin-top: var(--s2);
  margin-bottom: var(--s3);
}

.kern-list {
  list-style: disc;
  list-style-position: outside;
  padding-left: 1.25em;
}

.kern-list li {
  font-size: var(--fs-body);
  line-height: 1.6;
  max-width: 65ch;
  color: var(--paper);
  margin-bottom: var(--s2);
}

.kern-accent {
  margin-top: var(--s5);
  padding: var(--s3) var(--s4);
  background-color: rgba(214, 250, 51, 0.07);
  font-size: var(--fs-body);
  line-height: 1.6;
  max-width: 60ch;
  color: var(--paper);
}

/* --------------------------------------------------------------------------
   UITBREIDINGEN (platform page)
   -------------------------------------------------------------------------- */
.ext-intro {
  margin-bottom: var(--s5);
}

.ext-intro h2 {
  margin-top: var(--s2);
  margin-bottom: var(--s3);
}

.ext-intro p { color: var(--ink-70); }

.ext-groups { }

.ext-group {
  padding: var(--s4) 0;
}

@media (min-width: 640px) {
  .ext-group-inner {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: var(--s4);
    align-items: start;
  }
}

.ext-number {
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--lime);
  line-height: 1;
  margin-bottom: var(--s2);
  display: block;
}

@media (min-width: 640px) {
  .ext-number { margin-bottom: 0; }
}

.ext-group h3 { margin-bottom: var(--s2); }

/* Extension labels */
.ext-labels {
  display: flex;
  flex-direction: column;
  gap: var(--s1);
  margin-top: var(--s2);
}

@media (min-width: 640px) {
  .ext-labels {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
  }
}

.ext-label {
  font-size: var(--fs-body);
  color: var(--ink-70);
}

@media (min-width: 640px) {
  .ext-label + .ext-label::before {
    content: ' / ';
    color: var(--ink-70);
    margin-inline: 0.25em;
  }
}

/* --------------------------------------------------------------------------
   DEVELOPMENT (ontwikkeling page)
   -------------------------------------------------------------------------- */
.dev-list {
  list-style: disc;
  list-style-position: outside;
  padding-left: 1.25em;
}

.dev-list li {
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--paper);
  max-width: 65ch;
  margin-bottom: var(--s2);
}

.section-text-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  margin-top: var(--s5);
  font-size: var(--fs-body);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  min-height: 44px;
  color: var(--paper);
  transition: color var(--tx);
}

.section-text-link:hover { color: var(--paper-70); }

.section-text-link:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   PRICING (prijsmodel page)
   -------------------------------------------------------------------------- */
.pricing-intro { margin-bottom: var(--s5); }

.pricing-intro h2 {
  margin-top: var(--s2);
  margin-bottom: var(--s3);
}

.pricing-list {
  list-style: disc;
  list-style-position: outside;
  padding-left: 1.25em;
}

.pricing-list li {
  font-size: var(--fs-body);
  line-height: 1.6;
  max-width: 65ch;
  margin-bottom: var(--s2);
}

.pricing-price {
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--ink);
  margin-top: var(--s4);
  margin-bottom: var(--s2);
  max-width: 52ch;
}

.pricing-meta {
  font-size: var(--fs-body);
  color: var(--ink-70);
  margin-top: var(--s2);
  max-width: 60ch;
}

.pricing-comparison {
  font-size: var(--fs-body);
  color: var(--ink-70);
  margin-top: var(--s1);
  margin-bottom: var(--s4);
  max-width: 60ch;
}

.section--ink .pricing-price      { color: var(--paper); }
.section--ink .pricing-comparison { color: var(--paper-70); }
.section--ink .pricing-meta       { color: var(--paper-70); }
.section--ink .lead               { color: var(--paper); }
.section--ink p                   { color: var(--paper); }
.section--ink .step p             { color: var(--paper); }
.section--ink .container > p      { margin-bottom: var(--s3); }

/* --------------------------------------------------------------------------
   CALCULATION BLOCK (pricing page)
   -------------------------------------------------------------------------- */
.calc-intro { margin-bottom: var(--s5); }

.calc-intro h2 { margin-top: var(--s2); }

.calc-block {
  margin-bottom: var(--s4);
  max-width: 46ch;
}

.calc-entry {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--s4);
  padding: var(--s2) 0;
  border-bottom: 1px solid var(--paper-70);
  font-size: var(--fs-body);
  color: var(--paper);
  line-height: 1.6;
}

.calc-entry--accent {
  color: var(--lime);
  font-weight: 700;
}

.calc-divider {
  height: 2px;
  background-color: var(--paper-70);
  margin: var(--s2) 0;
}

.calc-divider--lime { background-color: var(--lime); }

.calc-result {
  padding-top: var(--s3);
}

.calc-result-main {
  font-size: var(--fs-h3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--lime);
  line-height: 1.1;
}

.calc-result-sub {
  margin-top: var(--s1);
  font-size: var(--fs-body);
  color: var(--paper);
  line-height: 1.6;
}

.calc-footnote {
  margin-top: var(--s4);
  font-size: var(--fs-micro);
  color: var(--paper-70);
  max-width: 50ch;
  line-height: 1.6;
}

.section-note {
  margin-top: var(--s5);
  font-size: var(--fs-body);
  color: var(--ink-70);
  max-width: 60ch;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   VOOR WIE (platform page + homepage)
   -------------------------------------------------------------------------- */
.voor-wie p {
  margin-top: var(--s3);
  font-size: var(--fs-body);
  color: var(--ink-70);
}

.section--ink .voor-wie p { color: var(--paper-70); }

/* --------------------------------------------------------------------------
   ABOUT TEXT & TEAM PHOTOS (over ons page)
   -------------------------------------------------------------------------- */
.about-intro { margin-bottom: var(--s5); }

.about-intro h2 {
  margin-top: var(--s2);
  margin-bottom: var(--s4);
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  max-width: 65ch;
  margin-bottom: var(--s7);
}

.about-text p {
  font-size: var(--fs-body);
  line-height: 1.6;
}

.team-names {
  padding-top: var(--s5);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.team-name-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5ch var(--s2);
}

.team-name {
  font-size: var(--fs-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.team-role {
  font-size: var(--fs-small);
  color: var(--ink-70);
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--paper);
  border-top: 1px solid var(--rule);
  padding-block: var(--s6);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--s5);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s1) var(--s4);
}

.footer-nav a {
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color var(--tx);
}

.footer-nav a:hover { color: var(--ink-70); }

.footer-nav a:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.footer-email {
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--tx);
  display: inline-block;
  margin-bottom: var(--s2);
}

.footer-email:hover { color: var(--ink-70); }

.footer-email:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.footer-links {
  display: flex;
  gap: var(--s3);
  flex-wrap: wrap;
  font-size: var(--fs-small);
}

.footer-links a {
  color: var(--ink-70);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--tx);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover { color: var(--ink); }

.footer-links a:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.footer-credit {
  font-size: var(--fs-micro);
  color: var(--ink-70);
  line-height: 1.6;
  padding-top: var(--s4);
  border-top: 1px solid var(--rule);
}

/* --------------------------------------------------------------------------
   SCROLL FADE
   -------------------------------------------------------------------------- */
.fade-in {
  opacity: 1;
  transform: none;
  transition: opacity 400ms ease-out, transform 400ms ease-out;
}

.js-anim .fade-in {
  opacity: 0;
  transform: translateY(12px);
}

.js-anim .fade-in.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
}

/* --------------------------------------------------------------------------
   LEGAL PAGES
   -------------------------------------------------------------------------- */
.legal-content {
  padding-block: var(--s7);
  max-width: 65ch;
}

@media (max-width: 639px) {
  .legal-content { padding-block: var(--s5); }
}

.legal-content h1 { font-size: var(--fs-h2); margin-bottom: var(--s5); }
.legal-content h2 { font-size: var(--fs-h3); margin-top: var(--s5); margin-bottom: var(--s2); }
.legal-content p { margin-bottom: var(--s3); line-height: 1.6; }
.legal-content ul { list-style: disc; padding-left: var(--s4); margin-bottom: var(--s3); }
.legal-content ul li { margin-bottom: var(--s1); line-height: 1.6; }

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--s5);
  min-height: 44px;
  border-bottom: 2px solid var(--ink);
  transition: color var(--tx), border-color var(--tx);
}

.legal-back:hover { color: var(--ink-70); border-color: var(--ink-70); }

.legal-back:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   404 PAGE
   -------------------------------------------------------------------------- */
.page-404 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: var(--s7);
}

.page-404 .eyebrow { margin-bottom: var(--s3); }
.page-404 h1 { font-size: var(--fs-h2); margin-bottom: var(--s4); }
.page-404 p { margin-bottom: var(--s4); color: var(--ink-70); }

/* --------------------------------------------------------------------------
   UTILITIES
   -------------------------------------------------------------------------- */
.u-measure-lead { max-width: 52ch; }
.u-mb-3         { margin-bottom: var(--s3); }
.u-mt-4         { margin-top: var(--s4); }
.u-mt-5         { margin-top: var(--s5); }

.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;
}

/* --------------------------------------------------------------------------
   VERTICALS (homepage — waar wij het vak kennen)
   -------------------------------------------------------------------------- */
.verticals-lead {
  margin-top: var(--s3);
  font-size: var(--fs-body);
  color: var(--ink-70);
  max-width: 65ch;
  margin-bottom: var(--s6);
}

.verticals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s6);
}

@media (min-width: 768px) {
  .verticals-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s7);
  }
}

.vertical-col h3 {
  margin-bottom: var(--s4);
}

.vertical-col ul {
  list-style: disc;
  list-style-position: outside;
  padding-left: 1.25em;
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.vertical-col ul li {
  font-size: var(--fs-body);
  line-height: 1.6;
  max-width: 45ch;
}

/* --------------------------------------------------------------------------
   VISIT CTA (homepage — liever eerst een gesprek)
   -------------------------------------------------------------------------- */
.visit-cta h2 {
  margin-bottom: var(--s4);
}

.visit-cta p {
  font-size: var(--fs-body);
  color: var(--ink-70);
  max-width: 55ch;
  margin-bottom: var(--s5);
}

/* --------------------------------------------------------------------------
   WAAROM WIJ (homepage ink section)
   -------------------------------------------------------------------------- */
.waarom-wij h2 {
  margin-bottom: var(--s5);
}

/* --------------------------------------------------------------------------
   TEAM WISECRACK
   -------------------------------------------------------------------------- */
.team-wisecrack {
  margin-top: var(--s4);
  font-size: var(--fs-small);
  color: var(--ink-70);
  max-width: 55ch;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   CREDITS WHY (prijsmodel — waarom credits en geen uren)
   -------------------------------------------------------------------------- */
.credits-why h2 {
  margin-bottom: var(--s5);
}

.credits-why-lead {
  font-size: var(--fs-lead);
  line-height: 1.5;
  max-width: 52ch;
  color: var(--ink);
  margin-bottom: var(--s4);
}

.credits-why-body {
  font-size: var(--fs-body);
  line-height: 1.6;
  max-width: 65ch;
  color: var(--ink);
  margin-bottom: var(--s3);
}

/* --------------------------------------------------------------------------
   FEATURE COMPARE (prijsmodel — een nieuwe feature, twee manieren)
   -------------------------------------------------------------------------- */
.feature-compare .eyebrow {
  margin-bottom: var(--s2);
}

.feature-compare h2 {
  margin-bottom: var(--s4);
}

.compare-intro {
  font-size: var(--fs-body);
  color: var(--paper-70);
  max-width: 60ch;
  margin-bottom: var(--s5);
}

/* Table */
.compare-table-wrap {
  margin-top: var(--s5);
  margin-bottom: var(--s6);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-body);
  color: var(--paper);
}

.compare-table thead th {
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-70);
  padding: 0 var(--s4) var(--s3) 0;
  text-align: left;
  border-bottom: 1px solid var(--paper-70);
}

.compare-table thead th:last-child { padding-right: 0; }

.compare-table tbody th[scope="row"],
.compare-table tbody td {
  padding: var(--s2) var(--s4) var(--s2) 0;
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}

.compare-table tbody th[scope="row"] {
  font-weight: 400;
  color: var(--paper);
}

.compare-table tbody td:last-child { padding-right: 0; }

.compare-table tbody tr.totaal-row th[scope="row"],
.compare-table tbody tr.totaal-row td {
  border-top: 1px solid var(--paper-70);
  font-weight: 700;
  padding-top: var(--s3);
}

.compare-table .col-ons {
  color: var(--lime);
}

/* Mobile table: stacked cards */
@media (max-width: 639px) {
  .compare-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .compare-table,
  .compare-table tbody,
  .compare-table tr,
  .compare-table tbody td,
  .compare-table tbody th[scope="row"] {
    display: block;
    width: 100%;
  }

  .compare-table tr {
    padding: var(--s3) 0;
    border-top: 1px solid var(--paper-70);
  }

  .compare-table tbody tr.totaal-row th[scope="row"],
  .compare-table tbody tr.totaal-row td {
    border-top: none;
    padding-top: 0;
  }

  .compare-table tr.totaal-row { border-top: 2px solid var(--paper-70); }

  .compare-table tbody th[scope="row"] {
    font-weight: 700;
    text-transform: uppercase;
    font-size: var(--fs-micro);
    letter-spacing: 0.04em;
    padding: 0 0 var(--s2) 0;
  }

  .compare-table tbody td {
    padding: 0;
    margin-bottom: var(--s2);
    font-size: var(--fs-body);
  }

  .compare-table tbody td::before {
    display: block;
    font-size: var(--fs-micro);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--paper-70);
    margin-bottom: 2px;
  }

  .compare-table td[data-label="traditioneel"]::before { content: "Traditioneel"; }
  .compare-table td[data-label="via-ons"]::before      { content: "Via ons"; }
  .compare-table td[data-label="traditional"]::before  { content: "Traditional"; }
  .compare-table td[data-label="with-us"]::before      { content: "With us"; }
}

/* Result numbers */
.compare-result {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  margin-bottom: var(--s5);
}

.compare-result-row {
  display: flex;
  flex-direction: column;
  gap: var(--s1);
}

.compare-amount {
  font-size: var(--fs-h2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.97;
  color: var(--paper);
  display: block;
}

.compare-amount--lime {
  color: var(--lime);
}

.compare-label {
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-70);
  display: block;
}

.compare-lead {
  font-size: var(--fs-lead);
  line-height: 1.5;
  max-width: 52ch;
  color: var(--paper);
  margin-bottom: var(--s6);
}

/* Mechanism */
.compare-mechanism-heading {
  font-size: var(--fs-h3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--paper);
  margin-bottom: var(--s4);
}

.compare-footnote {
  margin-top: var(--s5);
  font-size: var(--fs-micro);
  color: var(--paper-70);
  max-width: 60ch;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   CALC SECTION ON PAPER (non-working budget — paper variant)
   -------------------------------------------------------------------------- */
.calc-section--paper .calc-entry {
  color: var(--ink);
  border-bottom-color: var(--ink-70);
}

.calc-section--paper .calc-entry--accent {
  color: var(--ink);
  font-weight: 700;
}

.calc-section--paper .calc-divider {
  background-color: var(--ink-70);
}

.calc-section--paper .calc-divider--lime {
  background-color: var(--ink);
}

.calc-section--paper .calc-result-main {
  color: var(--ink);
}

.calc-section--paper .calc-result-sub {
  color: var(--ink-70);
}

.calc-section--paper .calc-footnote {
  color: var(--ink-70);
}

/* --------------------------------------------------------------------------
   COOKIE NOTICE PARODY
   -------------------------------------------------------------------------- */
.cookie-notice {
  position: fixed;
  bottom: var(--s4);
  left: var(--s4);
  max-width: 420px;
  background: var(--ink);
  color: var(--paper);
  padding: var(--s4);
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease-out;
}

.cookie-notice.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-notice-heading {
  display: block;
  font-size: var(--fs-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--paper);
  margin-bottom: var(--s2);
}

.cookie-notice-body {
  font-size: var(--fs-body);
  color: var(--paper);
  max-width: 40ch;
  line-height: 1.6;
  margin-bottom: var(--s3);
}

.cookie-notice-btn {
  display: inline-block;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font);
  font-size: var(--fs-body);
  font-weight: 700;
  border: none;
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
  padding: 0.6em 1.4em;
  line-height: 1;
}

.cookie-notice-btn:hover {
  opacity: 0.88;
}

@media (max-width: 639px) {
  .cookie-notice {
    left: 0;
    bottom: 0;
    max-width: 100%;
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   PLATFORM DEMO SECTION
   -------------------------------------------------------------------------- */
.wm-demo {
  --ink-dim: rgba(20, 20, 16, 0.45);
  --mono: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
}

.wm-demo-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding-inline: var(--container-padding);
}

.wm-demo-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.wm-demo-heading {
  font-weight: 700;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.wm-demo-channels {
  font-family: var(--mono);
  font-size: var(--fs-micro);
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: right;
  line-height: 1.6;
}

.wm-demo-split {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.wm-console {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: var(--fs-micro);
  line-height: 1.6;
  padding: 1rem;
  min-height: 280px;
  position: sticky;
  top: 5rem;
}

.wm-console-body {
  white-space: pre-wrap;
  word-break: break-all;
}

.wm-console-cursor {
  display: inline-block;
  width: 6px;
  height: 0.85em;
  background: var(--lime);
  vertical-align: text-bottom;
  animation: wm-blink 1s step-end infinite;
}

@keyframes wm-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.wm-tile-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  align-items: start;
}

.wm-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6px 8px;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.wm-tile.wm-is-visible {
  opacity: 1;
  transform: scale(1);
}

.wm-tile--ink  { background: var(--ink);  color: var(--paper); }
.wm-tile--lime { background: var(--lime); color: var(--ink); }

.wm-tile-name {
  font-weight: 700;
  font-size: var(--fs-micro);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

.wm-tile-size {
  font-family: var(--mono);
  font-size: var(--fs-micro);
  margin-top: 2px;
  opacity: 0.65;
}

.wm-tile::before {
  content: '';
  position: absolute;
  top: 7px;
  right: 7px;
  width: 5px;
  height: 5px;
  background: currentColor;
  opacity: 0.22;
}

/* Tile spans — 6-column grid */
.wm-tile--meta-feed    { grid-column: span 2; aspect-ratio: 1080 / 1350; }
.wm-tile--meta-stories { grid-column: span 2; aspect-ratio: 1080 / 1920; }
.wm-tile--tiktok       { grid-column: span 2; aspect-ratio: 1080 / 1920; }
.wm-tile--youtube      { grid-column: span 6; aspect-ratio: 1920 / 1080; }
.wm-tile--linkedin     { grid-column: span 6; aspect-ratio: 1200 / 627; }
.wm-tile--leaderboard  { grid-column: span 6; aspect-ratio: 728 / 90; min-height: 38px; max-width: 728px; width: 100%; }
.wm-tile--mobile       { grid-column: span 6; aspect-ratio: 320 / 50; min-height: 28px; max-width: 320px; width: 100%; }

/* Ticker */
.wm-ticker-section {
  margin-top: 2.5rem;
  border-top: 1px solid var(--ink);
  padding: 0.625rem 0 0.75rem;
  overflow: hidden;
}

.wm-ticker-section-label {
  font-family: var(--mono);
  font-size: var(--fs-micro);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
  padding: 0 var(--container-padding);
  margin-bottom: 0.375rem;
}

.wm-ticker-row {
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 28px;
  margin-bottom: 2px;
}

.wm-ticker-row:last-child { margin-bottom: 0; }

.wm-ticker-track {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  flex-shrink: 0;
  padding-left: 5px;
}

.wm-ticker-row--fwd .wm-ticker-track  { animation: wm-scroll-fwd 40s linear infinite; }
.wm-ticker-row--rev .wm-ticker-track  { animation: wm-scroll-rev 46s linear infinite; }
.wm-ticker-row--fwd2 .wm-ticker-track { animation: wm-scroll-fwd 53s linear infinite; }

.wm-ticker-row:hover .wm-ticker-track { animation-play-state: paused; }
.wm-demo.wm-paused .wm-ticker-track   { animation-play-state: paused; }

@keyframes wm-scroll-fwd {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes wm-scroll-rev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* Chips */
.wm-chip-group {
  display: inline-flex;
  align-items: center;
  background: var(--lime);
  color: var(--ink);
  padding: 0 10px;
  height: 22px;
  flex-shrink: 0;
}

.wm-chip-group-name {
  font-weight: 700;
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}

.wm-chip {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8px;
  height: 22px;
  border: 1px solid var(--ink);
  flex-shrink: 0;
  gap: 1px;
}

.wm-chip-name {
  font-weight: 700;
  font-size: var(--fs-micro);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--ink);
}

.wm-chip-size {
  font-family: var(--mono);
  font-size: var(--fs-micro);
  color: var(--ink-dim);
  line-height: 1;
}

.wm-chip-sep {
  display: inline-block;
  width: 16px;
  flex-shrink: 0;
}

/* Demo responsive */
@media (max-width: 720px) {
  .wm-demo-split { grid-template-columns: 1fr; }
  .wm-console { position: static; min-height: 150px; }
  .wm-tile-grid { grid-template-columns: repeat(4, 1fr); }
  .wm-tile--meta-feed    { grid-column: span 2; }
  .wm-tile--meta-stories { grid-column: span 1; }
  .wm-tile--tiktok       { grid-column: span 1; }
  .wm-tile--youtube      { grid-column: span 4; }
  .wm-tile--linkedin     { grid-column: span 4; }
  .wm-tile--leaderboard  { grid-column: span 4; max-width: 100%; min-height: 32px; }
  .wm-tile--mobile       { grid-column: span 4; max-width: 100%; min-height: 24px; }
}

@media (max-width: 480px) {
  .wm-tile-grid { grid-template-columns: repeat(3, 1fr); }
  .wm-tile--meta-feed    { grid-column: span 1; }
  .wm-tile--meta-stories { grid-column: span 1; }
  .wm-tile--tiktok       { grid-column: span 1; }
  .wm-tile--youtube      { grid-column: span 3; }
  .wm-tile--linkedin     { grid-column: span 3; }
  .wm-tile--leaderboard  { grid-column: span 3; max-width: 100%; min-height: 28px; }
  .wm-tile--mobile       { grid-column: span 3; max-width: 100%; min-height: 22px; }
  .wm-demo-head { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .wm-demo-channels { text-align: left; }
}

@media (max-width: 360px) {
  .wm-tile-grid { grid-template-columns: repeat(2, 1fr); }
  .wm-tile--meta-feed    { grid-column: span 1; }
  .wm-tile--meta-stories { grid-column: span 1; }
  .wm-tile--tiktok       { grid-column: span 2; }
  .wm-tile--youtube      { grid-column: span 2; }
  .wm-tile--linkedin     { grid-column: span 2; }
  .wm-tile--leaderboard  { grid-column: span 2; }
  .wm-tile--mobile       { grid-column: span 2; }
}

@media (prefers-reduced-motion: reduce) {
  .wm-tile {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .wm-console-cursor { animation: none; opacity: 1; }
  .wm-ticker-track   { animation: none !important; }
}
