/* ============================================================================
 * FUSE ROLEPLAY — Gaming Neon Production Styles
 * Brand: #01A3E3 / #005D85 / #37C8FF / #0B0F14 / #C7CCD4
 * Font: Inter (gepushed: 400→900, italic, tnum)
 * ========================================================================= */

/* ---------- Tokens --------------------------------------------------------- */
:root {
    --primary:      #01A3E3;
    --primary-dark: #005D85;
    --glow:         #37C8FF;
    --bg:           #0B0F14;
    --bg-2:         #10161E;
    --bg-3:         #161D27;
    --silver:       #C7CCD4;
    --silver-dim:   #8A9098;
    --silver-mute:  #5F6670;
    --white:        #FFFFFF;

    /* Accent kleuren — speels gebruik */
    --acc-pink:     #FF2D6F;
    --acc-yellow:   #FFE600;
    --acc-green:    #00FF94;
    --acc-pink-dim: #c01651;
    --acc-yellow-dim: #d4bf00;

    --border:       rgba(199, 204, 212, 0.08);
    --border-on:    rgba(1, 163, 227, 0.3);
    --border-glow:  rgba(55, 200, 255, 0.6);

    --font: 'Inter', system-ui, -apple-system, sans-serif;

    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 16px;

    --container: 1280px;
    --header-h: 76px;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--silver);
    background: var(--bg);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'tnum', 'ss01';
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--glow); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--white); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
::selection { background: var(--primary); color: var(--bg); }

h1, h2, h3, h4, h5, h6 {
    color: var(--white);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.skip-link {
    position: absolute;
    left: -9999px; top: 0;
    background: var(--primary);
    color: var(--bg);
    padding: 12px 20px;
    z-index: 1000;
    font-weight: 800;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ---------- Layout primitives -------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

main { position: relative; z-index: 1; }

/* ---------- Header -------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-h);
    background: rgba(11, 15, 20, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(1, 163, 227, 0.15);
    transition: background 0.3s var(--ease);
}
.site-header.is-scrolled {
    background: rgba(11, 15, 20, 0.95);
    border-bottom-color: rgba(1, 163, 227, 0.3);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}
.brand-logo {
    height: 44px;
    width: auto;
    filter:
        drop-shadow(0 0 12px rgba(55, 200, 255, 0.5))
        drop-shadow(0 0 24px rgba(1, 163, 227, 0.3));
    transition: filter 0.3s var(--ease), transform 0.2s var(--ease);
}
.brand:hover .brand-logo {
    filter:
        drop-shadow(0 0 16px rgba(55, 200, 255, 0.7))
        drop-shadow(0 0 32px rgba(1, 163, 227, 0.45));
    transform: scale(1.03);
}

.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { list-style: none; display: flex; gap: 2px; align-items: center; }

.nav-link {
    position: relative;
    display: inline-block;
    padding: 8px 14px;
    color: var(--silver-dim);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--r-sm);
    transition: color 0.2s var(--ease);
}
.nav-link:hover { color: var(--white); }
.nav-link.is-active { color: var(--white); }
.nav-link.is-active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 14px; right: 14px;
    height: 3px;
    background: var(--primary);
    box-shadow: 0 0 12px var(--glow);
    border-radius: 2px 2px 0 0;
}

.nav-toggle {
    display: none;
    width: 40px; height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.nav-toggle span {
    display: block;
    width: 22px; height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.header-cta { display: flex; align-items: center; gap: 10px; }

/* ---------- Buttons — chunky console feel -------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: var(--r-sm);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease), background 0.2s var(--ease);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
    position: relative;
}
.btn-lg { padding: 17px 30px; font-size: 14px; }

.btn-primary {
    background: var(--primary);
    color: var(--bg);
    box-shadow: 0 6px 0 var(--primary-dark), 0 10px 30px rgba(1, 163, 227, 0.35);
}
.btn-primary:hover {
    transform: translateY(2px);
    box-shadow: 0 4px 0 var(--primary-dark), 0 8px 20px rgba(1, 163, 227, 0.45);
}
.btn-primary:active {
    transform: translateY(6px);
    box-shadow: 0 0 0 var(--primary-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary);
    box-shadow: 0 6px 0 var(--primary-dark);
}
.btn-secondary:hover {
    background: rgba(1, 163, 227, 0.08);
    transform: translateY(2px);
    box-shadow: 0 4px 0 var(--primary-dark);
}
.btn-secondary:active {
    transform: translateY(6px);
    box-shadow: 0 0 0 var(--primary-dark);
}

.btn-discord {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #5865F2;
    color: white;
    padding: 9px 16px;
    border-radius: var(--r-sm);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease);
    box-shadow: 0 4px 0 #3a44b8;
}
.btn-discord:hover {
    color: white;
    transform: translateY(2px);
    box-shadow: 0 2px 0 #3a44b8;
}
.btn-discord svg { width: 16px; height: 16px; }

.btn-cta-icon { width: 18px; height: 18px; }

/* ---------- Hero --------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-2);
}
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(11, 15, 20, 0.55) 0%, rgba(11, 15, 20, 0.7) 60%, var(--bg) 100%),
        repeating-linear-gradient(0deg, transparent 0, transparent 2px, rgba(1, 163, 227, 0.025) 2px, rgba(1, 163, 227, 0.025) 3px);
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 800px 500px at 50% 0%, rgba(1, 163, 227, 0.25), transparent 70%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0 100px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left { transform: rotate(-0.5deg); }

.hero-sticker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--acc-yellow);
    color: #1a1500;
    padding: 7px 16px 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transform: rotate(-3deg);
    margin-bottom: 24px;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.4);
    border: 2px solid #1a1500;
    animation: sticker-wobble 4s ease-in-out infinite;
}
@keyframes sticker-wobble {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(-1deg); }
}
.hero-sticker .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #1a1500;
    animation: pulse-dark 1.5s infinite;
}
@keyframes pulse-dark {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-size: clamp(56px, 9vw, 120px);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: -0.04em;
    color: var(--white);
    margin-bottom: 0;
    text-shadow: 0 0 60px rgba(1, 163, 227, 0.4);
}
.hero-title .accent {
    color: var(--primary);
    font-style: italic;
    display: inline-block;
    transform: skew(-6deg);
    margin-left: -8px;
    margin-right: 4px;
    text-shadow: 0 0 40px rgba(55, 200, 255, 0.6);
}
.hero-title .strike {
    position: relative;
    display: inline-block;
}
.hero-title .strike::after {
    content: '';
    position: absolute;
    left: -4px; right: -4px;
    top: 50%;
    height: 10px;
    background: var(--acc-pink);
    transform: translateY(-50%) rotate(-2deg);
    z-index: 0;
    box-shadow: 0 0 20px rgba(255, 45, 111, 0.6);
}
.hero-title .strike > span { position: relative; z-index: 1; }

.hero-sub {
    font-size: 18px;
    color: var(--silver-dim);
    max-width: 480px;
    line-height: 1.5;
    margin: 24px 0 32px;
    font-weight: 500;
}
.hero-sub strong {
    color: var(--white);
    background: var(--bg);
    padding: 2px 8px;
    border-left: 3px solid var(--primary);
    font-weight: 700;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Hero right — stats stacked offset */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card {
    position: relative;
    background: rgba(16, 22, 30, 0.85);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(1, 163, 227, 0.25);
    border-radius: 14px;
    padding: 20px 24px;
    transition: transform 0.3s var(--ease-bounce), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.stat-card:nth-child(1) { transform: rotate(2deg); margin-left: 20px; }
.stat-card:nth-child(2) { transform: rotate(-1.5deg); margin-right: 30px; }
.stat-card:nth-child(3) { transform: rotate(1deg); margin-left: 40px; }
.stat-card:hover {
    transform: rotate(0) scale(1.03);
    border-color: var(--glow);
    box-shadow: 0 0 40px rgba(55, 200, 255, 0.3);
}
.stat-card.is-live {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(1, 163, 227, 0.18), rgba(16, 22, 30, 0.9));
}
.stat-card.is-live::before {
    content: 'LIVE';
    position: absolute;
    top: -8px;
    right: 20px;
    background: var(--acc-pink);
    color: white;
    font-size: 10px;
    font-weight: 900;
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 0.15em;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
}
.stat-card.is-live.is-offline::before {
    content: 'OFFLINE';
    background: var(--silver-mute);
}

.stat-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--silver-dim);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.pulse-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--acc-green);
    box-shadow: 0 0 0 0 var(--acc-green);
    animation: pulse-green 1.8s infinite;
}
.pulse-dot.is-offline {
    background: #f87171;
    animation: pulse-red 2s infinite;
}
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 148, 0.7); }
    70% { box-shadow: 0 0 0 14px rgba(0, 255, 148, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 148, 0); }
}
@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(248, 113, 113, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(248, 113, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(248, 113, 113, 0); }
}

.stat-value {
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
    color: var(--white);
    letter-spacing: -0.03em;
}
.stat-value .dim {
    color: var(--silver-mute);
    font-size: 22px;
    font-weight: 700;
}
.stat-sub {
    color: var(--silver-dim);
    font-size: 12px;
    margin-top: 6px;
    font-weight: 500;
}

/* ---------- Marquee ------------------------------------------------------ */
.marquee {
    background: var(--primary);
    color: var(--bg);
    padding: 14px 0;
    overflow: hidden;
    border-top: 2px solid var(--bg);
    border-bottom: 2px solid var(--bg);
    position: relative;
    z-index: 3;
}
.marquee-track {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    animation: marquee-scroll 30s linear infinite;
    width: max-content;
}
.marquee-item {
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 50px;
}
.marquee-item::after {
    content: '◆';
    color: rgba(11, 15, 20, 0.4);
}
@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---------- Section base ------------------------------------------------- */
.section {
    padding: 100px 0;
    position: relative;
}

.section-head {
    margin-bottom: 56px;
    max-width: 720px;
}
.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.eyebrow {
    display: inline-block;
    background: var(--bg-2);
    border: 1.5px solid var(--primary);
    color: var(--glow);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    transform: rotate(-1deg);
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    line-height: 0.95;
    color: var(--white);
    letter-spacing: -0.03em;
}
.section-title em {
    font-style: italic;
    color: var(--primary);
    font-weight: 900;
    text-shadow: 0 0 40px rgba(55, 200, 255, 0.4);
}
.section-lead {
    color: var(--silver-dim);
    font-size: 18px;
    margin-top: 16px;
    max-width: 560px;
    line-height: 1.5;
}

/* ---------- Feature cards ------------------------------------------------ */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feature-card {
    position: relative;
    background: var(--bg-2);
    border: 2px solid rgba(199, 204, 212, 0.08);
    border-radius: 16px;
    padding: 32px 28px 36px;
    transition: all 0.3s var(--ease);
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 60px; height: 4px;
    background: var(--primary);
    transition: width 0.4s var(--ease);
}
.feature-card:nth-child(2)::before { background: var(--acc-pink); }
.feature-card:nth-child(3)::before { background: var(--acc-green); }
.feature-card:hover {
    border-color: rgba(1, 163, 227, 0.4);
    transform: translateY(-4px);
}
.feature-card:hover::before { width: 100%; }

.feature-num {
    font-size: 12px;
    font-weight: 900;
    color: var(--silver-mute);
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}
.feature-icon-box {
    width: 56px; height: 56px;
    background: rgba(1, 163, 227, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--glow);
    margin-bottom: 18px;
    border: 1.5px solid rgba(1, 163, 227, 0.3);
}
.feature-card:nth-child(2) .feature-icon-box {
    background: rgba(255, 45, 111, 0.1);
    border-color: rgba(255, 45, 111, 0.3);
    color: var(--acc-pink);
}
.feature-card:nth-child(3) .feature-icon-box {
    background: rgba(0, 255, 148, 0.08);
    border-color: rgba(0, 255, 148, 0.3);
    color: var(--acc-green);
}
.feature-icon-box svg { width: 28px; height: 28px; }
.feature-card h3 {
    font-size: 22px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 10px;
}
.feature-card p {
    color: var(--silver-dim);
    font-size: 15px;
    line-height: 1.6;
}

/* ---------- Steps -------------------------------------------------------- */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    counter-reset: step;
}
.step {
    position: relative;
    background: var(--bg-2);
    border: 2px solid var(--border);
    border-radius: 14px;
    padding: 56px 22px 24px;
    transition: all 0.3s var(--ease);
}
.step::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    position: absolute;
    top: 14px; left: 22px;
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.05em;
    line-height: 1;
    text-shadow: 0 0 20px rgba(55, 200, 255, 0.3);
}
.step:hover { border-color: var(--border-on); transform: translateY(-2px); }
.step h4 {
    font-size: 17px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 8px;
}
.step p { color: var(--silver-dim); font-size: 14px; line-height: 1.6; }

/* ---------- Diagonal divider --------------------------------------------- */
.diag-divider {
    height: 60px;
    background: var(--primary);
    transform: skewY(-2deg);
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}
.diag-divider-inner {
    position: absolute;
    top: 50%;
    left: 0; right: 0;
    transform: translateY(-50%) skewY(2deg);
    overflow: hidden;
}
.diag-divider-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: marquee-scroll 25s linear infinite;
    width: max-content;
    font-size: 18px;
    font-weight: 900;
    color: var(--bg);
    letter-spacing: 0.25em;
    text-transform: uppercase;
}
.diag-divider-track span::after {
    content: '◆';
    margin-left: 60px;
    color: rgba(11, 15, 20, 0.4);
}

/* ---------- CTA Band ----------------------------------------------------- */
.cta-band {
    position: relative;
    background: var(--bg-2);
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    overflow: hidden;
    transform: rotate(-0.5deg);
}
.cta-band::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--acc-pink), var(--acc-yellow), var(--acc-green), var(--glow));
}
.cta-band::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 600px 300px at center, rgba(1, 163, 227, 0.15), transparent 70%);
    pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 12px;
}
.cta-band p {
    color: var(--silver-dim);
    font-size: 17px;
    margin-bottom: 28px;
}

/* ---------- Footer ------------------------------------------------------- */
.site-footer {
    margin-top: 100px;
    border-top: 1px solid var(--border);
    background: var(--bg-2);
    position: relative;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--acc-pink), var(--acc-yellow), var(--acc-green), var(--glow));
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    padding: 60px 24px 40px;
}
.footer-logo {
    height: 40px;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 12px rgba(1, 163, 227, 0.3));
}
.footer-tag { color: var(--silver-dim); font-size: 14px; max-width: 280px; line-height: 1.5; }

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.footer-col h4 {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin: 10px 0; font-size: 14px; color: var(--silver-dim); }
.footer-col a { color: var(--silver-dim); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 18px 0;
    color: var(--silver-mute);
    font-size: 12px;
}
.footer-bottom-inner { text-align: center; }

/* ============================================================================
 * REGELS PAGINA
 * ========================================================================= */

.page-hero {
    padding: 80px 0 40px;
    position: relative;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 500px;
    background: radial-gradient(ellipse, rgba(1, 163, 227, 0.15), transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero .eyebrow { margin-bottom: 24px; }
.page-hero h1 {
    font-size: clamp(48px, 8vw, 88px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.9;
    margin-bottom: 20px;
}
.page-hero h1 em {
    font-style: italic;
    color: var(--primary);
}
.page-hero p {
    color: var(--silver-dim);
    font-size: 18px;
    max-width: 560px;
    line-height: 1.5;
}

.regels-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    padding-bottom: 80px;
}

.regels-toc {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    align-self: start;
    padding: 16px 0;
}
.regels-toc-label {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--silver-mute);
    margin-bottom: 16px;
    padding-left: 16px;
}
.regels-toc-list { list-style: none; }
.regels-toc-list a {
    display: flex;
    gap: 12px;
    padding: 11px 16px;
    color: var(--silver-dim);
    font-size: 14px;
    font-weight: 600;
    border-left: 2px solid transparent;
    transition: all 0.2s var(--ease);
    align-items: baseline;
}
.regels-toc-list a:hover {
    color: var(--white);
    background: rgba(1, 163, 227, 0.04);
    border-left-color: var(--primary);
}
.regels-toc-list a.is-active {
    color: var(--white);
    background: rgba(1, 163, 227, 0.08);
    border-left-color: var(--glow);
}
.regels-toc-list .num {
    color: var(--primary);
    font-weight: 900;
    font-size: 12px;
    min-width: 32px;
}

/* Artikel = categorie */
.regel-artikel {
    margin-bottom: 64px;
    scroll-margin-top: calc(var(--header-h) + 24px);
}
.regel-artikel-head {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border);
    position: relative;
}
.regel-artikel-head::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 80px;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 12px var(--glow);
}
.regel-artikel-num {
    flex-shrink: 0;
    background: var(--primary);
    color: var(--bg);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.15em;
    padding: 8px 14px;
    border-radius: 4px;
    text-transform: uppercase;
    align-self: flex-start;
    margin-top: 8px;
    box-shadow: 3px 3px 0 var(--primary-dark);
}
.regel-artikel-titel {
    flex: 1;
}
.regel-artikel-titel h2 {
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.regel-artikel-titel p {
    color: var(--silver-dim);
    font-size: 15px;
    line-height: 1.5;
}

/* Genummerd regel-item */
.regel-item {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 20px;
    background: var(--bg-2);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 22px 24px;
    margin-bottom: 12px;
    transition: all 0.25s var(--ease);
    align-items: start;
}
.regel-item:hover {
    border-color: var(--border-on);
    transform: translateX(4px);
}

.regel-item-nummer {
    font-size: 22px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.regel-item-body { min-width: 0; }
.regel-item-titel {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.3;
}
.regel-item-inhoud {
    color: var(--silver-dim);
    font-size: 14.5px;
    line-height: 1.65;
}

.ernst-badge {
    flex-shrink: 0;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 4px;
    white-space: nowrap;
    margin-top: 4px;
    border: 1.5px solid;
}

/* ============================================================================
 * STATUS PAGINA
 * ========================================================================= */

.status-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}
.status-card {
    background: var(--bg-2);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: border-color 0.3s var(--ease);
}
.status-card:hover { border-color: var(--border-on); }
.status-card.is-primary {
    background: linear-gradient(180deg, rgba(1, 163, 227, 0.08), rgba(16, 22, 30, 0.9));
    border-color: var(--primary);
}
.status-card h3 {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--silver-dim);
    font-weight: 800;
    margin-bottom: 18px;
}
.status-big-number {
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--white);
    margin-bottom: 8px;
}
.status-big-number .dim { color: var(--silver-mute); font-size: 36px; font-weight: 700; }

.player-bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    overflow: hidden;
    margin-top: 18px;
}
.player-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--glow));
    border-radius: 5px;
    transition: width 0.6s var(--ease);
    box-shadow: 0 0 12px rgba(55, 200, 255, 0.5);
}

.status-info-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}
.status-info-row:last-child { border-bottom: 0; }
.status-info-row .label { color: var(--silver-dim); font-weight: 600; }
.status-info-row .value { color: var(--white); font-weight: 700; }

/* ============================================================================
 * REVEAL animation
 * ========================================================================= */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    .hero-sticker, .pulse-dot { animation: none !important; }
    .marquee-track, .diag-divider-track { animation: none !important; }
}

/* ============================================================================
 * RESPONSIVE
 * ========================================================================= */
@media (max-width: 1000px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .regels-layout { grid-template-columns: 1fr; gap: 32px; }
    .regels-toc { position: static; }
    .status-grid { grid-template-columns: 1fr; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-right { padding: 0; }
    .stat-card:nth-child(1),
    .stat-card:nth-child(2),
    .stat-card:nth-child(3) { margin: 0; transform: none; }
}

@media (max-width: 720px) {
    .nav-toggle { display: flex; }
    .nav-list {
        position: absolute;
        top: var(--header-h);
        left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(11, 15, 20, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-on);
        padding: 12px 24px;
        transform: translateY(-110%);
        transition: transform 0.3s var(--ease);
    }
    .nav-list.is-open { transform: translateY(0); }
    .nav-link {
        padding: 14px 8px;
        border-bottom: 1px solid var(--border);
    }
    .nav-link.is-active::after { display: none; }

    .feature-grid, .steps { grid-template-columns: 1fr; }
    .section { padding: 60px 0; }
    .hero { min-height: auto; }
    .hero-inner { padding: 48px 0 64px; }

    .regel-item {
        grid-template-columns: 50px 1fr;
        gap: 14px;
    }
    .regel-item .ernst-badge {
        grid-column: 1 / -1;
        justify-self: start;
        margin-top: 8px;
    }
    .regel-artikel-titel h2 { font-size: 28px; }
    .cta-band { padding: 40px 24px; }
}

/* ============================================================================
 * WETBOEK PAGINA
 * ========================================================================= */

.wetboek-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    padding: 16px;
    background: var(--bg-2);
    border: 1.5px solid var(--border);
    border-radius: 14px;
}

.wet-search-wrap {
    flex: 1;
    min-width: 240px;
    position: relative;
}
.wet-search {
    width: 100%;
    background: var(--bg);
    border: 1.5px solid var(--border-on);
    border-radius: 10px;
    color: var(--white);
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 16px 12px 42px;
    transition: border-color 0.2s var(--ease);
}
.wet-search:focus {
    outline: none;
    border-color: var(--glow);
    box-shadow: 0 0 0 3px rgba(55, 200, 255, 0.15);
}
.wet-search-wrap::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px; height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A9098' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.3-4.3'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.wet-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg);
    border: 1.5px solid var(--border);
    color: var(--silver-dim);
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s var(--ease);
    font-family: inherit;
}
.wet-filter-btn:hover {
    border-color: var(--border-on);
    color: var(--white);
}
.wet-filter-btn.is-active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg);
}

.wet-categorie {
    margin-bottom: 56px;
    scroll-margin-top: calc(var(--header-h) + 24px);
}
.wet-categorie-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--border);
    position: relative;
}
.wet-categorie-head::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 80px;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 12px var(--glow);
}
.wet-categorie-icon {
    width: 44px; height: 44px;
    background: rgba(1, 163, 227, 0.1);
    border: 1.5px solid var(--border-on);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--glow);
    flex-shrink: 0;
}
.wet-categorie-icon svg { width: 22px; height: 22px; }
.wet-categorie-head h2 {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 2px;
}
.wet-categorie-head p {
    color: var(--silver-dim);
    font-size: 14px;
    margin: 0;
}

.wet-artikel-grid {
    display: grid;
    gap: 12px;
}

.wet-artikel {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 20px;
    background: var(--bg-2);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 18px 22px;
    transition: all 0.25s var(--ease);
    align-items: center;
}
.wet-artikel:hover {
    border-color: var(--border-on);
    transform: translateX(4px);
}
.wet-artikel-nr {
    font-size: 14px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 0.05em;
    font-family: 'Inter', monospace;
}
.wet-artikel-body { min-width: 0; }
.wet-artikel-titel {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}
.wet-artikel-omschr {
    color: var(--silver-dim);
    font-size: 13px;
    line-height: 1.5;
}
.wet-artikel-straf {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    text-align: right;
    flex-shrink: 0;
}
.straf-bedrag {
    font-size: 18px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.01em;
    font-feature-settings: 'tnum';
}
.straf-cel {
    font-size: 12px;
    color: var(--silver-dim);
    font-weight: 600;
}
.straf-cel.heavy { color: var(--acc-pink); font-weight: 800; }

.wet-artikel-info {
    font-size: 11px;
    color: var(--silver-mute);
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(199, 204, 212, 0.03);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
}

/* Empty state when search has no results */
.wet-empty {
    text-align: center;
    padding: 48px 24px;
    color: var(--silver-dim);
    background: var(--bg-2);
    border-radius: 14px;
    border: 1.5px dashed var(--border);
}
.wet-empty strong {
    display: block;
    color: var(--white);
    font-size: 18px;
    margin-bottom: 6px;
}

/* ============================================================================
 * STRAFCALCULATOR
 * ========================================================================= */

.calc-tabs {
    display: flex;
    gap: 4px;
    background: var(--bg-2);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 32px;
}
.calc-tab {
    flex: 1;
    background: transparent;
    border: 0;
    color: var(--silver-dim);
    padding: 12px 20px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s var(--ease);
}
.calc-tab:hover { color: var(--white); }
.calc-tab.is-active {
    background: var(--primary);
    color: var(--bg);
    box-shadow: 0 0 20px rgba(55, 200, 255, 0.3);
}

.calc-panel {
    display: none;
}
.calc-panel.is-active {
    display: block;
}

.calc-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
}

.calc-left {
    background: var(--bg-2);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 24px;
}
.calc-left h3 {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--silver-dim);
    margin-bottom: 16px;
}

.calc-search-wrap {
    position: relative;
    margin-bottom: 20px;
}
.calc-search {
    width: 100%;
    background: var(--bg);
    border: 1.5px solid var(--border-on);
    border-radius: 10px;
    color: var(--white);
    font-family: inherit;
    font-size: 14px;
    padding: 12px 16px 12px 42px;
}
.calc-search:focus {
    outline: none;
    border-color: var(--glow);
}
.calc-search-wrap::before {
    content: '';
    position: absolute;
    left: 16px; top: 50%;
    transform: translateY(-50%);
    width: 16px; height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A9098' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.3-4.3'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.calc-artikel-list {
    max-height: 480px;
    overflow-y: auto;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    background: var(--bg);
}
.calc-artikel-list::-webkit-scrollbar { width: 8px; }
.calc-artikel-list::-webkit-scrollbar-track { background: var(--bg-2); }
.calc-artikel-list::-webkit-scrollbar-thumb { background: var(--border-on); border-radius: 4px; }

.calc-cat-header {
    background: rgba(1, 163, 227, 0.08);
    color: var(--glow);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 10px 16px;
    border-top: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1;
    backdrop-filter: blur(10px);
}
.calc-cat-header:first-child { border-top: 0; }

.calc-artikel-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    padding: 12px 16px;
    border-top: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.15s var(--ease);
    align-items: center;
}
.calc-artikel-row:hover { background: rgba(1, 163, 227, 0.05); }
.calc-artikel-row.is-hidden { display: none; }
.calc-artikel-row input[type="checkbox"] {
    width: 18px; height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}
.calc-artikel-row label {
    cursor: pointer;
    min-width: 0;
}
.calc-artikel-row .nr {
    font-family: 'Inter', monospace;
    font-weight: 800;
    color: var(--primary);
    font-size: 12px;
    margin-right: 8px;
}
.calc-artikel-row .titel {
    font-weight: 600;
    color: var(--white);
    font-size: 14px;
}
.calc-artikel-row .straf {
    font-size: 12px;
    color: var(--silver-dim);
    text-align: right;
    font-weight: 600;
    font-feature-settings: 'tnum';
    white-space: nowrap;
}

/* Right side: total */
.calc-right {
    position: sticky;
    top: calc(var(--header-h) + 20px);
    align-self: start;
    background: linear-gradient(180deg, rgba(1, 163, 227, 0.08), var(--bg-2));
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 0 40px rgba(1, 163, 227, 0.15);
}
.calc-right h3 {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--glow);
    margin-bottom: 18px;
}

.calc-totals {
    display: grid;
    gap: 14px;
    margin-bottom: 20px;
}
.calc-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 14px;
    border-bottom: 1.5px solid var(--border);
}
.calc-total-row:last-child { border-bottom: 0; padding-bottom: 0; }
.calc-total-label {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--silver-dim);
}
.calc-total-value {
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.03em;
    font-feature-settings: 'tnum';
}
.calc-total-value.muted { color: var(--silver-mute); font-size: 22px; }
.calc-total-sub {
    font-size: 11px;
    color: var(--silver-dim);
    font-weight: 600;
    margin-top: 4px;
}

.calc-recidive {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 20px;
}
.calc-recidive-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--silver-dim);
    margin-bottom: 10px;
}
.calc-recidive-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}
.calc-recidive-options input[type="radio"] {
    display: none;
}
.calc-recidive-options label {
    cursor: pointer;
    background: var(--bg-2);
    border: 1.5px solid var(--border);
    color: var(--silver-dim);
    padding: 8px;
    border-radius: 6px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.15s var(--ease);
}
.calc-recidive-options input[type="radio"]:checked + label {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg);
}

.calc-selected-count {
    font-size: 11px;
    color: var(--silver-dim);
    font-weight: 600;
    margin-bottom: 14px;
}
.calc-selected-count strong { color: var(--white); }

.calc-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calc-copy-btn {
    background: var(--bg);
    border: 1.5px solid var(--border-on);
    color: var(--glow);
    padding: 12px 18px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.2s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.calc-copy-btn:hover {
    border-color: var(--glow);
    background: rgba(1, 163, 227, 0.08);
}
.calc-copy-btn.is-copied {
    background: var(--acc-green);
    color: var(--bg);
    border-color: var(--acc-green);
}

.calc-reset-btn {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--silver-dim);
    padding: 10px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s var(--ease);
}
.calc-reset-btn:hover {
    border-color: var(--acc-pink);
    color: var(--acc-pink);
}

/* Single charge tab */
.calc-single-result {
    display: none;
    margin-top: 24px;
    background: var(--bg-2);
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 28px;
}
.calc-single-result.is-visible { display: block; }
.calc-single-result h4 {
    font-size: 24px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 8px;
}
.calc-single-result .calc-meta {
    color: var(--silver-dim);
    font-size: 14px;
    margin-bottom: 20px;
}
.calc-single-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding-top: 20px;
    border-top: 1.5px solid var(--border);
}
.calc-single-stat {
    text-align: center;
    padding: 16px;
    background: var(--bg);
    border-radius: 10px;
}
.calc-single-stat .label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--silver-dim);
    margin-bottom: 6px;
}
.calc-single-stat .value {
    font-size: 26px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.02em;
    font-feature-settings: 'tnum';
}

/* ============================================================================
 * TEAM PAGINA
 * ========================================================================= */

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.team-card {
    background: var(--bg-2);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}
.team-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--rol-color, var(--primary));
}
.team-card:hover {
    border-color: var(--border-on);
    transform: translateY(-4px);
}

.team-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin: 0 auto 16px;
    background: var(--bg-3);
    border: 3px solid var(--rol-color, var(--primary));
    object-fit: cover;
    transition: transform 0.3s var(--ease);
}
.team-card:hover .team-avatar { transform: scale(1.05); }

.team-avatar-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--silver-mute);
    font-size: 32px;
    font-weight: 900;
}

.team-naam {
    font-size: 18px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}
.team-rol {
    display: inline-block;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--rol-color, var(--primary));
    padding: 4px 12px;
    background: var(--bg);
    border: 1.5px solid var(--rol-color, var(--primary));
    border-radius: 999px;
    margin-bottom: 14px;
}
.team-bio {
    color: var(--silver-dim);
    font-size: 13px;
    line-height: 1.5;
}

.team-empty {
    text-align: center;
    padding: 60px 24px;
    background: var(--bg-2);
    border-radius: 16px;
    border: 1.5px dashed var(--border);
}
.team-empty h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 8px;
}
.team-empty p {
    color: var(--silver-dim);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
    .calc-layout { grid-template-columns: 1fr; }
    .calc-right { position: static; }
    .wet-artikel { grid-template-columns: 50px 1fr; }
    .wet-artikel-straf {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        justify-self: start;
        margin-top: 8px;
    }
}

/* ============================================================================
 * BEGINNERSGIDS
 * ========================================================================= */

.gids-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 60px;
    padding-bottom: 80px;
}
.gids-toc {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    align-self: start;
    padding: 16px 0;
}
.gids-toc-label {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--silver-mute);
    margin-bottom: 16px;
    padding-left: 16px;
}
.gids-toc ul { list-style: none; }
.gids-toc a {
    display: flex;
    gap: 12px;
    padding: 11px 16px;
    color: var(--silver-dim);
    font-size: 14px;
    font-weight: 600;
    border-left: 2px solid transparent;
    transition: all 0.2s var(--ease);
    align-items: center;
}
.gids-toc a:hover {
    color: var(--white);
    background: rgba(1, 163, 227, 0.04);
    border-left-color: var(--primary);
}
.gids-toc a.is-active {
    color: var(--white);
    background: rgba(1, 163, 227, 0.08);
    border-left-color: var(--glow);
}
.gids-toc .icon { font-size: 16px; flex-shrink: 0; }

.gids-sectie {
    margin-bottom: 64px;
    scroll-margin-top: calc(var(--header-h) + 24px);
}
.gids-sectie-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--border);
    position: relative;
}
.gids-sectie-head::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 80px; height: 2px;
    background: var(--primary);
    box-shadow: 0 0 12px var(--glow);
}
.gids-sectie-icon {
    font-size: 36px;
    flex-shrink: 0;
}
.gids-sectie-titel {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
}
.gids-content {
    font-size: 16px;
    line-height: 1.7;
    color: var(--silver);
}
.gids-content p { margin-bottom: 16px; }
.gids-content strong { color: var(--white); font-weight: 700; }
.gids-content em { color: var(--glow); font-style: italic; }
.gids-content ul {
    margin: 12px 0 20px 0;
    padding-left: 28px;
    list-style: none;
}
.gids-content ul li {
    position: relative;
    padding: 4px 0;
}
.gids-content ul li::before {
    content: '▸';
    position: absolute;
    left: -20px;
    color: var(--primary);
    font-weight: 900;
}
.gids-content h3, .gids-content h4, .gids-content h5 {
    color: var(--white);
    margin: 28px 0 12px;
    font-weight: 800;
}
.gids-content h3 { font-size: 22px; }
.gids-content h4 { font-size: 18px; }
.gids-content code {
    background: rgba(1, 163, 227, 0.1);
    color: var(--glow);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9em;
    font-family: 'Inter', ui-monospace, monospace;
    font-weight: 600;
}
.gids-content a {
    color: var(--glow);
    border-bottom: 1px dotted var(--glow);
    transition: color 0.2s var(--ease);
}
.gids-content a:hover {
    color: var(--white);
    border-bottom-color: var(--white);
}

/* ============================================================================
 * CONTACT
 * ========================================================================= */

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    padding-bottom: 80px;
}

.contact-form-card {
    background: var(--bg-2);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 32px;
}
.contact-form-card h2 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 8px;
}
.contact-form-card .lead {
    color: var(--silver-dim);
    font-size: 14px;
    margin-bottom: 24px;
}

.contact-form .field {
    margin-bottom: 18px;
}
.contact-form label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--silver-dim);
    margin-bottom: 8px;
}
.contact-form label .req { color: var(--acc-pink); }
.contact-form .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    background: var(--bg);
    border: 1.5px solid var(--border-on);
    border-radius: 10px;
    color: var(--white);
    font-family: inherit;
    font-size: 14px;
    padding: 12px 16px;
    transition: border-color 0.2s var(--ease);
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--glow);
    box-shadow: 0 0 0 3px rgba(55, 200, 255, 0.15);
}
.contact-form textarea {
    resize: vertical;
    min-height: 140px;
    font-family: inherit;
    line-height: 1.5;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--silver-mute);
}
.contact-form .help {
    font-size: 12px;
    color: var(--silver-mute);
    margin-top: 6px;
}

.contact-aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-card {
    background: var(--bg-2);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 24px;
}
.contact-card h3 {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--glow);
    margin-bottom: 12px;
}
.contact-card p {
    color: var(--silver-dim);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 14px;
}
.contact-card .big-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.contact-alert {
    background: var(--bg-2);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 24px;
    border-left: 4px solid;
}
.contact-alert.ok    { border-color: var(--acc-green); }
.contact-alert.error { border-color: var(--acc-pink); }
.contact-alert strong { color: var(--white); }

@media (max-width: 900px) {
    .gids-layout, .contact-layout { grid-template-columns: 1fr; gap: 32px; }
    .gids-toc { position: static; }
    .contact-form .field-row { grid-template-columns: 1fr; }
}

/* ============================================================================
 * ALGEMENE BEPALINGEN — artikelen zonder straf
 * ========================================================================= */

.wet-artikel.is-algemeen {
    background: linear-gradient(180deg, rgba(1, 163, 227, 0.04), var(--bg-2));
    border-color: rgba(1, 163, 227, 0.2);
}
.wet-artikel.is-algemeen .wet-artikel-nr {
    color: var(--glow);
}

.straf-info-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(1, 163, 227, 0.08);
    color: var(--glow);
    border: 1.5px solid rgba(1, 163, 227, 0.3);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}
