@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Sora:wght@600;700;800&display=swap");
@import url("https://api.fontshare.com/v2/css?f[]=clash-display@600,700&display=swap");

:root {
  --bg: #05070c;
  --bg-elevated: #0b0f1a;
  --bg-card: #0e1422;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f3f5f9;
  --text-muted: #93a0b4;
  --text-faint: #5c6779;
  --accent: #2f8cf0;
  --accent-strong: #4c9dff;
  --accent-soft: rgba(47, 140, 240, 0.14);
  --accent-glow: rgba(47, 140, 240, 0.35);
  --ok: #33d17a;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --page: 1180px;
  --g: 24px;
  --nav: 76px;
  --law-rail: 44px;
  --display: "Clash Display", "Sora", sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Inter", ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --fast: 150ms;
  --mid: 250ms;
  --space-section: 112px;
  --display-track: 0.005em;
  --display-words: 0.12em;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
body.is-booting { overflow: hidden; }
body:not(.is-ready) .hero-inner > *:not(.hero-brand):not(.hero-title) {
  opacity: 0;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--accent-strong); outline-offset: 3px; }

.wrap, .container {
  width: min(var(--page), calc(100% - 2 * var(--g)));
  margin-inline: auto;
}
#site-header { position: relative; z-index: 100; }
#site-footer { margin-top: auto; }

.skip {
  position: absolute;
  left: var(--g);
  top: -48px;
  z-index: 120;
  background: var(--accent);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
}
.skip:focus { top: 10px; }

.kicker, .meta, .eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-strong);
}
.lede {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 46ch;
  line-height: 1.75;
}
.h-lg, .h-xl {
  margin: 0 0 20px;
  font-family: var(--display);
  line-height: 1.15;
  letter-spacing: var(--display-track);
  font-weight: 700;
}
.h-lg { font-size: clamp(2rem, 4.5vw, 3.4rem); }
.h-xl { font-size: clamp(2.6rem, 6vw, 4.6rem); }

/* Boot / splash */
.boot {
  position: fixed;
  inset: 0;
  z-index: 200;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(47, 140, 240, 0.12), transparent 70%),
    var(--bg);
  display: none;
  place-items: center;
}
.boot.is-on {
  display: grid;
}
.boot[hidden] {
  display: none !important;
}
.boot-inner { width: min(420px, calc(100% - 48px)); }
.boot-brand {
  margin: 0 0 40px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 7vw, 3.6rem);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: var(--display-track);
}
.boot-kicker, .boot-line {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.boot-kicker { margin-bottom: 28px; color: var(--accent-strong); }
.boot-line { margin-top: 18px; min-height: 1.4em; }
.boot-bar { height: 2px; background: var(--border); border-radius: 2px; overflow: hidden; }
.boot-bar i { display: block; height: 100%; width: 0; background: var(--accent-strong); transition: width 0.1s linear; }
.boot-pct {
  margin: 28px 0 0;
  font-family: var(--display);
  font-size: 56px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--accent-strong);
}

/* Navbar : Fantasy style */
.site-chrome {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
}
.site-chrome .nav {
  position: relative;
  inset: auto;
}
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav);
  z-index: 100;
  background: rgba(4, 6, 10, 0.8);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(76, 157, 255, 0.12);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px var(--accent-glow));
}
.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: var(--display-track);
}
.brand-name span {
  font-family: var(--display);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent-strong);
  margin-top: 4px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-desktop > a {
  position: relative;
  padding: 6px 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--fast) ease;
  white-space: nowrap;
}
.nav-desktop > a:hover { color: var(--text); }
.nav-desktop > a.is-active { color: var(--text); }
.nav-desktop > a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--accent-strong);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}
.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--bg-elevated);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color var(--fast), color var(--fast), background var(--fast);
}
.btn-login:hover {
  border-color: var(--accent);
  color: var(--accent-strong);
  background: var(--accent-soft);
}
.btn-login svg { width: 17px; height: 17px; flex: none; }

.btn-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, rgba(47, 140, 240, 0.18), rgba(47, 140, 240, 0.06));
  color: var(--text);
  transition: border-color var(--fast), background var(--fast), transform var(--fast);
}
.btn-cart:hover {
  border-color: var(--accent-strong);
  transform: translateY(-1px);
}
.btn-cart svg { width: 18px; height: 18px; }
.btn-cart em {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--accent-strong);
  color: #fff;
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  box-shadow: 0 0 0 2px var(--bg);
}
.btn-cart em.is-on { display: inline-block; }

.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.menu-btn span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 3px auto;
  background: var(--text);
  border-radius: 1px;
}
.menu-btn.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-btn.is-open span:nth-child(2) { opacity: 0; }
.menu-btn.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(5, 7, 12, 0.96);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav) + 24px) var(--g) 48px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--mid) ease, visibility var(--mid) ease;
}
.nav-overlay.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.nav-overlay-inner {
  width: min(480px, 100%);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nav-overlay-inner a {
  font-family: var(--display);
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  font-weight: 700;
  color: var(--text-muted);
  padding: 6px 0;
}
.nav-overlay-inner a.is-active,
.nav-overlay-inner a:hover { color: var(--text); }
.nav-overlay-inner .btn { margin-top: 20px; width: max-content; }

/* Buttons */
.btn, .btn-text, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 22px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: 0;
  transition: transform var(--fast), box-shadow var(--fast), filter var(--fast), background var(--fast), border-color var(--fast);
}
.btn {
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  color: #fff;
  box-shadow: 0 10px 30px -8px var(--accent-glow);
}
.btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.btn-secondary {
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  color: var(--text);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent-strong); }
.btn-text {
  height: auto;
  padding: 0;
  background: none;
  color: var(--accent-strong);
  box-shadow: none;
}
.btn-text:hover { color: var(--text); }
.arr { display: inline-block; transition: transform var(--mid) var(--ease); }
.btn:hover .arr, .btn-text:hover .arr { transform: translateX(4px); }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 28px; justify-content: center; }

/* Media */
.media { position: relative; overflow: hidden; background: #0a0e16; border-radius: var(--radius-md); }
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.86) contrast(1.08) saturate(1.05);
}
.media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,7,12,.1), rgba(5,7,12,.45));
  pointer-events: none;
}
.media.tall { min-height: 380px; }

/* Hero : Fantasy centered */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav) + 48px) var(--g) 80px;
  text-align: center;
  overflow: hidden;
}
.hero > .media,
.hero-media {
  position: absolute;
  inset: 0;
  border-radius: 0;
  z-index: 0;
  overflow: hidden;
  background: #05070c;
}
.hero-media::after,
.hero > .media::after {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(5, 7, 12, 0.42) 0%, rgba(5, 7, 12, 0.18) 38%, rgba(5, 7, 12, 0.62) 72%, var(--bg) 100%),
    linear-gradient(90deg, rgba(5, 7, 12, 0.2) 0%, transparent 42%, transparent 58%, rgba(5, 7, 12, 0.2) 100%);
}
.hero-video,
.hero-yt,
.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border: 0;
}
.hero-yt {
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: brightness(0.78) contrast(1.08) saturate(1.08);
}
.hero-video {
  z-index: 1;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  filter: brightness(0.92) contrast(1.06) saturate(1.1);
  background: #05070c;
}
.hero-fallback {
  z-index: 0;
  filter: brightness(0.86) contrast(1.08) saturate(1.05);
}
.hero.is-video-on .hero-fallback {
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}
.hero-inner {
  position: relative;
  z-index: 3;
  width: min(var(--page), calc(100% - 2 * var(--g)));
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-brand {
  margin: 0 0 22px;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-strong);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.hero.is-intro .hero-brand {
  opacity: 1;
  transform: none;
}
.hero-title {
  margin: 0;
  min-height: 1.15em;
  font-family: var(--display);
  font-size: clamp(2.4rem, 6.4vw, 5.2rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: var(--display-track);
  text-wrap: balance;
}
.hero-title .type-text { white-space: pre-wrap; }
.hero-title .type-cursor {
  display: inline-block;
  width: 0.08em;
  height: 0.85em;
  margin-left: 0.06em;
  vertical-align: -0.05em;
  background: var(--accent-strong);
  animation: blink-cursor 0.85s steps(1) infinite;
}
.hero-title.is-done .type-cursor { opacity: 0; animation: none; transition: opacity 0.4s ease; }
@keyframes blink-cursor {
  0%, 45% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
.hero-subtitle {
  margin: 28px auto 0;
  font-size: 1.1rem;
  color: rgba(243, 245, 249, 0.8);
  max-width: 36em;
  line-height: 1.8;
  letter-spacing: 0.01em;
  text-wrap: pretty;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.hero-subtitle.is-in {
  opacity: 1;
  transform: none;
}
.hero-actions {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--ease) 0.08s, transform 0.7s var(--ease) 0.08s;
}
.hero-actions.is-in {
  opacity: 1;
  transform: none;
}
.hero-stat {
  margin-top: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  background: rgba(11, 15, 26, 0.55);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  font-size: 0.9rem;
  color: var(--text-muted);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.hero-stat.is-in {
  opacity: 1;
  transform: none;
}
.hero-stat strong {
  color: var(--text);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.live-dot, .stat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text-faint);
  flex: none;
}
.live-dot.is-on, .stat-dot.is-on { background: var(--ok); box-shadow: 0 0 0 4px rgba(51, 209, 122, 0.16); }

/* Sections */
.block { padding: var(--space-section) 0; }
.section-lede {
  margin: 0 0 40px;
  max-width: 56ch;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}
.intro { text-align: left; }
.intro h2 {
  margin: 0 0 32px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  font-weight: 700;
}

.vibe {
  padding: var(--space-section) 0;
  background:
    radial-gradient(ellipse 70% 45% at 15% 0%, rgba(47, 140, 240, 0.1), transparent 55%),
    var(--bg);
}
.vibe .wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.vibe-head {
  width: 100%;
  max-width: 36em;
  margin: 0 0 48px;
  text-align: left;
}
.vibe-head h2 {
  margin: 0 0 24px;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: var(--display-track);
  font-weight: 700;
  text-wrap: balance;
}
.vibe-lede {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 52ch;
}
.film,
.vibe-film {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  width: 100%;
}
.shot {
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
}
.shot .media {
  aspect-ratio: 4 / 5;
  width: 100%;
  min-height: 0;
  flex: 1 1 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.shot .media img { transition: transform 0.7s var(--ease); }
.shot:hover .media img { transform: scale(1.04); }
.shot figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  min-height: 42%;
  padding: 40px 16px 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 7, 12, 0.92) 68%);
  text-align: left;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  pointer-events: none;
}
.shot figcaption span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-strong);
}
.shot figcaption b {
  font-family: var(--display);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.features {
  padding: 16px 0 48px;
}
.features .feature:first-child { border-top: 0; padding-top: 16px; }
.cta-lede {
  margin: 0;
  color: rgba(243, 245, 249, 0.78);
  max-width: 44ch;
  line-height: 1.75;
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px 48px;
  align-items: center;
  padding: 52px 0;
  border-top: 1px solid var(--border);
}
.feature-rev .media { order: -1; }
.feature .media {
  min-height: 340px;
  aspect-ratio: 16 / 11;
  border: 1px solid var(--border);
}
.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 34em;
  gap: 4px;
}
.feature-rev .feature-copy { margin-inline-start: auto; }
.feature-copy h2 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  font-weight: 700;
}
.feature-copy p:last-child {
  margin: 12px 0 0;
  color: var(--text-muted);
  max-width: 40ch;
  line-height: 1.75;
}

.rows { margin-top: 36px; }
.row {
  display: grid;
  grid-template-columns: 3.2rem 1fr 1.2rem;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  transition: color var(--fast), transform 0.45s var(--ease), opacity 0.45s var(--ease);
}
.row:last-child { border-bottom: 1px solid var(--border); }
.row span { font-size: 13px; font-weight: 700; color: var(--accent-strong); }
.row b { font-size: 1.05rem; font-weight: 600; }
.row i { font-style: normal; color: var(--accent-strong); opacity: 0; transform: translateX(-6px); transition: opacity var(--fast), transform var(--mid) var(--ease); }
.row:hover i { opacity: 1; transform: none; }
.row:hover b { color: var(--accent-strong); }

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav) + 36px) 0 44px;
  overflow: hidden;
}
.page-hero-sm { min-height: 34vh; }
.page-hero .media { position: absolute; inset: 0; border-radius: 0; }
.page-hero .media::after {
  background: linear-gradient(180deg, rgba(5,7,12,.55) 0%, rgba(5,7,12,.3) 40%, rgba(5,7,12,.94) 100%);
}
.page-hero-ui { position: relative; z-index: 2; max-width: 36em; }
.page-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.12;
  letter-spacing: var(--display-track);
  font-weight: 700;
}
.page-hero .lede {
  margin-top: 20px;
  color: rgba(243, 245, 249, 0.8);
  line-height: 1.7;
  max-width: 46ch;
}
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  margin-top: 26px;
}
.page-hero-stat {
  margin-top: 22px;
  justify-content: flex-start;
}

.hub-hero {
  min-height: 48vh;
  padding-bottom: 56px;
}
.hub-hero .media::after {
  background:
    linear-gradient(90deg, rgba(5,7,12,.78) 0%, rgba(5,7,12,.35) 55%, rgba(5,7,12,.55) 100%),
    linear-gradient(180deg, rgba(5,7,12,.4) 0%, rgba(5,7,12,.2) 45%, rgba(5,7,12,.96) 100%);
}
.hub-main {
  padding-top: 40px;
  padding-bottom: 96px;
}
.hub-block { margin: 0 0 72px; }
.hub-block-head {
  max-width: 40em;
  margin: 0 0 32px;
}
.hub-block-head h2 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: var(--display-track);
}
.hub-block-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 56ch;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease), box-shadow 0.45s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}
[data-reveal="card"] {
  transform: translateY(36px) scale(0.97);
}
[data-reveal="card"].is-in {
  transform: none;
}
[data-reveal="card"]:hover {
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}
[data-reveal="up"] {
  transform: translateY(40px);
}
[data-reveal="left"] {
  transform: translateX(-28px);
}
[data-reveal="right"] {
  transform: translateX(28px);
}
[data-reveal="left"].is-in,
[data-reveal="right"].is-in,
[data-reveal="up"].is-in {
  transform: none;
}
.shot[data-reveal] {
  will-change: transform, opacity;
}
.shot[data-reveal].is-in .media {
  animation: card-settle 0.9s var(--ease) both;
  animation-delay: calc(var(--d, 0) * 90ms);
}
@keyframes card-settle {
  from { filter: brightness(0.7); }
  to { filter: none; }
}

.cta-band {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.cta-bg { position: absolute; inset: 0; border-radius: 0; }
.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,7,12,.94) 0%, rgba(5,7,12,.72) 55%, rgba(5,7,12,.5) 100%);
}
.cta-ui { position: relative; z-index: 2; text-align: left; }
.cta-ui .actions { justify-content: flex-start; }

.jobs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100svh - var(--nav));
  padding-top: var(--nav);
}
.jobs-list { padding: 40px var(--g) 48px; }
.jobs .media { min-height: 50vh; border-radius: 0; }
.jobs .row { cursor: pointer; }

.apply-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}
.apply-steps li {
  position: relative;
  padding: 28px 24px;
  background:
    linear-gradient(160deg, rgba(47, 140, 240, 0.1), transparent 42%),
    var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease, transform 0.3s var(--ease);
}
.apply-steps li:hover {
  border-color: rgba(76, 157, 255, 0.35);
  transform: translateY(-3px);
}
.apply-steps span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent-strong);
}
.apply-steps h2 {
  margin: 14px 0 10px;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
}
.apply-steps p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
}
.job-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #0a0e16;
  transition: border-color 0.2s ease, transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.job-card:hover {
  border-color: rgba(76, 157, 255, 0.45);
  transform: translateY(-5px);
  box-shadow: 0 28px 56px -30px var(--accent-glow);
}
.job-card-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.job-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.job-card:hover .job-card-media img { transform: scale(1.06); }
.job-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 12, 0.15) 0%, rgba(5, 7, 12, 0.35) 35%, rgba(5, 7, 12, 0.94) 100%);
  pointer-events: none;
}
.job-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  justify-content: flex-end;
  padding: 24px;
}
.job-card-nr {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent-strong);
}
.job-card h2 {
  margin: 0 0 2px;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.2;
}
.job-card p {
  margin: 0;
  color: rgba(243, 245, 249, 0.78);
  font-size: 0.94rem;
  line-height: 1.6;
  max-width: 28ch;
}
.job-card-go {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent-strong);
}
.job-card-go i {
  font-style: normal;
  transition: transform 0.25s var(--ease);
}
.job-card:hover .job-card-go i { transform: translateX(4px); }

.hub-cta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding: 32px;
  border: 1px solid rgba(76, 157, 255, 0.24);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 70% 80% at 0% 50%, rgba(47, 140, 240, 0.16), transparent 60%),
    var(--bg-card);
}
.hub-cta-copy { max-width: 36em; }
.hub-cta-copy h2 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  font-weight: 700;
}
.hub-cta-copy p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}
.hub-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-hero { padding: calc(var(--nav) + 40px) 0 32px; }
.store-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0;
  padding: 32px 0 48px;
  border-top: 1px solid var(--border);
  list-style: none;
}
.store-flow li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.store-flow span { font-size: 12px; font-weight: 700; color: var(--accent-strong); }
.store-flow h3 {
  margin: 10px 0;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
}
.store-flow p { margin: 0; color: var(--text-muted); font-size: 0.95rem; }
.store-enter { border-top: 1px solid var(--border); padding: 48px 0 80px; }
.store-note { margin-top: 16px; color: var(--text-muted); font-size: 14px; max-width: 52ch; }

.mast { padding: 28px 0 28px; max-width: 26em; }
.mast h1 {
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.15;
  font-weight: 700;
}
.page { padding-bottom: 96px; padding-top: 24px; }
.timeline { border-top: 1px solid var(--border); }
.timeline article {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.timeline .n { font-size: 13px; font-weight: 700; color: var(--accent-strong); line-height: 1.6; }
.timeline h3 { margin: 0 0 8px; font-family: var(--display); font-size: 1.5rem; font-weight: 700; }
.timeline p { margin: 0; color: var(--text-muted); max-width: 48ch; }
.chip {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-strong);
}
.facts { margin: 0; padding: 0; }
.facts li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  list-style: none;
}
.facts li:last-child { border-bottom: 1px solid var(--border); }
.facts .k { padding-top: 3px; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-strong); }
.facts p { margin: 0; color: var(--text-muted); line-height: 1.7; }
.faq { border-top: 1px solid var(--border); max-width: 52em; }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
}
.faq summary::-webkit-details-marker { display: none; }
.faq p { margin: -4px 0 24px; color: var(--text-muted); max-width: 64ch; line-height: 1.7; }

.docs-page { padding-top: 16px; }
.doc {
  display: grid;
  grid-template-columns: 3.2rem 1fr 1.2rem;
  align-items: baseline;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
}
.doc:last-child { border-bottom: 1px solid var(--border); }
.doc span { font-size: 13px; font-weight: 700; color: var(--accent-strong); }
.doc h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.15;
  font-weight: 700;
}
.doc i { font-style: normal; color: var(--accent-strong); }

/* Regels / Solliciteren hub */
.hub-search {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0 0 56px;
  padding: 0 0 28px;
  border-bottom: 1px solid var(--border);
  background: none;
}
.hub-search-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 28em;
}
.hub-search-label .eyebrow { margin: 0; }
.hub-search-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: var(--display-track);
}
.hub-search-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 8px 0 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 55%),
    rgba(8, 12, 20, 0.72);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  box-shadow: 0 18px 40px -28px rgba(0, 0, 0, 0.85);
  transition: border-color var(--fast), box-shadow var(--mid) var(--ease);
}
.hub-search-bar:focus-within {
  border-color: rgba(76, 157, 255, 0.55);
  box-shadow:
    0 0 0 3px rgba(47, 140, 240, 0.16),
    0 22px 48px -28px rgba(47, 140, 240, 0.35);
}
.hub-search-bar svg {
  width: 18px;
  height: 18px;
  color: var(--accent-strong);
  flex: none;
  opacity: 0.85;
}
.hub-search-bar input {
  flex: 1;
  min-width: 0;
  height: 46px;
  border: 0;
  background: transparent;
  outline: none;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 500;
}
.hub-search-bar input::placeholder { color: var(--text-faint); font-weight: 400; }
.hub-search-go {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--fast), transform var(--fast);
}
.hub-search-go:hover { background: var(--accent-strong); }
.hub-search-go span {
  display: inline-block;
  transition: transform 0.25s var(--ease);
}
.hub-search-go:hover span { transform: translateX(3px); }
.hub-label { margin: 0 0 16px; }

.docs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
}
.doc-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 240px;
  padding: 26px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.03), transparent 40%),
    var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease, transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.doc-card:hover {
  border-color: rgba(76, 157, 255, 0.42);
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -28px var(--accent-glow);
}
.doc-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.doc-card-nr {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent-strong);
}
.doc-card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 5px 9px;
  border: 1px solid var(--border);
  border-radius: 999px;
}
.doc-card h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.2;
}
.doc-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  flex: 1;
  max-width: 34ch;
}
.doc-card-go {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent-strong);
}
.doc-card-go i {
  font-style: normal;
  transition: transform 0.25s var(--ease);
}
.doc-card:hover .doc-card-go i,
.hub-panel:hover .doc-card-go i { transform: translateX(4px); }

.hub-split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 16px;
  margin-top: 8px;
}
.hub-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(76, 157, 255, 0.28);
  background:
    linear-gradient(160deg, rgba(47, 140, 240, 0.16), transparent 50%),
    var(--bg-card);
  transition: border-color 0.2s ease, transform 0.3s var(--ease);
}
a.hub-panel:hover {
  border-color: rgba(76, 157, 255, 0.5);
  transform: translateY(-3px);
}
.hub-panel h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.2;
}
.hub-panel p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.hub-aside {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
  margin: 8px 0 40px;
}
.hub-aside-card {
  padding: 24px;
  background: linear-gradient(180deg, rgba(47, 140, 240, 0.12), var(--bg-card));
  border: 1px solid rgba(76, 157, 255, 0.28);
  border-radius: var(--radius-md);
}
.hub-aside-card.muted {
  background: var(--bg-card);
  border-color: var(--border);
}
.hub-aside-card h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
}
.hub-aside-card p { margin: 0 0 16px; color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; }
.hub-aside-card .btn { margin-top: 4px; }
.hub-aside-card .btn-text {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent-strong);
}

.footer {
  position: relative;
  margin-top: 40px;
  padding: 0;
  border-top: 0;
  background:
    radial-gradient(ellipse 80% 60% at 12% 0%, rgba(47, 140, 240, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(20, 40, 80, 0.45), transparent 50%),
    linear-gradient(180deg, #070b14 0%, #05070c 100%);
  overflow: hidden;
}
.footer-glow {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(76, 157, 255, 0.55), transparent);
  pointer-events: none;
}
.footer-inner {
  position: relative;
  padding: 72px 0 28px;
}
.footer-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px 40px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: min(100%, 280px);
}
.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px var(--accent-glow));
}
.footer-kicker {
  margin: 0 0 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-strong);
}
.footer-display {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: var(--display-track);
}
.footer-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.footer-cta .btn,
.footer-cta .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  width: auto;
  min-width: 132px;
  text-align: center;
  transform: none;
}
.footer-cta .btn:hover,
.footer-cta .btn-secondary:hover {
  transform: translateY(-1px);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 40px;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.footer-grid a {
  display: block;
  width: fit-content;
  margin: 0 0 10px;
  color: var(--text-muted);
  transition: color var(--fast), transform var(--fast);
}
.footer-grid a:hover {
  color: var(--accent-strong);
  transform: translateX(2px);
}
.footer h4 {
  margin: 0 0 16px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 700;
}
.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--text-faint);
}
.footer-bar-brand {
  font-weight: 600;
  color: var(--text-muted);
}
.footer-bar-meta {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
}

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  z-index: 120;
  pointer-events: none;
}

.law-rail {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  z-index: 1;
  height: var(--law-rail);
  background: rgba(5, 7, 12, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.law-rail-inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  height: 100%;
  padding: 0;
  scrollbar-width: none;
}
.law-rail-inner::-webkit-scrollbar { display: none; }
.law-rail a {
  flex: none;
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 16px 0 0;
  margin-right: 8px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  border-bottom: 2px solid transparent;
}
.law-rail a:last-child { margin-right: 0; }
.law-rail a:hover { color: var(--text); }
.law-rail a.is-active {
  color: var(--accent-strong);
  border-bottom-color: var(--accent-strong);
}
.law-page .page-hero {
  padding-top: calc(var(--nav) + var(--law-rail) + 28px);
}
.law-page .page {
  --law-nr: 6.5rem;
  --law-gap: 1.25rem;
}
.law-intro {
  margin: 8px 0 28px;
}
.law-crumb {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-top: 20px;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.law-crumb a { color: var(--accent-strong); }
.law-crumb span::before { content: "/"; margin-right: 10px; color: var(--text-faint); }
.law-tools {
  position: static;
  margin: 0;
  padding: 12px 0 18px;
  background: transparent;
  border-bottom: 1px solid var(--border);
  box-shadow: none;
}
.law-search { display: block; }
.law-search input {
  width: 100%;
  height: 52px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--border);
  background: transparent;
  outline: none;
  font-size: 1rem;
}
.law-search input::placeholder { color: var(--text-faint); }
.law-count {
  margin: 14px 0 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}
.law-filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  margin-top: 10px;
  padding: 0 0 2px;
  overflow-x: auto;
  scrollbar-width: thin;
  border-bottom: 0;
}
.law-filters button {
  flex: none;
  background: none;
  border: 0;
  padding: 10px 16px 10px 0;
  margin-right: 4px;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.law-filters button:last-child { margin-right: 0; }
.law-filters button:hover { color: var(--text); }
.law-filters button.is-on {
  color: var(--accent-strong);
  border-bottom-color: var(--accent-strong);
}
.law-book { margin: 36px 0 0; }
.law-book + .law-book { margin-top: 48px; }
.law-book h2 {
  margin: 0 0 12px;
  padding-left: 0;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent-strong);
}
.law-art { border-top: 1px solid var(--border); scroll-margin-top: calc(var(--nav) + var(--law-rail) + 16px); }
.law-art:last-child { border-bottom: 1px solid var(--border); }
.law-art summary {
  display: grid;
  grid-template-columns: var(--law-nr) minmax(0, 1fr);
  column-gap: var(--law-gap);
  align-items: baseline;
  padding: 14px 0;
  cursor: pointer;
  list-style: none;
}
.law-art summary::-webkit-details-marker { display: none; }
.law-nr {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent-strong);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.law-name { font-size: 16px; font-weight: 600; line-height: 1.35; }
.law-body {
  padding: 0 0 28px;
  padding-left: calc(var(--law-nr) + var(--law-gap));
  max-width: calc(64ch + var(--law-nr) + var(--law-gap));
}
.law-body p { margin: 0 0 12px; }
.law-body ul, .law-body ol { margin: 0 0 14px; padding-left: 1.15em; color: var(--text-muted); }
.law-def, .law-sanction { display: grid; gap: 6px; margin: 0 0 16px; }
.law-def span, .law-sanction span, .law-straf-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-strong);
}
.law-table-wrap { overflow-x: auto; margin: 12px 0 20px; border-top: 1px solid var(--border); }
.law-table-wrap table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 420px; }
.law-table-wrap caption {
  caption-side: top;
  text-align: left;
  padding: 10px 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}
.law-table-wrap th, .law-table-wrap td {
  padding: 10px 12px 10px 0;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.law-table-wrap th {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.wb {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 48px;
}
.wb-nav button {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 10px 0;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}
.wb-nav button.is-on, .wb-nav button:hover { color: var(--accent-strong); }
.wb-art {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.empty { color: var(--text-muted); padding: 32px 0; }

@media (max-width: 980px) {
  .nav-desktop { display: none; }
  .menu-btn { display: flex; flex-direction: column; }
  .btn-login span { display: none; }
  .btn-login { padding: 0; width: 44px; justify-content: center; }
  .btn-cart { width: 42px; height: 42px; }
  .split-grid, .jobs, .feature, .store-flow, .film, .vibe-film { grid-template-columns: 1fr; }
  .vibe-film .shot .media { aspect-ratio: 16 / 10; }
  .feature-rev .media { order: 0; }
  .feature-rev .feature-copy { margin-inline-start: 0; }
  .feature-copy { max-width: none; }
  .jobs-list { padding: 32px var(--g); }
  .jobs .media, .feature .media { min-height: 280px; aspect-ratio: 16 / 10; }
  .timeline article, .facts li, .wb, .wb-art, .law-art summary { grid-template-columns: 1fr; }
  .law-body { padding-left: 0; max-width: 64ch; }
  .law-art summary { row-gap: 4px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { align-items: flex-start; }
  .docs-grid, .hub-aside, .hub-split, .apply-steps { grid-template-columns: 1fr; }
  .jobs-grid { grid-template-columns: 1fr; }
  .hub-search-bar { flex-wrap: wrap; padding: 12px; }
  .hub-search-go { width: 100%; justify-content: center; }
  .hub-cta { align-items: flex-start; }
  .job-card { min-height: 300px; }
  .nav-actions .btn-motion span { display: none; }
}

@media (max-width: 1100px) and (min-width: 981px) {
  .jobs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .apply-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  /* Soft OS preference only — full kill is html.motion-off (user toggle). */
  html:not(.motion-on) .hero-title .type-cursor { animation: none; opacity: 1; }
  html:not(.motion-on) .shot .media img { transform: none !important; }
}

/* === feature pack: updates / tags / boete / motion === */
.btn-motion {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--bg-elevated);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color var(--fast), color var(--fast), background var(--fast);
}
.btn-motion svg { width: 16px; height: 16px; flex: none; }
.btn-motion:hover,
.btn-motion[aria-pressed="true"] {
  border-color: var(--accent);
  color: var(--accent-strong);
  background: var(--accent-soft);
}

.updates-head { margin-bottom: 28px; max-width: 40em; }
.updates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.updates-col {
  border-top: 1px solid var(--border-strong);
  padding-top: 18px;
}
.updates-col-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.updates-col-head h3 {
  margin: 0;
  font-family: "Clash Display", "Sora", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}
.updates-col-head a {
  color: var(--accent-strong);
  font-size: 0.85rem;
  font-weight: 600;
}
.updates-list { display: flex; flex-direction: column; gap: 0; }
.update-row {
  display: grid;
  grid-template-columns: 7.2em 1fr;
  gap: 4px 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: inherit;
  text-decoration: none;
}
.update-row strong {
  grid-column: 2;
  font-size: 0.98rem;
}
.update-row > span:last-child {
  grid-column: 2;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.update-date {
  grid-row: 1 / span 2;
  color: var(--text-faint);
  font-size: 0.8rem;
  font-variant-numeric: tabular-nums;
  padding-top: 3px;
}
.update-row:hover strong { color: var(--accent-strong); }
.update-empty {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.update-empty a { color: var(--accent-strong); }

.law-meta {
  display: grid;
  gap: 22px;
  margin-bottom: 32px;
}
.changelog-strip {
  border-left: 2px solid var(--accent);
  padding: 10px 0 10px 16px;
  background: linear-gradient(90deg, var(--accent-soft), transparent 70%);
}
.changelog-line {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 70ch;
}
.changelog-line strong { color: var(--text); }
.changelog-line a { color: var(--accent-strong); font-weight: 600; }
.law-tags-wrap .eyebrow { margin-bottom: 10px; }
.law-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.law-tag {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--bg-elevated);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color var(--fast), background var(--fast), color var(--fast);
}
.law-tag:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.boete-panel {
  max-width: 52em;
  margin: 0 auto 48px;
}
.boete-label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.boete-search {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  height: 52px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: var(--bg-elevated);
}
.boete-search svg { width: 18px; height: 18px; color: var(--text-faint); flex: none; }
.boete-search input {
  flex: 1;
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
  outline: none;
}
.boete-hint {
  margin: 12px 0 22px;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.boete-hint a { color: var(--accent-strong); }
.boete-results { display: flex; flex-direction: column; gap: 16px; }
.boete-card {
  padding: 18px 0 20px;
  border-top: 1px solid var(--border);
}
.boete-card header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
  margin-bottom: 12px;
}
.boete-ref {
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.boete-card h3 {
  margin: 0;
  font-size: 1.15rem;
  font-family: "Clash Display", "Sora", sans-serif;
}
.boete-table-wrap { overflow-x: auto; margin-bottom: 12px; }
.boete-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.boete-table th,
.boete-table td {
  text-align: left;
  padding: 8px 10px;
  border-bottom: 1px solid var(--border);
}
.boete-table th { color: var(--text-faint); font-weight: 600; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; }
.boete-sanction { color: var(--text-muted); margin: 0 0 12px; }

html.motion-off *,
html.motion-off *::before,
html.motion-off *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}
html.motion-off .type-cursor { display: none; }
html.motion-off .boot { display: none !important; }
html.motion-off body.is-booting { overflow: auto; }
html.motion-off .hero .hero-title,
html.motion-off .hero .hero-subtitle,
html.motion-off .hero .hero-actions,
html.motion-off .hero .hero-stat,
html.motion-off [data-reveal] {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

@media (max-width: 820px) {
  .updates-grid { grid-template-columns: 1fr; }
  .btn-motion span { display: none; }
  .btn-motion { width: 44px; padding: 0; justify-content: center; }
  .update-row { grid-template-columns: 1fr; }
  .update-date { grid-row: auto; }
  .update-row strong, .update-row > span:last-child { grid-column: 1; }
}

/* === Typografie & ritme (verfijning) ===
   Clash Display loopt van nature erg krap. Iets ruimere letter- en woordafstand,
   gebalanceerde regels en consistente afstanden tussen kop, tekst en knoppen. */
h1, h2, h3, .shot figcaption b,
.h-lg, .h-xl, .hero-title, .boot-brand, .footer-display,
.brand-name strong, .hub-search-title, .nav-overlay-inner a,
.faq summary, .timeline h3, .store-flow h3 {
  word-spacing: var(--display-words);
  font-kerning: normal;
}
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
.hero-title { letter-spacing: 0.01em; }
.hero-brand { margin-bottom: 26px; }
.hero-subtitle { margin-top: 30px; line-height: 1.75; }
.eyebrow + h1, .eyebrow + h2, .kicker + h2 { margin-top: 0; }
.actions { margin-top: 32px; }
.cta-ui .actions, .page-hero-actions { margin-top: 32px; }
.updates-head .section-lede { margin-bottom: 0; }
.updates-head { margin-bottom: 36px; }
.rows { margin-top: 8px; }
.shot figcaption b { line-height: 1.4; }
.apply-steps h2 { margin: 16px 0 12px; line-height: 1.25; }
.doc-card h2, .hub-panel h2 { line-height: 1.25; }
.footer-display { line-height: 1.15; }
.footer-kicker { margin-bottom: 10px; }
.update-row strong { line-height: 1.4; }
.faq code {
  padding: 2px 6px;
  border-radius: 6px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  font-size: 0.9em;
  color: var(--text);
  white-space: nowrap;
}
.faq a, .facts a { color: var(--accent-strong); }
/* Eyebrows binnen blokken werden overschreven door de alinea-stijl van het blok */
.hub-block-head .eyebrow,
.hub-cta-copy .eyebrow,
.hub-panel .eyebrow,
.hub-aside-card .eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--accent-strong);
}
.hub-panel .eyebrow { margin-bottom: 4px; }
/* Paginakop: tekst links uitlijnen met de inhoud eronder */
.page-hero-ui { max-width: none; }
.page-hero-ui > * { max-width: 40rem; }
.page-hero-ui > .lede { max-width: 46ch; }

@media (max-width: 980px) {
  :root { --space-section: 84px; }
  .feature { padding: 44px 0; gap: 28px; }
  .hub-cta { padding: 28px 24px; }
}
@media (max-width: 600px) {
  :root { --g: 20px; --space-section: 72px; --display-words: 0.1em; }
  .hero { padding: calc(var(--nav) + 32px) var(--g) 64px; }
  .hero-title { font-size: clamp(2.3rem, 11vw, 3rem); line-height: 1.12; }
  .hero-subtitle { font-size: 1.02rem; margin-top: 22px; }
  .hero-actions { margin-top: 32px; }
  .hero-stat { margin-top: 40px; }
  .hero-actions .btn, .hero-actions .btn-secondary { min-width: 140px; }
  .vibe-head { margin-bottom: 36px; }
  .h-lg { font-size: clamp(1.9rem, 8.5vw, 2.4rem); }
  .h-xl { font-size: clamp(2.1rem, 10vw, 2.8rem); }
  .page-hero { padding-bottom: 36px; }
  .page-hero .lede { font-size: 1rem; }
  .features { padding-bottom: 24px; }
  .feature { padding: 36px 0; }
  .feature > * { min-width: 0; }
  .feature .media { min-height: 0; width: 100%; }
  .row { padding: 18px 0; gap: 14px; grid-template-columns: 2.4rem 1fr 1.2rem; }
  .footer-inner { padding-top: 56px; }
  .footer-display { font-size: 1.7rem; }
  .facts li { padding: 20px 0; gap: 8px; }
  .faq summary { font-size: 1.15rem; padding: 18px 0; }
}

/* Mobiel menu: knoppen onderaan leesbaar en consistent */
.nav-overlay-inner .btn-motion,
.nav-overlay-inner .btn-login {
  width: max-content;
  height: 44px;
  padding: 0 18px;
  margin-top: 6px;
  justify-content: flex-start;
}
.nav-overlay-inner .btn-motion span { display: inline; }
.nav-overlay-inner .btn-login span { display: inline; }
.nav-overlay-inner a.btn {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  padding: 0 22px;
}

/* Achtergrondvideo: geen bedieningsknoppen tonen */
.hero-video { pointer-events: none; }
.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-enclosure,
.hero-video::-webkit-media-controls-overlay-play-button,
.hero-video::-webkit-media-controls-start-playback-button { display: none !important; -webkit-appearance: none; }

/* Afbeeldingen beschermen tegen slepen, selecteren en lang indrukken op mobiel */
img, video {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

/* FiveM-account in de navbar (ingelogd via Tebex / cfx.re) */
.btn-login[hidden],
.nav-account[hidden],
.nav-account-menu[hidden],
.nav-overlay-account[hidden] { display: none !important; }
.nav-account { position: relative; }
.nav-account-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 44px;
  max-width: 220px;
  padding: 0 12px 0 5px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--bg-elevated);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color var(--fast), background var(--fast);
}
.nav-account-btn:hover,
.nav-account-btn[aria-expanded="true"] {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.nav-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  color: #fff;
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 6px 18px -8px var(--accent-glow);
}
.nav-avatar-lg { width: 40px; height: 40px; font-size: 1.1rem; }
.nav-account-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-account-chev {
  width: 16px;
  height: 16px;
  flex: none;
  color: var(--text-muted);
  transition: transform var(--fast) ease;
}
.nav-account-btn[aria-expanded="true"] .nav-account-chev { transform: rotate(180deg); color: var(--accent-strong); }
.nav-account-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 110;
  width: 260px;
  padding: 8px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(47, 140, 240, 0.05);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.22s var(--ease);
}
.nav-account-menu.is-open { opacity: 1; transform: none; }
.nav-account-head,
.nav-overlay-account-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px 10px;
}
.nav-account-who { display: flex; flex-direction: column; min-width: 0; line-height: 1.3; }
.nav-account-who strong {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav-account-who small { font-size: 0.76rem; color: var(--text-muted); }
.nav-account-sep { height: 1px; margin: 6px 4px; background: var(--border); }
.nav-account-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px;
  border: 0;
  border-radius: var(--radius-sm);
  background: none;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background var(--fast), color var(--fast);
}
.nav-account-item > svg { width: 18px; height: 18px; flex: none; color: var(--text-muted); }
.nav-account-item:hover,
.nav-account-item:focus-visible { background: var(--accent-soft); outline: none; }
.nav-account-item:hover > svg,
.nav-account-item:focus-visible > svg { color: var(--accent-strong); }
.nav-account-label { display: flex; flex-direction: column; flex: 1; min-width: 0; line-height: 1.3; }
.nav-account-label small { font-size: 0.74rem; font-weight: 500; color: var(--text-muted); }
.nav-account-item > .nav-account-ext { width: 14px; height: 14px; }
.nav-account-item.is-danger:hover,
.nav-account-item.is-danger:focus-visible { background: rgba(255, 99, 99, 0.1); color: #ff8585; }
.nav-account-item.is-danger:hover > svg,
.nav-account-item.is-danger:focus-visible > svg { color: #ff8585; }

/* Mobiel menu: accountblok */
.nav-overlay-account {
  margin-top: 14px;
  padding: 8px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
}
.nav-overlay-account-head { border-bottom: 1px solid var(--border); margin-bottom: 4px; padding-bottom: 12px; }
.nav-overlay-inner .nav-overlay-account-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 10px;
  border: 0;
  border-radius: var(--radius-sm);
  background: none;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.nav-overlay-account-item > svg { width: 18px; height: 18px; flex: none; color: var(--text-muted); }
.nav-overlay-account-item > span { flex: 1; }
.nav-overlay-account-item > small { font-size: 0.78rem; font-weight: 500; color: var(--text-muted); }
.nav-overlay-account-item > .nav-account-ext { width: 14px; height: 14px; }
.nav-overlay-inner .nav-overlay-account-item:hover { background: var(--accent-soft); color: var(--text); }
.nav-overlay-account-item.is-danger:hover { background: rgba(255, 99, 99, 0.1) !important; color: #ff8585 !important; }

@media (max-width: 980px) {
  .nav-account-btn { padding: 0 5px; gap: 0; }
  .nav-account-btn .nav-account-name,
  .nav-account-btn .nav-account-chev { display: none; }
}
@media (max-width: 520px) {
  .nav-account-menu { position: fixed; top: calc(var(--nav) - 4px); right: var(--g); left: var(--g); width: auto; }
}

/* =========================================================
   Live serverstatus (homepage-kaart, hero-teller, footer-pill)
   ========================================================= */
.status-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-faint);
  flex: none;
}
.status-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: inherit;
  opacity: 0;
}
[data-state="online"] .status-dot { background: var(--ok); box-shadow: 0 0 0 4px rgba(51, 209, 122, 0.16); }
[data-state="online"] .status-dot::after { animation: status-pulse 2s var(--ease) infinite; }
[data-state="offline"] .status-dot { background: #f0a53a; box-shadow: 0 0 0 4px rgba(240, 165, 58, 0.14); }
[data-state="loading"] .status-dot { animation: status-blink 1.1s ease-in-out infinite; }
@keyframes status-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  80%, 100% { transform: scale(3.2); opacity: 0; }
}
@keyframes status-blink {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}
.stat-dot.is-on { position: relative; }
.stat-dot.is-on::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--ok);
  animation: status-pulse 2s var(--ease) infinite;
}
.hero-stat.is-offline .stat-dot { background: #f0a53a; box-shadow: 0 0 0 4px rgba(240, 165, 58, 0.14); }
.hero-stat [data-live][hidden] { display: none; }

.status-section {
  position: relative;
  z-index: 4;
  margin-top: -56px;
  padding: 0 0 8px;
}
.status-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px 40px;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(47, 140, 240, 0.16), transparent 55%),
    linear-gradient(180deg, rgba(14, 20, 34, 0.94), rgba(8, 11, 19, 0.96));
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}
.status-card[data-state="offline"] {
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(240, 165, 58, 0.1), transparent 55%),
    linear-gradient(180deg, rgba(14, 20, 34, 0.94), rgba(8, 11, 19, 0.96));
}
.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  padding: 5px 12px 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.status-card[data-state="online"] .status-indicator { color: var(--ok); border-color: rgba(51, 209, 122, 0.28); background: rgba(51, 209, 122, 0.07); }
.status-card[data-state="offline"] .status-indicator { color: #f0a53a; border-color: rgba(240, 165, 58, 0.28); background: rgba(240, 165, 58, 0.07); }
.status-name {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: var(--display-track);
}
.status-note {
  margin: 8px 0 0;
  max-width: 44ch;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}
.status-kicker {
  margin: 0 0 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.status-count {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 14px;
  font-family: var(--display);
  font-variant-numeric: tabular-nums;
  color: var(--text-muted);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
}
.status-count strong {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.status-sep { color: var(--text-faint); }
.status-card[data-state="offline"] .status-count strong { color: var(--text-faint); }
.status-bar {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}
.status-bar i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--ok));
  box-shadow: 0 0 16px rgba(51, 209, 122, 0.45);
  transition: width 0.9s var(--ease);
}
.status-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  text-align: right;
}
.status-play { min-width: 168px; }
.status-retry {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-strong);
  cursor: pointer;
}
.status-retry:hover { color: var(--text); }
.status-retry[hidden] { display: none; }
.status-updated {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-faint);
  font-variant-numeric: tabular-nums;
}
@media (max-width: 960px) {
  .status-card { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .status-actions { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: space-between; text-align: left; }
}
@media (max-width: 640px) {
  .status-section { margin-top: -40px; }
  .status-card { grid-template-columns: 1fr; gap: 22px; padding: 22px 20px; border-radius: var(--radius-md); }
  .status-actions { flex-direction: column; align-items: stretch; text-align: center; }
  .status-play { width: 100%; }
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  transition: border-color var(--fast), color var(--fast);
}
.status-pill .status-dot { width: 8px; height: 8px; }
.status-pill:hover { border-color: var(--border-strong); color: var(--text); }
.status-pill[data-state="online"] { border-color: rgba(51, 209, 122, 0.24); }

html.motion-off .status-dot::after,
html.motion-off .stat-dot::after { animation: none; }
@media (prefers-reduced-motion: reduce) {
  .status-dot::after, .stat-dot.is-on::after { animation-duration: 4s; }
}

/* =========================================================
   Wetboeken: ankers, kopieerlink, zoeken met markering
   ========================================================= */
.law-search { position: relative; display: flex; align-items: center; }
.law-search-ico {
  position: absolute;
  left: 0;
  width: 18px;
  height: 18px;
  color: var(--text-faint);
  pointer-events: none;
}
.law-search input { padding-left: 30px; padding-right: 36px; color: var(--text); }
.law-search input:focus { border-bottom-color: var(--accent); }
.law-kbd {
  position: absolute;
  right: 0;
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 6px;
  border: 1px solid var(--border-strong);
  color: var(--text-faint);
  font: 600 11px/1 var(--sans);
  pointer-events: none;
}
.law-search input:focus ~ .law-kbd,
.law-search input:not(:placeholder-shown) ~ .law-kbd { display: none; }
.law-page mark,
.boete-page mark {
  background: rgba(76, 157, 255, 0.24);
  color: var(--text);
  border-radius: 3px;
  padding: 0 2px;
  margin: 0 -1px;
  box-shadow: inset 0 -1px 0 rgba(76, 157, 255, 0.65);
}
.law-art { position: relative; }
.law-art summary { padding-right: 48px; }
.law-copy {
  position: absolute;
  top: 9px;
  right: 0;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-faint);
  cursor: pointer;
  opacity: 0.55;
  transition: opacity var(--fast), color var(--fast), border-color var(--fast), background var(--fast);
}
.law-copy svg { width: 16px; height: 16px; }
.law-art:hover .law-copy,
.law-art:focus-within .law-copy,
.law-art.is-target .law-copy,
.law-copy:focus-visible { opacity: 1; }
.law-copy:hover,
.law-copy:focus-visible { color: var(--accent-strong); border-color: var(--border-strong); background: var(--bg-elevated); outline: none; }
.law-copy.is-done { color: var(--ok); opacity: 1; }
.law-copy-done {
  position: absolute;
  right: calc(100% + 6px);
  top: 50%;
  transform: translateY(-50%);
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--ok);
  color: #04120a;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--fast);
}
.law-copy.is-done .law-copy-done { opacity: 1; }
.law-art::before {
  content: "";
  position: absolute;
  inset: 0 -14px;
  border-radius: 12px;
  background: var(--accent-soft);
  box-shadow: inset 3px 0 0 var(--accent-strong);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s var(--ease);
}
.law-art.is-target::before { opacity: 1; animation: law-target 1.4s var(--ease); }
@keyframes law-target {
  0% { opacity: 0; }
  25% { opacity: 1; background: rgba(47, 140, 240, 0.26); }
  100% { opacity: 1; }
}
.law-art > details { position: relative; }
.law-empty {
  margin: 28px 0 0;
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px dashed var(--border-strong);
  color: var(--text-muted);
  text-align: center;
}
.law-empty p { margin: 0 auto 12px; max-width: 52ch; }
.law-empty-title { font-family: var(--display); font-size: 1.2rem; font-weight: 700; color: var(--text); }
.law-empty-reset { height: 40px; font-size: 0.85rem; }

/* Verwijzingen naar wetsartikelen + tooltip-preview */
a.wet-ref {
  color: var(--accent-strong);
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  border-radius: 3px;
  transition: color var(--fast), background var(--fast);
}
a.wet-ref:hover,
a.wet-ref:focus-visible { color: var(--text); background: var(--accent-soft); text-decoration-style: solid; outline: none; }
.boete-card a.boete-ref.wet-ref { text-decoration: none; }
.wet-tip {
  position: fixed;
  z-index: 130;
  width: min(340px, calc(100vw - 24px));
  padding: 14px 16px 14px;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  background: rgba(11, 15, 26, 0.97);
  box-shadow: 0 24px 60px -18px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(47, 140, 240, 0.08);
  color: var(--text);
  font-size: 0.86rem;
  line-height: 1.55;
  text-align: left;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 140ms var(--ease), transform 140ms var(--ease);
}
.wet-tip[hidden] { display: none; }
.wet-tip.is-on { opacity: 1; transform: none; }
.wet-tip::before {
  content: "";
  position: absolute;
  left: var(--arrow-x, 50%);
  width: 10px;
  height: 10px;
  background: inherit;
  border: 1px solid var(--border-strong);
  transform: translateX(-50%) rotate(45deg);
}
.wet-tip[data-side="below"]::before { top: -6px; border-right: 0; border-bottom: 0; }
.wet-tip[data-side="above"]::before { bottom: -6px; border-left: 0; border-top: 0; }
.wet-tip p { margin: 0; }
.wet-tip-book {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.wet-tip-title { margin-top: 4px !important; font-weight: 700; line-height: 1.35; }
.wet-tip-title span { margin-right: 8px; color: var(--accent-strong); font-variant-numeric: tabular-nums; }
.wet-tip-text {
  margin-top: 6px !important;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.wet-tip-go {
  display: inline-flex;
  gap: 6px;
  margin-top: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-strong);
}
.wet-tip-go:hover { color: var(--text); }

.law-def span.law-txt,
.law-sanction span.law-txt {
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: none;
  color: inherit;
}
